vbscript: Added multiplicative expression 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 HRESULT disp_get_id(IDispatch*,BSTR,DISPID*);
65 HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*);
66 HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,VARIANT*);
67
68 typedef struct _dynamic_var_t {
69     struct _dynamic_var_t *next;
70     VARIANT v;
71     const WCHAR *name;
72 } dynamic_var_t;
73
74 struct _script_ctx_t {
75     IActiveScriptSite *site;
76     LCID lcid;
77
78     IDispatch *host_global;
79
80     vbdisp_t *script_obj;
81
82     dynamic_var_t *global_vars;
83
84     struct list code_list;
85     struct list named_items;
86 };
87
88 HRESULT init_global(script_ctx_t*);
89
90 typedef enum {
91     ARG_NONE = 0,
92     ARG_STR,
93     ARG_BSTR,
94     ARG_INT,
95     ARG_UINT,
96     ARG_ADDR,
97     ARG_DOUBLE
98 } instr_arg_type_t;
99
100 #define OP_LIST                                   \
101     X(add,            1, 0,           0)          \
102     X(assign_ident,   1, ARG_BSTR,    0)          \
103     X(assign_member,  1, ARG_BSTR,    0)          \
104     X(bool,           1, ARG_INT,     0)          \
105     X(concat,         1, 0,           0)          \
106     X(div,            1, 0,           0)          \
107     X(double,         1, ARG_DOUBLE,  0)          \
108     X(empty,          1, 0,           0)          \
109     X(equal,          1, 0,           0)          \
110     X(icall,          1, ARG_BSTR,    ARG_UINT)   \
111     X(icallv,         1, ARG_BSTR,    ARG_UINT)   \
112     X(idiv,           1, 0,           0)          \
113     X(jmp,            0, ARG_ADDR,    0)          \
114     X(jmp_false,      0, ARG_ADDR,    0)          \
115     X(long,           1, ARG_INT,     0)          \
116     X(mod,            1, 0,           0)          \
117     X(mul,            1, 0,           0)          \
118     X(neg,            1, 0,           0)          \
119     X(nequal,         1, 0,           0)          \
120     X(not,            1, 0,           0)          \
121     X(null,           1, 0,           0)          \
122     X(ret,            0, 0,           0)          \
123     X(short,          1, ARG_INT,     0)          \
124     X(string,         1, ARG_STR,     0)          \
125     X(sub,            1, 0,           0)
126
127 typedef enum {
128 #define X(x,n,a,b) OP_##x,
129 OP_LIST
130 #undef X
131     OP_LAST
132 } vbsop_t;
133
134 typedef union {
135     const WCHAR *str;
136     BSTR bstr;
137     unsigned uint;
138     LONG lng;
139     double *dbl;
140 } instr_arg_t;
141
142 typedef struct {
143     vbsop_t op;
144     instr_arg_t arg1;
145     instr_arg_t arg2;
146 } instr_t;
147
148 struct _function_t {
149     unsigned code_off;
150     vbscode_t *code_ctx;
151 };
152
153 struct _vbscode_t {
154     instr_t *instrs;
155     WCHAR *source;
156
157     BOOL option_explicit;
158
159     BOOL global_executed;
160     function_t global_code;
161
162     BSTR *bstr_pool;
163     unsigned bstr_pool_size;
164     unsigned bstr_cnt;
165     vbsheap_t heap;
166
167     struct list entry;
168 };
169
170 void release_vbscode(vbscode_t*) DECLSPEC_HIDDEN;
171 HRESULT compile_script(script_ctx_t*,const WCHAR*,vbscode_t**) DECLSPEC_HIDDEN;
172 HRESULT exec_script(script_ctx_t*,function_t*) DECLSPEC_HIDDEN;
173
174 HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
175
176 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
177
178 static inline void *heap_alloc(size_t len)
179 {
180     return HeapAlloc(GetProcessHeap(), 0, len);
181 }
182
183 static inline void *heap_alloc_zero(size_t len)
184 {
185     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
186 }
187
188 static inline void *heap_realloc(void *mem, size_t len)
189 {
190     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
191 }
192
193 static inline BOOL heap_free(void *mem)
194 {
195     return HeapFree(GetProcessHeap(), 0, mem);
196 }
197
198 static inline LPWSTR heap_strdupW(LPCWSTR str)
199 {
200     LPWSTR ret = NULL;
201
202     if(str) {
203         DWORD size;
204
205         size = (strlenW(str)+1)*sizeof(WCHAR);
206         ret = heap_alloc(size);
207         if(ret)
208             memcpy(ret, str, size);
209     }
210
211     return ret;
212 }