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
)
55 const var_t
* explicit_handle_var
;
57 if (!iface
->funcs
) return;
58 LIST_FOR_EACH_ENTRY( func
, iface
->funcs
, const func_t
, entry
)
60 const var_t
*def
= func
->def
;
61 int has_full_pointer
= is_full_pointer_function(func
);
63 /* check for a defined binding handle */
64 explicit_handle_var
= get_explicit_handle_var(func
);
66 fprintf(server
, "void __RPC_STUB\n");
67 fprintf(server
, "%s_", iface
->name
);
68 write_name(server
, def
);
69 fprintf(server
, "(\n");
71 print_server("PRPC_MESSAGE _pRpcMessage)\n");
74 /* write the functions body */
75 fprintf(server
, "{\n");
78 /* Declare arguments */
79 declare_stub_args(server
, indent
, func
);
81 print_server("MIDL_STUB_MESSAGE _StubMsg;\n");
82 print_server("RPC_STATUS _Status;\n");
83 fprintf(server
, "\n");
86 print_server("((void)(_Status));\n");
87 print_server("NdrServerInitializeNew(\n");
89 print_server("_pRpcMessage,\n");
90 print_server("&_StubMsg,\n");
91 print_server("&%s_StubDesc);\n", iface
->name
);
93 fprintf(server
, "\n");
95 write_parameters_init(server
, indent
, func
);
97 if (explicit_handle_var
)
99 print_server("%s = _pRpcMessage->Handle;\n", explicit_handle_var
->name
);
100 fprintf(server
, "\n");
103 print_server("RpcTryFinally\n");
106 print_server("RpcTryExcept\n");
110 if (has_full_pointer
)
111 write_full_pointer_init(server
, indent
, func
, TRUE
);
115 print_server("if ((_pRpcMessage->DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
117 print_server("NdrConvert(\n");
119 print_server("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
120 print_server("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", *proc_offset
);
122 fprintf(server
, "\n");
124 /* unmarshall arguments */
125 write_remoting_arguments(server
, indent
, func
, PASS_IN
, PHASE_UNMARSHAL
);
128 print_server("if (_StubMsg.Buffer > _StubMsg.BufferEnd)\n");
131 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
136 print_server("RpcExcept(RPC_BAD_STUB_DATA_EXCEPTION_FILTER)\n");
139 print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
142 print_server("RpcEndExcept\n");
143 fprintf(server
, "\n");
145 /* Assign 'out' arguments */
146 assign_stub_out_args(server
, indent
, func
);
148 /* Call the real server function */
149 if (!is_void(get_func_return_type(func
)))
150 print_server("_RetVal = ");
153 write_prefix_name(server
, prefix_server
, def
);
159 fprintf(server
, "(\n");
161 LIST_FOR_EACH_ENTRY( var
, func
->args
, const var_t
, entry
)
166 fprintf(server
, ",\n");
167 if (is_context_handle(var
->type
))
169 /* if the context_handle attribute appears in the chain of types
170 * without pointers being followed, then the context handle must
171 * be direct, otherwise it is a pointer */
172 int is_ch_ptr
= is_aliaschain_attr(var
->type
, ATTR_CONTEXTHANDLE
) ? FALSE
: TRUE
;
174 write_type_decl_left(server
, var
->type
);
175 fprintf(server
, ")%sNDRSContextValue(%s)", is_ch_ptr
? "" : "*", var
->name
);
180 if (var
->type
->declarray
)
181 fprintf(server
, "*");
182 write_name(server
, var
);
185 fprintf(server
, ");\n");
190 fprintf(server
, "();\n");
193 if (has_out_arg_or_return(func
))
195 write_remoting_arguments(server
, indent
, func
, PASS_OUT
, PHASE_BUFFERSIZE
);
197 if (!is_void(get_func_return_type(func
)))
198 write_remoting_arguments(server
, indent
, func
, PASS_RETURN
, PHASE_BUFFERSIZE
);
200 print_server("_pRpcMessage->BufferLength = _StubMsg.BufferLength;\n");
201 fprintf(server
, "\n");
202 print_server("_Status = I_RpcGetBuffer(_pRpcMessage);\n");
203 print_server("if (_Status)\n");
205 print_server("RpcRaiseException(_Status);\n");
207 fprintf(server
, "\n");
208 print_server("_StubMsg.Buffer = (unsigned char *)_pRpcMessage->Buffer;\n");
209 fprintf(server
, "\n");
212 /* marshall arguments */
213 write_remoting_arguments(server
, indent
, func
, PASS_OUT
, PHASE_MARSHAL
);
215 /* marshall the return value */
216 if (!is_void(get_func_return_type(func
)))
217 write_remoting_arguments(server
, indent
, func
, PASS_RETURN
, PHASE_MARSHAL
);
221 print_server("RpcFinally\n");
225 write_remoting_arguments(server
, indent
, func
, PASS_OUT
, PHASE_FREE
);
227 if (has_full_pointer
)
228 write_full_pointer_free(server
, indent
, func
);
232 print_server("RpcEndFinally\n");
234 /* calculate buffer length */
235 fprintf(server
, "\n");
236 print_server("_pRpcMessage->BufferLength =\n");
238 print_server("(unsigned int)(_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer);\n");
241 fprintf(server
, "}\n");
242 fprintf(server
, "\n");
244 /* update proc_offset */
245 *proc_offset
+= get_size_procformatstring_func( func
);
250 static void write_dispatchtable(type_t
*iface
)
252 unsigned long ver
= get_attrv(iface
->attrs
, ATTR_VERSION
);
253 unsigned long method_count
= 0;
256 print_server("static RPC_DISPATCH_FUNCTION %s_table[] =\n", iface
->name
);
260 if (iface
->funcs
) LIST_FOR_EACH_ENTRY( func
, iface
->funcs
, const func_t
, entry
)
262 var_t
*def
= func
->def
;
264 print_server("%s_", iface
->name
);
265 write_name(server
, def
);
266 fprintf(server
, ",\n");
272 print_server("};\n");
273 print_server("RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable =\n", iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
276 print_server("%u,\n", method_count
);
277 print_server("%s_table\n", iface
->name
);
279 print_server("};\n");
280 fprintf(server
, "\n");
284 static void write_stubdescdecl(type_t
*iface
)
286 print_server("static const MIDL_STUB_DESC %s_StubDesc;\n", iface
->name
);
287 fprintf(server
, "\n");
291 static void write_stubdescriptor(type_t
*iface
, int expr_eval_routines
)
293 print_server("static const MIDL_STUB_DESC %s_StubDesc =\n", iface
->name
);
296 print_server("(void *)& %s___RpcServerInterface,\n", iface
->name
);
297 print_server("MIDL_user_allocate,\n");
298 print_server("MIDL_user_free,\n");
301 print_server("0,\n");
303 print_server("},\n");
304 print_server("0,\n");
305 print_server("0,\n");
306 if (expr_eval_routines
)
307 print_server("ExprEvalRoutines,\n");
309 print_server("0,\n");
310 print_server("0,\n");
311 print_server("__MIDL_TypeFormatString.Format,\n");
312 print_server("1, /* -error bounds_check flag */\n");
313 print_server("0x10001, /* Ndr library version */\n");
314 print_server("0,\n");
315 print_server("0x50100a4, /* MIDL Version 5.1.164 */\n");
316 print_server("0,\n");
317 print_server("%s,\n", list_empty(&user_type_list
) ? "0" : "UserMarshalRoutines");
318 print_server("0, /* notify & notify_flag routine table */\n");
319 print_server("1, /* Flags */\n");
320 print_server("0, /* Reserved3 */\n");
321 print_server("0, /* Reserved4 */\n");
322 print_server("0 /* Reserved5 */\n");
324 print_server("};\n");
325 fprintf(server
, "\n");
329 static void write_serverinterfacedecl(type_t
*iface
)
331 unsigned long ver
= get_attrv(iface
->attrs
, ATTR_VERSION
);
332 UUID
*uuid
= get_attrp(iface
->attrs
, ATTR_UUID
);
333 const str_list_t
*endpoints
= get_attrp(iface
->attrs
, ATTR_ENDPOINT
);
335 if (endpoints
) write_endpoints( server
, iface
->name
, endpoints
);
337 print_server("extern RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable;\n", iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
338 fprintf(server
, "\n");
339 print_server("static const RPC_SERVER_INTERFACE %s___RpcServerInterface =\n", iface
->name
);
342 print_server("sizeof(RPC_SERVER_INTERFACE),\n");
343 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",
344 uuid
->Data1
, uuid
->Data2
, uuid
->Data3
, uuid
->Data4
[0], uuid
->Data4
[1],
345 uuid
->Data4
[2], uuid
->Data4
[3], uuid
->Data4
[4], uuid
->Data4
[5], uuid
->Data4
[6],
346 uuid
->Data4
[7], MAJORVERSION(ver
), MINORVERSION(ver
));
347 print_server("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
348 print_server("&%s_v%d_%d_DispatchTable,\n", iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
));
351 print_server("%u,\n", list_count(endpoints
));
352 print_server("(PRPC_PROTSEQ_ENDPOINT)%s__RpcProtseqEndpoint,\n", iface
->name
);
356 print_server("0,\n");
357 print_server("0,\n");
359 print_server("0,\n");
360 print_server("0,\n");
361 print_server("0,\n");
363 print_server("};\n");
365 print_server("RPC_IF_HANDLE %s_ServerIfHandle = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
366 iface
->name
, iface
->name
);
368 print_server("RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
369 prefix_server
, iface
->name
, MAJORVERSION(ver
), MINORVERSION(ver
), iface
->name
);
370 fprintf(server
, "\n");
374 static void init_server(void)
378 if (!(server
= fopen(server_name
, "w")))
379 error("Could not open %s for output\n", server_name
);
381 print_server("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", PACKAGE_VERSION
, input_name
);
382 print_server("#include <string.h>\n");
383 fprintf(server
, "\n");
384 print_server("#include \"%s\"\n", header_name
);
385 fprintf(server
, "\n");
389 static void write_server_stmts(const statement_list_t
*stmts
, int expr_eval_routines
, unsigned int *proc_offset
)
391 const statement_t
*stmt
;
392 if (stmts
) LIST_FOR_EACH_ENTRY( stmt
, stmts
, const statement_t
, entry
)
394 if (stmt
->type
== STMT_LIBRARY
)
395 write_server_stmts(stmt
->u
.lib
->stmts
, expr_eval_routines
, proc_offset
);
396 else if (stmt
->type
== STMT_TYPE
&& stmt
->u
.type
->type
== RPC_FC_IP
)
398 type_t
*iface
= stmt
->u
.type
;
399 if (!need_stub(iface
))
402 fprintf(server
, "/*****************************************************************************\n");
403 fprintf(server
, " * %s interface\n", iface
->name
);
404 fprintf(server
, " */\n");
405 fprintf(server
, "\n");
409 write_serverinterfacedecl(iface
);
410 write_stubdescdecl(iface
);
412 write_function_stubs(iface
, proc_offset
);
414 print_server("#if !defined(__RPC_WIN32__)\n");
415 print_server("#error Invalid build platform for this stub.\n");
416 print_server("#endif\n");
418 fprintf(server
, "\n");
419 write_stubdescriptor(iface
, expr_eval_routines
);
420 write_dispatchtable(iface
);
426 void write_server(const statement_list_t
*stmts
)
428 unsigned int proc_offset
= 0;
429 int expr_eval_routines
;
433 if (do_everything
&& !need_stub_files(stmts
))
440 write_formatstringsdecl(server
, indent
, stmts
, need_stub
);
441 expr_eval_routines
= write_expr_eval_routines(server
, server_token
);
442 if (expr_eval_routines
)
443 write_expr_eval_routine_list(server
, server_token
);
444 write_user_quad_list(server
);
446 write_server_stmts(stmts
, expr_eval_routines
, &proc_offset
);
448 fprintf(server
, "\n");
450 write_procformatstring(server
, stmts
, need_stub
);
451 write_typeformatstring(server
, stmts
, need_stub
);