123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- /*
- * IDL Type Tree
- *
- * Copyright 2008 Robert Shearman
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
- #include "config.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "widl.h"
- #include "utils.h"
- #include "parser.h"
- #include "typetree.h"
- #include "header.h"
- type_t *duptype(type_t *t, int dupname)
- {
- type_t *d = alloc_type();
- *d = *t;
- if (dupname && t->name)
- d->name = xstrdup(t->name);
- return d;
- }
- type_t *make_type(enum type_type type)
- {
- type_t *t = alloc_type();
- t->name = NULL;
- t->namespace = NULL;
- t->type_type = type;
- t->attrs = NULL;
- t->c_name = NULL;
- memset(&t->details, 0, sizeof(t->details));
- t->typestring_offset = 0;
- t->ptrdesc = 0;
- t->ignore = (parse_only != 0);
- t->defined = FALSE;
- t->written = FALSE;
- t->user_types_registered = FALSE;
- t->tfswrite = FALSE;
- t->checked = FALSE;
- t->typelib_idx = -1;
- init_loc_info(&t->loc_info);
- return t;
- }
- static const var_t *find_arg(const var_list_t *args, const char *name)
- {
- const var_t *arg;
- if (args) LIST_FOR_EACH_ENTRY(arg, args, const var_t, entry)
- {
- if (arg->name && !strcmp(name, arg->name))
- return arg;
- }
- return NULL;
- }
- const char *type_get_name(const type_t *type, enum name_type name_type)
- {
- switch(name_type) {
- case NAME_DEFAULT:
- return type->name;
- case NAME_C:
- return type->c_name;
- }
- assert(0);
- return NULL;
- }
- static char *append_namespace(char *ptr, struct namespace *namespace, const char *separator)
- {
- if(is_global_namespace(namespace)) {
- if(!use_abi_namespace)
- return ptr;
- strcpy(ptr, "ABI");
- strcat(ptr, separator);
- return ptr + strlen(ptr);
- }
- ptr = append_namespace(ptr, namespace->parent, separator);
- strcpy(ptr, namespace->name);
- strcat(ptr, separator);
- return ptr + strlen(ptr);
- }
- char *format_namespace(struct namespace *namespace, const char *prefix, const char *separator, const char *suffix)
- {
- unsigned len = strlen(prefix) + strlen(suffix);
- unsigned sep_len = strlen(separator);
- struct namespace *iter;
- char *ret, *ptr;
- if(use_abi_namespace && !is_global_namespace(namespace))
- len += 3 /* strlen("ABI") */ + sep_len;
- for(iter = namespace; !is_global_namespace(iter); iter = iter->parent)
- len += strlen(iter->name) + sep_len;
- ret = xmalloc(len+1);
- strcpy(ret, prefix);
- ptr = append_namespace(ret + strlen(ret), namespace, separator);
- strcpy(ptr, suffix);
- return ret;
- }
- type_t *type_new_function(var_list_t *args)
- {
- var_t *arg;
- type_t *t;
- unsigned int i = 0;
- if (args)
- {
- arg = LIST_ENTRY(list_head(args), var_t, entry);
- if (list_count(args) == 1 && !arg->name && arg->declspec.type && type_get_type(arg->declspec.type) == TYPE_VOID)
- {
- list_remove(&arg->entry);
- free(arg);
- free(args);
- args = NULL;
- }
- }
- if (args) LIST_FOR_EACH_ENTRY(arg, args, var_t, entry)
- {
- if (arg->declspec.type && type_get_type(arg->declspec.type) == TYPE_VOID)
- error_loc("argument '%s' has void type\n", arg->name);
- if (!arg->name)
- {
- if (i > 26 * 26)
- error_loc("too many unnamed arguments\n");
- else
- {
- int unique;
- do
- {
- char name[3];
- name[0] = i > 26 ? 'a' + i / 26 : 'a' + i;
- name[1] = i > 26 ? 'a' + i % 26 : 0;
- name[2] = 0;
- unique = !find_arg(args, name);
- if (unique)
- arg->name = xstrdup(name);
- i++;
- } while (!unique);
- }
- }
- }
- t = make_type(TYPE_FUNCTION);
- t->details.function = xmalloc(sizeof(*t->details.function));
- t->details.function->args = args;
- t->details.function->retval = make_var(xstrdup("_RetVal"));
- return t;
- }
- type_t *type_new_pointer(type_t *ref)
- {
- type_t *t = make_type(TYPE_POINTER);
- t->details.pointer.ref.type = ref;
- return t;
- }
- type_t *type_new_alias(const decl_spec_t *t, const char *name)
- {
- type_t *a = make_type(TYPE_ALIAS);
- a->name = xstrdup(name);
- a->attrs = NULL;
- a->details.alias.aliasee = *t;
- init_loc_info(&a->loc_info);
- return a;
- }
- type_t *type_new_module(char *name)
- {
- type_t *type = get_type(TYPE_MODULE, name, NULL, 0);
- if (type->type_type != TYPE_MODULE || type->defined)
- error_loc("%s: redefinition error; original definition was at %s:%d\n",
- type->name, type->loc_info.input_name, type->loc_info.line_number);
- type->name = name;
- return type;
- }
- type_t *type_new_coclass(char *name)
- {
- type_t *type = get_type(TYPE_COCLASS, name, NULL, 0);
- if (type->type_type != TYPE_COCLASS || type->defined)
- error_loc("%s: redefinition error; original definition was at %s:%d\n",
- type->name, type->loc_info.input_name, type->loc_info.line_number);
- type->name = name;
- return type;
- }
- type_t *type_new_array(const char *name, const decl_spec_t *element, int declptr,
- unsigned int dim, expr_t *size_is, expr_t *length_is)
- {
- type_t *t = make_type(TYPE_ARRAY);
- if (name) t->name = xstrdup(name);
- t->details.array.declptr = declptr;
- t->details.array.length_is = length_is;
- if (size_is)
- t->details.array.size_is = size_is;
- else
- t->details.array.dim = dim;
- if (element)
- t->details.array.elem = *element;
- return t;
- }
- type_t *type_new_basic(enum type_basic_type basic_type)
- {
- type_t *t = make_type(TYPE_BASIC);
- t->details.basic.type = basic_type;
- t->details.basic.sign = 0;
- return t;
- }
- type_t *type_new_int(enum type_basic_type basic_type, int sign)
- {
- static type_t *int_types[TYPE_BASIC_INT_MAX+1][3];
- assert(basic_type <= TYPE_BASIC_INT_MAX);
- /* map sign { -1, 0, 1 } -> { 0, 1, 2 } */
- if (!int_types[basic_type][sign + 1])
- {
- int_types[basic_type][sign + 1] = type_new_basic(basic_type);
- int_types[basic_type][sign + 1]->details.basic.sign = sign;
- }
- return int_types[basic_type][sign + 1];
- }
- type_t *type_new_void(void)
- {
- static type_t *void_type = NULL;
- if (!void_type)
- void_type = make_type(TYPE_VOID);
- return void_type;
- }
- type_t *type_new_enum(const char *name, struct namespace *namespace, int defined, var_list_t *enums)
- {
- type_t *t = NULL;
- if (name)
- t = find_type(name, namespace,tsENUM);
- if (!t)
- {
- t = make_type(TYPE_ENUM);
- t->name = name;
- t->namespace = namespace;
- if (name)
- reg_type(t, name, namespace, tsENUM);
- }
- if (!t->defined && defined)
- {
- t->details.enumeration = xmalloc(sizeof(*t->details.enumeration));
- t->details.enumeration->enums = enums;
- t->defined = TRUE;
- }
- else if (defined)
- error_loc("redefinition of enum %s\n", name);
- return t;
- }
- type_t *type_new_struct(char *name, struct namespace *namespace, int defined, var_list_t *fields)
- {
- type_t *t = NULL;
- if (name)
- t = find_type(name, namespace, tsSTRUCT);
- if (!t)
- {
- t = make_type(TYPE_STRUCT);
- t->name = name;
- t->namespace = namespace;
- if (name)
- reg_type(t, name, namespace, tsSTRUCT);
- }
- if (!t->defined && defined)
- {
- t->details.structure = xmalloc(sizeof(*t->details.structure));
- t->details.structure->fields = fields;
- t->defined = TRUE;
- }
- else if (defined)
- error_loc("redefinition of struct %s\n", name);
- return t;
- }
- type_t *type_new_nonencapsulated_union(const char *name, int defined, var_list_t *fields)
- {
- type_t *t = NULL;
- if (name)
- t = find_type(name, NULL, tsUNION);
- if (!t)
- {
- t = make_type(TYPE_UNION);
- t->name = name;
- if (name)
- reg_type(t, name, NULL, tsUNION);
- }
- if (!t->defined && defined)
- {
- t->details.structure = xmalloc(sizeof(*t->details.structure));
- t->details.structure->fields = fields;
- t->defined = TRUE;
- }
- else if (defined)
- error_loc("redefinition of union %s\n", name);
- return t;
- }
- type_t *type_new_encapsulated_union(char *name, var_t *switch_field, var_t *union_field, var_list_t *cases)
- {
- type_t *t = NULL;
- if (name)
- t = find_type(name, NULL, tsUNION);
- if (!t)
- {
- t = make_type(TYPE_ENCAPSULATED_UNION);
- t->name = name;
- if (name)
- reg_type(t, name, NULL, tsUNION);
- }
- t->type_type = TYPE_ENCAPSULATED_UNION;
- if (!t->defined)
- {
- if (!union_field)
- union_field = make_var(xstrdup("tagged_union"));
- union_field->declspec.type = type_new_nonencapsulated_union(gen_name(), TRUE, cases);
- t->details.structure = xmalloc(sizeof(*t->details.structure));
- t->details.structure->fields = append_var(NULL, switch_field);
- t->details.structure->fields = append_var(t->details.structure->fields, union_field);
- t->defined = TRUE;
- }
- else
- error_loc("redefinition of union %s\n", name);
- return t;
- }
- static int is_valid_bitfield_type(const type_t *type)
- {
- switch (type_get_type(type))
- {
- case TYPE_ENUM:
- return TRUE;
- case TYPE_BASIC:
- switch (type_basic_get_type(type))
- {
- case TYPE_BASIC_INT8:
- case TYPE_BASIC_INT16:
- case TYPE_BASIC_INT32:
- case TYPE_BASIC_INT64:
- case TYPE_BASIC_INT:
- case TYPE_BASIC_INT3264:
- case TYPE_BASIC_LONG:
- case TYPE_BASIC_CHAR:
- case TYPE_BASIC_HYPER:
- case TYPE_BASIC_BYTE:
- case TYPE_BASIC_WCHAR:
- case TYPE_BASIC_ERROR_STATUS_T:
- return TRUE;
- case TYPE_BASIC_FLOAT:
- case TYPE_BASIC_DOUBLE:
- case TYPE_BASIC_HANDLE:
- return FALSE;
- }
- return FALSE;
- default:
- return FALSE;
- }
- }
- type_t *type_new_bitfield(type_t *field, const expr_t *bits)
- {
- type_t *t;
- if (!is_valid_bitfield_type(field))
- error_loc("bit-field has invalid type\n");
- if (bits->cval < 0)
- error_loc("negative width for bit-field\n");
- /* FIXME: validate bits->cval <= memsize(field) * 8 */
- t = make_type(TYPE_BITFIELD);
- t->details.bitfield.field = field;
- t->details.bitfield.bits = bits;
- return t;
- }
- static unsigned int compute_method_indexes(type_t *iface)
- {
- unsigned int idx;
- statement_t *stmt;
- if (!iface->details.iface)
- return 0;
- if (type_iface_get_inherit(iface))
- idx = compute_method_indexes(type_iface_get_inherit(iface));
- else
- idx = 0;
- STATEMENTS_FOR_EACH_FUNC( stmt, type_iface_get_stmts(iface) )
- {
- var_t *func = stmt->u.var;
- if (!is_callas(func->attrs))
- func->func_idx = idx++;
- }
- return idx;
- }
- void type_interface_define(type_t *iface, type_t *inherit, statement_list_t *stmts)
- {
- iface->details.iface = xmalloc(sizeof(*iface->details.iface));
- iface->details.iface->disp_props = NULL;
- iface->details.iface->disp_methods = NULL;
- iface->details.iface->stmts = stmts;
- iface->details.iface->inherit = inherit;
- iface->details.iface->disp_inherit = NULL;
- iface->details.iface->async_iface = NULL;
- iface->defined = TRUE;
- compute_method_indexes(iface);
- }
- void type_dispinterface_define(type_t *iface, var_list_t *props, var_list_t *methods)
- {
- iface->details.iface = xmalloc(sizeof(*iface->details.iface));
- iface->details.iface->disp_props = props;
- iface->details.iface->disp_methods = methods;
- iface->details.iface->stmts = NULL;
- iface->details.iface->inherit = find_type("IDispatch", NULL, 0);
- if (!iface->details.iface->inherit) error_loc("IDispatch is undefined\n");
- iface->details.iface->disp_inherit = NULL;
- iface->details.iface->async_iface = NULL;
- iface->defined = TRUE;
- compute_method_indexes(iface);
- }
- void type_dispinterface_define_from_iface(type_t *dispiface, type_t *iface)
- {
- dispiface->details.iface = xmalloc(sizeof(*dispiface->details.iface));
- dispiface->details.iface->disp_props = NULL;
- dispiface->details.iface->disp_methods = NULL;
- dispiface->details.iface->stmts = NULL;
- dispiface->details.iface->inherit = find_type("IDispatch", NULL, 0);
- if (!dispiface->details.iface->inherit) error_loc("IDispatch is undefined\n");
- dispiface->details.iface->disp_inherit = iface;
- dispiface->details.iface->async_iface = NULL;
- dispiface->defined = TRUE;
- compute_method_indexes(dispiface);
- }
- void type_module_define(type_t *module, statement_list_t *stmts)
- {
- if (module->details.module) error_loc("multiple definition error\n");
- module->details.module = xmalloc(sizeof(*module->details.module));
- module->details.module->stmts = stmts;
- module->defined = TRUE;
- }
- type_t *type_coclass_define(type_t *coclass, ifref_list_t *ifaces)
- {
- coclass->details.coclass.ifaces = ifaces;
- coclass->defined = TRUE;
- return coclass;
- }
- int type_is_equal(const type_t *type1, const type_t *type2)
- {
- if (type_get_type_detect_alias(type1) != type_get_type_detect_alias(type2))
- return FALSE;
- if (type1->name && type2->name)
- return !strcmp(type1->name, type2->name);
- else if ((!type1->name && type2->name) || (type1->name && !type2->name))
- return FALSE;
- /* FIXME: do deep inspection of types to determine if they are equal */
- return FALSE;
- }
|