jscript: Removed unused do_*_tag_format arguments.
[wine/multimedia.git] / tools / widl / typetree.h
blob1e7ed88951aceae81f0dc7e1eb8b85dfb653b257
1 /*
2 * IDL Type Tree
4 * Copyright 2008 Robert Shearman
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "widltypes.h"
22 #include <assert.h>
24 #ifndef WIDL_TYPE_TREE_H
25 #define WIDL_TYPE_TREE_H
27 type_t *type_new_function(var_list_t *args);
28 type_t *type_new_pointer(unsigned char pointer_default, type_t *ref, attr_list_t *attrs);
29 type_t *type_new_alias(type_t *t, const char *name);
30 type_t *type_new_module(char *name);
31 type_t *type_new_array(const char *name, type_t *element, int declptr,
32 unsigned int dim, expr_t *size_is, expr_t *length_is,
33 unsigned char ptr_default_fc);
34 type_t *type_new_basic(enum type_basic_type basic_type);
35 type_t *type_new_int(enum type_basic_type basic_type, int sign);
36 type_t *type_new_void(void);
37 type_t *type_new_coclass(char *name);
38 type_t *type_new_enum(const char *name, int defined, var_list_t *enums);
39 type_t *type_new_struct(char *name, int defined, var_list_t *fields);
40 type_t *type_new_nonencapsulated_union(const char *name, int defined, var_list_t *fields);
41 type_t *type_new_encapsulated_union(char *name, var_t *switch_field, var_t *union_field, var_list_t *cases);
42 type_t *type_new_bitfield(type_t *field_type, const expr_t *bits);
43 void type_interface_define(type_t *iface, type_t *inherit, statement_list_t *stmts);
44 void type_dispinterface_define(type_t *iface, var_list_t *props, var_list_t *methods);
45 void type_dispinterface_define_from_iface(type_t *dispiface, type_t *iface);
46 void type_module_define(type_t *module, statement_list_t *stmts);
47 type_t *type_coclass_define(type_t *coclass, ifref_list_t *ifaces);
48 int type_is_equal(const type_t *type1, const type_t *type2);
50 /* FIXME: shouldn't need to export this */
51 type_t *duptype(type_t *t, int dupname);
53 /* un-alias the type until finding the non-alias type */
54 static inline type_t *type_get_real_type(const type_t *type)
56 if (type->is_alias)
57 return type_get_real_type(type->orig);
58 else
59 return (type_t *)type;
62 static inline enum type_type type_get_type(const type_t *type)
64 return type_get_type_detect_alias(type_get_real_type(type));
67 static inline enum type_basic_type type_basic_get_type(const type_t *type)
69 type = type_get_real_type(type);
70 assert(type_get_type(type) == TYPE_BASIC);
71 return type->details.basic.type;
74 static inline int type_basic_get_sign(const type_t *type)
76 type = type_get_real_type(type);
77 assert(type_get_type(type) == TYPE_BASIC);
78 return type->details.basic.sign;
81 static inline var_list_t *type_struct_get_fields(const type_t *type)
83 type = type_get_real_type(type);
84 assert(type_get_type(type) == TYPE_STRUCT);
85 return type->details.structure->fields;
88 static inline var_list_t *type_function_get_args(const type_t *type)
90 type = type_get_real_type(type);
91 assert(type_get_type(type) == TYPE_FUNCTION);
92 return type->details.function->args;
95 static inline var_t *type_function_get_retval(const type_t *type)
97 type = type_get_real_type(type);
98 assert(type_get_type(type) == TYPE_FUNCTION);
99 return type->details.function->retval;
102 static inline type_t *type_function_get_rettype(const type_t *type)
104 return type_function_get_retval(type)->type;
107 static inline var_list_t *type_enum_get_values(const type_t *type)
109 type = type_get_real_type(type);
110 assert(type_get_type(type) == TYPE_ENUM);
111 return type->details.enumeration->enums;
114 static inline var_t *type_union_get_switch_value(const type_t *type)
116 type = type_get_real_type(type);
117 assert(type_get_type(type) == TYPE_ENCAPSULATED_UNION);
118 return LIST_ENTRY(list_head(type->details.structure->fields), var_t, entry);
121 static inline var_list_t *type_encapsulated_union_get_fields(const type_t *type)
123 type = type_get_real_type(type);
124 assert(type_get_type(type) == TYPE_ENCAPSULATED_UNION);
125 return type->details.structure->fields;
128 static inline var_list_t *type_union_get_cases(const type_t *type)
130 enum type_type type_type;
132 type = type_get_real_type(type);
133 type_type = type_get_type(type);
135 assert(type_type == TYPE_UNION || type_type == TYPE_ENCAPSULATED_UNION);
136 if (type_type == TYPE_ENCAPSULATED_UNION)
138 const var_t *uv = LIST_ENTRY(list_tail(type->details.structure->fields), const var_t, entry);
139 return uv->type->details.structure->fields;
141 else
142 return type->details.structure->fields;
145 static inline statement_list_t *type_iface_get_stmts(const type_t *type)
147 type = type_get_real_type(type);
148 assert(type_get_type(type) == TYPE_INTERFACE);
149 return type->details.iface->stmts;
152 static inline type_t *type_iface_get_inherit(const type_t *type)
154 type = type_get_real_type(type);
155 assert(type_get_type(type) == TYPE_INTERFACE);
156 return type->details.iface->inherit;
159 static inline var_list_t *type_dispiface_get_props(const type_t *type)
161 type = type_get_real_type(type);
162 assert(type_get_type(type) == TYPE_INTERFACE);
163 return type->details.iface->disp_props;
166 static inline var_list_t *type_dispiface_get_methods(const type_t *type)
168 type = type_get_real_type(type);
169 assert(type_get_type(type) == TYPE_INTERFACE);
170 return type->details.iface->disp_methods;
173 static inline int type_is_defined(const type_t *type)
175 return type->defined;
178 static inline int type_is_complete(const type_t *type)
180 switch (type_get_type_detect_alias(type))
182 case TYPE_FUNCTION:
183 return (type->details.function != NULL);
184 case TYPE_INTERFACE:
185 return (type->details.iface != NULL);
186 case TYPE_ENUM:
187 return (type->details.enumeration != NULL);
188 case TYPE_UNION:
189 case TYPE_ENCAPSULATED_UNION:
190 case TYPE_STRUCT:
191 return (type->details.structure != NULL);
192 case TYPE_VOID:
193 case TYPE_BASIC:
194 case TYPE_ALIAS:
195 case TYPE_MODULE:
196 case TYPE_COCLASS:
197 case TYPE_POINTER:
198 case TYPE_ARRAY:
199 case TYPE_BITFIELD:
200 return TRUE;
202 return FALSE;
205 static inline int type_array_has_conformance(const type_t *type)
207 type = type_get_real_type(type);
208 assert(type_get_type(type) == TYPE_ARRAY);
209 return (type->details.array.size_is != NULL);
212 static inline int type_array_has_variance(const type_t *type)
214 type = type_get_real_type(type);
215 assert(type_get_type(type) == TYPE_ARRAY);
216 return (type->details.array.length_is != NULL);
219 static inline unsigned int type_array_get_dim(const type_t *type)
221 type = type_get_real_type(type);
222 assert(type_get_type(type) == TYPE_ARRAY);
223 return type->details.array.dim;
226 static inline expr_t *type_array_get_conformance(const type_t *type)
228 type = type_get_real_type(type);
229 assert(type_get_type(type) == TYPE_ARRAY);
230 return type->details.array.size_is;
233 static inline expr_t *type_array_get_variance(const type_t *type)
235 type = type_get_real_type(type);
236 assert(type_get_type(type) == TYPE_ARRAY);
237 return type->details.array.length_is;
240 static inline type_t *type_array_get_element(const type_t *type)
242 type = type_get_real_type(type);
243 assert(type_get_type(type) == TYPE_ARRAY);
244 return type->details.array.elem;
247 static inline int type_array_is_decl_as_ptr(const type_t *type)
249 type = type_get_real_type(type);
250 assert(type_get_type(type) == TYPE_ARRAY);
251 return type->details.array.declptr;
254 static inline unsigned char type_array_get_ptr_default_fc(const type_t *type)
256 type = type_get_real_type(type);
257 assert(type_get_type(type) == TYPE_ARRAY);
258 return type->details.array.ptr_def_fc;
261 static inline int type_is_alias(const type_t *type)
263 return type->is_alias;
266 static inline type_t *type_alias_get_aliasee(const type_t *type)
268 assert(type_is_alias(type));
269 return type->orig;
272 static inline ifref_list_t *type_coclass_get_ifaces(const type_t *type)
274 type = type_get_real_type(type);
275 assert(type_get_type(type) == TYPE_COCLASS);
276 return type->details.coclass.ifaces;
279 static inline type_t *type_pointer_get_ref(const type_t *type)
281 type = type_get_real_type(type);
282 assert(type_get_type(type) == TYPE_POINTER);
283 return type->details.pointer.ref;
286 static inline unsigned char type_pointer_get_default_fc(const type_t *type)
288 type = type_get_real_type(type);
289 assert(type_get_type(type) == TYPE_POINTER);
290 return type->details.pointer.def_fc;
293 static inline type_t *type_bitfield_get_field(const type_t *type)
295 type = type_get_real_type(type);
296 assert(type_get_type(type) == TYPE_BITFIELD);
297 return type->details.bitfield.field;
300 static inline const expr_t *type_bitfield_get_bits(const type_t *type)
302 type = type_get_real_type(type);
303 assert(type_get_type(type) == TYPE_BITFIELD);
304 return type->details.bitfield.bits;
307 #endif /* WIDL_TYPE_TREE_H */