vbscript: Make vbscode_t own the memory it uses.
[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
67 struct _script_ctx_t {
68     IActiveScriptSite *site;
69     LCID lcid;
70
71     IDispatch *host_global;
72
73     vbdisp_t *script_obj;
74
75     struct list code_list;
76     struct list named_items;
77 };
78
79 HRESULT init_global(script_ctx_t*);
80
81 typedef enum {
82     ARG_NONE = 0,
83     ARG_STR,
84     ARG_BSTR,
85     ARG_INT,
86     ARG_UINT
87 } instr_arg_type_t;
88
89 #define OP_LIST                                   \
90     X(bool,           1, ARG_INT,     0)          \
91     X(empty,          1, 0,           0)          \
92     X(equal,          1, 0,           0)          \
93     X(icall,          1, ARG_BSTR,    ARG_UINT)   \
94     X(icallv,         1, ARG_BSTR,    ARG_UINT)   \
95     X(not,            1, 0,           0)          \
96     X(null,           1, 0,           0)          \
97     X(ret,            0, 0,           0)          \
98     X(string,         1, ARG_STR,     0)
99
100 typedef enum {
101 #define X(x,n,a,b) OP_##x,
102 OP_LIST
103 #undef X
104     OP_LAST
105 } vbsop_t;
106
107 typedef union {
108     const WCHAR *str;
109     BSTR bstr;
110     unsigned uint;
111     LONG lng;
112 } instr_arg_t;
113
114 typedef struct {
115     vbsop_t op;
116     instr_arg_t arg1;
117     instr_arg_t arg2;
118 } instr_t;
119
120 struct _function_t {
121     unsigned code_off;
122     vbscode_t *code_ctx;
123 };
124
125 struct _vbscode_t {
126     instr_t *instrs;
127     WCHAR *source;
128
129     BOOL option_explicit;
130
131     BOOL global_executed;
132     function_t global_code;
133
134     BSTR *bstr_pool;
135     unsigned bstr_pool_size;
136     unsigned bstr_cnt;
137     vbsheap_t heap;
138
139     struct list entry;
140 };
141
142 void release_vbscode(vbscode_t*) DECLSPEC_HIDDEN;
143 HRESULT compile_script(script_ctx_t*,const WCHAR*,vbscode_t**) DECLSPEC_HIDDEN;
144 HRESULT exec_script(script_ctx_t*,function_t*) DECLSPEC_HIDDEN;
145
146 HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
147
148 static inline void *heap_alloc(size_t len)
149 {
150     return HeapAlloc(GetProcessHeap(), 0, len);
151 }
152
153 static inline void *heap_alloc_zero(size_t len)
154 {
155     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
156 }
157
158 static inline void *heap_realloc(void *mem, size_t len)
159 {
160     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
161 }
162
163 static inline BOOL heap_free(void *mem)
164 {
165     return HeapFree(GetProcessHeap(), 0, mem);
166 }
167
168 static inline LPWSTR heap_strdupW(LPCWSTR str)
169 {
170     LPWSTR ret = NULL;
171
172     if(str) {
173         DWORD size;
174
175         size = (strlenW(str)+1)*sizeof(WCHAR);
176         ret = heap_alloc(size);
177         if(ret)
178             memcpy(ret, str, size);
179     }
180
181     return ret;
182 }