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