jscript.h 8.53 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Copyright 2008 Jacek Caban for CodeWeavers
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include <stdarg.h>
#include <stdio.h>

#define COBJMACROS

#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
28
#include "dispex.h"
29 30
#include "activscp.h"

Jacek Caban's avatar
Jacek Caban committed
31
#include "wine/unicode.h"
32
#include "wine/list.h"
Jacek Caban's avatar
Jacek Caban committed
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 39 40 41

typedef struct {
    EXCEPINFO ei;
    VARIANT var;
} jsexcept_t;
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
typedef struct {
    void **blocks;
    DWORD block_cnt;
    DWORD last_block;
    DWORD offset;
    BOOL mark;
    struct list custom_blocks;
} jsheap_t;

void jsheap_init(jsheap_t*);
void *jsheap_alloc(jsheap_t*,DWORD);
void *jsheap_grow(jsheap_t*,void*,DWORD,DWORD);
void jsheap_clear(jsheap_t*);
void jsheap_free(jsheap_t*);
jsheap_t *jsheap_mark(jsheap_t*);

59 60 61 62 63 64 65 66
typedef struct DispatchEx DispatchEx;

#define PROPF_ARGMASK 0x00ff
#define PROPF_METHOD  0x0100
#define PROPF_ENUM    0x0200
#define PROPF_CONSTR  0x0400

typedef enum {
67
    JSCLASS_NONE,
68
    JSCLASS_ARRAY,
69
    JSCLASS_BOOLEAN,
70
    JSCLASS_DATE,
71
    JSCLASS_FUNCTION,
72
    JSCLASS_GLOBAL,
73
    JSCLASS_MATH,
74
    JSCLASS_NUMBER,
75
    JSCLASS_OBJECT,
76
    JSCLASS_REGEXP,
77
    JSCLASS_STRING
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
} jsclass_t;

typedef HRESULT (*builtin_invoke_t)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);

typedef struct {
    const WCHAR *name;
    builtin_invoke_t invoke;
    DWORD flags;
} builtin_prop_t;

typedef struct {
    jsclass_t class;
    builtin_prop_t value_prop;
    DWORD props_cnt;
    const builtin_prop_t *props;
    void (*destructor)(DispatchEx*);
    void (*on_put)(DispatchEx*,const WCHAR*);
} builtin_info_t;

struct DispatchEx {
98 99 100 101
    const IDispatchExVtbl  *lpIDispatchExVtbl;

    LONG ref;

102 103 104
    DWORD buf_size;
    DWORD prop_cnt;
    dispex_prop_t *props;
105
    script_ctx_t *ctx;
106 107 108 109 110

    DispatchEx *prototype;

    const builtin_info_t *builtin_info;
};
111 112 113

#define _IDispatchEx_(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)

114 115 116 117 118
static inline void jsdisp_release(DispatchEx *jsdisp)
{
    IDispatchEx_Release(_IDispatchEx_(jsdisp));
}

119
HRESULT create_dispex(script_ctx_t*,const builtin_info_t*,DispatchEx*,DispatchEx**);
120
HRESULT init_dispex(DispatchEx*,script_ctx_t*,const builtin_info_t*,DispatchEx*);
121 122 123
HRESULT init_dispex_from_constr(DispatchEx*,script_ctx_t*,const builtin_info_t*,DispatchEx*);
DispatchEx *iface_to_jsdisp(IUnknown*);

