jscript: Throw more SyntaxErrors in parser.
[wine] / dlls / jscript / object.c
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 "jscript.h"
20
21 #include "wine/debug.h"
22
23 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
24
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};
32
33 static const WCHAR default_valueW[] = {'[','o','b','j','e','c','t',' ','O','b','j','e','c','t',']',0};
34
35 static HRESULT Object_toString(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
36         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
37 {
38     static const WCHAR formatW[] = {'[','o','b','j','e','c','t',' ','%','s',']',0};
39
40     static const WCHAR arrayW[] = {'A','r','r','a','y',0};
41     static const WCHAR booleanW[] = {'B','o','o','l','e','a','n',0};
42     static const WCHAR dateW[] = {'D','a','t','e',0};
43     static const WCHAR errorW[] = {'E','r','r','o','r',0};
44     static const WCHAR functionW[] = {'F','u','n','c','t','i','o','n',0};
45     static const WCHAR mathW[] = {'M','a','t','h',0};
46     static const WCHAR numberW[] = {'N','u','m','b','e','r',0};
47     static const WCHAR objectW[] = {'O','b','j','e','c','t',0};
48     static const WCHAR regexpW[] = {'R','e','g','E','x','p',0};
49     static const WCHAR stringW[] = {'S','t','r','i','n','g',0};
50     /* Keep in sync with jsclass_t enum */
51     static const WCHAR *names[] = {NULL, arrayW, booleanW, dateW, errorW,
52         functionW, NULL, mathW, numberW, objectW, regexpW, stringW};
53
54     TRACE("\n");
55
56     if(names[dispex->builtin_info->class] == NULL) {
57         ERR("dispex->builtin_info->class = %d\n",
58                 dispex->builtin_info->class);
59         return E_FAIL;
60     }
61
62     if(retv) {
63         V_VT(retv) = VT_BSTR;
64         V_BSTR(retv) = SysAllocStringLen(NULL, 9+strlenW(names[dispex->builtin_info->class]));
65         if(!V_BSTR(retv))
66             return E_OUTOFMEMORY;
67
68         sprintfW(V_BSTR(retv), formatW, names[dispex->builtin_info->class]);
69     }
70
71     return S_OK;
72 }
73
74 static HRESULT Object_toLocaleString(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
75         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
76 {
77     TRACE("\n");
78     return Object_toString(dispex, lcid, flags, dp, retv, ei, sp);
79 }
80
81 static HRESULT Object_valueOf(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
82         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
83 {
84     TRACE("\n");
85
86     if(retv) {
87         IDispatchEx_AddRef(_IDispatchEx_(dispex));
88
89         V_VT(retv) = VT_DISPATCH;
90         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(dispex);
91     }
92
93     return S_OK;
94 }
95
96 static HRESULT Object_hasOwnProperty(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
97         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
98 {
99     FIXME("\n");
100     return E_NOTIMPL;
101 }
102
103 static HRESULT Object_propertyIsEnumerable(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
104         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
105 {
106     FIXME("\n");
107     return E_NOTIMPL;
108 }
109
110 static HRESULT Object_isPrototypeOf(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
111         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
112 {
113     FIXME("\n");
114     return E_NOTIMPL;
115 }
116
117 static HRESULT Object_value(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
118         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
119 {
120     TRACE("\n");
121
122     switch(flags) {
123     case INVOKE_FUNC:
124         return throw_type_error(dispex->ctx, ei, IDS_NOT_FUNC, NULL);
125     case DISPATCH_PROPERTYGET:
126         V_VT(retv) = VT_BSTR;
127         V_BSTR(retv) = SysAllocString(default_valueW);
128         if(!V_BSTR(retv))
129             return E_OUTOFMEMORY;
130         break;
131     default:
132         FIXME("unimplemented flags %x\n", flags);
133         return E_NOTIMPL;
134     }
135
136     return S_OK;
137 }
138
139 static void Object_destructor(DispatchEx *dispex)
140 {
141     heap_free(dispex);
142 }
143
144 static const builtin_prop_t Object_props[] = {
145     {hasOwnPropertyW,        Object_hasOwnProperty,        PROPF_METHOD},
146     {isPrototypeOfW,         Object_isPrototypeOf,         PROPF_METHOD},
147     {propertyIsEnumerableW,  Object_propertyIsEnumerable,  PROPF_METHOD},
148     {toLocaleStringW,        Object_toLocaleString,        PROPF_METHOD},
149     {toStringW,              Object_toString,              PROPF_METHOD},
150     {valueOfW,               Object_valueOf,               PROPF_METHOD}
151 };
152
153 static const builtin_info_t Object_info = {
154     JSCLASS_OBJECT,
155     {NULL, Object_value, 0},
156     sizeof(Object_props)/sizeof(*Object_props),
157     Object_props,
158     Object_destructor,
159     NULL
160 };
161
162 static HRESULT ObjectConstr_value(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
163         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
164 {
165     HRESULT hres;
166
167     TRACE("\n");
168
169     switch(flags) {
170     case DISPATCH_CONSTRUCT: {
171         DispatchEx *obj;
172
173         hres = create_object(dispex->ctx, NULL, &obj);
174         if(FAILED(hres))
175             return hres;
176
177         V_VT(retv) = VT_DISPATCH;
178         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(obj);
179         break;
180     }
181
182     default:
183         FIXME("unimplemented flags: %x\n", flags);
184         return E_NOTIMPL;
185     }
186
187     return S_OK;
188 }
189
190 HRESULT create_object_constr(script_ctx_t *ctx, DispatchEx *object_prototype, DispatchEx **ret)
191 {
192     return create_builtin_function(ctx, ObjectConstr_value, NULL, PROPF_CONSTR,
193             object_prototype, ret);
194 }
195
196 HRESULT create_object_prototype(script_ctx_t *ctx, DispatchEx **ret)
197 {
198     return create_dispex(ctx, &Object_info, NULL, ret);
199 }
200
201 HRESULT create_object(script_ctx_t *ctx, DispatchEx *constr, DispatchEx **ret)
202 {
203     DispatchEx *object;
204     HRESULT hres;
205
206     object = heap_alloc_zero(sizeof(DispatchEx));
207     if(!object)
208         return E_OUTOFMEMORY;
209
210     hres = init_dispex_from_constr(object, ctx, &Object_info, constr ? constr : ctx->object_constr);
211     if(FAILED(hres)) {
212         heap_free(object);
213         return hres;
214     }
215
216     *ret = object;
217     return S_OK;
218 }