jscript: Fixed Global functions lengths.
[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 static WCHAR int_to_char(int i)
103 {
104     if(i < 10)
105         return '0'+i;
106     return 'A'+i-10;
107 }
108
109 static HRESULT constructor_call(DispatchEx *constr, WORD flags, DISPPARAMS *dp,
110         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
111 {
112     if(flags != DISPATCH_PROPERTYGET)
113         return jsdisp_call_value(constr, flags, dp, retv, ei, sp);
114
115     V_VT(retv) = VT_DISPATCH;
116     V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(constr);
117     IDispatchEx_AddRef(_IDispatchEx_(constr));
118     return S_OK;
119 }
120
121 static HRESULT JSGlobal_NaN(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
122         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
123 {
124     TRACE("\n");
125
126     switch(flags) {
127     case DISPATCH_PROPERTYGET:
128         num_set_nan(retv);
129         break;
130
131     default:
132         FIXME("unimplemented flags %x\n", flags);
133         return E_NOTIMPL;
134     }
135
136     return S_OK;
137 }
138
139 static HRESULT JSGlobal_Infinity(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
140         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
141 {
142     TRACE("\n");
143
144     switch(flags) {
145     case DISPATCH_PROPERTYGET:
146         num_set_inf(retv, TRUE);
147         break;
148
149     default:
150         FIXME("unimplemented flags %x\n", flags);
151         return E_NOTIMPL;
152     }
153
154     return S_OK;
155 }
156
157 static HRESULT JSGlobal_Array(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
158         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
159 {
160     TRACE("\n");
161
162     return constructor_call(ctx->array_constr, flags, dp, retv, ei, sp);
163 }
164
165 static HRESULT JSGlobal_Boolean(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
166         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
167 {
168     TRACE("\n");
169
170     return constructor_call(ctx->bool_constr, flags, dp, retv, ei, sp);
171 }
172
173 static HRESULT JSGlobal_Date(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
174         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
175 {
176     TRACE("\n");
177
178     return constructor_call(ctx->date_constr, flags, dp, retv, ei, sp);
179 }
180
181 static HRESULT JSGlobal_Error(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
182         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
183 {
184     TRACE("\n");
185
186     return constructor_call(ctx->error_constr, flags, dp, retv, ei, sp);
187 }
188
189 static HRESULT JSGlobal_EvalError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
190         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
191 {
192     TRACE("\n");
193
194     return constructor_call(ctx->eval_error_constr, flags, dp, retv, ei, sp);
195 }
196
197 static HRESULT JSGlobal_RangeError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
198         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
199 {
200     TRACE("\n");
201
202     return constructor_call(ctx->range_error_constr, flags, dp, retv, ei, sp);
203 }
204
205 static HRESULT JSGlobal_ReferenceError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
206         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
207 {
208     TRACE("\n");
209
210     return constructor_call(ctx->reference_error_constr, flags, dp, retv, ei, sp);
211 }
212
213 static HRESULT JSGlobal_SyntaxError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
214         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
215 {
216     TRACE("\n");
217
218     return constructor_call(ctx->syntax_error_constr, flags, dp, retv, ei, sp);
219 }
220
221 static HRESULT JSGlobal_TypeError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
222         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
223 {
224     TRACE("\n");
225
226     return constructor_call(ctx->type_error_constr, flags, dp, retv, ei, sp);
227 }
228
229 static HRESULT JSGlobal_URIError(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
230         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
231 {
232     TRACE("\n");
233
234     return constructor_call(ctx->uri_error_constr, flags, dp, retv, ei, sp);
235 }
236
237 static HRESULT JSGlobal_Function(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
238         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
239 {
240     TRACE("\n");
241
242     return constructor_call(ctx->function_constr, flags, dp, retv, ei, sp);
243 }
244
245 static HRESULT JSGlobal_Number(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
246         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
247 {
248     TRACE("\n");
249
250     return constructor_call(ctx->number_constr, flags, dp, retv, ei, sp);
251 }
252
253 static HRESULT JSGlobal_Object(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
254         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
255 {
256     TRACE("\n");
257
258     return constructor_call(ctx->object_constr, flags, dp, retv, ei, sp);
259 }
260
261 static HRESULT JSGlobal_String(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
262         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
263 {
264     TRACE("\n");
265
266     return constructor_call(ctx->string_constr, flags, dp, retv, ei, sp);
267 }
268
269 static HRESULT JSGlobal_RegExp(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
270         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
271 {
272     TRACE("\n");
273
274     return constructor_call(ctx->regexp_constr, flags, dp, retv, ei, sp);
275 }
276
277 static HRESULT JSGlobal_ActiveXObject(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
278         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
279 {
280     TRACE("\n");
281
282     return constructor_call(ctx->activex_constr, flags, dp, retv, ei, sp);
283 }
284
285 static HRESULT JSGlobal_VBArray(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
286         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
287 {
288     FIXME("\n");
289     return E_NOTIMPL;
290 }
291
292 static HRESULT JSGlobal_Enumerator(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
293         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
294 {
295     FIXME("\n");
296     return E_NOTIMPL;
297 }
298
299 static HRESULT JSGlobal_escape(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
300         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
301 {
302     BSTR ret, str;
303     const WCHAR *ptr;
304     DWORD len = 0;
305     HRESULT hres;
306
307     TRACE("\n");
308
309     if(!arg_cnt(dp)) {
310         if(retv) {
311             ret = SysAllocString(undefinedW);
312             if(!ret)
313                 return E_OUTOFMEMORY;
314
315             V_VT(retv) = VT_BSTR;
316             V_BSTR(retv) = ret;
317         }
318
319         return S_OK;
320     }
321
322     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
323     if(FAILED(hres))
324         return hres;
325
326     for(ptr=str; *ptr; ptr++) {
327         if(*ptr > 0xff)
328             len += 6;
329         else if(isalnum((char)*ptr) || *ptr=='*' || *ptr=='@' || *ptr=='-'
330                 || *ptr=='_' || *ptr=='+' || *ptr=='.' || *ptr=='/')
331             len++;
332         else
333             len += 3;
334     }
335
336     ret = SysAllocStringLen(NULL, len);
337     if(!ret)
338         return E_OUTOFMEMORY;
339
340     len = 0;
341     for(ptr=str; *ptr; ptr++) {
342         if(*ptr > 0xff) {
343             ret[len++] = '%';
344             ret[len++] = 'u';
345             ret[len++] = int_to_char(*ptr >> 12);
346             ret[len++] = int_to_char((*ptr >> 8) & 0xf);
347             ret[len++] = int_to_char((*ptr >> 4) & 0xf);
348             ret[len++] = int_to_char(*ptr & 0xf);
349         }
350         else if(isalnum((char)*ptr) || *ptr=='*' || *ptr=='@' || *ptr=='-'
351                 || *ptr=='_' || *ptr=='+' || *ptr=='.' || *ptr=='/')
352             ret[len++] = *ptr;
353         else {
354             ret[len++] = '%';
355             ret[len++] = int_to_char(*ptr >> 4);
356             ret[len++] = int_to_char(*ptr & 0xf);
357         }
358     }
359
360     if(retv) {
361         V_VT(retv) = VT_BSTR;
362         V_BSTR(retv) = ret;
363     }
364     else
365         SysFreeString(ret);
366
367     return S_OK;
368 }
369
370 /* ECMA-262 3rd Edition    15.1.2.1 */
371 static HRESULT JSGlobal_eval(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
372         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
373 {
374     parser_ctx_t *parser_ctx;
375     VARIANT *arg;
376     HRESULT hres;
377
378     TRACE("\n");
379
380     if(!arg_cnt(dp)) {
381         if(retv)
382             V_VT(retv) = VT_EMPTY;
383         return S_OK;
384     }
385
386     arg = get_arg(dp, 0);
387     if(V_VT(arg) != VT_BSTR) {
388         if(retv) {
389             V_VT(retv) = VT_EMPTY;
390             return VariantCopy(retv, arg);
391         }
392         return S_OK;
393     }
394
395     if(!ctx->exec_ctx) {
396         FIXME("No active exec_ctx\n");
397         return E_UNEXPECTED;
398     }
399
400     TRACE("parsing %s\n", debugstr_w(V_BSTR(arg)));
401     hres = script_parse(ctx, V_BSTR(arg), NULL, &parser_ctx);
402     if(FAILED(hres)) {
403         WARN("parse (%s) failed: %08x\n", debugstr_w(V_BSTR(arg)), hres);
404         return throw_syntax_error(ctx, ei, hres, NULL);
405     }
406
407     hres = exec_source(ctx->exec_ctx, parser_ctx, parser_ctx->source, ei, retv);
408     parser_release(parser_ctx);
409
410     return hres;
411 }
412
413 static HRESULT JSGlobal_isNaN(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     VARIANT num;
418     HRESULT hres;
419
420     TRACE("\n");
421
422     if(arg_cnt(dp)) {
423         hres = to_number(ctx, get_arg(dp,0), ei, &num);
424         if(FAILED(hres))
425             return hres;
426
427         if(V_VT(&num) == VT_R8 && isnan(V_R8(&num)))
428             ret = VARIANT_TRUE;
429     }else {
430         ret = VARIANT_TRUE;
431     }
432
433     if(retv) {
434         V_VT(retv) = VT_BOOL;
435         V_BOOL(retv) = ret;
436     }
437     return S_OK;
438 }
439
440 static HRESULT JSGlobal_isFinite(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
441         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
442 {
443     VARIANT_BOOL ret = VARIANT_FALSE;
444     HRESULT hres;
445
446     TRACE("\n");
447
448     if(arg_cnt(dp)) {
449         VARIANT num;
450
451         hres = to_number(ctx, get_arg(dp,0), ei, &num);
452         if(FAILED(hres))
453             return hres;
454
455         if(V_VT(&num) != VT_R8 || (!isinf(V_R8(&num)) && !isnan(V_R8(&num))))
456             ret = VARIANT_TRUE;
457     }
458
459     if(retv) {
460         V_VT(retv) = VT_BOOL;
461         V_BOOL(retv) = ret;
462     }
463     return S_OK;
464 }
465
466 static INT char_to_int(WCHAR c)
467 {
468     if('0' <= c && c <= '9')
469         return c - '0';
470     if('a' <= c && c <= 'z')
471         return c - 'a' + 10;
472     if('A' <= c && c <= 'Z')
473         return c - 'A' + 10;
474     return 100;
475 }
476
477 static HRESULT JSGlobal_parseInt(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
478         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
479 {
480     DOUBLE ret = 0.0;
481     INT radix=10, i;
482     WCHAR *ptr;
483     BOOL neg = FALSE;
484     BSTR str;
485     HRESULT hres;
486
487     if(!arg_cnt(dp)) {
488         if(retv) num_set_nan(retv);
489         return S_OK;
490     }
491
492     if(arg_cnt(dp) >= 2) {
493         hres = to_int32(ctx, get_arg(dp, 1), ei, &radix);
494         if(FAILED(hres))
495             return hres;
496
497         if(!radix) {
498             radix = 10;
499         }else if(radix < 2 || radix > 36) {
500             WARN("radix %d out of range\n", radix);
501             return E_FAIL;
502         }
503     }
504
505     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
506     if(FAILED(hres))
507         return hres;
508
509     for(ptr = str; isspaceW(*ptr); ptr++);
510
511     switch(*ptr) {
512     case '+':
513         ptr++;
514         break;
515     case '-':
516         neg = TRUE;
517         ptr++;
518         break;
519     case '0':
520         ptr++;
521         if(*ptr == 'x' || *ptr == 'X') {
522             radix = 16;
523             ptr++;
524         }
525     }
526
527     while(*ptr) {
528         i = char_to_int(*ptr++);
529         if(i > radix)
530             break;
531
532         ret = ret*radix + i;
533     }
534
535     SysFreeString(str);
536
537     if(neg)
538         ret = -ret;
539
540     if(retv)
541         num_set_val(retv, ret);
542     return S_OK;
543 }
544
545 static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
546         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
547 {
548     LONGLONG d = 0, hlp;
549     int exp = 0, length;
550     VARIANT *arg;
551     WCHAR *str;
552     BSTR val_str = NULL;
553     BOOL ret_nan = TRUE, positive = TRUE;
554     HRESULT hres;
555
556     if(!arg_cnt(dp)) {
557         if(retv)
558             num_set_nan(retv);
559         return S_OK;
560     }
561
562     arg = get_arg(dp, 0);
563     hres = to_string(ctx, arg, ei, &val_str);
564     if(FAILED(hres))
565         return hres;
566
567     str = val_str;
568     length = SysStringLen(val_str);
569
570     while(isspaceW(*str)) str++;
571
572     if(*str == '+')
573         str++;
574     else if(*str == '-') {
575         positive = FALSE;
576         str++;
577     }
578
579     if(isdigitW(*str))
580         ret_nan = FALSE;
581
582     while(isdigitW(*str)) {
583         hlp = d*10 + *(str++) - '0';
584         if(d>LONGLONG_MAX/10 || hlp<0) {
585             exp++;
586             break;
587         }
588         else
589             d = hlp;
590     }
591     while(isdigitW(*str)) {
592         exp++;
593         str++;
594     }
595
596     if(*str == '.') str++;
597
598     if(isdigitW(*str))
599         ret_nan = FALSE;
600
601     while(isdigitW(*str)) {
602         hlp = d*10 + *(str++) - '0';
603         if(d>LONGLONG_MAX/10 || hlp<0)
604             break;
605
606         d = hlp;
607         exp--;
608     }
609     while(isdigitW(*str))
610         str++;
611
612     if(*str && !ret_nan && (*str=='e' || *str=='E')) {
613         int sign = 1, e = 0;
614
615         str++;
616         if(*str == '+')
617             str++;
618         else if(*str == '-') {
619             sign = -1;
620             str++;
621         }
622
623         while(isdigitW(*str)) {
624             if(e>INT_MAX/10 || (e = e*10 + *str++ - '0')<0)
625                 e = INT_MAX;
626         }
627         e *= sign;
628
629         if(exp<0 && e<0 && exp+e>0) exp = INT_MIN;
630         else if(exp>0 && e>0 && exp+e<0) exp = INT_MAX;
631         else exp += e;
632     }
633
634     SysFreeString(val_str);
635
636     if(ret_nan) {
637         if(retv)
638             num_set_nan(retv);
639         return S_OK;
640     }
641
642     V_VT(retv) = VT_R8;
643     V_R8(retv) = (double)(positive?d:-d)*pow(10, exp);
644     return S_OK;
645 }
646
647 static inline int hex_to_int(const WCHAR wch) {
648     if(toupperW(wch)>='A' && toupperW(wch)<='F') return toupperW(wch)-'A'+10;
649     if(isdigitW(wch)) return wch-'0';
650     return -1;
651 }
652
653 static HRESULT JSGlobal_unescape(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
654         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
655 {
656     BSTR ret, str;
657     const WCHAR *ptr;
658     DWORD len = 0;
659     HRESULT hres;
660
661     TRACE("\n");
662
663     if(!arg_cnt(dp)) {
664         if(retv) {
665             ret = SysAllocString(undefinedW);
666             if(!ret)
667                 return E_OUTOFMEMORY;
668
669             V_VT(retv) = VT_BSTR;
670             V_BSTR(retv) = ret;
671         }
672
673         return S_OK;
674     }
675
676     hres = to_string(ctx, get_arg(dp, 0), ei, &str);
677     if(FAILED(hres))
678         return hres;
679
680     for(ptr=str; *ptr; ptr++) {
681         if(*ptr == '%') {
682             if(hex_to_int(*(ptr+1))!=-1 && hex_to_int(*(ptr+2))!=-1)
683                 ptr += 2;
684             else if(*(ptr+1)=='u' && hex_to_int(*(ptr+2))!=-1 && hex_to_int(*(ptr+3))!=-1
685                     && hex_to_int(*(ptr+4))!=-1 && hex_to_int(*(ptr+5))!=-1)
686                 ptr += 5;
687         }
688
689         len++;
690     }
691
692     ret = SysAllocStringLen(NULL, len);
693     if(!ret)
694         return E_OUTOFMEMORY;
695
696     len = 0;
697     for(ptr=str; *ptr; ptr++) {
698         if(*ptr == '%') {
699             if(hex_to_int(*(ptr+1))!=-1 && hex_to_int(*(ptr+2))!=-1) {
700                 ret[len] = (hex_to_int(*(ptr+1))<<4) + hex_to_int(*(ptr+2));
701                 ptr += 2;
702             }
703             else if(*(ptr+1)=='u' && hex_to_int(*(ptr+2))!=-1 && hex_to_int(*(ptr+3))!=-1
704                     && hex_to_int(*(ptr+4))!=-1 && hex_to_int(*(ptr+5))!=-1) {
705                 ret[len] = (hex_to_int(*(ptr+2))<<12) + (hex_to_int(*(ptr+3))<<8)
706                     + (hex_to_int(*(ptr+4))<<4) + hex_to_int(*(ptr+5));
707                 ptr += 5;
708             }
709             else
710                 ret[len] = *ptr;
711         }
712         else
713             ret[len] = *ptr;
714
715         len++;
716     }
717
718     if(retv) {
719         V_VT(retv) = VT_BSTR;
720         V_BSTR(retv) = ret;
721     }
722     else
723         SysFreeString(ret);
724
725     return S_OK;
726 }
727
728 static HRESULT JSGlobal_GetObject(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
729         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
730 {
731     FIXME("\n");
732     return E_NOTIMPL;
733 }
734
735 static HRESULT JSGlobal_ScriptEngine(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
736         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
737 {
738     FIXME("\n");
739     return E_NOTIMPL;
740 }
741
742 static HRESULT JSGlobal_ScriptEngineMajorVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
743         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
744 {
745     FIXME("\n");
746     return E_NOTIMPL;
747 }
748
749 static HRESULT JSGlobal_ScriptEngineMinorVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
750         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
751 {
752     FIXME("\n");
753     return E_NOTIMPL;
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     FIXME("\n");
760     return E_NOTIMPL;
761 }
762
763 static HRESULT JSGlobal_CollectGarbage(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
764         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
765 {
766     FIXME("\n");
767     return E_NOTIMPL;
768 }
769
770 static HRESULT JSGlobal_encodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
771         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
772 {
773     const WCHAR *ptr;
774     DWORD len = 0, i;
775     char buf[4];
776     BSTR str, ret;
777     WCHAR *rptr;
778     HRESULT hres;
779
780     TRACE("\n");
781
782     if(!arg_cnt(dp)) {
783         if(retv) {
784             ret = SysAllocString(undefinedW);
785             if(!ret)
786                 return E_OUTOFMEMORY;
787
788             V_VT(retv) = VT_BSTR;
789             V_BSTR(retv) = ret;
790         }
791
792         return S_OK;
793     }
794
795     hres = to_string(ctx, get_arg(dp,0), ei, &str);
796     if(FAILED(hres))
797         return hres;
798
799     for(ptr = str; *ptr; ptr++) {
800         if(is_uri_unescaped(*ptr) || is_uri_reserved(*ptr) || *ptr == '#') {
801             len++;
802         }else {
803             i = WideCharToMultiByte(CP_UTF8, 0, ptr, 1, NULL, 0, NULL, NULL)*3;
804             if(!i) {
805                 FIXME("throw URIError\n");
806                 return E_FAIL;
807             }
808
809             len += i;
810         }
811     }
812
813     rptr = ret = SysAllocStringLen(NULL, len);
814     if(!ret)
815         return E_OUTOFMEMORY;
816
817     for(ptr = str; *ptr; ptr++) {
818         if(is_uri_unescaped(*ptr) || is_uri_reserved(*ptr) || *ptr == '#') {
819             *rptr++ = *ptr;
820         }else {
821             len = WideCharToMultiByte(CP_UTF8, 0, ptr, 1, buf, sizeof(buf), NULL, NULL);
822             for(i=0; i<len; i++) {
823                 *rptr++ = '%';
824                 *rptr++ = int_to_char((BYTE)buf[i] >> 4);
825                 *rptr++ = int_to_char(buf[i] & 0x0f);
826             }
827         }
828     }
829
830     TRACE("%s -> %s\n", debugstr_w(str), debugstr_w(ret));
831     if(retv) {
832         V_VT(retv) = VT_BSTR;
833         V_BSTR(retv) = ret;
834     }else {
835         SysFreeString(ret);
836     }
837     return S_OK;
838 }
839
840 static HRESULT JSGlobal_decodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
841         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
842 {
843     FIXME("\n");
844     return E_NOTIMPL;
845 }
846
847 static HRESULT JSGlobal_encodeURIComponent(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
848         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
849 {
850     FIXME("\n");
851     return E_NOTIMPL;
852 }
853
854 static HRESULT JSGlobal_decodeURIComponent(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
855         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
856 {
857     FIXME("\n");
858     return E_NOTIMPL;
859 }
860
861 static const builtin_prop_t JSGlobal_props[] = {
862     {ActiveXObjectW,             JSGlobal_ActiveXObject,             PROPF_CONSTR|1},
863     {ArrayW,                     JSGlobal_Array,                     PROPF_CONSTR|1},
864     {BooleanW,                   JSGlobal_Boolean,                   PROPF_CONSTR|1},
865     {CollectGarbageW,            JSGlobal_CollectGarbage,            PROPF_METHOD},
866     {DateW,                      JSGlobal_Date,                      PROPF_CONSTR|7},
867     {EnumeratorW,                JSGlobal_Enumerator,                PROPF_METHOD|7},
868     {ErrorW,                     JSGlobal_Error,                     PROPF_CONSTR|1},
869     {EvalErrorW,                 JSGlobal_EvalError,                 PROPF_CONSTR|1},
870     {FunctionW,                  JSGlobal_Function,                  PROPF_CONSTR|1},
871     {_GetObjectW,                JSGlobal_GetObject,                 PROPF_METHOD|2},
872     {InfinityW,                  JSGlobal_Infinity,                  0},
873 /*  {MathW,                      JSGlobal_Math,                      0},  */
874     {NaNW,                       JSGlobal_NaN,                       0},
875     {NumberW,                    JSGlobal_Number,                    PROPF_CONSTR|1},
876     {ObjectW,                    JSGlobal_Object,                    PROPF_CONSTR|1},
877     {RangeErrorW,                JSGlobal_RangeError,                PROPF_CONSTR|1},
878     {ReferenceErrorW,            JSGlobal_ReferenceError,            PROPF_CONSTR|1},
879     {RegExpW,                    JSGlobal_RegExp,                    PROPF_CONSTR|2},
880     {ScriptEngineW,              JSGlobal_ScriptEngine,              PROPF_METHOD},
881     {ScriptEngineBuildVersionW,  JSGlobal_ScriptEngineBuildVersion,  PROPF_METHOD},
882     {ScriptEngineMajorVersionW,  JSGlobal_ScriptEngineMajorVersion,  PROPF_METHOD},
883     {ScriptEngineMinorVersionW,  JSGlobal_ScriptEngineMinorVersion,  PROPF_METHOD},
884     {StringW,                    JSGlobal_String,                    PROPF_CONSTR|1},
885     {SyntaxErrorW,               JSGlobal_SyntaxError,               PROPF_CONSTR|1},
886     {TypeErrorW,                 JSGlobal_TypeError,                 PROPF_CONSTR|1},
887     {URIErrorW,                  JSGlobal_URIError,                  PROPF_CONSTR|1},
888     {VBArrayW,                   JSGlobal_VBArray,                   PROPF_METHOD|1},
889     {decodeURIW,                 JSGlobal_decodeURI,                 PROPF_METHOD|1},
890     {decodeURIComponentW,        JSGlobal_decodeURIComponent,        PROPF_METHOD|1},
891     {encodeURIW,                 JSGlobal_encodeURI,                 PROPF_METHOD|1},
892     {encodeURIComponentW,        JSGlobal_encodeURIComponent,        PROPF_METHOD|1},
893     {escapeW,                    JSGlobal_escape,                    PROPF_METHOD|1},
894     {evalW,                      JSGlobal_eval,                      PROPF_METHOD|1},
895     {isFiniteW,                  JSGlobal_isFinite,                  PROPF_METHOD|1},
896     {isNaNW,                     JSGlobal_isNaN,                     PROPF_METHOD|1},
897     {parseFloatW,                JSGlobal_parseFloat,                PROPF_METHOD|1},
898     {parseIntW,                  JSGlobal_parseInt,                  PROPF_METHOD|2},
899     {unescapeW,                  JSGlobal_unescape,                  PROPF_METHOD|1}
900 };
901
902 static const builtin_info_t JSGlobal_info = {
903     JSCLASS_GLOBAL,
904     {NULL, NULL, 0},
905     sizeof(JSGlobal_props)/sizeof(*JSGlobal_props),
906     JSGlobal_props,
907     NULL,
908     NULL
909 };
910
911 static HRESULT init_constructors(script_ctx_t *ctx, DispatchEx *object_prototype)
912 {
913     HRESULT hres;
914
915     hres = init_function_constr(ctx, object_prototype);
916     if(FAILED(hres))
917         return hres;
918
919     hres = create_object_constr(ctx, object_prototype, &ctx->object_constr);
920     if(FAILED(hres))
921         return hres;
922
923     hres = create_activex_constr(ctx, &ctx->activex_constr);
924     if(FAILED(hres))
925         return hres;
926
927     hres = create_array_constr(ctx, object_prototype, &ctx->array_constr);
928     if(FAILED(hres))
929         return hres;
930
931     hres = create_bool_constr(ctx, object_prototype, &ctx->bool_constr);
932     if(FAILED(hres))
933         return hres;
934
935     hres = create_date_constr(ctx, object_prototype, &ctx->date_constr);
936     if(FAILED(hres))
937         return hres;
938
939     hres = init_error_constr(ctx, object_prototype);
940     if(FAILED(hres))
941         return hres;
942
943     hres = create_number_constr(ctx, object_prototype, &ctx->number_constr);
944     if(FAILED(hres))
945         return hres;
946
947     hres = create_regexp_constr(ctx, object_prototype, &ctx->regexp_constr);
948     if(FAILED(hres))
949         return hres;
950
951     hres = create_string_constr(ctx, object_prototype, &ctx->string_constr);
952     if(FAILED(hres))
953         return hres;
954
955     return S_OK;
956 }
957
958 HRESULT init_global(script_ctx_t *ctx)
959 {
960     DispatchEx *math, *object_prototype;
961     VARIANT var;
962     HRESULT hres;
963
964     if(ctx->global)
965         return S_OK;
966
967     hres = create_object_prototype(ctx, &object_prototype);
968     if(FAILED(hres))
969         return hres;
970
971     hres = init_constructors(ctx, object_prototype);
972     jsdisp_release(object_prototype);
973     if(FAILED(hres))
974         return hres;
975
976     hres = create_dispex(ctx, &JSGlobal_info, NULL, &ctx->global);
977     if(FAILED(hres))
978         return hres;
979
980     hres = create_math(ctx, &math);
981     if(FAILED(hres))
982         return hres;
983
984     V_VT(&var) = VT_DISPATCH;
985     V_DISPATCH(&var) = (IDispatch*)_IDispatchEx_(math);
986     hres = jsdisp_propput_name(ctx->global, MathW, &var, NULL/*FIXME*/, NULL/*FIXME*/);
987     jsdisp_release(math);
988
989     return hres;
990 }