widltypes.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. /*
  2. * IDL Compiler
  3. *
  4. * Copyright 2002 Ove Kaaven
  5. *
  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.
  10. *
  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.
  15. *
  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
  19. */
  20. #ifndef __WIDL_WIDLTYPES_H
  21. #define __WIDL_WIDLTYPES_H
  22. #include <stdarg.h>
  23. #include <assert.h>
  24. #include "guiddef.h"
  25. #include "ndrtypes.h"
  26. #include "wine/list.h"
  27. #ifndef UUID_DEFINED
  28. #define UUID_DEFINED
  29. typedef GUID UUID;
  30. #endif
  31. #define TRUE 1
  32. #define FALSE 0
  33. typedef struct _loc_info_t loc_info_t;
  34. typedef struct _attr_t attr_t;
  35. typedef struct _expr_t expr_t;
  36. typedef struct _type_t type_t;
  37. typedef struct _var_t var_t;
  38. typedef struct _decl_spec_t decl_spec_t;
  39. typedef struct _declarator_t declarator_t;
  40. typedef struct _ifref_t ifref_t;
  41. typedef struct _typelib_entry_t typelib_entry_t;
  42. typedef struct _importlib_t importlib_t;
  43. typedef struct _importinfo_t importinfo_t;
  44. typedef struct _typelib_t typelib_t;
  45. typedef struct _user_type_t user_type_t;
  46. typedef struct _user_type_t context_handle_t;
  47. typedef struct _user_type_t generic_handle_t;
  48. typedef struct _type_list_t type_list_t;
  49. typedef struct _statement_t statement_t;
  50. typedef struct _warning_t warning_t;
  51. typedef struct list attr_list_t;
  52. typedef struct list str_list_t;
  53. typedef struct list expr_list_t;
  54. typedef struct list var_list_t;
  55. typedef struct list declarator_list_t;
  56. typedef struct list ifref_list_t;
  57. typedef struct list user_type_list_t;
  58. typedef struct list context_handle_list_t;
  59. typedef struct list generic_handle_list_t;
  60. typedef struct list statement_list_t;
  61. typedef struct list warning_list_t;
  62. enum attr_type
  63. {
  64. ATTR_AGGREGATABLE,
  65. ATTR_ANNOTATION,
  66. ATTR_APPOBJECT,
  67. ATTR_ASYNC,
  68. ATTR_ASYNCUUID,
  69. ATTR_AUTO_HANDLE,
  70. ATTR_BINDABLE,
  71. ATTR_BROADCAST,
  72. ATTR_CALLAS,
  73. ATTR_CALLCONV, /* calling convention pseudo-attribute */
  74. ATTR_CASE,
  75. ATTR_CODE,
  76. ATTR_COMMSTATUS,
  77. ATTR_CONTEXTHANDLE,
  78. ATTR_CONTROL,
  79. ATTR_DECODE,
  80. ATTR_DEFAULT,
  81. ATTR_DEFAULTBIND,
  82. ATTR_DEFAULTCOLLELEM,
  83. ATTR_DEFAULTVALUE,
  84. ATTR_DEFAULTVTABLE,
  85. ATTR_DISABLECONSISTENCYCHECK,
  86. ATTR_DISPINTERFACE,
  87. ATTR_DISPLAYBIND,
  88. ATTR_DLLNAME,
  89. ATTR_DUAL,
  90. ATTR_ENABLEALLOCATE,
  91. ATTR_ENCODE,
  92. ATTR_ENDPOINT,
  93. ATTR_ENTRY,
  94. ATTR_EXPLICIT_HANDLE,
  95. ATTR_FAULTSTATUS,
  96. ATTR_FORCEALLOCATE,
  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_IGNORE,
  107. ATTR_IIDIS,
  108. ATTR_IMMEDIATEBIND,
  109. ATTR_IMPLICIT_HANDLE,
  110. ATTR_IN,
  111. ATTR_INPUTSYNC,
  112. ATTR_LENGTHIS,
  113. ATTR_LIBLCID,
  114. ATTR_LICENSED,
  115. ATTR_LOCAL,
  116. ATTR_MAYBE,
  117. ATTR_MESSAGE,
  118. ATTR_NOCODE,
  119. ATTR_NONBROWSABLE,
  120. ATTR_NONCREATABLE,
  121. ATTR_NONEXTENSIBLE,
  122. ATTR_NOTIFY,
  123. ATTR_NOTIFYFLAG,
  124. ATTR_OBJECT,
  125. ATTR_ODL,
  126. ATTR_OLEAUTOMATION,
  127. ATTR_OPTIMIZE,
  128. ATTR_OPTIONAL,
  129. ATTR_OUT,
  130. ATTR_PARAMLCID,
  131. ATTR_PARTIALIGNORE,
  132. ATTR_POINTERDEFAULT,
  133. ATTR_POINTERTYPE,
  134. ATTR_PROGID,
  135. ATTR_PROPGET,
  136. ATTR_PROPPUT,
  137. ATTR_PROPPUTREF,
  138. ATTR_PROXY,
  139. ATTR_PUBLIC,
  140. ATTR_RANGE,
  141. ATTR_READONLY,
  142. ATTR_REPRESENTAS,
  143. ATTR_REQUESTEDIT,
  144. ATTR_RESTRICTED,
  145. ATTR_RETVAL,
  146. ATTR_SIZEIS,
  147. ATTR_SOURCE,
  148. ATTR_STRICTCONTEXTHANDLE,
  149. ATTR_STRING,
  150. ATTR_SWITCHIS,
  151. ATTR_SWITCHTYPE,
  152. ATTR_THREADING,
  153. ATTR_TRANSMITAS,
  154. ATTR_UIDEFAULT,
  155. ATTR_USERMARSHAL,
  156. ATTR_USESGETLASTERROR,
  157. ATTR_UUID,
  158. ATTR_V1ENUM,
  159. ATTR_VARARG,
  160. ATTR_VERSION,
  161. ATTR_VIPROGID,
  162. ATTR_WIREMARSHAL
  163. };
  164. enum expr_type
  165. {
  166. EXPR_VOID,
  167. EXPR_NUM,
  168. EXPR_HEXNUM,
  169. EXPR_DOUBLE,
  170. EXPR_IDENTIFIER,
  171. EXPR_NEG,
  172. EXPR_NOT,
  173. EXPR_PPTR,
  174. EXPR_CAST,
  175. EXPR_SIZEOF,
  176. EXPR_SHL,
  177. EXPR_SHR,
  178. EXPR_MUL,
  179. EXPR_DIV,
  180. EXPR_ADD,
  181. EXPR_SUB,
  182. EXPR_AND,
  183. EXPR_OR,
  184. EXPR_COND,
  185. EXPR_TRUEFALSE,
  186. EXPR_ADDRESSOF,
  187. EXPR_MEMBER,
  188. EXPR_ARRAY,
  189. EXPR_MOD,
  190. EXPR_LOGOR,
  191. EXPR_LOGAND,
  192. EXPR_XOR,
  193. EXPR_EQUALITY,
  194. EXPR_INEQUALITY,
  195. EXPR_GTR,
  196. EXPR_LESS,
  197. EXPR_GTREQL,
  198. EXPR_LESSEQL,
  199. EXPR_LOGNOT,
  200. EXPR_POS,
  201. EXPR_STRLIT,
  202. EXPR_WSTRLIT,
  203. EXPR_CHARCONST,
  204. };
  205. enum type_kind
  206. {
  207. TKIND_PRIMITIVE = -1,
  208. TKIND_ENUM,
  209. TKIND_RECORD,
  210. TKIND_MODULE,
  211. TKIND_INTERFACE,
  212. TKIND_DISPATCH,
  213. TKIND_COCLASS,
  214. TKIND_ALIAS,
  215. TKIND_UNION,
  216. TKIND_MAX
  217. };
  218. enum storage_class
  219. {
  220. STG_NONE,
  221. STG_STATIC,
  222. STG_EXTERN,
  223. STG_REGISTER,
  224. };
  225. enum type_qualifier
  226. {
  227. TYPE_QUALIFIER_CONST = 1,
  228. };
  229. enum function_specifier
  230. {
  231. FUNCTION_SPECIFIER_INLINE = 1,
  232. };
  233. enum statement_type
  234. {
  235. STMT_LIBRARY,
  236. STMT_DECLARATION,
  237. STMT_TYPE,
  238. STMT_TYPEREF,
  239. STMT_MODULE,
  240. STMT_TYPEDEF,
  241. STMT_IMPORT,
  242. STMT_IMPORTLIB,
  243. STMT_PRAGMA,
  244. STMT_CPPQUOTE
  245. };
  246. enum threading_type
  247. {
  248. THREADING_APARTMENT = 1,
  249. THREADING_NEUTRAL,
  250. THREADING_SINGLE,
  251. THREADING_FREE,
  252. THREADING_BOTH
  253. };
  254. enum type_basic_type
  255. {
  256. TYPE_BASIC_INT8 = 1,
  257. TYPE_BASIC_INT16,
  258. TYPE_BASIC_INT32,
  259. TYPE_BASIC_INT64,
  260. TYPE_BASIC_INT,
  261. TYPE_BASIC_INT3264,
  262. TYPE_BASIC_LONG,
  263. TYPE_BASIC_CHAR,
  264. TYPE_BASIC_HYPER,
  265. TYPE_BASIC_BYTE,
  266. TYPE_BASIC_WCHAR,
  267. TYPE_BASIC_FLOAT,
  268. TYPE_BASIC_DOUBLE,
  269. TYPE_BASIC_ERROR_STATUS_T,
  270. TYPE_BASIC_HANDLE,
  271. };
  272. #define TYPE_BASIC_MAX TYPE_BASIC_HANDLE
  273. #define TYPE_BASIC_INT_MIN TYPE_BASIC_INT8
  274. #define TYPE_BASIC_INT_MAX TYPE_BASIC_HYPER
  275. struct _loc_info_t
  276. {
  277. const char *input_name;
  278. int line_number;
  279. const char *near_text;
  280. };
  281. struct str_list_entry_t
  282. {
  283. char *str;
  284. struct list entry;
  285. };
  286. struct _decl_spec_t
  287. {
  288. type_t *type;
  289. enum storage_class stgclass;
  290. enum type_qualifier qualifier;
  291. enum function_specifier func_specifier;
  292. };
  293. struct _attr_t {
  294. enum attr_type type;
  295. union {
  296. unsigned int ival;
  297. void *pval;
  298. } u;
  299. /* parser-internal */
  300. struct list entry;
  301. };
  302. struct _expr_t {
  303. enum expr_type type;
  304. const expr_t *ref;
  305. union {
  306. int lval;
  307. double dval;
  308. const char *sval;
  309. const expr_t *ext;
  310. decl_spec_t tref;
  311. } u;
  312. const expr_t *ext2;
  313. int is_const;
  314. int cval;
  315. /* parser-internal */
  316. struct list entry;
  317. };
  318. struct struct_details
  319. {
  320. var_list_t *fields;
  321. };
  322. struct enumeration_details
  323. {
  324. var_list_t *enums;
  325. };
  326. struct func_details
  327. {
  328. var_list_t *args;
  329. struct _var_t *retval;
  330. };
  331. struct iface_details
  332. {
  333. statement_list_t *stmts;
  334. var_list_t *disp_methods;
  335. var_list_t *disp_props;
  336. struct _type_t *inherit;
  337. struct _type_t *disp_inherit;
  338. struct _type_t *async_iface;
  339. };
  340. struct module_details
  341. {
  342. statement_list_t *stmts;
  343. };
  344. struct array_details
  345. {
  346. expr_t *size_is;
  347. expr_t *length_is;
  348. struct _decl_spec_t elem;
  349. unsigned int dim;
  350. unsigned char declptr; /* if declared as a pointer */
  351. unsigned short ptr_tfsoff; /* offset of pointer definition for declptr */
  352. };
  353. struct coclass_details
  354. {
  355. ifref_list_t *ifaces;
  356. };
  357. struct basic_details
  358. {
  359. enum type_basic_type type;
  360. int sign;
  361. };
  362. struct pointer_details
  363. {
  364. struct _decl_spec_t ref;
  365. };
  366. struct bitfield_details
  367. {
  368. struct _type_t *field;
  369. const expr_t *bits;
  370. };
  371. struct alias_details
  372. {
  373. struct _decl_spec_t aliasee;
  374. };
  375. #define HASHMAX 64
  376. struct namespace {
  377. const char *name;
  378. struct namespace *parent;
  379. struct list entry;
  380. struct list children;
  381. struct rtype *type_hash[HASHMAX];
  382. };
  383. enum type_type
  384. {
  385. TYPE_VOID,
  386. TYPE_BASIC, /* ints, floats and handles */
  387. TYPE_ENUM,
  388. TYPE_STRUCT,
  389. TYPE_ENCAPSULATED_UNION,
  390. TYPE_UNION,
  391. TYPE_ALIAS,
  392. TYPE_MODULE,
  393. TYPE_COCLASS,
  394. TYPE_FUNCTION,
  395. TYPE_INTERFACE,
  396. TYPE_POINTER,
  397. TYPE_ARRAY,
  398. TYPE_BITFIELD,
  399. };
  400. struct _type_t {
  401. const char *name;
  402. struct namespace *namespace;
  403. enum type_type type_type;
  404. attr_list_t *attrs;
  405. union
  406. {
  407. struct struct_details *structure;
  408. struct enumeration_details *enumeration;
  409. struct func_details *function;
  410. struct iface_details *iface;
  411. struct module_details *module;
  412. struct array_details array;
  413. struct coclass_details coclass;
  414. struct basic_details basic;
  415. struct pointer_details pointer;
  416. struct bitfield_details bitfield;
  417. struct alias_details alias;
  418. } details;
  419. const char *c_name;
  420. unsigned int typestring_offset;
  421. unsigned int ptrdesc; /* used for complex structs */
  422. int typelib_idx;
  423. loc_info_t loc_info;
  424. unsigned int ignore : 1;
  425. unsigned int defined : 1;
  426. unsigned int written : 1;
  427. unsigned int user_types_registered : 1;
  428. unsigned int tfswrite : 1; /* if the type needs to be written to the TFS */
  429. unsigned int checked : 1;
  430. };
  431. struct _var_t {
  432. char *name;
  433. decl_spec_t declspec;
  434. attr_list_t *attrs;
  435. expr_t *eval;
  436. unsigned int typestring_offset;
  437. /* fields specific to functions */
  438. unsigned int procstring_offset, func_idx;
  439. struct _loc_info_t loc_info;
  440. unsigned int declonly : 1;
  441. /* parser-internal */
  442. struct list entry;
  443. };
  444. struct _declarator_t {
  445. var_t *var;
  446. type_t *type;
  447. enum type_qualifier qualifier;
  448. expr_t *bits;
  449. /* parser-internal */
  450. struct list entry;
  451. };
  452. struct _ifref_t {
  453. type_t *iface;
  454. attr_list_t *attrs;
  455. /* parser-internal */
  456. struct list entry;
  457. };
  458. struct _typelib_entry_t {
  459. type_t *type;
  460. struct list entry;
  461. };
  462. struct _importinfo_t {
  463. int offset;
  464. GUID guid;
  465. int flags;
  466. int id;
  467. char *name;
  468. importlib_t *importlib;
  469. };
  470. struct _importlib_t {
  471. int offset;
  472. char *name;
  473. int version;
  474. GUID guid;
  475. importinfo_t *importinfos;
  476. int ntypeinfos;
  477. int allocated;
  478. struct list entry;
  479. };
  480. struct _typelib_t {
  481. char *name;
  482. const attr_list_t *attrs;
  483. struct list importlibs;
  484. statement_list_t *stmts;
  485. type_t **reg_ifaces;
  486. unsigned int reg_iface_count;
  487. };
  488. struct _user_type_t {
  489. struct list entry;
  490. const char *name;
  491. };
  492. struct _type_list_t {
  493. type_t *type;
  494. struct _type_list_t *next;
  495. };
  496. struct _statement_t {
  497. struct list entry;
  498. enum statement_type type;
  499. union
  500. {
  501. ifref_t iface;
  502. type_t *type;
  503. const char *str;
  504. var_t *var;
  505. typelib_t *lib;
  506. type_list_t *type_list;
  507. } u;
  508. unsigned int declonly : 1; /* for STMT_TYPE and STMT_TYPEDEF */
  509. };
  510. struct _warning_t {
  511. int num;
  512. struct list entry;
  513. };
  514. typedef enum {
  515. SYS_WIN16,
  516. SYS_WIN32,
  517. SYS_MAC,
  518. SYS_WIN64
  519. } syskind_t;
  520. extern user_type_list_t user_type_list;
  521. extern context_handle_list_t context_handle_list;
  522. extern generic_handle_list_t generic_handle_list;
  523. void check_for_additional_prototype_types(type_t *type);
  524. void init_types(void);
  525. type_t *alloc_type(void);
  526. void set_all_tfswrite(int val);
  527. void clear_all_offsets(void);
  528. #define tsENUM 1
  529. #define tsSTRUCT 2
  530. #define tsUNION 3
  531. var_t *find_const(const char *name, int f);
  532. type_t *find_type(const char *name, struct namespace *namespace, int t);
  533. type_t *make_type(enum type_type type);
  534. type_t *get_type(enum type_type type, char *name, struct namespace *namespace, int t);
  535. type_t *reg_type(type_t *type, const char *name, struct namespace *namespace, int t);
  536. var_t *make_var(char *name);
  537. var_list_t *append_var(var_list_t *list, var_t *var);
  538. void init_loc_info(loc_info_t *);
  539. char *format_namespace(struct namespace *namespace, const char *prefix, const char *separator, const char *suffix);
  540. static inline enum type_type type_get_type_detect_alias(const type_t *type)
  541. {
  542. return type->type_type;
  543. }
  544. #define STATEMENTS_FOR_EACH_FUNC(stmt, stmts) \
  545. if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, statement_t, entry ) \
  546. if (stmt->type == STMT_DECLARATION && stmt->u.var->declspec.stgclass == STG_NONE && \
  547. type_get_type_detect_alias(stmt->u.var->declspec.type) == TYPE_FUNCTION)
  548. static inline int statements_has_func(const statement_list_t *stmts)
  549. {
  550. const statement_t *stmt;
  551. int has_func = 0;
  552. STATEMENTS_FOR_EACH_FUNC(stmt, stmts)
  553. {
  554. has_func = 1;
  555. break;
  556. }
  557. return has_func;
  558. }
  559. static inline int is_global_namespace(const struct namespace *namespace)
  560. {
  561. return !namespace->name;
  562. }
  563. static inline decl_spec_t *init_declspec(decl_spec_t *declspec, type_t *type)
  564. {
  565. declspec->type = type;
  566. declspec->stgclass = STG_NONE;
  567. declspec->qualifier = 0;
  568. declspec->func_specifier = 0;
  569. return declspec;
  570. }
  571. #endif