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
21 #include "wine/debug.h"
23 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
25 static const WCHAR toStringW[] = {'t','o','S','t','r','i','n','g',0};
26 static const WCHAR toLocaleStringW[] = {'t','o','L','o','c','a','l','e','S','t','r','i','n','g',0};
27 static const WCHAR valueOfW[] = {'v','a','l','u','e','O','f',0};
28 static const WCHAR hasOwnPropertyW[] = {'h','a','s','O','w','n','P','r','o','p','e','r','t','y',0};
29 static const WCHAR propertyIsEnumerableW[] =
30 {'p','r','o','p','e','r','t','y','I','s','E','n','u','m','e','r','a','b','l','e',0};
31 static const WCHAR isPrototypeOfW[] = {'i','s','P','r','o','t','o','t','y','p','e','O','f',0};
33 static const WCHAR default_valueW[] = {'[','o','b','j','e','c','t',' ','O','b','j','e','c','t',']',0};
35 static HRESULT Object_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
36 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
41 static const WCHAR formatW[] = {'[','o','b','j','e','c','t',' ','%','s',']',0};
43 static const WCHAR arrayW[] = {'A','r','r','a','y',0};
44 static const WCHAR booleanW[] = {'B','o','o','l','e','a','n',0};
45 static const WCHAR dateW[] = {'D','a','t','e',0};
46 static const WCHAR errorW[] = {'E','r','r','o','r',0};
47 static const WCHAR functionW[] = {'F','u','n','c','t','i','o','n',0};
48 static const WCHAR mathW[] = {'M','a','t','h',0};
49 static const WCHAR numberW[] = {'N','u','m','b','e','r',0};
50 static const WCHAR objectW[] = {'O','b','j','e','c','t',0};
51 static const WCHAR regexpW[] = {'R','e','g','E','x','p',0};
52 static const WCHAR stringW[] = {'S','t','r','i','n','g',0};
53 /* Keep in sync with jsclass_t enum */
54 static const WCHAR *names[] = {objectW, arrayW, booleanW, dateW, errorW,
55 functionW, NULL, mathW, numberW, objectW, regexpW, stringW, objectW, objectW};
59 jsdisp = get_jsdisp(jsthis);
62 }else if(names[jsdisp->builtin_info->class]) {
63 str = names[jsdisp->builtin_info->class];
65 FIXME("jdisp->builtin_info->class = %d\n", jsdisp->builtin_info->class);
71 V_BSTR(retv) = SysAllocStringLen(NULL, 9+strlenW(str));
75 sprintfW(V_BSTR(retv), formatW, str);
81 static HRESULT Object_toLocaleString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
82 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
84 DISPPARAMS params = {NULL, NULL, 0, 0};
88 if(!is_jsdisp(jsthis)) {
89 FIXME("Host object this\n");
93 return jsdisp_call_name(jsthis->u.jsdisp, toStringW, DISPATCH_METHOD, ¶ms, retv, ei, sp);
96 static HRESULT Object_valueOf(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
97 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
102 IDispatch_AddRef(jsthis->u.disp);
104 V_VT(retv) = VT_DISPATCH;
105 V_DISPATCH(retv) = jsthis->u.disp;
111 static HRESULT Object_hasOwnProperty(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
112 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
123 V_VT(retv) = VT_BOOL;
124 V_BOOL(retv) = VARIANT_FALSE;
130 hres = to_string(ctx, get_arg(dp, 0), ei, &name);
134 if(is_jsdisp(jsthis)) {
135 result = jsdisp_is_own_prop(jsthis->u.jsdisp, name);
137 V_VT(retv) = VT_BOOL;
138 V_BOOL(retv) = result;
142 } else if(is_dispex(jsthis)) {
143 hres = IDispatchEx_GetDispID(jsthis->u.dispex, name,
144 make_grfdex(ctx, fdexNameCaseSensitive), &id);
146 hres = IDispatch_GetIDsOfNames(jsthis->u.disp, &IID_NULL,
147 &name, 1, ctx->lcid, &id);
151 V_VT(retv) = VT_BOOL;
152 V_BOOL(retv) = SUCCEEDED(hres) ? VARIANT_TRUE : VARIANT_FALSE;
157 static HRESULT Object_propertyIsEnumerable(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
158 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
164 static HRESULT Object_isPrototypeOf(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
165 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
171 static HRESULT Object_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
172 VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
178 return throw_type_error(ctx, ei, JS_E_FUNCTION_EXPECTED, NULL);
179 case DISPATCH_PROPERTYGET:
180 V_VT(retv) = VT_BSTR;
181 V_BSTR(retv) = SysAllocString(default_valueW);
183 return E_OUTOFMEMORY;
186 FIXME("unimplemented flags %x\n", flags);
193 static void Object_destructor(jsdisp_t *dispex)
198 static const builtin_prop_t Object_props[] = {
199 {hasOwnPropertyW, Object_hasOwnProperty, PROPF_METHOD|1},
200 {isPrototypeOfW, Object_isPrototypeOf, PROPF_METHOD|1},
201 {propertyIsEnumerableW, Object_propertyIsEnumerable, PROPF_METHOD|1},
202 {toLocaleStringW, Object_toLocaleString, PROPF_METHOD},
203 {toStringW, Object_toString, PROPF_METHOD},
204 {valueOfW, Object_valueOf, PROPF_METHOD}
207 static const builtin_info_t Object_info = {
209 {NULL, Object_value, 0},
210 sizeof(Object_props)/sizeof(*Object_props),
216 static HRESULT ObjectConstr_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
217 VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
224 case DISPATCH_METHOD:
226 VARIANT *arg = get_arg(dp,0);
228 if(V_VT(arg) != VT_EMPTY && V_VT(arg) != VT_NULL && (V_VT(arg) != VT_DISPATCH || V_DISPATCH(arg))) {
231 hres = to_object(ctx, arg, &disp);
236 V_VT(retv) = VT_DISPATCH;
237 V_DISPATCH(retv) = disp;
239 IDispatch_Release(disp);
245 case DISPATCH_CONSTRUCT: {
248 hres = create_object(ctx, NULL, &obj);
253 var_set_jsdisp(retv, obj);
260 FIXME("unimplemented flags: %x\n", flags);
267 HRESULT create_object_constr(script_ctx_t *ctx, jsdisp_t *object_prototype, jsdisp_t **ret)
269 static const WCHAR ObjectW[] = {'O','b','j','e','c','t',0};
271 return create_builtin_function(ctx, ObjectConstr_value, ObjectW, NULL, PROPF_CONSTR,
272 object_prototype, ret);
275 HRESULT create_object_prototype(script_ctx_t *ctx, jsdisp_t **ret)
277 return create_dispex(ctx, &Object_info, NULL, ret);
280 HRESULT create_object(script_ctx_t *ctx, jsdisp_t *constr, jsdisp_t **ret)
285 object = heap_alloc_zero(sizeof(jsdisp_t));
287 return E_OUTOFMEMORY;
289 hres = init_dispex_from_constr(object, ctx, &Object_info, constr ? constr : ctx->object_constr);