widl: Support WinRT parameterized interface type.
This allows parameterized interfaces to be instanciated in declare blocks, in the same way MIDL does, generating a new interface to the header from the parameterized type template, replacing its parameters with the given types. Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d5bf8f4e8a
commit
d3c7aa2915
|
@ -35,11 +35,24 @@ namespace Windows {
|
||||||
interface ISpeechSynthesizer;
|
interface ISpeechSynthesizer;
|
||||||
interface ISpeechSynthesizer2;
|
interface ISpeechSynthesizer2;
|
||||||
interface IVoiceInformation;
|
interface IVoiceInformation;
|
||||||
|
runtimeclass SpeechSynthesizer;
|
||||||
runtimeclass VoiceInformation;
|
runtimeclass VoiceInformation;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace Windows {
|
||||||
|
namespace Media {
|
||||||
|
namespace SpeechSynthesis {
|
||||||
|
declare {
|
||||||
|
interface Windows.Foundation.Collections.IIterator<Windows.Media.SpeechSynthesis.VoiceInformation*>;
|
||||||
|
interface Windows.Foundation.Collections.IIterable<Windows.Media.SpeechSynthesis.VoiceInformation*>;
|
||||||
|
interface Windows.Foundation.Collections.IVectorView<Windows.Media.SpeechSynthesis.VoiceInformation*>;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
namespace Windows {
|
namespace Windows {
|
||||||
namespace Media {
|
namespace Media {
|
||||||
namespace SpeechSynthesis {
|
namespace SpeechSynthesis {
|
||||||
|
@ -64,6 +77,17 @@ namespace Windows {
|
||||||
[propget] HRESULT Gender([out] [retval] VoiceGender* value);
|
[propget] HRESULT Gender([out] [retval] VoiceGender* value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
||||||
|
exclusiveto(Windows.Media.SpeechSynthesis.SpeechSynthesizer),
|
||||||
|
uuid(7d526ecc-7533-4c3f-85be-888c2baeebdc)
|
||||||
|
]
|
||||||
|
interface IInstalledVoicesStatic : IInspectable
|
||||||
|
{
|
||||||
|
[propget] HRESULT AllVoices([out, retval] Windows.Foundation.Collections.IVectorView<VoiceInformation*>** value);
|
||||||
|
[propget] HRESULT DefaultVoice([out, retval] VoiceInformation** value);
|
||||||
|
}
|
||||||
|
|
||||||
[
|
[
|
||||||
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
contract(Windows.Foundation.UniversalApiContract, 1.0),
|
||||||
marshaling_behavior(agile)
|
marshaling_behavior(agile)
|
||||||
|
|
|
@ -1479,7 +1479,8 @@ static void write_forward(FILE *header, type_t *iface)
|
||||||
fprintf(header, "typedef interface %s %s;\n", iface->c_name, iface->c_name);
|
fprintf(header, "typedef interface %s %s;\n", iface->c_name, iface->c_name);
|
||||||
fprintf(header, "#ifdef __cplusplus\n");
|
fprintf(header, "#ifdef __cplusplus\n");
|
||||||
write_namespace_start(header, iface->namespace);
|
write_namespace_start(header, iface->namespace);
|
||||||
write_line(header, 0, "interface %s;", iface->name);
|
if (strchr(iface->name, '<')) write_line(header, 0, "template<> struct %s;", iface->name);
|
||||||
|
else write_line(header, 0, "interface %s;", iface->name);
|
||||||
write_namespace_end(header, iface->namespace);
|
write_namespace_end(header, iface->namespace);
|
||||||
fprintf(header, "#endif /* __cplusplus */\n");
|
fprintf(header, "#endif /* __cplusplus */\n");
|
||||||
fprintf(header, "#endif\n\n" );
|
fprintf(header, "#endif\n\n" );
|
||||||
|
@ -1548,11 +1549,13 @@ static void write_com_interface_end(FILE *header, type_t *iface)
|
||||||
write_namespace_start(header, iface->namespace);
|
write_namespace_start(header, iface->namespace);
|
||||||
}
|
}
|
||||||
if (uuid) {
|
if (uuid) {
|
||||||
|
if (strchr(iface->name, '<')) write_line(header, 0, "template<>");
|
||||||
write_line(header, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid));
|
write_line(header, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid));
|
||||||
indent(header, 0);
|
indent(header, 0);
|
||||||
}else {
|
}else {
|
||||||
indent(header, 0);
|
indent(header, 0);
|
||||||
fprintf(header, "interface ");
|
if (strchr(iface->name, '<')) fprintf(header, "template<> struct ");
|
||||||
|
else fprintf(header, "interface ");
|
||||||
}
|
}
|
||||||
if (type_iface_get_inherit(iface))
|
if (type_iface_get_inherit(iface))
|
||||||
{
|
{
|
||||||
|
|
|
@ -276,6 +276,7 @@ static const struct keyword keywords[] = {
|
||||||
{"coclass", tCOCLASS, 0},
|
{"coclass", tCOCLASS, 0},
|
||||||
{"const", tCONST, 0},
|
{"const", tCONST, 0},
|
||||||
{"cpp_quote", tCPPQUOTE, 0},
|
{"cpp_quote", tCPPQUOTE, 0},
|
||||||
|
{"declare", tDECLARE, 1},
|
||||||
{"default", tDEFAULT, 0},
|
{"default", tDEFAULT, 0},
|
||||||
{"dispinterface", tDISPINTERFACE, 0},
|
{"dispinterface", tDISPINTERFACE, 0},
|
||||||
{"double", tDOUBLE, 0},
|
{"double", tDOUBLE, 0},
|
||||||
|
|
|
@ -56,8 +56,6 @@ static attr_t *make_custom_attr(UUID *id, expr_t *pval);
|
||||||
static expr_list_t *append_expr(expr_list_t *list, expr_t *expr);
|
static expr_list_t *append_expr(expr_list_t *list, expr_t *expr);
|
||||||
static var_t *declare_var(attr_list_t *attrs, decl_spec_t *decl_spec, declarator_t *decl, int top);
|
static var_t *declare_var(attr_list_t *attrs, decl_spec_t *decl_spec, declarator_t *decl, int top);
|
||||||
static var_list_t *set_var_types(attr_list_t *attrs, decl_spec_t *decl_spec, declarator_list_t *decls);
|
static var_list_t *set_var_types(attr_list_t *attrs, decl_spec_t *decl_spec, declarator_list_t *decls);
|
||||||
static typeref_list_t *append_typeref(typeref_list_t *list, typeref_t *ref);
|
|
||||||
static typeref_t *make_typeref(type_t *type);
|
|
||||||
static var_list_t *append_var_list(var_list_t *list, var_list_t *vars);
|
static var_list_t *append_var_list(var_list_t *list, var_list_t *vars);
|
||||||
static declarator_list_t *append_declarator(declarator_list_t *list, declarator_t *p);
|
static declarator_list_t *append_declarator(declarator_list_t *list, declarator_t *p);
|
||||||
static declarator_t *make_declarator(var_t *var);
|
static declarator_t *make_declarator(var_t *var);
|
||||||
|
@ -79,6 +77,7 @@ static void pop_namespace(const char *name);
|
||||||
static void push_parameters_namespace(const char *name);
|
static void push_parameters_namespace(const char *name);
|
||||||
static void pop_parameters_namespace(const char *name);
|
static void pop_parameters_namespace(const char *name);
|
||||||
|
|
||||||
|
static statement_list_t *append_parameterized_type_stmts(statement_list_t *stmts);
|
||||||
static void check_arg_attrs(const var_t *arg);
|
static void check_arg_attrs(const var_t *arg);
|
||||||
static void check_statements(const statement_list_t *stmts, int is_inside_library);
|
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);
|
||||||
|
@ -106,6 +105,7 @@ static statement_t *make_statement_importlib(const char *str);
|
||||||
static statement_t *make_statement_module(type_t *type);
|
static statement_t *make_statement_module(type_t *type);
|
||||||
static statement_t *make_statement_typedef(var_list_t *names, int declonly);
|
static statement_t *make_statement_typedef(var_list_t *names, int declonly);
|
||||||
static statement_t *make_statement_import(const char *str);
|
static statement_t *make_statement_import(const char *str);
|
||||||
|
static statement_t *make_statement_parameterized_type(type_t *type, typeref_list_t *params);
|
||||||
static statement_list_t *append_statement(statement_list_t *list, statement_t *stmt);
|
static statement_list_t *append_statement(statement_list_t *list, statement_t *stmt);
|
||||||
static statement_list_t *append_statements(statement_list_t *, statement_list_t *);
|
static statement_list_t *append_statements(statement_list_t *, statement_list_t *);
|
||||||
static attr_list_t *append_attribs(attr_list_t *, attr_list_t *);
|
static attr_list_t *append_attribs(attr_list_t *, attr_list_t *);
|
||||||
|
@ -116,6 +116,7 @@ static struct namespace global_namespace = {
|
||||||
|
|
||||||
static struct namespace *current_namespace = &global_namespace;
|
static struct namespace *current_namespace = &global_namespace;
|
||||||
static struct namespace *parameters_namespace = NULL;
|
static struct namespace *parameters_namespace = NULL;
|
||||||
|
static statement_list_t *parameterized_type_stmts = NULL;
|
||||||
|
|
||||||
static typelib_t *current_typelib;
|
static typelib_t *current_typelib;
|
||||||
|
|
||||||
|
@ -177,6 +178,7 @@ static typelib_t *current_typelib;
|
||||||
%token tCONTRACTVERSION
|
%token tCONTRACTVERSION
|
||||||
%token tCONTROL tCPPQUOTE
|
%token tCONTROL tCPPQUOTE
|
||||||
%token tCUSTOM
|
%token tCUSTOM
|
||||||
|
%token tDECLARE
|
||||||
%token tDECODE tDEFAULT tDEFAULTBIND
|
%token tDECODE tDEFAULT tDEFAULTBIND
|
||||||
%token tDEFAULTCOLLELEM
|
%token tDEFAULTCOLLELEM
|
||||||
%token tDEFAULTVALUE
|
%token tDEFAULTVALUE
|
||||||
|
@ -318,6 +320,8 @@ static typelib_t *current_typelib;
|
||||||
%type <typelib> library_start librarydef
|
%type <typelib> library_start librarydef
|
||||||
%type <statement> statement typedef pragma_warning
|
%type <statement> statement typedef pragma_warning
|
||||||
%type <stmt_list> gbl_statements imp_statements int_statements
|
%type <stmt_list> gbl_statements imp_statements int_statements
|
||||||
|
%type <stmt_list> decl_block decl_statements
|
||||||
|
%type <stmt_list> imp_decl_block imp_decl_statements
|
||||||
%type <warning_list> warnings
|
%type <warning_list> warnings
|
||||||
%type <num> allocate_option_list allocate_option
|
%type <num> allocate_option_list allocate_option
|
||||||
%type <namespace> namespace_pfx
|
%type <namespace> namespace_pfx
|
||||||
|
@ -341,7 +345,8 @@ static typelib_t *current_typelib;
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
||||||
input: gbl_statements m_acf { check_statements($1, FALSE);
|
input: gbl_statements m_acf { $1 = append_parameterized_type_stmts($1);
|
||||||
|
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);
|
||||||
|
@ -357,6 +362,22 @@ input: gbl_statements m_acf { check_statements($1, FALSE);
|
||||||
|
|
||||||
m_acf: /* empty */ | aACF acf_statements
|
m_acf: /* empty */ | aACF acf_statements
|
||||||
|
|
||||||
|
decl_statements: { $$ = NULL; }
|
||||||
|
| decl_statements tINTERFACE qualified_type '<' parameterized_type_args '>' ';'
|
||||||
|
{ parameterized_type_stmts = append_statement(parameterized_type_stmts, make_statement_parameterized_type($3, $5));
|
||||||
|
$$ = append_statement($1, make_statement_reference(type_parameterized_type_specialize_declare($3, $5)));
|
||||||
|
}
|
||||||
|
;
|
||||||
|
|
||||||
|
decl_block: tDECLARE '{' decl_statements '}' { $$ = $3; }
|
||||||
|
|
||||||
|
imp_decl_statements: { $$ = NULL; }
|
||||||
|
| imp_decl_statements tINTERFACE qualified_type '<' parameterized_type_args '>' ';'
|
||||||
|
{ $$ = append_statement($1, make_statement_reference(type_parameterized_type_specialize_declare($3, $5))); }
|
||||||
|
;
|
||||||
|
|
||||||
|
imp_decl_block: tDECLARE '{' imp_decl_statements '}' { $$ = $3; }
|
||||||
|
|
||||||
gbl_statements: { $$ = NULL; }
|
gbl_statements: { $$ = NULL; }
|
||||||
| gbl_statements namespacedef '{' { push_namespace($2); } gbl_statements '}'
|
| gbl_statements namespacedef '{' { push_namespace($2); } gbl_statements '}'
|
||||||
{ pop_namespace($2); $$ = append_statements($1, $5); }
|
{ pop_namespace($2); $$ = append_statements($1, $5); }
|
||||||
|
@ -378,6 +399,7 @@ gbl_statements: { $$ = NULL; }
|
||||||
| gbl_statements moduledef { $$ = append_statement($1, make_statement_module($2)); }
|
| gbl_statements moduledef { $$ = append_statement($1, make_statement_module($2)); }
|
||||||
| gbl_statements librarydef { $$ = append_statement($1, make_statement_library($2)); }
|
| gbl_statements librarydef { $$ = append_statement($1, make_statement_library($2)); }
|
||||||
| gbl_statements statement { $$ = append_statement($1, $2); }
|
| gbl_statements statement { $$ = append_statement($1, $2); }
|
||||||
|
| gbl_statements decl_block { $$ = append_statements($1, $2); }
|
||||||
;
|
;
|
||||||
|
|
||||||
imp_statements: { $$ = NULL; }
|
imp_statements: { $$ = NULL; }
|
||||||
|
@ -400,6 +422,7 @@ imp_statements: { $$ = NULL; }
|
||||||
| imp_statements statement { $$ = append_statement($1, $2); }
|
| imp_statements statement { $$ = append_statement($1, $2); }
|
||||||
| imp_statements importlib { $$ = append_statement($1, make_statement_importlib($2)); }
|
| imp_statements importlib { $$ = append_statement($1, make_statement_importlib($2)); }
|
||||||
| imp_statements librarydef { $$ = append_statement($1, make_statement_library($2)); }
|
| imp_statements librarydef { $$ = append_statement($1, make_statement_library($2)); }
|
||||||
|
| imp_statements imp_decl_block { $$ = append_statements($1, $2); }
|
||||||
;
|
;
|
||||||
|
|
||||||
int_statements: { $$ = NULL; }
|
int_statements: { $$ = NULL; }
|
||||||
|
@ -1837,7 +1860,7 @@ static var_list_t *set_var_types(attr_list_t *attrs, decl_spec_t *decl_spec, dec
|
||||||
return var_list;
|
return var_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
static typeref_list_t *append_typeref(typeref_list_t *list, typeref_t *ref)
|
typeref_list_t *append_typeref(typeref_list_t *list, typeref_t *ref)
|
||||||
{
|
{
|
||||||
if (!ref) return list;
|
if (!ref) return list;
|
||||||
if (!list)
|
if (!list)
|
||||||
|
@ -1849,7 +1872,7 @@ static typeref_list_t *append_typeref(typeref_list_t *list, typeref_t *ref)
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
static typeref_t *make_typeref(type_t *type)
|
typeref_t *make_typeref(type_t *type)
|
||||||
{
|
{
|
||||||
typeref_t *ref = xmalloc(sizeof(typeref_t));
|
typeref_t *ref = xmalloc(sizeof(typeref_t));
|
||||||
ref->type = type;
|
ref->type = type;
|
||||||
|
@ -3071,6 +3094,29 @@ static void check_async_uuid(type_t *iface)
|
||||||
iface->details.iface->async_iface = async_iface->details.iface->async_iface = async_iface;
|
iface->details.iface->async_iface = async_iface->details.iface->async_iface = async_iface;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static statement_list_t *append_parameterized_type_stmts(statement_list_t *stmts)
|
||||||
|
{
|
||||||
|
statement_t *stmt, *next;
|
||||||
|
|
||||||
|
if (stmts && parameterized_type_stmts) LIST_FOR_EACH_ENTRY_SAFE(stmt, next, parameterized_type_stmts, statement_t, entry)
|
||||||
|
{
|
||||||
|
switch(stmt->type)
|
||||||
|
{
|
||||||
|
case STMT_TYPE:
|
||||||
|
stmt->u.type = type_parameterized_type_specialize_define(stmt->u.type);
|
||||||
|
stmt->declonly = FALSE;
|
||||||
|
list_remove(&stmt->entry);
|
||||||
|
stmts = append_statement(stmts, stmt);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
assert(0); /* should not be there */
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return stmts;
|
||||||
|
}
|
||||||
|
|
||||||
static void check_statements(const statement_list_t *stmts, int is_inside_library)
|
static void check_statements(const statement_list_t *stmts, int is_inside_library)
|
||||||
{
|
{
|
||||||
const statement_t *stmt;
|
const statement_t *stmt;
|
||||||
|
@ -3246,6 +3292,13 @@ static statement_t *make_statement_typedef(declarator_list_t *decls, int declonl
|
||||||
return stmt;
|
return stmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static statement_t *make_statement_parameterized_type(type_t *type, typeref_list_t *params)
|
||||||
|
{
|
||||||
|
statement_t *stmt = make_statement(STMT_TYPE);
|
||||||
|
stmt->u.type = type_parameterized_type_specialize_partial(type, params);
|
||||||
|
return stmt;
|
||||||
|
}
|
||||||
|
|
||||||
static statement_list_t *append_statements(statement_list_t *l1, statement_list_t *l2)
|
static statement_list_t *append_statements(statement_list_t *l1, statement_list_t *l2)
|
||||||
{
|
{
|
||||||
if (!l2) return l1;
|
if (!l2) return l1;
|
||||||
|
@ -3290,8 +3343,10 @@ type_t *find_parameterized_type(type_t *type, typeref_list_t *params)
|
||||||
assert(type->type_type == TYPE_PARAMETERIZED_TYPE);
|
assert(type->type_type == TYPE_PARAMETERIZED_TYPE);
|
||||||
type = type_parameterized_type_specialize_partial(type, params);
|
type = type_parameterized_type_specialize_partial(type, params);
|
||||||
}
|
}
|
||||||
/* FIXME: If not in another parameterized type, we'll have to look for the declared specialization. */
|
else if ((type = find_type(name, type->namespace, 0)))
|
||||||
else error_loc("parameterized type '%s' not declared\n", name);
|
assert(type->type_type != TYPE_PARAMETERIZED_TYPE);
|
||||||
|
else
|
||||||
|
error_loc("parameterized type '%s' not declared\n", name);
|
||||||
|
|
||||||
free(name);
|
free(name);
|
||||||
return type;
|
return type;
|
||||||
|
|
|
@ -137,6 +137,40 @@ char *format_parameterized_type_name(type_t *type, typeref_list_t *params)
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char const *parameterized_type_shorthands[][2] = {
|
||||||
|
{"Windows_CFoundation_CCollections_C", "__F"},
|
||||||
|
{"Windows_CFoundation_C", "__F"},
|
||||||
|
};
|
||||||
|
|
||||||
|
static char *format_parameterized_type_c_name(type_t *type, typeref_list_t *params)
|
||||||
|
{
|
||||||
|
size_t len = 0, pos = 0;
|
||||||
|
char *buf = NULL, *tmp;
|
||||||
|
int i, count = params ? list_count(params) : 0;
|
||||||
|
typeref_t *ref;
|
||||||
|
|
||||||
|
pos += append_namespaces(&buf, &len, pos, type->namespace, "__x_", "_C", type->name, use_abi_namespace ? "ABI" : NULL);
|
||||||
|
pos += strappend(&buf, &len, pos, "_%d", count);
|
||||||
|
if (params) LIST_FOR_EACH_ENTRY(ref, params, typeref_t, entry)
|
||||||
|
{
|
||||||
|
for (type = ref->type; type->type_type == TYPE_POINTER; type = type_pointer_get_ref_type(type)) {}
|
||||||
|
pos += append_namespaces(&buf, &len, pos, type->namespace, "_", "__C", type->name, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < ARRAY_SIZE(parameterized_type_shorthands); ++i)
|
||||||
|
{
|
||||||
|
if ((tmp = strstr(buf, parameterized_type_shorthands[i][0])) &&
|
||||||
|
(tmp - buf) == strlen(use_abi_namespace ? "__x_ABI_C" : "__x_C"))
|
||||||
|
{
|
||||||
|
tmp += strlen(parameterized_type_shorthands[i][0]);
|
||||||
|
strcpy(buf, parameterized_type_shorthands[i][1]);
|
||||||
|
memmove(buf + 3, tmp, len - (tmp - buf));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
type_t *type_new_function(var_list_t *args)
|
type_t *type_new_function(var_list_t *args)
|
||||||
{
|
{
|
||||||
var_t *arg;
|
var_t *arg;
|
||||||
|
@ -677,6 +711,215 @@ type_t *type_parameterized_type_specialize_partial(type_t *type, typeref_list_t
|
||||||
return new_type;
|
return new_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static type_t *replace_type_parameters_in_type(type_t *type, typeref_list_t *orig, typeref_list_t *repl);
|
||||||
|
|
||||||
|
static typeref_list_t *replace_type_parameters_in_type_list(typeref_list_t *list, typeref_list_t *orig, typeref_list_t *repl)
|
||||||
|
{
|
||||||
|
typeref_list_t *new_list = NULL;
|
||||||
|
typeref_t *ref;
|
||||||
|
|
||||||
|
if (!list) return list;
|
||||||
|
|
||||||
|
LIST_FOR_EACH_ENTRY(ref, list, typeref_t, entry)
|
||||||
|
{
|
||||||
|
type_t *new_type = replace_type_parameters_in_type(ref->type, orig, repl);
|
||||||
|
new_list = append_typeref(new_list, make_typeref(new_type));
|
||||||
|
}
|
||||||
|
|
||||||
|
return new_list;
|
||||||
|
}
|
||||||
|
|
||||||
|
static var_t *replace_type_parameters_in_var(var_t *var, typeref_list_t *orig, typeref_list_t *repl)
|
||||||
|
{
|
||||||
|
var_t *new_var = xmalloc(sizeof(*new_var));
|
||||||
|
*new_var = *var;
|
||||||
|
list_init(&new_var->entry);
|
||||||
|
new_var->declspec.type = replace_type_parameters_in_type(var->declspec.type, orig, repl);
|
||||||
|
return new_var;
|
||||||
|
}
|
||||||
|
|
||||||
|
static var_list_t *replace_type_parameters_in_var_list(var_list_t *var_list, typeref_list_t *orig, typeref_list_t *repl)
|
||||||
|
{
|
||||||
|
var_list_t *new_var_list;
|
||||||
|
var_t *var, *new_var;
|
||||||
|
|
||||||
|
if (!var_list) return var_list;
|
||||||
|
|
||||||
|
new_var_list = xmalloc(sizeof(*new_var_list));
|
||||||
|
list_init(new_var_list);
|
||||||
|
|
||||||
|
LIST_FOR_EACH_ENTRY(var, var_list, var_t, entry)
|
||||||
|
{
|
||||||
|
new_var = replace_type_parameters_in_var(var, orig, repl);
|
||||||
|
list_add_tail(new_var_list, &new_var->entry);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new_var_list;
|
||||||
|
}
|
||||||
|
|
||||||
|
static statement_t *replace_type_parameters_in_statement(statement_t *stmt, typeref_list_t *orig, typeref_list_t *repl, loc_info_t *loc)
|
||||||
|
{
|
||||||
|
statement_t *new_stmt = xmalloc(sizeof(*new_stmt));
|
||||||
|
*new_stmt = *stmt;
|
||||||
|
list_init(&new_stmt->entry);
|
||||||
|
|
||||||
|
switch (stmt->type)
|
||||||
|
{
|
||||||
|
case STMT_DECLARATION:
|
||||||
|
new_stmt->u.var = replace_type_parameters_in_var(stmt->u.var, orig, repl);
|
||||||
|
break;
|
||||||
|
case STMT_TYPE:
|
||||||
|
case STMT_TYPEREF:
|
||||||
|
new_stmt->u.type = replace_type_parameters_in_type(stmt->u.type, orig, repl);
|
||||||
|
break;
|
||||||
|
case STMT_TYPEDEF:
|
||||||
|
new_stmt->u.type_list = replace_type_parameters_in_type_list(stmt->u.type_list, orig, repl);
|
||||||
|
break;
|
||||||
|
case STMT_MODULE:
|
||||||
|
case STMT_LIBRARY:
|
||||||
|
case STMT_IMPORT:
|
||||||
|
case STMT_IMPORTLIB:
|
||||||
|
case STMT_PRAGMA:
|
||||||
|
case STMT_CPPQUOTE:
|
||||||
|
error_loc_info(loc, "unimplemented parameterized type replacement for statement type %d.\n", stmt->type);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new_stmt;
|
||||||
|
}
|
||||||
|
|
||||||
|
static statement_list_t *replace_type_parameters_in_statement_list(statement_list_t *stmt_list, typeref_list_t *orig, typeref_list_t *repl, loc_info_t *loc)
|
||||||
|
{
|
||||||
|
statement_list_t *new_stmt_list;
|
||||||
|
statement_t *stmt, *new_stmt;
|
||||||
|
|
||||||
|
if (!stmt_list) return stmt_list;
|
||||||
|
|
||||||
|
new_stmt_list = xmalloc(sizeof(*new_stmt_list));
|
||||||
|
list_init(new_stmt_list);
|
||||||
|
|
||||||
|
LIST_FOR_EACH_ENTRY(stmt, stmt_list, statement_t, entry)
|
||||||
|
{
|
||||||
|
new_stmt = replace_type_parameters_in_statement(stmt, orig, repl, loc);
|
||||||
|
list_add_tail(new_stmt_list, &new_stmt->entry);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new_stmt_list;
|
||||||
|
}
|
||||||
|
|
||||||
|
static type_t *replace_type_parameters_in_type(type_t *type, typeref_list_t *orig, typeref_list_t *repl)
|
||||||
|
{
|
||||||
|
struct list *o, *r;
|
||||||
|
type_t *t;
|
||||||
|
|
||||||
|
if (!type) return type;
|
||||||
|
switch (type->type_type)
|
||||||
|
{
|
||||||
|
case TYPE_VOID:
|
||||||
|
case TYPE_BASIC:
|
||||||
|
case TYPE_ENUM:
|
||||||
|
case TYPE_BITFIELD:
|
||||||
|
case TYPE_INTERFACE:
|
||||||
|
case TYPE_RUNTIMECLASS:
|
||||||
|
return type;
|
||||||
|
case TYPE_PARAMETER:
|
||||||
|
if (!orig || !repl) return NULL;
|
||||||
|
for (o = list_head(orig), r = list_head(repl); o && r;
|
||||||
|
o = list_next(orig, o), r = list_next(repl, r))
|
||||||
|
if (type == LIST_ENTRY(o, typeref_t, entry)->type)
|
||||||
|
return LIST_ENTRY(r, typeref_t, entry)->type;
|
||||||
|
return type;
|
||||||
|
case TYPE_POINTER:
|
||||||
|
t = replace_type_parameters_in_type(type->details.pointer.ref.type, orig, repl);
|
||||||
|
if (t == type->details.pointer.ref.type) return type;
|
||||||
|
type = duptype(type, 0);
|
||||||
|
type->details.pointer.ref.type = t;
|
||||||
|
return type;
|
||||||
|
case TYPE_ALIAS:
|
||||||
|
t = replace_type_parameters_in_type(type->details.alias.aliasee.type, orig, repl);
|
||||||
|
if (t == type->details.alias.aliasee.type) return type;
|
||||||
|
type = duptype(type, 0);
|
||||||
|
type->details.alias.aliasee.type = t;
|
||||||
|
return type;
|
||||||
|
case TYPE_ARRAY:
|
||||||
|
t = replace_type_parameters_in_type(type->details.array.elem.type, orig, repl);
|
||||||
|
if (t == t->details.array.elem.type) return type;
|
||||||
|
type = duptype(type, 0);
|
||||||
|
t->details.array.elem.type = t;
|
||||||
|
return type;
|
||||||
|
case TYPE_FUNCTION:
|
||||||
|
t = duptype(type, 0);
|
||||||
|
t->details.function = xmalloc(sizeof(*t->details.function));
|
||||||
|
t->details.function->args = replace_type_parameters_in_var_list(type->details.function->args, orig, repl);
|
||||||
|
t->details.function->retval = replace_type_parameters_in_var(type->details.function->retval, orig, repl);
|
||||||
|
return t;
|
||||||
|
case TYPE_PARAMETERIZED_TYPE:
|
||||||
|
t = type->details.parameterized.type;
|
||||||
|
if (t->type_type != TYPE_PARAMETERIZED_TYPE) return find_parameterized_type(type, repl);
|
||||||
|
repl = replace_type_parameters_in_type_list(type->details.parameterized.params, orig, repl);
|
||||||
|
return replace_type_parameters_in_type(t, t->details.parameterized.params, repl);
|
||||||
|
case TYPE_STRUCT:
|
||||||
|
case TYPE_ENCAPSULATED_UNION:
|
||||||
|
case TYPE_UNION:
|
||||||
|
case TYPE_MODULE:
|
||||||
|
case TYPE_COCLASS:
|
||||||
|
case TYPE_APICONTRACT:
|
||||||
|
error_loc_info(&type->loc_info, "unimplemented parameterized type replacement for type %s of type %d.\n", type->name, type->type_type);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void type_parameterized_interface_specialize(type_t *tmpl, type_t *iface, typeref_list_t *orig, typeref_list_t *repl)
|
||||||
|
{
|
||||||
|
iface->details.iface = xmalloc(sizeof(*iface->details.iface));
|
||||||
|
iface->details.iface->disp_methods = NULL;
|
||||||
|
iface->details.iface->disp_props = NULL;
|
||||||
|
iface->details.iface->stmts = replace_type_parameters_in_statement_list(tmpl->details.iface->stmts, orig, repl, &tmpl->loc_info);
|
||||||
|
iface->details.iface->inherit = replace_type_parameters_in_type(tmpl->details.iface->inherit, orig, repl);
|
||||||
|
iface->details.iface->disp_inherit = NULL;
|
||||||
|
iface->details.iface->async_iface = NULL;
|
||||||
|
iface->details.iface->requires = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
type_t *type_parameterized_type_specialize_declare(type_t *type, typeref_list_t *params)
|
||||||
|
{
|
||||||
|
type_t *tmpl = type->details.parameterized.type;
|
||||||
|
type_t *new_type = duptype(tmpl, 0);
|
||||||
|
|
||||||
|
new_type->namespace = type->namespace;
|
||||||
|
new_type->name = format_parameterized_type_name(type, params);
|
||||||
|
reg_type(new_type, new_type->name, new_type->namespace, 0);
|
||||||
|
new_type->c_name = format_parameterized_type_c_name(type, params);
|
||||||
|
|
||||||
|
return new_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
type_t *type_parameterized_type_specialize_define(type_t *type)
|
||||||
|
{
|
||||||
|
type_t *tmpl = type->details.parameterized.type;
|
||||||
|
typeref_list_t *orig = tmpl->details.parameterized.params;
|
||||||
|
typeref_list_t *repl = type->details.parameterized.params;
|
||||||
|
type_t *iface = find_parameterized_type(tmpl, repl);
|
||||||
|
|
||||||
|
if (type_get_type_detect_alias(type) != TYPE_PARAMETERIZED_TYPE ||
|
||||||
|
type_get_type_detect_alias(tmpl) != TYPE_PARAMETERIZED_TYPE)
|
||||||
|
error_loc("cannot define non-parameterized type %s, declared at %s:%d\n",
|
||||||
|
type->name, type->loc_info.input_name, type->loc_info.line_number);
|
||||||
|
|
||||||
|
if (type_get_type_detect_alias(tmpl->details.parameterized.type) == TYPE_INTERFACE &&
|
||||||
|
type_get_type_detect_alias(iface) == TYPE_INTERFACE)
|
||||||
|
type_parameterized_interface_specialize(tmpl->details.parameterized.type, iface, orig, repl);
|
||||||
|
else
|
||||||
|
error_loc("pinterface %s previously not declared a pinterface at %s:%d\n",
|
||||||
|
iface->name, iface->loc_info.input_name, iface->loc_info.line_number);
|
||||||
|
|
||||||
|
iface->defined = TRUE;
|
||||||
|
compute_method_indexes(iface);
|
||||||
|
return iface;
|
||||||
|
}
|
||||||
|
|
||||||
int type_is_equal(const type_t *type1, const type_t *type2)
|
int type_is_equal(const type_t *type1, const type_t *type2)
|
||||||
{
|
{
|
||||||
if (type1 == type2)
|
if (type1 == type2)
|
||||||
|
|
|
@ -67,11 +67,16 @@ type_t *type_apicontract_define(type_t *apicontract, attr_list_t *attrs);
|
||||||
type_t *type_parameterized_interface_declare(char *name, struct namespace *namespace, typeref_list_t *params);
|
type_t *type_parameterized_interface_declare(char *name, struct namespace *namespace, typeref_list_t *params);
|
||||||
type_t *type_parameterized_interface_define(type_t *type, attr_list_t *attrs, type_t *inherit, statement_list_t *stmts, typeref_list_t *requires);
|
type_t *type_parameterized_interface_define(type_t *type, attr_list_t *attrs, type_t *inherit, statement_list_t *stmts, typeref_list_t *requires);
|
||||||
type_t *type_parameterized_type_specialize_partial(type_t *type, typeref_list_t *params);
|
type_t *type_parameterized_type_specialize_partial(type_t *type, typeref_list_t *params);
|
||||||
|
type_t *type_parameterized_type_specialize_declare(type_t *type, typeref_list_t *params);
|
||||||
|
type_t *type_parameterized_type_specialize_define(type_t *type);
|
||||||
int type_is_equal(const type_t *type1, const type_t *type2);
|
int type_is_equal(const type_t *type1, const type_t *type2);
|
||||||
const char *type_get_name(const type_t *type, enum name_type name_type);
|
const char *type_get_name(const type_t *type, enum name_type name_type);
|
||||||
char *gen_name(void);
|
char *gen_name(void);
|
||||||
extern int is_attr(const attr_list_t *list, enum attr_type t);
|
extern int is_attr(const attr_list_t *list, enum attr_type t);
|
||||||
|
|
||||||
|
typeref_t *make_typeref(type_t *type);
|
||||||
|
typeref_list_t *append_typeref(typeref_list_t *list, typeref_t *ref);
|
||||||
|
|
||||||
/* FIXME: shouldn't need to export this */
|
/* FIXME: shouldn't need to export this */
|
||||||
type_t *duptype(type_t *t, int dupname);
|
type_t *duptype(type_t *t, int dupname);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue