comctl32/tests: Replace asserts with regular test checks for Edit tests.
[wine.git] / tools / widl / header.c
blob9f92127d0631d02b8ec183cc3314baee3207c0a5
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 #include "config.h"
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #ifdef HAVE_UNISTD_H
27 # include <unistd.h>
28 #endif
29 #include <string.h>
30 #include <ctype.h>
32 #include "widl.h"
33 #include "utils.h"
34 #include "parser.h"
35 #include "header.h"
36 #include "expr.h"
37 #include "typetree.h"
38 #include "typelib.h"
40 static int indentation = 0;
41 static int is_object_interface = 0;
42 user_type_list_t user_type_list = LIST_INIT(user_type_list);
43 context_handle_list_t context_handle_list = LIST_INIT(context_handle_list);
44 generic_handle_list_t generic_handle_list = LIST_INIT(generic_handle_list);
46 static void write_type_def_or_decl(FILE *f, type_t *t, int field, const char *name);
48 static void indent(FILE *h, int delta)
50 int c;
51 if (delta < 0) indentation += delta;
52 for (c=0; c<indentation; c++) fprintf(h, " ");
53 if (delta > 0) indentation += delta;
56 static void write_line(FILE *f, int delta, const char *fmt, ...)
58 va_list ap;
59 indent(f, delta);
60 va_start(ap, fmt);
61 vfprintf(f, fmt, ap);
62 va_end(ap);
63 fprintf(f, "\n");
66 int is_ptrchain_attr(const var_t *var, enum attr_type t)
68 if (is_attr(var->attrs, t))
69 return 1;
70 else
72 type_t *type = var->type;
73 for (;;)
75 if (is_attr(type->attrs, t))
76 return 1;
77 else if (type_is_alias(type))
78 type = type_alias_get_aliasee(type);
79 else if (is_ptr(type))
80 type = type_pointer_get_ref(type);
81 else return 0;
86 int is_aliaschain_attr(const type_t *type, enum attr_type attr)
88 const type_t *t = type;
89 for (;;)
91 if (is_attr(t->attrs, attr))
92 return 1;
93 else if (type_is_alias(t))
94 t = type_alias_get_aliasee(t);
95 else return 0;
99 int is_attr(const attr_list_t *list, enum attr_type t)
101 const attr_t *attr;
102 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
103 if (attr->type == t) return 1;
104 return 0;
107 void *get_attrp(const attr_list_t *list, enum attr_type t)
109 const attr_t *attr;
110 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
111 if (attr->type == t) return attr->u.pval;
112 return NULL;
115 unsigned int get_attrv(const attr_list_t *list, enum attr_type t)
117 const attr_t *attr;
118 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
119 if (attr->type == t) return attr->u.ival;
120 return 0;
123 static void write_guid(FILE *f, const char *guid_prefix, const char *name, const UUID *uuid)
125 if (!uuid) return;
126 fprintf(f, "DEFINE_GUID(%s_%s, 0x%08x, 0x%04x, 0x%04x, 0x%02x,0x%02x, 0x%02x,"
127 "0x%02x,0x%02x,0x%02x,0x%02x,0x%02x);\n",
128 guid_prefix, name, uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0],
129 uuid->Data4[1], uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5],
130 uuid->Data4[6], uuid->Data4[7]);
133 static void write_uuid_decl(FILE *f, type_t *type, const UUID *uuid)
135 char *name = format_namespace(type->namespace, "", "::", type->name);
136 fprintf(f, "#ifdef __CRT_UUID_DECL\n");
137 fprintf(f, "__CRT_UUID_DECL(%s, 0x%08x, 0x%04x, 0x%04x, 0x%02x,0x%02x, 0x%02x,"
138 "0x%02x,0x%02x,0x%02x,0x%02x,0x%02x)\n",
139 name, uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
140 uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
141 uuid->Data4[7]);
142 fprintf(f, "#endif\n");
143 free(name);
146 static const char *uuid_string(const UUID *uuid)
148 static char buf[37];
150 sprintf(buf, "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
151 uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1], uuid->Data4[2],
152 uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6], uuid->Data4[7]);
154 return buf;
157 static void write_namespace_start(FILE *header, struct namespace *namespace)
159 if(is_global_namespace(namespace)) {
160 if(use_abi_namespace)
161 write_line(header, 1, "namespace ABI {");
162 return;
165 write_namespace_start(header, namespace->parent);
166 write_line(header, 1, "namespace %s {", namespace->name);
169 static void write_namespace_end(FILE *header, struct namespace *namespace)
171 if(is_global_namespace(namespace)) {
172 if(use_abi_namespace)
173 write_line(header, -1, "}", namespace->name);
174 return;
177 write_line(header, -1, "}", namespace->name);
178 write_namespace_end(header, namespace->parent);
181 const char *get_name(const var_t *v)
183 static char buffer[256];
185 if (is_attr( v->attrs, ATTR_PROPGET ))
186 strcpy( buffer, "get_" );
187 else if (is_attr( v->attrs, ATTR_PROPPUT ))
188 strcpy( buffer, "put_" );
189 else if (is_attr( v->attrs, ATTR_PROPPUTREF ))
190 strcpy( buffer, "putref_" );
191 else
192 buffer[0] = 0;
193 strcat( buffer, v->name );
194 return buffer;
197 static void write_fields(FILE *h, var_list_t *fields)
199 unsigned nameless_struct_cnt = 0, nameless_struct_i = 0, nameless_union_cnt = 0, nameless_union_i = 0;
200 const char *name;
201 char buf[32];
202 var_t *v;
204 if (!fields) return;
206 LIST_FOR_EACH_ENTRY( v, fields, var_t, entry ) {
207 if (!v || !v->type) continue;
209 switch(type_get_type_detect_alias(v->type)) {
210 case TYPE_STRUCT:
211 case TYPE_ENCAPSULATED_UNION:
212 nameless_struct_cnt++;
213 break;
214 case TYPE_UNION:
215 nameless_union_cnt++;
216 break;
217 default:
222 LIST_FOR_EACH_ENTRY( v, fields, var_t, entry ) {
223 if (!v || !v->type) continue;
225 indent(h, 0);
226 name = v->name;
228 switch(type_get_type_detect_alias(v->type)) {
229 case TYPE_STRUCT:
230 case TYPE_ENCAPSULATED_UNION:
231 if(!v->name) {
232 fprintf(h, "__C89_NAMELESS ");
233 if(nameless_struct_cnt == 1) {
234 name = "__C89_NAMELESSSTRUCTNAME";
235 }else if(nameless_struct_i < 5 /* # of supporting macros */) {
236 sprintf(buf, "__C89_NAMELESSSTRUCTNAME%d", ++nameless_struct_i);
237 name = buf;
240 break;
241 case TYPE_UNION:
242 if(!v->name) {
243 fprintf(h, "__C89_NAMELESS ");
244 if(nameless_union_cnt == 1) {
245 name = "__C89_NAMELESSUNIONNAME";
246 }else if(nameless_union_i < 8 /* # of supporting macros */ ) {
247 sprintf(buf, "__C89_NAMELESSUNIONNAME%d", ++nameless_union_i);
248 name = buf;
251 break;
252 default:
255 write_type_def_or_decl(h, v->type, TRUE, name);
256 fprintf(h, ";\n");
260 static void write_enums(FILE *h, var_list_t *enums, const char *enum_name)
262 var_t *v;
263 if (!enums) return;
264 LIST_FOR_EACH_ENTRY( v, enums, var_t, entry )
266 if (v->name) {
267 indent(h, 0);
268 if(!enum_name)
269 fprintf(h, "%s", get_name(v));
270 else
271 fprintf(h, "%s_%s", enum_name, get_name(v));
272 if (v->eval) {
273 fprintf(h, " = ");
274 write_expr(h, v->eval, 0, 1, NULL, NULL, "");
277 if (list_next( enums, &v->entry )) fprintf(h, ",\n");
279 fprintf(h, "\n");
282 int needs_space_after(type_t *t)
284 return (type_is_alias(t) ||
285 (!is_ptr(t) && (!is_array(t) || !type_array_is_decl_as_ptr(t) || t->name)));
288 void write_type_left(FILE *h, type_t *t, enum name_type name_type, int declonly)
290 const char *name;
292 if (!h) return;
294 name = type_get_name(t, name_type);
296 if (is_attr(t->attrs, ATTR_CONST) &&
297 (type_is_alias(t) || !is_ptr(t)))
298 fprintf(h, "const ");
300 if (type_is_alias(t)) fprintf(h, "%s", t->name);
301 else {
302 switch (type_get_type_detect_alias(t)) {
303 case TYPE_ENUM:
304 if (!declonly && t->defined && !t->written) {
305 if (name) fprintf(h, "enum %s {\n", name);
306 else fprintf(h, "enum {\n");
307 t->written = TRUE;
308 indentation++;
309 write_enums(h, type_enum_get_values(t), is_global_namespace(t->namespace) ? NULL : t->name);
310 indent(h, -1);
311 fprintf(h, "}");
313 else fprintf(h, "enum %s", name ? name : "");
314 break;
315 case TYPE_STRUCT:
316 case TYPE_ENCAPSULATED_UNION:
317 if (!declonly && t->defined && !t->written) {
318 if (name) fprintf(h, "struct %s {\n", name);
319 else fprintf(h, "struct {\n");
320 t->written = TRUE;
321 indentation++;
322 if (type_get_type(t) != TYPE_STRUCT)
323 write_fields(h, type_encapsulated_union_get_fields(t));
324 else
325 write_fields(h, type_struct_get_fields(t));
326 indent(h, -1);
327 fprintf(h, "}");
329 else fprintf(h, "struct %s", name ? name : "");
330 break;
331 case TYPE_UNION:
332 if (!declonly && t->defined && !t->written) {
333 if (t->name) fprintf(h, "union %s {\n", t->name);
334 else fprintf(h, "union {\n");
335 t->written = TRUE;
336 indentation++;
337 write_fields(h, type_union_get_cases(t));
338 indent(h, -1);
339 fprintf(h, "}");
341 else fprintf(h, "union %s", t->name ? t->name : "");
342 break;
343 case TYPE_POINTER:
344 write_type_left(h, type_pointer_get_ref(t), name_type, declonly);
345 fprintf(h, "%s*", needs_space_after(type_pointer_get_ref(t)) ? " " : "");
346 if (is_attr(t->attrs, ATTR_CONST)) fprintf(h, "const ");
347 break;
348 case TYPE_ARRAY:
349 if (t->name && type_array_is_decl_as_ptr(t))
350 fprintf(h, "%s", t->name);
351 else
353 write_type_left(h, type_array_get_element(t), name_type, declonly);
354 if (type_array_is_decl_as_ptr(t))
355 fprintf(h, "%s*", needs_space_after(type_array_get_element(t)) ? " " : "");
357 break;
358 case TYPE_BASIC:
359 if (type_basic_get_type(t) != TYPE_BASIC_INT32 &&
360 type_basic_get_type(t) != TYPE_BASIC_INT64 &&
361 type_basic_get_type(t) != TYPE_BASIC_HYPER)
363 if (type_basic_get_sign(t) < 0) fprintf(h, "signed ");
364 else if (type_basic_get_sign(t) > 0) fprintf(h, "unsigned ");
366 switch (type_basic_get_type(t))
368 case TYPE_BASIC_INT8: fprintf(h, "small"); break;
369 case TYPE_BASIC_INT16: fprintf(h, "short"); break;
370 case TYPE_BASIC_INT: fprintf(h, "int"); break;
371 case TYPE_BASIC_INT3264: fprintf(h, "__int3264"); break;
372 case TYPE_BASIC_BYTE: fprintf(h, "byte"); break;
373 case TYPE_BASIC_CHAR: fprintf(h, "char"); break;
374 case TYPE_BASIC_WCHAR: fprintf(h, "wchar_t"); break;
375 case TYPE_BASIC_FLOAT: fprintf(h, "float"); break;
376 case TYPE_BASIC_DOUBLE: fprintf(h, "double"); break;
377 case TYPE_BASIC_ERROR_STATUS_T: fprintf(h, "error_status_t"); break;
378 case TYPE_BASIC_HANDLE: fprintf(h, "handle_t"); break;
379 case TYPE_BASIC_INT32:
380 if (type_basic_get_sign(t) > 0)
381 fprintf(h, "ULONG");
382 else
383 fprintf(h, "LONG");
384 break;
385 case TYPE_BASIC_INT64:
386 if (type_basic_get_sign(t) > 0)
387 fprintf(h, "UINT64");
388 else
389 fprintf(h, "INT64");
390 break;
391 case TYPE_BASIC_HYPER:
392 if (type_basic_get_sign(t) > 0)
393 fprintf(h, "MIDL_uhyper");
394 else
395 fprintf(h, "hyper");
396 break;
398 break;
399 case TYPE_INTERFACE:
400 case TYPE_MODULE:
401 case TYPE_COCLASS:
402 fprintf(h, "%s", t->name);
403 break;
404 case TYPE_VOID:
405 fprintf(h, "void");
406 break;
407 case TYPE_BITFIELD:
408 write_type_left(h, type_bitfield_get_field(t), name_type, declonly);
409 break;
410 case TYPE_ALIAS:
411 case TYPE_FUNCTION:
412 /* handled elsewhere */
413 assert(0);
414 break;
419 void write_type_right(FILE *h, type_t *t, int is_field)
421 if (!h) return;
423 switch (type_get_type(t))
425 case TYPE_ARRAY:
426 if (!type_array_is_decl_as_ptr(t))
428 if (is_conformant_array(t))
430 fprintf(h, "[%s]", is_field ? "1" : "");
431 t = type_array_get_element(t);
433 for ( ;
434 type_get_type(t) == TYPE_ARRAY && !type_array_is_decl_as_ptr(t);
435 t = type_array_get_element(t))
436 fprintf(h, "[%u]", type_array_get_dim(t));
438 break;
439 case TYPE_BITFIELD:
440 fprintf(h, " : %u", type_bitfield_get_bits(t)->cval);
441 break;
442 case TYPE_VOID:
443 case TYPE_BASIC:
444 case TYPE_ENUM:
445 case TYPE_STRUCT:
446 case TYPE_ENCAPSULATED_UNION:
447 case TYPE_UNION:
448 case TYPE_ALIAS:
449 case TYPE_MODULE:
450 case TYPE_COCLASS:
451 case TYPE_FUNCTION:
452 case TYPE_INTERFACE:
453 case TYPE_POINTER:
454 break;
458 static void write_type_v(FILE *h, type_t *t, int is_field, int declonly, const char *name)
460 type_t *pt = NULL;
461 int ptr_level = 0;
463 if (!h) return;
465 if (t) {
466 for (pt = t; is_ptr(pt); pt = type_pointer_get_ref(pt), ptr_level++)
469 if (type_get_type_detect_alias(pt) == TYPE_FUNCTION) {
470 int i;
471 const char *callconv = get_attrp(pt->attrs, ATTR_CALLCONV);
472 if (!callconv && is_object_interface) callconv = "STDMETHODCALLTYPE";
473 if (is_attr(pt->attrs, ATTR_INLINE)) fprintf(h, "inline ");
474 write_type_left(h, type_function_get_rettype(pt), NAME_DEFAULT, declonly);
475 fputc(' ', h);
476 if (ptr_level) fputc('(', h);
477 if (callconv) fprintf(h, "%s ", callconv);
478 for (i = 0; i < ptr_level; i++)
479 fputc('*', h);
480 } else
481 write_type_left(h, t, NAME_DEFAULT, declonly);
484 if (name) fprintf(h, "%s%s", !t || needs_space_after(t) ? " " : "", name );
486 if (t) {
487 if (type_get_type_detect_alias(pt) == TYPE_FUNCTION) {
488 const var_list_t *args = type_function_get_args(pt);
490 if (ptr_level) fputc(')', h);
491 fputc('(', h);
492 if (args)
493 write_args(h, args, NULL, 0, FALSE);
494 else
495 fprintf(h, "void");
496 fputc(')', h);
497 } else
498 write_type_right(h, t, is_field);
502 static void write_type_def_or_decl(FILE *f, type_t *t, int field, const char *name)
504 write_type_v(f, t, field, FALSE, name);
507 static void write_type_definition(FILE *f, type_t *t)
509 int in_namespace = t->namespace && !is_global_namespace(t->namespace);
510 int save_written = t->written;
512 if(in_namespace) {
513 fprintf(f, "#ifdef __cplusplus\n");
514 fprintf(f, "} /* extern \"C\" */\n");
515 write_namespace_start(f, t->namespace);
517 indent(f, 0);
518 write_type_left(f, t, NAME_DEFAULT, FALSE);
519 fprintf(f, ";\n");
520 if(in_namespace) {
521 t->written = save_written;
522 write_namespace_end(f, t->namespace);
523 fprintf(f, "extern \"C\" {\n");
524 fprintf(f, "#else\n");
525 write_type_left(f, t, NAME_C, FALSE);
526 fprintf(f, ";\n");
527 fprintf(f, "#endif\n\n");
531 void write_type_decl(FILE *f, type_t *t, const char *name)
533 write_type_v(f, t, FALSE, TRUE, name);
536 void write_type_decl_left(FILE *f, type_t *t)
538 write_type_left(f, t, NAME_DEFAULT, TRUE);
541 static int user_type_registered(const char *name)
543 user_type_t *ut;
544 LIST_FOR_EACH_ENTRY(ut, &user_type_list, user_type_t, entry)
545 if (!strcmp(name, ut->name))
546 return 1;
547 return 0;
550 static int context_handle_registered(const char *name)
552 context_handle_t *ch;
553 LIST_FOR_EACH_ENTRY(ch, &context_handle_list, context_handle_t, entry)
554 if (!strcmp(name, ch->name))
555 return 1;
556 return 0;
559 static int generic_handle_registered(const char *name)
561 generic_handle_t *gh;
562 LIST_FOR_EACH_ENTRY(gh, &generic_handle_list, generic_handle_t, entry)
563 if (!strcmp(name, gh->name))
564 return 1;
565 return 0;
568 unsigned int get_context_handle_offset( const type_t *type )
570 context_handle_t *ch;
571 unsigned int index = 0;
573 while (!is_attr( type->attrs, ATTR_CONTEXTHANDLE ))
575 if (type_is_alias( type )) type = type_alias_get_aliasee( type );
576 else if (is_ptr( type )) type = type_pointer_get_ref( type );
577 else error( "internal error: %s is not a context handle\n", type->name );
579 LIST_FOR_EACH_ENTRY( ch, &context_handle_list, context_handle_t, entry )
581 if (!strcmp( type->name, ch->name )) return index;
582 index++;
584 error( "internal error: %s is not registered as a context handle\n", type->name );
585 return index;
588 unsigned int get_generic_handle_offset( const type_t *type )
590 generic_handle_t *gh;
591 unsigned int index = 0;
593 while (!is_attr( type->attrs, ATTR_HANDLE ))
595 if (type_is_alias( type )) type = type_alias_get_aliasee( type );
596 else if (is_ptr( type )) type = type_pointer_get_ref( type );
597 else error( "internal error: %s is not a generic handle\n", type->name );
599 LIST_FOR_EACH_ENTRY( gh, &generic_handle_list, generic_handle_t, entry )
601 if (!strcmp( type->name, gh->name )) return index;
602 index++;
604 error( "internal error: %s is not registered as a generic handle\n", type->name );
605 return index;
608 /* check for types which require additional prototypes to be generated in the
609 * header */
610 void check_for_additional_prototype_types(const var_list_t *list)
612 const var_t *v;
614 if (!list) return;
615 LIST_FOR_EACH_ENTRY( v, list, const var_t, entry )
617 type_t *type = v->type;
618 if (!type) continue;
619 for (;;) {
620 const char *name = type->name;
621 if (type->user_types_registered) break;
622 type->user_types_registered = 1;
623 if (is_attr(type->attrs, ATTR_CONTEXTHANDLE)) {
624 if (!context_handle_registered(name))
626 context_handle_t *ch = xmalloc(sizeof(*ch));
627 ch->name = xstrdup(name);
628 list_add_tail(&context_handle_list, &ch->entry);
630 /* don't carry on parsing fields within this type */
631 break;
633 if ((type_get_type(type) != TYPE_BASIC ||
634 type_basic_get_type(type) != TYPE_BASIC_HANDLE) &&
635 is_attr(type->attrs, ATTR_HANDLE)) {
636 if (!generic_handle_registered(name))
638 generic_handle_t *gh = xmalloc(sizeof(*gh));
639 gh->name = xstrdup(name);
640 list_add_tail(&generic_handle_list, &gh->entry);
642 /* don't carry on parsing fields within this type */
643 break;
645 if (is_attr(type->attrs, ATTR_WIREMARSHAL)) {
646 if (!user_type_registered(name))
648 user_type_t *ut = xmalloc(sizeof *ut);
649 ut->name = xstrdup(name);
650 list_add_tail(&user_type_list, &ut->entry);
652 /* don't carry on parsing fields within this type as we are already
653 * using a wire marshaled type */
654 break;
656 else if (type_is_complete(type))
658 var_list_t *vars;
659 switch (type_get_type_detect_alias(type))
661 case TYPE_ENUM:
662 vars = type_enum_get_values(type);
663 break;
664 case TYPE_STRUCT:
665 vars = type_struct_get_fields(type);
666 break;
667 case TYPE_UNION:
668 vars = type_union_get_cases(type);
669 break;
670 default:
671 vars = NULL;
672 break;
674 check_for_additional_prototype_types(vars);
677 if (type_is_alias(type))
678 type = type_alias_get_aliasee(type);
679 else if (is_ptr(type))
680 type = type_pointer_get_ref(type);
681 else if (is_array(type))
682 type = type_array_get_element(type);
683 else
684 break;
689 static void write_user_types(FILE *header)
691 user_type_t *ut;
692 LIST_FOR_EACH_ENTRY(ut, &user_type_list, user_type_t, entry)
694 const char *name = ut->name;
695 fprintf(header, "ULONG __RPC_USER %s_UserSize (ULONG *, ULONG, %s *);\n", name, name);
696 fprintf(header, "unsigned char * __RPC_USER %s_UserMarshal (ULONG *, unsigned char *, %s *);\n", name, name);
697 fprintf(header, "unsigned char * __RPC_USER %s_UserUnmarshal(ULONG *, unsigned char *, %s *);\n", name, name);
698 fprintf(header, "void __RPC_USER %s_UserFree (ULONG *, %s *);\n", name, name);
702 static void write_context_handle_rundowns(FILE *header)
704 context_handle_t *ch;
705 LIST_FOR_EACH_ENTRY(ch, &context_handle_list, context_handle_t, entry)
707 const char *name = ch->name;
708 fprintf(header, "void __RPC_USER %s_rundown(%s);\n", name, name);
712 static void write_generic_handle_routines(FILE *header)
714 generic_handle_t *gh;
715 LIST_FOR_EACH_ENTRY(gh, &generic_handle_list, generic_handle_t, entry)
717 const char *name = gh->name;
718 fprintf(header, "handle_t __RPC_USER %s_bind(%s);\n", name, name);
719 fprintf(header, "void __RPC_USER %s_unbind(%s, handle_t);\n", name, name);
723 static void write_typedef(FILE *header, type_t *type)
725 fprintf(header, "typedef ");
726 write_type_def_or_decl(header, type_alias_get_aliasee(type), FALSE, type->name);
727 fprintf(header, ";\n");
730 int is_const_decl(const var_t *var)
732 const type_t *t;
733 /* strangely, MIDL accepts a const attribute on any pointer in the
734 * declaration to mean that data isn't being instantiated. this appears
735 * to be a bug, but there is no benefit to being incompatible with MIDL,
736 * so we'll do the same thing */
737 for (t = var->type; ; )
739 if (is_attr(t->attrs, ATTR_CONST))
740 return TRUE;
741 else if (is_ptr(t))
742 t = type_pointer_get_ref(t);
743 else break;
745 return FALSE;
748 static void write_declaration(FILE *header, const var_t *v)
750 if (is_const_decl(v) && v->eval)
752 fprintf(header, "#define %s (", v->name);
753 write_expr(header, v->eval, 0, 1, NULL, NULL, "");
754 fprintf(header, ")\n\n");
756 else
758 switch (v->stgclass)
760 case STG_NONE:
761 case STG_REGISTER: /* ignored */
762 break;
763 case STG_STATIC:
764 fprintf(header, "static ");
765 break;
766 case STG_EXTERN:
767 fprintf(header, "extern ");
768 break;
770 write_type_def_or_decl(header, v->type, FALSE, v->name);
771 fprintf(header, ";\n\n");
775 static void write_library(FILE *header, const typelib_t *typelib)
777 const UUID *uuid = get_attrp(typelib->attrs, ATTR_UUID);
778 fprintf(header, "\n");
779 write_guid(header, "LIBID", typelib->name, uuid);
780 fprintf(header, "\n");
784 const type_t* get_explicit_generic_handle_type(const var_t* var)
786 const type_t *t;
787 for (t = var->type;
788 is_ptr(t) || type_is_alias(t);
789 t = type_is_alias(t) ? type_alias_get_aliasee(t) : type_pointer_get_ref(t))
790 if ((type_get_type_detect_alias(t) != TYPE_BASIC || type_basic_get_type(t) != TYPE_BASIC_HANDLE) &&
791 is_attr(t->attrs, ATTR_HANDLE))
792 return t;
793 return NULL;
796 const var_t *get_func_handle_var( const type_t *iface, const var_t *func,
797 unsigned char *explicit_fc, unsigned char *implicit_fc )
799 const var_t *var;
800 const var_list_t *args = type_get_function_args( func->type );
802 *explicit_fc = *implicit_fc = 0;
803 if (args) LIST_FOR_EACH_ENTRY( var, args, const var_t, entry )
805 if (!is_attr( var->attrs, ATTR_IN ) && is_attr( var->attrs, ATTR_OUT )) continue;
806 if (type_get_type( var->type ) == TYPE_BASIC && type_basic_get_type( var->type ) == TYPE_BASIC_HANDLE)
808 *explicit_fc = RPC_FC_BIND_PRIMITIVE;
809 return var;
811 if (get_explicit_generic_handle_type( var ))
813 *explicit_fc = RPC_FC_BIND_GENERIC;
814 return var;
816 if (is_context_handle( var->type ))
818 *explicit_fc = RPC_FC_BIND_CONTEXT;
819 return var;
823 if ((var = get_attrp( iface->attrs, ATTR_IMPLICIT_HANDLE )))
825 if (type_get_type( var->type ) == TYPE_BASIC &&
826 type_basic_get_type( var->type ) == TYPE_BASIC_HANDLE)
827 *implicit_fc = RPC_FC_BIND_PRIMITIVE;
828 else
829 *implicit_fc = RPC_FC_BIND_GENERIC;
830 return var;
833 *implicit_fc = RPC_FC_AUTO_HANDLE;
834 return NULL;
837 int has_out_arg_or_return(const var_t *func)
839 const var_t *var;
841 if (!is_void(type_function_get_rettype(func->type)))
842 return 1;
844 if (!type_get_function_args(func->type))
845 return 0;
847 LIST_FOR_EACH_ENTRY( var, type_get_function_args(func->type), const var_t, entry )
848 if (is_attr(var->attrs, ATTR_OUT))
849 return 1;
851 return 0;
855 /********** INTERFACES **********/
857 int is_object(const type_t *iface)
859 const attr_t *attr;
860 if (type_is_defined(iface) && type_iface_get_inherit(iface))
861 return 1;
862 if (iface->attrs) LIST_FOR_EACH_ENTRY( attr, iface->attrs, const attr_t, entry )
863 if (attr->type == ATTR_OBJECT || attr->type == ATTR_ODL) return 1;
864 return 0;
867 int is_local(const attr_list_t *a)
869 return is_attr(a, ATTR_LOCAL);
872 const var_t *is_callas(const attr_list_t *a)
874 return get_attrp(a, ATTR_CALLAS);
877 static int is_inherited_method(const type_t *iface, const var_t *func)
879 while ((iface = type_iface_get_inherit(iface)))
881 const statement_t *stmt;
882 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
884 const var_t *funccmp = stmt->u.var;
886 if (!is_callas(func->attrs))
888 char inherit_name[256];
889 /* compare full name including property prefix */
890 strcpy(inherit_name, get_name(funccmp));
891 if (!strcmp(inherit_name, get_name(func))) return 1;
896 return 0;
899 static int is_override_method(const type_t *iface, const type_t *child, const var_t *func)
901 if (iface == child)
902 return 0;
906 const statement_t *stmt;
907 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(child))
909 const var_t *funccmp = stmt->u.var;
911 if (!is_callas(func->attrs))
913 char inherit_name[256];
914 /* compare full name including property prefix */
915 strcpy(inherit_name, get_name(funccmp));
916 if (!strcmp(inherit_name, get_name(func))) return 1;
920 while ((child = type_iface_get_inherit(child)) && child != iface);
922 return 0;
925 static int is_aggregate_return(const var_t *func)
927 enum type_type type = type_get_type(type_function_get_rettype(func->type));
928 return type == TYPE_STRUCT || type == TYPE_UNION ||
929 type == TYPE_COCLASS || type == TYPE_INTERFACE;
932 static char *get_vtbl_entry_name(const type_t *iface, const var_t *func)
934 static char buff[255];
935 if (is_inherited_method(iface, func))
936 sprintf(buff, "%s_%s", iface->name, get_name(func));
937 else
938 sprintf(buff, "%s", get_name(func));
939 return buff;
942 static void write_method_macro(FILE *header, const type_t *iface, const type_t *child, const char *name)
944 const statement_t *stmt;
945 int first_iface = 1;
947 if (type_iface_get_inherit(iface))
948 write_method_macro(header, type_iface_get_inherit(iface), child, name);
950 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
952 const var_t *func = stmt->u.var;
954 if (first_iface)
956 fprintf(header, "/*** %s methods ***/\n", iface->name);
957 first_iface = 0;
960 if (is_override_method(iface, child, func))
961 continue;
963 if (!is_callas(func->attrs)) {
964 const var_t *arg;
966 fprintf(header, "#define %s_%s(This", name, get_name(func));
967 if (type_get_function_args(func->type))
968 LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), const var_t, entry )
969 fprintf(header, ",%s", arg->name);
970 fprintf(header, ") ");
972 if (is_aggregate_return(func))
974 fprintf(header, "%s_%s_define_WIDL_C_INLINE_WRAPPERS_for_aggregate_return_support\n", name, get_name(func));
975 continue;
978 fprintf(header, "(This)->lpVtbl->%s(This", get_vtbl_entry_name(iface, func));
979 if (type_get_function_args(func->type))
980 LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), const var_t, entry )
981 fprintf(header, ",%s", arg->name);
982 fprintf(header, ")\n");
987 void write_args(FILE *h, const var_list_t *args, const char *name, int method, int do_indent)
989 const var_t *arg;
990 int count = 0;
992 if (do_indent)
994 indentation++;
995 indent(h, 0);
997 if (method == 1) {
998 fprintf(h, "%s* This", name);
999 count++;
1001 if (args) LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry ) {
1002 if (count) {
1003 if (do_indent)
1005 fprintf(h, ",\n");
1006 indent(h, 0);
1008 else fprintf(h, ",");
1010 write_type_decl(h, arg->type, arg->name);
1011 if (method == 2) {
1012 const expr_t *expr = get_attrp(arg->attrs, ATTR_DEFAULTVALUE);
1013 if (expr) {
1014 const var_t *tail_arg;
1016 /* Output default value only if all following arguments also have default value. */
1017 LIST_FOR_EACH_ENTRY_REV( tail_arg, args, const var_t, entry ) {
1018 if(tail_arg == arg) {
1019 expr_t bstr;
1021 /* Fixup the expression type for a BSTR like midl does. */
1022 if (get_type_vt(arg->type) == VT_BSTR && expr->type == EXPR_STRLIT)
1024 bstr = *expr;
1025 bstr.type = EXPR_WSTRLIT;
1026 expr = &bstr;
1029 fprintf(h, " = ");
1030 write_expr( h, expr, 0, 1, NULL, NULL, "" );
1031 break;
1033 if(!get_attrp(tail_arg->attrs, ATTR_DEFAULTVALUE))
1034 break;
1038 count++;
1040 if (do_indent) indentation--;
1043 static void write_cpp_method_def(FILE *header, const type_t *iface)
1045 const statement_t *stmt;
1047 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1049 const var_t *func = stmt->u.var;
1050 if (!is_callas(func->attrs)) {
1051 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1052 const var_list_t *args = type_get_function_args(func->type);
1053 const var_t *arg;
1055 if (!callconv) callconv = "STDMETHODCALLTYPE";
1057 if (is_aggregate_return(func)) {
1058 fprintf(header, "#ifdef WIDL_EXPLICIT_AGGREGATE_RETURNS\n");
1060 indent(header, 0);
1061 fprintf(header, "virtual ");
1062 write_type_decl_left(header, type_function_get_rettype(func->type));
1063 fprintf(header, "* %s %s(\n", callconv, get_name(func));
1064 ++indentation;
1065 indent(header, 0);
1066 write_type_decl_left(header, type_function_get_rettype(func->type));
1067 fprintf(header, " *__ret");
1068 --indentation;
1069 if (args) {
1070 fprintf(header, ",\n");
1071 write_args(header, args, iface->name, 2, TRUE);
1073 fprintf(header, ") = 0;\n");
1075 indent(header, 0);
1076 write_type_decl_left(header, type_function_get_rettype(func->type));
1077 fprintf(header, " %s %s(\n", callconv, get_name(func));
1078 write_args(header, args, iface->name, 2, TRUE);
1079 fprintf(header, ")\n");
1080 indent(header, 0);
1081 fprintf(header, "{\n");
1082 ++indentation;
1083 indent(header, 0);
1084 write_type_decl_left(header, type_function_get_rettype(func->type));
1085 fprintf(header, " __ret;\n");
1086 indent(header, 0);
1087 fprintf(header, "return *%s(&__ret", get_name(func));
1088 if (args)
1089 LIST_FOR_EACH_ENTRY(arg, args, const var_t, entry)
1090 fprintf(header, ", %s", arg->name);
1091 fprintf(header, ");\n");
1092 --indentation;
1093 indent(header, 0);
1094 fprintf(header, "}\n");
1096 fprintf(header, "#else\n");
1099 indent(header, 0);
1100 fprintf(header, "virtual ");
1101 write_type_decl_left(header, type_function_get_rettype(func->type));
1102 fprintf(header, " %s %s(\n", callconv, get_name(func));
1103 write_args(header, args, iface->name, 2, TRUE);
1104 fprintf(header, ") = 0;\n");
1106 if (is_aggregate_return(func))
1107 fprintf(header, "#endif\n");
1108 fprintf(header, "\n");
1113 static void write_inline_wrappers(FILE *header, const type_t *iface, const type_t *child, const char *name)
1115 const statement_t *stmt;
1116 int first_iface = 1;
1118 if (type_iface_get_inherit(iface))
1119 write_inline_wrappers(header, type_iface_get_inherit(iface), child, name);
1121 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1123 const var_t *func = stmt->u.var;
1125 if (first_iface)
1127 fprintf(header, "/*** %s methods ***/\n", iface->name);
1128 first_iface = 0;
1131 if (is_override_method(iface, child, func))
1132 continue;
1134 if (!is_callas(func->attrs)) {
1135 const var_t *arg;
1137 fprintf(header, "static FORCEINLINE ");
1138 write_type_decl_left(header, type_function_get_rettype(func->type));
1139 fprintf(header, " %s_%s(", name, get_name(func));
1140 write_args(header, type_get_function_args(func->type), name, 1, FALSE);
1141 fprintf(header, ") {\n");
1142 ++indentation;
1143 if (!is_aggregate_return(func)) {
1144 indent(header, 0);
1145 fprintf(header, "%sThis->lpVtbl->%s(This",
1146 is_void(type_function_get_rettype(func->type)) ? "" : "return ",
1147 get_vtbl_entry_name(iface, func));
1148 } else {
1149 indent(header, 0);
1150 write_type_decl_left(header, type_function_get_rettype(func->type));
1151 fprintf(header, " __ret;\n");
1152 indent(header, 0);
1153 fprintf(header, "return *This->lpVtbl->%s(This,&__ret", get_vtbl_entry_name(iface, func));
1155 if (type_get_function_args(func->type))
1156 LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), const var_t, entry )
1157 fprintf(header, ",%s", arg->name);
1158 fprintf(header, ");\n");
1159 --indentation;
1160 fprintf(header, "}\n");
1165 static void do_write_c_method_def(FILE *header, const type_t *iface, const char *name)
1167 const statement_t *stmt;
1168 int first_iface = 1;
1170 if (type_iface_get_inherit(iface))
1171 do_write_c_method_def(header, type_iface_get_inherit(iface), name);
1173 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1175 const var_t *func = stmt->u.var;
1176 if (first_iface) {
1177 indent(header, 0);
1178 fprintf(header, "/*** %s methods ***/\n", iface->name);
1179 first_iface = 0;
1181 if (!is_callas(func->attrs)) {
1182 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1183 if (!callconv) callconv = "STDMETHODCALLTYPE";
1184 indent(header, 0);
1185 write_type_decl_left(header, type_function_get_rettype(func->type));
1186 if (is_aggregate_return(func))
1187 fprintf(header, " *");
1188 if (is_inherited_method(iface, func))
1189 fprintf(header, " (%s *%s_%s)(\n", callconv, iface->name, func->name);
1190 else
1191 fprintf(header, " (%s *%s)(\n", callconv, get_name(func));
1192 ++indentation;
1193 indent(header, 0);
1194 fprintf(header, "%s *This", name);
1195 if (is_aggregate_return(func)) {
1196 fprintf(header, ",\n");
1197 indent(header, 0);
1198 write_type_decl_left(header, type_function_get_rettype(func->type));
1199 fprintf(header, " *__ret");
1201 --indentation;
1202 if (type_get_function_args(func->type)) {
1203 fprintf(header, ",\n");
1204 write_args(header, type_get_function_args(func->type), name, 0, TRUE);
1206 fprintf(header, ");\n");
1207 fprintf(header, "\n");
1212 static void write_c_method_def(FILE *header, const type_t *iface)
1214 do_write_c_method_def(header, iface, iface->c_name);
1217 static void write_c_disp_method_def(FILE *header, const type_t *iface)
1219 do_write_c_method_def(header, type_iface_get_inherit(iface), iface->c_name);
1222 static void write_method_proto(FILE *header, const type_t *iface)
1224 const statement_t *stmt;
1226 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1228 const var_t *func = stmt->u.var;
1230 if (is_callas(func->attrs)) {
1231 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1232 if (!callconv) callconv = "STDMETHODCALLTYPE";
1233 /* proxy prototype */
1234 write_type_decl_left(header, type_function_get_rettype(func->type));
1235 fprintf(header, " %s %s_%s_Proxy(\n", callconv, iface->name, get_name(func));
1236 write_args(header, type_get_function_args(func->type), iface->name, 1, TRUE);
1237 fprintf(header, ");\n");
1238 /* stub prototype */
1239 fprintf(header, "void __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(func));
1240 fprintf(header, " IRpcStubBuffer* This,\n");
1241 fprintf(header, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
1242 fprintf(header, " PRPC_MESSAGE pRpcMessage,\n");
1243 fprintf(header, " DWORD* pdwStubPhase);\n");
1248 static void write_locals(FILE *fp, const type_t *iface, int body)
1250 static const char comment[]
1251 = "/* WIDL-generated stub. You must provide an implementation for this. */";
1252 const statement_t *stmt;
1254 if (!is_object(iface))
1255 return;
1257 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface)) {
1258 const var_t *func = stmt->u.var;
1259 const var_t *cas = is_callas(func->attrs);
1261 if (cas) {
1262 const statement_t *stmt2 = NULL;
1263 STATEMENTS_FOR_EACH_FUNC(stmt2, type_iface_get_stmts(iface))
1264 if (!strcmp(stmt2->u.var->name, cas->name))
1265 break;
1266 if (&stmt2->entry != type_iface_get_stmts(iface)) {
1267 const var_t *m = stmt2->u.var;
1268 /* proxy prototype - use local prototype */
1269 write_type_decl_left(fp, type_function_get_rettype(m->type));
1270 fprintf(fp, " CALLBACK %s_%s_Proxy(\n", iface->name, get_name(m));
1271 write_args(fp, type_get_function_args(m->type), iface->name, 1, TRUE);
1272 fprintf(fp, ")");
1273 if (body) {
1274 type_t *rt = type_function_get_rettype(m->type);
1275 fprintf(fp, "\n{\n");
1276 fprintf(fp, " %s\n", comment);
1277 if (rt->name && strcmp(rt->name, "HRESULT") == 0)
1278 fprintf(fp, " return E_NOTIMPL;\n");
1279 else if (type_get_type(rt) != TYPE_VOID) {
1280 fprintf(fp, " ");
1281 write_type_decl(fp, rt, "rv");
1282 fprintf(fp, ";\n");
1283 fprintf(fp, " memset(&rv, 0, sizeof rv);\n");
1284 fprintf(fp, " return rv;\n");
1286 fprintf(fp, "}\n\n");
1288 else
1289 fprintf(fp, ";\n");
1290 /* stub prototype - use remotable prototype */
1291 write_type_decl_left(fp, type_function_get_rettype(func->type));
1292 fprintf(fp, " __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(m));
1293 write_args(fp, type_get_function_args(func->type), iface->name, 1, TRUE);
1294 fprintf(fp, ")");
1295 if (body)
1296 /* Remotable methods must all return HRESULTs. */
1297 fprintf(fp, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment);
1298 else
1299 fprintf(fp, ";\n");
1301 else
1302 error_loc("invalid call_as attribute (%s -> %s)\n", func->name, cas->name);
1307 static void write_local_stubs_stmts(FILE *local_stubs, const statement_list_t *stmts)
1309 const statement_t *stmt;
1310 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1312 if (stmt->type == STMT_TYPE && type_get_type(stmt->u.type) == TYPE_INTERFACE)
1313 write_locals(local_stubs, stmt->u.type, TRUE);
1317 void write_local_stubs(const statement_list_t *stmts)
1319 FILE *local_stubs;
1321 if (!local_stubs_name) return;
1323 local_stubs = fopen(local_stubs_name, "w");
1324 if (!local_stubs) {
1325 error("Could not open %s for output\n", local_stubs_name);
1326 return;
1328 fprintf(local_stubs, "/* call_as/local stubs for %s */\n\n", input_name);
1329 fprintf(local_stubs, "#include <objbase.h>\n");
1330 fprintf(local_stubs, "#include \"%s\"\n\n", header_name);
1332 write_local_stubs_stmts(local_stubs, stmts);
1334 fclose(local_stubs);
1337 static void write_function_proto(FILE *header, const type_t *iface, const var_t *fun, const char *prefix)
1339 const char *callconv = get_attrp(fun->type->attrs, ATTR_CALLCONV);
1341 if (!callconv) callconv = "__cdecl";
1342 /* FIXME: do we need to handle call_as? */
1343 write_type_decl_left(header, type_function_get_rettype(fun->type));
1344 fprintf(header, " %s ", callconv);
1345 fprintf(header, "%s%s(\n", prefix, get_name(fun));
1346 if (type_get_function_args(fun->type))
1347 write_args(header, type_get_function_args(fun->type), iface->name, 0, TRUE);
1348 else
1349 fprintf(header, " void");
1350 fprintf(header, ");\n\n");
1353 static void write_forward(FILE *header, type_t *iface)
1355 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", iface->c_name);
1356 fprintf(header, "#define __%s_FWD_DEFINED__\n", iface->c_name);
1357 fprintf(header, "typedef interface %s %s;\n", iface->c_name, iface->c_name);
1358 fprintf(header, "#ifdef __cplusplus\n");
1359 write_namespace_start(header, iface->namespace);
1360 write_line(header, 0, "interface %s;", iface->name);
1361 write_namespace_end(header, iface->namespace);
1362 fprintf(header, "#endif /* __cplusplus */\n");
1363 fprintf(header, "#endif\n\n" );
1366 static void write_com_interface_start(FILE *header, const type_t *iface)
1368 int dispinterface = is_attr(iface->attrs, ATTR_DISPINTERFACE);
1369 fprintf(header, "/*****************************************************************************\n");
1370 fprintf(header, " * %s %sinterface\n", iface->name, dispinterface ? "disp" : "");
1371 fprintf(header, " */\n");
1372 fprintf(header,"#ifndef __%s_%sINTERFACE_DEFINED__\n", iface->c_name, dispinterface ? "DISP" : "");
1373 fprintf(header,"#define __%s_%sINTERFACE_DEFINED__\n\n", iface->c_name, dispinterface ? "DISP" : "");
1376 static void write_com_interface_end(FILE *header, type_t *iface)
1378 int dispinterface = is_attr(iface->attrs, ATTR_DISPINTERFACE);
1379 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
1380 type_t *type;
1382 if (uuid)
1383 write_guid(header, dispinterface ? "DIID" : "IID", iface->c_name, uuid);
1385 /* C++ interface */
1386 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
1387 if (!is_global_namespace(iface->namespace)) {
1388 write_line(header, 0, "} /* extern \"C\" */");
1389 write_namespace_start(header, iface->namespace);
1391 if (uuid) {
1392 write_line(header, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid));
1393 indent(header, 0);
1394 }else {
1395 indent(header, 0);
1396 fprintf(header, "interface ");
1398 if (type_iface_get_inherit(iface))
1400 fprintf(header, "%s : public %s\n", iface->name,
1401 type_iface_get_inherit(iface)->name);
1402 write_line(header, 1, "{");
1404 else
1406 fprintf(header, "%s\n", iface->name);
1407 write_line(header, 1, "{\n");
1408 write_line(header, 0, "BEGIN_INTERFACE\n");
1410 /* dispinterfaces don't have real functions, so don't write C++ functions for
1411 * them */
1412 if (!dispinterface)
1413 write_cpp_method_def(header, iface);
1414 if (!type_iface_get_inherit(iface))
1415 write_line(header, 0, "END_INTERFACE\n");
1416 write_line(header, -1, "};");
1417 if (!is_global_namespace(iface->namespace)) {
1418 write_namespace_end(header, iface->namespace);
1419 write_line(header, 0, "extern \"C\" {");
1421 if (uuid)
1422 write_uuid_decl(header, iface, uuid);
1423 fprintf(header, "#else\n");
1424 /* C interface */
1425 write_line(header, 1, "typedef struct %sVtbl {", iface->c_name);
1426 write_line(header, 0, "BEGIN_INTERFACE\n");
1427 if (dispinterface)
1428 write_c_disp_method_def(header, iface);
1429 else
1430 write_c_method_def(header, iface);
1431 write_line(header, 0, "END_INTERFACE");
1432 write_line(header, -1, "} %sVtbl;\n", iface->c_name);
1433 fprintf(header, "interface %s {\n", iface->c_name);
1434 fprintf(header, " CONST_VTBL %sVtbl* lpVtbl;\n", iface->c_name);
1435 fprintf(header, "};\n\n");
1436 fprintf(header, "#ifdef COBJMACROS\n");
1437 /* dispinterfaces don't have real functions, so don't write macros for them,
1438 * only for the interface this interface inherits from, i.e. IDispatch */
1439 fprintf(header, "#ifndef WIDL_C_INLINE_WRAPPERS\n");
1440 type = dispinterface ? type_iface_get_inherit(iface) : iface;
1441 write_method_macro(header, type, type, iface->c_name);
1442 fprintf(header, "#else\n");
1443 write_inline_wrappers(header, type, type, iface->c_name);
1444 fprintf(header, "#endif\n");
1445 fprintf(header, "#endif\n");
1446 fprintf(header, "\n");
1447 fprintf(header, "#endif\n");
1448 fprintf(header, "\n");
1449 /* dispinterfaces don't have real functions, so don't write prototypes for
1450 * them */
1451 if (!dispinterface && !winrt_mode)
1453 write_method_proto(header, iface);
1454 write_locals(header, iface, FALSE);
1455 fprintf(header, "\n");
1457 fprintf(header,"#endif /* __%s_%sINTERFACE_DEFINED__ */\n\n", iface->c_name, dispinterface ? "DISP" : "");
1460 static void write_rpc_interface_start(FILE *header, const type_t *iface)
1462 unsigned int ver = get_attrv(iface->attrs, ATTR_VERSION);
1463 const var_t *var = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
1465 fprintf(header, "/*****************************************************************************\n");
1466 fprintf(header, " * %s interface (v%d.%d)\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1467 fprintf(header, " */\n");
1468 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
1469 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
1470 if (var)
1472 fprintf(header, "extern ");
1473 write_type_decl( header, var->type, var->name );
1474 fprintf(header, ";\n");
1476 if (old_names)
1478 fprintf(header, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client, iface->name);
1479 fprintf(header, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server, iface->name);
1481 else
1483 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
1484 prefix_client, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1485 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
1486 prefix_server, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1490 static void write_rpc_interface_end(FILE *header, const type_t *iface)
1492 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
1495 static void write_coclass(FILE *header, type_t *cocl)
1497 const UUID *uuid = get_attrp(cocl->attrs, ATTR_UUID);
1499 fprintf(header, "/*****************************************************************************\n");
1500 fprintf(header, " * %s coclass\n", cocl->name);
1501 fprintf(header, " */\n\n");
1502 if (uuid)
1503 write_guid(header, "CLSID", cocl->name, uuid);
1504 fprintf(header, "\n#ifdef __cplusplus\n");
1505 if (uuid)
1507 fprintf(header, "class DECLSPEC_UUID(\"%s\") %s;\n", uuid_string(uuid), cocl->name);
1508 write_uuid_decl(header, cocl, uuid);
1510 else
1512 fprintf(header, "class %s;\n", cocl->name);
1514 fprintf(header, "#endif\n");
1515 fprintf(header, "\n");
1518 static void write_coclass_forward(FILE *header, type_t *cocl)
1520 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", cocl->name);
1521 fprintf(header, "#define __%s_FWD_DEFINED__\n", cocl->name);
1522 fprintf(header, "#ifdef __cplusplus\n");
1523 fprintf(header, "typedef class %s %s;\n", cocl->name, cocl->name);
1524 fprintf(header, "#else\n");
1525 fprintf(header, "typedef struct %s %s;\n", cocl->name, cocl->name);
1526 fprintf(header, "#endif /* defined __cplusplus */\n");
1527 fprintf(header, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl->name );
1530 static void write_import(FILE *header, const char *fname)
1532 char *hname, *p;
1534 hname = dup_basename(fname, ".idl");
1535 p = hname + strlen(hname) - 2;
1536 if (p <= hname || strcmp( p, ".h" )) strcat(hname, ".h");
1538 fprintf(header, "#include <%s>\n", hname);
1539 free(hname);
1542 static void write_imports(FILE *header, const statement_list_t *stmts)
1544 const statement_t *stmt;
1545 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1547 switch (stmt->type)
1549 case STMT_TYPE:
1550 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1551 write_imports(header, type_iface_get_stmts(stmt->u.type));
1552 break;
1553 case STMT_TYPEREF:
1554 case STMT_IMPORTLIB:
1555 /* not included in header */
1556 break;
1557 case STMT_IMPORT:
1558 write_import(header, stmt->u.str);
1559 break;
1560 case STMT_TYPEDEF:
1561 case STMT_MODULE:
1562 case STMT_CPPQUOTE:
1563 case STMT_PRAGMA:
1564 case STMT_DECLARATION:
1565 /* not processed here */
1566 break;
1567 case STMT_LIBRARY:
1568 write_imports(header, stmt->u.lib->stmts);
1569 break;
1574 static void write_forward_decls(FILE *header, const statement_list_t *stmts)
1576 const statement_t *stmt;
1577 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1579 switch (stmt->type)
1581 case STMT_TYPE:
1582 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1584 if (is_object(stmt->u.type) || is_attr(stmt->u.type->attrs, ATTR_DISPINTERFACE))
1585 write_forward(header, stmt->u.type);
1587 else if (type_get_type(stmt->u.type) == TYPE_COCLASS)
1588 write_coclass_forward(header, stmt->u.type);
1589 break;
1590 case STMT_TYPEREF:
1591 case STMT_IMPORTLIB:
1592 /* not included in header */
1593 break;
1594 case STMT_IMPORT:
1595 case STMT_TYPEDEF:
1596 case STMT_MODULE:
1597 case STMT_CPPQUOTE:
1598 case STMT_PRAGMA:
1599 case STMT_DECLARATION:
1600 /* not processed here */
1601 break;
1602 case STMT_LIBRARY:
1603 write_forward_decls(header, stmt->u.lib->stmts);
1604 break;
1609 static void write_header_stmts(FILE *header, const statement_list_t *stmts, const type_t *iface, int ignore_funcs)
1611 const statement_t *stmt;
1612 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1614 switch (stmt->type)
1616 case STMT_TYPE:
1617 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1619 type_t *iface = stmt->u.type;
1620 if (is_object(iface)) is_object_interface++;
1621 if (is_attr(stmt->u.type->attrs, ATTR_DISPINTERFACE) || is_object(stmt->u.type))
1623 write_com_interface_start(header, iface);
1624 write_header_stmts(header, type_iface_get_stmts(iface), stmt->u.type, TRUE);
1625 write_com_interface_end(header, iface);
1627 else
1629 write_rpc_interface_start(header, iface);
1630 write_header_stmts(header, type_iface_get_stmts(iface), iface, FALSE);
1631 write_rpc_interface_end(header, iface);
1633 if (is_object(iface)) is_object_interface--;
1635 else if (type_get_type(stmt->u.type) == TYPE_COCLASS)
1636 write_coclass(header, stmt->u.type);
1637 else
1639 write_type_definition(header, stmt->u.type);
1641 break;
1642 case STMT_TYPEREF:
1643 /* FIXME: shouldn't write out forward declarations for undefined
1644 * interfaces but a number of our IDL files depend on this */
1645 if (type_get_type(stmt->u.type) == TYPE_INTERFACE && !stmt->u.type->written)
1646 write_forward(header, stmt->u.type);
1647 break;
1648 case STMT_IMPORTLIB:
1649 case STMT_MODULE:
1650 case STMT_PRAGMA:
1651 /* not included in header */
1652 break;
1653 case STMT_IMPORT:
1654 /* not processed here */
1655 break;
1656 case STMT_TYPEDEF:
1658 const type_list_t *type_entry = stmt->u.type_list;
1659 for (; type_entry; type_entry = type_entry->next)
1660 write_typedef(header, type_entry->type);
1661 break;
1663 case STMT_LIBRARY:
1664 write_library(header, stmt->u.lib);
1665 write_header_stmts(header, stmt->u.lib->stmts, NULL, FALSE);
1666 break;
1667 case STMT_CPPQUOTE:
1668 fprintf(header, "%s\n", stmt->u.str);
1669 break;
1670 case STMT_DECLARATION:
1671 if (iface && type_get_type(stmt->u.var->type) == TYPE_FUNCTION)
1673 if (!ignore_funcs)
1675 int prefixes_differ = strcmp(prefix_client, prefix_server);
1677 if (prefixes_differ)
1679 fprintf(header, "/* client prototype */\n");
1680 write_function_proto(header, iface, stmt->u.var, prefix_client);
1681 fprintf(header, "/* server prototype */\n");
1683 write_function_proto(header, iface, stmt->u.var, prefix_server);
1686 else
1687 write_declaration(header, stmt->u.var);
1688 break;
1693 void write_header(const statement_list_t *stmts)
1695 FILE *header;
1697 if (!do_header) return;
1699 if(!(header = fopen(header_name, "w"))) {
1700 error("Could not open %s for output\n", header_name);
1701 return;
1703 fprintf(header, "/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n\n", PACKAGE_VERSION, input_name);
1705 fprintf(header, "#ifndef __REQUIRED_RPCNDR_H_VERSION__\n");
1706 fprintf(header, "#define __REQUIRED_RPCNDR_H_VERSION__ 475\n");
1707 fprintf(header, "#endif\n\n");
1709 fprintf(header, "#include <rpc.h>\n" );
1710 fprintf(header, "#include <rpcndr.h>\n\n" );
1712 fprintf(header, "#ifndef COM_NO_WINDOWS_H\n");
1713 fprintf(header, "#include <windows.h>\n");
1714 fprintf(header, "#include <ole2.h>\n");
1715 fprintf(header, "#endif\n\n");
1717 fprintf(header, "#ifndef __%s__\n", header_token);
1718 fprintf(header, "#define __%s__\n\n", header_token);
1720 fprintf(header, "/* Forward declarations */\n\n");
1721 write_forward_decls(header, stmts);
1723 fprintf(header, "/* Headers for imported files */\n\n");
1724 write_imports(header, stmts);
1725 fprintf(header, "\n");
1726 start_cplusplus_guard(header);
1728 write_header_stmts(header, stmts, NULL, FALSE);
1730 fprintf(header, "/* Begin additional prototypes for all interfaces */\n");
1731 fprintf(header, "\n");
1732 write_user_types(header);
1733 write_generic_handle_routines(header);
1734 write_context_handle_rundowns(header);
1735 fprintf(header, "\n");
1736 fprintf(header, "/* End additional prototypes */\n");
1737 fprintf(header, "\n");
1739 end_cplusplus_guard(header);
1740 fprintf(header, "#endif /* __%s__ */\n", header_token);
1742 fclose(header);