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
20 #include "wine/port.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
32 static const WCHAR NaNW
[] = {'N','a','N',0};
33 static const WCHAR InfinityW
[] = {'I','n','f','i','n','i','t','y',0};
34 static const WCHAR ArrayW
[] = {'A','r','r','a','y',0};
35 static const WCHAR BooleanW
[] = {'B','o','o','l','e','a','n',0};
36 static const WCHAR DateW
[] = {'D','a','t','e',0};
37 static const WCHAR ErrorW
[] = {'E','r','r','o','r',0};
38 static const WCHAR EvalErrorW
[] = {'E','v','a','l','E','r','r','o','r',0};
39 static const WCHAR RangeErrorW
[] = {'R','a','n','g','e','E','r','r','o','r',0};
40 static const WCHAR ReferenceErrorW
[] = {'R','e','f','e','r','e','n','c','e','E','r','r','o','r',0};
41 static const WCHAR SyntaxErrorW
[] = {'S','y','n','t','a','x','E','r','r','o','r',0};
42 static const WCHAR TypeErrorW
[] = {'T','y','p','e','E','r','r','o','r',0};
43 static const WCHAR URIErrorW
[] = {'U','R','I','E','r','r','o','r',0};
44 static const WCHAR FunctionW
[] = {'F','u','n','c','t','i','o','n',0};
45 static const WCHAR NumberW
[] = {'N','u','m','b','e','r',0};
46 static const WCHAR ObjectW
[] = {'O','b','j','e','c','t',0};
47 static const WCHAR StringW
[] = {'S','t','r','i','n','g',0};
48 static const WCHAR RegExpW
[] = {'R','e','g','E','x','p',0};
49 static const WCHAR RegExpErrorW
[] = {'R','e','g','E','x','p','E','r','r','o','r',0};
50 static const WCHAR ActiveXObjectW
[] = {'A','c','t','i','v','e','X','O','b','j','e','c','t',0};
51 static const WCHAR VBArrayW
[] = {'V','B','A','r','r','a','y',0};
52 static const WCHAR EnumeratorW
[] = {'E','n','u','m','e','r','a','t','o','r',0};
53 static const WCHAR escapeW
[] = {'e','s','c','a','p','e',0};
54 static const WCHAR evalW
[] = {'e','v','a','l',0};
55 static const WCHAR isNaNW
[] = {'i','s','N','a','N',0};
56 static const WCHAR isFiniteW
[] = {'i','s','F','i','n','i','t','e',0};
57 static const WCHAR parseIntW
[] = {'p','a','r','s','e','I','n','t',0};
58 static const WCHAR parseFloatW
[] = {'p','a','r','s','e','F','l','o','a','t',0};
59 static const WCHAR unescapeW
[] = {'u','n','e','s','c','a','p','e',0};
60 static const WCHAR _GetObjectW
[] = {'G','e','t','O','b','j','e','c','t',0};
61 static const WCHAR ScriptEngineW
[] = {'S','c','r','i','p','t','E','n','g','i','n','e',0};
62 static const WCHAR ScriptEngineMajorVersionW
[] =
63 {'S','c','r','i','p','t','E','n','g','i','n','e','M','a','j','o','r','V','e','r','s','i','o','n',0};
64 static const WCHAR ScriptEngineMinorVersionW
[] =
65 {'S','c','r','i','p','t','E','n','g','i','n','e','M','i','n','o','r','V','e','r','s','i','o','n',0};
66 static const WCHAR ScriptEngineBuildVersionW
[] =
67 {'S','c','r','i','p','t','E','n','g','i','n','e','B','u','i','l','d','V','e','r','s','i','o','n',0};
68 static const WCHAR CollectGarbageW
[] = {'C','o','l','l','e','c','t','G','a','r','b','a','g','e',0};
69 static const WCHAR MathW
[] = {'M','a','t','h',0};
70 static const WCHAR encodeURIW
[] = {'e','n','c','o','d','e','U','R','I',0};
71 static const WCHAR decodeURIW
[] = {'d','e','c','o','d','e','U','R','I',0};
72 static const WCHAR encodeURIComponentW
[] = {'e','n','c','o','d','e','U','R','I','C','o','m','p','o','n','e','n','t',0};
73 static const WCHAR decodeURIComponentW
[] = {'d','e','c','o','d','e','U','R','I','C','o','m','p','o','n','e','n','t',0};
75 static const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d',0};
77 static int uri_char_table
[] = {
78 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 00-0f */
79 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 10-1f */
80 0,2,0,0,1,0,1,2,2,2,2,1,1,2,2,1, /* 20-2f */
81 2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1, /* 30-3f */
82 1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* 40-4f */
83 2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,2, /* 50-5f */
84 0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* 60-6f */
85 2,2,2,2,2,2,2,2,2,2,2,0,0,0,2,0, /* 70-7f */
91 static inline BOOL
is_uri_reserved(WCHAR c
)
93 return c
< 128 && uri_char_table
[c
] == 1;
96 static inline BOOL
is_uri_unescaped(WCHAR c
)
98 return c
< 128 && uri_char_table
[c
] == 2;
101 /* Check that the character is one of the 69 non-blank characters as defined by ECMA-262 B.2.1 */
102 static inline BOOL
is_ecma_nonblank(const WCHAR c
)
104 return ((c
>= 'A' && c
<= 'Z') || (c
>= 'a' && c
<= 'z') || (c
>= '0' && c
<= '9') ||
105 c
== '@' || c
== '*' || c
== '_' || c
== '+' || c
== '-' || c
== '.' || c
== '/');
108 static WCHAR
int_to_char(int i
)
115 static HRESULT
constructor_call(jsdisp_t
*constr
, WORD flags
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
117 if(flags
!= DISPATCH_PROPERTYGET
)
118 return jsdisp_call_value(constr
, NULL
, flags
, argc
, argv
, r
);
120 *r
= jsval_obj(jsdisp_addref(constr
));
124 static HRESULT
JSGlobal_Array(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
129 return constructor_call(ctx
->array_constr
, flags
, argc
, argv
, r
);
132 static HRESULT
JSGlobal_Boolean(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
137 return constructor_call(ctx
->bool_constr
, flags
, argc
, argv
, r
);
140 static HRESULT
JSGlobal_Date(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
145 return constructor_call(ctx
->date_constr
, flags
, argc
, argv
, r
);
148 static HRESULT
JSGlobal_Error(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
153 return constructor_call(ctx
->error_constr
, flags
, argc
, argv
, r
);
156 static HRESULT
JSGlobal_EvalError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
161 return constructor_call(ctx
->eval_error_constr
, flags
, argc
, argv
, r
);
164 static HRESULT
JSGlobal_RangeError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
169 return constructor_call(ctx
->range_error_constr
, flags
, argc
, argv
, r
);
172 static HRESULT
JSGlobal_RegExpError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
177 return constructor_call(ctx
->regexp_error_constr
, flags
, argc
, argv
, r
);
180 static HRESULT
JSGlobal_ReferenceError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
185 return constructor_call(ctx
->reference_error_constr
, flags
, argc
, argv
, r
);
188 static HRESULT
JSGlobal_SyntaxError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
193 return constructor_call(ctx
->syntax_error_constr
, flags
, argc
, argv
, r
);
196 static HRESULT
JSGlobal_TypeError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
201 return constructor_call(ctx
->type_error_constr
, flags
, argc
, argv
, r
);
204 static HRESULT
JSGlobal_URIError(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
209 return constructor_call(ctx
->uri_error_constr
, flags
, argc
, argv
, r
);
212 static HRESULT
JSGlobal_Function(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
217 return constructor_call(ctx
->function_constr
, flags
, argc
, argv
, r
);
220 static HRESULT
JSGlobal_Number(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
225 return constructor_call(ctx
->number_constr
, flags
, argc
, argv
, r
);
228 static HRESULT
JSGlobal_Object(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
233 return constructor_call(ctx
->object_constr
, flags
, argc
, argv
, r
);
236 static HRESULT
JSGlobal_String(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
241 return constructor_call(ctx
->string_constr
, flags
, argc
, argv
, r
);
244 static HRESULT
JSGlobal_RegExp(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
249 return constructor_call(ctx
->regexp_constr
, flags
, argc
, argv
, r
);
252 static HRESULT
JSGlobal_ActiveXObject(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
257 return constructor_call(ctx
->activex_constr
, flags
, argc
, argv
, r
);
260 static HRESULT
JSGlobal_VBArray(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
265 return constructor_call(ctx
->vbarray_constr
, flags
, argc
, argv
, r
);
268 static HRESULT
JSGlobal_Enumerator(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
275 static HRESULT
JSGlobal_escape(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
278 jsstr_t
*ret_str
, *str
;
279 const WCHAR
*ptr
, *buf
;
288 *r
= jsval_string(jsstr_undefined());
292 hres
= to_flat_string(ctx
, argv
[0], &str
, &buf
);
296 for(ptr
= buf
; *ptr
; ptr
++) {
299 else if(is_ecma_nonblank(*ptr
))
305 ret
= jsstr_alloc_buf(len
, &ret_str
);
308 return E_OUTOFMEMORY
;
312 for(ptr
= buf
; *ptr
; ptr
++) {
316 ret
[len
++] = int_to_char(*ptr
>> 12);
317 ret
[len
++] = int_to_char((*ptr
>> 8) & 0xf);
318 ret
[len
++] = int_to_char((*ptr
>> 4) & 0xf);
319 ret
[len
++] = int_to_char(*ptr
& 0xf);
321 else if(is_ecma_nonblank(*ptr
))
325 ret
[len
++] = int_to_char(*ptr
>> 4);
326 ret
[len
++] = int_to_char(*ptr
& 0xf);
333 *r
= jsval_string(ret_str
);
335 jsstr_release(ret_str
);
339 /* ECMA-262 3rd Edition 15.1.2.1 */
340 static HRESULT
JSGlobal_eval(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
351 *r
= jsval_undefined();
355 if(!is_string(argv
[0])) {
357 return jsval_copy(argv
[0], r
);
362 FIXME("No active exec_ctx\n");
366 src
= jsstr_flatten(get_string(argv
[0]));
368 return E_OUTOFMEMORY
;
370 TRACE("parsing %s\n", debugstr_jsval(argv
[0]));
371 hres
= compile_script(ctx
, src
, NULL
, NULL
, TRUE
, FALSE
, &code
);
373 WARN("parse (%s) failed: %08x\n", debugstr_jsval(argv
[0]), hres
);
374 return throw_syntax_error(ctx
, hres
, NULL
);
377 hres
= exec_source(ctx
->exec_ctx
, code
, &code
->global_code
, TRUE
, r
);
378 release_bytecode(code
);
382 static HRESULT
JSGlobal_isNaN(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
392 hres
= to_number(ctx
, argv
[0], &n
);
401 *r
= jsval_bool(ret
);
405 static HRESULT
JSGlobal_isFinite(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
416 hres
= to_number(ctx
, argv
[0], &n
);
420 if(!isinf(n
) && !isnan(n
))
425 *r
= jsval_bool(ret
);
429 static INT
char_to_int(WCHAR c
)
431 if('0' <= c
&& c
<= '9')
433 if('a' <= c
&& c
<= 'z')
435 if('A' <= c
&& c
<= 'Z')
440 static HRESULT
JSGlobal_parseInt(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
443 BOOL neg
= FALSE
, empty
= TRUE
;
452 *r
= jsval_number(NAN
);
457 hres
= to_int32(ctx
, argv
[1], &radix
);
461 if(radix
&& (radix
< 2 || radix
> 36)) {
462 WARN("radix %d out of range\n", radix
);
464 *r
= jsval_number(NAN
);
469 hres
= to_flat_string(ctx
, argv
[0], &str
, &ptr
);
473 while(isspaceW(*ptr
))
488 if(ptr
[1] == 'x' || ptr
[1] == 'X') {
501 i
= char_to_int(*ptr
++);
505 i
= char_to_int(*ptr
++);
517 *r
= jsval_number(ret
);
521 static HRESULT
JSGlobal_parseFloat(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
528 BOOL ret_nan
= TRUE
, positive
= TRUE
;
533 *r
= jsval_number(NAN
);
537 hres
= to_flat_string(ctx
, argv
[0], &val_str
, &str
);
541 while(isspaceW(*str
)) str
++;
545 else if(*str
== '-') {
553 while(isdigitW(*str
)) {
554 hlp
= d
*10 + *(str
++) - '0';
555 if(d
>MAXLONGLONG
/10 || hlp
<0) {
562 while(isdigitW(*str
)) {
567 if(*str
== '.') str
++;
572 while(isdigitW(*str
)) {
573 hlp
= d
*10 + *(str
++) - '0';
574 if(d
>MAXLONGLONG
/10 || hlp
<0)
580 while(isdigitW(*str
))
583 if(*str
&& !ret_nan
&& (*str
=='e' || *str
=='E')) {
589 else if(*str
== '-') {
594 while(isdigitW(*str
)) {
595 if(e
>INT_MAX
/10 || (e
= e
*10 + *str
++ - '0')<0)
600 if(exp
<0 && e
<0 && exp
+e
>0) exp
= INT_MIN
;
601 else if(exp
>0 && e
>0 && exp
+e
<0) exp
= INT_MAX
;
605 jsstr_release(val_str
);
609 *r
= jsval_number(NAN
);
616 *r
= jsval_number(exp
>0 ? d
*pow(10, exp
) : d
/pow(10, -exp
));
620 static inline int hex_to_int(const WCHAR wch
) {
621 if(toupperW(wch
)>='A' && toupperW(wch
)<='F') return toupperW(wch
)-'A'+10;
622 if(isdigitW(wch
)) return wch
-'0';
626 static HRESULT
JSGlobal_unescape(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
629 jsstr_t
*ret_str
, *str
;
630 const WCHAR
*ptr
, *buf
;
639 *r
= jsval_string(jsstr_undefined());
643 hres
= to_flat_string(ctx
, argv
[0], &str
, &buf
);
647 for(ptr
= buf
; *ptr
; ptr
++) {
649 if(hex_to_int(*(ptr
+1))!=-1 && hex_to_int(*(ptr
+2))!=-1)
651 else if(*(ptr
+1)=='u' && hex_to_int(*(ptr
+2))!=-1 && hex_to_int(*(ptr
+3))!=-1
652 && hex_to_int(*(ptr
+4))!=-1 && hex_to_int(*(ptr
+5))!=-1)
659 ret
= jsstr_alloc_buf(len
, &ret_str
);
662 return E_OUTOFMEMORY
;
666 for(ptr
= buf
; *ptr
; ptr
++) {
668 if(hex_to_int(*(ptr
+1))!=-1 && hex_to_int(*(ptr
+2))!=-1) {
669 ret
[len
] = (hex_to_int(*(ptr
+1))<<4) + hex_to_int(*(ptr
+2));
672 else if(*(ptr
+1)=='u' && hex_to_int(*(ptr
+2))!=-1 && hex_to_int(*(ptr
+3))!=-1
673 && hex_to_int(*(ptr
+4))!=-1 && hex_to_int(*(ptr
+5))!=-1) {
674 ret
[len
] = (hex_to_int(*(ptr
+2))<<12) + (hex_to_int(*(ptr
+3))<<8)
675 + (hex_to_int(*(ptr
+4))<<4) + hex_to_int(*(ptr
+5));
690 *r
= jsval_string(ret_str
);
692 jsstr_release(ret_str
);
696 static HRESULT
JSGlobal_GetObject(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
703 static HRESULT
JSGlobal_ScriptEngine(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
706 static const WCHAR JScriptW
[] = {'J','S','c','r','i','p','t',0};
713 ret
= jsstr_alloc(JScriptW
);
715 return E_OUTOFMEMORY
;
717 *r
= jsval_string(ret
);
723 static HRESULT
JSGlobal_ScriptEngineMajorVersion(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
729 *r
= jsval_number(JSCRIPT_MAJOR_VERSION
);
733 static HRESULT
JSGlobal_ScriptEngineMinorVersion(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
739 *r
= jsval_number(JSCRIPT_MINOR_VERSION
);
743 static HRESULT
JSGlobal_ScriptEngineBuildVersion(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
749 *r
= jsval_number(JSCRIPT_BUILD_VERSION
);
753 static HRESULT
JSGlobal_CollectGarbage(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
760 static HRESULT
JSGlobal_encodeURI(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
763 const WCHAR
*ptr
, *uri
;
774 *r
= jsval_string(jsstr_undefined());
778 hres
= to_flat_string(ctx
, argv
[0], &str
, &uri
);
782 for(ptr
= uri
; *ptr
; ptr
++) {
783 if(is_uri_unescaped(*ptr
) || is_uri_reserved(*ptr
) || *ptr
== '#') {
786 i
= WideCharToMultiByte(CP_UTF8
, 0, ptr
, 1, NULL
, 0, NULL
, NULL
)*3;
789 return throw_uri_error(ctx
, JS_E_INVALID_URI_CHAR
, NULL
);
796 rptr
= jsstr_alloc_buf(len
, &ret
);
799 return E_OUTOFMEMORY
;
802 for(ptr
= uri
; *ptr
; ptr
++) {
803 if(is_uri_unescaped(*ptr
) || is_uri_reserved(*ptr
) || *ptr
== '#') {
806 len
= WideCharToMultiByte(CP_UTF8
, 0, ptr
, 1, buf
, sizeof(buf
), NULL
, NULL
);
807 for(i
=0; i
<len
; i
++) {
809 *rptr
++ = int_to_char((BYTE
)buf
[i
] >> 4);
810 *rptr
++ = int_to_char(buf
[i
] & 0x0f);
815 TRACE("%s -> %s\n", debugstr_jsstr(str
), debugstr_jsstr(ret
));
819 *r
= jsval_string(ret
);
825 static HRESULT
JSGlobal_decodeURI(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
828 const WCHAR
*ptr
, *uri
;
829 jsstr_t
*str
, *ret_str
;
841 *r
= jsval_string(jsstr_undefined());
845 hres
= to_flat_string(ctx
, argv
[0], &str
, &uri
);
849 for(ptr
= uri
; *ptr
; ptr
++) {
855 if(ptr
[i
*3]!='%' || hex_to_int(ptr
[i
*3+1])==-1 || (val
=hex_to_int(ptr
[i
*3+2]))==-1)
857 val
+= hex_to_int(ptr
[i
*3+1])<<4;
860 res
= MultiByteToWideChar(CP_UTF8
, 0, buf
, i
+1, &out
, 1);
867 return throw_uri_error(ctx
, JS_E_INVALID_URI_CODING
, NULL
);
875 ret
= jsstr_alloc_buf(len
, &ret_str
);
878 return E_OUTOFMEMORY
;
881 for(ptr
= uri
; *ptr
; ptr
++) {
886 if(ptr
[i
*3]!='%' || hex_to_int(ptr
[i
*3+1])==-1 || (val
=hex_to_int(ptr
[i
*3+2]))==-1)
888 val
+= hex_to_int(ptr
[i
*3+1])<<4;
891 res
= MultiByteToWideChar(CP_UTF8
, 0, buf
, i
+1, ret
, 1);
901 TRACE("%s -> %s\n", debugstr_jsstr(str
), debugstr_jsstr(ret_str
));
905 *r
= jsval_string(ret_str
);
907 jsstr_release(ret_str
);
911 static HRESULT
JSGlobal_encodeURIComponent(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
914 jsstr_t
*str
, *ret_str
;
916 const WCHAR
*ptr
, *uri
;
917 DWORD len
= 0, size
, i
;
925 *r
= jsval_string(jsstr_undefined());
929 hres
= to_flat_string(ctx
, argv
[0], &str
, &uri
);
933 for(ptr
= uri
; *ptr
; ptr
++) {
934 if(is_uri_unescaped(*ptr
))
937 size
= WideCharToMultiByte(CP_UTF8
, 0, ptr
, 1, NULL
, 0, NULL
, NULL
);
940 return throw_uri_error(ctx
, JS_E_INVALID_URI_CHAR
, NULL
);
946 ret
= jsstr_alloc_buf(len
, &ret_str
);
949 return E_OUTOFMEMORY
;
952 for(ptr
= uri
; *ptr
; ptr
++) {
953 if(is_uri_unescaped(*ptr
)) {
956 size
= WideCharToMultiByte(CP_UTF8
, 0, ptr
, 1, buf
, sizeof(buf
), NULL
, NULL
);
957 for(i
=0; i
<size
; i
++) {
959 *ret
++ = int_to_char((BYTE
)buf
[i
] >> 4);
960 *ret
++ = int_to_char(buf
[i
] & 0x0f);
968 *r
= jsval_string(ret_str
);
970 jsstr_release(ret_str
);
974 /* ECMA-262 3rd Edition 15.1.3.2 */
975 static HRESULT
JSGlobal_decodeURIComponent(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
978 const WCHAR
*ptr
, *uri
;
988 *r
= jsval_string(jsstr_undefined());
992 hres
= to_flat_string(ctx
, argv
[0], &str
, &uri
);
1000 unsigned char mask
= 0x80;
1001 int i
, size
, num_bytes
= 0;
1002 if(hex_to_int(*(ptr
+1)) < 0 || hex_to_int(*(ptr
+2)) < 0) {
1003 FIXME("Throw URIError: Invalid hex sequence\n");
1007 octets
[0] = (hex_to_int(*(ptr
+1)) << 4) + hex_to_int(*(ptr
+2));
1009 while(octets
[0] & mask
) {
1013 if(num_bytes
== 1 || num_bytes
> 4) {
1014 FIXME("Throw URIError: Invalid initial UTF character\n");
1018 for(i
= 1; i
< num_bytes
; ++i
) {
1020 FIXME("Throw URIError: Incomplete UTF sequence\n");
1024 if(hex_to_int(*(ptr
+1)) < 0 || hex_to_int(*(ptr
+2)) < 0) {
1025 FIXME("Throw URIError: Invalid hex sequence\n");
1029 octets
[i
] = (hex_to_int(*(ptr
+1)) << 4) + hex_to_int(*(ptr
+2));
1032 size
= MultiByteToWideChar(CP_UTF8
, MB_ERR_INVALID_CHARS
, octets
,
1033 num_bytes
? num_bytes
: 1, NULL
, 0);
1035 FIXME("Throw URIError: Invalid UTF sequence\n");
1046 out_ptr
= jsstr_alloc_buf(len
, &ret
);
1049 return E_OUTOFMEMORY
;
1056 unsigned char mask
= 0x80;
1057 int i
, size
, num_bytes
= 0;
1058 octets
[0] = (hex_to_int(*(ptr
+1)) << 4) + hex_to_int(*(ptr
+2));
1060 while(octets
[0] & mask
) {
1064 for(i
= 1; i
< num_bytes
; ++i
) {
1065 octets
[i
] = (hex_to_int(*(ptr
+1)) << 4) + hex_to_int(*(ptr
+2));
1068 size
= MultiByteToWideChar(CP_UTF8
, MB_ERR_INVALID_CHARS
, octets
,
1069 num_bytes
? num_bytes
: 1, out_ptr
, len
);
1073 *out_ptr
++ = *ptr
++;
1081 *r
= jsval_string(ret
);
1087 static const builtin_prop_t JSGlobal_props
[] = {
1088 {ActiveXObjectW
, JSGlobal_ActiveXObject
, PROPF_CONSTR
|1},
1089 {ArrayW
, JSGlobal_Array
, PROPF_CONSTR
|1},
1090 {BooleanW
, JSGlobal_Boolean
, PROPF_CONSTR
|1},
1091 {CollectGarbageW
, JSGlobal_CollectGarbage
, PROPF_METHOD
},
1092 {DateW
, JSGlobal_Date
, PROPF_CONSTR
|7},
1093 {EnumeratorW
, JSGlobal_Enumerator
, PROPF_METHOD
|7},
1094 {ErrorW
, JSGlobal_Error
, PROPF_CONSTR
|1},
1095 {EvalErrorW
, JSGlobal_EvalError
, PROPF_CONSTR
|1},
1096 {FunctionW
, JSGlobal_Function
, PROPF_CONSTR
|1},
1097 {_GetObjectW
, JSGlobal_GetObject
, PROPF_METHOD
|2},
1098 {NumberW
, JSGlobal_Number
, PROPF_CONSTR
|1},
1099 {ObjectW
, JSGlobal_Object
, PROPF_CONSTR
|1},
1100 {RangeErrorW
, JSGlobal_RangeError
, PROPF_CONSTR
|1},
1101 {ReferenceErrorW
, JSGlobal_ReferenceError
, PROPF_CONSTR
|1},
1102 {RegExpW
, JSGlobal_RegExp
, PROPF_CONSTR
|2},
1103 {RegExpErrorW
, JSGlobal_RegExpError
, PROPF_CONSTR
|1},
1104 {ScriptEngineW
, JSGlobal_ScriptEngine
, PROPF_METHOD
},
1105 {ScriptEngineBuildVersionW
, JSGlobal_ScriptEngineBuildVersion
, PROPF_METHOD
},
1106 {ScriptEngineMajorVersionW
, JSGlobal_ScriptEngineMajorVersion
, PROPF_METHOD
},
1107 {ScriptEngineMinorVersionW
, JSGlobal_ScriptEngineMinorVersion
, PROPF_METHOD
},
1108 {StringW
, JSGlobal_String
, PROPF_CONSTR
|1},
1109 {SyntaxErrorW
, JSGlobal_SyntaxError
, PROPF_CONSTR
|1},
1110 {TypeErrorW
, JSGlobal_TypeError
, PROPF_CONSTR
|1},
1111 {URIErrorW
, JSGlobal_URIError
, PROPF_CONSTR
|1},
1112 {VBArrayW
, JSGlobal_VBArray
, PROPF_CONSTR
|1},
1113 {decodeURIW
, JSGlobal_decodeURI
, PROPF_METHOD
|1},
1114 {decodeURIComponentW
, JSGlobal_decodeURIComponent
, PROPF_METHOD
|1},
1115 {encodeURIW
, JSGlobal_encodeURI
, PROPF_METHOD
|1},
1116 {encodeURIComponentW
, JSGlobal_encodeURIComponent
, PROPF_METHOD
|1},
1117 {escapeW
, JSGlobal_escape
, PROPF_METHOD
|1},
1118 {evalW
, JSGlobal_eval
, PROPF_METHOD
|1},
1119 {isFiniteW
, JSGlobal_isFinite
, PROPF_METHOD
|1},
1120 {isNaNW
, JSGlobal_isNaN
, PROPF_METHOD
|1},
1121 {parseFloatW
, JSGlobal_parseFloat
, PROPF_METHOD
|1},
1122 {parseIntW
, JSGlobal_parseInt
, PROPF_METHOD
|2},
1123 {unescapeW
, JSGlobal_unescape
, PROPF_METHOD
|1}
1126 static const builtin_info_t JSGlobal_info
= {
1129 sizeof(JSGlobal_props
)/sizeof(*JSGlobal_props
),
1135 static HRESULT
init_constructors(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
)
1139 hres
= init_function_constr(ctx
, object_prototype
);
1143 hres
= create_object_constr(ctx
, object_prototype
, &ctx
->object_constr
);
1147 hres
= create_activex_constr(ctx
, &ctx
->activex_constr
);
1151 hres
= create_array_constr(ctx
, object_prototype
, &ctx
->array_constr
);
1155 hres
= create_bool_constr(ctx
, object_prototype
, &ctx
->bool_constr
);
1159 hres
= create_date_constr(ctx
, object_prototype
, &ctx
->date_constr
);
1163 hres
= init_error_constr(ctx
, object_prototype
);
1167 hres
= create_number_constr(ctx
, object_prototype
, &ctx
->number_constr
);
1171 hres
= create_regexp_constr(ctx
, object_prototype
, &ctx
->regexp_constr
);
1175 hres
= create_string_constr(ctx
, object_prototype
, &ctx
->string_constr
);
1179 hres
= create_vbarray_constr(ctx
, object_prototype
, &ctx
->vbarray_constr
);
1186 HRESULT
init_global(script_ctx_t
*ctx
)
1188 jsdisp_t
*math
, *object_prototype
;
1194 hres
= create_object_prototype(ctx
, &object_prototype
);
1198 hres
= init_constructors(ctx
, object_prototype
);
1199 jsdisp_release(object_prototype
);
1203 hres
= create_dispex(ctx
, &JSGlobal_info
, NULL
, &ctx
->global
);
1207 hres
= create_math(ctx
, &math
);
1211 hres
= jsdisp_propput_dontenum(ctx
->global
, MathW
, jsval_obj(math
));
1212 jsdisp_release(math
);
1216 hres
= jsdisp_propput_dontenum(ctx
->global
, undefinedW
, jsval_undefined());
1220 hres
= jsdisp_propput_dontenum(ctx
->global
, NaNW
, jsval_number(NAN
));
1224 hres
= jsdisp_propput_dontenum(ctx
->global
, InfinityW
, jsval_number(INFINITY
));