124
HRESULT disp_call(IDispatch*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
125
HRESULT jsdisp_call_value(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
126
HRESULT disp_propget(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
127
HRESULT disp_propput(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
128
HRESULT jsdisp_propget(DispatchEx*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
129
HRESULT jsdisp_propput_name(DispatchEx*,const WCHAR*,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
130
HRESULT jsdisp_propput_idx(DispatchEx*,DWORD,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
131
HRESULT jsdisp_propget_name(DispatchEx*,LPCWSTR,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
132
HRESULT jsdisp_propget_idx(DispatchEx*,DWORD,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
133
HRESULT jsdisp_get_id(DispatchEx*,const WCHAR*,DWORD,DISPID*);
134 135

HRESULT create_builtin_function(script_ctx_t*,builtin_invoke_t,DWORD,DispatchEx*,DispatchEx**);
136

137
HRESULT create_object(script_ctx_t*,DispatchEx*,DispatchEx**);
138
HRESULT create_math(script_ctx_t*,DispatchEx**);
139
HRESULT create_array(script_ctx_t*,DWORD,DispatchEx**);
140
HRESULT create_regexp_str(script_ctx_t*,const WCHAR*,DWORD,const WCHAR*,DWORD,DispatchEx**);
141
HRESULT create_string(script_ctx_t*,const WCHAR*,DWORD,DispatchEx**);
142
HRESULT create_bool(script_ctx_t*,VARIANT_BOOL,DispatchEx**);
143
HRESULT create_number(script_ctx_t*,VARIANT*,DispatchEx**);
144

145
HRESULT to_primitive(script_ctx_t*,VARIANT*,jsexcept_t*,VARIANT*);
146
HRESULT to_boolean(VARIANT*,VARIANT_BOOL*);
147
HRESULT to_number(script_ctx_t*,VARIANT*,jsexcept_t*,VARIANT*);
148
HRESULT to_integer(script_ctx_t*,VARIANT*,jsexcept_t*,VARIANT*);
149
HRESULT to_int32(script_ctx_t*,VARIANT*,jsexcept_t*,INT*);
150
HRESULT to_uint32(script_ctx_t*,VARIANT*,jsexcept_t*,DWORD*);
151
HRESULT to_string(script_ctx_t*,VARIANT*,jsexcept_t*,BSTR*);
152
HRESULT to_object(exec_ctx_t*,VARIANT*,IDispatch**);
153

154 155 156
typedef struct named_item_t {
    IDispatch *disp;
    DWORD flags;
157
    LPWSTR name;
158 159 160 161

    struct named_item_t *next;
} named_item_t;

162 163 164 165
struct _script_ctx_t {
    LONG ref;

    SCRIPTSTATE state;
166
    exec_ctx_t *exec_ctx;
167
    named_item_t *named_items;
168
    LCID lcid;
169

170 171
    jsheap_t tmp_heap;

172
    DispatchEx *script_disp;
173
    DispatchEx *global;
174
    DispatchEx *function_constr;
175
    DispatchEx *array_constr;
176
    DispatchEx *bool_constr;
177
    DispatchEx *date_constr;
178
    DispatchEx *number_constr;
179
    DispatchEx *object_constr;
180
    DispatchEx *regexp_constr;
181
    DispatchEx *string_constr;
182
};
183

184 185
void script_release(script_ctx_t*);

186
static inline void script_addref(script_ctx_t *ctx)
187 188 189 190
{
    ctx->ref++;
}

191
HRESULT init_global(script_ctx_t*);
192
HRESULT init_function_constr(script_ctx_t*);
193

194
HRESULT create_array_constr(script_ctx_t*,DispatchEx**);
195
HRESULT create_bool_constr(script_ctx_t*,DispatchEx**);
196
HRESULT create_date_constr(script_ctx_t*,DispatchEx**);
197
HRESULT create_number_constr(script_ctx_t*,DispatchEx**);
198
HRESULT create_object_constr(script_ctx_t*,DispatchEx**);
199
HRESULT create_regexp_constr(script_ctx_t*,DispatchEx**);
200
HRESULT create_string_constr(script_ctx_t*,DispatchEx**);
201

202 203 204 205 206
typedef struct {
    const WCHAR *str;
    DWORD len;
} match_result_t;

207 208
HRESULT regexp_match_next(DispatchEx*,BOOL,const WCHAR*,DWORD,const WCHAR**,match_result_t**,
        DWORD*,DWORD*,match_result_t*);
209 210
HRESULT regexp_match(DispatchEx*,const WCHAR*,DWORD,BOOL,match_result_t**,DWORD*);

211 212 213 214 215 216 217 218 219 220
static inline VARIANT *get_arg(DISPPARAMS *dp, DWORD i)
{
    return dp->rgvarg + dp->cArgs-i-1;
}

static inline DWORD arg_cnt(const DISPPARAMS *dp)
{
    return dp->cArgs - dp->cNamedArgs;
}

221 222 223 224 225
static inline BOOL is_class(DispatchEx *jsdisp, jsclass_t class)
{
    return jsdisp->builtin_info->class == class;
}

226 227 228 229 230 231 232 233 234 235
static inline BOOL is_num_vt(enum VARENUM vt)
{
    return vt == VT_I4 || vt == VT_R8;
}

static inline DOUBLE num_val(const VARIANT *v)
{
    return V_VT(v) == VT_I4 ? V_I4(v) : V_R8(v);
}

236 237 238 239 240 241 242 243 244 245 246
static inline void num_set_val(VARIANT *v, DOUBLE d)
{
    if(d == (DOUBLE)(INT)d) {
        V_VT(v) = VT_I4;
        V_I4(v) = d;
    }else {
        V_VT(v) = VT_R8;
        V_R8(v) = d;
    }
}

247 248 249 250 251 252 253 254 255 256
static inline void num_set_nan(VARIANT *v)
{
    V_VT(v) = VT_R8;
#ifdef NAN
    V_R8(v) = NAN;
#else
    V_UI8(v) = (ULONGLONG)0x7ff80000<<32;
#endif
}

257 258 259 260 261 262 263 264 265 266 267 268
static inline void num_set_inf(VARIANT *v, BOOL positive)
{
    V_VT(v) = VT_R8;
#ifdef INFINITY
    V_R8(v) = positive ? INFINITY : -INFINITY;
#else
    V_UI8(v) = (ULONGLONG)0x7ff00000<<32;
    if(!positive)
        V_R8(v) = -V_R8(v);
#endif
}

269 270
const char *debugstr_variant(const VARIANT*);

271 272
HRESULT WINAPI JScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);

273 274 275 276 277 278 279 280 281 282 283 284
extern LONG module_ref;

static inline void lock_module(void)
{
    InterlockedIncrement(&module_ref);
}

static inline void unlock_module(void)
{
    InterlockedDecrement(&module_ref);
}

285 286 287 288 289 290 291 292 293 294
static inline void *heap_alloc(size_t len)
{
    return HeapAlloc(GetProcessHeap(), 0, len);
}

static inline void *heap_alloc_zero(size_t len)
{
    return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
}

295 296 297 298 299
static inline void *heap_realloc(void *mem, size_t len)
{
    return HeapReAlloc(GetProcessHeap(), 0, mem, len);
}

300 301 302 303 304
static inline BOOL heap_free(void *mem)
{
    return HeapFree(GetProcessHeap(), 0, mem);
}

305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
static inline LPWSTR heap_strdupW(LPCWSTR str)
{
    LPWSTR ret = NULL;

    if(str) {
        DWORD size;

        size = (strlenW(str)+1)*sizeof(WCHAR);
        ret = heap_alloc(size);
        memcpy(ret, str, size);
    }

    return ret;
}

320
#define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))