Commit b1f8560a authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

widl: Do the consistency checks on interfaces after parsing is complete.

parent 8aeaa423
...@@ -45,7 +45,6 @@ void pop_import(void); ...@@ -45,7 +45,6 @@ void pop_import(void);
int is_type(const char *name); int is_type(const char *name);
void check_functions(const type_t *iface);
func_list_t *gen_function_list(const statement_list_t *stmts); func_list_t *gen_function_list(const statement_list_t *stmts);
#endif #endif
...@@ -70,8 +70,6 @@ ...@@ -70,8 +70,6 @@
unsigned char pointer_default = RPC_FC_UP; unsigned char pointer_default = RPC_FC_UP;
static int is_object_interface = FALSE; static int is_object_interface = FALSE;
/* are we inside a library block? */
static int is_inside_library = FALSE;
typedef struct list typelist_t; typedef struct list typelist_t;
struct typenode { struct typenode {
...@@ -140,6 +138,7 @@ static var_t *reg_const(var_t *var); ...@@ -140,6 +138,7 @@ static var_t *reg_const(var_t *var);
static char *gen_name(void); static char *gen_name(void);
static void check_arg(var_t *arg); static void check_arg(var_t *arg);
static void check_statements(const statement_list_t *stmts, int is_inside_library);
static void check_all_user_types(const statement_list_t *stmts); static void check_all_user_types(const statement_list_t *stmts);
static attr_list_t *check_iface_attrs(const char *name, attr_list_t *attrs); static attr_list_t *check_iface_attrs(const char *name, attr_list_t *attrs);
static attr_list_t *check_function_attrs(const char *name, attr_list_t *attrs); static attr_list_t *check_function_attrs(const char *name, attr_list_t *attrs);
...@@ -346,6 +345,7 @@ static statement_list_t *append_statement(statement_list_t *list, statement_t *s ...@@ -346,6 +345,7 @@ static statement_list_t *append_statement(statement_list_t *list, statement_t *s
%% %%
input: gbl_statements { fix_incomplete(); input: gbl_statements { fix_incomplete();
check_statements($1, FALSE);
check_all_user_types($1); check_all_user_types($1);
write_header($1); write_header($1);
write_id_data($1); write_id_data($1);
...@@ -433,14 +433,12 @@ libraryhdr: tLIBRARY aIDENTIFIER { $$ = $2; } ...@@ -433,14 +433,12 @@ libraryhdr: tLIBRARY aIDENTIFIER { $$ = $2; }
; ;
library_start: attributes libraryhdr '{' { $$ = make_library($2, check_library_attrs($2, $1)); library_start: attributes libraryhdr '{' { $$ = make_library($2, check_library_attrs($2, $1));
if (!parse_only) start_typelib($$); if (!parse_only) start_typelib($$);
is_inside_library = TRUE;
} }
; ;
librarydef: library_start imp_statements '}' librarydef: library_start imp_statements '}'
semicolon_opt { $$ = $1; semicolon_opt { $$ = $1;
$$->stmts = $2; $$->stmts = $2;
if (!parse_only) end_typelib(); if (!parse_only) end_typelib();
is_inside_library = FALSE;
} }
; ;
...@@ -2540,7 +2538,7 @@ static void add_explicit_handle_if_necessary(func_t *func) ...@@ -2540,7 +2538,7 @@ static void add_explicit_handle_if_necessary(func_t *func)
} }
} }
void check_functions(const type_t *iface) static void check_functions(const type_t *iface, int is_inside_library)
{ {
if (is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE) && iface->funcs) if (is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE) && iface->funcs)
{ {
...@@ -2559,6 +2557,19 @@ void check_functions(const type_t *iface) ...@@ -2559,6 +2557,19 @@ void check_functions(const type_t *iface)
} }
} }
static void check_statements(const statement_list_t *stmts, int is_inside_library)
{
const statement_t *stmt;
if (stmts) LIST_FOR_EACH_ENTRY(stmt, stmts, const statement_t, entry)
{
if (stmt->type == STMT_LIBRARY)
check_statements(stmt->u.lib->stmts, TRUE);
else if (stmt->type == STMT_TYPE && stmt->u.type->type == RPC_FC_IP)
check_functions(stmt->u.type, is_inside_library);
}
}
static void check_all_user_types(const statement_list_t *stmts) static void check_all_user_types(const statement_list_t *stmts)
{ {
const statement_t *stmt; const statement_t *stmt;
......
...@@ -73,7 +73,6 @@ void type_interface_define(type_t *iface, type_t *inherit, statement_list_t *stm ...@@ -73,7 +73,6 @@ void type_interface_define(type_t *iface, type_t *inherit, statement_list_t *stm
iface->details.iface->disp_methods = NULL; iface->details.iface->disp_methods = NULL;
iface->stmts = stmts; iface->stmts = stmts;
iface->defined = TRUE; iface->defined = TRUE;
check_functions(iface);
compute_method_indexes(iface); compute_method_indexes(iface);
} }
...@@ -87,7 +86,6 @@ void type_dispinterface_define(type_t *iface, var_list_t *props, func_list_t *me ...@@ -87,7 +86,6 @@ void type_dispinterface_define(type_t *iface, var_list_t *props, func_list_t *me
iface->details.iface->disp_methods = methods; iface->details.iface->disp_methods = methods;
iface->stmts = NULL; iface->stmts = NULL;
iface->defined = TRUE; iface->defined = TRUE;
check_functions(iface);
compute_method_indexes(iface); compute_method_indexes(iface);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment