2 * Copyright 2009 Piotr Caban
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
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
31 static const WCHAR descriptionW
[] = {'d','e','s','c','r','i','p','t','i','o','n',0};
32 static const WCHAR messageW
[] = {'m','e','s','s','a','g','e',0};
33 static const WCHAR nameW
[] = {'n','a','m','e',0};
34 static const WCHAR numberW
[] = {'n','u','m','b','e','r',0};
35 static const WCHAR toStringW
[] = {'t','o','S','t','r','i','n','g',0};
37 /* ECMA-262 3rd Edition 15.11.4.4 */
38 static HRESULT
Error_toString(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
,
39 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
42 jsstr_t
*name
= NULL
, *msg
= NULL
, *ret
= NULL
;
46 static const WCHAR object_errorW
[] = {'[','o','b','j','e','c','t',' ','E','r','r','o','r',']',0};
50 jsthis
= get_jsdisp(vthis
);
51 if(!jsthis
|| ctx
->version
< 2) {
55 str
= jsstr_alloc(object_errorW
);
58 *r
= jsval_string(str
);
63 hres
= jsdisp_propget_name(jsthis
, nameW
, &v
);
67 if(!is_undefined(v
)) {
68 hres
= to_string(ctx
, v
, &name
);
74 hres
= jsdisp_propget_name(jsthis
, messageW
, &v
);
76 if(!is_undefined(v
)) {
77 hres
= to_string(ctx
, v
, &msg
);
83 unsigned name_len
= name
? jsstr_length(name
) : 0;
84 unsigned msg_len
= msg
? jsstr_length(msg
) : 0;
86 if(name_len
&& msg_len
) {
89 ret
= jsstr_alloc_buf(name_len
+ msg_len
+ 2, &ptr
);
91 jsstr_flush(name
, ptr
);
93 ptr
[name_len
+1] = ' ';
94 jsstr_flush(msg
, ptr
+name_len
+2);
105 ret
= jsstr_alloc(object_errorW
);
116 return E_OUTOFMEMORY
;
119 *r
= jsval_string(ret
);
125 static HRESULT
Error_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
126 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
132 return throw_type_error(ctx
, JS_E_FUNCTION_EXPECTED
, NULL
);
134 FIXME("unimplemented flags %x\n", flags
);
141 static const builtin_prop_t Error_props
[] = {
142 {toStringW
, Error_toString
, PROPF_METHOD
}
145 static const builtin_info_t Error_info
= {
147 {NULL
, Error_value
, 0},
148 ARRAY_SIZE(Error_props
),
154 static const builtin_info_t ErrorInst_info
= {
156 {NULL
, Error_value
, 0},
163 static HRESULT
alloc_error(script_ctx_t
*ctx
, jsdisp_t
*prototype
,
164 jsdisp_t
*constr
, jsdisp_t
**ret
)
169 err
= heap_alloc_zero(sizeof(*err
));
171 return E_OUTOFMEMORY
;
174 hres
= init_dispex(err
, ctx
, &Error_info
, prototype
);
176 hres
= init_dispex_from_constr(err
, ctx
, &ErrorInst_info
,
177 constr
? constr
: ctx
->error_constr
);
187 static HRESULT
create_error(script_ctx_t
*ctx
, jsdisp_t
*constr
,
188 UINT number
, jsstr_t
*msg
, jsdisp_t
**ret
)
193 hres
= alloc_error(ctx
, NULL
, constr
, &err
);
197 hres
= jsdisp_define_data_property(err
, numberW
, PROPF_WRITABLE
| PROPF_CONFIGURABLE
,
198 jsval_number((INT
)number
));
204 hres
= jsdisp_define_data_property(err
, messageW
,
205 PROPF_WRITABLE
| PROPF_ENUMERABLE
| PROPF_CONFIGURABLE
,
208 hres
= jsdisp_define_data_property(err
, descriptionW
, PROPF_WRITABLE
| PROPF_CONFIGURABLE
,
219 static HRESULT
error_constr(script_ctx_t
*ctx
, WORD flags
, unsigned argc
, jsval_t
*argv
,
220 jsval_t
*r
, jsdisp_t
*constr
) {
229 hres
= to_number(ctx
, argv
[0], &n
);
230 if(FAILED(hres
)) /* FIXME: really? */
233 hres
= to_string(ctx
, argv
[0], &msg
);
241 hres
= to_string(ctx
, argv
[1], &msg
);
251 case DISPATCH_CONSTRUCT
:
252 hres
= create_error(ctx
, constr
, num
, msg
, &err
);
266 FIXME("unimplemented flags %x\n", flags
);
271 static HRESULT
ErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
272 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
275 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->error_constr
);
278 static HRESULT
EvalErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
279 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
282 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->eval_error_constr
);
285 static HRESULT
RangeErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
286 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
289 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->range_error_constr
);
292 static HRESULT
ReferenceErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
293 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
296 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->reference_error_constr
);
299 static HRESULT
RegExpErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
300 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
303 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->regexp_error_constr
);
306 static HRESULT
SyntaxErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
307 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
310 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->syntax_error_constr
);
313 static HRESULT
TypeErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
314 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
317 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->type_error_constr
);
320 static HRESULT
URIErrorConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
321 unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
324 return error_constr(ctx
, flags
, argc
, argv
, r
, ctx
->uri_error_constr
);
327 HRESULT
init_error_constr(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
)
329 static const WCHAR ErrorW
[] = {'E','r','r','o','r',0};
330 static const WCHAR EvalErrorW
[] = {'E','v','a','l','E','r','r','o','r',0};
331 static const WCHAR RangeErrorW
[] = {'R','a','n','g','e','E','r','r','o','r',0};
332 static const WCHAR ReferenceErrorW
[] = {'R','e','f','e','r','e','n','c','e','E','r','r','o','r',0};
333 static const WCHAR RegExpErrorW
[] = {'R','e','g','E','x','p','E','r','r','o','r',0};
334 static const WCHAR SyntaxErrorW
[] = {'S','y','n','t','a','x','E','r','r','o','r',0};
335 static const WCHAR TypeErrorW
[] = {'T','y','p','e','E','r','r','o','r',0};
336 static const WCHAR URIErrorW
[] = {'U','R','I','E','r','r','o','r',0};
337 static const WCHAR
*names
[] = {ErrorW
, EvalErrorW
, RangeErrorW
,
338 ReferenceErrorW
, RegExpErrorW
, SyntaxErrorW
, TypeErrorW
, URIErrorW
};
339 jsdisp_t
**constr_addr
[] = {&ctx
->error_constr
, &ctx
->eval_error_constr
,
340 &ctx
->range_error_constr
, &ctx
->reference_error_constr
, &ctx
->regexp_error_constr
,
341 &ctx
->syntax_error_constr
, &ctx
->type_error_constr
,
342 &ctx
->uri_error_constr
};
343 static builtin_invoke_t constr_val
[] = {ErrorConstr_value
, EvalErrorConstr_value
,
344 RangeErrorConstr_value
, ReferenceErrorConstr_value
, RegExpErrorConstr_value
,
345 SyntaxErrorConstr_value
, TypeErrorConstr_value
, URIErrorConstr_value
};
352 for(i
=0; i
< ARRAY_SIZE(names
); i
++) {
353 hres
= alloc_error(ctx
, i
==0 ? object_prototype
: NULL
, NULL
, &err
);
357 str
= jsstr_alloc(names
[i
]);
360 return E_OUTOFMEMORY
;
363 hres
= jsdisp_define_data_property(err
, nameW
, PROPF_WRITABLE
| PROPF_CONFIGURABLE
,
367 hres
= create_builtin_constructor(ctx
, constr_val
[i
], names
[i
], NULL
,
368 PROPF_CONSTR
|1, err
, constr_addr
[i
]);
378 static jsstr_t
*format_error_message(HRESULT error
, const WCHAR
*arg
)
380 size_t len
, arg_len
= 0;
381 const WCHAR
*res
, *pos
;
385 if(!is_jscript_error(error
))
386 return jsstr_empty();
388 len
= LoadStringW(jscript_hinstance
, HRESULT_CODE(error
), (WCHAR
*)&res
, 0);
390 pos
= wmemchr(res
, '|', len
);
392 arg_len
= lstrlenW(arg
);
393 r
= jsstr_alloc_buf(len
+ arg_len
- (pos
? 1 : 0), &buf
);
395 return jsstr_empty();
399 memcpy(p
, res
, (pos
- res
) * sizeof(WCHAR
));
402 pos
= pos
? pos
+ 1 : res
;
404 memcpy(p
, arg
, arg_len
* sizeof(WCHAR
));
408 memcpy(p
, pos
, (res
+ len
- pos
) * sizeof(WCHAR
));
412 static HRESULT
throw_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
, jsdisp_t
*constr
)
418 if(!is_jscript_error(error
))
421 msg
= format_error_message(error
, str
);
423 return E_OUTOFMEMORY
;
425 WARN("%s\n", debugstr_jsstr(msg
));
427 hres
= create_error(ctx
, constr
, error
, msg
, &err
);
433 ctx
->ei
->valid_value
= TRUE
;
434 ctx
->ei
->value
= jsval_obj(err
);
438 HRESULT
throw_generic_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
440 return throw_error(ctx
, error
, str
, ctx
->error_constr
);
443 HRESULT
throw_range_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
445 return throw_error(ctx
, error
, str
, ctx
->range_error_constr
);
448 HRESULT
throw_reference_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
450 return throw_error(ctx
, error
, str
, ctx
->reference_error_constr
);
453 HRESULT
throw_regexp_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
455 return throw_error(ctx
, error
, str
, ctx
->regexp_error_constr
);
458 HRESULT
throw_syntax_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
460 return throw_error(ctx
, error
, str
, ctx
->syntax_error_constr
);
463 HRESULT
throw_type_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
465 return throw_error(ctx
, error
, str
, ctx
->type_error_constr
);
468 HRESULT
throw_uri_error(script_ctx_t
*ctx
, HRESULT error
, const WCHAR
*str
)
470 return throw_error(ctx
, error
, str
, ctx
->uri_error_constr
);
473 jsdisp_t
*create_builtin_error(script_ctx_t
*ctx
)
475 jsdisp_t
*constr
= ctx
->error_constr
, *r
;
476 jsexcept_t
*ei
= ctx
->ei
;
479 assert(FAILED(ei
->error
) && ei
->error
!= DISP_E_EXCEPTION
);
481 if(is_jscript_error(ei
->error
)) {
484 case JS_E_MISSING_SEMICOLON
:
485 case JS_E_MISSING_LBRACKET
:
486 case JS_E_MISSING_RBRACKET
:
487 case JS_E_EXPECTED_IDENTIFIER
:
488 case JS_E_EXPECTED_ASSIGN
:
489 case JS_E_INVALID_CHAR
:
490 case JS_E_UNTERMINATED_STRING
:
491 case JS_E_MISPLACED_RETURN
:
492 case JS_E_INVALID_BREAK
:
493 case JS_E_INVALID_CONTINUE
:
494 case JS_E_LABEL_REDEFINED
:
495 case JS_E_LABEL_NOT_FOUND
:
496 case JS_E_EXPECTED_CCEND
:
497 case JS_E_DISABLED_CC
:
498 case JS_E_EXPECTED_AT
:
499 constr
= ctx
->syntax_error_constr
;
502 case JS_E_TO_PRIMITIVE
:
503 case JS_E_INVALIDARG
:
504 case JS_E_OBJECT_REQUIRED
:
505 case JS_E_INVALID_PROPERTY
:
506 case JS_E_INVALID_ACTION
:
507 case JS_E_MISSING_ARG
:
508 case JS_E_FUNCTION_EXPECTED
:
509 case JS_E_DATE_EXPECTED
:
510 case JS_E_NUMBER_EXPECTED
:
511 case JS_E_OBJECT_EXPECTED
:
512 case JS_E_UNDEFINED_VARIABLE
:
513 case JS_E_BOOLEAN_EXPECTED
:
514 case JS_E_VBARRAY_EXPECTED
:
515 case JS_E_INVALID_DELETE
:
516 case JS_E_JSCRIPT_EXPECTED
:
517 case JS_E_ENUMERATOR_EXPECTED
:
518 case JS_E_ARRAY_EXPECTED
:
519 case JS_E_NONCONFIGURABLE_REDEFINED
:
520 case JS_E_NONWRITABLE_MODIFIED
:
521 case JS_E_PROP_DESC_MISMATCH
:
522 case JS_E_INVALID_WRITABLE_PROP_DESC
:
523 constr
= ctx
->type_error_constr
;
526 case JS_E_SUBSCRIPT_OUT_OF_RANGE
:
527 case JS_E_FRACTION_DIGITS_OUT_OF_RANGE
:
528 case JS_E_PRECISION_OUT_OF_RANGE
:
529 case JS_E_INVALID_LENGTH
:
530 constr
= ctx
->range_error_constr
;
533 case JS_E_ILLEGAL_ASSIGN
:
534 constr
= ctx
->reference_error_constr
;
537 case JS_E_REGEXP_SYNTAX
:
538 constr
= ctx
->regexp_error_constr
;
541 case JS_E_INVALID_URI_CODING
:
542 case JS_E_INVALID_URI_CHAR
:
543 constr
= ctx
->uri_error_constr
;
548 hres
= create_error(ctx
, constr
, ei
->error
, jsstr_empty(), &r
);
549 return SUCCEEDED(hres
) ? r
: NULL
;