widl: Only assign variables if not a string and only create a local variable if not...
[wine/dibdrv.git] / tools / widl / server.c
blob518896514ae1c961d417bdb4bd00a1f9aeae8a03
1 /*
2 * IDL Compiler
4 * Copyright 2005-2006 Eric Kohl
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <stdio.h>
25 #include <stdlib.h>
26 #ifdef HAVE_UNISTD_H
27 # include <unistd.h>
28 #endif
29 #include <string.h>
30 #include <assert.h>
31 #include <ctype.h>
32 #include <signal.h>
34 #include "widl.h"
35 #include "utils.h"
36 #include "parser.h"
37 #include "header.h"
38 #include "windef.h"
40 #include "widl.h"
41 #include "typelib.h"
42 #include "typelib_struct.h"
43 #include "typegen.h"
45 #define END_OF_LIST(list) \
46 do { \
47 if (list) { \
48 while (NEXT_LINK(list)) \
49 list = NEXT_LINK(list); \
50 } \
51 } while(0)
53 static FILE* server;
54 static int indent = 0;
57 static int print_server(const char *format, ...)
59 va_list va;
60 int i, r;
62 va_start(va, format);
63 for (i = 0; i < indent; i++)
64 fprintf(server, " ");
65 r = vfprintf(server, format, va);
66 va_end(va);
67 return r;
71 static void write_parameters_init(const func_t *func)
73 const var_t *var;
75 if (!func->args)
76 return;
78 var = func->args;
79 while (NEXT_LINK(var)) var = NEXT_LINK(var);
80 while (var)
82 if (var->type->type != RPC_FC_BIND_PRIMITIVE)
83 print_server("%s = 0;\n", var->name);
85 var = PREV_LINK(var);
87 fprintf(server, "\n");
91 static void declare_args(const func_t *func)
93 int in_attr, out_attr;
94 int i = 0;
95 var_t *var;
97 if (!func->args)
98 return;
100 var = func->args;
101 while (NEXT_LINK(var)) var = NEXT_LINK(var);
102 while (var)
104 const expr_t *size_is = get_attrp(var->attrs, ATTR_SIZEIS);
105 int has_size = size_is && (size_is->type != EXPR_VOID);
106 int is_string = is_attr(var->attrs, ATTR_STRING);
108 in_attr = is_attr(var->attrs, ATTR_IN);
109 out_attr = is_attr(var->attrs, ATTR_OUT);
110 if (!out_attr && !in_attr)
111 in_attr = 1;
113 if (!in_attr && !has_size && !is_string)
115 int indirection;
116 print_server("");
117 write_type(server, var->type, NULL, var->tname);
118 for (indirection = 0; indirection < var->ptr_level - 1; indirection++)
119 fprintf(server, "*");
120 fprintf(server, " _W%u;\n", i++);
123 print_server("");
124 write_type(server, var->type, var, var->tname);
125 fprintf(server, " ");
126 write_name(server, var);
127 write_array(server, var->array, 0);
128 fprintf(server, ";\n");
130 var = PREV_LINK(var);
135 static void assign_out_args(const func_t *func)
137 int in_attr, out_attr;
138 int i = 0, sep = 0;
139 var_t *var;
140 const expr_t *size_is;
141 int has_size;
143 if (!func->args)
144 return;
146 var = func->args;
147 while (NEXT_LINK(var)) var = NEXT_LINK(var);
148 while (var)
150 int is_string = is_attr(var->attrs, ATTR_STRING);
151 size_is = get_attrp(var->attrs, ATTR_SIZEIS);
152 has_size = size_is && (size_is->type != EXPR_VOID);
153 in_attr = is_attr(var->attrs, ATTR_IN);
154 out_attr = is_attr(var->attrs, ATTR_OUT);
155 if (!out_attr && !in_attr)
156 in_attr = 1;
158 if (!in_attr)
160 print_server("");
161 write_name(server, var);
163 if (has_size)
165 type_t *type = var->type;
166 while (type->type == 0 && type->ref)
167 type = type->ref;
169 fprintf(server, " = NdrAllocate(&_StubMsg, ");
170 write_expr(server, size_is, 1);
171 fprintf(server, " * %u);\n", get_type_memsize(type));
173 else if (!is_string)
175 fprintf(server, " = &_W%u;\n", i);
176 if (var->ptr_level > 1)
177 print_server("_W%u = 0;\n", i);
178 i++;
181 sep = 1;
184 var = PREV_LINK(var);
187 if (sep)
188 fprintf(server, "\n");
192 static void write_function_stubs(type_t *iface)
194 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
195 int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
196 const func_t *func = iface->funcs;
197 const var_t *var;
198 const var_t* explicit_handle_var;
199 unsigned int proc_offset = 0;
200 unsigned int type_offset = 2;
202 while (NEXT_LINK(func)) func = NEXT_LINK(func);
203 while (func)
205 const var_t *def = func->def;
206 unsigned long buffer_size = 0;
207 unsigned int type_offset_func;
209 /* check for a defined binding handle */
210 explicit_handle_var = get_explicit_handle_var(func);
211 if (explicit_handle)
213 if (!explicit_handle_var)
215 error("%s() does not define an explicit binding handle!\n", def->name);
216 return;
219 else if (implicit_handle)
221 if (explicit_handle_var)
223 error("%s() must not define a binding handle!\n", def->name);
224 return;
228 fprintf(server, "void __RPC_STUB\n");
229 fprintf(server, "%s_", iface->name);
230 write_name(server, def);
231 fprintf(server, "(\n");
232 indent++;
233 print_server("PRPC_MESSAGE _pRpcMessage)\n");
234 indent--;
236 /* write the functions body */
237 fprintf(server, "{\n");
238 indent++;
240 /* declare return value '_RetVal' */
241 if (!is_void(def->type, NULL))
243 print_server("");
244 write_type(server, def->type, def, def->tname);
245 fprintf(server, " _RetVal;\n");
248 /* Declare arguments */
249 declare_args(func);
251 print_server("MIDL_STUB_MESSAGE _StubMsg;\n");
252 print_server("RPC_STATUS _Status;\n");
253 fprintf(server, "\n");
256 print_server("((void)(_Status));\n");
257 print_server("NdrServerInitializeNew(\n");
258 indent++;
259 print_server("_pRpcMessage,\n");
260 print_server("&_StubMsg,\n");
261 print_server("&%s_StubDesc);\n", iface->name);
262 indent--;
263 fprintf(server, "\n");
265 write_parameters_init(func);
267 if (explicit_handle_var)
269 print_server("%s = _pRpcMessage->Handle;\n", explicit_handle_var->name);
270 fprintf(server, "\n");
273 print_server("RpcTryFinally\n");
274 print_server("{\n");
275 indent++;
276 print_server("RpcTryExcept\n");
277 print_server("{\n");
278 indent++;
280 if (func->args)
282 print_server("if ((_pRpcMessage->DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
283 indent++;
284 print_server("NdrConvert(\n");
285 indent++;
286 print_server("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
287 print_server("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", proc_offset);
288 indent -= 2;
289 fprintf(server, "\n");
291 /* make a copy so we don't increment the type offset twice */
292 type_offset_func = type_offset;
294 /* unmarshall arguments */
295 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_IN, PHASE_UNMARSHAL);
298 print_server("if (_StubMsg.Buffer > _StubMsg.BufferEnd)\n");
299 print_server("{\n");
300 indent++;
301 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
302 indent--;
303 print_server("}\n");
304 indent--;
305 print_server("}\n");
306 print_server("RpcExcept(RPC_BAD_STUB_DATA_EXCEPTION_FILTER)\n");
307 print_server("{\n");
308 indent++;
309 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
310 indent--;
311 print_server("}\n");
312 print_server("RpcEndExcept\n");
313 fprintf(server, "\n");
315 /* Assign 'out' arguments */
316 assign_out_args(func);
318 /* Call the real server function */
319 if (!is_void(def->type, NULL))
320 print_server("_RetVal = ");
321 else
322 print_server("");
323 write_name(server, def);
325 if (func->args)
327 int first_arg = 1;
329 fprintf(server, "(\n");
330 indent++;
331 var = func->args;
332 while (NEXT_LINK(var)) var = NEXT_LINK(var);
333 while (var)
335 if (first_arg)
336 first_arg = 0;
337 else
338 fprintf(server, ",\n");
339 print_server("");
340 write_name(server, var);
341 var = PREV_LINK(var);
343 fprintf(server, ");\n");
344 indent--;
346 else
348 fprintf(server, "();\n");
351 if (func->args)
353 const var_t *var = func->args;
354 while (NEXT_LINK(var)) var = NEXT_LINK(var);
355 while (var)
357 if (is_attr(var->attrs, ATTR_OUT))
359 unsigned int alignment;
360 buffer_size += get_required_buffer_size(var, &alignment);
361 buffer_size += alignment;
364 var = PREV_LINK(var);
368 if (!is_void(def->type, NULL))
370 unsigned int alignment;
371 buffer_size += get_required_buffer_size(def, &alignment);
372 buffer_size += alignment;
375 if (has_out_arg_or_return(func))
377 fprintf(server, "\n");
378 print_server("_StubMsg.BufferLength = %u;\n", buffer_size);
380 type_offset_func = type_offset;
381 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_BUFFERSIZE);
383 print_server("_pRpcMessage->BufferLength = _StubMsg.BufferLength;\n");
384 fprintf(server, "\n");
385 print_server("_Status = I_RpcGetBuffer(_pRpcMessage);\n");
386 print_server("if (_Status)\n");
387 indent++;
388 print_server("RpcRaiseException(_Status);\n");
389 indent--;
390 fprintf(server, "\n");
391 print_server("_StubMsg.Buffer = (unsigned char *)_pRpcMessage->Buffer;\n");
392 fprintf(server, "\n");
395 type_offset_func = type_offset;
397 /* marshall arguments */
398 write_remoting_arguments(server, indent, func, &type_offset, PASS_OUT, PHASE_MARSHAL);
400 /* marshall the return value */
401 if (!is_void(def->type, NULL))
402 print_phase_basetype(server, indent, PHASE_MARSHAL, PASS_RETURN, def, "_RetVal");
404 indent--;
405 print_server("}\n");
406 print_server("RpcFinally\n");
407 print_server("{\n");
408 indent++;
410 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_FREE);
412 indent--;
413 print_server("}\n");
414 print_server("RpcEndFinally\n");
416 /* calculate buffer length */
417 fprintf(server, "\n");
418 print_server("_pRpcMessage->BufferLength =\n");
419 indent++;
420 print_server("(unsigned int)(_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer);\n");
421 indent--;
422 indent--;
423 fprintf(server, "}\n");
424 fprintf(server, "\n");
426 /* update proc_offset */
427 if (func->args)
429 var = func->args;
430 while (NEXT_LINK(var)) var = NEXT_LINK(var);
431 while (var)
433 proc_offset += get_size_procformatstring_var(var);
434 var = PREV_LINK(var);
437 if (!is_void(def->type, NULL))
438 proc_offset += get_size_procformatstring_var(def);
439 else
440 proc_offset += 2; /* FC_END and FC_PAD */
442 func = PREV_LINK(func);
447 static void write_dispatchtable(type_t *iface)
449 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
450 unsigned long method_count = 0;
451 func_t *func = iface->funcs;
453 print_server("static RPC_DISPATCH_FUNCTION %s_table[] =\n", iface->name);
454 print_server("{\n");
455 indent++;
456 while (NEXT_LINK(func)) func = NEXT_LINK(func);
457 while (func)
459 var_t *def = func->def;
461 print_server("%s_", iface->name);
462 write_name(server, def);
463 fprintf(server, ",\n");
465 method_count++;
466 func = PREV_LINK(func);
468 print_server("0\n");
469 indent--;
470 print_server("};\n");
471 print_server("RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable =\n", iface->name, LOWORD(ver), HIWORD(ver));
472 print_server("{\n");
473 indent++;
474 print_server("%u,\n", method_count);
475 print_server("%s_table\n", iface->name);
476 indent--;
477 print_server("};\n");
478 fprintf(server, "\n");
482 static void write_stubdescdecl(type_t *iface)
484 print_server("extern const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
485 fprintf(server, "\n");
489 static void write_stubdescriptor(type_t *iface, int expr_eval_routines)
491 print_server("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
492 print_server("{\n");
493 indent++;
494 print_server("(void *)& %s___RpcServerInterface,\n", iface->name);
495 print_server("MIDL_user_allocate,\n");
496 print_server("MIDL_user_free,\n");
497 print_server("{\n");
498 indent++;
499 print_server("0,\n");
500 indent--;
501 print_server("},\n");
502 print_server("0,\n");
503 print_server("0,\n");
504 if (expr_eval_routines)
505 print_server("ExprEvalRoutines,\n");
506 else
507 print_server("0,\n");
508 print_server("0,\n");
509 print_server("__MIDL_TypeFormatString.Format,\n");
510 print_server("1, /* -error bounds_check flag */\n");
511 print_server("0x10001, /* Ndr library version */\n");
512 print_server("0,\n");
513 print_server("0x50100a4, /* MIDL Version 5.1.164 */\n");
514 print_server("0,\n");
515 print_server("0,\n");
516 print_server("0, /* notify & notify_flag routine table */\n");
517 print_server("1, /* Flags */\n");
518 print_server("0, /* Reserved3 */\n");
519 print_server("0, /* Reserved4 */\n");
520 print_server("0 /* Reserved5 */\n");
521 indent--;
522 print_server("};\n");
523 fprintf(server, "\n");
527 static void write_serverinterfacedecl(type_t *iface)
529 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
530 UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
532 print_server("extern RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable;\n", iface->name, LOWORD(ver), HIWORD(ver));
533 fprintf(server, "\n");
534 print_server("static const RPC_SERVER_INTERFACE %s___RpcServerInterface =\n", iface->name );
535 print_server("{\n");
536 indent++;
537 print_server("sizeof(RPC_SERVER_INTERFACE),\n");
538 print_server("{{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",
539 uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
540 uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
541 uuid->Data4[7], LOWORD(ver), HIWORD(ver));
542 print_server("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
543 print_server("&%s_v%d_%d_DispatchTable,\n", iface->name, LOWORD(ver), HIWORD(ver));
544 print_server("0,\n");
545 print_server("0,\n");
546 print_server("0,\n");
547 print_server("0,\n");
548 print_server("0,\n");
549 indent--;
550 print_server("};\n");
551 print_server("RPC_IF_HANDLE %s_v%d_%d_s_ifspec = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
552 iface->name, LOWORD(ver), HIWORD(ver), iface->name);
553 fprintf(server, "\n");
556 static void write_formatdesc( const char *str )
558 print_server("typedef struct _MIDL_%s_FORMAT_STRING\n", str );
559 print_server("{\n");
560 indent++;
561 print_server("short Pad;\n");
562 print_server("unsigned char Format[%s_FORMAT_STRING_SIZE];\n", str);
563 indent--;
564 print_server("} MIDL_%s_FORMAT_STRING;\n", str);
565 print_server("\n");
569 static void write_formatstringsdecl(type_t *iface)
571 print_server("#define TYPE_FORMAT_STRING_SIZE %d\n",
572 get_size_typeformatstring(iface));
574 print_server("#define PROC_FORMAT_STRING_SIZE %d\n",
575 get_size_procformatstring(iface));
577 fprintf(server, "\n");
578 write_formatdesc("TYPE");
579 write_formatdesc("PROC");
580 fprintf(server, "\n");
581 print_server("extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
582 print_server("extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
583 print_server("\n");
587 static void init_server(void)
589 if (server)
590 return;
591 if (!(server = fopen(server_name, "w")))
592 error("Could not open %s for output\n", server_name);
594 print_server("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", WIDL_FULLVERSION, input_name);
595 print_server("#include <string.h>\n");
596 fprintf(server, "\n");
597 print_server("#include \"%s\"\n", header_name);
598 fprintf(server, "\n");
602 void write_server(ifref_t *ifaces)
604 ifref_t *iface = ifaces;
606 if (!do_server)
607 return;
608 if (!ifaces)
609 return;
610 END_OF_LIST(iface);
612 init_server();
613 if (!server)
614 return;
616 for (; iface; iface = PREV_LINK(iface))
618 if (is_object(iface->iface->attrs) || is_local(iface->iface->attrs))
619 continue;
621 fprintf(server, "/*****************************************************************************\n");
622 fprintf(server, " * %s interface\n", iface->iface->name);
623 fprintf(server, " */\n");
624 fprintf(server, "\n");
626 if (iface->iface->funcs)
628 int expr_eval_routines;
630 write_formatstringsdecl(iface->iface);
631 write_serverinterfacedecl(iface->iface);
632 write_stubdescdecl(iface->iface);
634 write_function_stubs(iface->iface);
636 print_server("#if !defined(__RPC_WIN32__)\n");
637 print_server("#error Invalid build platform for this stub.\n");
638 print_server("#endif\n");
639 fprintf(server, "\n");
641 write_procformatstring(server, iface->iface);
642 write_typeformatstring(server, iface->iface);
644 fprintf(server, "\n");
646 expr_eval_routines = write_expr_eval_routines(server, iface->iface->name);
647 if (expr_eval_routines)
648 write_expr_eval_routine_list(server, iface->iface->name);
650 write_stubdescriptor(iface->iface, expr_eval_routines);
651 write_dispatchtable(iface->iface);
655 fclose(server);