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)
71 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
72 if (var->type->type != RPC_FC_BIND_PRIMITIVE)
73 print_server("%s = 0;\n", var->name);
75 fprintf(server, "\n");
79 static void declare_args(const func_t *func)
81 int in_attr, out_attr;
88 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
90 const expr_t *size_is = get_attrp(var->attrs, ATTR_SIZEIS);
91 int has_size = size_is && (size_is->type != EXPR_VOID);
92 int is_string = is_attr(var->attrs, ATTR_STRING);
94 in_attr = is_attr(var->attrs, ATTR_IN);
95 out_attr = is_attr(var->attrs, ATTR_OUT);
96 if (!out_attr && !in_attr)
99 if (!in_attr && !has_size && !is_string)
103 write_type(server, var->type, NULL, var->tname);
104 for (indirection = 0; indirection < var->ptr_level - 1; indirection++)
105 fprintf(server, "*");
106 fprintf(server, " _W%u;\n", i++);
110 write_type(server, var->type, var, var->tname);
111 fprintf(server, " ");
112 write_name(server, var);
113 write_array(server, var->array, 0);
114 fprintf(server, ";\n");
119 static void assign_out_args(const func_t *func)
121 int in_attr, out_attr;
124 const expr_t *size_is;
130 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
132 int is_string = is_attr(var->attrs, ATTR_STRING);
133 size_is = get_attrp(var->attrs, ATTR_SIZEIS);
134 has_size = size_is && (size_is->type != EXPR_VOID);
135 in_attr = is_attr(var->attrs, ATTR_IN);
136 out_attr = is_attr(var->attrs, ATTR_OUT);
137 if (!out_attr && !in_attr)
143 write_name(server, var);
148 type_t *type = var->type;
150 fprintf(server, " = NdrAllocate(&_StubMsg, ");
151 write_expr(server, size_is, 1);
152 size = get_type_memsize(type);
153 fprintf(server, " * %u);\n", size);
157 fprintf(server, " = &_W%u;\n", i);
158 if (var->ptr_level > 1)
159 print_server("_W%u = 0;\n", i);
168 fprintf(server, "\n");
172 static void write_function_stubs(type_t *iface, unsigned int *proc_offset, unsigned int *type_offset)
174 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
175 int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
178 const var_t* explicit_handle_var;
180 if (!iface->funcs) return;
181 LIST_FOR_EACH_ENTRY( func, iface->funcs, const func_t, entry )
183 const var_t *def = func->def;
184 unsigned long buffer_size = 0;
185 unsigned int type_offset_func;
187 /* check for a defined binding handle */
188 explicit_handle_var = get_explicit_handle_var(func);
191 if (!explicit_handle_var)
193 error("%s() does not define an explicit binding handle!\n", def->name);
197 else if (implicit_handle)
199 if (explicit_handle_var)
201 error("%s() must not define a binding handle!\n", def->name);
206 fprintf(server, "void __RPC_STUB\n");
207 fprintf(server, "%s_", iface->name);
208 write_name(server, def);
209 fprintf(server, "(\n");
211 print_server("PRPC_MESSAGE _pRpcMessage)\n");
214 /* write the functions body */
215 fprintf(server, "{\n");
218 /* declare return value '_RetVal' */
219 if (!is_void(def->type, NULL))
222 write_type(server, def->type, def, def->tname);
223 fprintf(server, " _RetVal;\n");
226 /* Declare arguments */
229 print_server("MIDL_STUB_MESSAGE _StubMsg;\n");
230 print_server("RPC_STATUS _Status;\n");
231 fprintf(server, "\n");
234 print_server("((void)(_Status));\n");
235 print_server("NdrServerInitializeNew(\n");
237 print_server("_pRpcMessage,\n");
238 print_server("&_StubMsg,\n");
239 print_server("&%s_StubDesc);\n", iface->name);
241 fprintf(server, "\n");
243 write_parameters_init(func);
245 if (explicit_handle_var)
247 print_server("%s = _pRpcMessage->Handle;\n", explicit_handle_var->name);
248 fprintf(server, "\n");
251 print_server("RpcTryFinally\n");
254 print_server("RpcTryExcept\n");
260 print_server("if ((_pRpcMessage->DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
262 print_server("NdrConvert(\n");
264 print_server("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
265 print_server("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", *proc_offset);
267 fprintf(server, "\n");
269 /* make a copy so we don't increment the type offset twice */
270 type_offset_func = *type_offset;
272 /* unmarshall arguments */
273 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_IN, PHASE_UNMARSHAL);
276 print_server("if (_StubMsg.Buffer > _StubMsg.BufferEnd)\n");
279 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
284 print_server("RpcExcept(RPC_BAD_STUB_DATA_EXCEPTION_FILTER)\n");
287 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
290 print_server("RpcEndExcept\n");
291 fprintf(server, "\n");
293 /* Assign 'out' arguments */
294 assign_out_args(func);
296 /* Call the real server function */
297 if (!is_void(def->type, NULL))
298 print_server("_RetVal = ");
301 write_name(server, def);
307 fprintf(server, "(\n");
309 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
314 fprintf(server, ",\n");
316 write_name(server, var);
318 fprintf(server, ");\n");
323 fprintf(server, "();\n");
328 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
330 if (is_attr(var->attrs, ATTR_OUT))
332 unsigned int alignment;
333 buffer_size += get_required_buffer_size(var, &alignment, PASS_OUT);
334 buffer_size += alignment;
339 if (!is_void(def->type, NULL))
341 unsigned int alignment;
342 buffer_size += get_required_buffer_size(def, &alignment, PASS_RETURN);
343 buffer_size += alignment;
346 if (has_out_arg_or_return(func))
348 fprintf(server, "\n");
349 print_server("_StubMsg.BufferLength = %u;\n", buffer_size);
351 type_offset_func = *type_offset;
352 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_BUFFERSIZE);
354 print_server("_pRpcMessage->BufferLength = _StubMsg.BufferLength;\n");
355 fprintf(server, "\n");
356 print_server("_Status = I_RpcGetBuffer(_pRpcMessage);\n");
357 print_server("if (_Status)\n");
359 print_server("RpcRaiseException(_Status);\n");
361 fprintf(server, "\n");
362 print_server("_StubMsg.Buffer = (unsigned char *)_pRpcMessage->Buffer;\n");
363 fprintf(server, "\n");
366 type_offset_func = *type_offset;
368 /* marshall arguments */
369 write_remoting_arguments(server, indent, func, type_offset, PASS_OUT, PHASE_MARSHAL);
371 /* marshall the return value */
372 if (!is_void(def->type, NULL))
373 print_phase_basetype(server, indent, PHASE_MARSHAL, PASS_RETURN, def, "_RetVal");
377 print_server("RpcFinally\n");
381 write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_FREE);
385 print_server("RpcEndFinally\n");
387 /* calculate buffer length */
388 fprintf(server, "\n");
389 print_server("_pRpcMessage->BufferLength =\n");
391 print_server("(unsigned int)(_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer);\n");
394 fprintf(server, "}\n");
395 fprintf(server, "\n");
397 /* update proc_offset */
400 LIST_FOR_EACH_ENTRY( var, func->args, const var_t, entry )
401 *proc_offset += get_size_procformatstring_var(var);
403 if (!is_void(def->type, NULL))
404 *proc_offset += get_size_procformatstring_var(def);
406 *proc_offset += 2; /* FC_END and FC_PAD */
411 static void write_dispatchtable(type_t *iface)
413 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
414 unsigned long method_count = 0;
417 print_server("static RPC_DISPATCH_FUNCTION %s_table[] =\n", iface->name);
421 if (iface->funcs) LIST_FOR_EACH_ENTRY( func, iface->funcs, const func_t, entry )
423 var_t *def = func->def;
425 print_server("%s_", iface->name);
426 write_name(server, def);
427 fprintf(server, ",\n");
433 print_server("};\n");
434 print_server("RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable =\n", iface->name, LOWORD(ver), HIWORD(ver));
437 print_server("%u,\n", method_count);
438 print_server("%s_table\n", iface->name);
440 print_server("};\n");
441 fprintf(server, "\n");
445 static void write_stubdescdecl(type_t *iface)
447 print_server("static const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
448 fprintf(server, "\n");
452 static void write_stubdescriptor(type_t *iface, int expr_eval_routines)
454 print_server("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
457 print_server("(void *)& %s___RpcServerInterface,\n", iface->name);
458 print_server("MIDL_user_allocate,\n");
459 print_server("MIDL_user_free,\n");
462 print_server("0,\n");
464 print_server("},\n");
465 print_server("0,\n");
466 print_server("0,\n");
467 if (expr_eval_routines)
468 print_server("ExprEvalRoutines,\n");
470 print_server("0,\n");
471 print_server("0,\n");
472 print_server("__MIDL_TypeFormatString.Format,\n");
473 print_server("1, /* -error bounds_check flag */\n");
474 print_server("0x10001, /* Ndr library version */\n");
475 print_server("0,\n");
476 print_server("0x50100a4, /* MIDL Version 5.1.164 */\n");
477 print_server("0,\n");
478 print_server("0,\n");
479 print_server("0, /* notify & notify_flag routine table */\n");
480 print_server("1, /* Flags */\n");
481 print_server("0, /* Reserved3 */\n");
482 print_server("0, /* Reserved4 */\n");
483 print_server("0 /* Reserved5 */\n");
485 print_server("};\n");
486 fprintf(server, "\n");
490 static void write_serverinterfacedecl(type_t *iface)
492 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
493 UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
495 print_server("extern RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable;\n", iface->name, LOWORD(ver), HIWORD(ver));
496 fprintf(server, "\n");
497 print_server("static const RPC_SERVER_INTERFACE %s___RpcServerInterface =\n", iface->name );
500 print_server("sizeof(RPC_SERVER_INTERFACE),\n");
501 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",
502 uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
503 uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
504 uuid->Data4[7], LOWORD(ver), HIWORD(ver));
505 print_server("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
506 print_server("&%s_v%d_%d_DispatchTable,\n", iface->name, LOWORD(ver), HIWORD(ver));
507 print_server("0,\n");
508 print_server("0,\n");
509 print_server("0,\n");
510 print_server("0,\n");
511 print_server("0,\n");
513 print_server("};\n");
515 print_server("RPC_IF_HANDLE %s_ServerIfHandle = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
516 iface->name, iface->name);
518 print_server("RPC_IF_HANDLE %s_v%d_%d_s_ifspec = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
519 iface->name, LOWORD(ver), HIWORD(ver), iface->name);
520 fprintf(server, "\n");
524 static void init_server(void)
528 if (!(server = fopen(server_name, "w")))
529 error("Could not open %s for output\n", server_name);
531 print_server("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", PACKAGE_VERSION, input_name);
532 print_server("#include <string.h>\n");
533 fprintf(server, "\n");
534 print_server("#include \"%s\"\n", header_name);
535 fprintf(server, "\n");
539 void write_server(ifref_list_t *ifaces)
541 unsigned int proc_offset = 0;
542 unsigned int type_offset = 2;
547 if (do_everything && !ifaces)
554 write_formatstringsdecl(server, indent, ifaces, 0);
556 if (ifaces) LIST_FOR_EACH_ENTRY( iface, ifaces, ifref_t, entry )
558 if (is_object(iface->iface->attrs) || is_local(iface->iface->attrs))
561 fprintf(server, "/*****************************************************************************\n");
562 fprintf(server, " * %s interface\n", iface->iface->name);
563 fprintf(server, " */\n");
564 fprintf(server, "\n");
566 if (iface->iface->funcs)
568 int expr_eval_routines;
570 write_serverinterfacedecl(iface->iface);
571 write_stubdescdecl(iface->iface);
573 write_function_stubs(iface->iface, &proc_offset, &type_offset);
575 print_server("#if !defined(__RPC_WIN32__)\n");
576 print_server("#error Invalid build platform for this stub.\n");
577 print_server("#endif\n");
579 fprintf(server, "\n");
581 expr_eval_routines = write_expr_eval_routines(server, iface->iface->name);
582 if (expr_eval_routines)
583 write_expr_eval_routine_list(server, iface->iface->name);
585 write_stubdescriptor(iface->iface, expr_eval_routines);
586 write_dispatchtable(iface->iface);
590 fprintf(server, "\n");
592 write_procformatstring(server, ifaces, 0);
593 write_typeformatstring(server, ifaces, 0);