WIDL: output more proxy code

Mike McCormack mike at codeweavers.com
Sat Sep 4 01:13:00 CDT 2004


ChangeLog:
* output more proxy code
-------------- next part --------------
Index: tools/widl/proxy.c
===================================================================
RCS file: /home/wine/wine/tools/widl/proxy.c,v
retrieving revision 1.10
diff -u -r1.10 proxy.c
--- tools/widl/proxy.c	2 Sep 2004 20:07:07 -0000	1.10
+++ tools/widl/proxy.c	4 Sep 2004 04:07:51 -0000
@@ -36,30 +36,66 @@
 #include "header.h"
 
 static FILE* proxy;
+static int indent = 0;
 
 /* FIXME: support generation of stubless proxies */
 
+int print_proxy( char *format, ... )
+{
+    va_list va;
+    int i, r;
+
+    va_start( va, format );
+    for( i=0; i<indent; i++ )
+        fprintf( proxy, "    " );
+    r = vfprintf( proxy, format, va );
+    va_end( va );
+    return r;
+}
+
 static void write_stubdesc(void)
 {
-  fprintf(proxy, "const MIDL_STUB_DESC Object_StubDesc = {\n");
-  fprintf(proxy, "    0,\n");
-  fprintf(proxy, "    NdrOleAllocate,\n");
-  fprintf(proxy, "    NdrOleFree,\n");
-  fprintf(proxy, "    {0}, 0, 0, 0, 0,\n");
-  fprintf(proxy, "    0 /* __MIDL_TypeFormatString.Format */\n");
-  fprintf(proxy, "};\n");
-  fprintf(proxy, "\n");
+  print_proxy( "const MIDL_STUB_DESC Object_StubDesc = {\n");
+  print_proxy( "    0,\n");
+  print_proxy( "    NdrOleAllocate,\n");
+  print_proxy( "    NdrOleFree,\n");
+  print_proxy( "    {0}, 0, 0, 0, 0,\n");
+  print_proxy( "    0 /* __MIDL_TypeFormatString.Format */\n");
+  print_proxy( "};\n");
+  print_proxy( "\n");
+}
+
+static void write_formatdesc( char *str )
+{
+  print_proxy( "typedef struct _MIDL_%s_FORMAT_STRING {\n", str );
+  print_proxy( "    short Pad;\n");
+  print_proxy( "    unsigned char Format[%s_FORMAT_STRING_SIZE];\n", str);
+  print_proxy( "} MIDL_%s_FORMAT_STRING;\n", str);
+  print_proxy( "\n");
+}
+
+static void write_formatstringsdecl(void)
+{
+  print_proxy( "#define TYPE_FORMAT_STRING_SIZE %d\n",1); /* FIXME */
+  print_proxy( "#define PROC_FORMAT_STRING_SIZE %d\n",1); /* FIXME */
+  print_proxy( "\n");
+  write_formatdesc( "TYPE" );
+  write_formatdesc( "PROC" );
+  print_proxy( "extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
+  print_proxy( "extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
+  print_proxy( "\n");
 }
 
 static void init_proxy(void)
 {
   if (proxy) return;
   proxy = fopen(proxy_name, "w");
-  fprintf(proxy, "/*** Autogenerated by WIDL %s - Do not edit ***/\n", WIDL_FULLVERSION);
-  fprintf(proxy, "#include \"rpcproxy.h\"\n");
-  fprintf(proxy, "#include \"%s\"\n", header_name);
-  fprintf(proxy, "\n");
+  print_proxy( "/*** Autogenerated by WIDL %s - Do not edit ***/\n", WIDL_FULLVERSION);
+  print_proxy( "#include \"rpcproxy.h\"\n");
+  print_proxy( "#include \"%s\"\n", header_name);
+  print_proxy( "\n");
   write_stubdesc();
+  write_formatstringsdecl();
 }
 
 static void clear_output_vars( var_t *arg )
@@ -70,8 +106,8 @@
   }
   while (arg) {
     if (is_attr(arg->attrs, ATTR_OUT)) {
-      fprintf( proxy, "    if(%s)\n", arg->name );
-      fprintf( proxy, "        MIDL_memset( %s, 0, sizeof( ", arg->name );
+      print_proxy( "if(%s)\n", arg->name );
+      print_proxy( "    MIDL_memset( %s, 0, sizeof( ", arg->name );
       write_type(proxy, arg->type, arg, arg->tname);
       fprintf( proxy, " ));\n" );
     }
@@ -79,50 +115,135 @@
   }
 }
 
