2005-12-08 12:52:13 +01:00
|
|
|
/*
|
|
|
|
* Format String Generator for IDL Compiler
|
|
|
|
*
|
2006-03-23 10:33:08 +01:00
|
|
|
* Copyright 2005-2006 Eric Kohl
|
2005-12-08 12:52:13 +01:00
|
|
|
* Copyright 2005 Robert Shearman
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-12-08 12:52:13 +01:00
|
|
|
*/
|
|
|
|
|
2007-06-15 03:29:33 +02:00
|
|
|
#include <stdarg.h>
|
2005-12-08 12:52:13 +01:00
|
|
|
|
2005-12-26 13:14:28 +01:00
|
|
|
enum pass
|
|
|
|
{
|
|
|
|
PASS_IN,
|
|
|
|
PASS_OUT,
|
|
|
|
PASS_RETURN
|
|
|
|
};
|
|
|
|
|
2006-02-07 12:32:24 +01:00
|
|
|
enum remoting_phase
|
|
|
|
{
|
|
|
|
PHASE_BUFFERSIZE,
|
|
|
|
PHASE_MARSHAL,
|
|
|
|
PHASE_UNMARSHAL,
|
|
|
|
PHASE_FREE
|
|
|
|
};
|
|
|
|
|
2007-10-16 03:06:33 +02:00
|
|
|
typedef int (*type_pred_t)(const type_t *);
|
|
|
|
|
|
|
|
void write_formatstringsdecl(FILE *f, int indent, ifref_list_t *ifaces, type_pred_t pred);
|
|
|
|
void write_procformatstring(FILE *file, const ifref_list_t *ifaces, type_pred_t pred);
|
|
|
|
void write_typeformatstring(FILE *file, const ifref_list_t *ifaces, type_pred_t pred);
|
2006-03-31 13:49:36 +02:00
|
|
|
void print_phase_basetype(FILE *file, int indent, enum remoting_phase phase, enum pass pass, const var_t *var, const char *varname);
|
2007-05-16 02:45:59 +02:00
|
|
|
void write_remoting_arguments(FILE *file, int indent, const func_t *func, enum pass pass, enum remoting_phase phase);
|
2006-01-24 11:05:51 +01:00
|
|
|
size_t get_size_procformatstring_var(const var_t *var);
|
2007-01-24 20:05:22 +01:00
|
|
|
size_t get_size_procformatstring_func(const func_t *func);
|
2007-10-16 03:06:33 +02:00
|
|
|
size_t get_size_procformatstring(const ifref_list_t *ifaces, type_pred_t pred);
|
|
|
|
size_t get_size_typeformatstring(const ifref_list_t *ifaces, type_pred_t pred);
|
2007-01-24 19:59:16 +01:00
|
|
|
void assign_stub_out_args( FILE *file, int indent, const func_t *func );
|
|
|
|
void declare_stub_args( FILE *file, int indent, const func_t *func );
|
2006-01-27 12:53:32 +01:00
|
|
|
int write_expr_eval_routines(FILE *file, const char *iface);
|
|
|
|
void write_expr_eval_routine_list(FILE *file, const char *iface);
|
2007-06-14 01:13:04 +02:00
|
|
|
void write_user_quad_list(FILE *file);
|
2007-02-07 17:55:09 +01:00
|
|
|
void write_endpoints( FILE *f, const char *prefix, const str_list_t *list );
|
2007-06-06 03:50:31 +02:00
|
|
|
size_t type_memsize(const type_t *t, unsigned int *align);
|
2007-06-14 01:13:04 +02:00
|
|
|
int decl_indirect(const type_t *t);
|
2007-06-15 03:30:26 +02:00
|
|
|
void write_parameters_init(FILE *file, int indent, const func_t *func);
|
2007-06-15 03:29:33 +02:00
|
|
|
void print(FILE *file, int indent, const char *format, va_list ap);
|
2007-09-14 03:04:32 +02:00
|
|
|
int get_padding(const var_list_t *fields);
|
2007-09-19 00:29:59 +02:00
|
|
|
int is_user_type(const type_t *t);
|