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