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 = 8;
81 switch (var->type->type)
94 total_size += 2 + alignment % 2;
101 case RPC_FC_ERROR_STATUS_T:
102 total_size += 4 + alignment % 4;
108 total_size += 8 + alignment % 8;
116 var = PREV_LINK(var);
119 fprintf(client, " %u", total_size);
123 static void write_function_stubs(type_t *iface)
125 func_t *func = iface->funcs;
126 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
127 int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
129 int method_count = 0;
130 unsigned int proc_offset = 0;
131 unsigned int type_offset = 2;
133 while (NEXT_LINK(func)) func = NEXT_LINK(func);
136 var_t *def = func->def;
137 var_t* explicit_handle_var;
139 /* check for a defined binding handle */
140 explicit_handle_var = get_explicit_handle_var(func);
143 if (!explicit_handle_var)
145 error("%s() does not define an explicit binding handle!\n", def->name);
149 else if (implicit_handle)
151 if (explicit_handle_var)
153 error("%s() must not define a binding handle!\n", def->name);
158 write_type(client, def->type, def, def->tname);
159 fprintf(client, " ");
160 write_name(client, def);
161 fprintf(client, "(\n");
164 write_args(client, func->args, iface->name, 0, TRUE);
166 print_client("void");
167 fprintf(client, ")\n");
170 /* write the functions body */
171 fprintf(client, "{\n");
174 /* declare return value '_RetVal' */
175 if (!is_void(def->type, NULL))
178 write_type(client, def->type, def, def->tname);
179 fprintf(client, " _RetVal;\n");
182 if (implicit_handle || explicit_handle_var)
183 print_client("RPC_BINDING_HANDLE _Handle = 0;\n");
185 print_client("RPC_MESSAGE _RpcMessage;\n");
186 print_client("MIDL_STUB_MESSAGE _StubMsg;\n");
187 fprintf(client, "\n");
188 print_client("RpcTryFinally\n");
192 print_client("NdrClientInitializeNew(\n");
194 print_client("(PRPC_MESSAGE)&_RpcMessage,\n");
195 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
196 print_client("(PMIDL_STUB_DESC)&%s_StubDesc,\n", iface->name);
197 print_client("%d);\n", method_count);
199 fprintf(client, "\n");
203 print_client("_Handle = %s;\n", implicit_handle);
204 fprintf(client, "\n");
206 else if (explicit_handle_var)
208 print_client("_Handle = %s;\n", explicit_handle_var->name);
209 fprintf(client, "\n");
212 /* emit the message buffer size */
213 print_client("_StubMsg.BufferLength =");
214 print_message_buffer_size(func);
215 fprintf(client, ";\n");
217 print_client("NdrGetBuffer(\n");
219 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
220 print_client("_StubMsg.BufferLength,\n");
221 if (implicit_handle || explicit_handle_var)
222 print_client("_Handle);\n");
224 print_client("%s__MIDL_AutoBindHandle);\n", iface->name);
226 fprintf(client, "\n");
229 /* marshal arguments */
230 marshall_arguments(client, indent, func, &type_offset);
232 /* send/receive message */
233 /* print_client("NdrNsSendReceive(\n"); */
234 /* print_client("(unsigned char *)_StubMsg.Buffer,\n"); */
235 /* print_client("(RPC_BINDING_HANDLE *) &%s__MIDL_AutoBindHandle);\n", iface->name); */
236 print_client("NdrSendReceive(\n");
238 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
239 print_client("(unsigned char *)_StubMsg.Buffer);\n");
242 print_client("_StubMsg.BufferStart = (unsigned char *)_RpcMessage.Buffer;\n");
243 print_client("_StubMsg.BufferEnd = _StubMsg.BufferStart + _RpcMessage.BufferLength;\n");
245 /* unmarshal return value */
246 if (!is_void(def->type, NULL))
248 fprintf(client, "\n");
250 print_client("if ((_RpcMessage.DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
252 print_client("NdrConvert(\n");
254 print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
255 print_client("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", proc_offset);
257 fprintf(client, "\n");
259 print_client("_RetVal = *(");
260 write_type(client, def->type, def, def->tname);
261 fprintf(client, " *)_StubMsg.Buffer;\n");
262 fprintf(client, "_StubMsg.Buffer += sizeof(");
263 write_type(client, def->type, def, def->tname);
264 fprintf(client, ");\n");
267 /* update proc_offset */
271 while (NEXT_LINK(var)) var = NEXT_LINK(var);
274 proc_offset += get_size_procformatstring_var(var);
275 var = PREV_LINK(var);
278 if (!is_void(def->type, NULL))
279 proc_offset += get_size_procformatstring_var(def);
283 print_client("RpcFinally\n");
288 /* FIXME: emit client finally code */
290 print_client("NdrFreeBuffer((PMIDL_STUB_MESSAGE)&_StubMsg);\n");
294 print_client("RpcEndFinally\n");
297 /* emit return code */
298 if (!is_void(def->type, NULL))
300 fprintf(client, "\n");
301 print_client("return _RetVal;\n");
305 fprintf(client, "}\n");
306 fprintf(client, "\n");
309 func = PREV_LINK(func);
314 static void write_bindinghandledecl(type_t *iface)
316 print_client("static RPC_BINDING_HANDLE %s__MIDL_AutoBindHandle;\n", iface->name);
317 fprintf(client, "\n");
321 static void write_stubdescdecl(type_t *iface)
323 print_client("extern const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
324 fprintf(client, "\n");
328 static void write_stubdescriptor(type_t *iface)
330 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
332 print_client("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
335 print_client("(void *)& %s___RpcClientInterface,\n", iface->name);
336 print_client("MIDL_user_allocate,\n");
337 print_client("MIDL_user_free,\n");
339 print_client("&%s,\n", implicit_handle);
341 print_client("&%s__MIDL_AutoBindHandle,\n", iface->name);
342 print_client("0,\n");
343 print_client("0,\n");
344 print_client("0,\n");
345 print_client("0,\n");
346 print_client("__MIDL_TypeFormatString.Format,\n");
347 print_client("1, /* -error bounds_check flag */\n");
348 print_client("0x10001, /* Ndr library version */\n");
349 print_client("0,\n");
350 print_client("0x50100a4, /* MIDL Version 5.1.164 */\n");
351 print_client("0,\n");
352 print_client("0,\n");
353 print_client("0, /* notify & notify_flag routine table */\n");
354 print_client("1, /* Flags */\n");
355 print_client("0, /* Reserved3 */\n");
356 print_client("0, /* Reserved4 */\n");
357 print_client("0 /* Reserved5 */\n");
359 print_client("};\n");
360 fprintf(client, "\n");
364 static void write_clientinterfacedecl(type_t *iface)
366 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
367 UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
369 print_client("static const RPC_CLIENT_INTERFACE %s___RpcClientInterface =\n", iface->name );
372 print_client("sizeof(RPC_CLIENT_INTERFACE),\n");
373 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",
374 uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
375 uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
376 uuid->Data4[7], LOWORD(ver), HIWORD(ver));
377 print_client("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
378 print_client("0,\n");
379 print_client("0,\n");
380 print_client("0,\n");
381 print_client("0,\n");
382 print_client("0,\n");
383 print_client("0,\n");
385 print_client("};\n");
386 print_client("RPC_IF_HANDLE %s_v%d_%d_c_ifspec = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
387 iface->name, LOWORD(ver), HIWORD(ver), iface->name);
388 fprintf(client, "\n");
392 static void write_formatdesc( const char *str )
394 print_client("typedef struct _MIDL_%s_FORMAT_STRING\n", str );
397 print_client("short Pad;\n");
398 print_client("unsigned char Format[%s_FORMAT_STRING_SIZE];\n", str);
400 print_client("} MIDL_%s_FORMAT_STRING;\n", str);
405 static void write_formatstringsdecl(type_t *iface)
409 print_client("#define TYPE_FORMAT_STRING_SIZE %d\n", 3); /* FIXME */
411 /* determine the proc format string size */
414 func_t *func = iface->funcs;
415 while (NEXT_LINK(func)) func = NEXT_LINK(func);
418 /* argument list size */
421 var_t *var = func->args;
422 while (NEXT_LINK(var)) var = NEXT_LINK(var);
425 byte_count += 2; /* FIXME: determine real size */
426 var = PREV_LINK(var);
430 /* return value size */
431 byte_count += 2; /* FIXME: determine real size */
432 func = PREV_LINK(func);
435 print_client("#define PROC_FORMAT_STRING_SIZE %d\n", byte_count);
437 fprintf(client, "\n");
438 write_formatdesc("TYPE");
439 write_formatdesc("PROC");
440 fprintf(client, "\n");
441 print_client("extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
442 print_client("extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
447 static void write_implicithandledecl(type_t *iface)
449 char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
453 fprintf(client, "handle_t %s;\n", implicit_handle);
454 fprintf(client, "\n");
459 static void init_client(void)
462 if (!(client = fopen(client_name, "w")))
463 error("Could not open %s for output\n", client_name);
465 print_client("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", WIDL_FULLVERSION, input_name);
466 print_client("#include <string.h>\n");
467 print_client("#ifdef _ALPHA_\n");
468 print_client("#include <stdarg.h>\n");
469 print_client("#endif\n");
470 fprintf(client, "\n");
471 print_client("#include \"%s\"\n", header_name);
472 fprintf(client, "\n");
476 void write_client(ifref_t *ifaces)
478 ifref_t *iface = ifaces;
492 fprintf(client, "/*****************************************************************************\n");
493 fprintf(client, " * %s interface\n", iface->iface->name);
494 fprintf(client, " */\n");
495 fprintf(client, "\n");
497 if (iface->iface->funcs)
499 write_formatstringsdecl(iface->iface);
500 write_implicithandledecl(iface->iface);
502 write_clientinterfacedecl(iface->iface);
503 write_stubdescdecl(iface->iface);
504 write_bindinghandledecl(iface->iface);
506 write_function_stubs(iface->iface);
507 write_stubdescriptor(iface->iface);
510 print_client("#if !defined(__RPC_WIN32__)\n");
511 print_client("#error Invalid build platform for this stub.\n");
512 print_client("#endif\n");
513 fprintf(client, "\n");
515 write_procformatstring(client, iface->iface);
516 write_typeformatstring(client, iface->iface);
518 fprintf(client, "\n");
520 iface = PREV_LINK(iface);