typetree.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. /*
  2. * IDL Type Tree
  3. *
  4. * Copyright 2008 Robert Shearman
  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. #include "widltypes.h"
  21. #include <assert.h>
  22. #ifndef WIDL_TYPE_TREE_H
  23. #define WIDL_TYPE_TREE_H
  24. enum name_type {
  25. NAME_DEFAULT,
  26. NAME_C
  27. };
  28. type_t *type_new_function(var_list_t *args);
  29. type_t *type_new_pointer(type_t *ref);
  30. type_t *type_new_alias(const decl_spec_t *t, const char *name);
  31. type_t *type_new_module(char *name);
  32. type_t *type_new_array(const char *name, const decl_spec_t *element, int declptr,
  33. unsigned int dim, expr_t *size_is, expr_t *length_is);
  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, struct namespace *namespace, int defined, var_list_t *enums);
  39. type_t *type_new_struct(char *name, struct namespace *namespace, 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);
  49. const char *type_get_name(const type_t *type, enum name_type name_type);
  50. char *gen_name(void);
  51. /* FIXME: shouldn't need to export this */
  52. 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)
  55. {
  56. if (type->type_type == TYPE_ALIAS)
  57. return type_get_real_type(type->details.alias.aliasee.type);
  58. else
  59. return (type_t *)type;
  60. }
  61. static inline enum type_type type_get_type(const type_t *type)
  62. {
  63. return type_get_type_detect_alias(type_get_real_type(type));
  64. }
  65. static inline enum type_basic_type type_basic_get_type(const type_t *type)
  66. {
  67. type = type_get_real_type(type);
  68. assert(type_get_type(type) == TYPE_BASIC);
  69. return type->details.basic.type;
  70. }
  71. static inline int type_basic_get_sign(const type_t *type)
  72. {
  73. type = type_get_real_type(type);
  74. assert(type_get_type(type) == TYPE_BASIC);
  75. return type->details.basic.sign;
  76. }
  77. static inline var_list_t *type_struct_get_fields(const type_t *type)
  78. {
  79. type = type_get_real_type(type);
  80. assert(type_get_type(type) == TYPE_STRUCT);
  81. return type->details.structure->fields;
  82. }
  83. static inline var_list_t *type_function_get_args(const type_t *type)
  84. {
  85. type = type_get_real_type(type);
  86. assert(type_get_type(type) == TYPE_FUNCTION);
  87. return type->details.function->args;
  88. }
  89. static inline var_t *type_function_get_retval(const type_t *type)
  90. {
  91. type = type_get_real_type(type);
  92. assert(type_get_type(type) == TYPE_FUNCTION);
  93. return type->details.function->retval;
  94. }
  95. static inline const decl_spec_t *type_function_get_ret(const type_t *type)
  96. {
  97. return &type_function_get_retval(type)->declspec;
  98. }
  99. static inline type_t *type_function_get_rettype(const type_t *type)
  100. {
  101. return type_function_get_retval(type)->declspec.type;
  102. }
  103. static inline var_list_t *type_enum_get_values(const type_t *type)
  104. {
  105. type = type_get_real_type(type);
  106. assert(type_get_type(type) == TYPE_ENUM);
  107. return type->details.enumeration->enums;
  108. }
  109. static inline var_t *type_union_get_switch_value(const type_t *type)
  110. {
  111. type = type_get_real_type(type);
  112. assert(type_get_type(type) == TYPE_ENCAPSULATED_UNION);
  113. return LIST_ENTRY(list_head(type->details.structure->fields), var_t, entry);
  114. }
  115. static inline var_list_t *type_encapsulated_union_get_fields(const type_t *type)
  116. {
  117. type = type_get_real_type(type);
  118. assert(type_get_type(type) == TYPE_ENCAPSULATED_UNION);
  119. return type->details.structure->fields;
  120. }
  121. static inline var_list_t *type_union_get_cases(const type_t *type)
  122. {
  123. enum type_type type_type;
  124. type = type_get_real_type(type);
  125. type_type = type_get_type(type);
  126. assert(type_type == TYPE_UNION || type_type == TYPE_ENCAPSULATED_UNION);
  127. if (type_type == TYPE_ENCAPSULATED_UNION)
  128. {
  129. const var_t *uv = LIST_ENTRY(list_tail(type->details.structure->fields), const var_t, entry);
  130. return uv->declspec.type->details.structure->fields;
  131. }
  132. else
  133. return type->details.structure->fields;
  134. }
  135. static inline statement_list_t *type_iface_get_stmts(const type_t *type)
  136. {
  137. type = type_get_real_type(type);
  138. assert(type_get_type(type) == TYPE_INTERFACE);
  139. return type->details.iface->stmts;
  140. }
  141. static inline type_t *type_iface_get_inherit(const type_t *type)
  142. {
  143. type = type_get_real_type(type);
  144. assert(type_get_type(type) == TYPE_INTERFACE);
  145. return type->details.iface->inherit;
  146. }
  147. static inline type_t *type_iface_get_async_iface(const type_t *type)
  148. {
  149. type = type_get_real_type(type);
  150. assert(type_get_type(type) == TYPE_INTERFACE);
  151. return type->details.iface->async_iface;
  152. }
  153. static inline var_list_t *type_dispiface_get_props(const type_t *type)
  154. {
  155. type = type_get_real_type(type);
  156. assert(type_get_type(type) == TYPE_INTERFACE);
  157. return type->details.iface->disp_props;
  158. }
  159. static inline var_list_t *type_dispiface_get_methods(const type_t *type)
  160. {
  161. type = type_get_real_type(type);
  162. assert(type_get_type(type) == TYPE_INTERFACE);
  163. return type->details.iface->disp_methods;
  164. }
  165. static inline type_t *type_dispiface_get_inherit(const type_t *type)
  166. {
  167. type = type_get_real_type(type);
  168. assert(type_get_type(type) == TYPE_INTERFACE);
  169. return type->details.iface->disp_inherit;
  170. }
  171. static inline int type_is_defined(const type_t *type)
  172. {
  173. return type->defined;
  174. }
  175. static inline int type_is_complete(const type_t *type)
  176. {
  177. switch (type_get_type_detect_alias(type))
  178. {
  179. case TYPE_FUNCTION:
  180. return (type->details.function != NULL);
  181. case TYPE_INTERFACE:
  182. return (type->details.iface != NULL);
  183. case TYPE_ENUM:
  184. return (type->details.enumeration != NULL);
  185. case TYPE_UNION:
  186. case TYPE_ENCAPSULATED_UNION:
  187. case TYPE_STRUCT:
  188. return (type->details.structure != NULL);
  189. case TYPE_VOID:
  190. case TYPE_BASIC:
  191. case TYPE_ALIAS:
  192. case TYPE_MODULE:
  193. case TYPE_COCLASS:
  194. case TYPE_POINTER:
  195. case TYPE_ARRAY:
  196. case TYPE_BITFIELD:
  197. return TRUE;
  198. }
  199. return FALSE;
  200. }
  201. static inline int type_array_has_conformance(const type_t *type)
  202. {
  203. type = type_get_real_type(type);
  204. assert(type_get_type(type) == TYPE_ARRAY);
  205. return (type->details.array.size_is != NULL);
  206. }
  207. static inline int type_array_has_variance(const type_t *type)
  208. {
  209. type = type_get_real_type(type);
  210. assert(type_get_type(type) == TYPE_ARRAY);
  211. return (type->details.array.length_is != NULL);
  212. }
  213. static inline unsigned int type_array_get_dim(const type_t *type)
  214. {
  215. type = type_get_real_type(type);
  216. assert(type_get_type(type) == TYPE_ARRAY);
  217. return type->details.array.dim;
  218. }
  219. static inline expr_t *type_array_get_conformance(const type_t *type)
  220. {
  221. type = type_get_real_type(type);
  222. assert(type_get_type(type) == TYPE_ARRAY);
  223. return type->details.array.size_is;
  224. }
  225. static inline expr_t *type_array_get_variance(const type_t *type)
  226. {
  227. type = type_get_real_type(type);
  228. assert(type_get_type(type) == TYPE_ARRAY);
  229. return type->details.array.length_is;
  230. }
  231. static inline unsigned short type_array_get_ptr_tfsoff(const type_t *type)
  232. {
  233. type = type_get_real_type(type);
  234. assert(type_get_type(type) == TYPE_ARRAY);
  235. return type->details.array.ptr_tfsoff;
  236. }
  237. static inline void type_array_set_ptr_tfsoff(type_t *type, unsigned short ptr_tfsoff)
  238. {
  239. type = type_get_real_type(type);
  240. assert(type_get_type(type) == TYPE_ARRAY);
  241. type->details.array.ptr_tfsoff = ptr_tfsoff;
  242. }
  243. static inline const decl_spec_t *type_array_get_element(const type_t *type)
  244. {
  245. type = type_get_real_type(type);
  246. assert(type_get_type(type) == TYPE_ARRAY);
  247. return &type->details.array.elem;
  248. }
  249. static inline type_t *type_array_get_element_type(const type_t *type)
  250. {
  251. return type_array_get_element(type)->type;
  252. }
  253. static inline int type_array_is_decl_as_ptr(const type_t *type)
  254. {
  255. type = type_get_real_type(type);
  256. assert(type_get_type(type) == TYPE_ARRAY);
  257. return type->details.array.declptr;
  258. }
  259. static inline int type_is_alias(const type_t *type)
  260. {
  261. return type->type_type == TYPE_ALIAS;
  262. }
  263. static inline const decl_spec_t *type_alias_get_aliasee(const type_t *type)
  264. {
  265. assert(type_is_alias(type));
  266. return &type->details.alias.aliasee;
  267. }
  268. static inline type_t *type_alias_get_aliasee_type(const type_t *type)
  269. {
  270. assert(type_is_alias(type));
  271. return type->details.alias.aliasee.type;
  272. }
  273. static inline ifref_list_t *type_coclass_get_ifaces(const type_t *type)
  274. {
  275. type = type_get_real_type(type);
  276. assert(type_get_type(type) == TYPE_COCLASS);
  277. return type->details.coclass.ifaces;
  278. }
  279. static inline const decl_spec_t *type_pointer_get_ref(const type_t *type)
  280. {
  281. type = type_get_real_type(type);
  282. assert(type_get_type(type) == TYPE_POINTER);
  283. return &type->details.pointer.ref;
  284. }
  285. static inline type_t *type_pointer_get_ref_type(const type_t *type)
  286. {
  287. return type_pointer_get_ref(type)->type;
  288. }
  289. static inline type_t *type_bitfield_get_field(const type_t *type)
  290. {
  291. type = type_get_real_type(type);
  292. assert(type_get_type(type) == TYPE_BITFIELD);
  293. return type->details.bitfield.field;
  294. }
  295. static inline const expr_t *type_bitfield_get_bits(const type_t *type)
  296. {
  297. type = type_get_real_type(type);
  298. assert(type_get_type(type) == TYPE_BITFIELD);
  299. return type->details.bitfield.bits;
  300. }
  301. #endif /* WIDL_TYPE_TREE_H */