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