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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
42 #include "typelib_struct.h"
46 static int indent = 0;
49 static int print_server(const char *format, ...)
55 if (format[0] != '\n')
56 for (i = 0; i < indent; i++)
58 r = vfprintf(server, format, va);
64 static void write_parameters_init(const func_t *func)
72 while (NEXT_LINK(var)) var = NEXT_LINK(var);
75 if (var->type->type != RPC_FC_BIND_PRIMITIVE)
76 print_server("%s = 0;\n", var->name);
80 fprintf(server, "\n");
84 static void declare_args(const func_t *func)
86 int in_attr, out_attr;
94 while (NEXT_LINK(var)) var = NEXT_LINK(var);
97 const expr_t *size_is = get_attrp(var->attrs, ATTR_SIZEIS);
98 int has_size = size_is && (size_is->type != EXPR_VOID);
99 int is_string = is_attr(var->attrs, ATTR_STRING);
101 in_attr = is_attr(var->attrs, ATTR_IN);
102 out_attr = is_attr(var->attrs, ATTR_OUT);
103 if (!out_attr && !in_attr)
106 if (!in_attr && !has_size && !is_string)
110 write_type(server, var->type, NULL, var->tname);
111 for (indirection = 0; indirection < var->ptr_level - 1; indirection++)
112 fprintf(server, "*");
113 fprintf(server, " _W%u;\n", i++);
117 write_type(server, var->type, var, var->tname);
118 fprintf(server, " ");
119 write_name(server, var);
120 write_array(server, var->array, 0);
121 fprintf(server, ";\n");
123 var = PREV_LINK(var);
128 static void assign_out_args(const func_t *func)
130 int in_attr, out_attr;
133 const expr_t *size_is;
140 while (NEXT_LINK(var)) var = NEXT_LINK(var);
143 int is_string = is_attr(var->attrs, ATTR_STRING);
144 size_is = get_attrp(var->attrs, ATTR_SIZEIS);
145 has_size = size_is && (size_is->type != EXPR_VOID);
146 in_attr = is_attr(var->attrs, ATTR_IN);
147 out_attr = is_attr(var->attrs, ATTR_OUT);
148 if (!out_attr && !in_attr)
154 write_name(server, var);
159 type_t *type = var->type;
161 fprintf(server, " = NdrAllocate(&_StubMsg, ");
162 write_expr(server, size_is, 1);
163 size = get_type_memsize(type);
164 fprintf(server, " * %u);\n", size);
168 fprintf(server, " = &_W%u;\n", i);
169 if (var->ptr_level > 1)
170 print_server("_W%u = 0;\n", i);
177 var = PREV_LINK(var);
181 fprintf(server, "\n");
185 static void write_function_stubs(type_t *iface, unsigned int *proc_offset, unsigned int *type_offset)
187 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
188 int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
189 const func_t *func = iface->funcs;
191 const var_t* explicit_handle_var;
193 while (NEXT_LINK(func)) func = NEXT_LINK(func);
196 const var_t *def = func->def;
197 unsigned long buffer_size = 0;
198 unsigned int type_offset_func;
200 /* check for a defined binding handle */
201 explicit_handle_var = get_explicit_handle_var(func);
204 if (!explicit_handle_var)
206 error("%s() does not define an explicit binding handle!\n", def->name);
210 else if (implicit_handle)
212 if (explicit_handle_var)
214 error("%s() must not define a binding handle!\n", def->name);
219 fprintf(server, "void __RPC_STUB\n");
220 fprintf(server, "%s_", iface->name);
221 write_name(server, def);
222 fprintf(server, "(\n");
224 print_server("PRPC_MESSAGE _pRpcMessage)\n");
227 /* write the functions body */
228 fprintf(server, "{\n");
231 /* declare return value '_RetVal' */
232 if (!is_void(def->type, NULL))
235 write_type(server, def->type, def, def->tname);
236 fprintf(server, " _RetVal;\n");
239 /* Declare arguments */
242 print_server("MIDL_STUB_MESSAGE _StubMsg;\n");
243 print_server("RPC_STATUS _Status;\n");
244 fprintf(server, "\n");
247 print_server("((void)(_Status));\n");
248 print_server("NdrServerInitializeNew(\n");
250 print_server("_pRpcMessage,\n");
251 print_server("&_StubMsg,\n");
252 print_server("&%s_StubDesc);\n", iface->name);
254 fprintf(server, "\n");
256 write_parameters_init(func);
258 if (explicit_handle_var)
260 print_server("%s = _pRpcMessage->Handle;\n", explicit_handle_var->name);
261 fprintf(server, "\n");
264 print_server("RpcTryFinally\n");
267 print_server("RpcTryExcept\n");
273 print_server("if ((_pRpcMessage->DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
275 print_server("NdrConvert(\n");
277 print_server("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
278 print_server("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", *proc_offset);
280 fprintf(server, "\n");
282 /* make a copy so we don't increment the type offset twice */
283 type_offset_func = *type_offset;
285 /* unmarshall arguments */
286 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_IN, PHASE_UNMARSHAL);
289 print_server("if (_StubMsg.Buffer > _StubMsg.BufferEnd)\n");
292 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
297 print_server("RpcExcept(RPC_BAD_STUB_DATA_EXCEPTION_FILTER)\n");
300 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
303 print_server("RpcEndExcept\n");
304 fprintf(server, "\n");
306 /* Assign 'out' arguments */
307 assign_out_args(func);
309 /* Call the real server function */
310 if (!is_void(def->type, NULL))
311 print_server("_RetVal = ");
314 write_name(server, def);
320 fprintf(server, "(\n");
323 while (NEXT_LINK(var)) var = NEXT_LINK(var);
329 fprintf(server, ",\n");
331 write_name(server, var);
332 var = PREV_LINK(var);
334 fprintf(server, ");\n");
339 fprintf(server, "();\n");
344 const var_t *var = func->args;
345 while (NEXT_LINK(var)) var = NEXT_LINK(var);
348 if (is_attr(var->attrs, ATTR_OUT))
350 unsigned int alignment;
351 buffer_size += get_required_buffer_size(var, &alignment, PASS_OUT);
352 buffer_size += alignment;
355 var = PREV_LINK(var);
359 if (!is_void(def->type, NULL))
361 unsigned int alignment;
362 buffer_size += get_required_buffer_size(def, &alignment, PASS_RETURN);
363 buffer_size += alignment;
366 if (has_out_arg_or_return(func))
368 fprintf(server, "\n");
369 print_server("_StubMsg.BufferLength = %u;\n", buffer_size);
371 type_offset_func = *type_offset;
372 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_BUFFERSIZE);
374 print_server("_pRpcMessage->BufferLength = _StubMsg.BufferLength;\n");
375 fprintf(server, "\n");
376 print_server("_Status = I_RpcGetBuffer(_pRpcMessage);\n");
377 print_server("if (_Status)\n");
379 print_server("RpcRaiseException(_Status);\n");
381 fprintf(server, "\n");
382 print_server("_StubMsg.Buffer = (unsigned char *)_pRpcMessage->Buffer;\n");
383 fprintf(server, "\n");
386 type_offset_func = *type_offset;
388 /* marshall arguments */
389 write_remoting_arguments(server, indent, func, type_offset, PASS_OUT, PHASE_MARSHAL);
391 /* marshall the return value */
392 if (!is_void(def->type, NULL))
393 print_phase_basetype(server, indent, PHASE_MARSHAL, PASS_RETURN, def, "_RetVal");
397 print_server("RpcFinally\n");
401 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_FREE);
405 print_server("RpcEndFinally\n");
407 /* calculate buffer length */
408 fprintf(server, "\n");
409 print_server("_pRpcMessage->BufferLength =\n");
411 print_server("(unsigned int)(_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer);\n");
414 fprintf(server, "}\n");
415 fprintf(server, "\n");
417 /* update proc_offset */
421 while (NEXT_LINK(var)) var = NEXT_LINK(var);
424 *proc_offset += get_size_procformatstring_var(var);
425 var = PREV_LINK(var);
428 if (!is_void(def->type, NULL))
429 *proc_offset += get_size_procformatstring_var(def);
431 *proc_offset += 2; /* FC_END and FC_PAD */
433 func = PREV_LINK(func);
438 static void write_dispatchtable(type_t *iface)
440 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
441 unsigned long method_count = 0;
442 func_t *func = iface->funcs;
444 print_server("static RPC_DISPATCH_FUNCTION %s_table[] =\n", iface->name);
447 while (NEXT_LINK(func)) func = NEXT_LINK(func);
450 var_t *def = func->def;
452 print_server("%s_", iface->name);
453 write_name(server, def);
454 fprintf(server, ",\n");
457 func = PREV_LINK(func);
461 print_server("};\n");
462 print_server("RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable =\n", iface->name, LOWORD(ver), HIWORD(ver));
465 print_server("%u,\n", method_count);
466 print_server("%s_table\n", iface->name);
468 print_server("};\n");
469 fprintf(server, "\n");
473 static void write_stubdescdecl(type_t *iface)
475 print_server("static const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
476 fprintf(server, "\n");
480 static void write_stubdescriptor(type_t *iface, int expr_eval_routines)
482 print_server("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
485 print_server("(void *)& %s___RpcServerInterface,\n", iface->name);
486 print_server("MIDL_user_allocate,\n");
487 print_server("MIDL_user_free,\n");
490 print_server("0,\n");
492 print_server("},\n");
493 print_server("0,\n");
494 print_server("0,\n");
495 if (expr_eval_routines)
496 print_server("ExprEvalRoutines,\n");
498 print_server("0,\n");
499 print_server("0,\n");
500 print_server("__MIDL_TypeFormatString.Format,\n");
501 print_server("1, /* -error bounds_check flag */\n");
502 print_server("0x10001, /* Ndr library version */\n");
503 print_server("0,\n");
504 print_server("0x50100a4, /* MIDL Version 5.1.164 */\n");
505 print_server("0,\n");
506 print_server("0,\n");
507 print_server("0, /* notify & notify_flag routine table */\n");
508 print_server("1, /* Flags */\n");
509 print_server("0, /* Reserved3 */\n");
510 print_server("0, /* Reserved4 */\n");
511 print_server("0 /* Reserved5 */\n");
513 print_server("};\n");
514 fprintf(server, "\n");
518 static void write_serverinterfacedecl(type_t *iface)
520 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
521 UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
523 print_server("extern RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable;\n", iface->name, LOWORD(ver), HIWORD(ver));
524 fprintf(server, "\n");
525 print_server("static const RPC_SERVER_INTERFACE %s___RpcServerInterface =\n", iface->name );
528 print_server("sizeof(RPC_SERVER_INTERFACE),\n");
529 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",
530 uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
531 uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
532 uuid->Data4[7], LOWORD(ver), HIWORD(ver));
533 print_server("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
534 print_server("&%s_v%d_%d_DispatchTable,\n", iface->name, LOWORD(ver), HIWORD(ver));
535 print_server("0,\n");
536 print_server("0,\n");
537 print_server("0,\n");
538 print_server("0,\n");
539 print_server("0,\n");
541 print_server("};\n");
543 print_server("RPC_IF_HANDLE %s_ServerIfHandle = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
544 iface->name, iface->name);
546 print_server("RPC_IF_HANDLE %s_v%d_%d_s_ifspec = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
547 iface->name, LOWORD(ver), HIWORD(ver), iface->name);
548 fprintf(server, "\n");
552 static void init_server(void)
556 if (!(server = fopen(server_name, "w")))
557 error("Could not open %s for output\n", server_name);
559 print_server("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", PACKAGE_VERSION, input_name);
560 print_server("#include <string.h>\n");
561 fprintf(server, "\n");
562 print_server("#include \"%s\"\n", header_name);
563 fprintf(server, "\n");
567 void write_server(ifref_t *ifaces)
569 unsigned int proc_offset = 0;
570 unsigned int type_offset = 2;
571 ifref_t *iface = ifaces;
583 write_formatstringsdecl(server, indent, ifaces, 0);
585 for (; iface; iface = PREV_LINK(iface))
587 if (is_object(iface->iface->attrs) || is_local(iface->iface->attrs))
590 fprintf(server, "/*****************************************************************************\n");
591 fprintf(server, " * %s interface\n", iface->iface->name);
592 fprintf(server, " */\n");
593 fprintf(server, "\n");
595 if (iface->iface->funcs)
597 int expr_eval_routines;
599 write_serverinterfacedecl(iface->iface);
600 write_stubdescdecl(iface->iface);
602 write_function_stubs(iface->iface, &proc_offset, &type_offset);
604 print_server("#if !defined(__RPC_WIN32__)\n");
605 print_server("#error Invalid build platform for this stub.\n");
606 print_server("#endif\n");
608 fprintf(server, "\n");
610 expr_eval_routines = write_expr_eval_routines(server, iface->iface->name);
611 if (expr_eval_routines)
612 write_expr_eval_routine_list(server, iface->iface->name);
614 write_stubdescriptor(iface->iface, expr_eval_routines);
615 write_dispatchtable(iface->iface);
619 fprintf(server, "\n");
621 write_procformatstring(server, ifaces, 0);
622 write_typeformatstring(server, ifaces, 0);