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
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
)
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
))
58 type_t
*type
= var
->type
;
61 if (is_attr(type
->attrs
, t
))
63 else if (type
->kind
== TKIND_ALIAS
)
65 else if (is_ptr(type
))
72 int is_aliaschain_attr(const type_t
*type
, enum attr_type attr
)
74 const type_t
*t
= type
;
77 if (is_attr(t
->attrs
, attr
))
79 else if (t
->kind
== TKIND_ALIAS
)
85 int is_attr(const attr_list_t
*list
, enum attr_type t
)
88 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
89 if (attr
->type
== t
) return 1;
93 void *get_attrp(const attr_list_t
*list
, enum attr_type t
)
96 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
97 if (attr
->type
== t
) return attr
->u
.pval
;
101 unsigned long get_attrv(const attr_list_t
*list
, enum attr_type t
)
104 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
105 if (attr
->type
== t
) return attr
->u
.ival
;
109 int is_void(const type_t
*t
)
111 if (!t
->type
&& !t
->ref
) return 1;
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
)
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
))
136 else if (is_attr( v
->attrs
, ATTR_PROPPUT
))
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
);
149 static void write_field(FILE *h
, var_t
*v
)
153 const char *name
= v
->name
;
155 switch (v
->type
->type
) {
157 case RPC_FC_CVSTRUCT
:
158 case RPC_FC_CPSTRUCT
:
161 case RPC_FC_BOGUS_STRUCT
:
162 case RPC_FC_ENCAPSULATED_UNION
:
163 name
= "DUMMYSTRUCTNAME";
165 case RPC_FC_NON_ENCAPSULATED_UNION
:
166 name
= "DUMMYUNIONNAME";
174 write_type_def_or_decl(h
, v
->type
, TRUE
, "%s", name
);
179 static void write_fields(FILE *h
, var_list_t
*fields
)
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
)
190 LIST_FOR_EACH_ENTRY( v
, enums
, var_t
, entry
)
197 write_expr(h
, v
->eval
, 0);
200 if (list_next( enums
, &v
->entry
)) 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
)
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
);
220 if (t
->sign
> 0) fprintf(h
, "signed ");
221 else if (t
->sign
< 0) fprintf(h
, "unsigned ");
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");
230 write_enums(h
, t
->fields_or_args
);
234 else fprintf(h
, "enum %s", t
->name
? t
->name
: "");
237 case RPC_FC_CVSTRUCT
:
238 case RPC_FC_CPSTRUCT
:
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");
248 write_fields(h
, t
->fields_or_args
);
252 else fprintf(h
, "struct %s", t
->name
? t
->name
: "");
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");
260 write_fields(h
, t
->fields_or_args
);
264 else fprintf(h
, "union %s", t
->name
? t
->name
: "");
272 case RPC_FC_BOGUS_ARRAY
:
273 write_type_left(h
, t
->ref
, declonly
);
274 fprintf(h
, "%s*", needs_space_after(t
->ref
) ? " " : "");
277 fprintf(h
, "%s", t
->name
);
282 void write_type_right(FILE *h
, type_t
*t
, int is_field
)
287 if (is_conformant_array(t
)) {
288 fprintf(h
, "[%s]", is_field
? "1" : "");
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
)
304 for (pt
= t
; is_ptr(pt
); pt
= pt
->ref
, ptr_level
++)
307 if (pt
->type
== RPC_FC_FUNCTION
) {
309 const char *callconv
= get_attrp(pt
->attrs
, ATTR_CALLCONV
);
310 if (!callconv
) callconv
= "";
311 write_type_left(h
, pt
->ref
, declonly
);
313 if (ptr_level
) fputc('(', h
);
314 fprintf(h
, "%s ", callconv
);
315 for (i
= 0; i
< ptr_level
; i
++)
318 write_type_left(h
, t
, declonly
);
320 if (needs_space_after(t
))
322 vfprintf(h
, fmt
, args
);
324 if (pt
->type
== RPC_FC_FUNCTION
) {
325 if (ptr_level
) fputc(')', h
);
327 write_args(h
, pt
->fields_or_args
, NULL
, 0, FALSE
);
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
, ...)
337 write_type_v(f
, t
, field
, FALSE
, fmt
, args
);
341 void write_type_decl(FILE *f
, type_t
*t
, const char *fmt
, ...)
345 write_type_v(f
, t
, FALSE
, TRUE
, fmt
, 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
)
357 LIST_FOR_EACH_ENTRY(ut
, &user_type_list
, user_type_t
, entry
)
358 if (!strcmp(name
, ut
->name
))
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
))
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
))
381 /* check for types which require additional prototypes to be generated in the
383 void check_for_additional_prototype_types(const var_list_t
*list
)
388 LIST_FOR_EACH_ENTRY( v
, list
, const var_t
, entry
)
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 */
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 */
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 */
428 check_for_additional_prototype_types(type
->fields_or_args
);
434 void write_user_types(void)
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
)
481 fprintf(h
, "%lu", e
->u
.lval
);
484 fprintf(h
, "0x%lx", e
->u
.lval
);
487 fprintf(h
, "%#.15g", e
->u
.dval
);
495 case EXPR_IDENTIFIER
:
496 fprintf(h
, "%s", e
->u
.sval
);
500 write_expr(h
, e
->ref
, 1);
504 write_expr(h
, e
->ref
, 1);
508 write_expr(h
, e
->ref
, 1);
512 write_type_decl(h
, e
->u
.tref
, NULL
);
514 write_expr(h
, e
->ref
, 1);
517 fprintf(h
, "sizeof(");
518 write_type_decl(h
, e
->u
.tref
, NULL
);
529 if (brackets
) fprintf(h
, "(");
530 write_expr(h
, e
->ref
, 1);
532 case EXPR_SHL
: fprintf(h
, " << "); break;
533 case EXPR_SHR
: fprintf(h
, " >> "); break;
534 case EXPR_MUL
: fprintf(h
, " * "); break;
535 case EXPR_DIV
: fprintf(h
, " / "); break;
536 case EXPR_ADD
: fprintf(h
, " + "); break;
537 case EXPR_SUB
: fprintf(h
, " - "); break;
538 case EXPR_AND
: fprintf(h
, " & "); break;
539 case EXPR_OR
: fprintf(h
, " | "); break;
542 write_expr(h
, e
->u
.ext
, 1);
543 if (brackets
) fprintf(h
, ")");
546 if (brackets
) fprintf(h
, "(");
547 write_expr(h
, e
->ref
, 1);
549 write_expr(h
, e
->u
.ext
, 1);
551 write_expr(h
, e
->ext2
, 1);
552 if (brackets
) fprintf(h
, ")");
556 write_expr(h
, e
->ref
, 1);
561 void write_constdef(const var_t
*v
)
563 fprintf(header
, "#define %s (", v
->name
);
564 write_expr(header
, v
->eval
, 0);
565 fprintf(header
, ")\n\n");
568 void write_externdef(const var_t
*v
)
570 fprintf(header
, "extern const ");
571 write_type_def_or_decl(header
, v
->type
, FALSE
, "%s", v
->name
);
572 fprintf(header
, ";\n\n");
575 void write_library(const char *name
, const attr_list_t
*attr
)
577 const UUID
*uuid
= get_attrp(attr
, ATTR_UUID
);
578 fprintf(header
, "\n");
579 write_guid(header
, "LIBID", name
, uuid
);
580 fprintf(header
, "\n");
584 const var_t
* get_explicit_handle_var(const func_t
* func
)
591 LIST_FOR_EACH_ENTRY( var
, func
->args
, const var_t
, entry
)
592 if (var
->type
->type
== RPC_FC_BIND_PRIMITIVE
)
598 const type_t
* get_explicit_generic_handle_type(const var_t
* var
)
601 for (t
= var
->type
; is_ptr(t
); t
= t
->ref
)
602 if (t
->type
!= RPC_FC_BIND_PRIMITIVE
&& is_attr(t
->attrs
, ATTR_HANDLE
))
607 const var_t
* get_explicit_generic_handle_var(const func_t
* func
)
614 LIST_FOR_EACH_ENTRY( var
, func
->args
, const var_t
, entry
)
615 if (get_explicit_generic_handle_type(var
))
621 int has_out_arg_or_return(const func_t
*func
)
625 if (!is_void(get_func_return_type(func
)))
631 LIST_FOR_EACH_ENTRY( var
, func
->args
, const var_t
, entry
)
632 if (is_attr(var
->attrs
, ATTR_OUT
))
639 /********** INTERFACES **********/
641 int is_object(const attr_list_t
*list
)
644 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
645 if (attr
->type
== ATTR_OBJECT
|| attr
->type
== ATTR_ODL
) return 1;
649 int is_local(const attr_list_t
*a
)
651 return is_attr(a
, ATTR_LOCAL
);
654 const var_t
*is_callas(const attr_list_t
*a
)
656 return get_attrp(a
, ATTR_CALLAS
);
659 static void write_method_macro(const type_t
*iface
, const char *name
)
663 if (iface
->ref
) write_method_macro(iface
->ref
, name
);
665 if (!iface
->funcs
) return;
667 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
668 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
670 var_t
*def
= cur
->def
;
671 if (!is_callas(def
->attrs
)) {
674 fprintf(header
, "#define %s_", name
);
675 write_name(header
,def
);
676 fprintf(header
, "(This");
678 LIST_FOR_EACH_ENTRY( arg
, cur
->args
, const var_t
, entry
)
679 fprintf(header
, ",%s", arg
->name
);
680 fprintf(header
, ") ");
682 fprintf(header
, "(This)->lpVtbl->");
683 write_name(header
, def
);
684 fprintf(header
, "(This");
686 LIST_FOR_EACH_ENTRY( arg
, cur
->args
, const var_t
, entry
)
687 fprintf(header
, ",%s", arg
->name
);
688 fprintf(header
, ")\n");
693 void write_args(FILE *h
, const var_list_t
*args
, const char *name
, int method
, int do_indent
)
704 fprintf(h
, "%s* This", name
);
707 if (args
) LIST_FOR_EACH_ENTRY( arg
, args
, const var_t
, entry
) {
714 else fprintf(h
, ",");
716 write_type_decl(h
, arg
->type
, "%s", arg
->name
);
719 if (do_indent
) indentation
--;
722 static void write_cpp_method_def(const type_t
*iface
)
726 if (!iface
->funcs
) return;
728 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
730 var_t
*def
= cur
->def
;
731 if (!is_callas(def
->attrs
)) {
732 const char *callconv
= get_attrp(def
->type
->attrs
, ATTR_CALLCONV
);
733 if (!callconv
) callconv
= "";
735 fprintf(header
, "virtual ");
736 write_type_decl_left(header
, get_func_return_type(cur
));
737 fprintf(header
, " %s ", callconv
);
738 write_name(header
, def
);
739 fprintf(header
, "(\n");
740 write_args(header
, cur
->args
, iface
->name
, 2, TRUE
);
741 fprintf(header
, ") = 0;\n");
742 fprintf(header
, "\n");
747 static void do_write_c_method_def(const type_t
*iface
, const char *name
)
751 if (iface
->ref
) do_write_c_method_def(iface
->ref
, name
);
753 if (!iface
->funcs
) return;
755 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
756 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
758 const 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
= "";
763 write_type_decl_left(header
, get_func_return_type(cur
));
764 fprintf(header
, " (%s *", callconv
);
765 write_name(header
, def
);
766 fprintf(header
, ")(\n");
767 write_args(header
, cur
->args
, name
, 1, TRUE
);
768 fprintf(header
, ");\n");
769 fprintf(header
, "\n");
774 static void write_c_method_def(const type_t
*iface
)
776 do_write_c_method_def(iface
, iface
->name
);
779 static void write_c_disp_method_def(const type_t
*iface
)
781 do_write_c_method_def(iface
->ref
, iface
->name
);
784 static void write_method_proto(const type_t
*iface
)
788 if (!iface
->funcs
) return;
789 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
791 const var_t
*def
= cur
->def
;
793 if (!is_local(def
->attrs
)) {
794 const char *callconv
= get_attrp(def
->type
->attrs
, ATTR_CALLCONV
);
795 if (!callconv
) callconv
= "";
796 /* proxy prototype */
797 write_type_decl_left(header
, get_func_return_type(cur
));
798 fprintf(header
, " %s %s_", callconv
, iface
->name
);
799 write_name(header
, def
);
800 fprintf(header
, "_Proxy(\n");
801 write_args(header
, cur
->args
, iface
->name
, 1, TRUE
);
802 fprintf(header
, ");\n");
804 fprintf(header
, "void __RPC_STUB %s_", iface
->name
);
805 write_name(header
,def
);
806 fprintf(header
, "_Stub(\n");
807 fprintf(header
, " IRpcStubBuffer* This,\n");
808 fprintf(header
, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
809 fprintf(header
, " PRPC_MESSAGE pRpcMessage,\n");
810 fprintf(header
, " DWORD* pdwStubPhase);\n");
815 void write_locals(FILE *fp
, const type_t
*iface
, int body
)
817 static const char comment
[]
818 = "/* WIDL-generated stub. You must provide an implementation for this. */";
819 const func_list_t
*funcs
= iface
->funcs
;
822 if (!is_object(iface
->attrs
) || !funcs
)
825 LIST_FOR_EACH_ENTRY(cur
, funcs
, const func_t
, entry
) {
826 const var_t
*def
= cur
->def
;
827 const var_t
*cas
= is_callas(def
->attrs
);
831 LIST_FOR_EACH_ENTRY(m
, iface
->funcs
, const func_t
, entry
)
832 if (!strcmp(m
->def
->name
, cas
->name
))
834 if (&m
->entry
!= iface
->funcs
) {
835 const var_t
*mdef
= m
->def
;
836 /* proxy prototype - use local prototype */
837 write_type_decl_left(fp
, get_func_return_type(m
));
838 fprintf(fp
, " CALLBACK %s_", iface
->name
);
839 write_name(fp
, mdef
);
840 fprintf(fp
, "_Proxy(\n");
841 write_args(fp
, m
->args
, iface
->name
, 1, TRUE
);
844 type_t
*rt
= get_func_return_type(m
);
845 fprintf(fp
, "\n{\n");
846 fprintf(fp
, " %s\n", comment
);
847 if (rt
->name
&& strcmp(rt
->name
, "HRESULT") == 0)
848 fprintf(fp
, " return E_NOTIMPL;\n");
851 write_type_decl(fp
, rt
, "rv");
853 fprintf(fp
, " memset(&rv, 0, sizeof rv);\n");
854 fprintf(fp
, " return rv;\n");
856 fprintf(fp
, "}\n\n");
860 /* stub prototype - use remotable prototype */
861 write_type_decl_left(fp
, get_func_return_type(cur
));
862 fprintf(fp
, " __RPC_STUB %s_", iface
->name
);
863 write_name(fp
, mdef
);
864 fprintf(fp
, "_Stub(\n");
865 write_args(fp
, cur
->args
, iface
->name
, 1, TRUE
);
868 /* Remotable methods must all return HRESULTs. */
869 fprintf(fp
, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment
);
874 error_loc("invalid call_as attribute (%s -> %s)\n", def
->name
, cas
->name
);
879 static void write_function_proto(const type_t
*iface
, const func_t
*fun
, const char *prefix
)
881 var_t
*def
= fun
->def
;
882 const char *callconv
= get_attrp(def
->type
->attrs
, ATTR_CALLCONV
);
884 /* FIXME: do we need to handle call_as? */
885 write_type_decl_left(header
, get_func_return_type(fun
));
886 fprintf(header
, " ");
887 if (callconv
) fprintf(header
, "%s ", callconv
);
888 write_prefix_name(header
, prefix
, def
);
889 fprintf(header
, "(\n");
891 write_args(header
, fun
->args
, iface
->name
, 0, TRUE
);
893 fprintf(header
, " void");
894 fprintf(header
, ");\n\n");
897 static void write_function_protos(const type_t
*iface
)
899 const char *implicit_handle
= get_attrp(iface
->attrs
, ATTR_IMPLICIT_HANDLE
);
900 int explicit_handle
= is_attr(iface
->attrs
, ATTR_EXPLICIT_HANDLE
);
901 const var_t
* explicit_handle_var
;
903 int prefixes_differ
= strcmp(prefix_client
, prefix_server
);
905 if (!iface
->funcs
) return;
906 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
908 var_t
*def
= cur
->def
;
910 /* check for a defined binding handle */
911 explicit_handle_var
= get_explicit_handle_var(cur
);
912 if (explicit_handle
) {
913 if (!explicit_handle_var
) {
914 error("%s() does not define an explicit binding handle!\n", def
->name
);
917 } else if (implicit_handle
) {
918 if (explicit_handle_var
) {
919 error("%s() must not define a binding handle!\n", def
->name
);
924 if (prefixes_differ
) {
925 fprintf(header
, "/* client prototype */\n");
926 write_function_proto(iface
, cur
, prefix_client
);
927 fprintf(header
, "/* server prototype */\n");
929 write_function_proto(iface
, cur
, prefix_server
);
933 void write_forward(type_t
*iface
)
935 /* C/C++ forwards should only be written for object interfaces, so if we
936 * have a full definition we only write one if we find [object] among the
937 * attributes - however, if we don't have a full definition at this point
938 * (i.e. this is an IDL forward), then we also assume that it is an object
939 * interface, since non-object interfaces shouldn't need forwards */
940 if ((!iface
->defined
|| is_object(iface
->attrs
) || is_attr(iface
->attrs
, ATTR_DISPINTERFACE
))
941 && !iface
->written
) {
942 fprintf(header
, "#ifndef __%s_FWD_DEFINED__\n", iface
->name
);
943 fprintf(header
, "#define __%s_FWD_DEFINED__\n", iface
->name
);
944 fprintf(header
, "typedef interface %s %s;\n", iface
->name
, iface
->name
);
945 fprintf(header
, "#endif\n\n" );
946 iface
->written
= TRUE
;
950 static void write_iface_guid(const type_t
*iface
)
952 const UUID
*uuid
= get_attrp(iface
->attrs
, ATTR_UUID
);
953 write_guid(header
, "IID", iface
->name
, uuid
);
956 static void write_dispiface_guid(const type_t
*iface
)
958 const UUID
*uuid
= get_attrp(iface
->attrs
, ATTR_UUID
);
959 write_guid(header
, "DIID", iface
->name
, uuid
);
962 static void write_coclass_guid(type_t
*cocl
)
964 const UUID
*uuid
= get_attrp(cocl
->attrs
, ATTR_UUID
);
965 write_guid(header
, "CLSID", cocl
->name
, uuid
);
968 static void write_com_interface(type_t
*iface
)
970 if (!iface
->funcs
&& !iface
->ref
) {
971 parser_warning("%s has no methods\n", iface
->name
);
975 fprintf(header
, "/*****************************************************************************\n");
976 fprintf(header
, " * %s interface\n", iface
->name
);
977 fprintf(header
, " */\n");
978 fprintf(header
,"#ifndef __%s_INTERFACE_DEFINED__\n", iface
->name
);
979 fprintf(header
,"#define __%s_INTERFACE_DEFINED__\n\n", iface
->name
);
980 write_iface_guid(iface
);
981 write_forward(iface
);
983 fprintf(header
, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
986 fprintf(header
, "interface %s : public %s\n", iface
->name
, iface
->ref
->name
);
987 fprintf(header
, "{\n");
989 write_cpp_method_def(iface
);
991 fprintf(header
, "};\n");
995 fprintf(header
, "interface %s\n", iface
->name
);
996 fprintf(header
, "{\n");
997 fprintf(header
, " BEGIN_INTERFACE\n");
998 fprintf(header
, "\n");
1000 write_cpp_method_def(iface
);
1002 fprintf(header
, " END_INTERFACE\n");
1003 fprintf(header
, "};\n");
1005 fprintf(header
, "#else\n");
1007 fprintf(header
, "typedef struct %sVtbl {\n", iface
->name
);
1009 fprintf(header
, " BEGIN_INTERFACE\n");
1010 fprintf(header
, "\n");
1011 write_c_method_def(iface
);
1013 fprintf(header
, " END_INTERFACE\n");
1014 fprintf(header
, "} %sVtbl;\n", iface
->name
);
1015 fprintf(header
, "interface %s {\n", iface
->name
);
1016 fprintf(header
, " CONST_VTBL %sVtbl* lpVtbl;\n", iface
->name
);
1017 fprintf(header
, "};\n");
1018 fprintf(header
, "\n");
1019 fprintf(header
, "#ifdef COBJMACROS\n");
1020 write_method_macro(iface
, iface
->name
);
1021 fprintf(header
, "#endif\n");
1022 fprintf(header
, "\n");
1023 fprintf(header
, "#endif\n");
1024 fprintf(header
, "\n");
1025 write_method_proto(iface
);
1026 write_locals(header
, iface
, FALSE
);
1027 fprintf(header
,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface
->name
);
1030 static void write_rpc_interface(const type_t
*iface
)
1032 unsigned int ver
= get_attrv(iface
->attrs
, ATTR_VERSION
);
1033 const char *var
= get_attrp(iface
->attrs
, ATTR_IMPLICIT_HANDLE
);
1034 static int allocate_written
= 0;
1036 if (!allocate_written
)
1038 allocate_written
= 1;
1039 fprintf(header
, "void * __RPC_USER MIDL_user_allocate(size_t);\n");
1040 fprintf(header
, "void __RPC_USER MIDL_user_free(void *);\n\n");
1043 fprintf(header
, "/*****************************************************************************\n");
1044 fprintf(header
, " * %s interface (v%d.%d)\n", iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
1045 fprintf(header
, " */\n");
1046 fprintf(header
,"#ifndef __%s_INTERFACE_DEFINED__\n", iface
->name
);
1047 fprintf(header
,"#define __%s_INTERFACE_DEFINED__\n\n", iface
->name
);
1050 write_iface_guid(iface
);
1051 if (var
) fprintf(header
, "extern handle_t %s;\n", var
);
1054 fprintf(header
, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client
, iface
->name
);
1055 fprintf(header
, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server
, iface
->name
);
1059 fprintf(header
, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
1060 prefix_client
, iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
1061 fprintf(header
, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
1062 prefix_server
, iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
1064 write_function_protos(iface
);
1066 fprintf(header
,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface
->name
);
1068 /* FIXME: server/client code */
1071 void write_interface(type_t
*iface
)
1073 if (is_object(iface
->attrs
))
1074 write_com_interface(iface
);
1076 write_rpc_interface(iface
);
1079 void write_dispinterface(type_t
*iface
)
1081 fprintf(header
, "/*****************************************************************************\n");
1082 fprintf(header
, " * %s dispinterface\n", iface
->name
);
1083 fprintf(header
, " */\n");
1084 fprintf(header
,"#ifndef __%s_DISPINTERFACE_DEFINED__\n", iface
->name
);
1085 fprintf(header
,"#define __%s_DISPINTERFACE_DEFINED__\n\n", iface
->name
);
1086 write_dispiface_guid(iface
);
1087 write_forward(iface
);
1089 fprintf(header
, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
1090 fprintf(header
, "interface %s : public %s\n", iface
->name
, iface
->ref
->name
);
1091 fprintf(header
, "{\n");
1092 fprintf(header
, "};\n");
1093 fprintf(header
, "#else\n");
1095 fprintf(header
, "typedef struct %sVtbl {\n", iface
->name
);
1097 fprintf(header
, " BEGIN_INTERFACE\n");
1098 fprintf(header
, "\n");
1099 write_c_disp_method_def(iface
);
1101 fprintf(header
, " END_INTERFACE\n");
1102 fprintf(header
, "} %sVtbl;\n", iface
->name
);
1103 fprintf(header
, "interface %s {\n", iface
->name
);
1104 fprintf(header
, " CONST_VTBL %sVtbl* lpVtbl;\n", iface
->name
);
1105 fprintf(header
, "};\n");
1106 fprintf(header
, "\n");
1107 fprintf(header
, "#ifdef COBJMACROS\n");
1108 write_method_macro(iface
->ref
, iface
->name
);
1109 fprintf(header
, "#endif\n");
1110 fprintf(header
, "\n");
1111 fprintf(header
, "#endif\n");
1112 fprintf(header
, "\n");
1113 fprintf(header
,"#endif /* __%s_DISPINTERFACE_DEFINED__ */\n\n", iface
->name
);
1116 void write_coclass(type_t
*cocl
)
1118 fprintf(header
, "/*****************************************************************************\n");
1119 fprintf(header
, " * %s coclass\n", cocl
->name
);
1120 fprintf(header
, " */\n\n");
1121 write_coclass_guid(cocl
);
1122 fprintf(header
, "\n");
1125 void write_coclass_forward(type_t
*cocl
)
1127 fprintf(header
, "#ifndef __%s_FWD_DEFINED__\n", cocl
->name
);
1128 fprintf(header
, "#define __%s_FWD_DEFINED__\n", cocl
->name
);
1129 fprintf(header
, "typedef struct %s %s;\n", cocl
->name
, cocl
->name
);
1130 fprintf(header
, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl
->name
);