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