include: Add IMFSinkWriterEx interface.
[wine.git] / tools / widl / header.c
blobb5fe2326d672833c67d125fbe5dd8994aa43628a
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) && !is_aggregate_return(func)) {
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 fprintf(header, "(This)->lpVtbl->%s(This", get_vtbl_entry_name(iface, func));
973 if (type_get_function_args(func->type))
974 LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), const var_t, entry )
975 fprintf(header, ",%s", arg->name);
976 fprintf(header, ")\n");
981 void write_args(FILE *h, const var_list_t *args, const char *name, int method, int do_indent)
983 const var_t *arg;
984 int count = 0;
986 if (do_indent)
988 indentation++;
989 indent(h, 0);
991 if (method == 1) {
992 fprintf(h, "%s* This", name);
993 count++;
995 if (args) LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry ) {
996 if (count) {
997 if (do_indent)
999 fprintf(h, ",\n");
1000 indent(h, 0);
1002 else fprintf(h, ",");
1004 write_type_decl(h, arg->type, arg->name);
1005 if (method == 2) {
1006 const expr_t *expr = get_attrp(arg->attrs, ATTR_DEFAULTVALUE);
1007 if (expr) {
1008 const var_t *tail_arg;
1010 /* Output default value only if all following arguments also have default value. */
1011 LIST_FOR_EACH_ENTRY_REV( tail_arg, args, const var_t, entry ) {
1012 if(tail_arg == arg) {
1013 expr_t bstr;
1015 /* Fixup the expression type for a BSTR like midl does. */
1016 if (get_type_vt(arg->type) == VT_BSTR && expr->type == EXPR_STRLIT)
1018 bstr = *expr;
1019 bstr.type = EXPR_WSTRLIT;
1020 expr = &bstr;
1023 fprintf(h, " = ");
1024 write_expr( h, expr, 0, 1, NULL, NULL, "" );
1025 break;
1027 if(!get_attrp(tail_arg->attrs, ATTR_DEFAULTVALUE))
1028 break;
1032 count++;
1034 if (do_indent) indentation--;
1037 static void write_cpp_method_def(FILE *header, const type_t *iface)
1039 const statement_t *stmt;
1041 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1043 const var_t *func = stmt->u.var;
1044 if (!is_callas(func->attrs)) {
1045 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1046 const var_list_t *args = type_get_function_args(func->type);
1047 const var_t *arg;
1049 if (!callconv) callconv = "STDMETHODCALLTYPE";
1051 if (is_aggregate_return(func)) {
1052 fprintf(header, "#ifdef WIDL_EXPLICIT_AGGREGATE_RETURNS\n");
1054 indent(header, 0);
1055 fprintf(header, "virtual ");
1056 write_type_decl_left(header, type_function_get_rettype(func->type));
1057 fprintf(header, "* %s %s(\n", callconv, get_name(func));
1058 ++indentation;
1059 indent(header, 0);
1060 write_type_decl_left(header, type_function_get_rettype(func->type));
1061 fprintf(header, " *__ret");
1062 --indentation;
1063 if (args) {
1064 fprintf(header, ",\n");
1065 write_args(header, args, iface->name, 2, TRUE);
1067 fprintf(header, ") = 0;\n");
1069 indent(header, 0);
1070 write_type_decl_left(header, type_function_get_rettype(func->type));
1071 fprintf(header, " %s %s(\n", callconv, get_name(func));
1072 write_args(header, args, iface->name, 2, TRUE);
1073 fprintf(header, ")\n");
1074 indent(header, 0);
1075 fprintf(header, "{\n");
1076 ++indentation;
1077 indent(header, 0);
1078 write_type_decl_left(header, type_function_get_rettype(func->type));
1079 fprintf(header, " __ret;\n");
1080 indent(header, 0);
1081 fprintf(header, "return *%s(&__ret", get_name(func));
1082 if (args)
1083 LIST_FOR_EACH_ENTRY(arg, args, const var_t, entry)
1084 fprintf(header, ", %s", arg->name);
1085 fprintf(header, ");\n");
1086 --indentation;
1087 indent(header, 0);
1088 fprintf(header, "}\n");
1090 fprintf(header, "#else\n");
1093 indent(header, 0);
1094 fprintf(header, "virtual ");
1095 write_type_decl_left(header, type_function_get_rettype(func->type));
1096 fprintf(header, " %s %s(\n", callconv, get_name(func));
1097 write_args(header, args, iface->name, 2, TRUE);
1098 fprintf(header, ") = 0;\n");
1100 if (is_aggregate_return(func))
1101 fprintf(header, "#endif\n");
1102 fprintf(header, "\n");
1107 static void write_inline_wrappers(FILE *header, const type_t *iface, const type_t *child, const char *name)
1109 const statement_t *stmt;
1110 int first_iface = 1;
1112 if (type_iface_get_inherit(iface))
1113 write_inline_wrappers(header, type_iface_get_inherit(iface), child, name);
1115 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1117 const var_t *func = stmt->u.var;
1119 if (first_iface)
1121 fprintf(header, "/*** %s methods ***/\n", iface->name);
1122 first_iface = 0;
1125 if (is_override_method(iface, child, func))
1126 continue;
1128 if (!is_callas(func->attrs)) {
1129 const var_t *arg;
1131 fprintf(header, "static FORCEINLINE ");
1132 write_type_decl_left(header, type_function_get_rettype(func->type));
1133 fprintf(header, " %s_%s(", name, get_name(func));
1134 write_args(header, type_get_function_args(func->type), name, 1, FALSE);
1135 fprintf(header, ") {\n");
1136 ++indentation;
1137 if (!is_aggregate_return(func)) {
1138 indent(header, 0);
1139 fprintf(header, "%sThis->lpVtbl->%s(This",
1140 is_void(type_function_get_rettype(func->type)) ? "" : "return ",
1141 get_vtbl_entry_name(iface, func));
1142 } else {
1143 indent(header, 0);
1144 write_type_decl_left(header, type_function_get_rettype(func->type));
1145 fprintf(header, " __ret;\n");
1146 indent(header, 0);
1147 fprintf(header, "return *This->lpVtbl->%s(This,&__ret", get_vtbl_entry_name(iface, func));
1149 if (type_get_function_args(func->type))
1150 LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), const var_t, entry )
1151 fprintf(header, ",%s", arg->name);
1152 fprintf(header, ");\n");
1153 --indentation;
1154 fprintf(header, "}\n");
1159 static void do_write_c_method_def(FILE *header, const type_t *iface, const char *name)
1161 const statement_t *stmt;
1162 int first_iface = 1;
1164 if (type_iface_get_inherit(iface))
1165 do_write_c_method_def(header, type_iface_get_inherit(iface), name);
1167 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1169 const var_t *func = stmt->u.var;
1170 if (first_iface) {
1171 indent(header, 0);
1172 fprintf(header, "/*** %s methods ***/\n", iface->name);
1173 first_iface = 0;
1175 if (!is_callas(func->attrs)) {
1176 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1177 if (!callconv) callconv = "STDMETHODCALLTYPE";
1178 indent(header, 0);
1179 write_type_decl_left(header, type_function_get_rettype(func->type));
1180 if (is_aggregate_return(func))
1181 fprintf(header, " *");
1182 if (is_inherited_method(iface, func))
1183 fprintf(header, " (%s *%s_%s)(\n", callconv, iface->name, func->name);
1184 else
1185 fprintf(header, " (%s *%s)(\n", callconv, get_name(func));
1186 ++indentation;
1187 indent(header, 0);
1188 fprintf(header, "%s *This", name);
1189 if (is_aggregate_return(func)) {
1190 fprintf(header, ",\n");
1191 indent(header, 0);
1192 write_type_decl_left(header, type_function_get_rettype(func->type));
1193 fprintf(header, " *__ret");
1195 --indentation;
1196 if (type_get_function_args(func->type)) {
1197 fprintf(header, ",\n");
1198 write_args(header, type_get_function_args(func->type), name, 0, TRUE);
1200 fprintf(header, ");\n");
1201 fprintf(header, "\n");
1206 static void write_c_method_def(FILE *header, const type_t *iface)
1208 do_write_c_method_def(header, iface, iface->c_name);
1211 static void write_c_disp_method_def(FILE *header, const type_t *iface)
1213 do_write_c_method_def(header, type_iface_get_inherit(iface), iface->c_name);
1216 static void write_method_proto(FILE *header, const type_t *iface)
1218 const statement_t *stmt;
1220 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1222 const var_t *func = stmt->u.var;
1224 if (is_callas(func->attrs)) {
1225 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1226 if (!callconv) callconv = "STDMETHODCALLTYPE";
1227 /* proxy prototype */
1228 write_type_decl_left(header, type_function_get_rettype(func->type));
1229 fprintf(header, " %s %s_%s_Proxy(\n", callconv, iface->name, get_name(func));
1230 write_args(header, type_get_function_args(func->type), iface->name, 1, TRUE);
1231 fprintf(header, ");\n");
1232 /* stub prototype */
1233 fprintf(header, "void __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(func));
1234 fprintf(header, " IRpcStubBuffer* This,\n");
1235 fprintf(header, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
1236 fprintf(header, " PRPC_MESSAGE pRpcMessage,\n");
1237 fprintf(header, " DWORD* pdwStubPhase);\n");
1242 static void write_locals(FILE *fp, const type_t *iface, int body)
1244 static const char comment[]
1245 = "/* WIDL-generated stub. You must provide an implementation for this. */";
1246 const statement_t *stmt;
1248 if (!is_object(iface))
1249 return;
1251 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface)) {
1252 const var_t *func = stmt->u.var;
1253 const var_t *cas = is_callas(func->attrs);
1255 if (cas) {
1256 const statement_t *stmt2 = NULL;
1257 STATEMENTS_FOR_EACH_FUNC(stmt2, type_iface_get_stmts(iface))
1258 if (!strcmp(stmt2->u.var->name, cas->name))
1259 break;
1260 if (&stmt2->entry != type_iface_get_stmts(iface)) {
1261 const var_t *m = stmt2->u.var;
1262 /* proxy prototype - use local prototype */
1263 write_type_decl_left(fp, type_function_get_rettype(m->type));
1264 fprintf(fp, " CALLBACK %s_%s_Proxy(\n", iface->name, get_name(m));
1265 write_args(fp, type_get_function_args(m->type), iface->name, 1, TRUE);
1266 fprintf(fp, ")");
1267 if (body) {
1268 type_t *rt = type_function_get_rettype(m->type);
1269 fprintf(fp, "\n{\n");
1270 fprintf(fp, " %s\n", comment);
1271 if (rt->name && strcmp(rt->name, "HRESULT") == 0)
1272 fprintf(fp, " return E_NOTIMPL;\n");
1273 else if (type_get_type(rt) != TYPE_VOID) {
1274 fprintf(fp, " ");
1275 write_type_decl(fp, rt, "rv");
1276 fprintf(fp, ";\n");
1277 fprintf(fp, " memset(&rv, 0, sizeof rv);\n");
1278 fprintf(fp, " return rv;\n");
1280 fprintf(fp, "}\n\n");
1282 else
1283 fprintf(fp, ";\n");
1284 /* stub prototype - use remotable prototype */
1285 write_type_decl_left(fp, type_function_get_rettype(func->type));
1286 fprintf(fp, " __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(m));
1287 write_args(fp, type_get_function_args(func->type), iface->name, 1, TRUE);
1288 fprintf(fp, ")");
1289 if (body)
1290 /* Remotable methods must all return HRESULTs. */
1291 fprintf(fp, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment);
1292 else
1293 fprintf(fp, ";\n");
1295 else
1296 error_loc("invalid call_as attribute (%s -> %s)\n", func->name, cas->name);
1301 static void write_local_stubs_stmts(FILE *local_stubs, const statement_list_t *stmts)
1303 const statement_t *stmt;
1304 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1306 if (stmt->type == STMT_TYPE && type_get_type(stmt->u.type) == TYPE_INTERFACE)
1307 write_locals(local_stubs, stmt->u.type, TRUE);
1311 void write_local_stubs(const statement_list_t *stmts)
1313 FILE *local_stubs;
1315 if (!local_stubs_name) return;
1317 local_stubs = fopen(local_stubs_name, "w");
1318 if (!local_stubs) {
1319 error("Could not open %s for output\n", local_stubs_name);
1320 return;
1322 fprintf(local_stubs, "/* call_as/local stubs for %s */\n\n", input_name);
1323 fprintf(local_stubs, "#include <objbase.h>\n");
1324 fprintf(local_stubs, "#include \"%s\"\n\n", header_name);
1326 write_local_stubs_stmts(local_stubs, stmts);
1328 fclose(local_stubs);
1331 static void write_function_proto(FILE *header, const type_t *iface, const var_t *fun, const char *prefix)
1333 const char *callconv = get_attrp(fun->type->attrs, ATTR_CALLCONV);
1335 if (!callconv) callconv = "__cdecl";
1336 /* FIXME: do we need to handle call_as? */
1337 write_type_decl_left(header, type_function_get_rettype(fun->type));
1338 fprintf(header, " %s ", callconv);
1339 fprintf(header, "%s%s(\n", prefix, get_name(fun));
1340 if (type_get_function_args(fun->type))
1341 write_args(header, type_get_function_args(fun->type), iface->name, 0, TRUE);
1342 else
1343 fprintf(header, " void");
1344 fprintf(header, ");\n\n");
1347 static void write_forward(FILE *header, type_t *iface)
1349 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", iface->c_name);
1350 fprintf(header, "#define __%s_FWD_DEFINED__\n", iface->c_name);
1351 fprintf(header, "typedef interface %s %s;\n", iface->c_name, iface->c_name);
1352 fprintf(header, "#ifdef __cplusplus\n");
1353 write_namespace_start(header, iface->namespace);
1354 write_line(header, 0, "interface %s;", iface->name);
1355 write_namespace_end(header, iface->namespace);
1356 fprintf(header, "#endif /* __cplusplus */\n");
1357 fprintf(header, "#endif\n\n" );
1360 static void write_com_interface_start(FILE *header, const type_t *iface)
1362 int dispinterface = is_attr(iface->attrs, ATTR_DISPINTERFACE);
1363 fprintf(header, "/*****************************************************************************\n");
1364 fprintf(header, " * %s %sinterface\n", iface->name, dispinterface ? "disp" : "");
1365 fprintf(header, " */\n");
1366 fprintf(header,"#ifndef __%s_%sINTERFACE_DEFINED__\n", iface->c_name, dispinterface ? "DISP" : "");
1367 fprintf(header,"#define __%s_%sINTERFACE_DEFINED__\n\n", iface->c_name, dispinterface ? "DISP" : "");
1370 static void write_com_interface_end(FILE *header, type_t *iface)
1372 int dispinterface = is_attr(iface->attrs, ATTR_DISPINTERFACE);
1373 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
1374 type_t *type;
1376 if (uuid)
1377 write_guid(header, dispinterface ? "DIID" : "IID", iface->c_name, uuid);
1379 /* C++ interface */
1380 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
1381 if (!is_global_namespace(iface->namespace)) {
1382 write_line(header, 0, "} /* extern \"C\" */");
1383 write_namespace_start(header, iface->namespace);
1385 if (uuid) {
1386 write_line(header, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid));
1387 indent(header, 0);
1388 }else {
1389 indent(header, 0);
1390 fprintf(header, "interface ");
1392 if (type_iface_get_inherit(iface))
1394 fprintf(header, "%s : public %s\n", iface->name,
1395 type_iface_get_inherit(iface)->name);
1396 write_line(header, 1, "{");
1398 else
1400 fprintf(header, "%s\n", iface->name);
1401 write_line(header, 1, "{\n");
1402 write_line(header, 0, "BEGIN_INTERFACE\n");
1404 /* dispinterfaces don't have real functions, so don't write C++ functions for
1405 * them */
1406 if (!dispinterface)
1407 write_cpp_method_def(header, iface);
1408 if (!type_iface_get_inherit(iface))
1409 write_line(header, 0, "END_INTERFACE\n");
1410 write_line(header, -1, "};");
1411 if (!is_global_namespace(iface->namespace)) {
1412 write_namespace_end(header, iface->namespace);
1413 write_line(header, 0, "extern \"C\" {");
1415 if (uuid)
1416 write_uuid_decl(header, iface, uuid);
1417 fprintf(header, "#else\n");
1418 /* C interface */
1419 write_line(header, 1, "typedef struct %sVtbl {", iface->c_name);
1420 write_line(header, 0, "BEGIN_INTERFACE\n");
1421 if (dispinterface)
1422 write_c_disp_method_def(header, iface);
1423 else
1424 write_c_method_def(header, iface);
1425 write_line(header, 0, "END_INTERFACE");
1426 write_line(header, -1, "} %sVtbl;\n", iface->c_name);
1427 fprintf(header, "interface %s {\n", iface->c_name);
1428 fprintf(header, " CONST_VTBL %sVtbl* lpVtbl;\n", iface->c_name);
1429 fprintf(header, "};\n\n");
1430 fprintf(header, "#ifdef COBJMACROS\n");
1431 /* dispinterfaces don't have real functions, so don't write macros for them,
1432 * only for the interface this interface inherits from, i.e. IDispatch */
1433 fprintf(header, "#ifndef WIDL_C_INLINE_WRAPPERS\n");
1434 type = dispinterface ? type_iface_get_inherit(iface) : iface;
1435 write_method_macro(header, type, type, iface->c_name);
1436 fprintf(header, "#else\n");
1437 write_inline_wrappers(header, type, type, iface->c_name);
1438 fprintf(header, "#endif\n");
1439 fprintf(header, "#endif\n");
1440 fprintf(header, "\n");
1441 fprintf(header, "#endif\n");
1442 fprintf(header, "\n");
1443 /* dispinterfaces don't have real functions, so don't write prototypes for
1444 * them */
1445 if (!dispinterface && !winrt_mode)
1447 write_method_proto(header, iface);
1448 write_locals(header, iface, FALSE);
1449 fprintf(header, "\n");
1451 fprintf(header,"#endif /* __%s_%sINTERFACE_DEFINED__ */\n\n", iface->c_name, dispinterface ? "DISP" : "");
1454 static void write_rpc_interface_start(FILE *header, const type_t *iface)
1456 unsigned int ver = get_attrv(iface->attrs, ATTR_VERSION);
1457 const var_t *var = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
1459 fprintf(header, "/*****************************************************************************\n");
1460 fprintf(header, " * %s interface (v%d.%d)\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1461 fprintf(header, " */\n");
1462 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
1463 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
1464 if (var)
1466 fprintf(header, "extern ");
1467 write_type_decl( header, var->type, var->name );
1468 fprintf(header, ";\n");
1470 if (old_names)
1472 fprintf(header, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client, iface->name);
1473 fprintf(header, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server, iface->name);
1475 else
1477 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
1478 prefix_client, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1479 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
1480 prefix_server, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1484 static void write_rpc_interface_end(FILE *header, const type_t *iface)
1486 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
1489 static void write_coclass(FILE *header, type_t *cocl)
1491 const UUID *uuid = get_attrp(cocl->attrs, ATTR_UUID);
1493 fprintf(header, "/*****************************************************************************\n");
1494 fprintf(header, " * %s coclass\n", cocl->name);
1495 fprintf(header, " */\n\n");
1496 if (uuid)
1497 write_guid(header, "CLSID", cocl->name, uuid);
1498 fprintf(header, "\n#ifdef __cplusplus\n");
1499 if (uuid)
1501 fprintf(header, "class DECLSPEC_UUID(\"%s\") %s;\n", uuid_string(uuid), cocl->name);
1502 write_uuid_decl(header, cocl, uuid);
1504 else
1506 fprintf(header, "class %s;\n", cocl->name);
1508 fprintf(header, "#endif\n");
1509 fprintf(header, "\n");
1512 static void write_coclass_forward(FILE *header, type_t *cocl)
1514 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", cocl->name);
1515 fprintf(header, "#define __%s_FWD_DEFINED__\n", cocl->name);
1516 fprintf(header, "#ifdef __cplusplus\n");
1517 fprintf(header, "typedef class %s %s;\n", cocl->name, cocl->name);
1518 fprintf(header, "#else\n");
1519 fprintf(header, "typedef struct %s %s;\n", cocl->name, cocl->name);
1520 fprintf(header, "#endif /* defined __cplusplus */\n");
1521 fprintf(header, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl->name );
1524 static void write_import(FILE *header, const char *fname)
1526 char *hname, *p;
1528 hname = dup_basename(fname, ".idl");
1529 p = hname + strlen(hname) - 2;
1530 if (p <= hname || strcmp( p, ".h" )) strcat(hname, ".h");
1532 fprintf(header, "#include <%s>\n", hname);
1533 free(hname);
1536 static void write_imports(FILE *header, const statement_list_t *stmts)
1538 const statement_t *stmt;
1539 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1541 switch (stmt->type)
1543 case STMT_TYPE:
1544 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1545 write_imports(header, type_iface_get_stmts(stmt->u.type));
1546 break;
1547 case STMT_TYPEREF:
1548 case STMT_IMPORTLIB:
1549 /* not included in header */
1550 break;
1551 case STMT_IMPORT:
1552 write_import(header, stmt->u.str);
1553 break;
1554 case STMT_TYPEDEF:
1555 case STMT_MODULE:
1556 case STMT_CPPQUOTE:
1557 case STMT_PRAGMA:
1558 case STMT_DECLARATION:
1559 /* not processed here */
1560 break;
1561 case STMT_LIBRARY:
1562 write_imports(header, stmt->u.lib->stmts);
1563 break;
1568 static void write_forward_decls(FILE *header, const statement_list_t *stmts)
1570 const statement_t *stmt;
1571 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1573 switch (stmt->type)
1575 case STMT_TYPE:
1576 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1578 if (is_object(stmt->u.type) || is_attr(stmt->u.type->attrs, ATTR_DISPINTERFACE))
1579 write_forward(header, stmt->u.type);
1581 else if (type_get_type(stmt->u.type) == TYPE_COCLASS)
1582 write_coclass_forward(header, stmt->u.type);
1583 break;
1584 case STMT_TYPEREF:
1585 case STMT_IMPORTLIB:
1586 /* not included in header */
1587 break;
1588 case STMT_IMPORT:
1589 case STMT_TYPEDEF:
1590 case STMT_MODULE:
1591 case STMT_CPPQUOTE:
1592 case STMT_PRAGMA:
1593 case STMT_DECLARATION:
1594 /* not processed here */
1595 break;
1596 case STMT_LIBRARY:
1597 write_forward_decls(header, stmt->u.lib->stmts);
1598 break;
1603 static void write_header_stmts(FILE *header, const statement_list_t *stmts, const type_t *iface, int ignore_funcs)
1605 const statement_t *stmt;
1606 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1608 switch (stmt->type)
1610 case STMT_TYPE:
1611 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1613 type_t *iface = stmt->u.type;
1614 if (is_object(iface)) is_object_interface++;
1615 if (is_attr(stmt->u.type->attrs, ATTR_DISPINTERFACE) || is_object(stmt->u.type))
1617 write_com_interface_start(header, iface);
1618 write_header_stmts(header, type_iface_get_stmts(iface), stmt->u.type, TRUE);
1619 write_com_interface_end(header, iface);
1621 else
1623 write_rpc_interface_start(header, iface);
1624 write_header_stmts(header, type_iface_get_stmts(iface), iface, FALSE);
1625 write_rpc_interface_end(header, iface);
1627 if (is_object(iface)) is_object_interface--;
1629 else if (type_get_type(stmt->u.type) == TYPE_COCLASS)
1630 write_coclass(header, stmt->u.type);
1631 else
1633 write_type_definition(header, stmt->u.type);
1635 break;
1636 case STMT_TYPEREF:
1637 /* FIXME: shouldn't write out forward declarations for undefined
1638 * interfaces but a number of our IDL files depend on this */
1639 if (type_get_type(stmt->u.type) == TYPE_INTERFACE && !stmt->u.type->written)
1640 write_forward(header, stmt->u.type);
1641 break;
1642 case STMT_IMPORTLIB:
1643 case STMT_MODULE:
1644 case STMT_PRAGMA:
1645 /* not included in header */
1646 break;
1647 case STMT_IMPORT:
1648 /* not processed here */
1649 break;
1650 case STMT_TYPEDEF:
1652 const type_list_t *type_entry = stmt->u.type_list;
1653 for (; type_entry; type_entry = type_entry->next)
1654 write_typedef(header, type_entry->type);
1655 break;
1657 case STMT_LIBRARY:
1658 write_library(header, stmt->u.lib);
1659 write_header_stmts(header, stmt->u.lib->stmts, NULL, FALSE);
1660 break;
1661 case STMT_CPPQUOTE:
1662 fprintf(header, "%s\n", stmt->u.str);
1663 break;
1664 case STMT_DECLARATION:
1665 if (iface && type_get_type(stmt->u.var->type) == TYPE_FUNCTION)
1667 if (!ignore_funcs)
1669 int prefixes_differ = strcmp(prefix_client, prefix_server);
1671 if (prefixes_differ)
1673 fprintf(header, "/* client prototype */\n");
1674 write_function_proto(header, iface, stmt->u.var, prefix_client);
1675 fprintf(header, "/* server prototype */\n");
1677 write_function_proto(header, iface, stmt->u.var, prefix_server);
1680 else
1681 write_declaration(header, stmt->u.var);
1682 break;
1687 void write_header(const statement_list_t *stmts)
1689 FILE *header;
1691 if (!do_header) return;
1693 if(!(header = fopen(header_name, "w"))) {
1694 error("Could not open %s for output\n", header_name);
1695 return;
1697 fprintf(header, "/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n\n", PACKAGE_VERSION, input_name);
1699 fprintf(header, "#ifndef __REQUIRED_RPCNDR_H_VERSION__\n");
1700 fprintf(header, "#define __REQUIRED_RPCNDR_H_VERSION__ 475\n");
1701 fprintf(header, "#endif\n\n");
1703 fprintf(header, "#include <rpc.h>\n" );
1704 fprintf(header, "#include <rpcndr.h>\n\n" );
1706 fprintf(header, "#ifndef COM_NO_WINDOWS_H\n");
1707 fprintf(header, "#include <windows.h>\n");
1708 fprintf(header, "#include <ole2.h>\n");
1709 fprintf(header, "#endif\n\n");
1711 fprintf(header, "#ifndef __%s__\n", header_token);
1712 fprintf(header, "#define __%s__\n\n", header_token);
1714 fprintf(header, "/* Forward declarations */\n\n");
1715 write_forward_decls(header, stmts);
1717 fprintf(header, "/* Headers for imported files */\n\n");
1718 write_imports(header, stmts);
1719 fprintf(header, "\n");
1720 start_cplusplus_guard(header);
1722 write_header_stmts(header, stmts, NULL, FALSE);
1724 fprintf(header, "/* Begin additional prototypes for all interfaces */\n");
1725 fprintf(header, "\n");
1726 write_user_types(header);
1727 write_generic_handle_routines(header);
1728 write_context_handle_rundowns(header);
1729 fprintf(header, "\n");
1730 fprintf(header, "/* End additional prototypes */\n");
1731 fprintf(header, "\n");
1733 end_cplusplus_guard(header);
1734 fprintf(header, "#endif /* __%s__ */\n", header_token);
1736 fclose(header);