widl: Add support for generating 32-bit and/or 64-bit code for proxies/clients/servers.
[wine] / tools / widl / proxy.c
1 /*
2  * IDL Compiler
3  *
4  * Copyright 2002 Ove Kaaven
5  * Copyright 2004 Mike McCormack
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #ifdef HAVE_UNISTD_H
28 # include <unistd.h>
29 #endif
30 #include <string.h>
31 #include <ctype.h>
32
33 #include "widl.h"
34 #include "utils.h"
35 #include "parser.h"
36 #include "header.h"
37 #include "typegen.h"
38 #include "expr.h"
39
40 #define END_OF_LIST(list)       \
41   do {                          \
42     if (list) {                 \
43       while (NEXT_LINK(list))   \
44         list = NEXT_LINK(list); \
45     }                           \
46   } while(0)
47
48 static FILE* proxy;
49 static int indent = 0;
50
51 /* FIXME: support generation of stubless proxies */
52
53 static void print_proxy( const char *format, ... )
54 {
55   va_list va;
56   va_start( va, format );
57   print( proxy, indent, format, va );
58   va_end( va );
59 }
60
61 static void write_stubdescproto(void)
62 {
63   print_proxy( "static const MIDL_STUB_DESC Object_StubDesc;\n");
64   print_proxy( "\n");
65 }
66
67 static void write_stubdesc(int expr_eval_routines)
68 {
69   print_proxy( "static const MIDL_STUB_DESC Object_StubDesc =\n{\n");
70   indent++;
71   print_proxy( "0,\n");
72   print_proxy( "NdrOleAllocate,\n");
73   print_proxy( "NdrOleFree,\n");
74   print_proxy( "{0}, 0, 0, %s, 0,\n", expr_eval_routines ? "ExprEvalRoutines" : "0");
75   print_proxy( "__MIDL_TypeFormatString.Format,\n");
76   print_proxy( "1, /* -error bounds_check flag */\n");
77   print_proxy( "0x10001, /* Ndr library version */\n");
78   print_proxy( "0,\n");
79   print_proxy( "0x50100a4, /* MIDL Version 5.1.164 */\n");
80   print_proxy( "0,\n");
81   print_proxy("%s,\n", list_empty(&user_type_list) ? "0" : "UserMarshalRoutines");
82   print_proxy( "0,  /* notify & notify_flag routine table */\n");
83   print_proxy( "1,  /* Flags */\n");
84   print_proxy( "0,  /* Reserved3 */\n");
85   print_proxy( "0,  /* Reserved4 */\n");
86   print_proxy( "0   /* Reserved5 */\n");
87   indent--;
88   print_proxy( "};\n");
89   print_proxy( "\n");
90 }
91
92 static void init_proxy(const statement_list_t *stmts)
93 {
94   if (proxy) return;
95   if(!(proxy = fopen(proxy_name, "w")))
96     error("Could not open %s for output\n", proxy_name);
97   print_proxy( "/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", PACKAGE_VERSION, input_name);
98   print_proxy( "\n");
99   print_proxy( "#ifndef __REDQ_RPCPROXY_H_VERSION__\n");
100   print_proxy( "#define __REQUIRED_RPCPROXY_H_VERSION__ 440\n");
101   print_proxy( "#endif /* __REDQ_RPCPROXY_H_VERSION__ */\n");
102   print_proxy( "\n");
103   print_proxy( "#define __midl_proxy\n");
104   print_proxy( "#include \"objbase.h\"\n");
105   print_proxy( "#include \"rpcproxy.h\"\n");
106   print_proxy( "#ifndef __RPCPROXY_H_VERSION__\n");
107   print_proxy( "#error This code needs a newer version of rpcproxy.h\n");
108   print_proxy( "#endif /* __RPCPROXY_H_VERSION__ */\n");
109   print_proxy( "\n");
110   print_proxy( "#include \"%s\"\n", header_name);
111   print_proxy( "\n");
112   print_proxy( "#ifndef DECLSPEC_HIDDEN\n");
113   print_proxy( "#define DECLSPEC_HIDDEN\n");
114   print_proxy( "#endif\n");
115   print_proxy( "\n");
116   write_exceptions( proxy );
117   print_proxy( "\n");
118   print_proxy( "struct __proxy_frame\n");
119   print_proxy( "{\n");
120   print_proxy( "    __DECL_EXCEPTION_FRAME\n");
121   print_proxy( "    MIDL_STUB_MESSAGE _StubMsg;\n");
122   print_proxy( "    void             *This;\n");
123   print_proxy( "};\n");
124   print_proxy( "\n");
125   print_proxy("static int __proxy_filter( struct __proxy_frame *__frame )\n");
126   print_proxy( "{\n");
127   print_proxy( "    return (__frame->_StubMsg.dwStubPhase != PROXY_SENDRECEIVE);\n");
128   print_proxy( "}\n");
129   print_proxy( "\n");
130 }
131
132 static void clear_output_vars( const var_list_t *args )
133 {
134   const var_t *arg;
135
136   if (!args) return;
137   LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry )
138   {
139     if (is_attr(arg->attrs, ATTR_OUT) && !is_attr(arg->attrs, ATTR_IN)) {
140       print_proxy( "if(%s)\n", arg->name );
141       indent++;
142       print_proxy( "MIDL_memset( %s, 0, sizeof( *%s ));\n", arg->name, arg->name );
143       indent--;
144     }
145   }
146 }
147
148 int is_var_ptr(const var_t *v)
149 {
150   return is_ptr(v->type);
151 }
152
153 int cant_be_null(const var_t *v)
154 {
155   /* Search backwards for the most recent pointer attribute.  */
156   const attr_list_t *attrs = v->attrs;
157   const type_t *type = v->type;
158
159   /* context handles have their own checking so they can be null for the
160    * purposes of null ref pointer checking */
161   if (is_aliaschain_attr(type, ATTR_CONTEXTHANDLE))
162       return 0;
163
164   if (! attrs && type)
165   {
166     attrs = type->attrs;
167     type = type->ref;
168   }
169
170   while (attrs)
171   {
172     int t = get_attrv(attrs, ATTR_POINTERTYPE);
173
174     if (t == RPC_FC_FP || t == RPC_FC_OP || t == RPC_FC_UP)
175       return 0;
176
177     if (t == RPC_FC_RP)
178       return 1;
179
180     if (type)
181     {
182       attrs = type->attrs;
183       type = type->ref;
184     }
185     else
186       attrs = NULL;
187   }
188
189   return 1;                             /* Default is RPC_FC_RP.  */
190 }
191
192 static int need_delegation(const type_t *iface)
193 {
194     return iface->ref && iface->ref->ref && iface->ref->ignore;
195 }
196
197 static void proxy_check_pointers( const var_list_t *args )
198 {
199   const var_t *arg;
200
201   if (!args) return;
202   LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry )
203   {
204     if (is_var_ptr(arg) && cant_be_null(arg)) {
205         print_proxy( "if(!%s)\n", arg->name );
206         indent++;
207         print_proxy( "RpcRaiseException(RPC_X_NULL_REF_POINTER);\n");
208         indent--;
209     }
210   }
211 }
212
213 static void free_variable( const var_t *arg, const char *local_var_prefix )
214 {
215   unsigned int type_offset = arg->type->typestring_offset;
216   expr_t *iid;
217   type_t *type = arg->type;
218   expr_t *size = get_size_is_expr(type, arg->name);
219
220   if (size)
221   {
222     print_proxy( "__frame->_StubMsg.MaxCount = " );
223     write_expr(proxy, size, 0, 1, NULL, NULL, local_var_prefix);
224     fprintf(proxy, ";\n\n");
225     print_proxy( "NdrClearOutParameters( &__frame->_StubMsg, ");
226     fprintf(proxy, "&__MIDL_TypeFormatString.Format[%u], ", type_offset );
227     fprintf(proxy, "(void*)%s );\n", arg->name );
228     return;
229   }
230
231   switch( type->type )
232   {
233   case RPC_FC_BYTE:
234   case RPC_FC_CHAR:
235   case RPC_FC_WCHAR:
236   case RPC_FC_SHORT:
237   case RPC_FC_USHORT:
238   case RPC_FC_ENUM16:
239   case RPC_FC_LONG:
240   case RPC_FC_ULONG:
241   case RPC_FC_ENUM32:
242   case RPC_FC_STRUCT:
243     break;
244
245   case RPC_FC_FP:
246   case RPC_FC_IP:
247     iid = get_attrp( arg->attrs, ATTR_IIDIS );
248     if( iid )
249     {
250       print_proxy( "__frame->_StubMsg.MaxCount = (ULONG_PTR) " );
251       write_expr(proxy, iid, 1, 1, NULL, NULL, local_var_prefix);
252       print_proxy( ";\n\n" );
253     }
254     print_proxy( "NdrClearOutParameters( &__frame->_StubMsg, ");
255     fprintf(proxy, "&__MIDL_TypeFormatString.Format[%u], ", type_offset );
256     fprintf(proxy, "(void*)%s );\n", arg->name );
257     break;
258
259   default:
260     print_proxy("/* FIXME: %s code for %s type %d missing */\n", __FUNCTION__, arg->name, type->type );
261   }
262 }
263
264 static void proxy_free_variables( var_list_t *args, const char *local_var_prefix )
265 {
266   const var_t *arg;
267
268   if (!args) return;
269   LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry )
270     if (is_attr(arg->attrs, ATTR_OUT))
271     {
272       free_variable( arg, local_var_prefix );
273       fprintf(proxy, "\n");
274     }
275 }
276
277 static void gen_proxy(type_t *iface, const func_t *cur, int idx,
278                       unsigned int proc_offset)
279 {
280   var_t *def = cur->def;
281   int has_ret = !is_void(get_func_return_type(cur));
282   int has_full_pointer = is_full_pointer_function(cur);
283   const char *callconv = get_attrp(def->type->attrs, ATTR_CALLCONV);
284   if (!callconv) callconv = "";
285
286   indent = 0;
287   print_proxy( "static void __finally_%s_%s_Proxy( struct __proxy_frame *__frame )\n",
288                iface->name, get_name(def) );
289   print_proxy( "{\n");
290   indent++;
291   if (has_full_pointer) write_full_pointer_free(proxy, indent, cur);
292   print_proxy( "NdrProxyFreeBuffer( __frame->This, &__frame->_StubMsg );\n" );
293   indent--;
294   print_proxy( "}\n");
295   print_proxy( "\n");
296
297   write_type_decl_left(proxy, get_func_return_type(cur));
298   print_proxy( " %s %s_%s_Proxy(\n", callconv, iface->name, get_name(def));
299   write_args(proxy, cur->args, iface->name, 1, TRUE);
300   print_proxy( ")\n");
301   print_proxy( "{\n");
302   indent ++;
303   print_proxy( "struct __proxy_frame __f, * const __frame = &__f;\n" );
304   /* local variables */
305   if (has_ret) {
306     print_proxy( "" );
307     write_type_decl_left(proxy, get_func_return_type(cur));
308     print_proxy( " _RetVal;\n");
309   }
310   print_proxy( "RPC_MESSAGE _RpcMessage;\n" );
311   if (has_ret) {
312     if (decl_indirect(get_func_return_type(cur)))
313       print_proxy("void *_p_%s = &%s;\n",
314                  "_RetVal", "_RetVal");
315   }
316   print_proxy( "\n");
317
318   print_proxy( "RpcExceptionInit( __proxy_filter, __finally_%s_%s_Proxy );\n", iface->name, get_name(def) );
319   print_proxy( "__frame->This = This;\n" );
320
321   if (has_full_pointer)
322     write_full_pointer_init(proxy, indent, cur, FALSE);
323
324   /* FIXME: trace */
325   clear_output_vars( cur->args );
326
327   print_proxy( "RpcTryExcept\n" );
328   print_proxy( "{\n" );
329   indent++;
330   print_proxy( "NdrProxyInitialize(This, &_RpcMessage, &__frame->_StubMsg, &Object_StubDesc, %d);\n", idx);
331   proxy_check_pointers( cur->args );
332
333   print_proxy( "RpcTryFinally\n" );
334   print_proxy( "{\n" );
335   indent++;
336
337   write_remoting_arguments(proxy, indent, cur, "", PASS_IN, PHASE_BUFFERSIZE);
338
339   print_proxy( "NdrProxyGetBuffer(This, &__frame->_StubMsg);\n" );
340
341   write_remoting_arguments(proxy, indent, cur, "", PASS_IN, PHASE_MARSHAL);
342
343   print_proxy( "NdrProxySendReceive(This, &__frame->_StubMsg);\n" );
344   fprintf(proxy, "\n");
345   print_proxy( "__frame->_StubMsg.BufferStart = _RpcMessage.Buffer;\n" );
346   print_proxy( "__frame->_StubMsg.BufferEnd   = __frame->_StubMsg.BufferStart + _RpcMessage.BufferLength;\n\n" );
347
348   print_proxy("if ((_RpcMessage.DataRepresentation & 0xffff) != NDR_LOCAL_DATA_REPRESENTATION)\n");
349   indent++;
350   print_proxy("NdrConvert( &__frame->_StubMsg, &__MIDL_ProcFormatString.Format[%u]);\n", proc_offset );
351   indent--;
352   fprintf(proxy, "\n");
353
354   write_remoting_arguments(proxy, indent, cur, "", PASS_OUT, PHASE_UNMARSHAL);
355
356   if (has_ret)
357   {
358       if (decl_indirect(get_func_return_type(cur)))
359           print_proxy("MIDL_memset(&%s, 0, sizeof(%s));\n", "_RetVal", "_RetVal");
360       else if (is_ptr(get_func_return_type(cur)) || is_array(get_func_return_type(cur)))
361           print_proxy("%s = 0;\n", "_RetVal");
362       write_remoting_arguments(proxy, indent, cur, "", PASS_RETURN, PHASE_UNMARSHAL);
363   }
364
365   indent--;
366   print_proxy( "}\n");
367   print_proxy( "RpcFinally\n" );
368   print_proxy( "{\n" );
369   indent++;
370   print_proxy( "__finally_%s_%s_Proxy( __frame );\n", iface->name, get_name(def) );
371   indent--;
372   print_proxy( "}\n");
373   print_proxy( "RpcEndFinally\n" );
374   indent--;
375   print_proxy( "}\n" );
376   print_proxy( "RpcExcept(__frame->_StubMsg.dwStubPhase != PROXY_SENDRECEIVE)\n" );
377   print_proxy( "{\n" );
378   if (has_ret) {
379     indent++;
380     proxy_free_variables( cur->args, "" );
381     print_proxy( "_RetVal = NdrProxyErrorHandler(RpcExceptionCode());\n" );
382     indent--;
383   }
384   print_proxy( "}\n" );
385   print_proxy( "RpcEndExcept\n" );
386
387   if (has_ret) {
388     print_proxy( "return _RetVal;\n" );
389   }
390   indent--;
391   print_proxy( "}\n");
392   print_proxy( "\n");
393 }
394
395 static void gen_stub(type_t *iface, const func_t *cur, const char *cas,
396                      unsigned int proc_offset)
397 {
398   var_t *def = cur->def;
399   const var_t *arg;
400   int has_ret = !is_void(get_func_return_type(cur));
401   int has_full_pointer = is_full_pointer_function(cur);
402
403   indent = 0;
404   print_proxy( "struct __frame_%s_%s_Stub\n{\n", iface->name, get_name(def));
405   indent++;
406   print_proxy( "__DECL_EXCEPTION_FRAME\n" );
407   print_proxy( "MIDL_STUB_MESSAGE _StubMsg;\n");
408   print_proxy( "%s * _This;\n", iface->name );
409   declare_stub_args( proxy, indent, cur );
410   indent--;
411   print_proxy( "};\n\n" );
412
413   print_proxy( "static void __finally_%s_%s_Stub(", iface->name, get_name(def) );
414   print_proxy( " struct __frame_%s_%s_Stub *__frame )\n{\n", iface->name, get_name(def) );
415   indent++;
416   write_remoting_arguments(proxy, indent, cur, "__frame->", PASS_OUT, PHASE_FREE);
417   if (has_full_pointer)
418     write_full_pointer_free(proxy, indent, cur);
419   indent--;
420   print_proxy( "}\n\n" );
421
422   print_proxy( "void __RPC_STUB %s_%s_Stub(\n", iface->name, get_name(def));
423   indent++;
424   print_proxy( "IRpcStubBuffer* This,\n");
425   print_proxy( "IRpcChannelBuffer *_pRpcChannelBuffer,\n");
426   print_proxy( "PRPC_MESSAGE _pRpcMessage,\n");
427   print_proxy( "DWORD* _pdwStubPhase)\n");
428   indent--;
429   print_proxy( "{\n");
430   indent++;
431   print_proxy( "struct __frame_%s_%s_Stub __f, * const __frame = &__f;\n\n",
432                iface->name, get_name(def) );
433
434   print_proxy("__frame->_This = (%s*)((CStdStubBuffer*)This)->pvServerObject;\n\n", iface->name);
435
436   /* FIXME: trace */
437
438   print_proxy("NdrStubInitialize(_pRpcMessage, &__frame->_StubMsg, &Object_StubDesc, _pRpcChannelBuffer);\n");
439   fprintf(proxy, "\n");
440   print_proxy( "RpcExceptionInit( 0, __finally_%s_%s_Stub );\n", iface->name, get_name(def) );
441
442   write_parameters_init(proxy, indent, cur, "__frame->");
443
444   print_proxy("RpcTryFinally\n");
445   print_proxy("{\n");
446   indent++;
447   if (has_full_pointer)
448     write_full_pointer_init(proxy, indent, cur, TRUE);
449   print_proxy("if ((_pRpcMessage->DataRepresentation & 0xffff) != NDR_LOCAL_DATA_REPRESENTATION)\n");
450   indent++;
451   print_proxy("NdrConvert( &__frame->_StubMsg, &__MIDL_ProcFormatString.Format[%u]);\n", proc_offset );
452   indent--;
453   fprintf(proxy, "\n");
454
455   write_remoting_arguments(proxy, indent, cur, "__frame->", PASS_IN, PHASE_UNMARSHAL);
456   fprintf(proxy, "\n");
457
458   assign_stub_out_args( proxy, indent, cur, "__frame->" );
459
460   print_proxy("*_pdwStubPhase = STUB_CALL_SERVER;\n");
461   fprintf(proxy, "\n");
462   print_proxy("");
463   if (has_ret) fprintf(proxy, "__frame->_RetVal = ");
464   if (cas) fprintf(proxy, "%s_%s_Stub", iface->name, cas);
465   else fprintf(proxy, "__frame->_This->lpVtbl->%s", get_name(def));
466   fprintf(proxy, "(__frame->_This");
467
468   if (cur->args)
469   {
470       LIST_FOR_EACH_ENTRY( arg, cur->args, const var_t, entry )
471           fprintf(proxy, ", %s__frame->%s", arg->type->declarray ? "*" : "", arg->name);
472   }
473   fprintf(proxy, ");\n");
474   fprintf(proxy, "\n");
475   print_proxy("*_pdwStubPhase = STUB_MARSHAL;\n");
476   fprintf(proxy, "\n");
477
478   write_remoting_arguments(proxy, indent, cur, "__frame->", PASS_OUT, PHASE_BUFFERSIZE);
479
480   if (!is_void(get_func_return_type(cur)))
481     write_remoting_arguments(proxy, indent, cur, "__frame->", PASS_RETURN, PHASE_BUFFERSIZE);
482
483   print_proxy("NdrStubGetBuffer(This, _pRpcChannelBuffer, &__frame->_StubMsg);\n");
484
485   write_remoting_arguments(proxy, indent, cur, "__frame->", PASS_OUT, PHASE_MARSHAL);
486   fprintf(proxy, "\n");
487
488   /* marshall the return value */
489   if (!is_void(get_func_return_type(cur)))
490     write_remoting_arguments(proxy, indent, cur, "__frame->", PASS_RETURN, PHASE_MARSHAL);
491
492   indent--;
493   print_proxy("}\n");
494   print_proxy("RpcFinally\n");
495   print_proxy("{\n");
496   indent++;
497   print_proxy( "__finally_%s_%s_Stub( __frame );\n", iface->name, get_name(def) );
498   indent--;
499   print_proxy("}\n");
500   print_proxy("RpcEndFinally\n");
501
502   print_proxy("_pRpcMessage->BufferLength = __frame->_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer;\n");
503   indent--;
504
505   print_proxy("}\n");
506   print_proxy("\n");
507 }
508
509 static int count_methods(type_t *iface)
510 {
511     const func_t *cur;
512     int count = 0;
513
514     if (iface->ref) count = count_methods(iface->ref);
515     if (iface->funcs)
516         LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
517             if (!is_callas(cur->def->attrs)) count++;
518     return count;
519 }
520
521 static int write_proxy_methods(type_t *iface, int skip)
522 {
523   const func_t *cur;
524   int i = 0;
525
526   if (iface->ref) i = write_proxy_methods(iface->ref, need_delegation(iface));
527   if (iface->funcs) LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry ) {
528     var_t *def = cur->def;
529     if (!is_callas(def->attrs)) {
530       if (i) fprintf(proxy, ",\n");
531       if (skip) print_proxy( "0  /* %s_%s_Proxy */", iface->name, get_name(def));
532       else print_proxy( "%s_%s_Proxy", iface->name, get_name(def));
533       i++;
534     }
535   }
536   return i;
537 }
538
539 static int write_stub_methods(type_t *iface, int skip)
540 {
541   const func_t *cur;
542   int i = 0;
543
544   if (iface->ref) i = write_stub_methods(iface->ref, need_delegation(iface));
545   else return i; /* skip IUnknown */
546
547   if (iface->funcs) LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry ) {
548     var_t *def = cur->def;
549     if (!is_local(def->attrs)) {
550       if (i) fprintf(proxy,",\n");
551       if (skip) print_proxy("STUB_FORWARDING_FUNCTION");
552       else print_proxy( "%s_%s_Stub", iface->name, get_name(def));
553       i++;
554     }
555   }
556   return i;
557 }
558
559 static void write_proxy(type_t *iface, unsigned int *proc_offset)
560 {
561   int midx = -1, count;
562   const func_t *cur;
563
564   /* FIXME: check for [oleautomation], shouldn't generate proxies/stubs if specified */
565
566   fprintf(proxy, "/*****************************************************************************\n");
567   fprintf(proxy, " * %s interface\n", iface->name);
568   fprintf(proxy, " */\n");
569   if (iface->funcs) LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
570   {
571     const var_t *def = cur->def;
572     if (!is_local(def->attrs)) {
573       const var_t *cas = is_callas(def->attrs);
574       const char *cname = cas ? cas->name : NULL;
575       int idx = cur->idx;
576       if (cname) {
577           const func_t *m;
578           LIST_FOR_EACH_ENTRY( m, iface->funcs, const func_t, entry )
579               if (!strcmp(m->def->name, cname))
580               {
581                   idx = m->idx;
582                   break;
583               }
584       }
585       gen_proxy(iface, cur, idx, *proc_offset);
586       gen_stub(iface, cur, cname, *proc_offset);
587       *proc_offset += get_size_procformatstring_func( cur );
588       if (midx == -1) midx = idx;
589       else if (midx != idx) error("method index mismatch in write_proxy\n");
590       midx++;
591     }
592   }
593
594   count = count_methods(iface);
595   if (midx != -1 && midx != count) error("invalid count %u/%u\n", count, midx);
596
597   /* proxy vtable */
598   print_proxy( "static const CINTERFACE_PROXY_VTABLE(%d) _%sProxyVtbl =\n", count, iface->name);
599   print_proxy( "{\n");
600   indent++;
601   print_proxy( "{\n", iface->name);
602   indent++;
603   print_proxy( "&IID_%s,\n", iface->name);
604   indent--;
605   print_proxy( "},\n");
606   print_proxy( "{\n");
607   indent++;
608   write_proxy_methods(iface, FALSE);
609   fprintf(proxy, "\n");
610   indent--;
611   print_proxy( "}\n");
612   indent--;
613   print_proxy( "};\n");
614   fprintf(proxy, "\n\n");
615
616   /* stub vtable */
617   print_proxy( "static const PRPC_STUB_FUNCTION %s_table[] =\n", iface->name);
618   print_proxy( "{\n");
619   indent++;
620   write_stub_methods(iface, FALSE);
621   fprintf(proxy, "\n");
622   indent--;
623   fprintf(proxy, "};\n");
624   print_proxy( "\n");
625   print_proxy( "static %sCInterfaceStubVtbl _%sStubVtbl =\n",
626                need_delegation(iface) ? "" : "const ", iface->name);
627   print_proxy( "{\n");
628   indent++;
629   print_proxy( "{\n");
630   indent++;
631   print_proxy( "&IID_%s,\n", iface->name);
632   print_proxy( "0,\n");
633   print_proxy( "%d,\n", count);
634   print_proxy( "&%s_table[-3],\n", iface->name);
635   indent--;
636   print_proxy( "},\n", iface->name);
637   print_proxy( "{\n");
638   indent++;
639   print_proxy( "CStdStubBuffer_%s\n", need_delegation(iface) ? "DELEGATING_METHODS" : "METHODS");
640   indent--;
641   print_proxy( "}\n");
642   indent--;
643   print_proxy( "};\n");
644   print_proxy( "\n");
645 }
646
647 static int does_any_iface(const statement_list_t *stmts, type_pred_t pred)
648 {
649   const statement_t *stmt;
650
651   if (stmts)
652     LIST_FOR_EACH_ENTRY(stmt, stmts, const statement_t, entry)
653     {
654       if (stmt->type == STMT_LIBRARY)
655       {
656           if (does_any_iface(stmt->u.lib->stmts, pred))
657               return TRUE;
658       }
659       else if (stmt->type == STMT_TYPE && stmt->u.type->type == RPC_FC_IP)
660       {
661         if (pred(stmt->u.type))
662           return TRUE;
663       }
664     }
665
666   return FALSE;
667 }
668
669 int need_proxy(const type_t *iface)
670 {
671   return is_object(iface->attrs) && !is_local(iface->attrs);
672 }
673
674 int need_stub(const type_t *iface)
675 {
676   return !is_object(iface->attrs) && !is_local(iface->attrs);
677 }
678
679 int need_proxy_file(const statement_list_t *stmts)
680 {
681   return does_any_iface(stmts, need_proxy);
682 }
683
684 int need_stub_files(const statement_list_t *stmts)
685 {
686   return does_any_iface(stmts, need_stub);
687 }
688
689 static void write_proxy_stmts(const statement_list_t *stmts, unsigned int *proc_offset)
690 {
691   const statement_t *stmt;
692   if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
693   {
694     if (stmt->type == STMT_LIBRARY)
695       write_proxy_stmts(stmt->u.lib->stmts, proc_offset);
696     else if (stmt->type == STMT_TYPE && stmt->u.type->type == RPC_FC_IP)
697     {
698       if (need_proxy(stmt->u.type))
699         write_proxy(stmt->u.type, proc_offset);
700     }
701   }
702 }
703
704 static int cmp_iid( const void *ptr1, const void *ptr2 )
705 {
706     const type_t * const *iface1 = ptr1;
707     const type_t * const *iface2 = ptr2;
708     const UUID *uuid1 = get_attrp( (*iface1)->attrs, ATTR_UUID );
709     const UUID *uuid2 = get_attrp( (*iface2)->attrs, ATTR_UUID );
710     return memcmp( uuid1, uuid2, sizeof(UUID) );
711 }
712
713 static void build_iface_list( const statement_list_t *stmts, type_t **ifaces[], int *count )
714 {
715     const statement_t *stmt;
716
717     if (!stmts) return;
718     LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
719     {
720         if (stmt->type == STMT_LIBRARY)
721             build_iface_list(stmt->u.lib->stmts, ifaces, count);
722         else if (stmt->type == STMT_TYPE && stmt->u.type->type == RPC_FC_IP)
723         {
724             type_t *iface = stmt->u.type;
725             if (iface->ref && need_proxy(iface))
726             {
727                 *ifaces = xrealloc( *ifaces, (*count + 1) * sizeof(*ifaces) );
728                 (*ifaces)[(*count)++] = iface;
729             }
730         }
731     }
732 }
733
734 static type_t **sort_interfaces( const statement_list_t *stmts, int *count )
735 {
736     type_t **ifaces = NULL;
737
738     *count = 0;
739     build_iface_list( stmts, &ifaces, count );
740     qsort( ifaces, *count, sizeof(*ifaces), cmp_iid );
741     return ifaces;
742 }
743
744 static void write_proxy_routines(const statement_list_t *stmts)
745 {
746   int expr_eval_routines;
747   unsigned int proc_offset = 0;
748
749   write_formatstringsdecl(proxy, indent, stmts, need_proxy);
750   write_stubdescproto();
751   write_proxy_stmts(stmts, &proc_offset);
752
753   expr_eval_routines = write_expr_eval_routines(proxy, proxy_token);
754   if (expr_eval_routines)
755       write_expr_eval_routine_list(proxy, proxy_token);
756   write_user_quad_list(proxy);
757   write_stubdesc(expr_eval_routines);
758
759   print_proxy( "#if !defined(__RPC_WIN%u__)\n", pointer_size == 8 ? 64 : 32);
760   print_proxy( "#error Currently only Wine and WIN32 are supported.\n");
761   print_proxy( "#endif\n");
762   print_proxy( "\n");
763   write_procformatstring(proxy, stmts, need_proxy);
764   write_typeformatstring(proxy, stmts, need_proxy);
765
766 }
767
768 void write_proxies(const statement_list_t *stmts)
769 {
770   char *file_id = proxy_token;
771   int i, count, have_baseiid;
772   type_t **interfaces;
773
774   if (!do_proxies) return;
775   if (do_everything && !need_proxy_file(stmts)) return;
776
777   init_proxy(stmts);
778   if(!proxy) return;
779
780   if (do_win32 && do_win64)
781   {
782       fprintf(proxy, "\n#ifndef _WIN64\n\n");
783       pointer_size = 4;
784       write_proxy_routines( stmts );
785       fprintf(proxy, "\n#else /* _WIN64 */\n\n");
786       pointer_size = 8;
787       write_proxy_routines( stmts );
788       fprintf(proxy, "#endif /* _WIN64 */\n\n");
789   }
790   else if (do_win32)
791   {
792       pointer_size = 4;
793       write_proxy_routines( stmts );
794   }
795   else if (do_win64)
796   {
797       pointer_size = 8;
798       write_proxy_routines( stmts );
799   }
800
801   interfaces = sort_interfaces(stmts, &count);
802   fprintf(proxy, "static const CInterfaceProxyVtbl* const _%s_ProxyVtblList[] =\n", file_id);
803   fprintf(proxy, "{\n");
804   for (i = 0; i < count; i++)
805       fprintf(proxy, "    (const CInterfaceProxyVtbl*)&_%sProxyVtbl,\n", interfaces[i]->name);
806   fprintf(proxy, "    0\n");
807   fprintf(proxy, "};\n");
808   fprintf(proxy, "\n");
809
810   fprintf(proxy, "static const CInterfaceStubVtbl* const _%s_StubVtblList[] =\n", file_id);
811   fprintf(proxy, "{\n");
812   for (i = 0; i < count; i++)
813       fprintf(proxy, "    &_%sStubVtbl,\n", interfaces[i]->name);
814   fprintf(proxy, "    0\n");
815   fprintf(proxy, "};\n");
816   fprintf(proxy, "\n");
817
818   fprintf(proxy, "static PCInterfaceName const _%s_InterfaceNamesList[] =\n", file_id);
819   fprintf(proxy, "{\n");
820   for (i = 0; i < count; i++)
821       fprintf(proxy, "    \"%s\",\n", interfaces[i]->name);
822   fprintf(proxy, "    0\n");
823   fprintf(proxy, "};\n");
824   fprintf(proxy, "\n");
825
826   if ((have_baseiid = does_any_iface(stmts, need_delegation)))
827   {
828       fprintf(proxy, "static const IID * _%s_BaseIIDList[] =\n", file_id);
829       fprintf(proxy, "{\n");
830       for (i = 0; i < count; i++)
831       {
832           if (need_delegation(interfaces[i]))
833               fprintf( proxy, "    &IID_%s,  /* %s */\n", interfaces[i]->ref->name, interfaces[i]->name );
834           else
835               fprintf( proxy, "    0,\n" );
836       }
837       fprintf(proxy, "    0\n");
838       fprintf(proxy, "};\n");
839       fprintf(proxy, "\n");
840   }
841
842   fprintf(proxy, "static int __stdcall _%s_IID_Lookup(const IID* pIID, int* pIndex)\n", file_id);
843   fprintf(proxy, "{\n");
844   fprintf(proxy, "    int low = 0, high = %d;\n", count - 1);
845   fprintf(proxy, "\n");
846   fprintf(proxy, "    while (low <= high)\n");
847   fprintf(proxy, "    {\n");
848   fprintf(proxy, "        int pos = (low + high) / 2;\n");
849   fprintf(proxy, "        int res = IID_GENERIC_CHECK_IID(_%s, pIID, pos);\n", file_id);
850   fprintf(proxy, "        if (!res) { *pIndex = pos; return 1; }\n");
851   fprintf(proxy, "        if (res > 0) low = pos + 1;\n");
852   fprintf(proxy, "        else high = pos - 1;\n");
853   fprintf(proxy, "    }\n");
854   fprintf(proxy, "    return 0;\n");
855   fprintf(proxy, "}\n");
856   fprintf(proxy, "\n");
857
858   fprintf(proxy, "const ExtendedProxyFileInfo %s_ProxyFileInfo DECLSPEC_HIDDEN =\n", file_id);
859   fprintf(proxy, "{\n");
860   fprintf(proxy, "    (const PCInterfaceProxyVtblList*)_%s_ProxyVtblList,\n", file_id);
861   fprintf(proxy, "    (const PCInterfaceStubVtblList*)_%s_StubVtblList,\n", file_id);
862   fprintf(proxy, "    _%s_InterfaceNamesList,\n", file_id);
863   if (have_baseiid) fprintf(proxy, "    _%s_BaseIIDList,\n", file_id);
864   else fprintf(proxy, "    0,\n");
865   fprintf(proxy, "    _%s_IID_Lookup,\n", file_id);
866   fprintf(proxy, "    %d,\n", count);
867   fprintf(proxy, "    1,\n");
868   fprintf(proxy, "    0,\n");
869   fprintf(proxy, "    0,\n");
870   fprintf(proxy, "    0,\n");
871   fprintf(proxy, "    0\n");
872   fprintf(proxy, "};\n");
873
874   fclose(proxy);
875 }