4 * Copyright 2005 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
22 #include "wine/port.h"
39 #include "widltypes.h"
41 #include "typelib_struct.h"
44 #define END_OF_LIST(list) \
47 while (NEXT_LINK(list)) \
48 list = NEXT_LINK(list); \
53 static int indent = 0;
55 static int print_client( const char *format, ... )
61 for (i = 0; i < indent; i++)
63 r = vfprintf(client, format, va);
69 static void print_message_buffer_size(func_t *func)
71 unsigned int total_size = 0;
75 var_t *var = func->args;
76 while (NEXT_LINK(var)) var = NEXT_LINK(var);
79 unsigned int alignment;
81 total_size += get_required_buffer_size(var, &alignment);
82 total_size += alignment;
87 fprintf(client, " %u", total_size);
91 static void write_function_stubs(type_t *iface)
93 func_t *func = iface->funcs;
94 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
95 int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
98 unsigned int proc_offset = 0;
99 unsigned int type_offset = 2;
101 while (NEXT_LINK(func)) func = NEXT_LINK(func);
104 var_t *def = func->def;
105 var_t* explicit_handle_var;
107 /* check for a defined binding handle */
108 explicit_handle_var = get_explicit_handle_var(func);
111 if (!explicit_handle_var)
113 error("%s() does not define an explicit binding handle!\n", def->name);
117 else if (implicit_handle)
119 if (explicit_handle_var)
121 error("%s() must not define a binding handle!\n", def->name);
126 write_type(client, def->type, def, def->tname);
127 fprintf(client, " ");
128 write_name(client, def);
129 fprintf(client, "(\n");
132 write_args(client, func->args, iface->name, 0, TRUE);
134 print_client("void");
135 fprintf(client, ")\n");
138 /* write the functions body */
139 fprintf(client, "{\n");
142 /* declare return value '_RetVal' */
143 if (!is_void(def->type, NULL))
146 write_type(client, def->type, def, def->tname);
147 fprintf(client, " _RetVal;\n");
150 if (implicit_handle || explicit_handle_var)
151 print_client("RPC_BINDING_HANDLE _Handle = 0;\n");
153 print_client("RPC_MESSAGE _RpcMessage;\n");
154 print_client("MIDL_STUB_MESSAGE _StubMsg;\n");
155 fprintf(client, "\n");
156 print_client("RpcTryFinally\n");
160 print_client("NdrClientInitializeNew(\n");
162 print_client("(PRPC_MESSAGE)&_RpcMessage,\n");
163 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
164 print_client("(PMIDL_STUB_DESC)&%s_StubDesc,\n", iface->name);
165 print_client("%d);\n", method_count);
167 fprintf(client, "\n");
171 print_client("_Handle = %s;\n", implicit_handle);
172 fprintf(client, "\n");
174 else if (explicit_handle_var)
176 print_client("_Handle = %s;\n", explicit_handle_var->name);
177 fprintf(client, "\n");
180 /* emit the message buffer size */
181 print_client("_StubMsg.BufferLength =");
182 print_message_buffer_size(func);
183 fprintf(client, ";\n");
185 print_client("NdrGetBuffer(\n");
187 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
188 print_client("_StubMsg.BufferLength,\n");
189 if (implicit_handle || explicit_handle_var)
190 print_client("_Handle);\n");
192 print_client("%s__MIDL_AutoBindHandle);\n", iface->name);
194 fprintf(client, "\n");
197 /* marshal arguments */
198 marshall_arguments(client, indent, func, &type_offset, PASS_IN);
200 /* send/receive message */
201 /* print_client("NdrNsSendReceive(\n"); */
202 /* print_client("(unsigned char *)_StubMsg.Buffer,\n"); */
203 /* print_client("(RPC_BINDING_HANDLE *) &%s__MIDL_AutoBindHandle);\n", iface->name); */
204 print_client("NdrSendReceive(\n");
206 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
207 print_client("(unsigned char *)_StubMsg.Buffer);\n\n");
210 print_client("_StubMsg.BufferStart = (unsigned char *)_RpcMessage.Buffer;\n");
211 print_client("_StubMsg.BufferEnd = _StubMsg.BufferStart + _RpcMessage.BufferLength;\n\n");
213 unmarshall_arguments(client, indent, func, &type_offset, PASS_OUT);
215 /* unmarshal return value */
216 if (!is_void(def->type, NULL))
218 fprintf(client, "\n");
220 print_client("if ((_RpcMessage.DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
222 print_client("NdrConvert(\n");
224 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
225 print_client("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", proc_offset);
227 fprintf(client, "\n");
229 print_client("_RetVal = *(");
230 write_type(client, def->type, def, def->tname);
231 fprintf(client, " *)_StubMsg.Buffer;\n");
232 fprintf(client, "_StubMsg.Buffer += sizeof(");
233 write_type(client, def->type, def, def->tname);
234 fprintf(client, ");\n");
237 /* update proc_offset */
241 while (NEXT_LINK(var)) var = NEXT_LINK(var);
244 proc_offset += get_size_procformatstring_var(var);
245 var = PREV_LINK(var);
248 if (!is_void(def->type, NULL))
249 proc_offset += get_size_procformatstring_var(def);
253 print_client("RpcFinally\n");
258 /* FIXME: emit client finally code */
260 print_client("NdrFreeBuffer((PMIDL_STUB_MESSAGE)&_StubMsg);\n");
264 print_client("RpcEndFinally\n");
267 /* emit return code */
268 if (!is_void(def->type, NULL))
270 fprintf(client, "\n");
271 print_client("return _RetVal;\n");
275 fprintf(client, "}\n");
276 fprintf(client, "\n");
279 func = PREV_LINK(func);
284 static void write_bindinghandledecl(type_t *iface)
286 print_client("static RPC_BINDING_HANDLE %s__MIDL_AutoBindHandle;\n", iface->name);
287 fprintf(client, "\n");
291 static void write_stubdescdecl(type_t *iface)
293 print_client("extern const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
294 fprintf(client, "\n");
298 static void write_stubdescriptor(type_t *iface)
300 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
302 print_client("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
305 print_client("(void *)& %s___RpcClientInterface,\n", iface->name);
306 print_client("MIDL_user_allocate,\n");
307 print_client("MIDL_user_free,\n");
309 print_client("&%s,\n", implicit_handle);
311 print_client("&%s__MIDL_AutoBindHandle,\n", iface->name);
312 print_client("0,\n");
313 print_client("0,\n");
314 print_client("0,\n");
315 print_client("0,\n");
316 print_client("__MIDL_TypeFormatString.Format,\n");
317 print_client("1, /* -error bounds_check flag */\n");
318 print_client("0x10001, /* Ndr library version */\n");
319 print_client("0,\n");
320 print_client("0x50100a4, /* MIDL Version 5.1.164 */\n");
321 print_client("0,\n");
322 print_client("0,\n");
323 print_client("0, /* notify & notify_flag routine table */\n");
324 print_client("1, /* Flags */\n");
325 print_client("0, /* Reserved3 */\n");
326 print_client("0, /* Reserved4 */\n");
327 print_client("0 /* Reserved5 */\n");
329 print_client("};\n");
330 fprintf(client, "\n");
334 static void write_clientinterfacedecl(type_t *iface)
336 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
337 UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
339 print_client("static const RPC_CLIENT_INTERFACE %s___RpcClientInterface =\n", iface->name );
342 print_client("sizeof(RPC_CLIENT_INTERFACE),\n");
343 print_client("{{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], LOWORD(ver), HIWORD(ver));
347 print_client("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
348 print_client("0,\n");
349 print_client("0,\n");
350 print_client("0,\n");
351 print_client("0,\n");
352 print_client("0,\n");
353 print_client("0,\n");
355 print_client("};\n");
356 print_client("RPC_IF_HANDLE %s_v%d_%d_c_ifspec = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
357 iface->name, LOWORD(ver), HIWORD(ver), iface->name);
358 fprintf(client, "\n");
362 static void write_formatdesc( const char *str )
364 print_client("typedef struct _MIDL_%s_FORMAT_STRING\n", str );
367 print_client("short Pad;\n");
368 print_client("unsigned char Format[%s_FORMAT_STRING_SIZE];\n", str);
370 print_client("} MIDL_%s_FORMAT_STRING;\n", str);
375 static void write_formatstringsdecl(type_t *iface)
379 print_client("#define TYPE_FORMAT_STRING_SIZE %d\n", 3); /* FIXME */
381 /* determine the proc format string size */
384 func_t *func = iface->funcs;
385 while (NEXT_LINK(func)) func = NEXT_LINK(func);
388 /* argument list size */
391 var_t *var = func->args;
392 while (NEXT_LINK(var)) var = NEXT_LINK(var);
395 byte_count += 2; /* FIXME: determine real size */
396 var = PREV_LINK(var);
400 /* return value size */
401 byte_count += 2; /* FIXME: determine real size */
402 func = PREV_LINK(func);
405 print_client("#define PROC_FORMAT_STRING_SIZE %d\n", byte_count);
407 fprintf(client, "\n");
408 write_formatdesc("TYPE");
409 write_formatdesc("PROC");
410 fprintf(client, "\n");
411 print_client("extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
412 print_client("extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
417 static void write_implicithandledecl(type_t *iface)
419 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
423 fprintf(client, "handle_t %s;\n", implicit_handle);
424 fprintf(client, "\n");
429 static void init_client(void)
432 if (!(client = fopen(client_name, "w")))
433 error("Could not open %s for output\n", client_name);
435 print_client("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", WIDL_FULLVERSION, input_name);
436 print_client("#include <string.h>\n");
437 print_client("#ifdef _ALPHA_\n");
438 print_client("#include <stdarg.h>\n");
439 print_client("#endif\n");
440 fprintf(client, "\n");
441 print_client("#include \"%s\"\n", header_name);
442 fprintf(client, "\n");
446 void write_client(ifref_t *ifaces)
448 ifref_t *iface = ifaces;
462 fprintf(client, "/*****************************************************************************\n");
463 fprintf(client, " * %s interface\n", iface->iface->name);
464 fprintf(client, " */\n");
465 fprintf(client, "\n");
467 if (iface->iface->funcs)
469 write_formatstringsdecl(iface->iface);
470 write_implicithandledecl(iface->iface);
472 write_clientinterfacedecl(iface->iface);
473 write_stubdescdecl(iface->iface);
474 write_bindinghandledecl(iface->iface);
476 write_function_stubs(iface->iface);
477 write_stubdescriptor(iface->iface);
480 print_client("#if !defined(__RPC_WIN32__)\n");
481 print_client("#error Invalid build platform for this stub.\n");
482 print_client("#endif\n");
483 fprintf(client, "\n");
485 write_procformatstring(client, iface->iface);
486 write_typeformatstring(client, iface->iface);
488 fprintf(client, "\n");
490 iface = PREV_LINK(iface);