ieframe: Widen toolbar buttons to accommodate Catalan translation.
[wine.git] / tools / widl / header.c
blob7b971582db6157a902eb3a731cac3a81ac7db0d5
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 if (!callconv) callconv = "STDMETHODCALLTYPE";
1047 indent(header, 0);
1048 fprintf(header, "virtual ");
1049 write_type_decl_left(header, type_function_get_rettype(func->type));
1050 fprintf(header, " %s %s(\n", callconv, get_name(func));
1051 write_args(header, type_get_function_args(func->type), iface->name, 2, TRUE);
1052 fprintf(header, ") = 0;\n");
1053 fprintf(header, "\n");
1058 static void write_inline_wrappers(FILE *header, const type_t *iface, const type_t *child, const char *name)
1060 const statement_t *stmt;
1061 int first_iface = 1;
1063 if (type_iface_get_inherit(iface))
1064 write_inline_wrappers(header, type_iface_get_inherit(iface), child, name);
1066 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1068 const var_t *func = stmt->u.var;
1070 if (first_iface)
1072 fprintf(header, "/*** %s methods ***/\n", iface->name);
1073 first_iface = 0;
1076 if (is_override_method(iface, child, func))
1077 continue;
1079 if (!is_callas(func->attrs)) {
1080 const var_t *arg;
1082 fprintf(header, "static FORCEINLINE ");
1083 write_type_decl_left(header, type_function_get_rettype(func->type));
1084 fprintf(header, " %s_%s(", name, get_name(func));
1085 write_args(header, type_get_function_args(func->type), name, 1, FALSE);
1086 fprintf(header, ") {\n");
1087 ++indentation;
1088 if (!is_aggregate_return(func)) {
1089 indent(header, 0);
1090 fprintf(header, "%sThis->lpVtbl->%s(This",
1091 is_void(type_function_get_rettype(func->type)) ? "" : "return ",
1092 get_vtbl_entry_name(iface, func));
1093 } else {
1094 indent(header, 0);
1095 write_type_decl_left(header, type_function_get_rettype(func->type));
1096 fprintf(header, " __ret;\n");
1097 indent(header, 0);
1098 fprintf(header, "return *This->lpVtbl->%s(This,&__ret", get_vtbl_entry_name(iface, func));
1100 if (type_get_function_args(func->type))
1101 LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), const var_t, entry )
1102 fprintf(header, ",%s", arg->name);
1103 fprintf(header, ");\n");
1104 --indentation;
1105 fprintf(header, "}\n");
1110 static void do_write_c_method_def(FILE *header, const type_t *iface, const char *name)
1112 const statement_t *stmt;
1113 int first_iface = 1;
1115 if (type_iface_get_inherit(iface))
1116 do_write_c_method_def(header, type_iface_get_inherit(iface), name);
1118 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1120 const var_t *func = stmt->u.var;
1121 if (first_iface) {
1122 indent(header, 0);
1123 fprintf(header, "/*** %s methods ***/\n", iface->name);
1124 first_iface = 0;
1126 if (!is_callas(func->attrs)) {
1127 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1128 if (!callconv) callconv = "STDMETHODCALLTYPE";
1129 indent(header, 0);
1130 write_type_decl_left(header, type_function_get_rettype(func->type));
1131 if (is_aggregate_return(func))
1132 fprintf(header, " *");
1133 if (is_inherited_method(iface, func))
1134 fprintf(header, " (%s *%s_%s)(\n", callconv, iface->name, func->name);
1135 else
1136 fprintf(header, " (%s *%s)(\n", callconv, get_name(func));
1137 ++indentation;
1138 indent(header, 0);
1139 fprintf(header, "%s *This", name);
1140 if (is_aggregate_return(func)) {
1141 fprintf(header, ",\n");
1142 indent(header, 0);
1143 write_type_decl_left(header, type_function_get_rettype(func->type));
1144 fprintf(header, " *__ret");
1146 --indentation;
1147 if (type_get_function_args(func->type)) {
1148 fprintf(header, ",\n");
1149 write_args(header, type_get_function_args(func->type), name, 0, TRUE);
1151 fprintf(header, ");\n");
1152 fprintf(header, "\n");
1157 static void write_c_method_def(FILE *header, const type_t *iface)
1159 do_write_c_method_def(header, iface, iface->c_name);
1162 static void write_c_disp_method_def(FILE *header, const type_t *iface)
1164 do_write_c_method_def(header, type_iface_get_inherit(iface), iface->c_name);
1167 static void write_method_proto(FILE *header, const type_t *iface)
1169 const statement_t *stmt;
1171 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface))
1173 const var_t *func = stmt->u.var;
1175 if (!is_local(func->attrs)) {
1176 const char *callconv = get_attrp(func->type->attrs, ATTR_CALLCONV);
1177 if (!callconv) callconv = "STDMETHODCALLTYPE";
1178 /* proxy prototype */
1179 write_type_decl_left(header, type_function_get_rettype(func->type));
1180 fprintf(header, " %s %s_%s_Proxy(\n", callconv, iface->name, get_name(func));
1181 write_args(header, type_get_function_args(func->type), iface->name, 1, TRUE);
1182 fprintf(header, ");\n");
1183 /* stub prototype */
1184 fprintf(header, "void __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(func));
1185 fprintf(header, " IRpcStubBuffer* This,\n");
1186 fprintf(header, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
1187 fprintf(header, " PRPC_MESSAGE pRpcMessage,\n");
1188 fprintf(header, " DWORD* pdwStubPhase);\n");
1193 static void write_locals(FILE *fp, const type_t *iface, int body)
1195 static const char comment[]
1196 = "/* WIDL-generated stub. You must provide an implementation for this. */";
1197 const statement_t *stmt;
1199 if (!is_object(iface))
1200 return;
1202 STATEMENTS_FOR_EACH_FUNC(stmt, type_iface_get_stmts(iface)) {
1203 const var_t *func = stmt->u.var;
1204 const var_t *cas = is_callas(func->attrs);
1206 if (cas) {
1207 const statement_t *stmt2 = NULL;
1208 STATEMENTS_FOR_EACH_FUNC(stmt2, type_iface_get_stmts(iface))
1209 if (!strcmp(stmt2->u.var->name, cas->name))
1210 break;
1211 if (&stmt2->entry != type_iface_get_stmts(iface)) {
1212 const var_t *m = stmt2->u.var;
1213 /* proxy prototype - use local prototype */
1214 write_type_decl_left(fp, type_function_get_rettype(m->type));
1215 fprintf(fp, " CALLBACK %s_%s_Proxy(\n", iface->name, get_name(m));
1216 write_args(fp, type_get_function_args(m->type), iface->name, 1, TRUE);
1217 fprintf(fp, ")");
1218 if (body) {
1219 type_t *rt = type_function_get_rettype(m->type);
1220 fprintf(fp, "\n{\n");
1221 fprintf(fp, " %s\n", comment);
1222 if (rt->name && strcmp(rt->name, "HRESULT") == 0)
1223 fprintf(fp, " return E_NOTIMPL;\n");
1224 else if (type_get_type(rt) != TYPE_VOID) {
1225 fprintf(fp, " ");
1226 write_type_decl(fp, rt, "rv");
1227 fprintf(fp, ";\n");
1228 fprintf(fp, " memset(&rv, 0, sizeof rv);\n");
1229 fprintf(fp, " return rv;\n");
1231 fprintf(fp, "}\n\n");
1233 else
1234 fprintf(fp, ";\n");
1235 /* stub prototype - use remotable prototype */
1236 write_type_decl_left(fp, type_function_get_rettype(func->type));
1237 fprintf(fp, " __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(m));
1238 write_args(fp, type_get_function_args(func->type), iface->name, 1, TRUE);
1239 fprintf(fp, ")");
1240 if (body)
1241 /* Remotable methods must all return HRESULTs. */
1242 fprintf(fp, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment);
1243 else
1244 fprintf(fp, ";\n");
1246 else
1247 error_loc("invalid call_as attribute (%s -> %s)\n", func->name, cas->name);
1252 static void write_local_stubs_stmts(FILE *local_stubs, const statement_list_t *stmts)
1254 const statement_t *stmt;
1255 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1257 if (stmt->type == STMT_TYPE && type_get_type(stmt->u.type) == TYPE_INTERFACE)
1258 write_locals(local_stubs, stmt->u.type, TRUE);
1262 void write_local_stubs(const statement_list_t *stmts)
1264 FILE *local_stubs;
1266 if (!local_stubs_name) return;
1268 local_stubs = fopen(local_stubs_name, "w");
1269 if (!local_stubs) {
1270 error("Could not open %s for output\n", local_stubs_name);
1271 return;
1273 fprintf(local_stubs, "/* call_as/local stubs for %s */\n\n", input_name);
1274 fprintf(local_stubs, "#include <objbase.h>\n");
1275 fprintf(local_stubs, "#include \"%s\"\n\n", header_name);
1277 write_local_stubs_stmts(local_stubs, stmts);
1279 fclose(local_stubs);
1282 static void write_function_proto(FILE *header, const type_t *iface, const var_t *fun, const char *prefix)
1284 const char *callconv = get_attrp(fun->type->attrs, ATTR_CALLCONV);
1286 if (!callconv) callconv = "__cdecl";
1287 /* FIXME: do we need to handle call_as? */
1288 write_type_decl_left(header, type_function_get_rettype(fun->type));
1289 fprintf(header, " %s ", callconv);
1290 fprintf(header, "%s%s(\n", prefix, get_name(fun));
1291 if (type_get_function_args(fun->type))
1292 write_args(header, type_get_function_args(fun->type), iface->name, 0, TRUE);
1293 else
1294 fprintf(header, " void");
1295 fprintf(header, ");\n\n");
1298 static void write_forward(FILE *header, type_t *iface)
1300 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", iface->c_name);
1301 fprintf(header, "#define __%s_FWD_DEFINED__\n", iface->c_name);
1302 fprintf(header, "typedef interface %s %s;\n", iface->c_name, iface->c_name);
1303 fprintf(header, "#ifdef __cplusplus\n");
1304 write_namespace_start(header, iface->namespace);
1305 write_line(header, 0, "interface %s;", iface->name);
1306 write_namespace_end(header, iface->namespace);
1307 fprintf(header, "#endif /* __cplusplus */\n");
1308 fprintf(header, "#endif\n\n" );
1311 static void write_com_interface_start(FILE *header, const type_t *iface)
1313 int dispinterface = is_attr(iface->attrs, ATTR_DISPINTERFACE);
1314 fprintf(header, "/*****************************************************************************\n");
1315 fprintf(header, " * %s %sinterface\n", iface->name, dispinterface ? "disp" : "");
1316 fprintf(header, " */\n");
1317 fprintf(header,"#ifndef __%s_%sINTERFACE_DEFINED__\n", iface->c_name, dispinterface ? "DISP" : "");
1318 fprintf(header,"#define __%s_%sINTERFACE_DEFINED__\n\n", iface->c_name, dispinterface ? "DISP" : "");
1321 static void write_com_interface_end(FILE *header, type_t *iface)
1323 int dispinterface = is_attr(iface->attrs, ATTR_DISPINTERFACE);
1324 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
1325 type_t *type;
1327 if (uuid)
1328 write_guid(header, dispinterface ? "DIID" : "IID", iface->c_name, uuid);
1330 /* C++ interface */
1331 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
1332 if (!is_global_namespace(iface->namespace)) {
1333 write_line(header, 0, "} /* extern \"C\" */");
1334 write_namespace_start(header, iface->namespace);
1336 if (uuid) {
1337 write_line(header, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid));
1338 indent(header, 0);
1339 }else {
1340 indent(header, 0);
1341 fprintf(header, "interface ");
1343 if (type_iface_get_inherit(iface))
1345 fprintf(header, "%s : public %s\n", iface->name,
1346 type_iface_get_inherit(iface)->name);
1347 write_line(header, 1, "{");
1349 else
1351 fprintf(header, "%s\n", iface->name);
1352 write_line(header, 1, "{\n");
1353 write_line(header, 0, "BEGIN_INTERFACE\n");
1355 /* dispinterfaces don't have real functions, so don't write C++ functions for
1356 * them */
1357 if (!dispinterface)
1358 write_cpp_method_def(header, iface);
1359 if (!type_iface_get_inherit(iface))
1360 write_line(header, 0, "END_INTERFACE\n");
1361 write_line(header, -1, "};");
1362 if (!is_global_namespace(iface->namespace)) {
1363 write_namespace_end(header, iface->namespace);
1364 write_line(header, 0, "extern \"C\" {");
1366 if (uuid)
1367 write_uuid_decl(header, iface, uuid);
1368 fprintf(header, "#else\n");
1369 /* C interface */
1370 write_line(header, 1, "typedef struct %sVtbl {", iface->c_name);
1371 write_line(header, 0, "BEGIN_INTERFACE\n");
1372 if (dispinterface)
1373 write_c_disp_method_def(header, iface);
1374 else
1375 write_c_method_def(header, iface);
1376 write_line(header, 0, "END_INTERFACE");
1377 write_line(header, -1, "} %sVtbl;\n", iface->c_name);
1378 fprintf(header, "interface %s {\n", iface->c_name);
1379 fprintf(header, " CONST_VTBL %sVtbl* lpVtbl;\n", iface->c_name);
1380 fprintf(header, "};\n\n");
1381 fprintf(header, "#ifdef COBJMACROS\n");
1382 /* dispinterfaces don't have real functions, so don't write macros for them,
1383 * only for the interface this interface inherits from, i.e. IDispatch */
1384 fprintf(header, "#ifndef WIDL_C_INLINE_WRAPPERS\n");
1385 type = dispinterface ? type_iface_get_inherit(iface) : iface;
1386 write_method_macro(header, type, type, iface->c_name);
1387 fprintf(header, "#else\n");
1388 write_inline_wrappers(header, type, type, iface->c_name);
1389 fprintf(header, "#endif\n");
1390 fprintf(header, "#endif\n");
1391 fprintf(header, "\n");
1392 fprintf(header, "#endif\n");
1393 fprintf(header, "\n");
1394 /* dispinterfaces don't have real functions, so don't write prototypes for
1395 * them */
1396 if (!dispinterface && !winrt_mode)
1398 write_method_proto(header, iface);
1399 write_locals(header, iface, FALSE);
1400 fprintf(header, "\n");
1402 fprintf(header,"#endif /* __%s_%sINTERFACE_DEFINED__ */\n\n", iface->c_name, dispinterface ? "DISP" : "");
1405 static void write_rpc_interface_start(FILE *header, const type_t *iface)
1407 unsigned int ver = get_attrv(iface->attrs, ATTR_VERSION);
1408 const var_t *var = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
1410 fprintf(header, "/*****************************************************************************\n");
1411 fprintf(header, " * %s interface (v%d.%d)\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1412 fprintf(header, " */\n");
1413 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
1414 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
1415 if (var)
1417 fprintf(header, "extern ");
1418 write_type_decl( header, var->type, var->name );
1419 fprintf(header, ";\n");
1421 if (old_names)
1423 fprintf(header, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client, iface->name);
1424 fprintf(header, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server, iface->name);
1426 else
1428 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
1429 prefix_client, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1430 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
1431 prefix_server, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1435 static void write_rpc_interface_end(FILE *header, const type_t *iface)
1437 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
1440 static void write_coclass(FILE *header, type_t *cocl)
1442 const UUID *uuid = get_attrp(cocl->attrs, ATTR_UUID);
1444 fprintf(header, "/*****************************************************************************\n");
1445 fprintf(header, " * %s coclass\n", cocl->name);
1446 fprintf(header, " */\n\n");
1447 if (uuid)
1448 write_guid(header, "CLSID", cocl->name, uuid);
1449 fprintf(header, "\n#ifdef __cplusplus\n");
1450 if (uuid)
1452 fprintf(header, "class DECLSPEC_UUID(\"%s\") %s;\n", uuid_string(uuid), cocl->name);
1453 write_uuid_decl(header, cocl, uuid);
1455 else
1457 fprintf(header, "class %s;\n", cocl->name);
1459 fprintf(header, "#endif\n");
1460 fprintf(header, "\n");
1463 static void write_coclass_forward(FILE *header, type_t *cocl)
1465 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", cocl->name);
1466 fprintf(header, "#define __%s_FWD_DEFINED__\n", cocl->name);
1467 fprintf(header, "#ifdef __cplusplus\n");
1468 fprintf(header, "typedef class %s %s;\n", cocl->name, cocl->name);
1469 fprintf(header, "#else\n");
1470 fprintf(header, "typedef struct %s %s;\n", cocl->name, cocl->name);
1471 fprintf(header, "#endif /* defined __cplusplus */\n");
1472 fprintf(header, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl->name );
1475 static void write_import(FILE *header, const char *fname)
1477 char *hname, *p;
1479 hname = dup_basename(fname, ".idl");
1480 p = hname + strlen(hname) - 2;
1481 if (p <= hname || strcmp( p, ".h" )) strcat(hname, ".h");
1483 fprintf(header, "#include <%s>\n", hname);
1484 free(hname);
1487 static void write_imports(FILE *header, const statement_list_t *stmts)
1489 const statement_t *stmt;
1490 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1492 switch (stmt->type)
1494 case STMT_TYPE:
1495 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1496 write_imports(header, type_iface_get_stmts(stmt->u.type));
1497 break;
1498 case STMT_TYPEREF:
1499 case STMT_IMPORTLIB:
1500 /* not included in header */
1501 break;
1502 case STMT_IMPORT:
1503 write_import(header, stmt->u.str);
1504 break;
1505 case STMT_TYPEDEF:
1506 case STMT_MODULE:
1507 case STMT_CPPQUOTE:
1508 case STMT_PRAGMA:
1509 case STMT_DECLARATION:
1510 /* not processed here */
1511 break;
1512 case STMT_LIBRARY:
1513 write_imports(header, stmt->u.lib->stmts);
1514 break;
1519 static void write_forward_decls(FILE *header, const statement_list_t *stmts)
1521 const statement_t *stmt;
1522 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1524 switch (stmt->type)
1526 case STMT_TYPE:
1527 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1529 if (is_object(stmt->u.type) || is_attr(stmt->u.type->attrs, ATTR_DISPINTERFACE))
1530 write_forward(header, stmt->u.type);
1532 else if (type_get_type(stmt->u.type) == TYPE_COCLASS)
1533 write_coclass_forward(header, stmt->u.type);
1534 break;
1535 case STMT_TYPEREF:
1536 case STMT_IMPORTLIB:
1537 /* not included in header */
1538 break;
1539 case STMT_IMPORT:
1540 case STMT_TYPEDEF:
1541 case STMT_MODULE:
1542 case STMT_CPPQUOTE:
1543 case STMT_PRAGMA:
1544 case STMT_DECLARATION:
1545 /* not processed here */
1546 break;
1547 case STMT_LIBRARY:
1548 write_forward_decls(header, stmt->u.lib->stmts);
1549 break;
1554 static void write_header_stmts(FILE *header, const statement_list_t *stmts, const type_t *iface, int ignore_funcs)
1556 const statement_t *stmt;
1557 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
1559 switch (stmt->type)
1561 case STMT_TYPE:
1562 if (type_get_type(stmt->u.type) == TYPE_INTERFACE)
1564 type_t *iface = stmt->u.type;
1565 if (is_object(iface)) is_object_interface++;
1566 if (is_attr(stmt->u.type->attrs, ATTR_DISPINTERFACE) || is_object(stmt->u.type))
1568 write_com_interface_start(header, iface);
1569 write_header_stmts(header, type_iface_get_stmts(iface), stmt->u.type, TRUE);
1570 write_com_interface_end(header, iface);
1572 else
1574 write_rpc_interface_start(header, iface);
1575 write_header_stmts(header, type_iface_get_stmts(iface), iface, FALSE);
1576 write_rpc_interface_end(header, iface);
1578 if (is_object(iface)) is_object_interface--;
1580 else if (type_get_type(stmt->u.type) == TYPE_COCLASS)
1581 write_coclass(header, stmt->u.type);
1582 else
1584 write_type_definition(header, stmt->u.type);
1586 break;
1587 case STMT_TYPEREF:
1588 /* FIXME: shouldn't write out forward declarations for undefined
1589 * interfaces but a number of our IDL files depend on this */
1590 if (type_get_type(stmt->u.type) == TYPE_INTERFACE && !stmt->u.type->written)
1591 write_forward(header, stmt->u.type);
1592 break;
1593 case STMT_IMPORTLIB:
1594 case STMT_MODULE:
1595 case STMT_PRAGMA:
1596 /* not included in header */
1597 break;
1598 case STMT_IMPORT:
1599 /* not processed here */
1600 break;
1601 case STMT_TYPEDEF:
1603 const type_list_t *type_entry = stmt->u.type_list;
1604 for (; type_entry; type_entry = type_entry->next)
1605 write_typedef(header, type_entry->type);
1606 break;
1608 case STMT_LIBRARY:
1609 write_library(header, stmt->u.lib);
1610 write_header_stmts(header, stmt->u.lib->stmts, NULL, FALSE);
1611 break;
1612 case STMT_CPPQUOTE:
1613 fprintf(header, "%s\n", stmt->u.str);
1614 break;
1615 case STMT_DECLARATION:
1616 if (iface && type_get_type(stmt->u.var->type) == TYPE_FUNCTION)
1618 if (!ignore_funcs)
1620 int prefixes_differ = strcmp(prefix_client, prefix_server);
1622 if (prefixes_differ)
1624 fprintf(header, "/* client prototype */\n");
1625 write_function_proto(header, iface, stmt->u.var, prefix_client);
1626 fprintf(header, "/* server prototype */\n");
1628 write_function_proto(header, iface, stmt->u.var, prefix_server);
1631 else
1632 write_declaration(header, stmt->u.var);
1633 break;
1638 void write_header(const statement_list_t *stmts)
1640 FILE *header;
1642 if (!do_header) return;
1644 if(!(header = fopen(header_name, "w"))) {
1645 error("Could not open %s for output\n", header_name);
1646 return;
1648 fprintf(header, "/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n\n", PACKAGE_VERSION, input_name);
1650 fprintf(header, "#ifndef __REQUIRED_RPCNDR_H_VERSION__\n");
1651 fprintf(header, "#define __REQUIRED_RPCNDR_H_VERSION__ 475\n");
1652 fprintf(header, "#endif\n\n");
1654 fprintf(header, "#include <rpc.h>\n" );
1655 fprintf(header, "#include <rpcndr.h>\n\n" );
1657 fprintf(header, "#ifndef COM_NO_WINDOWS_H\n");
1658 fprintf(header, "#include <windows.h>\n");
1659 fprintf(header, "#include <ole2.h>\n");
1660 fprintf(header, "#endif\n\n");
1662 fprintf(header, "#ifndef __%s__\n", header_token);
1663 fprintf(header, "#define __%s__\n\n", header_token);
1665 fprintf(header, "/* Forward declarations */\n\n");
1666 write_forward_decls(header, stmts);
1668 fprintf(header, "/* Headers for imported files */\n\n");
1669 write_imports(header, stmts);
1670 fprintf(header, "\n");
1671 start_cplusplus_guard(header);
1673 write_header_stmts(header, stmts, NULL, FALSE);
1675 fprintf(header, "/* Begin additional prototypes for all interfaces */\n");
1676 fprintf(header, "\n");
1677 write_user_types(header);
1678 write_generic_handle_routines(header);
1679 write_context_handle_rundowns(header);
1680 fprintf(header, "\n");
1681 fprintf(header, "/* End additional prototypes */\n");
1682 fprintf(header, "\n");
1684 end_cplusplus_guard(header);
1685 fprintf(header, "#endif /* __%s__ */\n", header_token);
1687 fclose(header);