vbscript: Store class_desc_t in vbdisp_t.
[wine] / dlls / vbscript / vbscript.h
1 /*
2  * Copyright 2011 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <stdarg.h>
20
21 #define COBJMACROS
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "ole2.h"
26 #include "dispex.h"
27 #include "activscp.h"
28
29 #include "vbscript_classes.h"
30
31 #include "wine/list.h"
32 #include "wine/unicode.h"
33
34 typedef struct {
35     void **blocks;
36     DWORD block_cnt;
37     DWORD last_block;
38     DWORD offset;
39     struct list custom_blocks;
40 } vbsheap_t;
41
42 void vbsheap_init(vbsheap_t*) DECLSPEC_HIDDEN;
43 void *vbsheap_alloc(vbsheap_t*,size_t) __WINE_ALLOC_SIZE(2) DECLSPEC_HIDDEN;
44 void vbsheap_free(vbsheap_t*) DECLSPEC_HIDDEN;
45
46 typedef struct _function_t function_t;
47 typedef struct _vbscode_t vbscode_t;
48 typedef struct _script_ctx_t script_ctx_t;
49
50 typedef struct named_item_t {
51     IDispatch *disp;
52     DWORD flags;
53     LPWSTR name;
54
55     struct list entry;
56 } named_item_t;
57
58 typedef struct _class_desc_t {
59     const WCHAR *name;
60     script_ctx_t *ctx;
61     struct _class_desc_t *next;
62 } class_desc_t;
63
64 typedef struct {
65     IDispatchEx IDispatchEx_iface;
66
67     LONG ref;
68
69     const class_desc_t *desc;
70 } vbdisp_t;
71
72 typedef enum {
73     VBDISP_CALLGET,
74     VBDISP_LET,
75     VBDISP_SET,
76     VBDISP_ANY
77 } vbdisp_invoke_type_t;
78
79 HRESULT create_vbdisp(const class_desc_t*,vbdisp_t**);
80 HRESULT disp_get_id(IDispatch*,BSTR,DISPID*);
81 HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*);
82 HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,VARIANT*);
83
84 static inline unsigned arg_cnt(const DISPPARAMS *dp)
85 {
86     return dp->cArgs - dp->cNamedArgs;
87 }
88
89 static inline VARIANT *get_arg(DISPPARAMS *dp, DWORD i)
90 {
91     return dp->rgvarg + dp->cArgs-i-1;
92 }
93
94 typedef struct _dynamic_var_t {
95     struct _dynamic_var_t *next;
96     VARIANT v;
97     const WCHAR *name;
98 } dynamic_var_t;
99
100 struct _script_ctx_t {
101     IActiveScriptSite *site;
102     LCID lcid;
103
104     IDispatch *host_global;
105
106     class_desc_t script_desc;
107     vbdisp_t *script_obj;
108
109     dynamic_var_t *global_vars;
110     function_t *global_funcs;
111     class_desc_t *classes;
112
113     struct list code_list;
114     struct list named_items;
115 };
116
117 HRESULT init_global(script_ctx_t*);
118
119 typedef enum {
120     ARG_NONE = 0,
121     ARG_STR,
122     ARG_BSTR,
123     ARG_INT,
124     ARG_UINT,
125     ARG_ADDR,
126     ARG_DOUBLE
127 } instr_arg_type_t;
128
129 #define OP_LIST                                   \
130     X(add,            1, 0,           0)          \
131     X(and,            1, 0,           0)          \
132     X(assign_ident,   1, ARG_BSTR,    0)          \
133     X(assign_member,  1, ARG_BSTR,    0)          \
134     X(bool,           1, ARG_INT,     0)          \
135     X(concat,         1, 0,           0)          \
136     X(div,            1, 0,           0)          \
137     X(double,         1, ARG_DOUBLE,  0)          \
138     X(empty,          1, 0,           0)          \
139     X(equal,          1, 0,           0)          \
140     X(eqv,            1, 0,           0)          \
141     X(exp,            1, 0,           0)          \
142     X(icall,          1, ARG_BSTR,    ARG_UINT)   \
143     X(icallv,         1, ARG_BSTR,    ARG_UINT)   \
144     X(idiv,           1, 0,           0)          \
145     X(imp,            1, 0,           0)          \
146     X(jmp,            0, ARG_ADDR,    0)          \
147     X(jmp_false,      0, ARG_ADDR,    0)          \
148     X(long,           1, ARG_INT,     0)          \
149     X(mod,            1, 0,           0)          \
150     X(mul,            1, 0,           0)          \
151     X(neg,            1, 0,           0)          \
152     X(nequal,         1, 0,           0)          \
153     X(new,            1, ARG_STR,     0)          \
154     X(not,            1, 0,           0)          \
155     X(null,           1, 0,           0)          \
156     X(or,             1, 0,           0)          \
157     X(ret,            0, 0,           0)          \
158     X(set_ident,      1, ARG_BSTR,    0)          \
159     X(set_member,     1, ARG_BSTR,    0)          \
160     X(short,          1, ARG_INT,     0)          \
161     X(string,         1, ARG_STR,     0)          \
162     X(sub,            1, 0,           0)          \
163     X(xor,            1, 0,           0)
164
165 typedef enum {
166 #define X(x,n,a,b) OP_##x,
167 OP_LIST
168 #undef X
169     OP_LAST
170 } vbsop_t;
171
172 typedef union {
173     const WCHAR *str;
174     BSTR bstr;
175     unsigned uint;
176     LONG lng;
177     double *dbl;
178 } instr_arg_t;
179
180 typedef struct {
181     vbsop_t op;
182     instr_arg_t arg1;
183     instr_arg_t arg2;
184 } instr_t;
185
186 typedef struct {
187     const WCHAR *name;
188     BOOL by_ref;
189 } arg_desc_t;
190
191 typedef enum {
192     FUNC_GLOBAL,
193     FUNC_FUNCTION,
194     FUNC_SUB
195 } function_type_t;
196
197 typedef struct {
198     const WCHAR *name;
199 } var_desc_t;
200
201 struct _function_t {
202     function_type_t type;
203     const WCHAR *name;
204     arg_desc_t *args;
205     unsigned arg_cnt;
206     var_desc_t *vars;
207     unsigned var_cnt;
208     unsigned code_off;
209     vbscode_t *code_ctx;
210     function_t *next;
211 };
212
213 struct _vbscode_t {
214     instr_t *instrs;
215     WCHAR *source;
216
217     BOOL option_explicit;
218
219     BOOL global_executed;
220     function_t global_code;
221
222     BSTR *bstr_pool;
223     unsigned bstr_pool_size;
224     unsigned bstr_cnt;
225     vbsheap_t heap;
226
227     struct list entry;
228 };
229
230 void release_vbscode(vbscode_t*) DECLSPEC_HIDDEN;
231 HRESULT compile_script(script_ctx_t*,const WCHAR*,vbscode_t**) DECLSPEC_HIDDEN;
232 HRESULT exec_script(script_ctx_t*,function_t*,DISPPARAMS*,VARIANT*) DECLSPEC_HIDDEN;
233
234 HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
235
236 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
237
238 static inline void *heap_alloc(size_t len)
239 {
240     return HeapAlloc(GetProcessHeap(), 0, len);
241 }
242
243 static inline void *heap_alloc_zero(size_t len)
244 {
245     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
246 }
247
248 static inline void *heap_realloc(void *mem, size_t len)
249 {
250     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
251 }
252
253 static inline BOOL heap_free(void *mem)
254 {
255     return HeapFree(GetProcessHeap(), 0, mem);
256 }
257
258 static inline LPWSTR heap_strdupW(LPCWSTR str)
259 {
260     LPWSTR ret = NULL;
261
262     if(str) {
263         DWORD size;
264
265         size = (strlenW(str)+1)*sizeof(WCHAR);
266         ret = heap_alloc(size);
267         if(ret)
268             memcpy(ret, str, size);
269     }
270
271     return ret;
272 }