Release 6.15.
[wine.git] / dlls / vbscript / vbscript.h
blobafcce5eb9b83e0e06c44de0ef808c08309c4b51d
1 /*
2 * Copyright 2011 Jacek Caban for CodeWeavers
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.
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.
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
19 #include <stdarg.h>
20 #include <stdint.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "ole2.h"
27 #include "dispex.h"
28 #include "activscp.h"
29 #include "activdbg.h"
31 #include "vbscript_classes.h"
32 #include "vbscript_defs.h"
34 #include "wine/heap.h"
35 #include "wine/list.h"
37 typedef struct {
38 void **blocks;
39 DWORD block_cnt;
40 DWORD last_block;
41 DWORD offset;
42 BOOL mark;
43 struct list custom_blocks;
44 } heap_pool_t;
46 void heap_pool_init(heap_pool_t*) DECLSPEC_HIDDEN;
47 void *heap_pool_alloc(heap_pool_t*,size_t) __WINE_ALLOC_SIZE(2) DECLSPEC_HIDDEN;
48 void *heap_pool_grow(heap_pool_t*,void*,DWORD,DWORD) DECLSPEC_HIDDEN;
49 void heap_pool_clear(heap_pool_t*) DECLSPEC_HIDDEN;
50 void heap_pool_free(heap_pool_t*) DECLSPEC_HIDDEN;
51 heap_pool_t *heap_pool_mark(heap_pool_t*) DECLSPEC_HIDDEN;
53 typedef struct _function_t function_t;
54 typedef struct _vbscode_t vbscode_t;
55 typedef struct _script_ctx_t script_ctx_t;
56 typedef struct _vbdisp_t vbdisp_t;
58 typedef enum {
59 VBDISP_CALLGET,
60 VBDISP_LET,
61 VBDISP_SET,
62 VBDISP_ANY
63 } vbdisp_invoke_type_t;
65 typedef struct {
66 unsigned dim_cnt;
67 SAFEARRAYBOUND *bounds;
68 } array_desc_t;
70 typedef struct {
71 BOOL is_public;
72 BOOL is_array;
73 const WCHAR *name;
74 } vbdisp_prop_desc_t;
76 typedef struct {
77 const WCHAR *name;
78 BOOL is_public;
79 BOOL is_array;
80 function_t *entries[VBDISP_ANY];
81 } vbdisp_funcprop_desc_t;
83 typedef struct _class_desc_t {
84 const WCHAR *name;
85 script_ctx_t *ctx;
87 unsigned class_initialize_id;
88 unsigned class_terminate_id;
89 unsigned func_cnt;
90 vbdisp_funcprop_desc_t *funcs;
92 unsigned prop_cnt;
93 vbdisp_prop_desc_t *props;
95 unsigned array_cnt;
96 array_desc_t *array_descs;
98 function_t *value_func;
100 struct _class_desc_t *next;
101 } class_desc_t;
103 struct _vbdisp_t {
104 IDispatchEx IDispatchEx_iface;
106 LONG ref;
107 BOOL terminator_ran;
108 struct list entry;
110 const class_desc_t *desc;
111 SAFEARRAY **arrays;
112 VARIANT props[1];
115 typedef struct _dynamic_var_t {
116 struct _dynamic_var_t *next;
117 VARIANT v;
118 const WCHAR *name;
119 BOOL is_const;
120 SAFEARRAY *array;
121 } dynamic_var_t;
123 typedef struct {
124 IDispatchEx IDispatchEx_iface;
125 LONG ref;
127 dynamic_var_t **global_vars;
128 size_t global_vars_cnt;
129 size_t global_vars_size;
131 function_t **global_funcs;
132 size_t global_funcs_cnt;
133 size_t global_funcs_size;
135 class_desc_t *classes;
137 script_ctx_t *ctx;
138 heap_pool_t heap;
139 } ScriptDisp;
141 typedef struct _builtin_prop_t builtin_prop_t;
143 typedef struct {
144 IDispatch IDispatch_iface;
145 LONG ref;
146 size_t member_cnt;
147 const builtin_prop_t *members;
148 script_ctx_t *ctx;
149 } BuiltinDisp;
151 typedef struct named_item_t {
152 ScriptDisp *script_obj;
153 IDispatch *disp;
154 unsigned ref;
155 DWORD flags;
156 LPWSTR name;
158 struct list entry;
159 } named_item_t;
161 HRESULT create_vbdisp(const class_desc_t*,vbdisp_t**) DECLSPEC_HIDDEN;
162 HRESULT disp_get_id(IDispatch*,BSTR,vbdisp_invoke_type_t,BOOL,DISPID*) DECLSPEC_HIDDEN;
163 HRESULT vbdisp_get_id(vbdisp_t*,BSTR,vbdisp_invoke_type_t,BOOL,DISPID*) DECLSPEC_HIDDEN;
164 HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*) DECLSPEC_HIDDEN;
165 HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,WORD,DISPPARAMS*) DECLSPEC_HIDDEN;
166 HRESULT get_disp_value(script_ctx_t*,IDispatch*,VARIANT*) DECLSPEC_HIDDEN;
167 void collect_objects(script_ctx_t*) DECLSPEC_HIDDEN;
168 HRESULT create_script_disp(script_ctx_t*,ScriptDisp**) DECLSPEC_HIDDEN;
170 HRESULT to_int(VARIANT*,int*) DECLSPEC_HIDDEN;
172 static inline unsigned arg_cnt(const DISPPARAMS *dp)
174 return dp->cArgs - dp->cNamedArgs;
177 static inline VARIANT *get_arg(DISPPARAMS *dp, DWORD i)
179 return dp->rgvarg + dp->cArgs-i-1;
182 struct _script_ctx_t {
183 IActiveScriptSite *site;
184 LCID lcid;
186 IInternetHostSecurityManager *secmgr;
187 DWORD safeopt;
189 ScriptDisp *script_obj;
191 BuiltinDisp *global_obj;
192 BuiltinDisp *err_obj;
194 EXCEPINFO ei;
195 vbscode_t *error_loc_code;
196 unsigned error_loc_offset;
198 struct list objects;
199 struct list code_list;
200 struct list named_items;
203 HRESULT init_global(script_ctx_t*) DECLSPEC_HIDDEN;
204 HRESULT init_err(script_ctx_t*) DECLSPEC_HIDDEN;
206 IUnknown *create_ax_site(script_ctx_t*) DECLSPEC_HIDDEN;
208 typedef enum {
209 ARG_NONE = 0,
210 ARG_STR,
211 ARG_BSTR,
212 ARG_INT,
213 ARG_UINT,
214 ARG_ADDR,
215 ARG_DOUBLE
216 } instr_arg_type_t;
218 #define OP_LIST \
219 X(add, 1, 0, 0) \
220 X(and, 1, 0, 0) \
221 X(assign_ident, 1, ARG_BSTR, ARG_UINT) \
222 X(assign_member, 1, ARG_BSTR, ARG_UINT) \
223 X(bool, 1, ARG_INT, 0) \
224 X(catch, 1, ARG_ADDR, ARG_UINT) \
225 X(case, 0, ARG_ADDR, 0) \
226 X(concat, 1, 0, 0) \
227 X(const, 1, ARG_BSTR, 0) \
228 X(deref, 1, 0, 0) \
229 X(dim, 1, ARG_BSTR, ARG_UINT) \
230 X(div, 1, 0, 0) \
231 X(double, 1, ARG_DOUBLE, 0) \
232 X(empty, 1, 0, 0) \
233 X(enumnext, 0, ARG_ADDR, ARG_BSTR) \
234 X(equal, 1, 0, 0) \
235 X(hres, 1, ARG_UINT, 0) \
236 X(errmode, 1, ARG_INT, 0) \
237 X(eqv, 1, 0, 0) \
238 X(exp, 1, 0, 0) \
239 X(gt, 1, 0, 0) \
240 X(gteq, 1, 0, 0) \
241 X(icall, 1, ARG_BSTR, ARG_UINT) \
242 X(icallv, 1, ARG_BSTR, ARG_UINT) \
243 X(idiv, 1, 0, 0) \
244 X(imp, 1, 0, 0) \
245 X(incc, 1, ARG_BSTR, 0) \
246 X(int, 1, ARG_INT, 0) \
247 X(is, 1, 0, 0) \
248 X(jmp, 0, ARG_ADDR, 0) \
249 X(jmp_false, 0, ARG_ADDR, 0) \
250 X(jmp_true, 0, ARG_ADDR, 0) \
251 X(lt, 1, 0, 0) \
252 X(lteq, 1, 0, 0) \
253 X(mcall, 1, ARG_BSTR, ARG_UINT) \
254 X(mcallv, 1, ARG_BSTR, ARG_UINT) \
255 X(me, 1, 0, 0) \
256 X(mod, 1, 0, 0) \
257 X(mul, 1, 0, 0) \
258 X(neg, 1, 0, 0) \
259 X(nequal, 1, 0, 0) \
260 X(new, 1, ARG_STR, 0) \
261 X(newenum, 1, 0, 0) \
262 X(not, 1, 0, 0) \
263 X(nothing, 1, 0, 0) \
264 X(null, 1, 0, 0) \
265 X(or, 1, 0, 0) \
266 X(pop, 1, ARG_UINT, 0) \
267 X(redim, 1, ARG_BSTR, ARG_UINT) \
268 X(redim_preserve, 1, ARG_BSTR, ARG_UINT) \
269 X(ret, 0, 0, 0) \
270 X(retval, 1, 0, 0) \
271 X(set_ident, 1, ARG_BSTR, ARG_UINT) \
272 X(set_member, 1, ARG_BSTR, ARG_UINT) \
273 X(stack, 1, ARG_UINT, 0) \
274 X(step, 0, ARG_ADDR, ARG_BSTR) \
275 X(stop, 1, 0, 0) \
276 X(string, 1, ARG_STR, 0) \
277 X(sub, 1, 0, 0) \
278 X(val, 1, 0, 0) \
279 X(vcall, 1, ARG_UINT, 0) \
280 X(vcallv, 1, ARG_UINT, 0) \
281 X(xor, 1, 0, 0)
283 typedef enum {
284 #define X(x,n,a,b) OP_##x,
285 OP_LIST
286 #undef X
287 OP_LAST
288 } vbsop_t;
290 typedef union {
291 const WCHAR *str;
292 BSTR bstr;
293 unsigned uint;
294 LONG lng;
295 double *dbl;
296 } instr_arg_t;
298 typedef struct {
299 vbsop_t op;
300 unsigned loc;
301 instr_arg_t arg1;
302 instr_arg_t arg2;
303 } instr_t;
305 typedef struct {
306 const WCHAR *name;
307 BOOL by_ref;
308 } arg_desc_t;
310 typedef enum {
311 FUNC_GLOBAL,
312 FUNC_FUNCTION,
313 FUNC_SUB,
314 FUNC_PROPGET,
315 FUNC_PROPLET,
316 FUNC_PROPSET,
317 } function_type_t;
319 typedef struct {
320 const WCHAR *name;
321 } var_desc_t;
323 struct _function_t {
324 function_type_t type;
325 const WCHAR *name;
326 BOOL is_public;
327 arg_desc_t *args;
328 unsigned arg_cnt;
329 var_desc_t *vars;
330 unsigned var_cnt;
331 array_desc_t *array_descs;
332 unsigned array_cnt;
333 unsigned code_off;
334 vbscode_t *code_ctx;
335 function_t *next;
338 struct _vbscode_t {
339 instr_t *instrs;
340 unsigned ref;
342 WCHAR *source;
343 DWORD_PTR cookie;
344 unsigned start_line;
346 BOOL option_explicit;
348 BOOL pending_exec;
349 BOOL is_persistent;
350 function_t main_code;
351 named_item_t *named_item;
353 BSTR *bstr_pool;
354 unsigned bstr_pool_size;
355 unsigned bstr_cnt;
356 heap_pool_t heap;
358 function_t *funcs;
359 class_desc_t *classes;
360 class_desc_t *last_class;
362 struct list entry;
365 static inline void grab_vbscode(vbscode_t *code)
367 code->ref++;
370 void release_vbscode(vbscode_t*) DECLSPEC_HIDDEN;
371 HRESULT compile_script(script_ctx_t*,const WCHAR*,const WCHAR*,const WCHAR*,DWORD_PTR,unsigned,DWORD,vbscode_t**) DECLSPEC_HIDDEN;
372 HRESULT compile_procedure(script_ctx_t*,const WCHAR*,const WCHAR*,const WCHAR*,DWORD_PTR,unsigned,DWORD,class_desc_t**) DECLSPEC_HIDDEN;
373 HRESULT exec_script(script_ctx_t*,BOOL,function_t*,vbdisp_t*,DISPPARAMS*,VARIANT*) DECLSPEC_HIDDEN;
374 void release_dynamic_var(dynamic_var_t*) DECLSPEC_HIDDEN;
375 named_item_t *lookup_named_item(script_ctx_t*,const WCHAR*,unsigned) DECLSPEC_HIDDEN;
376 void release_named_item(named_item_t*) DECLSPEC_HIDDEN;
377 void clear_ei(EXCEPINFO*) DECLSPEC_HIDDEN;
378 HRESULT report_script_error(script_ctx_t*,const vbscode_t*,unsigned) DECLSPEC_HIDDEN;
379 void detach_global_objects(script_ctx_t*) DECLSPEC_HIDDEN;
380 HRESULT get_builtin_id(BuiltinDisp*,const WCHAR*,DISPID*) DECLSPEC_HIDDEN;
382 void release_regexp_typelib(void) DECLSPEC_HIDDEN;
383 HRESULT get_dispatch_typeinfo(ITypeInfo**) DECLSPEC_HIDDEN;
385 static inline BOOL is_int32(double d)
387 return INT32_MIN <= d && d <= INT32_MAX && (double)(int)d == d;
390 static inline BOOL is_digit(WCHAR c)
392 return '0' <= c && c <= '9';
395 HRESULT create_regexp(IDispatch**) DECLSPEC_HIDDEN;
396 BSTR string_replace(BSTR,BSTR,BSTR,int,int,int) DECLSPEC_HIDDEN;
398 HRESULT map_hres(HRESULT) DECLSPEC_HIDDEN;
400 HRESULT create_safearray_iter(SAFEARRAY *sa, IEnumVARIANT **ev) DECLSPEC_HIDDEN;
402 #define FACILITY_VBS 0xa
403 #define MAKE_VBSERROR(code) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_VBS, code)
405 HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
406 HRESULT WINAPI VBScriptRegExpFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
408 BSTR get_vbscript_string(int) DECLSPEC_HIDDEN;
409 BSTR get_vbscript_error_string(HRESULT) DECLSPEC_HIDDEN;
411 static inline LPWSTR heap_strdupW(LPCWSTR str)
413 LPWSTR ret = NULL;
415 if(str) {
416 DWORD size;
418 size = (lstrlenW(str)+1)*sizeof(WCHAR);
419 ret = heap_alloc(size);
420 if(ret)
421 memcpy(ret, str, size);
424 return ret;
427 #define VBSCRIPT_BUILD_VERSION 16978
428 #define VBSCRIPT_MAJOR_VERSION 5
429 #define VBSCRIPT_MINOR_VERSION 8