jscript: Added Number 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_ARRAY,
53     JSCLASS_BOOLEAN,
54     JSCLASS_FUNCTION,
55     JSCLASS_GLOBAL,
56     JSCLASS_NUMBER,
57     JSCLASS_OBJECT,
58     JSCLASS_STRING
59 } jsclass_t;
60
61 typedef HRESULT (*builtin_invoke_t)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
62
63 typedef struct {
64     const WCHAR *name;
65     builtin_invoke_t invoke;
66     DWORD flags;
67 } builtin_prop_t;
68
69 typedef struct {
70     jsclass_t class;
71     builtin_prop_t value_prop;
72     DWORD props_cnt;
73     const builtin_prop_t *props;
74     void (*destructor)(DispatchEx*);
75     void (*on_put)(DispatchEx*,const WCHAR*);
76 } builtin_info_t;
77
78 struct DispatchEx {
79     const IDispatchExVtbl  *lpIDispatchExVtbl;
80
81     LONG ref;
82
83     DWORD buf_size;
84     DWORD prop_cnt;
85     dispex_prop_t *props;
86     script_ctx_t *ctx;
87
88     DispatchEx *prototype;
89
90     const builtin_info_t *builtin_info;
91 };
92
93 #define _IDispatchEx_(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
94
95 static inline void jsdisp_release(DispatchEx *jsdisp)
96 {
97     IDispatchEx_Release(_IDispatchEx_(jsdisp));
98 }
99
100 HRESULT create_dispex(script_ctx_t*,const builtin_info_t*,DispatchEx*,DispatchEx**);
101 HRESULT init_dispex(DispatchEx*,script_ctx_t*,const builtin_info_t*,DispatchEx*);
102 HRESULT init_dispex_from_constr(DispatchEx*,script_ctx_t*,const builtin_info_t*,DispatchEx*);
103 DispatchEx *iface_to_jsdisp(IUnknown*);
104
105 HRESULT disp_call(IDispatch*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
106 HRESULT jsdisp_call_value(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
107 HRESULT disp_propget(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
108 HRESULT disp_propput(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
109 HRESULT jsdisp_propput_name(DispatchEx*,const WCHAR*,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
110 HRESULT jsdisp_set_prototype(DispatchEx*,DispatchEx*);
111
112 HRESULT create_builtin_function(script_ctx_t*,builtin_invoke_t,DWORD,DispatchEx*,DispatchEx**);
113
114 HRESULT to_boolean(VARIANT*,VARIANT_BOOL*);
115 HRESULT to_object(exec_ctx_t*,VARIANT*,IDispatch**);
116
117 typedef struct named_item_t {
118     IDispatch *disp;
119     DWORD flags;
120
121     struct named_item_t *next;
122 } named_item_t;
123
124 struct _script_ctx_t {
125     LONG ref;
126
127     SCRIPTSTATE state;
128     exec_ctx_t *exec_ctx;
129     named_item_t *named_items;
130     LCID lcid;
131
132     DispatchEx *script_disp;
133     DispatchEx *global;
134     DispatchEx *array_constr;
135     DispatchEx *bool_constr;
136     DispatchEx *number_constr;
137     DispatchEx *object_constr;
138     DispatchEx *string_constr;
139 };
140
141 void script_release(script_ctx_t*);
142
143 static inline void script_addref(script_ctx_t *ctx)
144 {
145     ctx->ref++;
146 }
147
148 HRESULT init_global(script_ctx_t*);
149
150 HRESULT create_array_constr(script_ctx_t*,DispatchEx**);
151 HRESULT create_bool_constr(script_ctx_t*,DispatchEx**);
152 HRESULT create_number_constr(script_ctx_t*,DispatchEx**);
153 HRESULT create_object_constr(script_ctx_t*,DispatchEx**);
154 HRESULT create_string_constr(script_ctx_t*,DispatchEx**);
155
156 const char *debugstr_variant(const VARIANT*);
157
158 HRESULT WINAPI JScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
159
160 typedef struct {
161     void **blocks;
162     DWORD block_cnt;
163     DWORD last_block;
164     DWORD offset;
165     struct list custom_blocks;
166 } jsheap_t;
167
168 void jsheap_init(jsheap_t*);
169 void *jsheap_alloc(jsheap_t*,DWORD);
170 void jsheap_clear(jsheap_t*);
171 void jsheap_free(jsheap_t*);
172
173 extern LONG module_ref;
174
175 static inline void lock_module(void)
176 {
177     InterlockedIncrement(&module_ref);
178 }
179
180 static inline void unlock_module(void)
181 {
182     InterlockedDecrement(&module_ref);
183 }
184
185 static inline void *heap_alloc(size_t len)
186 {
187     return HeapAlloc(GetProcessHeap(), 0, len);
188 }
189
190 static inline void *heap_alloc_zero(size_t len)
191 {
192     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
193 }
194
195 static inline void *heap_realloc(void *mem, size_t len)
196 {
197     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
198 }
199
200 static inline BOOL heap_free(void *mem)
201 {
202     return HeapFree(GetProcessHeap(), 0, mem);
203 }
204
205 static inline LPWSTR heap_strdupW(LPCWSTR str)
206 {
207     LPWSTR ret = NULL;
208
209     if(str) {
210         DWORD size;
211
212         size = (strlenW(str)+1)*sizeof(WCHAR);
213         ret = heap_alloc(size);
214         memcpy(ret, str, size);
215     }
216
217     return ret;
218 }
219
220 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))