2005-02-23 20:31:07 +00:00
|
|
|
/*
|
|
|
|
* IDL Compiler
|
|
|
|
*
|
2006-03-23 09:33:08 +00:00
|
|
|
* Copyright 2005-2006 Eric Kohl
|
2005-02-23 20:31:07 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "widl.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "parser.h"
|
|
|
|
#include "header.h"
|
|
|
|
#include "windef.h"
|
|
|
|
|
|
|
|
#include "widl.h"
|
|
|
|
#include "typelib.h"
|
|
|
|
#include "typelib_struct.h"
|
2005-12-08 11:52:13 +00:00
|
|
|
#include "typegen.h"
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
#define END_OF_LIST(list) \
|
|
|
|
do { \
|
|
|
|
if (list) { \
|
|
|
|
while (NEXT_LINK(list)) \
|
|
|
|
list = NEXT_LINK(list); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
static FILE* server;
|
|
|
|
static int indent = 0;
|
|
|
|
|
|
|
|
|
|
|
|
static int print_server(const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
int i, r;
|
|
|
|
|
|
|
|
va_start(va, format);
|
|
|
|
for (i = 0; i < indent; i++)
|
|
|
|
fprintf(server, " ");
|
|
|
|
r = vfprintf(server, format, va);
|
|
|
|
va_end(va);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-07 11:31:43 +00:00
|
|
|
static void write_parameters_init(const func_t *func)
|
2005-12-12 11:13:43 +00:00
|
|
|
{
|
2006-02-07 11:31:43 +00:00
|
|
|
const var_t *var;
|
2005-12-12 11:13:43 +00:00
|
|
|
|
|
|
|
if (!func->args)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var = func->args;
|
|
|
|
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
|
|
|
while (var)
|
|
|
|
{
|
2006-03-18 13:33:48 +00:00
|
|
|
if (var->type->type != RPC_FC_BIND_PRIMITIVE)
|
|
|
|
print_server("%s = 0;\n", var->name);
|
2005-12-12 11:13:43 +00:00
|
|
|
|
|
|
|
var = PREV_LINK(var);
|
|
|
|
}
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-24 16:40:17 +00:00
|
|
|
static void declare_args(const func_t *func)
|
|
|
|
{
|
|
|
|
int in_attr, out_attr;
|
|
|
|
int i = 0;
|
|
|
|
var_t *var;
|
|
|
|
|
|
|
|
if (!func->args)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var = func->args;
|
|
|
|
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
|
|
|
while (var)
|
|
|
|
{
|
|
|
|
in_attr = is_attr(var->attrs, ATTR_IN);
|
|
|
|
out_attr = is_attr(var->attrs, ATTR_OUT);
|
|
|
|
if (!out_attr && !in_attr)
|
|
|
|
in_attr = 1;
|
|
|
|
|
2006-03-29 10:42:29 +00:00
|
|
|
if (!in_attr && !is_attr(var->attrs, ATTR_STRING))
|
2006-03-24 16:40:17 +00:00
|
|
|
{
|
2006-03-31 11:49:57 +00:00
|
|
|
int indirection;
|
2006-03-24 16:40:17 +00:00
|
|
|
print_server("");
|
|
|
|
write_type(server, var->type, NULL, var->tname);
|
2006-03-31 11:49:57 +00:00
|
|
|
for (indirection = 0; indirection < var->ptr_level - 1; indirection++)
|
|
|
|
fprintf(server, "*");
|
2006-03-24 16:40:17 +00:00
|
|
|
fprintf(server, " _W%u;\n", i++);
|
|
|
|
}
|
|
|
|
|
|
|
|
print_server("");
|
|
|
|
write_type(server, var->type, var, var->tname);
|
|
|
|
fprintf(server, " ");
|
|
|
|
write_name(server, var);
|
|
|
|
write_array(server, var->array, 0);
|
|
|
|
fprintf(server, ";\n");
|
|
|
|
|
|
|
|
var = PREV_LINK(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void assign_out_args(const func_t *func)
|
|
|
|
{
|
|
|
|
int in_attr, out_attr;
|
|
|
|
int i = 0, sep = 0;
|
|
|
|
var_t *var;
|
2006-03-29 10:42:29 +00:00
|
|
|
const expr_t *size_is;
|
|
|
|
int has_size;
|
2006-03-24 16:40:17 +00:00
|
|
|
|
|
|
|
if (!func->args)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var = func->args;
|
|
|
|
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
|
|
|
while (var)
|
|
|
|
{
|
2006-03-29 10:42:29 +00:00
|
|
|
size_is = get_attrp(var->attrs, ATTR_SIZEIS);
|
|
|
|
has_size = size_is && (size_is->type != EXPR_VOID);
|
2006-03-24 16:40:17 +00:00
|
|
|
in_attr = is_attr(var->attrs, ATTR_IN);
|
|
|
|
out_attr = is_attr(var->attrs, ATTR_OUT);
|
|
|
|
if (!out_attr && !in_attr)
|
|
|
|
in_attr = 1;
|
|
|
|
|
|
|
|
if (!in_attr)
|
|
|
|
{
|
|
|
|
print_server("");
|
|
|
|
write_name(server, var);
|
2006-03-29 10:42:29 +00:00
|
|
|
|
|
|
|
if (has_size)
|
|
|
|
{
|
|
|
|
type_t *type = var->type;
|
|
|
|
while (type->type == 0 && type->ref)
|
|
|
|
type = type->ref;
|
|
|
|
|
|
|
|
fprintf(server, " = NdrAllocate(&_StubMsg, ");
|
|
|
|
write_expr(server, size_is, 1);
|
|
|
|
fprintf(server, " * %u);\n", get_type_memsize(type));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(server, " = &_W%u;\n", i++);
|
|
|
|
}
|
|
|
|
|
2006-03-24 16:40:17 +00:00
|
|
|
sep = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
var = PREV_LINK(var);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sep)
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
static void write_function_stubs(type_t *iface)
|
|
|
|
{
|
2005-12-12 11:14:03 +00:00
|
|
|
char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
|
|
|
|
int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
|
2006-02-07 11:31:43 +00:00
|
|
|
const func_t *func = iface->funcs;
|
|
|
|
const var_t *var;
|
|
|
|
const var_t* explicit_handle_var;
|
2005-12-08 11:48:44 +00:00
|
|
|
unsigned int proc_offset = 0;
|
2005-12-26 12:12:03 +00:00
|
|
|
unsigned int type_offset = 2;
|
2005-12-08 11:48:44 +00:00
|
|
|
|
2005-12-08 11:45:45 +00:00
|
|
|
while (NEXT_LINK(func)) func = NEXT_LINK(func);
|
|
|
|
while (func)
|
2005-02-23 20:31:07 +00:00
|
|
|
{
|
2006-02-07 11:31:43 +00:00
|
|
|
const var_t *def = func->def;
|
2005-12-26 12:20:59 +00:00
|
|
|
unsigned long buffer_size = 0;
|
2006-01-31 17:05:33 +00:00
|
|
|
unsigned int type_offset_func;
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2005-12-12 11:14:03 +00:00
|
|
|
/* check for a defined binding handle */
|
|
|
|
explicit_handle_var = get_explicit_handle_var(func);
|
|
|
|
if (explicit_handle)
|
|
|
|
{
|
|
|
|
if (!explicit_handle_var)
|
|
|
|
{
|
|
|
|
error("%s() does not define an explicit binding handle!\n", def->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (implicit_handle)
|
|
|
|
{
|
|
|
|
if (explicit_handle_var)
|
|
|
|
{
|
|
|
|
error("%s() must not define a binding handle!\n", def->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 10:12:37 +00:00
|
|
|
fprintf(server, "void __RPC_STUB\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
fprintf(server, "%s_", iface->name);
|
|
|
|
write_name(server, def);
|
|
|
|
fprintf(server, "(\n");
|
|
|
|
indent++;
|
|
|
|
print_server("PRPC_MESSAGE _pRpcMessage)\n");
|
|
|
|
indent--;
|
|
|
|
|
|
|
|
/* write the functions body */
|
|
|
|
fprintf(server, "{\n");
|
|
|
|
indent++;
|
|
|
|
|
|
|
|
/* declare return value '_RetVal' */
|
|
|
|
if (!is_void(def->type, NULL))
|
|
|
|
{
|
|
|
|
print_server("");
|
|
|
|
write_type(server, def->type, def, def->tname);
|
|
|
|
fprintf(server, " _RetVal;\n");
|
|
|
|
}
|
|
|
|
|
2006-03-24 16:40:17 +00:00
|
|
|
/* Declare arguments */
|
|
|
|
declare_args(func);
|
2005-12-08 11:48:44 +00:00
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("MIDL_STUB_MESSAGE _StubMsg;\n");
|
|
|
|
print_server("RPC_STATUS _Status;\n");
|
|
|
|
fprintf(server, "\n");
|
2005-12-08 11:48:44 +00:00
|
|
|
|
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("((void)(_Status));\n");
|
|
|
|
print_server("NdrServerInitializeNew(\n");
|
|
|
|
indent++;
|
|
|
|
print_server("_pRpcMessage,\n");
|
|
|
|
print_server("&_StubMsg,\n");
|
|
|
|
print_server("&%s_StubDesc);\n", iface->name);
|
|
|
|
indent--;
|
|
|
|
fprintf(server, "\n");
|
|
|
|
|
2005-12-12 11:13:43 +00:00
|
|
|
write_parameters_init(func);
|
|
|
|
|
2005-12-12 11:14:03 +00:00
|
|
|
if (explicit_handle_var)
|
|
|
|
{
|
|
|
|
print_server("%s = _pRpcMessage->Handle;\n", explicit_handle_var->name);
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("RpcTryFinally\n");
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
|
|
|
print_server("RpcTryExcept\n");
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
2005-12-08 11:48:44 +00:00
|
|
|
|
|
|
|
if (func->args)
|
|
|
|
{
|
|
|
|
print_server("if ((_pRpcMessage->DataRepresentation & 0x0000FFFFUL) != NDR_LOCAL_DATA_REPRESENTATION)\n");
|
|
|
|
indent++;
|
|
|
|
print_server("NdrConvert(\n");
|
|
|
|
indent++;
|
|
|
|
print_server("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
|
|
|
|
print_server("(PFORMAT_STRING)&__MIDL_ProcFormatString.Format[%u]);\n", proc_offset);
|
|
|
|
indent -= 2;
|
|
|
|
fprintf(server, "\n");
|
|
|
|
|
2006-01-31 17:05:33 +00:00
|
|
|
/* make a copy so we don't increment the type offset twice */
|
|
|
|
type_offset_func = type_offset;
|
|
|
|
|
2006-02-07 11:32:24 +00:00
|
|
|
/* unmarshall arguments */
|
|
|
|
write_remoting_arguments(server, indent, func, &type_offset_func, PASS_IN, PHASE_UNMARSHAL);
|
2005-12-08 11:48:44 +00:00
|
|
|
}
|
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("if (_StubMsg.Buffer > _StubMsg.BufferEnd)\n");
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
|
|
|
print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
|
|
|
|
indent--;
|
|
|
|
print_server("}\n");
|
|
|
|
indent--;
|
|
|
|
print_server("}\n");
|
|
|
|
print_server("RpcExcept(RPC_BAD_STUB_DATA_EXCEPTION_FILTER)\n");
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
|
|
|
print_server("RpcRaiseException(RPC_X_BAD_STUB_DATA);\n");
|
|
|
|
indent--;
|
|
|
|
print_server("}\n");
|
|
|
|
print_server("RpcEndExcept\n");
|
|
|
|
fprintf(server, "\n");
|
|
|
|
|
2006-03-24 16:40:17 +00:00
|
|
|
/* Assign 'out' arguments */
|
|
|
|
assign_out_args(func);
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
/* Call the real server function */
|
|
|
|
if (!is_void(def->type, NULL))
|
|
|
|
print_server("_RetVal = ");
|
|
|
|
else
|
|
|
|
print_server("");
|
|
|
|
write_name(server, def);
|
|
|
|
|
2005-12-08 11:48:44 +00:00
|
|
|
if (func->args)
|
|
|
|
{
|
|
|
|
int first_arg = 1;
|
|
|
|
|
|
|
|
fprintf(server, "(\n");
|
|
|
|
indent++;
|
|
|
|
var = func->args;
|
|
|
|
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
|
|
|
while (var)
|
|
|
|
{
|
|
|
|
if (first_arg)
|
|
|
|
first_arg = 0;
|
|
|
|
else
|
|
|
|
fprintf(server, ",\n");
|
|
|
|
print_server("");
|
|
|
|
write_name(server, var);
|
|
|
|
var = PREV_LINK(var);
|
|
|
|
}
|
|
|
|
fprintf(server, ");\n");
|
|
|
|
indent--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(server, "();\n");
|
|
|
|
}
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2005-12-26 12:20:59 +00:00
|
|
|
if (func->args)
|
|
|
|
{
|
2006-02-07 11:31:43 +00:00
|
|
|
const var_t *var = func->args;
|
2005-12-26 12:20:59 +00:00
|
|
|
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
|
|
|
while (var)
|
|
|
|
{
|
|
|
|
if (is_attr(var->attrs, ATTR_OUT))
|
|
|
|
{
|
|
|
|
unsigned int alignment;
|
|
|
|
buffer_size += get_required_buffer_size(var, &alignment);
|
|
|
|
buffer_size += alignment;
|
|
|
|
}
|
|
|
|
|
|
|
|
var = PREV_LINK(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
if (!is_void(def->type, NULL))
|
2005-12-26 12:20:59 +00:00
|
|
|
{
|
|
|
|
unsigned int alignment;
|
|
|
|
buffer_size += get_required_buffer_size(def, &alignment);
|
|
|
|
buffer_size += alignment;
|
|
|
|
}
|
|
|
|
|
2006-03-29 10:42:29 +00:00
|
|
|
if (has_out_arg_or_return(func))
|
2005-02-23 20:31:07 +00:00
|
|
|
{
|
|
|
|
fprintf(server, "\n");
|
2006-03-29 10:42:29 +00:00
|
|
|
print_server("_StubMsg.BufferLength = %u;\n", buffer_size);
|
|
|
|
|
|
|
|
type_offset_func = type_offset;
|
|
|
|
write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_BUFFERSIZE);
|
|
|
|
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("_pRpcMessage->BufferLength = _StubMsg.BufferLength;\n");
|
|
|
|
fprintf(server, "\n");
|
|
|
|
print_server("_Status = I_RpcGetBuffer(_pRpcMessage);\n");
|
|
|
|
print_server("if (_Status)\n");
|
|
|
|
indent++;
|
|
|
|
print_server("RpcRaiseException(_Status);\n");
|
|
|
|
indent--;
|
|
|
|
fprintf(server, "\n");
|
2005-12-12 10:51:11 +00:00
|
|
|
print_server("_StubMsg.Buffer = (unsigned char *)_pRpcMessage->Buffer;\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
fprintf(server, "\n");
|
2005-12-26 12:20:59 +00:00
|
|
|
}
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2006-03-29 10:42:29 +00:00
|
|
|
type_offset_func = type_offset;
|
|
|
|
|
2006-02-07 11:32:24 +00:00
|
|
|
/* marshall arguments */
|
|
|
|
write_remoting_arguments(server, indent, func, &type_offset, PASS_OUT, PHASE_MARSHAL);
|
2005-12-26 12:21:38 +00:00
|
|
|
|
2005-12-26 12:20:59 +00:00
|
|
|
/* marshall the return value */
|
|
|
|
if (!is_void(def->type, NULL))
|
2006-03-31 11:49:36 +00:00
|
|
|
print_phase_basetype(server, indent, PHASE_MARSHAL, PASS_RETURN, def, "_RetVal");
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
indent--;
|
|
|
|
print_server("}\n");
|
|
|
|
print_server("RpcFinally\n");
|
|
|
|
print_server("{\n");
|
2006-03-29 10:42:29 +00:00
|
|
|
indent++;
|
|
|
|
|
|
|
|
write_remoting_arguments(server, indent, func, &type_offset_func, PASS_OUT, PHASE_FREE);
|
|
|
|
|
|
|
|
indent--;
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("}\n");
|
|
|
|
print_server("RpcEndFinally\n");
|
|
|
|
|
|
|
|
/* calculate buffer length */
|
|
|
|
fprintf(server, "\n");
|
|
|
|
print_server("_pRpcMessage->BufferLength =\n");
|
|
|
|
indent++;
|
2005-12-12 11:12:06 +00:00
|
|
|
print_server("(unsigned int)(_StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer);\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
indent--;
|
|
|
|
indent--;
|
|
|
|
fprintf(server, "}\n");
|
|
|
|
fprintf(server, "\n");
|
|
|
|
|
2005-12-08 11:48:44 +00:00
|
|
|
/* update proc_offset */
|
|
|
|
if (func->args)
|
|
|
|
{
|
|
|
|
var = func->args;
|
|
|
|
while (NEXT_LINK(var)) var = NEXT_LINK(var);
|
|
|
|
while (var)
|
|
|
|
{
|
2005-12-26 12:05:29 +00:00
|
|
|
proc_offset += get_size_procformatstring_var(var);
|
2005-12-08 11:48:44 +00:00
|
|
|
var = PREV_LINK(var);
|
|
|
|
}
|
|
|
|
}
|
2005-12-26 12:05:29 +00:00
|
|
|
if (!is_void(def->type, NULL))
|
|
|
|
proc_offset += get_size_procformatstring_var(def);
|
2006-03-18 13:33:39 +00:00
|
|
|
else
|
|
|
|
proc_offset += 2; /* FC_END and FC_PAD */
|
2005-12-08 11:48:44 +00:00
|
|
|
|
2005-12-08 11:45:45 +00:00
|
|
|
func = PREV_LINK(func);
|
2005-02-23 20:31:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void write_dispatchtable(type_t *iface)
|
|
|
|
{
|
|
|
|
unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
|
|
|
|
unsigned long method_count = 0;
|
2005-12-08 11:45:45 +00:00
|
|
|
func_t *func = iface->funcs;
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
print_server("static RPC_DISPATCH_FUNCTION %s_table[] =\n", iface->name);
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
2005-12-08 11:45:45 +00:00
|
|
|
while (NEXT_LINK(func)) func = NEXT_LINK(func);
|
|
|
|
while (func)
|
2005-02-23 20:31:07 +00:00
|
|
|
{
|
2005-12-08 11:45:45 +00:00
|
|
|
var_t *def = func->def;
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
print_server("%s_", iface->name);
|
|
|
|
write_name(server, def);
|
|
|
|
fprintf(server, ",\n");
|
|
|
|
|
|
|
|
method_count++;
|
2005-12-08 11:45:45 +00:00
|
|
|
func = PREV_LINK(func);
|
2005-02-23 20:31:07 +00:00
|
|
|
}
|
|
|
|
print_server("0\n");
|
|
|
|
indent--;
|
|
|
|
print_server("};\n");
|
|
|
|
print_server("RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable =\n", iface->name, LOWORD(ver), HIWORD(ver));
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
|
|
|
print_server("%u,\n", method_count);
|
|
|
|
print_server("%s_table\n", iface->name);
|
|
|
|
indent--;
|
|
|
|
print_server("};\n");
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void write_stubdescdecl(type_t *iface)
|
|
|
|
{
|
|
|
|
print_server("extern const MIDL_STUB_DESC %s_StubDesc;\n", iface->name);
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-27 11:53:32 +00:00
|
|
|
static void write_stubdescriptor(type_t *iface, int expr_eval_routines)
|
2005-02-23 20:31:07 +00:00
|
|
|
{
|
|
|
|
print_server("static const MIDL_STUB_DESC %s_StubDesc =\n", iface->name);
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
2005-12-12 10:51:11 +00:00
|
|
|
print_server("(void *)& %s___RpcServerInterface,\n", iface->name);
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("MIDL_user_allocate,\n");
|
|
|
|
print_server("MIDL_user_free,\n");
|
2006-03-31 11:46:28 +00:00
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("0,\n");
|
2006-03-31 11:46:28 +00:00
|
|
|
indent--;
|
|
|
|
print_server("},\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0,\n");
|
2006-01-27 11:53:32 +00:00
|
|
|
if (expr_eval_routines)
|
|
|
|
print_server("ExprEvalRoutines,\n");
|
|
|
|
else
|
|
|
|
print_server("0,\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
print_server("0,\n");
|
|
|
|
print_server("__MIDL_TypeFormatString.Format,\n");
|
|
|
|
print_server("1, /* -error bounds_check flag */\n");
|
|
|
|
print_server("0x10001, /* Ndr library version */\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0x50100a4, /* MIDL Version 5.1.164 */\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0, /* notify & notify_flag routine table */\n");
|
|
|
|
print_server("1, /* Flags */\n");
|
|
|
|
print_server("0, /* Reserved3 */\n");
|
|
|
|
print_server("0, /* Reserved4 */\n");
|
|
|
|
print_server("0 /* Reserved5 */\n");
|
|
|
|
indent--;
|
|
|
|
print_server("};\n");
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void write_serverinterfacedecl(type_t *iface)
|
|
|
|
{
|
|
|
|
unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
|
|
|
|
UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
|
|
|
|
|
|
|
|
print_server("extern RPC_DISPATCH_TABLE %s_v%d_%d_DispatchTable;\n", iface->name, LOWORD(ver), HIWORD(ver));
|
|
|
|
fprintf(server, "\n");
|
|
|
|
print_server("static const RPC_SERVER_INTERFACE %s___RpcServerInterface =\n", iface->name );
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
|
|
|
print_server("sizeof(RPC_SERVER_INTERFACE),\n");
|
|
|
|
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",
|
|
|
|
uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0], uuid->Data4[1],
|
|
|
|
uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5], uuid->Data4[6],
|
|
|
|
uuid->Data4[7], LOWORD(ver), HIWORD(ver));
|
|
|
|
print_server("{{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},\n"); /* FIXME */
|
|
|
|
print_server("&%s_v%d_%d_DispatchTable,\n", iface->name, LOWORD(ver), HIWORD(ver));
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
print_server("0,\n");
|
|
|
|
indent--;
|
|
|
|
print_server("};\n");
|
|
|
|
print_server("RPC_IF_HANDLE %s_v%d_%d_s_ifspec = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
|
|
|
|
iface->name, LOWORD(ver), HIWORD(ver), iface->name);
|
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_formatdesc( const char *str )
|
|
|
|
{
|
|
|
|
print_server("typedef struct _MIDL_%s_FORMAT_STRING\n", str );
|
|
|
|
print_server("{\n");
|
|
|
|
indent++;
|
|
|
|
print_server("short Pad;\n");
|
|
|
|
print_server("unsigned char Format[%s_FORMAT_STRING_SIZE];\n", str);
|
|
|
|
indent--;
|
|
|
|
print_server("} MIDL_%s_FORMAT_STRING;\n", str);
|
|
|
|
print_server("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void write_formatstringsdecl(type_t *iface)
|
|
|
|
{
|
2006-03-23 09:33:08 +00:00
|
|
|
print_server("#define TYPE_FORMAT_STRING_SIZE %d\n",
|
|
|
|
get_size_typeformatstring(iface));
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2006-03-23 09:33:08 +00:00
|
|
|
print_server("#define PROC_FORMAT_STRING_SIZE %d\n",
|
|
|
|
get_size_procformatstring(iface));
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
fprintf(server, "\n");
|
|
|
|
write_formatdesc("TYPE");
|
|
|
|
write_formatdesc("PROC");
|
|
|
|
fprintf(server, "\n");
|
|
|
|
print_server("extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
|
|
|
|
print_server("extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
|
|
|
|
print_server("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void init_server(void)
|
|
|
|
{
|
|
|
|
if (server)
|
|
|
|
return;
|
|
|
|
if (!(server = fopen(server_name, "w")))
|
|
|
|
error("Could not open %s for output\n", server_name);
|
|
|
|
|
|
|
|
print_server("/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", WIDL_FULLVERSION, input_name);
|
2005-04-15 14:09:45 +00:00
|
|
|
print_server("#include <string.h>\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
fprintf(server, "\n");
|
2005-04-15 14:09:45 +00:00
|
|
|
print_server("#include \"%s\"\n", header_name);
|
2005-02-23 20:31:07 +00:00
|
|
|
fprintf(server, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void write_server(ifref_t *ifaces)
|
|
|
|
{
|
2005-12-12 11:11:44 +00:00
|
|
|
ifref_t *iface = ifaces;
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
if (!do_server)
|
|
|
|
return;
|
2006-03-31 11:44:04 +00:00
|
|
|
if (!ifaces)
|
2005-02-23 20:31:07 +00:00
|
|
|
return;
|
2005-12-12 11:11:44 +00:00
|
|
|
END_OF_LIST(iface);
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
init_server();
|
|
|
|
if (!server)
|
|
|
|
return;
|
|
|
|
|
2006-03-31 11:44:04 +00:00
|
|
|
for (; iface; iface = PREV_LINK(iface))
|
2005-12-12 11:11:44 +00:00
|
|
|
{
|
2006-03-31 11:44:04 +00:00
|
|
|
if (is_object(iface->iface->attrs) || is_local(iface->iface->attrs))
|
|
|
|
continue;
|
|
|
|
|
2005-12-12 11:11:44 +00:00
|
|
|
fprintf(server, "/*****************************************************************************\n");
|
|
|
|
fprintf(server, " * %s interface\n", iface->iface->name);
|
|
|
|
fprintf(server, " */\n");
|
|
|
|
fprintf(server, "\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2005-12-26 12:08:51 +00:00
|
|
|
if (iface->iface->funcs)
|
|
|
|
{
|
2006-01-27 11:53:32 +00:00
|
|
|
int expr_eval_routines;
|
|
|
|
|
2005-12-26 12:08:51 +00:00
|
|
|
write_formatstringsdecl(iface->iface);
|
|
|
|
write_serverinterfacedecl(iface->iface);
|
|
|
|
write_stubdescdecl(iface->iface);
|
|
|
|
|
|
|
|
write_function_stubs(iface->iface);
|
|
|
|
|
2006-01-27 11:53:32 +00:00
|
|
|
print_server("#if !defined(__RPC_WIN32__)\n");
|
|
|
|
print_server("#error Invalid build platform for this stub.\n");
|
|
|
|
print_server("#endif\n");
|
|
|
|
fprintf(server, "\n");
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2006-01-27 11:53:32 +00:00
|
|
|
write_procformatstring(server, iface->iface);
|
|
|
|
write_typeformatstring(server, iface->iface);
|
2005-02-23 20:31:07 +00:00
|
|
|
|
2006-01-27 11:53:32 +00:00
|
|
|
fprintf(server, "\n");
|
2005-12-12 11:11:44 +00:00
|
|
|
|
2006-01-27 11:53:32 +00:00
|
|
|
expr_eval_routines = write_expr_eval_routines(server, iface->iface->name);
|
|
|
|
if (expr_eval_routines)
|
|
|
|
write_expr_eval_routine_list(server, iface->iface->name);
|
|
|
|
|
|
|
|
write_stubdescriptor(iface->iface, expr_eval_routines);
|
|
|
|
write_dispatchtable(iface->iface);
|
|
|
|
}
|
2005-12-12 11:11:44 +00:00
|
|
|
}
|
2005-02-23 20:31:07 +00:00
|
|
|
|
|
|
|
fclose(server);
|
|
|
|
}
|