jscript: Added SetScriptState(SCRIPTSTATE_UNINITIALIZED) implementation.
[wine] / dlls / jscript / global.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 "config.h"
20 #include "wine/port.h"
21
22 #include <math.h>
23 #include <limits.h>
24
25 #include "jscript.h"
26 #include "engine.h"
27
28 #include "wine/debug.h"
29
30 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
31
32 #define LONGLONG_MAX (((LONGLONG)0x7fffffff<<32)|0xffffffff)
33
34 static const WCHAR NaNW[] = {'N','a','N',0};
35 static const WCHAR InfinityW[] = {'I','n','f','i','n','i','t','y',0};
36 static const WCHAR ArrayW[] = {'A','r','r','a','y',0};
37 static const WCHAR BooleanW[] = {'B','o','o','l','e','a','n',0};
38 static const WCHAR DateW[] = {'D','a','t','e',0};
39 static const WCHAR ErrorW[] = {'E','r','r','o','r',0};
40 static const WCHAR EvalErrorW[] = {'E','v','a','l','E','r','r','o','r',0};
41 static const WCHAR RangeErrorW[] = {'R','a','n','g','e','E','r','r','o','r',0};
42 static const WCHAR ReferenceErrorW[] = {'R','e','f','e','r','e','n','c','e','E','r','r','o','r',0};
43 static const WCHAR SyntaxErrorW[] = {'S','y','n','t','a','x','E','r','r','o','r',0};
44 static const WCHAR TypeErrorW[] = {'T','y','p','e','E','r','r','o','r',0};
45 static const WCHAR URIErrorW[] = {'U','R','I','E','r','r','o','r',0};
46 static const WCHAR FunctionW[] = {'F','u','n','c','t','i','o','n',0};
47 static const WCHAR NumberW[] = {'N','u','m','b','e','r',0};
48 static const WCHAR ObjectW[] = {'O','b','j','e','c','t',0};
49 static const WCHAR StringW[] = {'S','t','r','i','n','g',0};
50 static const WCHAR RegExpW[] = {'R','e','g','E','x','p',0};
51 static const WCHAR ActiveXObjectW[] = {'A','c','t','i','v','e','X','O','b','j','e','c','t',0};
52 static const WCHAR VBArrayW[] = {'V','B','A','r','r','a','y',0};
53 static const WCHAR EnumeratorW[] = {'E','n','u','m','e','r','a','t','o','r',0};
54 static const WCHAR escapeW[] = {'e','s','c','a','p','e',0};
55 static const WCHAR evalW[] = {'e','v','a','l',0};
56 static const WCHAR isNaNW[] = {'i','s','N','a','N',0};
57 static const WCHAR isFiniteW[] = {'i','s','F','i','n','i','t','e',0};
58 static const WCHAR parseIntW[] = {'p','a','r','s','e','I','n','t',0};
59 static const WCHAR parseFloatW[] = {'p','a','r','s','e','F','l','o','a','t',0};
60 static const WCHAR unescapeW[] = {'u','n','e','s','c','a','p','e',0};
61 static const WCHAR _GetObjectW[] = {'G','e','t','O','b','j','e','c','t',0};
62 static const WCHAR ScriptEngineW[] = {'S','c','r','i','p','t','E','n','g','i','n','e',0};
63 static const WCHAR ScriptEngineMajorVersionW[] =
64     {'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};
65 static const WCHAR ScriptEngineMinorVersionW[] =
66     {'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};
67 static const WCHAR ScriptEngineBuildVersionW[] =
68     {'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};
69 static const WCHAR CollectGarbageW[] = {'C','o','l','l','e','c','t','G','a','r','b','a','g','e',0};
70 static const WCHAR MathW[] = {'M','a','t','h',0};
71 static const WCHAR encodeURIW[] = {'e','n','c','o','d','e','U','R','I',0};
72 static const WCHAR decodeURIW[] = {'d','e','c','o','d','e','U','R','I',0};
73 static const WCHAR encodeURIComponentW[] = {'e','n','c','o','d','e','U','R','I','C','o','m','p','o','n','e','n','t',0};
74 static const WCHAR decodeURIComponentW[] = {'d','e','c','o','d','e','U','R','I','C','o','m','p','o','n','e','n','t',0};
75
76 static const WCHAR undefinedW[] = {'u','n','d','e','f','i','n','e','d',0};
77
78 static int uri_char_table[] = {
79     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 00-0f */
80     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 10-1f */
81     0,2,0,0,1,0,1,2,2,2,2,1,1,2,2,1, /* 20-2f */
82     2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1, /* 30-3f */
83     1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* 40-4f */
84     2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,2, /* 50-5f */
85     0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* 60-6f */
86     2,2,2,2,2,2,2,2,2,2,2,0,0,0,2,0, /* 70-7f */
87 };
88
89 /* 1 - reserved */
90 /* 2 - unescaped */
91
92 static inline BOOL is_uri_reserved(WCHAR c)
93 {
94     return c < 128 && uri_char_table[c] == 1;
95 }
96
97 static inline BOOL is_uri_unescaped(WCHAR c)
98 {
99     return c < 128 && uri_char_table[c] == 2;
100 }
101
102 /* Check that the character is one of the 69 nonblank characters as defined by ECMA-262 B.2.1 */
103 static inline BOOL is_ecma_nonblank(const WCHAR c)
104 {
105     return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||
106         c == '@' || c == '*' || c == '_' || c == '+' || c == '-' || c == '.' || c == '/');
107 }
108
109 static WCHAR int_to_char(int i)
110 {
111     if(i < 10)
112         return '0'+i;
113     return 'A'+i-10;
114 }
115
116 static HRESULT constructor_call(jsdisp_t *constr, WORD flags, DISPPARAMS *dp,
117         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
118 {
119     if(flags != DISPATCH_PROPERTYGET)
120         return jsdisp_call_value(constr, flags, dp, retv, ei, sp);
121
122     jsdisp_addref(constr);
123     var_set_jsdisp(retv, constr);
124     return S_OK;
125 }
126
127 static HRESULT JSGlobal_Array(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
128         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
129 {
130     TRACE("\n");
131
132     return constructor_call(ctx->array_constr, flags, dp, retv, ei, sp);
133 }
134
135 static HRESULT JSGlobal_Boolean(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
136         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
137 {
138     TRACE("\n");
139
140     return constructor_call(ctx->bool_constr, flags, dp, retv, ei, sp);
141 }
142
143 static HRESULT JSGlobal_Date(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
144         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
145 {
146     TRACE("\n");
147
148     return constructor_call(ctx->date_constr, flags, dp, retv, ei, sp);
149 }
150
151 static HRESULT JSGlobal_Error(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
152         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
153 {
154     TRACE("\n");
155
156     return constructor_call(ctx->error_constr, flags, dp, retv, ei, sp);
157 }
158
159 static HRESULT JSGlobal_EvalError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
160         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
161 {
162     TRACE("\n");
163
164     return constructor_call(ctx->eval_error_constr, flags, dp, retv, ei, sp);
165 }
166
167 static HRESULT JSGlobal_RangeError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
168         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
169 {
170     TRACE("\n");
171
172     return constructor_call(ctx->range_error_constr, flags, dp, retv, ei, sp);
173 }
174
175 static HRESULT JSGlobal_ReferenceError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
176         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
177 {
178     TRACE("\n");
179
180     return constructor_call(ctx->reference_error_constr, flags, dp, retv, ei, sp);
181 }
182
183 static HRESULT JSGlobal_SyntaxError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
184         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
185 {
186     TRACE("\n");
187
188     return constructor_call(ctx->syntax_error_constr, flags, dp, retv, ei, sp);
189 }
190
191 static HRESULT JSGlobal_TypeError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
192         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
193 {
194     TRACE("\n");
195
196     return constructor_call(ctx->type_error_constr, flags, dp, retv, ei, sp);
197 }
198
199 static HRESULT JSGlobal_URIError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
200         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
201 {
202     TRACE("\n");
203
204     return constructor_call(ctx->uri_error_constr, flags, dp, retv, ei, sp);
205 }
206
207 static HRESULT JSGlobal_Function(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
208         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
209 {
210     TRACE("\n");
211
212     return constructor_call(ctx->function_constr, flags, dp, retv, ei, sp);
213 }
214
215 static HRESULT JSGlobal_Number(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
216         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
217 {
218     TRACE("\n");
219
220     return constructor_call(ctx->number_constr, flags, dp, retv, ei, sp);
221 }
222
223 static HRESULT JSGlobal_Object(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
224         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
225 {
226     TRACE("\n");
227
228     return constructor_call(ctx->object_constr, flags, dp, retv, ei, sp);
229 }
230
231 static HRESULT JSGlobal_String(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
232         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
233 {
234     TRACE("\n");
235
236     return constructor_call(ctx->string_constr, flags, dp, retv, ei, sp);
237 }
238
239 static HRESULT JSGlobal_RegExp(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
240         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
241 {
242     TRACE("\n");
243
244     return constructor_call(ctx->regexp_constr, flags, dp, retv, ei, sp);
245 }
246
247 static HRESULT JSGlobal_ActiveXObject(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
248         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
249 {
250     TRACE("\n");
251
252     return constructor_call(ctx->activex_constr, flags, dp, retv, ei, sp);
253 }
254
255 static HRESULT JSGlobal_VBArray(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
256         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
257 {
258     TRACE("\n");
259
260     return constructor_call(ctx->vbarray_constr, flags, dp, retv, ei, sp);
261 }
262
263 static HRESULT JSGlobal_Enumerator(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
264         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
265 {
266     FIXME("\n");
267     return E_NOTIMPL;
268 }
269
270 static HRESULT JSGlobal_escape(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
271         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
272 {
273     BSTR ret, str;
274     const WCHAR *ptr;
275     DWORD len = 0;
276     HRESULT hres;
277
278     TRACE("\n");
279
280     if(!arg_cnt(dp)) {
281         if(retv) {
282             ret = SysAllocString(undefinedW);
283             if(!ret)
284                 return E_OUTOFMEMORY;
285
286             V_VT(retv) = VT_BSTR;
287             V_BSTR(retv) = ret;
288         }
289
290         return S_OK;
291     }
292
293     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
294     if(FAILED(hres))
295         return hres;
296
297     for(ptr=str; *ptr; ptr++) {
298         if(*ptr > 0xff)
299             len += 6;
300         else if(is_ecma_nonblank(*ptr))
301             len++;
302         else
303             len += 3;
304     }
305
306     ret = SysAllocStringLen(NULL, len);
307     if(!ret) {
308         SysFreeString(str);
309         return E_OUTOFMEMORY;
310     }
311
312     len = 0;
313     for(ptr=str; *ptr; ptr++) {
314         if(*ptr > 0xff) {
315             ret[len++] = '%';
316             ret[len++] = 'u';
317             ret[len++] = int_to_char(*ptr >> 12);
318             ret[len++] = int_to_char((*ptr >> 8) & 0xf);
319             ret[len++] = int_to_char((*ptr >> 4) & 0xf);
320             ret[len++] = int_to_char(*ptr & 0xf);
321         }
322         else if(is_ecma_nonblank(*ptr))
323             ret[len++] = *ptr;
324         else {
325             ret[len++] = '%';
326             ret[len++] = int_to_char(*ptr >> 4);
327             ret[len++] = int_to_char(*ptr & 0xf);
328         }
329     }
330
331     SysFreeString(str);
332
333     if(retv) {
334         V_VT(retv) = VT_BSTR;
335         V_BSTR(retv) = ret;
336     }
337     else
338         SysFreeString(ret);
339
340     return S_OK;
341 }
342
343 /* ECMA-262 3rd Edition    15.1.2.1 */
344 static HRESULT JSGlobal_eval(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
345         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
346 {
347     parser_ctx_t *parser_ctx;
348     VARIANT *arg;
349     HRESULT hres;
350
351     TRACE("\n");
352
353     if(!arg_cnt(dp)) {
354         if(retv)
355             V_VT(retv) = VT_EMPTY;
356         return S_OK;
357     }
358
359     arg = get_arg(dp, 0);
360     if(V_VT(arg) != VT_BSTR) {
361         if(retv) {
362             V_VT(retv) = VT_EMPTY;
363             return VariantCopy(retv, arg);
364         }
365         return S_OK;
366     }
367
368     if(!ctx->exec_ctx) {
369         FIXME("No active exec_ctx\n");
370         return E_UNEXPECTED;
371     }
372
373     TRACE("parsing %s\n", debugstr_w(V_BSTR(arg)));
374     hres = script_parse(ctx, V_BSTR(arg), NULL, &parser_ctx);
375     if(FAILED(hres)) {
376         WARN("parse (%s) failed: %08x\n", debugstr_w(V_BSTR(arg)), hres);
377         return throw_syntax_error(ctx, ei, hres, NULL);
378     }
379
380     hres = exec_source(ctx->exec_ctx, parser_ctx, parser_ctx->source, TRUE, ei, retv);
381     parser_release(parser_ctx);
382
383     return hres;
384 }
385
386 static HRESULT JSGlobal_isNaN(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
387         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
388 {
389     VARIANT_BOOL ret = VARIANT_FALSE;
390     VARIANT num;
391     HRESULT hres;
392
393     TRACE("\n");
394
395     if(arg_cnt(dp)) {
396         hres = to_number(ctx, get_arg(dp,0), ei, &num);
397         if(FAILED(hres))
398             return hres;
399
400         if(V_VT(&num) == VT_R8 && isnan(V_R8(&num)))
401             ret = VARIANT_TRUE;
402     }else {
403         ret = VARIANT_TRUE;
404     }
405
406     if(retv) {
407         V_VT(retv) = VT_BOOL;
408         V_BOOL(retv) = ret;
409     }
410     return S_OK;
411 }
412
413 static HRESULT JSGlobal_isFinite(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
414         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
415 {
416     VARIANT_BOOL ret = VARIANT_FALSE;
417     HRESULT hres;
418
419     TRACE("\n");
420
421     if(arg_cnt(dp)) {
422         VARIANT num;
423
424         hres = to_number(ctx, get_arg(dp,0), ei, &num);
425         if(FAILED(hres))
426             return hres;
427
428         if(V_VT(&num) != VT_R8 || (!isinf(V_R8(&num)) && !isnan(V_R8(&num))))
429             ret = VARIANT_TRUE;
430     }
431
432     if(retv) {
433         V_VT(retv) = VT_BOOL;
434         V_BOOL(retv) = ret;
435     }
436     return S_OK;
437 }
438
439 static INT char_to_int(WCHAR c)
440 {
441     if('0' <= c && c <= '9')
442         return c - '0';
443     if('a' <= c && c <= 'z')
444         return c - 'a' + 10;
445     if('A' <= c && c <= 'Z')
446         return c - 'A' + 10;
447     return 100;
448 }
449
450 static HRESULT JSGlobal_parseInt(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
451         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
452 {
453     DOUBLE ret = 0.0;
454     INT radix=10, i;
455     WCHAR *ptr;
456     BOOL neg = FALSE;
457     BSTR str;
458     HRESULT hres;
459
460     if(!arg_cnt(dp)) {
461         if(retv) num_set_nan(retv);
462         return S_OK;
463     }
464
465     if(arg_cnt(dp) >= 2) {
466         hres = to_int32(ctx, get_arg(dp, 1), ei, &radix);
467         if(FAILED(hres))
468             return hres;
469
470         if(!radix) {
471             radix = 10;
472         }else if(radix < 2 || radix > 36) {
473             WARN("radix %d out of range\n", radix);
474             return E_FAIL;
475         }
476     }
477
478     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
479     if(FAILED(hres))
480         return hres;
481
482     for(ptr = str; isspaceW(*ptr); ptr++);
483
484     switch(*ptr) {
485     case '+':
486         ptr++;
487         break;
488     case '-':
489         neg = TRUE;
490         ptr++;
491         break;
492     case '0':
493         ptr++;
494         if(*ptr == 'x' || *ptr == 'X') {
495             radix = 16;
496             ptr++;
497         }
498     }
499
500     while(*ptr) {
501         i = char_to_int(*ptr++);
502         if(i > radix)
503             break;
504
505         ret = ret*radix + i;
506     }
507
508     SysFreeString(str);
509
510     if(neg)
511         ret = -ret;
512
513     if(retv)
514         num_set_val(retv, ret);
515     return S_OK;
516 }
517
518 static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
519         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
520 {
521     LONGLONG d = 0, hlp;
522     int exp = 0;
523     VARIANT *arg;
524     WCHAR *str;
525     BSTR val_str = NULL;
526     BOOL ret_nan = TRUE, positive = TRUE;
527     HRESULT hres;
528
529     if(!arg_cnt(dp)) {
530         if(retv)
531             num_set_nan(retv);
532         return S_OK;
533     }
534
535     arg = get_arg(dp, 0);
536     hres = to_string(ctx, arg, ei, &val_str);
537     if(FAILED(hres))
538         return hres;
539
540     str = val_str;
541
542     while(isspaceW(*str)) str++;
543
544     if(*str == '+')
545         str++;
546     else if(*str == '-') {
547         positive = FALSE;
548         str++;
549     }
550
551     if(isdigitW(*str))
552         ret_nan = FALSE;
553
554     while(isdigitW(*str)) {
555         hlp = d*10 + *(str++) - '0';
556         if(d>LONGLONG_MAX/10 || hlp<0) {
557             exp++;
558             break;
559         }
560         else
561             d = hlp;
562     }
563     while(isdigitW(*str)) {
564         exp++;
565         str++;
566     }
567
568     if(*str == '.') str++;
569
570     if(isdigitW(*str))
571         ret_nan = FALSE;
572
573     while(isdigitW(*str)) {
574         hlp = d*10 + *(str++) - '0';
575         if(d>LONGLONG_MAX/10 || hlp<0)
576             break;
577
578         d = hlp;
579         exp--;
580     }
581     while(isdigitW(*str))
582         str++;
583
584     if(*str && !ret_nan && (*str=='e' || *str=='E')) {
585         int sign = 1, e = 0;
586
587         str++;
588         if(*str == '+')
589             str++;
590         else if(*str == '-') {
591             sign = -1;
592             str++;
593         }
594
595         while(isdigitW(*str)) {
596             if(e>INT_MAX/10 || (e = e*10 + *str++ - '0')<0)
597                 e = INT_MAX;
598         }
599         e *= sign;
600
601         if(exp<0 && e<0 && exp+e>0) exp = INT_MIN;
602         else if(exp>0 && e>0 && exp+e<0) exp = INT_MAX;
603         else exp += e;
604     }
605
606     SysFreeString(val_str);
607
608     if(ret_nan) {
609         if(retv)
610             num_set_nan(retv);
611         return S_OK;
612     }
613
614     V_VT(retv) = VT_R8;
615     V_R8(retv) = (double)(positive?d:-d)*pow(10, exp);
616     return S_OK;
617 }
618
619 static inline int hex_to_int(const WCHAR wch) {
620     if(toupperW(wch)>='A' && toupperW(wch)<='F') return toupperW(wch)-'A'+10;
621     if(isdigitW(wch)) return wch-'0';
622     return -1;
623 }
624
625 static HRESULT JSGlobal_unescape(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
626         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
627 {
628     BSTR ret, str;
629     const WCHAR *ptr;
630     DWORD len = 0;
631     HRESULT hres;
632
633     TRACE("\n");
634
635     if(!arg_cnt(dp)) {
636         if(retv) {
637             ret = SysAllocString(undefinedW);
638             if(!ret)
639                 return E_OUTOFMEMORY;
640
641             V_VT(retv) = VT_BSTR;
642             V_BSTR(retv) = ret;
643         }
644
645         return S_OK;
646     }
647
648     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
649     if(FAILED(hres))
650         return hres;
651
652     for(ptr=str; *ptr; ptr++) {
653         if(*ptr == '%') {
654             if(hex_to_int(*(ptr+1))!=-1 && hex_to_int(*(ptr+2))!=-1)
655                 ptr += 2;
656             else if(*(ptr+1)=='u' && hex_to_int(*(ptr+2))!=-1 && hex_to_int(*(ptr+3))!=-1
657                     && hex_to_int(*(ptr+4))!=-1 && hex_to_int(*(ptr+5))!=-1)
658                 ptr += 5;
659         }
660
661         len++;
662     }
663
664     ret = SysAllocStringLen(NULL, len);
665     if(!ret) {
666         SysFreeString(str);
667         return E_OUTOFMEMORY;
668     }
669
670     len = 0;
671     for(ptr=str; *ptr; ptr++) {
672         if(*ptr == '%') {
673             if(hex_to_int(*(ptr+1))!=-1 && hex_to_int(*(ptr+2))!=-1) {
674                 ret[len] = (hex_to_int(*(ptr+1))<<4) + hex_to_int(*(ptr+2));
675                 ptr += 2;
676             }
677             else if(*(ptr+1)=='u' && hex_to_int(*(ptr+2))!=-1 && hex_to_int(*(ptr+3))!=-1
678                     && hex_to_int(*(ptr+4))!=-1 && hex_to_int(*(ptr+5))!=-1) {
679                 ret[len] = (hex_to_int(*(ptr+2))<<12) + (hex_to_int(*(ptr+3))<<8)
680                     + (hex_to_int(*(ptr+4))<<4) + hex_to_int(*(ptr+5));
681                 ptr += 5;
682             }
683             else
684                 ret[len] = *ptr;
685         }
686         else
687             ret[len] = *ptr;
688
689         len++;
690     }
691
692     SysFreeString(str);
693
694     if(retv) {
695         V_VT(retv) = VT_BSTR;
696         V_BSTR(retv) = ret;
697     }
698     else
699         SysFreeString(ret);
700
701     return S_OK;
702 }
703
704 static HRESULT JSGlobal_GetObject(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
705         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
706 {
707     FIXME("\n");
708     return E_NOTIMPL;
709 }
710
711 static HRESULT JSGlobal_ScriptEngine(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
712         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
713 {
714     static const WCHAR JScriptW[] = {'J','S','c','r','i','p','t',0};
715
716     TRACE("\n");
717
718     if(retv) {
719         BSTR ret;
720
721         ret = SysAllocString(JScriptW);
722         if(!ret)
723             return E_OUTOFMEMORY;
724
725         V_VT(retv) = VT_BSTR;
726         V_BSTR(retv) = ret;
727     }
728
729     return S_OK;
730 }
731
732 static HRESULT JSGlobal_ScriptEngineMajorVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
733         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
734 {
735     TRACE("\n");
736
737     if(retv) {
738         V_VT(retv) = VT_I4;
739         V_I4(retv) = JSCRIPT_MAJOR_VERSION;
740     }
741     return S_OK;
742 }
743
744 static HRESULT JSGlobal_ScriptEngineMinorVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
745         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
746 {
747     TRACE("\n");
748
749     if(retv) {
750         V_VT(retv) = VT_I4;
751         V_I4(retv) = JSCRIPT_MINOR_VERSION;
752     }
753     return S_OK;
754 }
755
756 static HRESULT JSGlobal_ScriptEngineBuildVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
757         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
758 {
759     TRACE("\n");
760
761     if(retv) {
762         V_VT(retv) = VT_I4;
763         V_I4(retv) = JSCRIPT_BUILD_VERSION;
764     }
765     return S_OK;
766 }
767
768 static HRESULT JSGlobal_CollectGarbage(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
769         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
770 {
771     FIXME("\n");
772     return E_NOTIMPL;
773 }
774
775 static HRESULT JSGlobal_encodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
776         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
777 {
778     const WCHAR *ptr;
779     DWORD len = 0, i;
780     char buf[4];
781     BSTR str, ret;
782     WCHAR *rptr;
783     HRESULT hres;
784
785     TRACE("\n");
786
787     if(!arg_cnt(dp)) {
788         if(retv) {
789             ret = SysAllocString(undefinedW);
790             if(!ret)
791                 return E_OUTOFMEMORY;
792
793             V_VT(retv) = VT_BSTR;
794             V_BSTR(retv) = ret;
795         }
796
797         return S_OK;
798     }
799
800     hres = to_string(ctx, get_arg(dp,0), ei, &str);
801     if(FAILED(hres))
802         return hres;
803
804     for(ptr = str; *ptr; ptr++) {
805         if(is_uri_unescaped(*ptr) || is_uri_reserved(*ptr) || *ptr == '#') {
806             len++;
807         }else {
808             i = WideCharToMultiByte(CP_UTF8, 0, ptr, 1, NULL, 0, NULL, NULL)*3;
809             if(!i) {
810                 SysFreeString(str);
811                 return throw_uri_error(ctx, ei, JS_E_INVALID_URI_CHAR, NULL);
812             }
813
814             len += i;
815         }
816     }
817
818     rptr = ret = SysAllocStringLen(NULL, len);
819     if(!ret) {
820         SysFreeString(str);
821         return E_OUTOFMEMORY;
822     }
823
824     for(ptr = str; *ptr; ptr++) {
825         if(is_uri_unescaped(*ptr) || is_uri_reserved(*ptr) || *ptr == '#') {
826             *rptr++ = *ptr;
827         }else {
828             len = WideCharToMultiByte(CP_UTF8, 0, ptr, 1, buf, sizeof(buf), NULL, NULL);
829             for(i=0; i<len; i++) {
830                 *rptr++ = '%';
831                 *rptr++ = int_to_char((BYTE)buf[i] >> 4);
832                 *rptr++ = int_to_char(buf[i] & 0x0f);
833             }
834         }
835     }
836
837     SysFreeString(str);
838
839     TRACE("%s -> %s\n", debugstr_w(str), debugstr_w(ret));
840     if(retv) {
841         V_VT(retv) = VT_BSTR;
842         V_BSTR(retv) = ret;
843     }else {
844         SysFreeString(ret);
845     }
846     return S_OK;
847 }
848
849 static HRESULT JSGlobal_decodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
850         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
851 {
852     FIXME("\n");
853     return E_NOTIMPL;
854 }
855
856 static HRESULT JSGlobal_encodeURIComponent(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
857         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
858 {
859     BSTR str, ret;
860     char buf[4];
861     const WCHAR *ptr;
862     DWORD len = 0, size, i;
863     HRESULT hres;
864
865     TRACE("\n");
866
867     if(!arg_cnt(dp)) {
868         if(retv) {
869             ret = SysAllocString(undefinedW);
870             if(!ret)
871                 return E_OUTOFMEMORY;
872
873             V_VT(retv) = VT_BSTR;
874             V_BSTR(retv) = ret;
875         }
876
877         return S_OK;
878     }
879
880     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
881     if(FAILED(hres))
882         return hres;
883
884     for(ptr=str; *ptr; ptr++) {
885         if(is_uri_unescaped(*ptr))
886             len++;
887         else {
888             size = WideCharToMultiByte(CP_UTF8, 0, ptr, 1, NULL, 0, NULL, NULL);
889             if(!size) {
890                 SysFreeString(str);
891                 FIXME("throw Error\n");
892                 return E_FAIL;
893             }
894             len += size*3;
895         }
896     }
897
898     ret = SysAllocStringLen(NULL, len);
899     if(!ret) {
900         SysFreeString(str);
901         return E_OUTOFMEMORY;
902     }
903
904     len = 0;
905     for(ptr=str; *ptr; ptr++) {
906         if(is_uri_unescaped(*ptr))
907             ret[len++] = *ptr;
908         else {
909             size = WideCharToMultiByte(CP_UTF8, 0, ptr, 1, buf, sizeof(buf), NULL, NULL);
910             for(i=0; i<size; i++) {
911                 ret[len++] = '%';
912                 ret[len++] = int_to_char((BYTE)buf[i] >> 4);
913                 ret[len++] = int_to_char(buf[i] & 0x0f);
914             }
915         }
916     }
917
918     SysFreeString(str);
919
920     if(retv) {
921         V_VT(retv) = VT_BSTR;
922         V_BSTR(retv) = ret;
923     } else {
924         SysFreeString(ret);
925     }
926
927     return S_OK;
928 }
929
930 /* ECMA-262 3rd Edition    15.1.3.2 */
931 static HRESULT JSGlobal_decodeURIComponent(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
932         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
933 {
934     BSTR str, ret;
935     const WCHAR *ptr;
936     WCHAR *out_ptr;
937     DWORD len = 0;
938     HRESULT hres;
939
940     TRACE("\n");
941
942     if(!arg_cnt(dp)) {
943         if(retv) {
944             ret = SysAllocString(undefinedW);
945             if(!ret)
946                 return E_OUTOFMEMORY;
947
948             V_VT(retv) = VT_BSTR;
949             V_BSTR(retv) = ret;
950         }
951
952         return S_OK;
953     }
954
955     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
956     if(FAILED(hres))
957         return hres;
958
959     ptr = str;
960     while(*ptr) {
961         if(*ptr == '%') {
962             char octets[4];
963             unsigned char mask = 0x80;
964             int i, size, num_bytes = 0;
965             if(hex_to_int(*(ptr+1)) < 0 || hex_to_int(*(ptr+2)) < 0) {
966                 FIXME("Throw URIError: Invalid hex sequence\n");
967                 SysFreeString(str);
968                 return E_FAIL;
969             }
970             octets[0] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
971             ptr += 3;
972             while(octets[0] & mask) {
973                 mask = mask >> 1;
974                 ++num_bytes;
975             }
976             if(num_bytes == 1 || num_bytes > 4) {
977                 FIXME("Throw URIError: Invalid initial UTF character\n");
978                 SysFreeString(str);
979                 return E_FAIL;
980             }
981             for(i = 1; i < num_bytes; ++i) {
982                 if(*ptr != '%'){
983                     FIXME("Throw URIError: Incomplete UTF sequence\n");
984                     SysFreeString(str);
985                     return E_FAIL;
986                 }
987                 if(hex_to_int(*(ptr+1)) < 0 || hex_to_int(*(ptr+2)) < 0) {
988                     FIXME("Throw URIError: Invalid hex sequence\n");
989                     SysFreeString(str);
990                     return E_FAIL;
991                 }
992                 octets[i] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
993                 ptr += 3;
994             }
995             size = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, octets,
996                     num_bytes ? num_bytes : 1, NULL, 0);
997             if(size == 0) {
998                 FIXME("Throw URIError: Invalid UTF sequence\n");
999                 SysFreeString(str);
1000                 return E_FAIL;
1001             }
1002             len += size;
1003         }else {
1004             ++ptr;
1005             ++len;
1006         }
1007     }
1008
1009     out_ptr = ret = SysAllocStringLen(NULL, len);
1010     if(!ret) {
1011         SysFreeString(str);
1012         return E_OUTOFMEMORY;
1013     }
1014
1015     ptr = str;
1016     while(*ptr) {
1017         if(*ptr == '%') {
1018             char octets[4];
1019             unsigned char mask = 0x80;
1020             int i, size, num_bytes = 0;
1021             octets[0] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
1022             ptr += 3;
1023             while(octets[0] & mask) {
1024                 mask = mask >> 1;
1025                 ++num_bytes;
1026             }
1027             for(i = 1; i < num_bytes; ++i) {
1028                 octets[i] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
1029                 ptr += 3;
1030             }
1031             size = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, octets,
1032                     num_bytes ? num_bytes : 1, out_ptr, len);
1033             len -= size;
1034             out_ptr += size;
1035         }else {
1036             *out_ptr++ = *ptr++;
1037             --len;
1038         }
1039     }
1040
1041     SysFreeString(str);
1042
1043     if(retv) {
1044         V_VT(retv) = VT_BSTR;
1045         V_BSTR(retv) = ret;
1046     }else {
1047         SysFreeString(ret);
1048     }
1049
1050     return S_OK;
1051 }
1052
1053 static const builtin_prop_t JSGlobal_props[] = {
1054     {ActiveXObjectW,             JSGlobal_ActiveXObject,             PROPF_CONSTR|1},
1055     {ArrayW,                     JSGlobal_Array,                     PROPF_CONSTR|1},
1056     {BooleanW,                   JSGlobal_Boolean,                   PROPF_CONSTR|1},
1057     {CollectGarbageW,            JSGlobal_CollectGarbage,            PROPF_METHOD},
1058     {DateW,                      JSGlobal_Date,                      PROPF_CONSTR|7},
1059     {EnumeratorW,                JSGlobal_Enumerator,                PROPF_METHOD|7},
1060     {ErrorW,                     JSGlobal_Error,                     PROPF_CONSTR|1},
1061     {EvalErrorW,                 JSGlobal_EvalError,                 PROPF_CONSTR|1},
1062     {FunctionW,                  JSGlobal_Function,                  PROPF_CONSTR|1},
1063     {_GetObjectW,                JSGlobal_GetObject,                 PROPF_METHOD|2},
1064     {NumberW,                    JSGlobal_Number,                    PROPF_CONSTR|1},
1065     {ObjectW,                    JSGlobal_Object,                    PROPF_CONSTR|1},
1066     {RangeErrorW,                JSGlobal_RangeError,                PROPF_CONSTR|1},
1067     {ReferenceErrorW,            JSGlobal_ReferenceError,            PROPF_CONSTR|1},
1068     {RegExpW,                    JSGlobal_RegExp,                    PROPF_CONSTR|2},
1069     {ScriptEngineW,              JSGlobal_ScriptEngine,              PROPF_METHOD},
1070     {ScriptEngineBuildVersionW,  JSGlobal_ScriptEngineBuildVersion,  PROPF_METHOD},
1071     {ScriptEngineMajorVersionW,  JSGlobal_ScriptEngineMajorVersion,  PROPF_METHOD},
1072     {ScriptEngineMinorVersionW,  JSGlobal_ScriptEngineMinorVersion,  PROPF_METHOD},
1073     {StringW,                    JSGlobal_String,                    PROPF_CONSTR|1},
1074     {SyntaxErrorW,               JSGlobal_SyntaxError,               PROPF_CONSTR|1},
1075     {TypeErrorW,                 JSGlobal_TypeError,                 PROPF_CONSTR|1},
1076     {URIErrorW,                  JSGlobal_URIError,                  PROPF_CONSTR|1},
1077     {VBArrayW,                   JSGlobal_VBArray,                   PROPF_CONSTR|1},
1078     {decodeURIW,                 JSGlobal_decodeURI,                 PROPF_METHOD|1},
1079     {decodeURIComponentW,        JSGlobal_decodeURIComponent,        PROPF_METHOD|1},
1080     {encodeURIW,                 JSGlobal_encodeURI,                 PROPF_METHOD|1},
1081     {encodeURIComponentW,        JSGlobal_encodeURIComponent,        PROPF_METHOD|1},
1082     {escapeW,                    JSGlobal_escape,                    PROPF_METHOD|1},
1083     {evalW,                      JSGlobal_eval,                      PROPF_METHOD|1},
1084     {isFiniteW,                  JSGlobal_isFinite,                  PROPF_METHOD|1},
1085     {isNaNW,                     JSGlobal_isNaN,                     PROPF_METHOD|1},
1086     {parseFloatW,                JSGlobal_parseFloat,                PROPF_METHOD|1},
1087     {parseIntW,                  JSGlobal_parseInt,                  PROPF_METHOD|2},
1088     {unescapeW,                  JSGlobal_unescape,                  PROPF_METHOD|1}
1089 };
1090
1091 static const builtin_info_t JSGlobal_info = {
1092     JSCLASS_GLOBAL,
1093     {NULL, NULL, 0},
1094     sizeof(JSGlobal_props)/sizeof(*JSGlobal_props),
1095     JSGlobal_props,
1096     NULL,
1097     NULL
1098 };
1099
1100 static HRESULT init_constructors(script_ctx_t *ctx, jsdisp_t *object_prototype)
1101 {
1102     HRESULT hres;
1103
1104     hres = init_function_constr(ctx, object_prototype);
1105     if(FAILED(hres))
1106         return hres;
1107
1108     hres = create_object_constr(ctx, object_prototype, &ctx->object_constr);
1109     if(FAILED(hres))
1110         return hres;
1111
1112     hres = create_activex_constr(ctx, &ctx->activex_constr);
1113     if(FAILED(hres))
1114         return hres;
1115
1116     hres = create_array_constr(ctx, object_prototype, &ctx->array_constr);
1117     if(FAILED(hres))
1118         return hres;
1119
1120     hres = create_bool_constr(ctx, object_prototype, &ctx->bool_constr);
1121     if(FAILED(hres))
1122         return hres;
1123
1124     hres = create_date_constr(ctx, object_prototype, &ctx->date_constr);
1125     if(FAILED(hres))
1126         return hres;
1127
1128     hres = init_error_constr(ctx, object_prototype);
1129     if(FAILED(hres))
1130         return hres;
1131
1132     hres = create_number_constr(ctx, object_prototype, &ctx->number_constr);
1133     if(FAILED(hres))
1134         return hres;
1135
1136     hres = create_regexp_constr(ctx, object_prototype, &ctx->regexp_constr);
1137     if(FAILED(hres))
1138         return hres;
1139
1140     hres = create_string_constr(ctx, object_prototype, &ctx->string_constr);
1141     if(FAILED(hres))
1142         return hres;
1143
1144     hres = create_vbarray_constr(ctx, object_prototype, &ctx->vbarray_constr);
1145     if(FAILED(hres))
1146         return hres;
1147
1148     return S_OK;
1149 }
1150
1151 HRESULT init_global(script_ctx_t *ctx)
1152 {
1153     jsdisp_t *math, *object_prototype;
1154     VARIANT var;
1155     HRESULT hres;
1156
1157     if(ctx->global)
1158         return S_OK;
1159
1160     hres = create_object_prototype(ctx, &object_prototype);
1161     if(FAILED(hres))
1162         return hres;
1163
1164     hres = init_constructors(ctx, object_prototype);
1165     jsdisp_release(object_prototype);
1166     if(FAILED(hres))
1167         return hres;
1168
1169     hres = create_dispex(ctx, &JSGlobal_info, NULL, &ctx->global);
1170     if(FAILED(hres))
1171         return hres;
1172
1173     hres = create_math(ctx, &math);
1174     if(FAILED(hres))
1175         return hres;
1176
1177     var_set_jsdisp(&var, math);
1178     hres = jsdisp_propput_name(ctx->global, MathW, &var, NULL/*FIXME*/, NULL/*FIXME*/);
1179     jsdisp_release(math);
1180     if(FAILED(hres))
1181         return hres;
1182
1183     V_VT(&var) = VT_EMPTY;
1184     hres = jsdisp_propput_name(ctx->global, undefinedW, &var, NULL/*FIXME*/, NULL/*FIXME*/);
1185     if(FAILED(hres))
1186         return hres;
1187
1188     num_set_nan(&var);
1189     hres = jsdisp_propput_name(ctx->global, NaNW, &var, NULL/*FIXME*/, NULL/*FIXME*/);
1190     if(FAILED(hres))
1191         return hres;
1192
1193     num_set_inf(&var, TRUE);
1194     hres = jsdisp_propput_name(ctx->global, InfinityW, &var, NULL/*FIXME*/, NULL/*FIXME*/);
1195     return hres;
1196 }