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"
40 static int indent = 0;
43 static void print_server(const char *format, ...)
47 print(server, indent, format, va);
51 static void write_function_stubs(type_t *iface, unsigned int *proc_offset)
53 const statement_t *stmt;
55 const var_t* explicit_handle_var;
57 STATEMENTS_FOR_EACH_FUNC( stmt, type_iface_get_stmts(iface) )
59 const var_t *func = stmt->u.var;
60 int has_full_pointer = is_full_pointer_function(func);
62 /* check for a defined binding handle */
63 explicit_handle_var = get_explicit_handle_var(func);
65 print_server("struct __frame_%s_%s\n{\n", iface->name, get_name(func));
67 print_server("__DECL_EXCEPTION_FRAME\n");
68 print_server("MIDL_STUB_MESSAGE _StubMsg;\n");
70 /* Declare arguments */
71 declare_stub_args(server, indent, func);
74 print_server("};\n\n");
76 print_server("static void __finally_%s_%s(", iface->name, get_name(func));
77 fprintf(server," struct __frame_%s_%s *__frame )\n{\n", iface->name, get_name(func));
80 write_remoting_arguments(server, indent, func, "__frame->", PASS_OUT, PHASE_FREE);
83 write_full_pointer_free(server, indent, func);
86 print_server("}\n\n");
88 print_server("void __RPC_STUB %s_%s( PRPC_MESSAGE _pRpcMessage )\n", iface->name, get_name(func));
90 /* write the functions body */
91 fprintf(server, "{\n");
93 print_server("struct __frame_%s_%s __f, * const __frame = &__f;\n", iface->name, get_name(func));
94 if (has_out_arg_or_return(func)) print_server("RPC_STATUS _Status;\n");
95 fprintf(server, "\n");
97 print_server("NdrServerInitializeNew(\n");
99 print_server("_pRpcMessage,\n");
100 print_server("&__frame->_StubMsg,\n");
101 print_server("&%s_StubDesc);\n", iface->name);
103 fprintf(server, "\n");
104 print_server( "RpcExceptionInit( __server_filter, __finally_%s_%s );\n", iface->name, get_name(func));
106 write_parameters_init(server, indent, func, "__frame->");
108 if (explicit_handle_var)
110 print_server("__frame->%s = _pRpcMessage->Handle;\n", explicit_handle_var->name);
111 fprintf(server, "\n");
114 print_server("RpcTryFinally\n");
117 print_server("RpcTryExcept\n");
121 if (has_full_pointer)
122 write_full_pointer_init(server, indent, func, TRUE);
124 if (type_get_function_args(func->type))
126 print_server("if ((_pRpcMessage->DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
128 print_server("NdrConvert(&__frame->_StubMsg, (PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n",
131 fprintf(server, "\n");
133 /* unmarshall arguments */
134 write_remoting_arguments(server, indent, func, "__frame->", PASS_IN, PHASE_UNMARSHAL);
137 print_server("if (__frame->_StubMsg.Buffer > __frame->_StubMsg.BufferEnd)\n");
140 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
145 print_server("RpcExcept(RPC_BAD_STUB_DATA_EXCEPTION_FILTER)\n");
148 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
151 print_server("RpcEndExcept\n");
152 fprintf(server, "\n");
154 /* Assign 'out' arguments */
155 assign_stub_out_args(server, indent, func, "__frame->");
157 /* Call the real server function */
158 if (!is_void(type_function_get_rettype(func->type)))
159 print_server("__frame->_RetVal = ");
162 fprintf(server, "%s%s", prefix_server, get_name(func));
164 if (type_get_function_args(func->type))
168 fprintf(server, "(\n");
170 LIST_FOR_EACH_ENTRY( var, type_get_function_args(func->type), const var_t, entry )
175 fprintf(server, ",\n");
176 if (is_context_handle(var->type))
178 /* if the context_handle attribute appears in the chain of types
179 * without pointers being followed, then the context handle must
180 * be direct, otherwise it is a pointer */
181 int is_ch_ptr = is_aliaschain_attr(var->type, ATTR_CONTEXTHANDLE) ? FALSE : TRUE;
183 write_type_decl_left(server, var->type);
184 fprintf(server, ")%sNDRSContextValue(__frame->%s)",
185 is_ch_ptr ? "" : "*", var->name);
189 print_server("%s__frame->%s", var->type->declarray ? "*" : "", var->name);
192 fprintf(server, ");\n");
197 fprintf(server, "();\n");
200 if (has_out_arg_or_return(func))
202 write_remoting_arguments(server, indent, func, "__frame->", PASS_OUT, PHASE_BUFFERSIZE);
204 if (!is_void(type_function_get_rettype(func->type)))
205 write_remoting_arguments(server, indent, func, "__frame->", PASS_RETURN, PHASE_BUFFERSIZE);
207 print_server("_pRpcMessage->BufferLength = __frame->_StubMsg.BufferLength;\n");
208 fprintf(server, "\n");
209 print_server("_Status = I_RpcGetBuffer(_pRpcMessage);\n");
210 print_server("if (_Status)\n");
212 print_server("RpcRaiseException(_Status);\n");
214 fprintf(server, "\n");
215 print_server("__frame->_StubMsg.Buffer = _pRpcMessage->Buffer;\n");
216 fprintf(server, "\n");
219 /* marshall arguments */
220 write_remoting_arguments(server, indent, func, "__frame->", PASS_OUT, PHASE_MARSHAL);
222 /* marshall the return value */
223 if (!is_void(type_function_get_rettype(func->type)))
224 write_remoting_arguments(server, indent, func, "__frame->", PASS_RETURN, PHASE_MARSHAL);
228 print_server("RpcFinally\n");
231 print_server("__finally_%s_%s( __frame );\n", iface->name, get_name(func));
234 print_server("RpcEndFinally\n");
236 /* calculate buffer length */
237 fprintf(server, "\n");
238 print_server("_pRpcMessage->BufferLength = __frame->_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer;\n");
240 fprintf(server, "}\n");
241 fprintf(server, "\n");
243 /* update proc_offset */
244 *proc_offset += get_size_procformatstring_func( func );
249 static void write_dispatchtable(type_t *iface)
251 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
252 unsigned long method_count = 0;
253 const statement_t *stmt;
255 print_server("static RPC_DISPATCH_FUNCTION %s_table[] =\n", iface->name);
259 STATEMENTS_FOR_EACH_FUNC( stmt, type_iface_get_stmts(iface) )
261 var_t *func = stmt->u.var;
262 print_server("%s_%s,\n", iface->name, get_name(func));
267 print_server("};\n");
268 print_server("static RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable =\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
271 print_server("%u,\n", method_count);
272 print_server("%s_table\n", iface->name);
274 print_server("};\n");
275 fprintf(server, "\n");
279 static void write_stubdescdecl(type_t *iface)
281 print_server("static const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
282 fprintf(server, "\n");
286 static void write_stubdescriptor(type_t *iface, int expr_eval_routines)
288 print_server("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
291 print_server("(void *)& %s___RpcServerInterface,\n", iface->name);
292 print_server("MIDL_user_allocate,\n");
293 print_server("MIDL_user_free,\n");
296 print_server("0,\n");
298 print_server("},\n");
299 print_server("0,\n");
300 print_server("0,\n");
301 if (expr_eval_routines)
302 print_server("ExprEvalRoutines,\n");
304 print_server("0,\n");
305 print_server("0,\n");
306 print_server("__MIDL_TypeFormatString.Format,\n");
307 print_server("1, /* -error bounds_check flag */\n");
308 print_server("0x10001, /* Ndr library version */\n");
309 print_server("0,\n");
310 print_server("0x50100a4, /* MIDL Version 5.1.164 */\n");
311 print_server("0,\n");
312 print_server("%s,\n", list_empty(&user_type_list) ? "0" : "UserMarshalRoutines");
313 print_server("0, /* notify & notify_flag routine table */\n");
314 print_server("1, /* Flags */\n");
315 print_server("0, /* Reserved3 */\n");
316 print_server("0, /* Reserved4 */\n");
317 print_server("0 /* Reserved5 */\n");
319 print_server("};\n");
320 fprintf(server, "\n");
324 static void write_serverinterfacedecl(type_t *iface)
326 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
327 UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
328 const str_list_t *endpoints = get_attrp(iface->attrs, ATTR_ENDPOINT);
330 if (endpoints) write_endpoints( server, iface->name, endpoints );
332 print_server("static RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable;\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
333 fprintf(server, "\n");
334 print_server("static const RPC_SERVER_INTERFACE %s___RpcServerInterface =\n", iface->name );
337 print_server("sizeof(RPC_SERVER_INTERFACE),\n");
338 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",
339 uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
340 uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
341 uuid->Data4[7], MAJORVERSION(ver), MINORVERSION(ver));
342 print_server("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
343 print_server("&%s_v%d_%d_DispatchTable,\n", iface->name, MAJORVERSION(ver), MINORVERSION(ver));
346 print_server("%u,\n", list_count(endpoints));
347 print_server("(PRPC_PROTSEQ_ENDPOINT)%s__RpcProtseqEndpoint,\n", iface->name);
351 print_server("0,\n");
352 print_server("0,\n");
354 print_server("0,\n");
355 print_server("0,\n");
356 print_server("0,\n");
358 print_server("};\n");
360 print_server("RPC_IF_HANDLE %s_ServerIfHandle DECLSPEC_HIDDEN = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
361 iface->name, iface->name);
363 print_server("RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec DECLSPEC_HIDDEN = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
364 prefix_server, iface->name, MAJORVERSION(ver), MINORVERSION(ver), iface->name);
365 fprintf(server, "\n");
369 static void init_server(void)
373 if (!(server = fopen(server_name, "w")))
374 error("Could not open %s for output\n", server_name);
376 print_server("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", PACKAGE_VERSION, input_name);
377 print_server("#include <string.h>\n");
378 fprintf(server, "\n");
379 print_server("#include \"%s\"\n", header_name);
381 print_server( "#ifndef DECLSPEC_HIDDEN\n");
382 print_server( "#define DECLSPEC_HIDDEN\n");
383 print_server( "#endif\n");
385 write_exceptions( server );
387 print_server("struct __server_frame\n");
389 print_server(" __DECL_EXCEPTION_FRAME\n");
390 print_server(" MIDL_STUB_MESSAGE _StubMsg;\n");
391 print_server("};\n");
393 print_server("static int __server_filter( struct __server_frame *__frame )\n");
394 print_server( "{\n");
395 print_server( " return RPC_BAD_STUB_DATA_EXCEPTION_FILTER;\n");
396 print_server( "}\n");
401 static void write_server_stmts(const statement_list_t *stmts, int expr_eval_routines, unsigned int *proc_offset)
403 const statement_t *stmt;
404 if (stmts) LIST_FOR_EACH_ENTRY( stmt, stmts, const statement_t, entry )
406 if (stmt->type == STMT_LIBRARY)
407 write_server_stmts(stmt->u.lib->stmts, expr_eval_routines, proc_offset);
408 else if (stmt->type == STMT_TYPE && stmt->u.type->type == RPC_FC_IP)
410 type_t *iface = stmt->u.type;
411 if (!need_stub(iface))
414 fprintf(server, "/*****************************************************************************\n");
415 fprintf(server, " * %s interface\n", iface->name);
416 fprintf(server, " */\n");
417 fprintf(server, "\n");
419 if (statements_has_func(type_iface_get_stmts(iface)))
421 write_serverinterfacedecl(iface);
422 write_stubdescdecl(iface);
424 write_function_stubs(iface, proc_offset);
426 print_server("#if !defined(__RPC_WIN%u__)\n", pointer_size == 8 ? 64 : 32);
427 print_server("#error Invalid build platform for this stub.\n");
428 print_server("#endif\n");
430 fprintf(server, "\n");
431 write_stubdescriptor(iface, expr_eval_routines);
432 write_dispatchtable(iface);
438 static void write_server_routines(const statement_list_t *stmts)
440 unsigned int proc_offset = 0;
441 int expr_eval_routines;
443 write_formatstringsdecl(server, indent, stmts, need_stub);
444 expr_eval_routines = write_expr_eval_routines(server, server_token);
445 if (expr_eval_routines)
446 write_expr_eval_routine_list(server, server_token);
447 write_user_quad_list(server);
449 write_server_stmts(stmts, expr_eval_routines, &proc_offset);
451 fprintf(server, "\n");
453 write_procformatstring(server, stmts, need_stub);
454 write_typeformatstring(server, stmts, need_stub);
457 void write_server(const statement_list_t *stmts)
461 if (do_everything && !need_stub_files(stmts))
468 if (do_win32 && do_win64)
470 fprintf(server, "\n#ifndef _WIN64\n\n");
472 write_server_routines( stmts );
473 fprintf(server, "\n#else /* _WIN64 */\n\n");
475 write_server_routines( stmts );
476 fprintf(server, "\n#endif /* _WIN64 */\n");
481 write_server_routines( stmts );
486 write_server_routines( stmts );