widl: Move the pointer referent, array element, function return type and interface...
[wine/multimedia.git] / tools / widl / widltypes.h
blob1a534e9f7f43f92fd211423f8144fc3dfca505ee
1 /*
2 * IDL Compiler
4 * Copyright 2002 Ove Kaaven
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 #ifndef __WIDL_WIDLTYPES_H
22 #define __WIDL_WIDLTYPES_H
24 #include <stdarg.h>
25 #include <assert.h>
26 #include "guiddef.h"
27 #include "wine/rpcfc.h"
28 #include "wine/list.h"
30 #ifndef UUID_DEFINED
31 #define UUID_DEFINED
32 typedef GUID UUID;
33 #endif
35 #define TRUE 1
36 #define FALSE 0
38 #define RPC_FC_MODULE 0xfc
39 #define RPC_FC_COCLASS 0xfd
40 #define RPC_FC_FUNCTION 0xfe
42 typedef struct _loc_info_t loc_info_t;
43 typedef struct _attr_t attr_t;
44 typedef struct _expr_t expr_t;
45 typedef struct _type_t type_t;
46 typedef struct _typeref_t typeref_t;
47 typedef struct _var_t var_t;
48 typedef struct _declarator_t declarator_t;
49 typedef struct _func_t func_t;
50 typedef struct _ifref_t ifref_t;
51 typedef struct _typelib_entry_t typelib_entry_t;
52 typedef struct _importlib_t importlib_t;
53 typedef struct _importinfo_t importinfo_t;
54 typedef struct _typelib_t typelib_t;
55 typedef struct _user_type_t user_type_t;
56 typedef struct _user_type_t context_handle_t;
57 typedef struct _type_list_t type_list_t;
58 typedef struct _statement_t statement_t;
60 typedef struct list attr_list_t;
61 typedef struct list str_list_t;
62 typedef struct list func_list_t;
63 typedef struct list expr_list_t;
64 typedef struct list var_list_t;
65 typedef struct list declarator_list_t;
66 typedef struct list ifref_list_t;
67 typedef struct list array_dims_t;
68 typedef struct list user_type_list_t;
69 typedef struct list context_handle_list_t;
70 typedef struct list statement_list_t;
72 enum attr_type
74 ATTR_AGGREGATABLE,
75 ATTR_APPOBJECT,
76 ATTR_ASYNC,
77 ATTR_AUTO_HANDLE,
78 ATTR_BINDABLE,
79 ATTR_BROADCAST,
80 ATTR_CALLAS,
81 ATTR_CALLCONV, /* calling convention pseudo-attribute */
82 ATTR_CASE,
83 ATTR_CONST, /* const pseudo-attribute */
84 ATTR_CONTEXTHANDLE,
85 ATTR_CONTROL,
86 ATTR_DEFAULT,
87 ATTR_DEFAULTCOLLELEM,
88 ATTR_DEFAULTVALUE,
89 ATTR_DEFAULTVTABLE,
90 ATTR_DISPINTERFACE,
91 ATTR_DISPLAYBIND,
92 ATTR_DLLNAME,
93 ATTR_DUAL,
94 ATTR_ENDPOINT,
95 ATTR_ENTRY,
96 ATTR_EXPLICIT_HANDLE,
97 ATTR_HANDLE,
98 ATTR_HELPCONTEXT,
99 ATTR_HELPFILE,
100 ATTR_HELPSTRING,
101 ATTR_HELPSTRINGCONTEXT,
102 ATTR_HELPSTRINGDLL,
103 ATTR_HIDDEN,
104 ATTR_ID,
105 ATTR_IDEMPOTENT,
106 ATTR_IIDIS,
107 ATTR_IMMEDIATEBIND,
108 ATTR_IMPLICIT_HANDLE,
109 ATTR_IN,
110 ATTR_INLINE,
111 ATTR_INPUTSYNC,
112 ATTR_LENGTHIS,
113 ATTR_LIBLCID,
114 ATTR_LOCAL,
115 ATTR_NONBROWSABLE,
116 ATTR_NONCREATABLE,
117 ATTR_NONEXTENSIBLE,
118 ATTR_OBJECT,
119 ATTR_ODL,
120 ATTR_OLEAUTOMATION,
121 ATTR_OPTIONAL,
122 ATTR_OUT,
123 ATTR_POINTERDEFAULT,
124 ATTR_POINTERTYPE,
125 ATTR_PROPGET,
126 ATTR_PROPPUT,
127 ATTR_PROPPUTREF,
128 ATTR_PUBLIC,
129 ATTR_RANGE,
130 ATTR_READONLY,
131 ATTR_REQUESTEDIT,
132 ATTR_RESTRICTED,
133 ATTR_RETVAL,
134 ATTR_SIZEIS,
135 ATTR_SOURCE,
136 ATTR_STRICTCONTEXTHANDLE,
137 ATTR_STRING,
138 ATTR_SWITCHIS,
139 ATTR_SWITCHTYPE,
140 ATTR_TRANSMITAS,
141 ATTR_UUID,
142 ATTR_V1ENUM,
143 ATTR_VARARG,
144 ATTR_VERSION,
145 ATTR_WIREMARSHAL
148 enum expr_type
150 EXPR_VOID,
151 EXPR_NUM,
152 EXPR_HEXNUM,
153 EXPR_DOUBLE,
154 EXPR_IDENTIFIER,
155 EXPR_NEG,
156 EXPR_NOT,
157 EXPR_PPTR,
158 EXPR_CAST,
159 EXPR_SIZEOF,
160 EXPR_SHL,
161 EXPR_SHR,
162 EXPR_MUL,
163 EXPR_DIV,
164 EXPR_ADD,
165 EXPR_SUB,
166 EXPR_AND,
167 EXPR_OR,
168 EXPR_COND,
169 EXPR_TRUEFALSE,
170 EXPR_ADDRESSOF,
171 EXPR_MEMBER,
172 EXPR_ARRAY,
173 EXPR_MOD,
174 EXPR_LOGOR,
175 EXPR_LOGAND,
176 EXPR_XOR,
177 EXPR_EQUALITY,
178 EXPR_INEQUALITY,
179 EXPR_GTR,
180 EXPR_LESS,
181 EXPR_GTREQL,
182 EXPR_LESSEQL,
183 EXPR_LOGNOT,
184 EXPR_POS,
185 EXPR_STRLIT,
186 EXPR_WSTRLIT,
189 enum type_kind
191 TKIND_PRIMITIVE = -1,
192 TKIND_ENUM,
193 TKIND_RECORD,
194 TKIND_MODULE,
195 TKIND_INTERFACE,
196 TKIND_DISPATCH,
197 TKIND_COCLASS,
198 TKIND_ALIAS,
199 TKIND_UNION,
200 TKIND_MAX
203 enum storage_class
205 STG_NONE,
206 STG_STATIC,
207 STG_EXTERN,
208 STG_REGISTER,
211 enum statement_type
213 STMT_LIBRARY,
214 STMT_DECLARATION,
215 STMT_TYPE,
216 STMT_TYPEREF,
217 STMT_MODULE,
218 STMT_TYPEDEF,
219 STMT_IMPORT,
220 STMT_IMPORTLIB,
221 STMT_CPPQUOTE
224 enum type_basic_type
226 TYPE_BASIC_INT8 = 1,
227 TYPE_BASIC_INT16,
228 TYPE_BASIC_INT32,
229 TYPE_BASIC_INT64,
230 TYPE_BASIC_INT,
231 TYPE_BASIC_CHAR,
232 TYPE_BASIC_HYPER,
233 TYPE_BASIC_BYTE,
234 TYPE_BASIC_WCHAR,
235 TYPE_BASIC_FLOAT,
236 TYPE_BASIC_DOUBLE,
237 TYPE_BASIC_ERROR_STATUS_T,
238 TYPE_BASIC_HANDLE,
241 #define TYPE_BASIC_MAX TYPE_BASIC_HANDLE
242 #define TYPE_BASIC_INT_MIN TYPE_BASIC_INT8
243 #define TYPE_BASIC_INT_MAX TYPE_BASIC_HYPER
245 struct _loc_info_t
247 const char *input_name;
248 int line_number;
249 const char *near_text;
252 struct str_list_entry_t
254 char *str;
255 struct list entry;
258 struct _attr_t {
259 enum attr_type type;
260 union {
261 unsigned long ival;
262 void *pval;
263 } u;
264 /* parser-internal */
265 struct list entry;
268 struct _expr_t {
269 enum expr_type type;
270 const expr_t *ref;
271 union {
272 long lval;
273 double dval;
274 const char *sval;
275 const expr_t *ext;
276 type_t *tref;
277 } u;
278 const expr_t *ext2;
279 int is_const;
280 long cval;
281 /* parser-internal */
282 struct list entry;
285 struct struct_details
287 var_list_t *fields;
290 struct enumeration_details
292 var_list_t *enums;
295 struct func_details
297 var_list_t *args;
298 struct _type_t *rettype;
299 int idx;
302 struct iface_details
304 statement_list_t *stmts;
305 func_list_t *disp_methods;
306 var_list_t *disp_props;
307 struct _type_t *inherit;
310 struct module_details
312 statement_list_t *stmts;
313 func_list_t *funcs;
316 struct array_details
318 expr_t *size_is;
319 expr_t *length_is;
320 struct _type_t *elem;
321 unsigned int dim;
322 unsigned int declptr; /* if declared as a pointer */
325 struct coclass_details
327 ifref_list_t *ifaces;
330 struct basic_details
332 enum type_basic_type type;
333 int sign;
336 struct pointer_details
338 struct _type_t *ref;
339 unsigned char fc;
342 enum type_type
344 TYPE_VOID,
345 TYPE_BASIC, /* ints, floats and handles */
346 TYPE_ENUM,
347 TYPE_STRUCT,
348 TYPE_ENCAPSULATED_UNION,
349 TYPE_UNION,
350 TYPE_ALIAS,
351 TYPE_MODULE,
352 TYPE_COCLASS,
353 TYPE_FUNCTION,
354 TYPE_INTERFACE,
355 TYPE_POINTER,
356 TYPE_ARRAY,
359 struct _type_t {
360 const char *name;
361 enum type_type type_type;
362 attr_list_t *attrs;
363 union
365 struct struct_details *structure;
366 struct enumeration_details *enumeration;
367 struct func_details *function;
368 struct iface_details *iface;
369 struct module_details *module;
370 struct array_details array;
371 struct coclass_details coclass;
372 struct basic_details basic;
373 struct pointer_details pointer;
374 } details;
375 type_t *orig; /* dup'd types */
376 unsigned int typestring_offset;
377 unsigned int ptrdesc; /* used for complex structs */
378 int typelib_idx;
379 loc_info_t loc_info;
380 unsigned int ignore : 1;
381 unsigned int defined : 1;
382 unsigned int written : 1;
383 unsigned int user_types_registered : 1;
384 unsigned int tfswrite : 1; /* if the type needs to be written to the TFS */
385 unsigned int checked : 1;
386 unsigned int is_alias : 1; /* is the type an alias? */
389 struct _var_t {
390 char *name;
391 type_t *type;
392 attr_list_t *attrs;
393 expr_t *eval;
394 enum storage_class stgclass;
396 struct _loc_info_t loc_info;
398 /* parser-internal */
399 struct list entry;
402 struct _declarator_t {
403 var_t *var;
404 type_t *type;
405 type_t *func_type;
406 array_dims_t *array;
408 /* parser-internal */
409 struct list entry;
412 struct _func_t {
413 var_t *def;
415 /* parser-internal */
416 struct list entry;
419 struct _ifref_t {
420 type_t *iface;
421 attr_list_t *attrs;
423 /* parser-internal */
424 struct list entry;
427 struct _typelib_entry_t {
428 type_t *type;
429 struct list entry;
432 struct _importinfo_t {
433 int offset;
434 GUID guid;
435 int flags;
436 int id;
438 char *name;
440 importlib_t *importlib;
443 struct _importlib_t {
444 char *name;
446 int version;
447 GUID guid;
449 importinfo_t *importinfos;
450 int ntypeinfos;
452 int allocated;
454 struct list entry;
457 struct _typelib_t {
458 char *name;
459 char *filename;
460 const attr_list_t *attrs;
461 struct list importlibs;
462 statement_list_t *stmts;
465 struct _user_type_t {
466 struct list entry;
467 const char *name;
470 struct _type_list_t {
471 type_t *type;
472 struct _type_list_t *next;
475 struct _statement_t {
476 struct list entry;
477 enum statement_type type;
478 union
480 ifref_t iface;
481 type_t *type;
482 const char *str;
483 var_t *var;
484 typelib_t *lib;
485 type_list_t *type_list;
486 } u;
489 extern unsigned char pointer_default;
491 extern user_type_list_t user_type_list;
492 void check_for_additional_prototype_types(const var_list_t *list);
494 void init_types(void);
495 type_t *alloc_type(void);
496 void set_all_tfswrite(int val);
497 void clear_all_offsets(void);
499 int is_ptr(const type_t *t);
500 int is_array(const type_t *t);
501 int is_var_ptr(const var_t *v);
502 int cant_be_null(const var_t *v);
503 int is_struct(unsigned char tc);
504 int is_union(unsigned char tc);
506 var_t *find_const(const char *name, int f);
507 type_t *find_type(const char *name, int t);
508 type_t *make_type(enum type_type type);
510 void init_loc_info(loc_info_t *);
512 static inline var_list_t *type_get_function_args(const type_t *func_type)
514 return func_type->details.function->args;
517 static inline enum type_type type_get_type_detect_alias(const type_t *type)
519 if (type->is_alias)
520 return TYPE_ALIAS;
521 return type->type_type;
524 #define STATEMENTS_FOR_EACH_FUNC(stmt, stmts) \
525 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, statement_t, entry ) \
526 if (stmt->type == STMT_DECLARATION && stmt->u.var->stgclass == STG_NONE && \
527 type_get_type_detect_alias(stmt->u.var->type) == TYPE_FUNCTION)
529 static inline int statements_has_func(const statement_list_t *stmts)
531 const statement_t *stmt;
532 int has_func = 0;
533 STATEMENTS_FOR_EACH_FUNC(stmt, stmts)
535 has_func = 1;
536 break;
538 return has_func;
541 #endif