2 * Copyright 2008 Jacek Caban for CodeWeavers
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.
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.
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
23 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
27 static const WCHAR toStringW
[] = {'t','o','S','t','r','i','n','g',0};
28 static const WCHAR toLocaleStringW
[] = {'t','o','L','o','c','a','l','e','S','t','r','i','n','g',0};
29 static const WCHAR valueOfW
[] = {'v','a','l','u','e','O','f',0};
30 static const WCHAR hasOwnPropertyW
[] = {'h','a','s','O','w','n','P','r','o','p','e','r','t','y',0};
31 static const WCHAR propertyIsEnumerableW
[] =
32 {'p','r','o','p','e','r','t','y','I','s','E','n','u','m','e','r','a','b','l','e',0};
33 static const WCHAR isPrototypeOfW
[] = {'i','s','P','r','o','t','o','t','y','p','e','O','f',0};
35 static const WCHAR default_valueW
[] = {'[','o','b','j','e','c','t',' ','O','b','j','e','c','t',']',0};
37 static HRESULT
Object_toString(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
43 static const WCHAR formatW
[] = {'[','o','b','j','e','c','t',' ','%','s',']',0};
45 static const WCHAR arrayW
[] = {'A','r','r','a','y',0};
46 static const WCHAR booleanW
[] = {'B','o','o','l','e','a','n',0};
47 static const WCHAR dateW
[] = {'D','a','t','e',0};
48 static const WCHAR errorW
[] = {'E','r','r','o','r',0};
49 static const WCHAR functionW
[] = {'F','u','n','c','t','i','o','n',0};
50 static const WCHAR mathW
[] = {'M','a','t','h',0};
51 static const WCHAR numberW
[] = {'N','u','m','b','e','r',0};
52 static const WCHAR objectW
[] = {'O','b','j','e','c','t',0};
53 static const WCHAR regexpW
[] = {'R','e','g','E','x','p',0};
54 static const WCHAR stringW
[] = {'S','t','r','i','n','g',0};
55 /* Keep in sync with jsclass_t enum */
56 static const WCHAR
*names
[] = {NULL
, arrayW
, booleanW
, dateW
, errorW
,
57 functionW
, NULL
, mathW
, numberW
, objectW
, regexpW
, stringW
, objectW
, objectW
};
61 jsdisp
= get_jsdisp(jsthis
);
64 }else if(names
[jsdisp
->builtin_info
->class]) {
65 str
= names
[jsdisp
->builtin_info
->class];
67 assert(jsdisp
->builtin_info
->class != JSCLASS_NONE
);
68 FIXME("jdisp->builtin_info->class = %d\n", jsdisp
->builtin_info
->class);
75 ret
= jsstr_alloc_buf(9+strlenW(str
));
79 sprintfW(ret
->str
, formatW
, str
);
80 *r
= jsval_string(ret
);
86 static HRESULT
Object_toLocaleString(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
91 if(!is_jsdisp(jsthis
)) {
92 FIXME("Host object this\n");
96 return jsdisp_call_name(jsthis
->u
.jsdisp
, toStringW
, DISPATCH_METHOD
, 0, NULL
, r
);
99 static HRESULT
Object_valueOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
105 IDispatch_AddRef(jsthis
->u
.disp
);
106 *r
= jsval_disp(jsthis
->u
.disp
);
111 static HRESULT
Object_hasOwnProperty(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
122 *r
= jsval_bool(FALSE
);
126 hres
= to_string(ctx
, argv
[0], &name
);
130 if(is_jsdisp(jsthis
)) {
133 hres
= jsdisp_is_own_prop(jsthis
->u
.jsdisp
, name
->str
, &result
);
138 *r
= jsval_bool(result
);
142 if(is_dispex(jsthis
)) {
145 bstr
= SysAllocStringLen(name
->str
, jsstr_length(name
));
147 return E_OUTOFMEMORY
;
149 hres
= IDispatchEx_GetDispID(jsthis
->u
.dispex
, bstr
,
150 make_grfdex(ctx
, fdexNameCaseSensitive
), &id
);
153 OLECHAR
*names
= name
->str
;
154 hres
= IDispatch_GetIDsOfNames(jsthis
->u
.disp
, &IID_NULL
,
155 &names
, 1, ctx
->lcid
, &id
);
159 *r
= jsval_bool(SUCCEEDED(hres
));
163 static HRESULT
Object_propertyIsEnumerable(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
173 FIXME("argc %d not supported\n", argc
);
177 if(!is_jsdisp(jsthis
)) {
178 FIXME("Host object this\n");
182 hres
= to_string(ctx
, argv
[0], &name
);
186 hres
= jsdisp_is_enumerable(jsthis
->u
.jsdisp
, name
->str
, &ret
);
192 *r
= jsval_bool(ret
);
196 static HRESULT
Object_isPrototypeOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
203 static HRESULT
Object_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
210 return throw_type_error(ctx
, JS_E_FUNCTION_EXPECTED
, NULL
);
211 case DISPATCH_PROPERTYGET
: {
212 jsstr_t
*ret
= jsstr_alloc(default_valueW
);
214 return E_OUTOFMEMORY
;
215 *r
= jsval_string(ret
);
219 FIXME("unimplemented flags %x\n", flags
);
226 static void Object_destructor(jsdisp_t
*dispex
)
231 static const builtin_prop_t Object_props
[] = {
232 {hasOwnPropertyW
, Object_hasOwnProperty
, PROPF_METHOD
|1},
233 {isPrototypeOfW
, Object_isPrototypeOf
, PROPF_METHOD
|1},
234 {propertyIsEnumerableW
, Object_propertyIsEnumerable
, PROPF_METHOD
|1},
235 {toLocaleStringW
, Object_toLocaleString
, PROPF_METHOD
},
236 {toStringW
, Object_toString
, PROPF_METHOD
},
237 {valueOfW
, Object_valueOf
, PROPF_METHOD
}
240 static const builtin_info_t Object_info
= {
242 {NULL
, Object_value
, 0},
243 sizeof(Object_props
)/sizeof(*Object_props
),
249 static const builtin_info_t ObjectInst_info
= {
251 {NULL
, Object_value
, 0},
257 static HRESULT
ObjectConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
265 case DISPATCH_METHOD
:
267 if(!is_undefined(argv
[0]) && !is_null(argv
[0]) && (!is_object_instance(argv
[0]) || get_object(argv
[0]))) {
270 hres
= to_object(ctx
, argv
[0], &disp
);
275 *r
= jsval_disp(disp
);
277 IDispatch_Release(disp
);
282 case DISPATCH_CONSTRUCT
: {
285 hres
= create_object(ctx
, NULL
, &obj
);
297 FIXME("unimplemented flags: %x\n", flags
);
304 HRESULT
create_object_constr(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, jsdisp_t
**ret
)
306 static const WCHAR ObjectW
[] = {'O','b','j','e','c','t',0};
308 return create_builtin_constructor(ctx
, ObjectConstr_value
, ObjectW
, NULL
, PROPF_CONSTR
,
309 object_prototype
, ret
);
312 HRESULT
create_object_prototype(script_ctx_t
*ctx
, jsdisp_t
**ret
)
314 return create_dispex(ctx
, &Object_info
, NULL
, ret
);
317 HRESULT
create_object(script_ctx_t
*ctx
, jsdisp_t
*constr
, jsdisp_t
**ret
)
322 object
= heap_alloc_zero(sizeof(jsdisp_t
));
324 return E_OUTOFMEMORY
;
326 hres
= init_dispex_from_constr(object
, ctx
, &ObjectInst_info
, constr
? constr
: ctx
->object_constr
);