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
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
)
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
, ...)
66 int is_ptrchain_attr(const var_t
*var
, enum attr_type t
)
68 if (is_attr(var
->attrs
, t
))
72 type_t
*type
= var
->type
;
75 if (is_attr(type
->attrs
, t
))
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
);
86 int is_aliaschain_attr(const type_t
*type
, enum attr_type attr
)
88 const type_t
*t
= type
;
91 if (is_attr(t
->attrs
, attr
))
93 else if (type_is_alias(t
))
94 t
= type_alias_get_aliasee(t
);
99 int is_attr(const attr_list_t
*list
, enum attr_type t
)
102 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
103 if (attr
->type
== t
) return 1;
107 void *get_attrp(const attr_list_t
*list
, enum attr_type t
)
110 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
111 if (attr
->type
== t
) return attr
->u
.pval
;
115 unsigned int get_attrv(const attr_list_t
*list
, enum attr_type t
)
118 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
119 if (attr
->type
== t
) return attr
->u
.ival
;
123 static void write_guid(FILE *f
, const char *guid_prefix
, const char *name
, const UUID
*uuid
)
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],
142 fprintf(f
, "#endif\n");
146 static const char *uuid_string(const UUID
*uuid
)
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]);
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 {");
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
);
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_" );
193 strcat( buffer
, v
->name
);
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;
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
)) {
211 case TYPE_ENCAPSULATED_UNION
:
212 nameless_struct_cnt
++;
215 nameless_union_cnt
++;
222 LIST_FOR_EACH_ENTRY( v
, fields
, var_t
, entry
) {
223 if (!v
|| !v
->type
) continue;
228 switch(type_get_type_detect_alias(v
->type
)) {
230 case TYPE_ENCAPSULATED_UNION
:
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
);
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
);
255 write_type_def_or_decl(h
, v
->type
, TRUE
, name
);
260 static void write_enums(FILE *h
, var_list_t
*enums
, const char *enum_name
)
264 LIST_FOR_EACH_ENTRY( v
, enums
, var_t
, entry
)
269 fprintf(h
, "%s", get_name(v
));
271 fprintf(h
, "%s_%s", enum_name
, get_name(v
));
274 write_expr(h
, v
->eval
, 0, 1, NULL
, NULL
, "");
277 if (list_next( enums
, &v
->entry
)) 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
)
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
);
302 switch (type_get_type_detect_alias(t
)) {
304 if (!declonly
&& t
->defined
&& !t
->written
) {
305 if (name
) fprintf(h
, "enum %s {\n", name
);
306 else fprintf(h
, "enum {\n");
309 write_enums(h
, type_enum_get_values(t
), is_global_namespace(t
->namespace) ? NULL
: t
->name
);
313 else fprintf(h
, "enum %s", name
? name
: "");
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");
322 if (type_get_type(t
) != TYPE_STRUCT
)
323 write_fields(h
, type_encapsulated_union_get_fields(t
));
325 write_fields(h
, type_struct_get_fields(t
));
329 else fprintf(h
, "struct %s", name
? name
: "");
332 if (!declonly
&& t
->defined
&& !t
->written
) {
333 if (t
->name
) fprintf(h
, "union %s {\n", t
->name
);
334 else fprintf(h
, "union {\n");
337 write_fields(h
, type_union_get_cases(t
));
341 else fprintf(h
, "union %s", t
->name
? t
->name
: "");
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 ");
349 if (t
->name
&& type_array_is_decl_as_ptr(t
))
350 fprintf(h
, "%s", t
->name
);
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
)) ? " " : "");
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)
385 case TYPE_BASIC_INT64
:
386 if (type_basic_get_sign(t
) > 0)
387 fprintf(h
, "UINT64");
391 case TYPE_BASIC_HYPER
:
392 if (type_basic_get_sign(t
) > 0)
393 fprintf(h
, "MIDL_uhyper");
402 fprintf(h
, "%s", t
->name
);
408 write_type_left(h
, type_bitfield_get_field(t
), name_type
, declonly
);
412 /* handled elsewhere */
419 void write_type_right(FILE *h
, type_t
*t
, int is_field
)
423 switch (type_get_type(t
))
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
);
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
));
440 fprintf(h
, " : %u", type_bitfield_get_bits(t
)->cval
);
446 case TYPE_ENCAPSULATED_UNION
:
458 static void write_type_v(FILE *h
, type_t
*t
, int is_field
, int declonly
, const char *name
)
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
) {
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
);
476 if (ptr_level
) fputc('(', h
);
477 if (callconv
) fprintf(h
, "%s ", callconv
);
478 for (i
= 0; i
< ptr_level
; i
++)
481 write_type_left(h
, t
, NAME_DEFAULT
, declonly
);
484 if (name
) fprintf(h
, "%s%s", !t
|| needs_space_after(t
) ? " " : "", name
);
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
);
493 write_args(h
, args
, NULL
, 0, FALSE
);
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
;
513 fprintf(f
, "#ifdef __cplusplus\n");
514 fprintf(f
, "} /* extern \"C\" */\n");
515 write_namespace_start(f
, t
->namespace);
518 write_type_left(f
, t
, NAME_DEFAULT
, FALSE
);
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
);
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
)
544 LIST_FOR_EACH_ENTRY(ut
, &user_type_list
, user_type_t
, entry
)
545 if (!strcmp(name
, ut
->name
))
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
))
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
))
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
;
584 error( "internal error: %s is not registered as a context handle\n", type
->name
);
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
;
604 error( "internal error: %s is not registered as a generic handle\n", type
->name
);
608 /* check for types which require additional prototypes to be generated in the
610 void check_for_additional_prototype_types(const var_list_t
*list
)
615 LIST_FOR_EACH_ENTRY( v
, list
, const var_t
, entry
)
617 type_t
*type
= v
->type
;
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 */
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 */
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 */
656 else if (type_is_complete(type
))
659 switch (type_get_type_detect_alias(type
))
662 vars
= type_enum_get_values(type
);
665 vars
= type_struct_get_fields(type
);
668 vars
= type_union_get_cases(type
);
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
);
689 static void write_user_types(FILE *header
)
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
)
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
))
742 t
= type_pointer_get_ref(t
);
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");
761 case STG_REGISTER
: /* ignored */
764 fprintf(header
, "static ");
767 fprintf(header
, "extern ");
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
)
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
))
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
)
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
;
811 if (get_explicit_generic_handle_type( var
))
813 *explicit_fc
= RPC_FC_BIND_GENERIC
;
816 if (is_context_handle( var
->type
))
818 *explicit_fc
= RPC_FC_BIND_CONTEXT
;
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
;
829 *implicit_fc
= RPC_FC_BIND_GENERIC
;
833 *implicit_fc
= RPC_FC_AUTO_HANDLE
;
837 int has_out_arg_or_return(const var_t
*func
)
841 if (!is_void(type_function_get_rettype(func
->type
)))
844 if (!type_get_function_args(func
->type
))
847 LIST_FOR_EACH_ENTRY( var
, type_get_function_args(func
->type
), const var_t
, entry
)
848 if (is_attr(var
->attrs
, ATTR_OUT
))
855 /********** INTERFACES **********/
857 int is_object(const type_t
*iface
)
860 if (type_is_defined(iface
) && type_iface_get_inherit(iface
))
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;
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;
899 static int is_override_method(const type_t
*iface
, const type_t
*child
, const var_t
*func
)
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
);
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
));
938 sprintf(buff
, "%s", get_name(func
));
942 static void write_method_macro(FILE *header
, const type_t
*iface
, const type_t
*child
, const char *name
)
944 const statement_t
*stmt
;
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
;
956 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
960 if (is_override_method(iface
, child
, func
))
963 if (!is_callas(func
->attrs
) && !is_aggregate_return(func
)) {
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
)
992 fprintf(h
, "%s* This", name
);
995 if (args
) LIST_FOR_EACH_ENTRY( arg
, args
, const var_t
, entry
) {
1002 else fprintf(h
, ",");
1004 write_type_decl(h
, arg
->type
, arg
->name
);
1006 const expr_t
*expr
= get_attrp(arg
->attrs
, ATTR_DEFAULTVALUE
);
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
) {
1015 /* Fixup the expression type for a BSTR like midl does. */
1016 if (get_type_vt(arg
->type
) == VT_BSTR
&& expr
->type
== EXPR_STRLIT
)
1019 bstr
.type
= EXPR_WSTRLIT
;
1024 write_expr( h
, expr
, 0, 1, NULL
, NULL
, "" );
1027 if(!get_attrp(tail_arg
->attrs
, ATTR_DEFAULTVALUE
))
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";
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
;
1072 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
1076 if (is_override_method(iface
, child
, func
))
1079 if (!is_callas(func
->attrs
)) {
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");
1088 if (!is_aggregate_return(func
)) {
1090 fprintf(header
, "%sThis->lpVtbl->%s(This",
1091 is_void(type_function_get_rettype(func
->type
)) ? "" : "return ",
1092 get_vtbl_entry_name(iface
, func
));
1095 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1096 fprintf(header
, " __ret;\n");
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");
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
;
1123 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
1126 if (!is_callas(func
->attrs
)) {
1127 const char *callconv
= get_attrp(func
->type
->attrs
, ATTR_CALLCONV
);
1128 if (!callconv
) callconv
= "STDMETHODCALLTYPE";
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
);
1136 fprintf(header
, " (%s *%s)(\n", callconv
, get_name(func
));
1139 fprintf(header
, "%s *This", name
);
1140 if (is_aggregate_return(func
)) {
1141 fprintf(header
, ",\n");
1143 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1144 fprintf(header
, " *__ret");
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
))
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
);
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
))
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
);
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
) {
1226 write_type_decl(fp
, rt
, "rv");
1228 fprintf(fp
, " memset(&rv, 0, sizeof rv);\n");
1229 fprintf(fp
, " return rv;\n");
1231 fprintf(fp
, "}\n\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
);
1241 /* Remotable methods must all return HRESULTs. */
1242 fprintf(fp
, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment
);
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
)
1266 if (!local_stubs_name
) return;
1268 local_stubs
= fopen(local_stubs_name
, "w");
1270 error("Could not open %s for output\n", local_stubs_name
);
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
);
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
);
1328 write_guid(header
, dispinterface
? "DIID" : "IID", iface
->c_name
, uuid
);
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);
1337 write_line(header
, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid
));
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, "{");
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
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\" {");
1367 write_uuid_decl(header
, iface
, uuid
);
1368 fprintf(header
, "#else\n");
1370 write_line(header
, 1, "typedef struct %sVtbl {", iface
->c_name
);
1371 write_line(header
, 0, "BEGIN_INTERFACE\n");
1373 write_c_disp_method_def(header
, iface
);
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
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
);
1417 fprintf(header
, "extern ");
1418 write_type_decl( header
, var
->type
, var
->name
);
1419 fprintf(header
, ";\n");
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
);
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");
1448 write_guid(header
, "CLSID", cocl
->name
, uuid
);
1449 fprintf(header
, "\n#ifdef __cplusplus\n");
1452 fprintf(header
, "class DECLSPEC_UUID(\"%s\") %s;\n", uuid_string(uuid
), cocl
->name
);
1453 write_uuid_decl(header
, cocl
, uuid
);
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
)
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
);
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
)
1495 if (type_get_type(stmt
->u
.type
) == TYPE_INTERFACE
)
1496 write_imports(header
, type_iface_get_stmts(stmt
->u
.type
));
1499 case STMT_IMPORTLIB
:
1500 /* not included in header */
1503 write_import(header
, stmt
->u
.str
);
1509 case STMT_DECLARATION
:
1510 /* not processed here */
1513 write_imports(header
, stmt
->u
.lib
->stmts
);
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
)
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
);
1536 case STMT_IMPORTLIB
:
1537 /* not included in header */
1544 case STMT_DECLARATION
:
1545 /* not processed here */
1548 write_forward_decls(header
, stmt
->u
.lib
->stmts
);
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
)
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
);
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
);
1584 write_type_definition(header
, stmt
->u
.type
);
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
);
1593 case STMT_IMPORTLIB
:
1596 /* not included in header */
1599 /* not processed here */
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
);
1609 write_library(header
, stmt
->u
.lib
);
1610 write_header_stmts(header
, stmt
->u
.lib
->stmts
, NULL
, FALSE
);
1613 fprintf(header
, "%s\n", stmt
->u
.str
);
1615 case STMT_DECLARATION
:
1616 if (iface
&& type_get_type(stmt
->u
.var
->type
) == TYPE_FUNCTION
)
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
);
1632 write_declaration(header
, stmt
->u
.var
);
1638 void write_header(const statement_list_t
*stmts
)
1642 if (!do_header
) return;
1644 if(!(header
= fopen(header_name
, "w"))) {
1645 error("Could not open %s for output\n", header_name
);
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
);