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
39 static int indentation
= 0;
40 static int is_object_interface
= 0;
41 user_type_list_t user_type_list
= LIST_INIT(user_type_list
);
42 context_handle_list_t context_handle_list
= LIST_INIT(context_handle_list
);
43 generic_handle_list_t generic_handle_list
= LIST_INIT(generic_handle_list
);
45 static void write_type_def_or_decl(FILE *f
, type_t
*t
, int field
, const char *name
);
47 static void indent(FILE *h
, int delta
)
50 if (delta
< 0) indentation
+= delta
;
51 for (c
=0; c
<indentation
; c
++) fprintf(h
, " ");
52 if (delta
> 0) indentation
+= delta
;
55 static void write_line(FILE *f
, int delta
, const char *fmt
, ...)
65 int is_ptrchain_attr(const var_t
*var
, enum attr_type t
)
67 if (is_attr(var
->attrs
, t
))
71 type_t
*type
= var
->type
;
74 if (is_attr(type
->attrs
, t
))
76 else if (type_is_alias(type
))
77 type
= type_alias_get_aliasee(type
);
78 else if (is_ptr(type
))
79 type
= type_pointer_get_ref(type
);
85 int is_aliaschain_attr(const type_t
*type
, enum attr_type attr
)
87 const type_t
*t
= type
;
90 if (is_attr(t
->attrs
, attr
))
92 else if (type_is_alias(t
))
93 t
= type_alias_get_aliasee(t
);
98 int is_attr(const attr_list_t
*list
, enum attr_type t
)
101 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
102 if (attr
->type
== t
) return 1;
106 void *get_attrp(const attr_list_t
*list
, enum attr_type t
)
109 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
110 if (attr
->type
== t
) return attr
->u
.pval
;
114 unsigned int get_attrv(const attr_list_t
*list
, enum attr_type t
)
117 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
118 if (attr
->type
== t
) return attr
->u
.ival
;
122 static 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 static void write_uuid_decl(FILE *f
, type_t
*type
, const UUID
*uuid
)
134 char *name
= format_namespace(type
->namespace, "", "::", type
->name
);
135 fprintf(f
, "#ifdef __CRT_UUID_DECL\n");
136 fprintf(f
, "__CRT_UUID_DECL(%s, 0x%08x, 0x%04x, 0x%04x, 0x%02x,0x%02x, 0x%02x,"
137 "0x%02x,0x%02x,0x%02x,0x%02x,0x%02x)\n",
138 name
, uuid
->Data1
, uuid
->Data2
, uuid
->Data3
, uuid
->Data4
[0], uuid
->Data4
[1],
139 uuid
->Data4
[2], uuid
->Data4
[3], uuid
->Data4
[4], uuid
->Data4
[5], uuid
->Data4
[6],
141 fprintf(f
, "#endif\n");
145 static const char *uuid_string(const UUID
*uuid
)
149 sprintf(buf
, "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
150 uuid
->Data1
, uuid
->Data2
, uuid
->Data3
, uuid
->Data4
[0], uuid
->Data4
[1], uuid
->Data4
[2],
151 uuid
->Data4
[3], uuid
->Data4
[4], uuid
->Data4
[5], uuid
->Data4
[6], uuid
->Data4
[7]);
156 static void write_namespace_start(FILE *header
, struct namespace *namespace)
158 if(is_global_namespace(namespace)) {
159 if(use_abi_namespace
)
160 write_line(header
, 1, "namespace ABI {");
164 write_namespace_start(header
, namespace->parent
);
165 write_line(header
, 1, "namespace %s {", namespace->name
);
168 static void write_namespace_end(FILE *header
, struct namespace *namespace)
170 if(is_global_namespace(namespace)) {
171 if(use_abi_namespace
)
172 write_line(header
, -1, "}", namespace->name
);
176 write_line(header
, -1, "}", namespace->name
);
177 write_namespace_end(header
, namespace->parent
);
180 const char *get_name(const var_t
*v
)
182 static char buffer
[256];
184 if (is_attr( v
->attrs
, ATTR_PROPGET
))
185 strcpy( buffer
, "get_" );
186 else if (is_attr( v
->attrs
, ATTR_PROPPUT
))
187 strcpy( buffer
, "put_" );
188 else if (is_attr( v
->attrs
, ATTR_PROPPUTREF
))
189 strcpy( buffer
, "putref_" );
192 strcat( buffer
, v
->name
);
196 static void write_fields(FILE *h
, var_list_t
*fields
)
198 unsigned nameless_struct_cnt
= 0, nameless_struct_i
= 0, nameless_union_cnt
= 0, nameless_union_i
= 0;
205 LIST_FOR_EACH_ENTRY( v
, fields
, var_t
, entry
) {
206 if (!v
|| !v
->type
) continue;
208 switch(type_get_type_detect_alias(v
->type
)) {
210 case TYPE_ENCAPSULATED_UNION
:
211 nameless_struct_cnt
++;
214 nameless_union_cnt
++;
221 LIST_FOR_EACH_ENTRY( v
, fields
, var_t
, entry
) {
222 if (!v
|| !v
->type
) continue;
227 switch(type_get_type_detect_alias(v
->type
)) {
229 case TYPE_ENCAPSULATED_UNION
:
231 fprintf(h
, "__C89_NAMELESS ");
232 if(nameless_struct_cnt
== 1) {
233 name
= "__C89_NAMELESSSTRUCTNAME";
234 }else if(nameless_struct_i
< 5 /* # of supporting macros */) {
235 sprintf(buf
, "__C89_NAMELESSSTRUCTNAME%d", ++nameless_struct_i
);
242 fprintf(h
, "__C89_NAMELESS ");
243 if(nameless_union_cnt
== 1) {
244 name
= "__C89_NAMELESSUNIONNAME";
245 }else if(nameless_union_i
< 8 /* # of supporting macros */ ) {
246 sprintf(buf
, "__C89_NAMELESSUNIONNAME%d", ++nameless_union_i
);
254 write_type_def_or_decl(h
, v
->type
, TRUE
, name
);
259 static void write_enums(FILE *h
, var_list_t
*enums
, const char *enum_name
)
263 LIST_FOR_EACH_ENTRY( v
, enums
, var_t
, entry
)
268 fprintf(h
, "%s", get_name(v
));
270 fprintf(h
, "%s_%s", enum_name
, get_name(v
));
273 write_expr(h
, v
->eval
, 0, 1, NULL
, NULL
, "");
276 if (list_next( enums
, &v
->entry
)) fprintf(h
, ",\n");
281 int needs_space_after(type_t
*t
)
283 return (type_is_alias(t
) ||
284 (!is_ptr(t
) && (!is_array(t
) || !type_array_is_decl_as_ptr(t
) || t
->name
)));
287 void write_type_left(FILE *h
, type_t
*t
, enum name_type name_type
, int declonly
)
293 name
= type_get_name(t
, name_type
);
295 if (is_attr(t
->attrs
, ATTR_CONST
) &&
296 (type_is_alias(t
) || !is_ptr(t
)))
297 fprintf(h
, "const ");
299 if (type_is_alias(t
)) fprintf(h
, "%s", t
->name
);
301 switch (type_get_type_detect_alias(t
)) {
303 if (!declonly
&& t
->defined
&& !t
->written
) {
304 if (name
) fprintf(h
, "enum %s {\n", name
);
305 else fprintf(h
, "enum {\n");
308 write_enums(h
, type_enum_get_values(t
), is_global_namespace(t
->namespace) ? NULL
: t
->name
);
312 else fprintf(h
, "enum %s", name
? name
: "");
315 case TYPE_ENCAPSULATED_UNION
:
316 if (!declonly
&& t
->defined
&& !t
->written
) {
317 if (name
) fprintf(h
, "struct %s {\n", name
);
318 else fprintf(h
, "struct {\n");
321 if (type_get_type(t
) != TYPE_STRUCT
)
322 write_fields(h
, type_encapsulated_union_get_fields(t
));
324 write_fields(h
, type_struct_get_fields(t
));
328 else fprintf(h
, "struct %s", name
? name
: "");
331 if (!declonly
&& t
->defined
&& !t
->written
) {
332 if (t
->name
) fprintf(h
, "union %s {\n", t
->name
);
333 else fprintf(h
, "union {\n");
336 write_fields(h
, type_union_get_cases(t
));
340 else fprintf(h
, "union %s", t
->name
? t
->name
: "");
343 write_type_left(h
, type_pointer_get_ref(t
), name_type
, declonly
);
344 fprintf(h
, "%s*", needs_space_after(type_pointer_get_ref(t
)) ? " " : "");
345 if (is_attr(t
->attrs
, ATTR_CONST
)) fprintf(h
, "const ");
348 if (t
->name
&& type_array_is_decl_as_ptr(t
))
349 fprintf(h
, "%s", t
->name
);
352 write_type_left(h
, type_array_get_element(t
), name_type
, declonly
);
353 if (type_array_is_decl_as_ptr(t
))
354 fprintf(h
, "%s*", needs_space_after(type_array_get_element(t
)) ? " " : "");
358 if (type_basic_get_type(t
) != TYPE_BASIC_INT32
&&
359 type_basic_get_type(t
) != TYPE_BASIC_INT64
&&
360 type_basic_get_type(t
) != TYPE_BASIC_HYPER
)
362 if (type_basic_get_sign(t
) < 0) fprintf(h
, "signed ");
363 else if (type_basic_get_sign(t
) > 0) fprintf(h
, "unsigned ");
365 switch (type_basic_get_type(t
))
367 case TYPE_BASIC_INT8
: fprintf(h
, "small"); break;
368 case TYPE_BASIC_INT16
: fprintf(h
, "short"); break;
369 case TYPE_BASIC_INT
: fprintf(h
, "int"); break;
370 case TYPE_BASIC_INT3264
: fprintf(h
, "__int3264"); break;
371 case TYPE_BASIC_BYTE
: fprintf(h
, "byte"); break;
372 case TYPE_BASIC_CHAR
: fprintf(h
, "char"); break;
373 case TYPE_BASIC_WCHAR
: fprintf(h
, "wchar_t"); break;
374 case TYPE_BASIC_FLOAT
: fprintf(h
, "float"); break;
375 case TYPE_BASIC_DOUBLE
: fprintf(h
, "double"); break;
376 case TYPE_BASIC_ERROR_STATUS_T
: fprintf(h
, "error_status_t"); break;
377 case TYPE_BASIC_HANDLE
: fprintf(h
, "handle_t"); break;
378 case TYPE_BASIC_INT32
:
379 if (type_basic_get_sign(t
) > 0)
384 case TYPE_BASIC_INT64
:
385 if (type_basic_get_sign(t
) > 0)
386 fprintf(h
, "UINT64");
390 case TYPE_BASIC_HYPER
:
391 if (type_basic_get_sign(t
) > 0)
392 fprintf(h
, "MIDL_uhyper");
401 fprintf(h
, "%s", t
->name
);
407 write_type_left(h
, type_bitfield_get_field(t
), name_type
, declonly
);
411 /* handled elsewhere */
418 void write_type_right(FILE *h
, type_t
*t
, int is_field
)
422 switch (type_get_type(t
))
425 if (!type_array_is_decl_as_ptr(t
))
427 if (is_conformant_array(t
))
429 fprintf(h
, "[%s]", is_field
? "1" : "");
430 t
= type_array_get_element(t
);
433 type_get_type(t
) == TYPE_ARRAY
&& !type_array_is_decl_as_ptr(t
);
434 t
= type_array_get_element(t
))
435 fprintf(h
, "[%u]", type_array_get_dim(t
));
439 fprintf(h
, " : %u", type_bitfield_get_bits(t
)->cval
);
445 case TYPE_ENCAPSULATED_UNION
:
457 static void write_type_v(FILE *h
, type_t
*t
, int is_field
, int declonly
, const char *name
)
465 for (pt
= t
; is_ptr(pt
); pt
= type_pointer_get_ref(pt
), ptr_level
++)
468 if (type_get_type_detect_alias(pt
) == TYPE_FUNCTION
) {
470 const char *callconv
= get_attrp(pt
->attrs
, ATTR_CALLCONV
);
471 if (!callconv
&& is_object_interface
) callconv
= "STDMETHODCALLTYPE";
472 if (is_attr(pt
->attrs
, ATTR_INLINE
)) fprintf(h
, "inline ");
473 write_type_left(h
, type_function_get_rettype(pt
), NAME_DEFAULT
, declonly
);
475 if (ptr_level
) fputc('(', h
);
476 if (callconv
) fprintf(h
, "%s ", callconv
);
477 for (i
= 0; i
< ptr_level
; i
++)
480 write_type_left(h
, t
, NAME_DEFAULT
, declonly
);
483 if (name
) fprintf(h
, "%s%s", !t
|| needs_space_after(t
) ? " " : "", name
);
486 if (type_get_type_detect_alias(pt
) == TYPE_FUNCTION
) {
487 const var_list_t
*args
= type_function_get_args(pt
);
489 if (ptr_level
) fputc(')', h
);
492 write_args(h
, args
, NULL
, 0, FALSE
);
497 write_type_right(h
, t
, is_field
);
501 static void write_type_def_or_decl(FILE *f
, type_t
*t
, int field
, const char *name
)
503 write_type_v(f
, t
, field
, FALSE
, name
);
506 static void write_type_definition(FILE *f
, type_t
*t
)
508 int in_namespace
= t
->namespace && !is_global_namespace(t
->namespace);
509 int save_written
= t
->written
;
512 fprintf(f
, "#ifdef __cplusplus\n");
513 fprintf(f
, "} /* extern \"C\" */\n");
514 write_namespace_start(f
, t
->namespace);
517 write_type_left(f
, t
, NAME_DEFAULT
, FALSE
);
520 t
->written
= save_written
;
521 write_namespace_end(f
, t
->namespace);
522 fprintf(f
, "extern \"C\" {\n");
523 fprintf(f
, "#else\n");
524 write_type_left(f
, t
, NAME_C
, FALSE
);
526 fprintf(f
, "#endif\n\n");
530 void write_type_decl(FILE *f
, type_t
*t
, const char *name
)
532 write_type_v(f
, t
, FALSE
, TRUE
, name
);
535 void write_type_decl_left(FILE *f
, type_t
*t
)
537 write_type_left(f
, t
, NAME_DEFAULT
, TRUE
);
540 static int user_type_registered(const char *name
)
543 LIST_FOR_EACH_ENTRY(ut
, &user_type_list
, user_type_t
, entry
)
544 if (!strcmp(name
, ut
->name
))
549 static int context_handle_registered(const char *name
)
551 context_handle_t
*ch
;
552 LIST_FOR_EACH_ENTRY(ch
, &context_handle_list
, context_handle_t
, entry
)
553 if (!strcmp(name
, ch
->name
))
558 static int generic_handle_registered(const char *name
)
560 generic_handle_t
*gh
;
561 LIST_FOR_EACH_ENTRY(gh
, &generic_handle_list
, generic_handle_t
, entry
)
562 if (!strcmp(name
, gh
->name
))
567 unsigned int get_context_handle_offset( const type_t
*type
)
569 context_handle_t
*ch
;
570 unsigned int index
= 0;
572 while (!is_attr( type
->attrs
, ATTR_CONTEXTHANDLE
))
574 if (type_is_alias( type
)) type
= type_alias_get_aliasee( type
);
575 else if (is_ptr( type
)) type
= type_pointer_get_ref( type
);
576 else error( "internal error: %s is not a context handle\n", type
->name
);
578 LIST_FOR_EACH_ENTRY( ch
, &context_handle_list
, context_handle_t
, entry
)
580 if (!strcmp( type
->name
, ch
->name
)) return index
;
583 error( "internal error: %s is not registered as a context handle\n", type
->name
);
587 unsigned int get_generic_handle_offset( const type_t
*type
)
589 generic_handle_t
*gh
;
590 unsigned int index
= 0;
592 while (!is_attr( type
->attrs
, ATTR_HANDLE
))
594 if (type_is_alias( type
)) type
= type_alias_get_aliasee( type
);
595 else if (is_ptr( type
)) type
= type_pointer_get_ref( type
);
596 else error( "internal error: %s is not a generic handle\n", type
->name
);
598 LIST_FOR_EACH_ENTRY( gh
, &generic_handle_list
, generic_handle_t
, entry
)
600 if (!strcmp( type
->name
, gh
->name
)) return index
;
603 error( "internal error: %s is not registered as a generic handle\n", type
->name
);
607 /* check for types which require additional prototypes to be generated in the
609 void check_for_additional_prototype_types(const var_list_t
*list
)
614 LIST_FOR_EACH_ENTRY( v
, list
, const var_t
, entry
)
616 type_t
*type
= v
->type
;
619 const char *name
= type
->name
;
620 if (type
->user_types_registered
) break;
621 type
->user_types_registered
= 1;
622 if (is_attr(type
->attrs
, ATTR_CONTEXTHANDLE
)) {
623 if (!context_handle_registered(name
))
625 context_handle_t
*ch
= xmalloc(sizeof(*ch
));
626 ch
->name
= xstrdup(name
);
627 list_add_tail(&context_handle_list
, &ch
->entry
);
629 /* don't carry on parsing fields within this type */
632 if ((type_get_type(type
) != TYPE_BASIC
||
633 type_basic_get_type(type
) != TYPE_BASIC_HANDLE
) &&
634 is_attr(type
->attrs
, ATTR_HANDLE
)) {
635 if (!generic_handle_registered(name
))
637 generic_handle_t
*gh
= xmalloc(sizeof(*gh
));
638 gh
->name
= xstrdup(name
);
639 list_add_tail(&generic_handle_list
, &gh
->entry
);
641 /* don't carry on parsing fields within this type */
644 if (is_attr(type
->attrs
, ATTR_WIREMARSHAL
)) {
645 if (!user_type_registered(name
))
647 user_type_t
*ut
= xmalloc(sizeof *ut
);
648 ut
->name
= xstrdup(name
);
649 list_add_tail(&user_type_list
, &ut
->entry
);
651 /* don't carry on parsing fields within this type as we are already
652 * using a wire marshaled type */
655 else if (type_is_complete(type
))
658 switch (type_get_type_detect_alias(type
))
661 vars
= type_enum_get_values(type
);
664 vars
= type_struct_get_fields(type
);
667 vars
= type_union_get_cases(type
);
673 check_for_additional_prototype_types(vars
);
676 if (type_is_alias(type
))
677 type
= type_alias_get_aliasee(type
);
678 else if (is_ptr(type
))
679 type
= type_pointer_get_ref(type
);
680 else if (is_array(type
))
681 type
= type_array_get_element(type
);
688 static void write_user_types(FILE *header
)
691 LIST_FOR_EACH_ENTRY(ut
, &user_type_list
, user_type_t
, entry
)
693 const char *name
= ut
->name
;
694 fprintf(header
, "ULONG __RPC_USER %s_UserSize (ULONG *, ULONG, %s *);\n", name
, name
);
695 fprintf(header
, "unsigned char * __RPC_USER %s_UserMarshal (ULONG *, unsigned char *, %s *);\n", name
, name
);
696 fprintf(header
, "unsigned char * __RPC_USER %s_UserUnmarshal(ULONG *, unsigned char *, %s *);\n", name
, name
);
697 fprintf(header
, "void __RPC_USER %s_UserFree (ULONG *, %s *);\n", name
, name
);
701 static void write_context_handle_rundowns(FILE *header
)
703 context_handle_t
*ch
;
704 LIST_FOR_EACH_ENTRY(ch
, &context_handle_list
, context_handle_t
, entry
)
706 const char *name
= ch
->name
;
707 fprintf(header
, "void __RPC_USER %s_rundown(%s);\n", name
, name
);
711 static void write_generic_handle_routines(FILE *header
)
713 generic_handle_t
*gh
;
714 LIST_FOR_EACH_ENTRY(gh
, &generic_handle_list
, generic_handle_t
, entry
)
716 const char *name
= gh
->name
;
717 fprintf(header
, "handle_t __RPC_USER %s_bind(%s);\n", name
, name
);
718 fprintf(header
, "void __RPC_USER %s_unbind(%s, handle_t);\n", name
, name
);
722 static void write_typedef(FILE *header
, type_t
*type
)
724 fprintf(header
, "typedef ");
725 write_type_def_or_decl(header
, type_alias_get_aliasee(type
), FALSE
, type
->name
);
726 fprintf(header
, ";\n");
729 int is_const_decl(const var_t
*var
)
732 /* strangely, MIDL accepts a const attribute on any pointer in the
733 * declaration to mean that data isn't being instantiated. this appears
734 * to be a bug, but there is no benefit to being incompatible with MIDL,
735 * so we'll do the same thing */
736 for (t
= var
->type
; ; )
738 if (is_attr(t
->attrs
, ATTR_CONST
))
741 t
= type_pointer_get_ref(t
);
747 static void write_declaration(FILE *header
, const var_t
*v
)
749 if (is_const_decl(v
) && v
->eval
)
751 fprintf(header
, "#define %s (", v
->name
);
752 write_expr(header
, v
->eval
, 0, 1, NULL
, NULL
, "");
753 fprintf(header
, ")\n\n");
760 case STG_REGISTER
: /* ignored */
763 fprintf(header
, "static ");
766 fprintf(header
, "extern ");
769 write_type_def_or_decl(header
, v
->type
, FALSE
, v
->name
);
770 fprintf(header
, ";\n\n");
774 static void write_library(FILE *header
, const typelib_t
*typelib
)
776 const UUID
*uuid
= get_attrp(typelib
->attrs
, ATTR_UUID
);
777 fprintf(header
, "\n");
778 write_guid(header
, "LIBID", typelib
->name
, uuid
);
779 fprintf(header
, "\n");
783 const type_t
* get_explicit_generic_handle_type(const var_t
* var
)
787 is_ptr(t
) || type_is_alias(t
);
788 t
= type_is_alias(t
) ? type_alias_get_aliasee(t
) : type_pointer_get_ref(t
))
789 if ((type_get_type_detect_alias(t
) != TYPE_BASIC
|| type_basic_get_type(t
) != TYPE_BASIC_HANDLE
) &&
790 is_attr(t
->attrs
, ATTR_HANDLE
))
795 const var_t
*get_func_handle_var( const type_t
*iface
, const var_t
*func
,
796 unsigned char *explicit_fc
, unsigned char *implicit_fc
)
799 const var_list_t
*args
= type_get_function_args( func
->type
);
801 *explicit_fc
= *implicit_fc
= 0;
802 if (args
) LIST_FOR_EACH_ENTRY( var
, args
, const var_t
, entry
)
804 if (!is_attr( var
->attrs
, ATTR_IN
) && is_attr( var
->attrs
, ATTR_OUT
)) continue;
805 if (type_get_type( var
->type
) == TYPE_BASIC
&& type_basic_get_type( var
->type
) == TYPE_BASIC_HANDLE
)
807 *explicit_fc
= RPC_FC_BIND_PRIMITIVE
;
810 if (get_explicit_generic_handle_type( var
))
812 *explicit_fc
= RPC_FC_BIND_GENERIC
;
815 if (is_context_handle( var
->type
))
817 *explicit_fc
= RPC_FC_BIND_CONTEXT
;
822 if ((var
= get_attrp( iface
->attrs
, ATTR_IMPLICIT_HANDLE
)))
824 if (type_get_type( var
->type
) == TYPE_BASIC
&&
825 type_basic_get_type( var
->type
) == TYPE_BASIC_HANDLE
)
826 *implicit_fc
= RPC_FC_BIND_PRIMITIVE
;
828 *implicit_fc
= RPC_FC_BIND_GENERIC
;
832 *implicit_fc
= RPC_FC_AUTO_HANDLE
;
836 int has_out_arg_or_return(const var_t
*func
)
840 if (!is_void(type_function_get_rettype(func
->type
)))
843 if (!type_get_function_args(func
->type
))
846 LIST_FOR_EACH_ENTRY( var
, type_get_function_args(func
->type
), const var_t
, entry
)
847 if (is_attr(var
->attrs
, ATTR_OUT
))
854 /********** INTERFACES **********/
856 int is_object(const type_t
*iface
)
859 if (type_is_defined(iface
) && type_iface_get_inherit(iface
))
861 if (iface
->attrs
) LIST_FOR_EACH_ENTRY( attr
, iface
->attrs
, const attr_t
, entry
)
862 if (attr
->type
== ATTR_OBJECT
|| attr
->type
== ATTR_ODL
) return 1;
866 int is_local(const attr_list_t
*a
)
868 return is_attr(a
, ATTR_LOCAL
);
871 const var_t
*is_callas(const attr_list_t
*a
)
873 return get_attrp(a
, ATTR_CALLAS
);
876 static int is_inherited_method(const type_t
*iface
, const var_t
*func
)
878 while ((iface
= type_iface_get_inherit(iface
)))
880 const statement_t
*stmt
;
881 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
))
883 const var_t
*funccmp
= stmt
->u
.var
;
885 if (!is_callas(func
->attrs
))
887 char inherit_name
[256];
888 /* compare full name including property prefix */
889 strcpy(inherit_name
, get_name(funccmp
));
890 if (!strcmp(inherit_name
, get_name(func
))) return 1;
898 static int is_override_method(const type_t
*iface
, const type_t
*child
, const var_t
*func
)
905 const statement_t
*stmt
;
906 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(child
))
908 const var_t
*funccmp
= stmt
->u
.var
;
910 if (!is_callas(func
->attrs
))
912 char inherit_name
[256];
913 /* compare full name including property prefix */
914 strcpy(inherit_name
, get_name(funccmp
));
915 if (!strcmp(inherit_name
, get_name(func
))) return 1;
919 while ((child
= type_iface_get_inherit(child
)) && child
!= iface
);
924 static int is_aggregate_return(const var_t
*func
)
926 enum type_type type
= type_get_type(type_function_get_rettype(func
->type
));
927 return type
== TYPE_STRUCT
|| type
== TYPE_UNION
||
928 type
== TYPE_COCLASS
|| type
== TYPE_INTERFACE
;
931 static char *get_vtbl_entry_name(const type_t
*iface
, const var_t
*func
)
933 static char buff
[255];
934 if (is_inherited_method(iface
, func
))
935 sprintf(buff
, "%s_%s", iface
->name
, get_name(func
));
937 sprintf(buff
, "%s", get_name(func
));
941 static void write_method_macro(FILE *header
, const type_t
*iface
, const type_t
*child
, const char *name
)
943 const statement_t
*stmt
;
946 if (type_iface_get_inherit(iface
))
947 write_method_macro(header
, type_iface_get_inherit(iface
), child
, name
);
949 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
))
951 const var_t
*func
= stmt
->u
.var
;
955 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
959 if (is_override_method(iface
, child
, func
))
962 if (!is_callas(func
->attrs
) && !is_aggregate_return(func
)) {
965 fprintf(header
, "#define %s_%s(This", name
, get_name(func
));
966 if (type_get_function_args(func
->type
))
967 LIST_FOR_EACH_ENTRY( arg
, type_get_function_args(func
->type
), const var_t
, entry
)
968 fprintf(header
, ",%s", arg
->name
);
969 fprintf(header
, ") ");
971 fprintf(header
, "(This)->lpVtbl->%s(This", get_vtbl_entry_name(iface
, func
));
972 if (type_get_function_args(func
->type
))
973 LIST_FOR_EACH_ENTRY( arg
, type_get_function_args(func
->type
), const var_t
, entry
)
974 fprintf(header
, ",%s", arg
->name
);
975 fprintf(header
, ")\n");
980 void write_args(FILE *h
, const var_list_t
*args
, const char *name
, int method
, int do_indent
)
991 fprintf(h
, "%s* This", name
);
994 if (args
) LIST_FOR_EACH_ENTRY( arg
, args
, const var_t
, entry
) {
1001 else fprintf(h
, ",");
1003 write_type_decl(h
, arg
->type
, arg
->name
);
1005 const expr_t
*expr
= get_attrp(arg
->attrs
, ATTR_DEFAULTVALUE
);
1007 const var_t
*tail_arg
;
1009 /* Output default value only if all following arguments also have default value. */
1010 LIST_FOR_EACH_ENTRY_REV( tail_arg
, args
, const var_t
, entry
) {
1011 if(tail_arg
== arg
) {
1013 write_expr( h
, expr
, 0, 1, NULL
, NULL
, "" );
1016 if(!get_attrp(tail_arg
->attrs
, ATTR_DEFAULTVALUE
))
1023 if (do_indent
) indentation
--;
1026 static void write_cpp_method_def(FILE *header
, const type_t
*iface
)
1028 const statement_t
*stmt
;
1030 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
))
1032 const var_t
*func
= stmt
->u
.var
;
1033 if (!is_callas(func
->attrs
)) {
1034 const char *callconv
= get_attrp(func
->type
->attrs
, ATTR_CALLCONV
);
1035 if (!callconv
) callconv
= "STDMETHODCALLTYPE";
1037 fprintf(header
, "virtual ");
1038 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1039 fprintf(header
, " %s %s(\n", callconv
, get_name(func
));
1040 write_args(header
, type_get_function_args(func
->type
), iface
->name
, 2, TRUE
);
1041 fprintf(header
, ") = 0;\n");
1042 fprintf(header
, "\n");
1047 static void write_inline_wrappers(FILE *header
, const type_t
*iface
, const type_t
*child
, const char *name
)
1049 const statement_t
*stmt
;
1050 int first_iface
= 1;
1052 if (type_iface_get_inherit(iface
))
1053 write_inline_wrappers(header
, type_iface_get_inherit(iface
), child
, name
);
1055 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
))
1057 const var_t
*func
= stmt
->u
.var
;
1061 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
1065 if (is_override_method(iface
, child
, func
))
1068 if (!is_callas(func
->attrs
)) {
1071 fprintf(header
, "static FORCEINLINE ");
1072 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1073 fprintf(header
, " %s_%s(", name
, get_name(func
));
1074 write_args(header
, type_get_function_args(func
->type
), name
, 1, FALSE
);
1075 fprintf(header
, ") {\n");
1077 if (!is_aggregate_return(func
)) {
1079 fprintf(header
, "%sThis->lpVtbl->%s(This",
1080 is_void(type_function_get_rettype(func
->type
)) ? "" : "return ",
1081 get_vtbl_entry_name(iface
, func
));
1084 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1085 fprintf(header
, " __ret;\n");
1087 fprintf(header
, "return *This->lpVtbl->%s(This,&__ret", get_vtbl_entry_name(iface
, func
));
1089 if (type_get_function_args(func
->type
))
1090 LIST_FOR_EACH_ENTRY( arg
, type_get_function_args(func
->type
), const var_t
, entry
)
1091 fprintf(header
, ",%s", arg
->name
);
1092 fprintf(header
, ");\n");
1094 fprintf(header
, "}\n");
1099 static void do_write_c_method_def(FILE *header
, const type_t
*iface
, const char *name
)
1101 const statement_t
*stmt
;
1102 int first_iface
= 1;
1104 if (type_iface_get_inherit(iface
))
1105 do_write_c_method_def(header
, type_iface_get_inherit(iface
), name
);
1107 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
))
1109 const var_t
*func
= stmt
->u
.var
;
1112 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
1115 if (!is_callas(func
->attrs
)) {
1116 const char *callconv
= get_attrp(func
->type
->attrs
, ATTR_CALLCONV
);
1117 if (!callconv
) callconv
= "STDMETHODCALLTYPE";
1119 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1120 if (is_aggregate_return(func
))
1121 fprintf(header
, " *");
1122 if (is_inherited_method(iface
, func
))
1123 fprintf(header
, " (%s *%s_%s)(\n", callconv
, iface
->name
, func
->name
);
1125 fprintf(header
, " (%s *%s)(\n", callconv
, get_name(func
));
1128 fprintf(header
, "%s *This", name
);
1129 if (is_aggregate_return(func
)) {
1130 fprintf(header
, ",\n");
1132 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1133 fprintf(header
, " *__ret");
1136 if (type_get_function_args(func
->type
)) {
1137 fprintf(header
, ",\n");
1138 write_args(header
, type_get_function_args(func
->type
), name
, 0, TRUE
);
1140 fprintf(header
, ");\n");
1141 fprintf(header
, "\n");
1146 static void write_c_method_def(FILE *header
, const type_t
*iface
)
1148 do_write_c_method_def(header
, iface
, iface
->c_name
);
1151 static void write_c_disp_method_def(FILE *header
, const type_t
*iface
)
1153 do_write_c_method_def(header
, type_iface_get_inherit(iface
), iface
->c_name
);
1156 static void write_method_proto(FILE *header
, const type_t
*iface
)
1158 const statement_t
*stmt
;
1160 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
))
1162 const var_t
*func
= stmt
->u
.var
;
1164 if (!is_local(func
->attrs
)) {
1165 const char *callconv
= get_attrp(func
->type
->attrs
, ATTR_CALLCONV
);
1166 if (!callconv
) callconv
= "STDMETHODCALLTYPE";
1167 /* proxy prototype */
1168 write_type_decl_left(header
, type_function_get_rettype(func
->type
));
1169 fprintf(header
, " %s %s_%s_Proxy(\n", callconv
, iface
->name
, get_name(func
));
1170 write_args(header
, type_get_function_args(func
->type
), iface
->name
, 1, TRUE
);
1171 fprintf(header
, ");\n");
1172 /* stub prototype */
1173 fprintf(header
, "void __RPC_STUB %s_%s_Stub(\n", iface
->name
, get_name(func
));
1174 fprintf(header
, " IRpcStubBuffer* This,\n");
1175 fprintf(header
, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
1176 fprintf(header
, " PRPC_MESSAGE pRpcMessage,\n");
1177 fprintf(header
, " DWORD* pdwStubPhase);\n");
1182 static void write_locals(FILE *fp
, const type_t
*iface
, int body
)
1184 static const char comment
[]
1185 = "/* WIDL-generated stub. You must provide an implementation for this. */";
1186 const statement_t
*stmt
;
1188 if (!is_object(iface
))
1191 STATEMENTS_FOR_EACH_FUNC(stmt
, type_iface_get_stmts(iface
)) {
1192 const var_t
*func
= stmt
->u
.var
;
1193 const var_t
*cas
= is_callas(func
->attrs
);
1196 const statement_t
*stmt2
= NULL
;
1197 STATEMENTS_FOR_EACH_FUNC(stmt2
, type_iface_get_stmts(iface
))
1198 if (!strcmp(stmt2
->u
.var
->name
, cas
->name
))
1200 if (&stmt2
->entry
!= type_iface_get_stmts(iface
)) {
1201 const var_t
*m
= stmt2
->u
.var
;
1202 /* proxy prototype - use local prototype */
1203 write_type_decl_left(fp
, type_function_get_rettype(m
->type
));
1204 fprintf(fp
, " CALLBACK %s_%s_Proxy(\n", iface
->name
, get_name(m
));
1205 write_args(fp
, type_get_function_args(m
->type
), iface
->name
, 1, TRUE
);
1208 type_t
*rt
= type_function_get_rettype(m
->type
);
1209 fprintf(fp
, "\n{\n");
1210 fprintf(fp
, " %s\n", comment
);
1211 if (rt
->name
&& strcmp(rt
->name
, "HRESULT") == 0)
1212 fprintf(fp
, " return E_NOTIMPL;\n");
1213 else if (type_get_type(rt
) != TYPE_VOID
) {
1215 write_type_decl(fp
, rt
, "rv");
1217 fprintf(fp
, " memset(&rv, 0, sizeof rv);\n");
1218 fprintf(fp
, " return rv;\n");
1220 fprintf(fp
, "}\n\n");
1224 /* stub prototype - use remotable prototype */
1225 write_type_decl_left(fp
, type_function_get_rettype(func
->type
));
1226 fprintf(fp
, " __RPC_STUB %s_%s_Stub(\n", iface
->name
, get_name(m
));
1227 write_args(fp
, type_get_function_args(func
->type
), iface
->name
, 1, TRUE
);
1230 /* Remotable methods must all return HRESULTs. */
1231 fprintf(fp
, "\n{\n %s\n return E_NOTIMPL;\n}\n\n", comment
);
1236 error_loc("invalid call_as attribute (%s -> %s)\n", func
->name
, cas
->name
);
1241 static void write_local_stubs_stmts(FILE *local_stubs
, const statement_list_t
*stmts
)
1243 const statement_t
*stmt
;
1244 if (stmts
) LIST_FOR_EACH_ENTRY( stmt
, stmts
, const statement_t
, entry
)
1246 if (stmt
->type
== STMT_TYPE
&& type_get_type(stmt
->u
.type
) == TYPE_INTERFACE
)
1247 write_locals(local_stubs
, stmt
->u
.type
, TRUE
);
1251 void write_local_stubs(const statement_list_t
*stmts
)
1255 if (!local_stubs_name
) return;
1257 local_stubs
= fopen(local_stubs_name
, "w");
1259 error("Could not open %s for output\n", local_stubs_name
);
1262 fprintf(local_stubs
, "/* call_as/local stubs for %s */\n\n", input_name
);
1263 fprintf(local_stubs
, "#include <objbase.h>\n");
1264 fprintf(local_stubs
, "#include \"%s\"\n\n", header_name
);
1266 write_local_stubs_stmts(local_stubs
, stmts
);
1268 fclose(local_stubs
);
1271 static void write_function_proto(FILE *header
, const type_t
*iface
, const var_t
*fun
, const char *prefix
)
1273 const char *callconv
= get_attrp(fun
->type
->attrs
, ATTR_CALLCONV
);
1275 if (!callconv
) callconv
= "__cdecl";
1276 /* FIXME: do we need to handle call_as? */
1277 write_type_decl_left(header
, type_function_get_rettype(fun
->type
));
1278 fprintf(header
, " %s ", callconv
);
1279 fprintf(header
, "%s%s(\n", prefix
, get_name(fun
));
1280 if (type_get_function_args(fun
->type
))
1281 write_args(header
, type_get_function_args(fun
->type
), iface
->name
, 0, TRUE
);
1283 fprintf(header
, " void");
1284 fprintf(header
, ");\n\n");
1287 static void write_forward(FILE *header
, type_t
*iface
)
1289 fprintf(header
, "#ifndef __%s_FWD_DEFINED__\n", iface
->c_name
);
1290 fprintf(header
, "#define __%s_FWD_DEFINED__\n", iface
->c_name
);
1291 fprintf(header
, "typedef interface %s %s;\n", iface
->c_name
, iface
->c_name
);
1292 fprintf(header
, "#ifdef __cplusplus\n");
1293 write_namespace_start(header
, iface
->namespace);
1294 write_line(header
, 0, "interface %s;", iface
->name
);
1295 write_namespace_end(header
, iface
->namespace);
1296 fprintf(header
, "#endif /* __cplusplus */\n");
1297 fprintf(header
, "#endif\n\n" );
1300 static void write_com_interface_start(FILE *header
, const type_t
*iface
)
1302 int dispinterface
= is_attr(iface
->attrs
, ATTR_DISPINTERFACE
);
1303 fprintf(header
, "/*****************************************************************************\n");
1304 fprintf(header
, " * %s %sinterface\n", iface
->name
, dispinterface
? "disp" : "");
1305 fprintf(header
, " */\n");
1306 fprintf(header
,"#ifndef __%s_%sINTERFACE_DEFINED__\n", iface
->c_name
, dispinterface
? "DISP" : "");
1307 fprintf(header
,"#define __%s_%sINTERFACE_DEFINED__\n\n", iface
->c_name
, dispinterface
? "DISP" : "");
1310 static void write_com_interface_end(FILE *header
, type_t
*iface
)
1312 int dispinterface
= is_attr(iface
->attrs
, ATTR_DISPINTERFACE
);
1313 const UUID
*uuid
= get_attrp(iface
->attrs
, ATTR_UUID
);
1317 write_guid(header
, dispinterface
? "DIID" : "IID", iface
->c_name
, uuid
);
1320 fprintf(header
, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
1321 if (!is_global_namespace(iface
->namespace)) {
1322 write_line(header
, 0, "} /* extern \"C\" */");
1323 write_namespace_start(header
, iface
->namespace);
1326 write_line(header
, 0, "MIDL_INTERFACE(\"%s\")", uuid_string(uuid
));
1330 fprintf(header
, "interface ");
1332 if (type_iface_get_inherit(iface
))
1334 fprintf(header
, "%s : public %s\n", iface
->name
,
1335 type_iface_get_inherit(iface
)->name
);
1336 write_line(header
, 1, "{");
1340 fprintf(header
, "%s\n", iface
->name
);
1341 write_line(header
, 1, "{\n");
1342 write_line(header
, 0, "BEGIN_INTERFACE\n");
1344 /* dispinterfaces don't have real functions, so don't write C++ functions for
1347 write_cpp_method_def(header
, iface
);
1348 if (!type_iface_get_inherit(iface
))
1349 write_line(header
, 0, "END_INTERFACE\n");
1350 write_line(header
, -1, "};");
1351 if (!is_global_namespace(iface
->namespace)) {
1352 write_namespace_end(header
, iface
->namespace);
1353 write_line(header
, 0, "extern \"C\" {");
1356 write_uuid_decl(header
, iface
, uuid
);
1357 fprintf(header
, "#else\n");
1359 write_line(header
, 1, "typedef struct %sVtbl {", iface
->c_name
);
1360 write_line(header
, 0, "BEGIN_INTERFACE\n");
1362 write_c_disp_method_def(header
, iface
);
1364 write_c_method_def(header
, iface
);
1365 write_line(header
, 0, "END_INTERFACE");
1366 write_line(header
, -1, "} %sVtbl;\n", iface
->c_name
);
1367 fprintf(header
, "interface %s {\n", iface
->c_name
);
1368 fprintf(header
, " CONST_VTBL %sVtbl* lpVtbl;\n", iface
->c_name
);
1369 fprintf(header
, "};\n\n");
1370 fprintf(header
, "#ifdef COBJMACROS\n");
1371 /* dispinterfaces don't have real functions, so don't write macros for them,
1372 * only for the interface this interface inherits from, i.e. IDispatch */
1373 fprintf(header
, "#ifndef WIDL_C_INLINE_WRAPPERS\n");
1374 type
= dispinterface
? type_iface_get_inherit(iface
) : iface
;
1375 write_method_macro(header
, type
, type
, iface
->c_name
);
1376 fprintf(header
, "#else\n");
1377 write_inline_wrappers(header
, type
, type
, iface
->c_name
);
1378 fprintf(header
, "#endif\n");
1379 fprintf(header
, "#endif\n");
1380 fprintf(header
, "\n");
1381 fprintf(header
, "#endif\n");
1382 fprintf(header
, "\n");
1383 /* dispinterfaces don't have real functions, so don't write prototypes for
1385 if (!dispinterface
&& !winrt_mode
)
1387 write_method_proto(header
, iface
);
1388 write_locals(header
, iface
, FALSE
);
1389 fprintf(header
, "\n");
1391 fprintf(header
,"#endif /* __%s_%sINTERFACE_DEFINED__ */\n\n", iface
->c_name
, dispinterface
? "DISP" : "");
1394 static void write_rpc_interface_start(FILE *header
, const type_t
*iface
)
1396 unsigned int ver
= get_attrv(iface
->attrs
, ATTR_VERSION
);
1397 const var_t
*var
= get_attrp(iface
->attrs
, ATTR_IMPLICIT_HANDLE
);
1399 fprintf(header
, "/*****************************************************************************\n");
1400 fprintf(header
, " * %s interface (v%d.%d)\n", iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
1401 fprintf(header
, " */\n");
1402 fprintf(header
,"#ifndef __%s_INTERFACE_DEFINED__\n", iface
->name
);
1403 fprintf(header
,"#define __%s_INTERFACE_DEFINED__\n\n", iface
->name
);
1406 fprintf(header
, "extern ");
1407 write_type_decl( header
, var
->type
, var
->name
);
1408 fprintf(header
, ";\n");
1412 fprintf(header
, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client
, iface
->name
);
1413 fprintf(header
, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server
, iface
->name
);
1417 fprintf(header
, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
1418 prefix_client
, iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
1419 fprintf(header
, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
1420 prefix_server
, iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
1424 static void write_rpc_interface_end(FILE *header
, const type_t
*iface
)
1426 fprintf(header
,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface
->name
);
1429 static void write_coclass(FILE *header
, type_t
*cocl
)
1431 const UUID
*uuid
= get_attrp(cocl
->attrs
, ATTR_UUID
);
1433 fprintf(header
, "/*****************************************************************************\n");
1434 fprintf(header
, " * %s coclass\n", cocl
->name
);
1435 fprintf(header
, " */\n\n");
1437 write_guid(header
, "CLSID", cocl
->name
, uuid
);
1438 fprintf(header
, "\n#ifdef __cplusplus\n");
1441 fprintf(header
, "class DECLSPEC_UUID(\"%s\") %s;\n", uuid_string(uuid
), cocl
->name
);
1442 write_uuid_decl(header
, cocl
, uuid
);
1446 fprintf(header
, "class %s;\n", cocl
->name
);
1448 fprintf(header
, "#endif\n");
1449 fprintf(header
, "\n");
1452 static void write_coclass_forward(FILE *header
, type_t
*cocl
)
1454 fprintf(header
, "#ifndef __%s_FWD_DEFINED__\n", cocl
->name
);
1455 fprintf(header
, "#define __%s_FWD_DEFINED__\n", cocl
->name
);
1456 fprintf(header
, "#ifdef __cplusplus\n");
1457 fprintf(header
, "typedef class %s %s;\n", cocl
->name
, cocl
->name
);
1458 fprintf(header
, "#else\n");
1459 fprintf(header
, "typedef struct %s %s;\n", cocl
->name
, cocl
->name
);
1460 fprintf(header
, "#endif /* defined __cplusplus */\n");
1461 fprintf(header
, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl
->name
);
1464 static void write_import(FILE *header
, const char *fname
)
1468 hname
= dup_basename(fname
, ".idl");
1469 p
= hname
+ strlen(hname
) - 2;
1470 if (p
<= hname
|| strcmp( p
, ".h" )) strcat(hname
, ".h");
1472 fprintf(header
, "#include <%s>\n", hname
);
1476 static void write_imports(FILE *header
, const statement_list_t
*stmts
)
1478 const statement_t
*stmt
;
1479 if (stmts
) LIST_FOR_EACH_ENTRY( stmt
, stmts
, const statement_t
, entry
)
1484 if (type_get_type(stmt
->u
.type
) == TYPE_INTERFACE
)
1485 write_imports(header
, type_iface_get_stmts(stmt
->u
.type
));
1488 case STMT_IMPORTLIB
:
1489 /* not included in header */
1492 write_import(header
, stmt
->u
.str
);
1498 case STMT_DECLARATION
:
1499 /* not processed here */
1502 write_imports(header
, stmt
->u
.lib
->stmts
);
1508 static void write_forward_decls(FILE *header
, const statement_list_t
*stmts
)
1510 const statement_t
*stmt
;
1511 if (stmts
) LIST_FOR_EACH_ENTRY( stmt
, stmts
, const statement_t
, entry
)
1516 if (type_get_type(stmt
->u
.type
) == TYPE_INTERFACE
)
1518 if (is_object(stmt
->u
.type
) || is_attr(stmt
->u
.type
->attrs
, ATTR_DISPINTERFACE
))
1519 write_forward(header
, stmt
->u
.type
);
1521 else if (type_get_type(stmt
->u
.type
) == TYPE_COCLASS
)
1522 write_coclass_forward(header
, stmt
->u
.type
);
1525 case STMT_IMPORTLIB
:
1526 /* not included in header */
1533 case STMT_DECLARATION
:
1534 /* not processed here */
1537 write_forward_decls(header
, stmt
->u
.lib
->stmts
);
1543 static void write_header_stmts(FILE *header
, const statement_list_t
*stmts
, const type_t
*iface
, int ignore_funcs
)
1545 const statement_t
*stmt
;
1546 if (stmts
) LIST_FOR_EACH_ENTRY( stmt
, stmts
, const statement_t
, entry
)
1551 if (type_get_type(stmt
->u
.type
) == TYPE_INTERFACE
)
1553 type_t
*iface
= stmt
->u
.type
;
1554 if (is_object(iface
)) is_object_interface
++;
1555 if (is_attr(stmt
->u
.type
->attrs
, ATTR_DISPINTERFACE
) || is_object(stmt
->u
.type
))
1557 write_com_interface_start(header
, iface
);
1558 write_header_stmts(header
, type_iface_get_stmts(iface
), stmt
->u
.type
, TRUE
);
1559 write_com_interface_end(header
, iface
);
1563 write_rpc_interface_start(header
, iface
);
1564 write_header_stmts(header
, type_iface_get_stmts(iface
), iface
, FALSE
);
1565 write_rpc_interface_end(header
, iface
);
1567 if (is_object(iface
)) is_object_interface
--;
1569 else if (type_get_type(stmt
->u
.type
) == TYPE_COCLASS
)
1570 write_coclass(header
, stmt
->u
.type
);
1573 write_type_definition(header
, stmt
->u
.type
);
1577 /* FIXME: shouldn't write out forward declarations for undefined
1578 * interfaces but a number of our IDL files depend on this */
1579 if (type_get_type(stmt
->u
.type
) == TYPE_INTERFACE
&& !stmt
->u
.type
->written
)
1580 write_forward(header
, stmt
->u
.type
);
1582 case STMT_IMPORTLIB
:
1585 /* not included in header */
1588 /* not processed here */
1592 const type_list_t
*type_entry
= stmt
->u
.type_list
;
1593 for (; type_entry
; type_entry
= type_entry
->next
)
1594 write_typedef(header
, type_entry
->type
);
1598 write_library(header
, stmt
->u
.lib
);
1599 write_header_stmts(header
, stmt
->u
.lib
->stmts
, NULL
, FALSE
);
1602 fprintf(header
, "%s\n", stmt
->u
.str
);
1604 case STMT_DECLARATION
:
1605 if (iface
&& type_get_type(stmt
->u
.var
->type
) == TYPE_FUNCTION
)
1609 int prefixes_differ
= strcmp(prefix_client
, prefix_server
);
1611 if (prefixes_differ
)
1613 fprintf(header
, "/* client prototype */\n");
1614 write_function_proto(header
, iface
, stmt
->u
.var
, prefix_client
);
1615 fprintf(header
, "/* server prototype */\n");
1617 write_function_proto(header
, iface
, stmt
->u
.var
, prefix_server
);
1621 write_declaration(header
, stmt
->u
.var
);
1627 void write_header(const statement_list_t
*stmts
)
1631 if (!do_header
) return;
1633 if(!(header
= fopen(header_name
, "w"))) {
1634 error("Could not open %s for output\n", header_name
);
1637 fprintf(header
, "/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n\n", PACKAGE_VERSION
, input_name
);
1639 fprintf(header
, "#ifndef __REQUIRED_RPCNDR_H_VERSION__\n");
1640 fprintf(header
, "#define __REQUIRED_RPCNDR_H_VERSION__ 475\n");
1641 fprintf(header
, "#endif\n\n");
1643 fprintf(header
, "#include <rpc.h>\n" );
1644 fprintf(header
, "#include <rpcndr.h>\n\n" );
1646 fprintf(header
, "#ifndef COM_NO_WINDOWS_H\n");
1647 fprintf(header
, "#include <windows.h>\n");
1648 fprintf(header
, "#include <ole2.h>\n");
1649 fprintf(header
, "#endif\n\n");
1651 fprintf(header
, "#ifndef __%s__\n", header_token
);
1652 fprintf(header
, "#define __%s__\n\n", header_token
);
1654 fprintf(header
, "/* Forward declarations */\n\n");
1655 write_forward_decls(header
, stmts
);
1657 fprintf(header
, "/* Headers for imported files */\n\n");
1658 write_imports(header
, stmts
);
1659 fprintf(header
, "\n");
1660 start_cplusplus_guard(header
);
1662 write_header_stmts(header
, stmts
, NULL
, FALSE
);
1664 fprintf(header
, "/* Begin additional prototypes for all interfaces */\n");
1665 fprintf(header
, "\n");
1666 write_user_types(header
);
1667 write_generic_handle_routines(header
);
1668 write_context_handle_rundowns(header
);
1669 fprintf(header
, "\n");
1670 fprintf(header
, "/* End additional prototypes */\n");
1671 fprintf(header
, "\n");
1673 end_cplusplus_guard(header
);
1674 fprintf(header
, "#endif /* __%s__ */\n", header_token
);