vbscript: Added null literal support.
[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 _function_t function_t;
35 typedef struct _vbscode_t vbscode_t;
36 typedef struct _script_ctx_t script_ctx_t;
37
38 typedef struct named_item_t {
39     IDispatch *disp;
40     DWORD flags;
41     LPWSTR name;
42
43     struct list entry;
44 } named_item_t;
45
46 typedef struct {
47     IDispatchEx IDispatchEx_iface;
48
49     LONG ref;
50 } vbdisp_t;
51
52 HRESULT disp_get_id(IDispatch*,BSTR,DISPID*);
53 HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*);
54
55 struct _script_ctx_t {
56     IActiveScriptSite *site;
57     LCID lcid;
58
59     IDispatch *host_global;
60
61     vbdisp_t *script_obj;
62
63     struct list code_list;
64     struct list named_items;
65 };
66
67 HRESULT init_global(script_ctx_t*);
68
69 typedef enum {
70     ARG_NONE = 0,
71     ARG_STR,
72     ARG_BSTR,
73     ARG_INT,
74     ARG_UINT
75 } instr_arg_type_t;
76
77 #define OP_LIST                                   \
78     X(bool,           1, ARG_INT,     0)          \
79     X(empty,          1, 0,           0)          \
80     X(equal,          1, 0,           0)          \
81     X(icall,          1, ARG_BSTR,    ARG_UINT)   \
82     X(icallv,         1, ARG_BSTR,    ARG_UINT)   \
83     X(not,            1, 0,           0)          \
84     X(null,           1, 0,           0)          \
85     X(ret,            0, 0,           0)          \
86     X(string,         1, ARG_STR,     0)
87
88 typedef enum {
89 #define X(x,n,a,b) OP_##x,
90 OP_LIST
91 #undef X
92     OP_LAST
93 } vbsop_t;
94
95 typedef union {
96     const WCHAR *str;
97     BSTR bstr;
98     unsigned uint;
99     LONG lng;
100 } instr_arg_t;
101
102 typedef struct {
103     vbsop_t op;
104     instr_arg_t arg1;
105     instr_arg_t arg2;
106 } instr_t;
107
108 struct _function_t {
109     unsigned code_off;
110     vbscode_t *code_ctx;
111 };
112
113 struct _vbscode_t {
114     instr_t *instrs;
115     WCHAR *source;
116
117     BOOL option_explicit;
118
119     BOOL global_executed;
120     function_t global_code;
121
122     BSTR *bstr_pool;
123     unsigned bstr_pool_size;
124     unsigned bstr_cnt;
125
126     struct list entry;
127 };
128
129 void release_vbscode(vbscode_t*) DECLSPEC_HIDDEN;
130 HRESULT compile_script(script_ctx_t*,const WCHAR*,vbscode_t**) DECLSPEC_HIDDEN;
131 HRESULT exec_script(script_ctx_t*,function_t*) DECLSPEC_HIDDEN;
132
133 HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
134
135 static inline void *heap_alloc(size_t len)
136 {
137     return HeapAlloc(GetProcessHeap(), 0, len);
138 }
139
140 static inline void *heap_alloc_zero(size_t len)
141 {
142     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
143 }
144
145 static inline void *heap_realloc(void *mem, size_t len)
146 {
147     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
148 }
149
150 static inline BOOL heap_free(void *mem)
151 {
152     return HeapFree(GetProcessHeap(), 0, mem);
153 }
154
155 static inline LPWSTR heap_strdupW(LPCWSTR str)
156 {
157     LPWSTR ret = NULL;
158
159     if(str) {
160         DWORD size;
161
162         size = (strlenW(str)+1)*sizeof(WCHAR);
163         ret = heap_alloc(size);
164         if(ret)
165             memcpy(ret, str, size);
166     }
167
168     return ret;
169 }