+static void gen_marshall_size( var_t *arg )
+{
+  if (arg) {
+    while (NEXT_LINK(arg))
+      arg = NEXT_LINK(arg);
+  }
+  while (arg) {
+    if (is_attr(arg->attrs, ATTR_IN)) {
+      int index = 0;
+      /* FIXME: add the format string, and set the index below */
+      print_proxy( "NdrSimpleStructBufferSize(&_StubMsg, %s, ", arg->name );
+      fprintf(proxy, "&__MIDL_TypeFormatString.Format[%d], 0);\n", index );
+    }
+    arg = PREV_LINK(arg);
+  }
+}
+
+static void gen_marshall_copydata( var_t *arg )
+{
+  if (arg) {
+    while (NEXT_LINK(arg))
+      arg = NEXT_LINK(arg);
+  }
+  while (arg) {
+    if (is_attr(arg->attrs, ATTR_IN)) {
+      int index = 0;
+      /* FIXME: add the format string, and set the index below */
+      print_proxy( "NdrSimpleStructMarshall(&_StubMsg, %s, ", arg->name );
+      fprintf(proxy, "&__MIDL_TypeFormatString.Format[%d], 0);\n", index );
+    }
+    arg = PREV_LINK(arg);
+  }
+}
+
+static void gen_marshall( var_t *arg )
+{
+  print_proxy( "_StubMsg.BufferLength = 0U;\n" );
+
+  /* generated code to determine the size of the buffer required */
+  gen_marshall_size( arg );
+
+  /* generated code to allocate the buffer */
+  print_proxy( "NdrProxyGetBuffer(This, &_StubMsg);\n" );
+
+  /* generated code to copy the args into the buffer */
+  gen_marshall_copydata( arg );
+
+  print_proxy( "\n");
+}
+
+static void gen_unmarshall( var_t *arg )
+{
+  if (arg) {
+    while (NEXT_LINK(arg))
+      arg = NEXT_LINK(arg);
+  }
+  while (arg) {
+    if (is_attr(arg->attrs, ATTR_OUT)) {
+      int index = 0;
+      /* FIXME: add the format string, and set the index below */
+      print_proxy( "NdrPointerUnmarshall(&_StubMsg, &%s, ", arg->name );
+      fprintf(proxy, "&__MIDL_TypeFormatString.Format[%d], 0);\n", index );
+    }
+    arg = PREV_LINK(arg);
+  }
+}
+
 static void gen_proxy(type_t *iface, func_t *cur, int idx)
 {
   var_t *def = cur->def;
   int has_ret = !is_void(def->type, def);
 
+  indent = 0;
   write_type(proxy, def->type, def, def->tname);
-  fprintf(proxy, " CALLBACK %s_", iface->name);
+  print_proxy( " CALLBACK %s_", iface->name);
   write_name(proxy, def);
-  fprintf(proxy, "_Proxy(\n");
+  print_proxy( "_Proxy(\n");
   write_args(proxy, cur->args, iface->name, 1, TRUE);
-  fprintf(proxy, ")\n");
-  fprintf(proxy, "{\n");
+  print_proxy( ")\n");
+  print_proxy( "{\n");
+  indent ++;
   /* local variables */
   if (has_ret) {
-    fprintf(proxy, "    ");
+    print_proxy( "" );
     write_type(proxy, def->type, def, def->tname);
-    fprintf(proxy, " _Ret;\n");
+    print_proxy( " _Ret;\n");
   }
-  fprintf(proxy, "    RPC_MESSAGE _Msg;\n");
-  fprintf(proxy, "    MIDL_STUB_MESSAGE _StubMsg;\n");
-  fprintf(proxy, "\n");
+  print_proxy( "RPC_MESSAGE _Msg;\n" );
+  print_proxy( "MIDL_STUB_MESSAGE _StubMsg;\n" );
+  print_proxy( "\n");
 
   /* FIXME: trace */
   clear_output_vars( cur->args );
 
-  fprintf(proxy, "    NdrProxyInitialize(This, &_Msg, &_StubMsg, &Object_StubDesc, %d);\n", idx);
-
-  /* FIXME: size buffer */
-
-  fprintf(proxy, "    NdrProxyGetBuffer(This, &_StubMsg);\n");
-
-  /* FIXME: marshall */
-
-  fprintf(proxy, "    NdrProxySendReceive(This, &_StubMsg);\n");
-
-  /* FIXME: unmarshall */
-
-  fprintf(proxy, "    NdrProxyFreeBuffer(This, &_StubMsg);\n");
+  print_proxy( "RpcTryExcept {\n" );
+  indent++;
+  print_proxy( "NdrProxyInitialize(This, &_Msg, &_StubMsg, &Object_StubDesc, %d);\n", idx);
+
+  print_proxy( "RpcTryFinally {\n" );
+  indent++;
+
+  gen_marshall( cur->args );
+
+  print_proxy( "NdrProxySendReceive(This, &_StubMsg);\n" );
+  print_proxy( "\n");
+
+  gen_unmarshall( cur->args );
+
+  indent--;
+  print_proxy( "}\n");
+  print_proxy( "RpcFinally {\n" );
+  indent++;
+  print_proxy( "NdrProxyFreeBuffer(This, &_StubMsg);\n" );
+  indent--;
+  print_proxy( "}\n");
+  print_proxy( "RpcEndFinally\n" );
+  indent--;
+  print_proxy( "}\n" );
+  print_proxy( "RpcExcept(_StubMsg.dwStubPhase != PROXY_SENDRECEIVE)\n" );
+  print_proxy( "{\n" );
+  print_proxy( "}\n" );
+  print_proxy( "RpcExceptEnd\n" );
 
   if (has_ret) {
-    fprintf(proxy, "    return _Ret;\n");
+    print_proxy( "return _Ret;\n" );
   }
-  fprintf(proxy, "}\n");
-  fprintf(proxy, "\n");
+  indent--;
+  print_proxy( "}\n");
+  print_proxy( "\n");
 }
 
 static void gen_stub(type_t *iface, func_t *cur, char *cas)


More information about the wine-patches mailing list