winex11: Use SetWindowPos to invalidate DCEs when changing the pixel format.
[wine/hacks.git] / tools / widl / header.c
blobe1dcccea9eb7fa88b28d04e664bbef35339a968c
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"
37 typedef struct _user_type_t generic_handle_t;
39 static int indentation = 0;
40 user_type_list_t user_type_list = LIST_INIT(user_type_list);
41 static context_handle_list_t context_handle_list = LIST_INIT(context_handle_list);
42 static struct list generic_handle_list = LIST_INIT(generic_handle_list);
44 static void indent(FILE *h, int delta)
46 int c;
47 if (delta < 0) indentation += delta;
48 for (c=0; c<indentation; c++) fprintf(h, " ");
49 if (delta > 0) indentation += delta;
52 int is_ptrchain_attr(const var_t *var, enum attr_type t)
54 if (is_attr(var->attrs, t))
55 return 1;
56 else
58 type_t *type = var->type;
59 for (;;)
61 if (is_attr(type->attrs, t))
62 return 1;
63 else if (type->kind == TKIND_ALIAS)
64 type = type->orig;
65 else if (is_ptr(type))
66 type = type->ref;
67 else return 0;
72 int is_aliaschain_attr(const type_t *type, enum attr_type attr)
74 const type_t *t = type;
75 for (;;)
77 if (is_attr(t->attrs, attr))
78 return 1;
79 else if (t->kind == TKIND_ALIAS)
80 t = t->orig;
81 else return 0;
85 int is_attr(const attr_list_t *list, enum attr_type t)
87 const attr_t *attr;
88 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
89 if (attr->type == t) return 1;
90 return 0;
93 void *get_attrp(const attr_list_t *list, enum attr_type t)
95 const attr_t *attr;
96 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
97 if (attr->type == t) return attr->u.pval;
98 return NULL;
101 unsigned long get_attrv(const attr_list_t *list, enum attr_type t)
103 const attr_t *attr;
104 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
105 if (attr->type == t) return attr->u.ival;
106 return 0;
109 int is_void(const type_t *t)
111 if (!t->type && !t->ref) return 1;
112 return 0;
115 int is_conformant_array(const type_t *t)
117 return t->type == RPC_FC_CARRAY
118 || t->type == RPC_FC_CVARRAY
119 || (t->type == RPC_FC_BOGUS_ARRAY && t->size_is);
122 void write_guid(FILE *f, const char *guid_prefix, const char *name, const UUID *uuid)
124 if (!uuid) return;
125 fprintf(f, "DEFINE_GUID(%s_%s, 0x%08x, 0x%04x, 0x%04x, 0x%02x,0x%02x, 0x%02x,"
126 "0x%02x,0x%02x,0x%02x,0x%02x,0x%02x);\n",
127 guid_prefix, name, uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0],
128 uuid->Data4[1], uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5],
129 uuid->Data4[6], uuid->Data4[7]);
132 void write_name(FILE *h, const var_t *v)
134 if (is_attr( v->attrs, ATTR_PROPGET ))
135 fprintf(h, "get_" );
136 else if (is_attr( v->attrs, ATTR_PROPPUT ))
137 fprintf(h, "put_" );
138 else if (is_attr( v->attrs, ATTR_PROPPUTREF ))
139 fprintf(h, "putref_" );
140 fprintf(h, "%s", v->name);
143 void write_prefix_name(FILE *h, const char *prefix, const var_t *v)
145 fprintf(h, "%s", prefix);
146 write_name(h, v);
149 static void write_field(FILE *h, var_t *v)
151 if (!v) return;
152 if (v->type) {
153 const char *name = v->name;
154 if (name == NULL) {
155 switch (v->type->type) {
156 case RPC_FC_STRUCT:
157 case RPC_FC_CVSTRUCT:
158 case RPC_FC_CPSTRUCT:
159 case RPC_FC_CSTRUCT:
160 case RPC_FC_PSTRUCT:
161 case RPC_FC_BOGUS_STRUCT:
162 case RPC_FC_ENCAPSULATED_UNION:
163 name = "DUMMYSTRUCTNAME";
164 break;
165 case RPC_FC_NON_ENCAPSULATED_UNION:
166 name = "DUMMYUNIONNAME";
167 break;
168 default:
169 /* ? */
170 break;
173 indent(h, 0);
174 write_type_def_or_decl(h, v->type, TRUE, "%s", name);
175 fprintf(h, ";\n");
179 static void write_fields(FILE *h, var_list_t *fields)
181 var_t *v;
182 if (!fields) return;
183 LIST_FOR_EACH_ENTRY( v, fields, var_t, entry ) write_field(h, v);
186 static void write_enums(FILE *h, var_list_t *enums)
188 var_t *v;
189 if (!enums) return;
190 LIST_FOR_EACH_ENTRY( v, enums, var_t, entry )
192 if (v->name) {
193 indent(h, 0);
194 write_name(h, v);
195 if (v->eval) {
196 fprintf(h, " = ");
197 write_expr(h, v->eval, 0);
200 if (list_next( enums, &v->entry )) fprintf(h, ",\n");
202 fprintf(h, "\n");
205 int needs_space_after(type_t *t)
207 return (t->kind == TKIND_ALIAS
208 || (!is_ptr(t) && (!is_conformant_array(t) || t->declarray)));
211 void write_type_left(FILE *h, type_t *t, int declonly)
213 if (!h) return;
215 if (t->is_const) fprintf(h, "const ");
217 if (t->kind == TKIND_ALIAS) fprintf(h, "%s", t->name);
218 else if (t->declarray) write_type_left(h, t->ref, declonly);
219 else {
220 if (t->sign > 0) fprintf(h, "signed ");
221 else if (t->sign < 0) fprintf(h, "unsigned ");
222 switch (t->type) {
223 case RPC_FC_ENUM16:
224 case RPC_FC_ENUM32:
225 if (!declonly && t->defined && !t->written && !t->ignore) {
226 if (t->name) fprintf(h, "enum %s {\n", t->name);
227 else fprintf(h, "enum {\n");
228 t->written = TRUE;
229 indentation++;
230 write_enums(h, t->fields_or_args);
231 indent(h, -1);
232 fprintf(h, "}");
234 else fprintf(h, "enum %s", t->name ? t->name : "");
235 break;
236 case RPC_FC_STRUCT:
237 case RPC_FC_CVSTRUCT:
238 case RPC_FC_CPSTRUCT:
239 case RPC_FC_CSTRUCT:
240 case RPC_FC_PSTRUCT:
241 case RPC_FC_BOGUS_STRUCT:
242 case RPC_FC_ENCAPSULATED_UNION:
243 if (!declonly && t->defined && !t->written && !t->ignore) {
244 if (t->name) fprintf(h, "struct %s {\n", t->name);
245 else fprintf(h, "struct {\n");
246 t->written = TRUE;
247 indentation++;
248 write_fields(h, t->fields_or_args);
249 indent(h, -1);
250 fprintf(h, "}");
252 else fprintf(h, "struct %s", t->name ? t->name : "");
253 break;
254 case RPC_FC_NON_ENCAPSULATED_UNION:
255 if (!declonly && t->defined && !t->written && !t->ignore) {
256 if (t->name) fprintf(h, "union %s {\n", t->name);
257 else fprintf(h, "union {\n");
258 t->written = TRUE;
259 indentation++;
260 write_fields(h, t->fields_or_args);
261 indent(h, -1);
262 fprintf(h, "}");
264 else fprintf(h, "union %s", t->name ? t->name : "");
265 break;
266 case RPC_FC_RP:
267 case RPC_FC_UP:
268 case RPC_FC_FP:
269 case RPC_FC_OP:
270 case RPC_FC_CARRAY:
271 case RPC_FC_CVARRAY:
272 case RPC_FC_BOGUS_ARRAY:
273 write_type_left(h, t->ref, declonly);
274 fprintf(h, "%s*", needs_space_after(t->ref) ? " " : "");
275 break;
276 default:
277 fprintf(h, "%s", t->name);
282 void write_type_right(FILE *h, type_t *t, int is_field)
284 if (!h) return;
286 if (t->declarray) {
287 if (is_conformant_array(t)) {
288 fprintf(h, "[%s]", is_field ? "1" : "");
289 t = t->ref;
291 for ( ; t->declarray; t = t->ref)
292 fprintf(h, "[%lu]", t->dim);
296 void write_type_v(FILE *h, type_t *t, int is_field, int declonly,
297 const char *fmt, va_list args)
299 type_t *pt;
300 int ptr_level = 0;
302 if (!h) return;
304 for (pt = t; is_ptr(pt); pt = pt->ref, ptr_level++)
307 if (pt->type == RPC_FC_FUNCTION) {
308 int i;
309 const char *callconv = get_attrp(pt->attrs, ATTR_CALLCONV);
310 if (!callconv) callconv = "";
311 write_type_left(h, pt->ref, declonly);
312 fputc(' ', h);
313 if (ptr_level) fputc('(', h);
314 fprintf(h, "%s ", callconv);
315 for (i = 0; i < ptr_level; i++)
316 fputc('*', h);
317 } else
318 write_type_left(h, t, declonly);
319 if (fmt) {
320 if (needs_space_after(t))
321 fputc(' ', h);
322 vfprintf(h, fmt, args);
324 if (pt->type == RPC_FC_FUNCTION) {
325 if (ptr_level) fputc(')', h);
326 fputc('(', h);
327 write_args(h, pt->fields_or_args, NULL, 0, FALSE);
328 fputc(')', h);
329 } else
330 write_type_right(h, t, is_field);
333 void write_type_def_or_decl(FILE *f, type_t *t, int field, const char *fmt, ...)
335 va_list args;
336 va_start(args, fmt);
337 write_type_v(f, t, field, FALSE, fmt, args);
338 va_end(args);
341 void write_type_decl(FILE *f, type_t *t, const char *fmt, ...)
343 va_list args;
344 va_start(args, fmt);
345 write_type_v(f, t, FALSE, TRUE, fmt, args);
346 va_end(args);
349 void write_type_decl_left(FILE *f, type_t *t)
351 write_type_left(f, t, TRUE);
354 static int user_type_registered(const char *name)
356 user_type_t *ut;
357 LIST_FOR_EACH_ENTRY(ut, &user_type_list, user_type_t, entry)
358 if (!strcmp(name, ut->name))
359 return 1;
360 return 0;
363 static int context_handle_registered(const char *name)
365 context_handle_t *ch;
366 LIST_FOR_EACH_ENTRY(ch, &context_handle_list, context_handle_t, entry)
367 if (!strcmp(name, ch->name))
368 return 1;
369 return 0;
372 static int generic_handle_registered(const char *name)
374 generic_handle_t *gh;
375 LIST_FOR_EACH_ENTRY(gh, &generic_handle_list, generic_handle_t, entry)
376 if (!strcmp(name, gh->name))
377 return 1;
378 return 0;
381 /* check for types which require additional prototypes to be generated in the
382 * header */
383 void check_for_additional_prototype_types(const var_list_t *list)
385 const var_t *v;
387 if (!list) return;
388 LIST_FOR_EACH_ENTRY( v, list, const var_t, entry )
390 type_t *type;
391 for (type = v->type; type; type = type->kind == TKIND_ALIAS ? type->orig : type->ref) {
392 const char *name = type->name;
393 if (type->user_types_registered) continue;
394 type->user_types_registered = 1;
395 if (is_attr(type->attrs, ATTR_CONTEXTHANDLE)) {
396 if (!context_handle_registered(name))
398 context_handle_t *ch = xmalloc(sizeof(*ch));
399 ch->name = xstrdup(name);
400 list_add_tail(&context_handle_list, &ch->entry);
402 /* don't carry on parsing fields within this type */
403 break;
405 if (type->type != RPC_FC_BIND_PRIMITIVE && is_attr(type->attrs, ATTR_HANDLE)) {
406 if (!generic_handle_registered(name))
408 generic_handle_t *gh = xmalloc(sizeof(*gh));
409 gh->name = xstrdup(name);
410 list_add_tail(&generic_handle_list, &gh->entry);
412 /* don't carry on parsing fields within this type */
413 break;
415 if (is_attr(type->attrs, ATTR_WIREMARSHAL)) {
416 if (!user_type_registered(name))
418 user_type_t *ut = xmalloc(sizeof *ut);
419 ut->name = xstrdup(name);
420 list_add_tail(&user_type_list, &ut->entry);
422 /* don't carry on parsing fields within this type as we are already
423 * using a wire marshaled type */
424 break;
426 else
428 check_for_additional_prototype_types(type->fields_or_args);
434 void write_user_types(void)
436 user_type_t *ut;
437 LIST_FOR_EACH_ENTRY(ut, &user_type_list, user_type_t, entry)
439 const char *name = ut->name;
440 fprintf(header, "ULONG __RPC_USER %s_UserSize (ULONG *, ULONG, %s *);\n", name, name);
441 fprintf(header, "unsigned char * __RPC_USER %s_UserMarshal (ULONG *, unsigned char *, %s *);\n", name, name);
442 fprintf(header, "unsigned char * __RPC_USER %s_UserUnmarshal(ULONG *, unsigned char *, %s *);\n", name, name);
443 fprintf(header, "void __RPC_USER %s_UserFree (ULONG *, %s *);\n", name, name);
447 void write_context_handle_rundowns(void)
449 context_handle_t *ch;
450 LIST_FOR_EACH_ENTRY(ch, &context_handle_list, context_handle_t, entry)
452 const char *name = ch->name;
453 fprintf(header, "void __RPC_USER %s_rundown(%s);\n", name, name);
457 void write_generic_handle_routines(void)
459 generic_handle_t *gh;
460 LIST_FOR_EACH_ENTRY(gh, &generic_handle_list, generic_handle_t, entry)
462 const char *name = gh->name;
463 fprintf(header, "handle_t __RPC_USER %s_bind(%s);\n", name, name);
464 fprintf(header, "void __RPC_USER %s_unbind(%s, handle_t);\n", name, name);
468 void write_typedef(type_t *type)
470 fprintf(header, "typedef ");
471 write_type_def_or_decl(header, type->orig, FALSE, "%s", type->name);
472 fprintf(header, ";\n");
475 void write_expr(FILE *h, const expr_t *e, int brackets)
477 switch (e->type) {
478 case EXPR_VOID:
479 break;
480 case EXPR_NUM:
481 fprintf(h, "%lu", e->u.lval);
482 break;
483 case EXPR_HEXNUM:
484 fprintf(h, "0x%lx", e->u.lval);
485 break;
486 case EXPR_DOUBLE:
487 fprintf(h, "%#.15g", e->u.dval);
488 break;
489 case EXPR_TRUEFALSE:
490 if (e->u.lval == 0)
491 fprintf(h, "FALSE");
492 else
493 fprintf(h, "TRUE");
494 break;
495 case EXPR_IDENTIFIER:
496 fprintf(h, "%s", e->u.sval);
497 break;
498 case EXPR_NEG:
499 fprintf(h, "-");
500 write_expr(h, e->ref, 1);
501 break;
502 case EXPR_NOT:
503 fprintf(h, "~");
504 write_expr(h, e->ref, 1);
505 break;
506 case EXPR_PPTR:
507 fprintf(h, "*");
508 write_expr(h, e->ref, 1);
509 break;
510 case EXPR_CAST:
511 fprintf(h, "(");
512 write_type_decl(h, e->u.tref, NULL);
513 fprintf(h, ")");
514 write_expr(h, e->ref, 1);
515 break;
516 case EXPR_SIZEOF:
517 fprintf(h, "sizeof(");
518 write_type_decl(h, e->u.tref, NULL);
519 fprintf(h, ")");
520 break;
521 case EXPR_SHL:
522 case EXPR_SHR:
523 case EXPR_MOD:
524 case EXPR_MUL:
525 case EXPR_DIV:
526 case EXPR_ADD:
527 case EXPR_SUB:
528 case EXPR_AND:
529 case EXPR_OR:
530 case EXPR_MEMBERPTR:
531 case EXPR_MEMBER:
532 if (brackets) fprintf(h, "(");
533 write_expr(h, e->ref, 1);
534 switch (e->type) {
535 case EXPR_SHL: fprintf(h, " << "); break;
536 case EXPR_SHR: fprintf(h, " >> "); break;
537 case EXPR_MOD: fprintf(h, " %% "); break;
538 case EXPR_MUL: fprintf(h, " * "); break;
539 case EXPR_DIV: fprintf(h, " / "); break;
540 case EXPR_ADD: fprintf(h, " + "); break;
541 case EXPR_SUB: fprintf(h, " - "); break;
542 case EXPR_AND: fprintf(h, " & "); break;
543 case EXPR_OR: fprintf(h, " | "); break;
544 case EXPR_MEMBERPTR: fprintf(h, "->"); break;
545 case EXPR_MEMBER: fprintf(h, "."); break;
546 default: break;
548 write_expr(h, e->u.ext, 1);
549 if (brackets) fprintf(h, ")");
550 break;
551 case EXPR_COND:
552 if (brackets) fprintf(h, "(");
553 write_expr(h, e->ref, 1);
554 fprintf(h, " ? ");
555 write_expr(h, e->u.ext, 1);
556 fprintf(h, " : ");
557 write_expr(h, e->ext2, 1);
558 if (brackets) fprintf(h, ")");
559 break;
560 case EXPR_ADDRESSOF:
561 fprintf(h, "&");
562 write_expr(h, e->ref, 1);
563 break;
564 case EXPR_ARRAY:
565 if (brackets) fprintf(h, "(");
566 write_expr(h, e->ref, 1);
567 fprintf(h, "[");
568 write_expr(h, e->u.ext, 1);
569 fprintf(h, "]");
570 if (brackets) fprintf(h, ")");
571 break;
575 void write_constdef(const var_t *v)
577 fprintf(header, "#define %s (", v->name);
578 write_expr(header, v->eval, 0);
579 fprintf(header, ")\n\n");
582 void write_externdef(const var_t *v)
584 fprintf(header, "extern const ");
585 write_type_def_or_decl(header, v->type, FALSE, "%s", v->name);
586 fprintf(header, ";\n\n");
589 void write_library(const char *name, const attr_list_t *attr)
591 const UUID *uuid = get_attrp(attr, ATTR_UUID);
592 fprintf(header, "\n");
593 write_guid(header, "LIBID", name, uuid);
594 fprintf(header, "\n");
598 const var_t* get_explicit_handle_var(const func_t* func)
600 const var_t* var;
602 if (!func->args)
603 return NULL;
605 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
606 if (var->type->type == RPC_FC_BIND_PRIMITIVE)
607 return var;
609 return NULL;
612 const type_t* get_explicit_generic_handle_type(const var_t* var)
614 const type_t *t;
615 for (t = var->type; is_ptr(t); t = t->ref)
616 if (t->type != RPC_FC_BIND_PRIMITIVE && is_attr(t->attrs, ATTR_HANDLE))
617 return t;
618 return NULL;
621 const var_t* get_explicit_generic_handle_var(const func_t* func)
623 const var_t* var;
625 if (!func->args)
626 return NULL;
628 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
629 if (get_explicit_generic_handle_type(var))
630 return var;
632 return NULL;
635 const var_t* get_context_handle_var(const func_t* func)
637 const var_t* var;
639 if (!func->args)
640 return NULL;
642 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
643 if (is_attr(var->attrs, ATTR_IN) && is_context_handle(var->type))
644 return var;
646 return NULL;
649 int has_out_arg_or_return(const func_t *func)
651 const var_t *var;
653 if (!is_void(get_func_return_type(func)))
654 return 1;
656 if (!func->args)
657 return 0;
659 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
660 if (is_attr(var->attrs, ATTR_OUT))
661 return 1;
663 return 0;
667 /********** INTERFACES **********/
669 int is_object(const attr_list_t *list)
671 const attr_t *attr;
672 if (list) LIST_FOR_EACH_ENTRY( attr, list, const attr_t, entry )
673 if (attr->type == ATTR_OBJECT || attr->type == ATTR_ODL) return 1;
674 return 0;
677 int is_local(const attr_list_t *a)
679 return is_attr(a, ATTR_LOCAL);
682 const var_t *is_callas(const attr_list_t *a)
684 return get_attrp(a, ATTR_CALLAS);
687 static void write_method_macro(const type_t *iface, const char *name)
689 const func_t *cur;
691 if (iface->ref) write_method_macro(iface->ref, name);
693 if (!iface->funcs) return;
695 fprintf(header, "/*** %s methods ***/\n", iface->name);
696 LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
698 var_t *def = cur->def;
699 if (!is_callas(def->attrs)) {
700 const var_t *arg;
702 fprintf(header, "#define %s_", name);
703 write_name(header,def);
704 fprintf(header, "(This");
705 if (cur->args)
706 LIST_FOR_EACH_ENTRY( arg, cur->args, const var_t, entry )
707 fprintf(header, ",%s", arg->name);
708 fprintf(header, ") ");
710 fprintf(header, "(This)->lpVtbl->");
711 write_name(header, def);
712 fprintf(header, "(This");
713 if (cur->args)
714 LIST_FOR_EACH_ENTRY( arg, cur->args, const var_t, entry )
715 fprintf(header, ",%s", arg->name);
716 fprintf(header, ")\n");
721 void write_args(FILE *h, const var_list_t *args, const char *name, int method, int do_indent)
723 const var_t *arg;
724 int count = 0;
726 if (do_indent)
728 indentation++;
729 indent(h, 0);
731 if (method == 1) {
732 fprintf(h, "%s* This", name);
733 count++;
735 if (args) LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry ) {
736 if (count) {
737 if (do_indent)
739 fprintf(h, ",\n");
740 indent(h, 0);
742 else fprintf(h, ",");
744 write_type_decl(h, arg->type, "%s", arg->name);
745 count++;
747 if (do_indent) indentation--;
750 static void write_cpp_method_def(const type_t *iface)
752 const func_t *cur;
754 if (!iface->funcs) return;
756 LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
758 var_t *def = cur->def;
759 if (!is_callas(def->attrs)) {
760 const char *callconv = get_attrp(def->type->attrs, ATTR_CALLCONV);
761 if (!callconv) callconv = "";
762 indent(header, 0);
763 fprintf(header, "virtual ");
764 write_type_decl_left(header, get_func_return_type(cur));
765 fprintf(header, " %s ", callconv);
766 write_name(header, def);
767 fprintf(header, "(\n");
768 write_args(header, cur->args, iface->name, 2, TRUE);
769 fprintf(header, ") = 0;\n");
770 fprintf(header, "\n");
775 static void do_write_c_method_def(const type_t *iface, const char *name)
777 const func_t *cur;
779 if (iface->ref) do_write_c_method_def(iface->ref, name);
781 if (!iface->funcs) return;
782 indent(header, 0);
783 fprintf(header, "/*** %s methods ***/\n", iface->name);
784 LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
786 const var_t *def = cur->def;
787 if (!is_callas(def->attrs)) {
788 const char *callconv = get_attrp(def->type->attrs, ATTR_CALLCONV);
789 if (!callconv) callconv = "";
790 indent(header, 0);
791 write_type_decl_left(header, get_func_return_type(cur));
792 fprintf(header, " (%s *", callconv);
793 write_name(header, def);
794 fprintf(header, ")(\n");
795 write_args(header, cur->args, name, 1, TRUE);
796 fprintf(header, ");\n");
797 fprintf(header, "\n");
802 static void write_c_method_def(const type_t *iface)
804 do_write_c_method_def(iface, iface->name);
807 static void write_c_disp_method_def(const type_t *iface)
809 do_write_c_method_def(iface->ref, iface->name);
812 static void write_method_proto(const type_t *iface)
814 const func_t *cur;
816 if (!iface->funcs) return;
817 LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
819 const var_t *def = cur->def;
821 if (!is_local(def->attrs)) {
822 const char *callconv = get_attrp(def->type->attrs, ATTR_CALLCONV);
823 if (!callconv) callconv = "";
824 /* proxy prototype */
825 write_type_decl_left(header, get_func_return_type(cur));
826 fprintf(header, " %s %s_", callconv, iface->name);
827 write_name(header, def);
828 fprintf(header, "_Proxy(\n");
829 write_args(header, cur->args, iface->name, 1, TRUE);
830 fprintf(header, ");\n");
831 /* stub prototype */
832 fprintf(header, "void __RPC_STUB %s_", iface->name);
833 write_name(header,def);
834 fprintf(header, "_Stub(\n");
835 fprintf(header, " IRpcStubBuffer* This,\n");
836 fprintf(header, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
837 fprintf(header, " PRPC_MESSAGE pRpcMessage,\n");
838 fprintf(header, " DWORD* pdwStubPhase);\n");
843 void write_locals(FILE *fp, const type_t *iface, int body)
845 static const char comment[]
846 = "/* WIDL-generated stub. You must provide an implementation for this. */";
847 const func_list_t *funcs = iface->funcs;
848 const func_t *cur;
850 if (!is_object(iface->attrs) || !funcs)
851 return;
853 LIST_FOR_EACH_ENTRY(cur, funcs, const func_t, entry) {
854 const var_t *def = cur->def;
855 const var_t *cas = is_callas(def->attrs);
857 if (cas) {
858 const func_t *m;
859 LIST_FOR_EACH_ENTRY(m, iface->funcs, const func_t, entry)
860 if (!strcmp(m->def->name, cas->name))
861 break;
862 if (&m->entry != iface->funcs) {
863 const var_t *mdef = m->def;
864 /* proxy prototype - use local prototype */
865 write_type_decl_left(fp, get_func_return_type(m));
866 fprintf(fp, " CALLBACK %s_", iface->name);
867 write_name(fp, mdef);
868 fprintf(fp, "_Proxy(\n");
869 write_args(fp, m->args, iface->name, 1, TRUE);
870 fprintf(fp, ")");
871 if (body) {
872 type_t *rt = get_func_return_type(m);
873 fprintf(fp, "\n{\n");
874 fprintf(fp, " %s\n", comment);
875 if (rt->name && strcmp(rt->name, "HRESULT") == 0)
876 fprintf(fp, " return E_NOTIMPL;\n");
877 else if (rt->type) {
878 fprintf(fp, " ");
879 write_type_decl(fp, rt, "rv");
880 fprintf(fp, ";\n");
881 fprintf(fp, " memset(&rv, 0, sizeof rv);\n");
882 fprintf(fp, " return rv;\n");
884 fprintf(fp, "}\n\n");
886 else
887 fprintf(fp, ";\n");
888 /* stub prototype - use remotable prototype */
889 write_type_decl_left(fp, get_func_return_type(cur));
890 fprintf(fp, " __RPC_STUB %s_", iface->name);
891 write_name(fp, mdef);
892 fprintf(fp, "_Stub(\n");
893 write_args(fp, cur->args, iface->name, 1, TRUE);
894 fprintf(fp, ")");
895 if (body)
896 /* Remotable methods must all return HRESULTs. */
897 fprintf(fp, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment);
898 else
899 fprintf(fp, ";\n");
901 else
902 error_loc("invalid call_as attribute (%s -> %s)\n", def->name, cas->name);
907 static void write_function_proto(const type_t *iface, const func_t *fun, const char *prefix)
909 var_t *def = fun->def;
910 const char *callconv = get_attrp(def->type->attrs, ATTR_CALLCONV);
912 /* FIXME: do we need to handle call_as? */
913 write_type_decl_left(header, get_func_return_type(fun));
914 fprintf(header, " ");
915 if (callconv) fprintf(header, "%s ", callconv);
916 write_prefix_name(header, prefix, def);
917 fprintf(header, "(\n");
918 if (fun->args)
919 write_args(header, fun->args, iface->name, 0, TRUE);
920 else
921 fprintf(header, " void");
922 fprintf(header, ");\n\n");
925 static void write_function_protos(const type_t *iface)
927 const func_t *cur;
928 int prefixes_differ = strcmp(prefix_client, prefix_server);
930 if (!iface->funcs) return;
931 LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
933 if (prefixes_differ) {
934 fprintf(header, "/* client prototype */\n");
935 write_function_proto(iface, cur, prefix_client);
936 fprintf(header, "/* server prototype */\n");
938 write_function_proto(iface, cur, prefix_server);
942 void write_forward(type_t *iface)
944 /* C/C++ forwards should only be written for object interfaces, so if we
945 * have a full definition we only write one if we find [object] among the
946 * attributes - however, if we don't have a full definition at this point
947 * (i.e. this is an IDL forward), then we also assume that it is an object
948 * interface, since non-object interfaces shouldn't need forwards */
949 if ((!iface->defined || is_object(iface->attrs) || is_attr(iface->attrs, ATTR_DISPINTERFACE))
950 && !iface->written) {
951 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", iface->name);
952 fprintf(header, "#define __%s_FWD_DEFINED__\n", iface->name);
953 fprintf(header, "typedef interface %s %s;\n", iface->name, iface->name);
954 fprintf(header, "#endif\n\n" );
955 iface->written = TRUE;
959 static void write_iface_guid(const type_t *iface)
961 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
962 write_guid(header, "IID", iface->name, uuid);
965 static void write_dispiface_guid(const type_t *iface)
967 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
968 write_guid(header, "DIID", iface->name, uuid);
971 static void write_coclass_guid(type_t *cocl)
973 const UUID *uuid = get_attrp(cocl->attrs, ATTR_UUID);
974 write_guid(header, "CLSID", cocl->name, uuid);
977 static void write_com_interface(type_t *iface)
979 if (!iface->funcs && !iface->ref) {
980 parser_warning("%s has no methods\n", iface->name);
981 return;
984 fprintf(header, "/*****************************************************************************\n");
985 fprintf(header, " * %s interface\n", iface->name);
986 fprintf(header, " */\n");
987 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
988 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
989 write_iface_guid(iface);
990 write_forward(iface);
991 /* C++ interface */
992 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
993 if (iface->ref)
995 fprintf(header, "interface %s : public %s\n", iface->name, iface->ref->name);
996 fprintf(header, "{\n");
997 indentation++;
998 write_cpp_method_def(iface);
999 indentation--;
1000 fprintf(header, "};\n");
1002 else
1004 fprintf(header, "interface %s\n", iface->name);
1005 fprintf(header, "{\n");
1006 fprintf(header, " BEGIN_INTERFACE\n");
1007 fprintf(header, "\n");
1008 indentation++;
1009 write_cpp_method_def(iface);
1010 indentation--;
1011 fprintf(header, " END_INTERFACE\n");
1012 fprintf(header, "};\n");
1014 fprintf(header, "#else\n");
1015 /* C interface */
1016 fprintf(header, "typedef struct %sVtbl {\n", iface->name);
1017 indentation++;
1018 fprintf(header, " BEGIN_INTERFACE\n");
1019 fprintf(header, "\n");
1020 write_c_method_def(iface);
1021 indentation--;
1022 fprintf(header, " END_INTERFACE\n");
1023 fprintf(header, "} %sVtbl;\n", iface->name);
1024 fprintf(header, "interface %s {\n", iface->name);
1025 fprintf(header, " CONST_VTBL %sVtbl* lpVtbl;\n", iface->name);
1026 fprintf(header, "};\n");
1027 fprintf(header, "\n");
1028 fprintf(header, "#ifdef COBJMACROS\n");
1029 write_method_macro(iface, iface->name);
1030 fprintf(header, "#endif\n");
1031 fprintf(header, "\n");
1032 fprintf(header, "#endif\n");
1033 fprintf(header, "\n");
1034 write_method_proto(iface);
1035 write_locals(header, iface, FALSE);
1036 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
1039 static void write_rpc_interface(const type_t *iface)
1041 unsigned int ver = get_attrv(iface->attrs, ATTR_VERSION);
1042 const char *var = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
1043 static int allocate_written = 0;
1045 if (!allocate_written)
1047 allocate_written = 1;
1048 fprintf(header, "void * __RPC_USER MIDL_user_allocate(size_t);\n");
1049 fprintf(header, "void __RPC_USER MIDL_user_free(void *);\n\n");
1052 fprintf(header, "/*****************************************************************************\n");
1053 fprintf(header, " * %s interface (v%d.%d)\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1054 fprintf(header, " */\n");
1055 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
1056 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
1057 if (iface->funcs)
1059 write_iface_guid(iface);
1060 if (var) fprintf(header, "extern handle_t %s;\n", var);
1061 if (old_names)
1063 fprintf(header, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client, iface->name);
1064 fprintf(header, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server, iface->name);
1066 else
1068 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
1069 prefix_client, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1070 fprintf(header, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
1071 prefix_server, iface->name, MAJORVERSION(ver), MINORVERSION(ver));
1073 write_function_protos(iface);
1075 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
1077 /* FIXME: server/client code */
1080 void write_interface(type_t *iface)
1082 if (is_object(iface->attrs))
1083 write_com_interface(iface);
1084 else
1085 write_rpc_interface(iface);
1088 void write_dispinterface(type_t *iface)
1090 fprintf(header, "/*****************************************************************************\n");
1091 fprintf(header, " * %s dispinterface\n", iface->name);
1092 fprintf(header, " */\n");
1093 fprintf(header,"#ifndef __%s_DISPINTERFACE_DEFINED__\n", iface->name);
1094 fprintf(header,"#define __%s_DISPINTERFACE_DEFINED__\n\n", iface->name);
1095 write_dispiface_guid(iface);
1096 write_forward(iface);
1097 /* C++ interface */
1098 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
1099 fprintf(header, "interface %s : public %s\n", iface->name, iface->ref->name);
1100 fprintf(header, "{\n");
1101 fprintf(header, "};\n");
1102 fprintf(header, "#else\n");
1103 /* C interface */
1104 fprintf(header, "typedef struct %sVtbl {\n", iface->name);
1105 indentation++;
1106 fprintf(header, " BEGIN_INTERFACE\n");
1107 fprintf(header, "\n");
1108 write_c_disp_method_def(iface);
1109 indentation--;
1110 fprintf(header, " END_INTERFACE\n");
1111 fprintf(header, "} %sVtbl;\n", iface->name);
1112 fprintf(header, "interface %s {\n", iface->name);
1113 fprintf(header, " CONST_VTBL %sVtbl* lpVtbl;\n", iface->name);
1114 fprintf(header, "};\n");
1115 fprintf(header, "\n");
1116 fprintf(header, "#ifdef COBJMACROS\n");
1117 write_method_macro(iface->ref, iface->name);
1118 fprintf(header, "#endif\n");
1119 fprintf(header, "\n");
1120 fprintf(header, "#endif\n");
1121 fprintf(header, "\n");
1122 fprintf(header,"#endif /* __%s_DISPINTERFACE_DEFINED__ */\n\n", iface->name);
1125 void write_coclass(type_t *cocl)
1127 fprintf(header, "/*****************************************************************************\n");
1128 fprintf(header, " * %s coclass\n", cocl->name);
1129 fprintf(header, " */\n\n");
1130 write_coclass_guid(cocl);
1131 fprintf(header, "\n");
1134 void write_coclass_forward(type_t *cocl)
1136 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", cocl->name);
1137 fprintf(header, "#define __%s_FWD_DEFINED__\n", cocl->name);
1138 fprintf(header, "typedef struct %s %s;\n", cocl->name, cocl->name);
1139 fprintf(header, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl->name );