widl: Start generating type format strings.
[wine] / tools / widl / client.c
1 /*
2  * IDL Compiler
3  *
4  * Copyright 2005 Eric Kohl
5  *
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.
10  *
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.
15  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23  
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <assert.h>
29 #include <ctype.h>
30 #include <signal.h>
31
32 #include "windef.h"
33
34 #include "widl.h"
35 #include "utils.h"
36 #include "parser.h"
37 #include "header.h"
38
39 #include "widltypes.h"
40 #include "typelib.h"
41 #include "typelib_struct.h"
42 #include "typegen.h"
43
44 #define END_OF_LIST(list)       \
45   do {                          \
46     if (list) {                 \
47       while (NEXT_LINK(list))   \
48         list = NEXT_LINK(list); \
49     }                           \
50   } while(0)
51
52 static FILE* client;
53 static int indent = 0;
54
55 static int print_client( const char *format, ... )
56 {
57     va_list va;
58     int i, r;
59
60     va_start(va, format);
61     for (i = 0; i < indent; i++)
62         fprintf(client, "    ");
63     r = vfprintf(client, format, va);
64     va_end(va);
65     return r;
66 }
67
68
69 static void print_message_buffer_size(func_t *func)
70 {
71     unsigned int total_size = 0;
72
73     if (func->args)
74     {
75         var_t *var = func->args;
76         while (NEXT_LINK(var)) var = NEXT_LINK(var);
77         while (var)
78         {
79             unsigned int alignment = 8;
80     
81             switch (var->type->type)
82             {
83             case RPC_FC_BYTE:
84             case RPC_FC_CHAR:
85             case RPC_FC_USMALL:
86             case RPC_FC_SMALL:
87                 total_size += 1;
88                 alignment = 1;
89                 break;
90     
91             case RPC_FC_WCHAR:
92             case RPC_FC_USHORT:
93             case RPC_FC_SHORT:
94                 total_size += 2 + alignment % 2;
95                 alignment = 2;
96                 break;
97     
98             case RPC_FC_ULONG:
99             case RPC_FC_LONG:
100             case RPC_FC_FLOAT:
101             case RPC_FC_ERROR_STATUS_T:
102                 total_size += 4 + alignment % 4;
103                 alignment = 4;
104                 break;
105     
106             case RPC_FC_HYPER:
107             case RPC_FC_DOUBLE:
108                 total_size += 8 + alignment % 8;
109                 alignment = 8;
110                 break;
111     
112             default:
113                 alignment = 1;
114             }
115     
116             var = PREV_LINK(var);
117         }
118     }
119     fprintf(client, " %u", total_size);
120 }
121
122
123 static void write_function_stubs(type_t *iface)
124 {
125     func_t *func = iface->funcs;
126     char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
127     int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
128     var_t *var;
129     int method_count = 0;
130     unsigned int proc_offset = 0;
131
132     while (NEXT_LINK(func)) func = NEXT_LINK(func);
133     while (func)
134     {
135         var_t *def = func->def;
136         var_t* explicit_handle_var;
137
138         /* check for a defined binding handle */
139         explicit_handle_var = get_explicit_handle_var(func);
140         if (explicit_handle)
141         {
142             if (!explicit_handle_var)
143             {
144                 error("%s() does not define an explicit binding handle!\n", def->name);
145                 return;
146             }
147         }
148         else if (implicit_handle)
149         {
150             if (explicit_handle_var)
151             {
152                 error("%s() must not define a binding handle!\n", def->name);
153                 return;
154             }
155         }
156
157         write_type(client, def->type, def, def->tname);
158         fprintf(client, " ");
159         write_name(client, def);
160         fprintf(client, "(\n");
161         indent++;
162         if (func->args)
163             write_args(client, func->args, iface->name, 0, TRUE);
164         else
165             print_client("void");
166         fprintf(client, ")\n");
167         indent--;
168
169         /* write the functions body */
170         fprintf(client, "{\n");
171         indent++;
172
173         /* declare return value '_RetVal' */
174         if (!is_void(def->type, NULL))
175         {
176             print_client("");
177             write_type(client, def->type, def, def->tname);
178             fprintf(client, " _RetVal;\n");
179         }
180
181         if (implicit_handle || explicit_handle_var)
182             print_client("RPC_BINDING_HANDLE _Handle = 0;\n");
183
184         print_client("RPC_MESSAGE _RpcMessage;\n");
185         print_client("MIDL_STUB_MESSAGE _StubMsg;\n");
186         fprintf(client, "\n");
187         print_client("RpcTryFinally\n");
188         print_client("{\n");
189         indent++;
190
191         print_client("NdrClientInitializeNew(\n");
192         indent++;
193         print_client("(PRPC_MESSAGE)&_RpcMessage,\n");
194         print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
195         print_client("(PMIDL_STUB_DESC)&%s_StubDesc,\n", iface->name);
196         print_client("%d);\n", method_count);
197         indent--;
198         fprintf(client, "\n");
199
200         if (implicit_handle)
201         {
202             print_client("_Handle = %s;\n", implicit_handle);
203             fprintf(client, "\n");
204         }
205         else if (explicit_handle_var)
206         {
207             print_client("_Handle = %s;\n", explicit_handle_var->name);
208             fprintf(client, "\n");
209         }
210
211         /* emit the message buffer size */
212         print_client("_StubMsg.BufferLength =");
213         print_message_buffer_size(func);
214         fprintf(client, ";\n");
215
216         print_client("NdrGetBuffer(\n");
217         indent++;
218         print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
219         print_client("_StubMsg.BufferLength,\n");
220         if (implicit_handle || explicit_handle_var)
221             print_client("_Handle);\n");
222         else
223             print_client("%s__MIDL_AutoBindHandle);\n", iface->name);
224         indent--;
225         fprintf(client, "\n");
226
227
228         /* marshal arguments */
229         marshall_arguments(client, indent, func);
230
231         /* send/receive message */
232         /* print_client("NdrNsSendReceive(\n"); */
233         /* print_client("(unsigned char *)_StubMsg.Buffer,\n"); */
234         /* print_client("(RPC_BINDING_HANDLE *) &%s__MIDL_AutoBindHandle);\n", iface->name); */
235         print_client("NdrSendReceive(\n");
236         indent++;
237         print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
238         print_client("(unsigned char *)_StubMsg.Buffer);\n");
239         indent--;
240
241         print_client("_StubMsg.BufferStart = (unsigned char *)_RpcMessage.Buffer;\n");
242         print_client("_StubMsg.BufferEnd = _StubMsg.BufferStart + _RpcMessage.BufferLength;\n");
243
244         /* unmarshal return value */
245         if (!is_void(def->type, NULL))
246         {
247             fprintf(client, "\n");
248
249             print_client("if ((_RpcMessage.DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
250             indent++;
251             print_client("NdrConvert(\n");
252             indent++;
253             print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
254             print_client("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", proc_offset);
255             indent -= 2;
256             fprintf(client, "\n");
257
258             print_client("_RetVal = *((");
259             write_type(client, def->type, def, def->tname);
260             fprintf(client, " *)_StubMsg.Buffer)++;\n");
261         }
262
263         /* update proc_offset */
264         if (func->args)
265         {
266             var = func->args;
267             while (NEXT_LINK(var)) var = NEXT_LINK(var);
268             while (var)
269             {
270                 proc_offset += 2; /* FIXME */
271                 var = PREV_LINK(var);
272             }
273         }
274         proc_offset += 2;  /* FIXME */
275
276         indent--;
277         print_client("}\n");
278         print_client("RpcFinally\n");
279         print_client("{\n");
280         indent++;
281
282
283         /* FIXME: emit client finally code */
284
285         print_client("NdrFreeBuffer((PMIDL_STUB_MESSAGE)&_StubMsg);\n");
286
287         indent--;
288         print_client("}\n");
289         print_client("RpcEndFinally\n");
290
291
292         /* emit return code */
293         if (!is_void(def->type, NULL))
294         {
295             fprintf(client, "\n");
296             print_client("return _RetVal;\n");
297         }
298
299         indent--;
300         fprintf(client, "}\n");
301         fprintf(client, "\n");
302
303         method_count++;
304         func = PREV_LINK(func);
305     }
306 }
307
308
309 static void write_bindinghandledecl(type_t *iface)
310 {
311     print_client("static RPC_BINDING_HANDLE %s__MIDL_AutoBindHandle;\n", iface->name);
312     fprintf(client, "\n");
313 }
314
315
316 static void write_stubdescdecl(type_t *iface)
317 {
318     print_client("extern const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
319     fprintf(client, "\n");
320 }
321
322
323 static void write_stubdescriptor(type_t *iface)
324 {
325     char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
326
327     print_client("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
328     print_client("{\n");
329     indent++;
330     print_client("(void *)& %s___RpcClientInterface,\n", iface->name);
331     print_client("MIDL_user_allocate,\n");
332     print_client("MIDL_user_free,\n");
333     if (implicit_handle)
334         print_client("&%s,\n", implicit_handle);
335     else
336         print_client("&%s__MIDL_AutoBindHandle,\n", iface->name);
337     print_client("0,\n");
338     print_client("0,\n");
339     print_client("0,\n");
340     print_client("0,\n");
341     print_client("__MIDL_TypeFormatString.Format,\n");
342     print_client("1, /* -error bounds_check flag */\n");
343     print_client("0x10001, /* Ndr library version */\n");
344     print_client("0,\n");
345     print_client("0x50100a4, /* MIDL Version 5.1.164 */\n");
346     print_client("0,\n");
347     print_client("0,\n");
348     print_client("0,  /* notify & notify_flag routine table */\n");
349     print_client("1,  /* Flags */\n");
350     print_client("0,  /* Reserved3 */\n");
351     print_client("0,  /* Reserved4 */\n");
352     print_client("0   /* Reserved5 */\n");
353     indent--;
354     print_client("};\n");
355     fprintf(client, "\n");
356 }
357
358
359 static void write_clientinterfacedecl(type_t *iface)
360 {
361     unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
362     UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
363
364     print_client("static const RPC_CLIENT_INTERFACE %s___RpcClientInterface =\n", iface->name );
365     print_client("{\n");
366     indent++;
367     print_client("sizeof(RPC_CLIENT_INTERFACE),\n");
368     print_client("{{0x%08lx,0x%04x,0x%04x,{0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x}},{%d,%d}},\n",
369                  uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
370                  uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
371                  uuid->Data4[7], LOWORD(ver), HIWORD(ver));
372     print_client("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
373     print_client("0,\n");
374     print_client("0,\n");
375     print_client("0,\n");
376     print_client("0,\n");
377     print_client("0,\n");
378     print_client("0,\n");
379     indent--;
380     print_client("};\n");
381     print_client("RPC_IF_HANDLE %s_v%d_%d_c_ifspec = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
382                  iface->name, LOWORD(ver), HIWORD(ver), iface->name);
383     fprintf(client, "\n");
384 }
385
386
387 static void write_formatdesc( const char *str )
388 {
389     print_client("typedef struct _MIDL_%s_FORMAT_STRING\n", str );
390     print_client("{\n");
391     indent++;
392     print_client("short Pad;\n");
393     print_client("unsigned char Format[%s_FORMAT_STRING_SIZE];\n", str);
394     indent--;
395     print_client("} MIDL_%s_FORMAT_STRING;\n", str);
396     print_client("\n");
397 }
398
399
400 static void write_formatstringsdecl(type_t *iface)
401 {
402     func_t *func;
403     var_t *var;
404     int byte_count = 1;
405
406     print_client("#define TYPE_FORMAT_STRING_SIZE %d\n", 3); /* FIXME */
407
408     /* determine the proc format string size */
409     func = iface->funcs;
410     while (NEXT_LINK(func)) func = NEXT_LINK(func);
411     while (func)
412     {
413         /* argument list size */
414         if (func->args)
415         {
416             var = func->args;
417             while (NEXT_LINK(var)) var = NEXT_LINK(var);
418             while (var)
419             {
420                 byte_count += 2; /* FIXME: determine real size */
421                 var = PREV_LINK(var);
422             }
423         }
424
425         /* return value size */
426         byte_count += 2; /* FIXME: determine real size */
427         func = PREV_LINK(func);
428     }
429     print_client("#define PROC_FORMAT_STRING_SIZE %d\n", byte_count);
430
431     fprintf(client, "\n");
432     write_formatdesc("TYPE");
433     write_formatdesc("PROC");
434     fprintf(client, "\n");
435     print_client("extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
436     print_client("extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
437     print_client("\n");
438 }
439
440
441 static void write_implicithandledecl(type_t *iface)
442 {
443     char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
444
445     if (implicit_handle)
446     {
447         fprintf(client, "handle_t %s;\n", implicit_handle);
448         fprintf(client, "\n");
449     }
450 }
451
452
453 static void init_client(void)
454 {
455     if (client) return;
456     if (!(client = fopen(client_name, "w")))
457         error("Could not open %s for output\n", client_name);
458
459     print_client("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", WIDL_FULLVERSION, input_name);
460     print_client("#include <string.h>\n");
461     print_client("#ifdef _ALPHA_\n");
462     print_client("#include <stdarg.h>\n");
463     print_client("#endif\n");
464     fprintf(client, "\n");
465     print_client("#include \"%s\"\n", header_name);
466     fprintf(client, "\n");
467 }
468
469
470 void write_client(ifref_t *ifaces)
471 {
472     ifref_t *iface = ifaces;
473
474     if (!do_client)
475         return;
476     if (!iface)
477         return;
478     END_OF_LIST(iface);
479
480     init_client();
481     if (!client)
482         return;
483
484     while (iface)
485     {
486         fprintf(client, "/*****************************************************************************\n");
487         fprintf(client, " * %s interface\n", iface->iface->name);
488         fprintf(client, " */\n");
489         fprintf(client, "\n");
490
491         write_formatstringsdecl(iface->iface);
492         write_implicithandledecl(iface->iface);
493
494         write_clientinterfacedecl(iface->iface);
495         write_stubdescdecl(iface->iface);
496         write_bindinghandledecl(iface->iface);
497
498         write_function_stubs(iface->iface);
499         write_stubdescriptor(iface->iface);
500
501         print_client("#if !defined(__RPC_WIN32__)\n");
502         print_client("#error  Invalid build platform for this stub.\n");
503         print_client("#endif\n");
504         fprintf(client, "\n");
505
506         write_procformatstring(client, iface->iface);
507         write_typeformatstring(client, iface->iface);
508
509         fprintf(client, "\n");
510
511         iface = PREV_LINK(iface);
512     }
513
514     fclose(client);
515 }