jscript: Added Object constructor object implementation.
[wine] / dlls / jscript / jscript.h
1 /*
2  * Copyright 2008 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 #include <stdio.h>
21
22 #define COBJMACROS
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "ole2.h"
28 #include "dispex.h"
29 #include "activscp.h"
30
31 #include "wine/unicode.h"
32 #include "wine/list.h"
33
34 typedef struct _script_ctx_t script_ctx_t;
35 typedef struct _exec_ctx_t exec_ctx_t;
36 typedef struct _dispex_prop_t dispex_prop_t;
37
38 typedef struct {
39     EXCEPINFO ei;
40     VARIANT var;
41 } jsexcept_t;
42
43 typedef struct DispatchEx DispatchEx;
44
45 #define PROPF_ARGMASK 0x00ff
46 #define PROPF_METHOD  0x0100
47 #define PROPF_ENUM    0x0200
48 #define PROPF_CONSTR  0x0400
49
50 typedef enum {
51     JSCLASS_NONE,
52     JSCLASS_FUNCTION,
53     JSCLASS_GLOBAL,
54     JSCLASS_OBJECT
55 } jsclass_t;
56
57 typedef HRESULT (*builtin_invoke_t)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
58
59 typedef struct {
60     const WCHAR *name;
61     builtin_invoke_t invoke;
62     DWORD flags;
63 } builtin_prop_t;
64
65 typedef struct {
66     jsclass_t class;
67     builtin_prop_t value_prop;
68     DWORD props_cnt;
69     const builtin_prop_t *props;
70     void (*destructor)(DispatchEx*);
71     void (*on_put)(DispatchEx*,const WCHAR*);
72 } builtin_info_t;
73
74 struct DispatchEx {
75     const IDispatchExVtbl  *lpIDispatchExVtbl;
76
77     LONG ref;
78
79     DWORD buf_size;
80     DWORD prop_cnt;
81     dispex_prop_t *props;
82     script_ctx_t *ctx;
83
84     DispatchEx *prototype;
85
86     const builtin_info_t *builtin_info;
87 };
88
89 #define _IDispatchEx_(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
90
91 static inline void jsdisp_release(DispatchEx *jsdisp)
92 {
93     IDispatchEx_Release(_IDispatchEx_(jsdisp));
94 }
95
96 HRESULT create_dispex(script_ctx_t*,const builtin_info_t*,DispatchEx*,DispatchEx**);
97 HRESULT init_dispex(DispatchEx*,script_ctx_t*,const builtin_info_t*,DispatchEx*);
98 HRESULT init_dispex_from_constr(DispatchEx*,script_ctx_t*,const builtin_info_t*,DispatchEx*);
99 DispatchEx *iface_to_jsdisp(IUnknown*);
100
101 HRESULT disp_call(IDispatch*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
102 HRESULT jsdisp_call_value(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
103 HRESULT disp_propget(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
104 HRESULT disp_propput(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
105 HRESULT jsdisp_propput_name(DispatchEx*,const WCHAR*,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
106 HRESULT jsdisp_set_prototype(DispatchEx*,DispatchEx*);
107
108 HRESULT create_builtin_function(script_ctx_t*,builtin_invoke_t,DWORD,DispatchEx*,DispatchEx**);
109
110 HRESULT to_boolean(VARIANT*,VARIANT_BOOL*);
111 HRESULT to_object(exec_ctx_t*,VARIANT*,IDispatch**);
112
113 typedef struct named_item_t {
114     IDispatch *disp;
115     DWORD flags;
116
117     struct named_item_t *next;
118 } named_item_t;
119
120 struct _script_ctx_t {
121     LONG ref;
122
123     SCRIPTSTATE state;
124     exec_ctx_t *exec_ctx;
125     named_item_t *named_items;
126     LCID lcid;
127
128     DispatchEx *script_disp;
129     DispatchEx *global;
130     DispatchEx *object_constr;
131 };
132
133 void script_release(script_ctx_t*);
134
135 static inline void script_addref(script_ctx_t *ctx)
136 {
137     ctx->ref++;
138 }
139
140 HRESULT init_global(script_ctx_t*);
141
142 HRESULT create_object_constr(script_ctx_t*,DispatchEx**);
143
144 const char *debugstr_variant(const VARIANT*);
145
146 HRESULT WINAPI JScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
147
148 typedef struct {
149     void **blocks;
150     DWORD block_cnt;
151     DWORD last_block;
152     DWORD offset;
153     struct list custom_blocks;
154 } jsheap_t;
155
156 void jsheap_init(jsheap_t*);
157 void *jsheap_alloc(jsheap_t*,DWORD);
158 void jsheap_clear(jsheap_t*);
159 void jsheap_free(jsheap_t*);
160
161 extern LONG module_ref;
162
163 static inline void lock_module(void)
164 {
165     InterlockedIncrement(&module_ref);
166 }
167
168 static inline void unlock_module(void)
169 {
170     InterlockedDecrement(&module_ref);
171 }
172
173 static inline void *heap_alloc(size_t len)
174 {
175     return HeapAlloc(GetProcessHeap(), 0, len);
176 }
177
178 static inline void *heap_alloc_zero(size_t len)
179 {
180     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
181 }
182
183 static inline void *heap_realloc(void *mem, size_t len)
184 {
185     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
186 }
187
188 static inline BOOL heap_free(void *mem)
189 {
190     return HeapFree(GetProcessHeap(), 0, mem);
191 }
192
193 static inline LPWSTR heap_strdupW(LPCWSTR str)
194 {
195     LPWSTR ret = NULL;
196
197     if(str) {
198         DWORD size;
199
200         size = (strlenW(str)+1)*sizeof(WCHAR);
201         ret = heap_alloc(size);
202         memcpy(ret, str, size);
203     }
204
205     return ret;
206 }
207
208 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))