root/string_pool.c
/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- alloc_crb_string
- crb_literal_to_crb_string
- crb_refer_string
- crb_release_string
- crb_create_crowbar_string
#include <stdio.h>
#include <string.h>
#include "MEM.h"
#include "DBG.h"
#include "crowbar.h"
static CRB_String *
alloc_crb_string(CRB_Interpreter *inter, char *str, CRB_Boolean is_literal)
{
CRB_String *ret;
ret = MEM_malloc(sizeof(CRB_String));
ret->ref_count = 0;
ret->is_literal = is_literal;
ret->string = str;
return ret;
}
CRB_String *
crb_literal_to_crb_string(CRB_Interpreter *inter, char *str)
{
CRB_String *ret;
ret = alloc_crb_string(inter, str, CRB_TRUE);
ret->ref_count = 1;
return ret;
}
void
crb_refer_string(CRB_String *str)
{
str->ref_count++;
}
void
crb_release_string(CRB_String *str)
{
str->ref_count--;
DBG_assert(str->ref_count >= 0, ("str->ref_count..%d\n",
str->ref_count));
if (str->ref_count == 0) {
if (!str->is_literal) {
MEM_free(str->string);
}
MEM_free(str);
}
}
CRB_String *
crb_create_crowbar_string(CRB_Interpreter *inter, char *str)
{
CRB_String *ret = alloc_crb_string(inter, str, CRB_FALSE);
ret->ref_count = 1;
return ret;
}