ReactOS 0.4.15-dev-7961-gdcf9eb0
typegen.h
Go to the documentation of this file.
1/*
2 * Format String Generator for IDL Compiler
3 *
4 * Copyright 2005-2006 Eric Kohl
5 * Copyright 2005 Robert Shearman
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22#include <stdarg.h>
23
24enum pass
25{
29};
30
32{
37};
38
40{
41 TDT_ALL_TYPES = 1 << 0,
44};
45
47{
61};
62
63typedef int (*type_pred_t)(const type_t *);
64
65void write_formatstringsdecl(FILE *f, int indent, const statement_list_t *stmts, type_pred_t pred);
68void write_procformatstring_offsets( FILE *file, const type_t *iface );
69void print_phase_basetype(FILE *file, int indent, const char *local_var_prefix, enum remoting_phase phase,
70 enum pass pass, const var_t *var, const char *varname);
71void write_parameter_conf_or_var_exprs(FILE *file, int indent, const char *local_var_prefix,
72 enum remoting_phase phase, const var_t *var, int valid_variance);
73void write_remoting_arguments(FILE *file, int indent, const var_t *func, const char *local_var_prefix,
74 enum pass pass, enum remoting_phase phase);
75unsigned int get_size_procformatstring_func(const type_t *iface, const var_t *func);
76unsigned int get_size_procformatstring(const statement_list_t *stmts, type_pred_t pred);
77unsigned int get_size_typeformatstring(const statement_list_t *stmts, type_pred_t pred);
78void assign_stub_out_args( FILE *file, int indent, const var_t *func, const char *local_var_prefix );
79void declare_stub_args( FILE *file, int indent, const var_t *func );
80void write_func_param_struct( FILE *file, const type_t *iface, const type_t *func,
81 const char *var_decl, int add_retval );
82void write_pointer_checks( FILE *file, int indent, const var_t *func );
83int write_expr_eval_routines(FILE *file, const char *iface);
84void write_expr_eval_routine_list(FILE *file, const char *iface);
86void write_endpoints( FILE *f, const char *prefix, const str_list_t *list );
87void write_client_call_routine( FILE *file, const type_t *iface, const var_t *func,
88 const char *prefix, unsigned int proc_offset );
90unsigned int type_memsize(const type_t *t);
91int decl_indirect(const type_t *t);
92int is_interpreted_func(const type_t *iface, const var_t *func);
93void write_parameters_init(FILE *file, int indent, const var_t *func, const char *local_var_prefix);
94void print(FILE *file, int indent, const char *format, va_list ap);
95expr_t *get_size_is_expr(const type_t *t, const char *name);
97void write_full_pointer_init(FILE *file, int indent, const var_t *func, int is_server);
99unsigned char get_basic_fc(const type_t *type);
100unsigned char get_pointer_fc(const type_t *type, const attr_list_t *attrs, int toplevel_param);
101unsigned char get_struct_fc(const type_t *type);
102enum typegen_type typegen_detect_type(const type_t *type, const attr_list_t *attrs, unsigned int flags);
103unsigned int type_memsize_and_alignment(const type_t *t, unsigned int *align);
char * va_list
Definition: acmsvcex.h:78
Definition: list.h:37
static const WCHAR indent[]
Definition: object.c:1156
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Definition: typeof.h:31
int align(int length, int align)
Definition: dsound8.c:36
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
GLdouble GLdouble t
Definition: gl.h:2047
GLenum func
Definition: glext.h:6028
GLfloat f
Definition: glext.h:7540
GLbitfield flags
Definition: glext.h:7161
const char * var
Definition: shader.c:5666
Definition: fci.c:127
Definition: name.c:39
pass
Definition: typegen.h:25
@ PASS_RETURN
Definition: typegen.h:28
@ PASS_OUT
Definition: typegen.h:27
@ PASS_IN
Definition: typegen.h:26
void write_pointer_checks(FILE *file, int indent, const var_t *func)
Definition: typegen.c:4845
void declare_stub_args(FILE *file, int indent, const var_t *func)
Definition: typegen.c:4615
enum typegen_type typegen_detect_type(const type_t *type, const attr_list_t *attrs, unsigned int flags)
Definition: typegen.c:329
void write_procformatstring(FILE *file, const statement_list_t *stmts, type_pred_t pred)
Definition: typegen.c:1513
unsigned int get_size_typeformatstring(const statement_list_t *stmts, type_pred_t pred)
Definition: typegen.c:4609
void write_parameters_init(FILE *file, int indent, const var_t *func, const char *local_var_prefix)
Definition: typegen.c:903
void write_endpoints(FILE *f, const char *prefix, const str_list_t *list)
Definition: typegen.c:4940
void write_user_quad_list(FILE *file)
Definition: typegen.c:4918
void print_phase_basetype(FILE *file, int indent, const char *local_var_prefix, enum remoting_phase phase, enum pass pass, const var_t *var, const char *varname)
Definition: typegen.c:3986
expr_t * get_size_is_expr(const type_t *t, const char *name)
Definition: typegen.c:4110
void write_full_pointer_init(FILE *file, int indent, const var_t *func, int is_server)
Definition: typegen.c:2088
void write_func_param_struct(FILE *file, const type_t *iface, const type_t *func, const char *var_decl, int add_retval)
Definition: typegen.c:4789
unsigned char get_pointer_fc(const type_t *type, const attr_list_t *attrs, int toplevel_param)
Definition: typegen.c:258
void write_expr_eval_routine_list(FILE *file, const char *iface)
Definition: typegen.c:4896
int decl_indirect(const type_t *t)
Definition: typegen.c:948
void write_typeformatstring(FILE *file, const statement_list_t *stmts, type_pred_t pred)
Definition: typegen.c:3761
void write_exceptions(FILE *file)
Definition: typegen.c:5033
unsigned char get_struct_fc(const type_t *type)
Definition: typegen.c:478
void write_remoting_arguments(FILE *file, int indent, const var_t *func, const char *local_var_prefix, enum pass pass, enum remoting_phase phase)
Definition: typegen.c:4559
int is_full_pointer_function(const var_t *func)
Definition: typegen.c:2075
int(* type_pred_t)(const type_t *)
Definition: typegen.h:63
unsigned int get_size_procformatstring_func(const type_t *iface, const var_t *func)
Definition: typegen.c:4584
unsigned char get_basic_fc(const type_t *type)
Definition: typegen.c:204
void write_client_call_routine(FILE *file, const type_t *iface, const var_t *func, const char *prefix, unsigned int proc_offset)
Definition: typegen.c:4974
unsigned int type_memsize(const type_t *t)
Definition: typegen.c:1975
int is_interpreted_func(const type_t *iface, const var_t *func)
Definition: typegen.c:1240
int write_expr_eval_routines(FILE *file, const char *iface)
Definition: typegen.c:4857
void write_parameter_conf_or_var_exprs(FILE *file, int indent, const char *local_var_prefix, enum remoting_phase phase, const var_t *var, int valid_variance)
Definition: typegen.c:4129
unsigned int get_size_procformatstring(const statement_list_t *stmts, type_pred_t pred)
Definition: typegen.c:4602
remoting_phase
Definition: typegen.h:32
@ PHASE_MARSHAL
Definition: typegen.h:34
@ PHASE_BUFFERSIZE
Definition: typegen.h:33
@ PHASE_FREE
Definition: typegen.h:36
@ PHASE_UNMARSHAL
Definition: typegen.h:35
void write_procformatstring_offsets(FILE *file, const type_t *iface)
Definition: typegen.c:1535
void print(FILE *file, int indent, const char *format, va_list ap)
Definition: typegen.c:879
unsigned int type_memsize_and_alignment(const type_t *t, unsigned int *align)
Definition: typegen.c:1866
void write_full_pointer_free(FILE *file, int indent, const var_t *func)
Definition: typegen.c:2095
void write_formatstringsdecl(FILE *f, int indent, const statement_list_t *stmts, type_pred_t pred)
Definition: typegen.c:929
typegen_detect_flags
Definition: typegen.h:40
@ TDT_IGNORE_STRINGS
Definition: typegen.h:42
@ TDT_ALL_TYPES
Definition: typegen.h:41
@ TDT_IGNORE_RANGES
Definition: typegen.h:43
typegen_type
Definition: typegen.h:47
@ TGT_INVALID
Definition: typegen.h:48
@ TGT_USER_TYPE
Definition: typegen.h:49
@ TGT_POINTER
Definition: typegen.h:53
@ TGT_UNION
Definition: typegen.h:59
@ TGT_STRUCT
Definition: typegen.h:58
@ TGT_ARRAY
Definition: typegen.h:54
@ TGT_CTXT_HANDLE_POINTER
Definition: typegen.h:51
@ TGT_ENUM
Definition: typegen.h:57
@ TGT_CTXT_HANDLE
Definition: typegen.h:50
@ TGT_RANGE
Definition: typegen.h:60
@ TGT_STRING
Definition: typegen.h:52
@ TGT_BASIC
Definition: typegen.h:56
@ TGT_IFACE_POINTER
Definition: typegen.h:55
void assign_stub_out_args(FILE *file, int indent, const var_t *func, const char *local_var_prefix)
Definition: typegen.c:4676
void int int ULONGLONG int va_list * ap
Definition: winesup.h:36