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