vbscript: Added interp_new implementation.
[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 } vbdisp_t;
69
70 typedef enum {
71     VBDISP_CALLGET,
72     VBDISP_LET,
73     VBDISP_SET,
74     VBDISP_ANY
75 } vbdisp_invoke_type_t;
76
77 HRESULT create_vbdisp(vbdisp_t**);
78 HRESULT disp_get_id(IDispatch*,BSTR,DISPID*);
79 HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*);
80 HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,VARIANT*);
81
82 static inline unsigned arg_cnt(const DISPPARAMS *dp)
83 {
84     return dp->cArgs - dp->cNamedArgs;
85 }
86
87 static inline VARIANT *get_arg(DISPPARAMS *dp, DWORD i)
88 {
89     return dp->rgvarg + dp->cArgs-i-1;
90 }
91
92 typedef struct _dynamic_var_t {
93     struct _dynamic_var_t *next;
94     VARIANT v;
95     const WCHAR *name;
96 } dynamic_var_t;
97
98 struct _script_ctx_t {
99     IActiveScriptSite *site;
100     LCID lcid;
101
102     IDispatch *host_global;
103
104     vbdisp_t *script_obj;
105
106     dynamic_var_t *global_vars;
107     function_t *global_funcs;
108     class_desc_t *classes;
109
110     struct list code_list;
111     struct list named_items;
112 };
113
114 HRESULT init_global(script_ctx_t*);
115
116 typedef enum {
117     ARG_NONE = 0,
118     ARG_STR,
119     ARG_BSTR,
120     ARG_INT,
121     ARG_UINT,
122     ARG_ADDR,
123     ARG_DOUBLE
124 } instr_arg_type_t;
125
126 #define OP_LIST                                   \
127     X(add,            1, 0,           0)          \
128     X(and,            1, 0,           0)          \
129     X(assign_ident,   1, ARG_BSTR,    0)          \
130     X(assign_member,  1, ARG_BSTR,    0)          \
131     X(bool,           1, ARG_INT,     0)          \
132     X(concat,         1, 0,           0)          \
133     X(div,            1, 0,           0)          \
134     X(double,         1, ARG_DOUBLE,  0)          \
135     X(empty,          1, 0,           0)          \
136     X(equal,          1, 0,           0)          \
137     X(eqv,            1, 0,           0)          \
138     X(exp,            1, 0,           0)          \
139     X(icall,          1, ARG_BSTR,    ARG_UINT)   \
140     X(icallv,         1, ARG_BSTR,    ARG_UINT)   \
141     X(idiv,           1, 0,           0)          \
142     X(imp,            1, 0,           0)          \
143     X(jmp,            0, ARG_ADDR,    0)          \
144     X(jmp_false,      0, ARG_ADDR,    0)          \
145     X(long,           1, ARG_INT,     0)          \
146     X(mod,            1, 0,           0)          \
147     X(mul,            1, 0,           0)          \
148     X(neg,            1, 0,           0)          \
149     X(nequal,         1, 0,           0)          \
150     X(new,            1, ARG_STR,     0)          \
151     X(not,            1, 0,           0)          \
152     X(null,           1, 0,           0)          \
153     X(or,             1, 0,           0)          \
154     X(ret,            0, 0,           0)          \
155     X(set_ident,      1, ARG_BSTR,    0)          \
156     X(set_member,     1, ARG_BSTR,    0)          \
157     X(short,          1, ARG_INT,     0)          \
158     X(string,         1, ARG_STR,     0)          \
159     X(sub,            1, 0,           0)          \
160     X(xor,            1, 0,           0)
161
162 typedef enum {
163 #define X(x,n,a,b) OP_##x,
164 OP_LIST
165 #undef X
166     OP_LAST
167 } vbsop_t;
168
169 typedef union {
170     const WCHAR *str;
171     BSTR bstr;
172     unsigned uint;
173     LONG lng;
174     double *dbl;
175 } instr_arg_t;
176
177 typedef struct {
178     vbsop_t op;
179     instr_arg_t arg1;
180     instr_arg_t arg2;
181 } instr_t;
182
183 typedef struct {
184     const WCHAR *name;
185     BOOL by_ref;
186 } arg_desc_t;
187
188 typedef enum {
189     FUNC_GLOBAL,
190     FUNC_FUNCTION,
191     FUNC_SUB
192 } function_type_t;
193
194 typedef struct {
195     const WCHAR *name;
196 } var_desc_t;
197
198 struct _function_t {
199     function_type_t type;
200     const WCHAR *name;
201     arg_desc_t *args;
202     unsigned arg_cnt;
203     var_desc_t *vars;
204     unsigned var_cnt;
205     unsigned code_off;
206     vbscode_t *code_ctx;
207     function_t *next;
208 };
209
210 struct _vbscode_t {
211     instr_t *instrs;
212     WCHAR *source;
213
214     BOOL option_explicit;
215
216     BOOL global_executed;
217     function_t global_code;
218
219     BSTR *bstr_pool;
220     unsigned bstr_pool_size;
221     unsigned bstr_cnt;
222     vbsheap_t heap;
223
224     struct list entry;
225 };
226
227 void release_vbscode(vbscode_t*) DECLSPEC_HIDDEN;
228 HRESULT compile_script(script_ctx_t*,const WCHAR*,vbscode_t**) DECLSPEC_HIDDEN;
229 HRESULT exec_script(script_ctx_t*,function_t*,DISPPARAMS*,VARIANT*) DECLSPEC_HIDDEN;
230
231 HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
232
233 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
234
235 static inline void *heap_alloc(size_t len)
236 {
237     return HeapAlloc(GetProcessHeap(), 0, len);
238 }
239
240 static inline void *heap_alloc_zero(size_t len)
241 {
242     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
243 }
244
245 static inline void *heap_realloc(void *mem, size_t len)
246 {
247     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
248 }
249
250 static inline BOOL heap_free(void *mem)
251 {
252     return HeapFree(GetProcessHeap(), 0, mem);
253 }
254
255 static inline LPWSTR heap_strdupW(LPCWSTR str)
256 {
257     LPWSTR ret = NULL;
258
259     if(str) {
260         DWORD size;
261
262         size = (strlenW(str)+1)*sizeof(WCHAR);
263         ret = heap_alloc(size);
264         if(ret)
265             memcpy(ret, str, size);
266     }
267
268     return ret;
269 }