eolian: manage typedecls through node system

This commit is contained in:
Daniel Kolesa 2018-03-15 15:50:53 +01:00
parent 80445f5160
commit da47159dbd
1 changed files with 14 additions and 31 deletions

View File

@ -97,20 +97,6 @@ check_match(Eo_Lexer *ls, int what, int who, int where, int col)
} }
} }
static Eolian_Typedecl *
push_typedecl(Eo_Lexer *ls)
{
Eolian_Typedecl *def = calloc(1, sizeof(Eolian_Typedecl));
ls->tmp.type_decls = eina_list_prepend(ls->tmp.type_decls, def);
return def;
}
static void
pop_typedecl(Eo_Lexer *ls)
{
ls->tmp.type_decls = eina_list_remove_list(ls->tmp.type_decls, ls->tmp.type_decls);
}
static Eina_Bool static Eina_Bool
compare_class_file(const char *fn1, const char *fn2) compare_class_file(const char *fn1, const char *fn2)
{ {
@ -460,7 +446,7 @@ parse_struct(Eo_Lexer *ls, const char *name, Eina_Bool is_extern,
int line, int column, const char *freefunc) int line, int column, const char *freefunc)
{ {
int bline = ls->line_number, bcolumn = ls->column; int bline = ls->line_number, bcolumn = ls->column;
Eolian_Typedecl *def = push_typedecl(ls); Eolian_Typedecl *def = eo_lexer_typedecl_new(ls);
def->is_extern = is_extern; def->is_extern = is_extern;
def->base.name = name; def->base.name = name;
def->type = EOLIAN_TYPEDECL_STRUCT; def->type = EOLIAN_TYPEDECL_STRUCT;
@ -496,7 +482,7 @@ parse_struct(Eo_Lexer *ls, const char *name, Eina_Bool is_extern,
} }
check_match(ls, '}', '{', bline, bcolumn); check_match(ls, '}', '{', bline, bcolumn);
FILL_BASE(def->base, ls, line, column, TYPEDECL); FILL_BASE(def->base, ls, line, column, TYPEDECL);
if (name) database_struct_add(ls->unit, def); database_struct_add(ls->unit, eo_lexer_typedecl_release(ls, def));
return def; return def;
} }
@ -515,7 +501,7 @@ parse_enum(Eo_Lexer *ls, const char *name, Eina_Bool is_extern,
int line, int column) int line, int column)
{ {
int bline = ls->line_number, bcolumn = ls->column; int bline = ls->line_number, bcolumn = ls->column;
Eolian_Typedecl *def = push_typedecl(ls); Eolian_Typedecl *def = eo_lexer_typedecl_new(ls);
def->is_extern = is_extern; def->is_extern = is_extern;
def->base.name = name; def->base.name = name;
def->type = EOLIAN_TYPEDECL_ENUM; def->type = EOLIAN_TYPEDECL_ENUM;
@ -608,7 +594,7 @@ parse_enum(Eo_Lexer *ls, const char *name, Eina_Bool is_extern,
} }
check_match(ls, '}', '{', bline, bcolumn); check_match(ls, '}', '{', bline, bcolumn);
FILL_BASE(def->base, ls, line, column, TYPEDECL); FILL_BASE(def->base, ls, line, column, TYPEDECL);
if (name) database_enum_add(ls->unit, def); database_enum_add(ls->unit, eo_lexer_typedecl_release(ls, def));
return def; return def;
} }
@ -800,7 +786,7 @@ parse_type_void(Eo_Lexer *ls)
static Eolian_Typedecl * static Eolian_Typedecl *
parse_typedef(Eo_Lexer *ls) parse_typedef(Eo_Lexer *ls)
{ {
Eolian_Typedecl *def = push_typedecl(ls); Eolian_Typedecl *def = eo_lexer_typedecl_new(ls);
Eina_Bool has_extern; Eina_Bool has_extern;
const char *freefunc; const char *freefunc;
Eina_Strbuf *buf; Eina_Strbuf *buf;
@ -1285,7 +1271,7 @@ parse_function_pointer(Eo_Lexer *ls)
int bline, bcol; int bline, bcol;
int line = ls->line_number, col = ls->column; int line = ls->line_number, col = ls->column;
Eolian_Typedecl *def = push_typedecl(ls); Eolian_Typedecl *def = eo_lexer_typedecl_new(ls);
Eina_Strbuf *buf = eina_strbuf_new(); Eina_Strbuf *buf = eina_strbuf_new();
eo_lexer_dtor_push(ls, EINA_FREE_CB(eina_strbuf_free), buf); eo_lexer_dtor_push(ls, EINA_FREE_CB(eina_strbuf_free), buf);
Eolian_Function *meth = NULL; Eolian_Function *meth = NULL;
@ -2114,22 +2100,21 @@ parse_unit(Eo_Lexer *ls, Eina_Bool eot)
} }
case KW_type: case KW_type:
{ {
database_type_add(ls->unit, parse_typedef(ls)); database_type_add(ls->unit,
pop_typedecl(ls); eo_lexer_typedecl_release(ls, parse_typedef(ls)));
break; break;
} }
case KW_function: case KW_function:
{ {
database_type_add(ls->unit, parse_function_pointer(ls)); database_type_add(ls->unit,
pop_typedecl(ls); eo_lexer_typedecl_release(ls, parse_function_pointer(ls)));
break; break;
} }
case KW_const: case KW_const:
case KW_var: case KW_var:
{ {
Eolian_Variable *var = parse_variable(ls, ls->t.kw == KW_var); database_var_add(ls->unit, eo_lexer_variable_release(ls,
database_var_add(ls->unit, eo_lexer_variable_release(ls, var)); parse_variable(ls, ls->t.kw == KW_var)));
eolian_object_ref(&var->base);
break; break;
} }
case KW_struct: case KW_struct:
@ -2164,7 +2149,7 @@ parse_unit(Eo_Lexer *ls, Eina_Bool eot)
eo_lexer_dtor_pop(ls); eo_lexer_dtor_pop(ls);
if (!is_enum && ls->t.token == ';') if (!is_enum && ls->t.token == ';')
{ {
Eolian_Typedecl *def = push_typedecl(ls); Eolian_Typedecl *def = eo_lexer_typedecl_new(ls);
def->is_extern = has_extern; def->is_extern = has_extern;
def->type = EOLIAN_TYPEDECL_STRUCT_OPAQUE; def->type = EOLIAN_TYPEDECL_STRUCT_OPAQUE;
def->freefunc = freefunc; def->freefunc = freefunc;
@ -2173,15 +2158,13 @@ parse_unit(Eo_Lexer *ls, Eina_Bool eot)
eo_lexer_get(ls); eo_lexer_get(ls);
FILL_DOC(ls, def, doc); FILL_DOC(ls, def, doc);
FILL_BASE(def->base, ls, line, col, TYPEDECL); FILL_BASE(def->base, ls, line, col, TYPEDECL);
database_struct_add(ls->unit, def); database_struct_add(ls->unit, eo_lexer_typedecl_release(ls, def));
pop_typedecl(ls);
break; break;
} }
if (is_enum) if (is_enum)
parse_enum(ls, name, has_extern, line, col); parse_enum(ls, name, has_extern, line, col);
else else
parse_struct(ls, name, has_extern, line, col, freefunc); parse_struct(ls, name, has_extern, line, col, freefunc);
pop_typedecl(ls);
break; break;
} }
def: def: