2008-09-09 01:22:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2008-10-14 23:07:01 +02:00
|
|
|
|
|
|
|
#include <math.h>
|
2009-08-05 23:27:52 +02:00
|
|
|
#include <limits.h>
|
2008-10-14 23:07:01 +02:00
|
|
|
|
2008-09-09 01:22:54 +02:00
|
|
|
#include "jscript.h"
|
2008-09-17 23:34:05 +02:00
|
|
|
#include "engine.h"
|
2008-09-09 01:22:54 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(jscript);
|
|
|
|
|
|
|
|
static const WCHAR NaNW[] = {'N','a','N',0};
|
|
|
|
static const WCHAR InfinityW[] = {'I','n','f','i','n','i','t','y',0};
|
|
|
|
static const WCHAR ArrayW[] = {'A','r','r','a','y',0};
|
|
|
|
static const WCHAR BooleanW[] = {'B','o','o','l','e','a','n',0};
|
|
|
|
static const WCHAR DateW[] = {'D','a','t','e',0};
|
2009-07-20 18:17:51 +02:00
|
|
|
static const WCHAR ErrorW[] = {'E','r','r','o','r',0};
|
|
|
|
static const WCHAR EvalErrorW[] = {'E','v','a','l','E','r','r','o','r',0};
|
|
|
|
static const WCHAR RangeErrorW[] = {'R','a','n','g','e','E','r','r','o','r',0};
|
|
|
|
static const WCHAR ReferenceErrorW[] = {'R','e','f','e','r','e','n','c','e','E','r','r','o','r',0};
|
|
|
|
static const WCHAR SyntaxErrorW[] = {'S','y','n','t','a','x','E','r','r','o','r',0};
|
|
|
|
static const WCHAR TypeErrorW[] = {'T','y','p','e','E','r','r','o','r',0};
|
|
|
|
static const WCHAR URIErrorW[] = {'U','R','I','E','r','r','o','r',0};
|
2008-09-09 01:22:54 +02:00
|
|
|
static const WCHAR FunctionW[] = {'F','u','n','c','t','i','o','n',0};
|
|
|
|
static const WCHAR NumberW[] = {'N','u','m','b','e','r',0};
|
|
|
|
static const WCHAR ObjectW[] = {'O','b','j','e','c','t',0};
|
|
|
|
static const WCHAR StringW[] = {'S','t','r','i','n','g',0};
|
|
|
|
static const WCHAR RegExpW[] = {'R','e','g','E','x','p',0};
|
2012-07-16 15:31:58 +02:00
|
|
|
static const WCHAR RegExpErrorW[] = {'R','e','g','E','x','p','E','r','r','o','r',0};
|
2008-09-09 01:22:54 +02:00
|
|
|
static const WCHAR ActiveXObjectW[] = {'A','c','t','i','v','e','X','O','b','j','e','c','t',0};
|
|
|
|
static const WCHAR VBArrayW[] = {'V','B','A','r','r','a','y',0};
|
|
|
|
static const WCHAR EnumeratorW[] = {'E','n','u','m','e','r','a','t','o','r',0};
|
|
|
|
static const WCHAR escapeW[] = {'e','s','c','a','p','e',0};
|
|
|
|
static const WCHAR evalW[] = {'e','v','a','l',0};
|
|
|
|
static const WCHAR isNaNW[] = {'i','s','N','a','N',0};
|
|
|
|
static const WCHAR isFiniteW[] = {'i','s','F','i','n','i','t','e',0};
|
|
|
|
static const WCHAR parseIntW[] = {'p','a','r','s','e','I','n','t',0};
|
|
|
|
static const WCHAR parseFloatW[] = {'p','a','r','s','e','F','l','o','a','t',0};
|
|
|
|
static const WCHAR unescapeW[] = {'u','n','e','s','c','a','p','e',0};
|
2009-02-09 13:03:59 +01:00
|
|
|
static const WCHAR _GetObjectW[] = {'G','e','t','O','b','j','e','c','t',0};
|
2008-09-09 01:22:54 +02:00
|
|
|
static const WCHAR ScriptEngineW[] = {'S','c','r','i','p','t','E','n','g','i','n','e',0};
|
|
|
|
static const WCHAR ScriptEngineMajorVersionW[] =
|
|
|
|
{'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};
|
|
|
|
static const WCHAR ScriptEngineMinorVersionW[] =
|
|
|
|
{'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};
|
|
|
|
static const WCHAR ScriptEngineBuildVersionW[] =
|
|
|
|
{'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};
|
|
|
|
static const WCHAR CollectGarbageW[] = {'C','o','l','l','e','c','t','G','a','r','b','a','g','e',0};
|
|
|
|
static const WCHAR MathW[] = {'M','a','t','h',0};
|
2016-01-27 20:43:26 +01:00
|
|
|
static const WCHAR JSONW[] = {'J','S','O','N',0};
|
2008-10-07 19:02:39 +02:00
|
|
|
static const WCHAR encodeURIW[] = {'e','n','c','o','d','e','U','R','I',0};
|
2009-10-06 13:11:25 +02:00
|
|
|
static const WCHAR decodeURIW[] = {'d','e','c','o','d','e','U','R','I',0};
|
|
|
|
static const WCHAR encodeURIComponentW[] = {'e','n','c','o','d','e','U','R','I','C','o','m','p','o','n','e','n','t',0};
|
|
|
|
static const WCHAR decodeURIComponentW[] = {'d','e','c','o','d','e','U','R','I','C','o','m','p','o','n','e','n','t',0};
|
2008-10-07 19:02:39 +02:00
|
|
|
|
|
|
|
static const WCHAR undefinedW[] = {'u','n','d','e','f','i','n','e','d',0};
|
|
|
|
|
|
|
|
static int uri_char_table[] = {
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 00-0f */
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 10-1f */
|
|
|
|
0,2,0,0,1,0,1,2,2,2,2,1,1,2,2,1, /* 20-2f */
|
|
|
|
2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1, /* 30-3f */
|
|
|
|
1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* 40-4f */
|
|
|
|
2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,2, /* 50-5f */
|
|
|
|
0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* 60-6f */
|
|
|
|
2,2,2,2,2,2,2,2,2,2,2,0,0,0,2,0, /* 70-7f */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* 1 - reserved */
|
|
|
|
/* 2 - unescaped */
|
|
|
|
|
|
|
|
static inline BOOL is_uri_reserved(WCHAR c)
|
|
|
|
{
|
|
|
|
return c < 128 && uri_char_table[c] == 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline BOOL is_uri_unescaped(WCHAR c)
|
|
|
|
{
|
|
|
|
return c < 128 && uri_char_table[c] == 2;
|
|
|
|
}
|
|
|
|
|
2012-04-17 22:09:00 +02:00
|
|
|
/* Check that the character is one of the 69 non-blank characters as defined by ECMA-262 B.2.1 */
|
2011-02-18 11:05:46 +01:00
|
|
|
static inline BOOL is_ecma_nonblank(const WCHAR c)
|
|
|
|
{
|
|
|
|
return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||
|
|
|
|
c == '@' || c == '*' || c == '_' || c == '+' || c == '-' || c == '.' || c == '/');
|
|
|
|
}
|
|
|
|
|
2008-10-07 19:02:39 +02:00
|
|
|
static WCHAR int_to_char(int i)
|
|
|
|
{
|
|
|
|
if(i < 10)
|
|
|
|
return '0'+i;
|
|
|
|
return 'A'+i-10;
|
|
|
|
}
|
2008-09-09 01:22:54 +02:00
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_escape(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *ret_str, *str;
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr, *buf;
|
2009-10-07 22:11:43 +02:00
|
|
|
DWORD len = 0;
|
2012-10-11 12:16:01 +02:00
|
|
|
WCHAR *ret;
|
2009-10-06 13:11:18 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2013-03-08 11:37:56 +01:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(jsstr_undefined());
|
2009-10-06 13:11:18 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &buf);
|
2009-10-06 13:11:18 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = buf; *ptr; ptr++) {
|
2009-10-07 22:11:43 +02:00
|
|
|
if(*ptr > 0xff)
|
|
|
|
len += 6;
|
2011-02-18 11:05:46 +01:00
|
|
|
else if(is_ecma_nonblank(*ptr))
|
2009-10-06 13:11:18 +02:00
|
|
|
len++;
|
2009-10-07 22:11:43 +02:00
|
|
|
else
|
|
|
|
len += 3;
|
2009-10-06 13:11:18 +02:00
|
|
|
}
|
|
|
|
|
2016-09-07 10:50:11 +02:00
|
|
|
ret_str = jsstr_alloc_buf(len, &ret);
|
|
|
|
if(!ret_str) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-10-06 13:11:18 +02:00
|
|
|
return E_OUTOFMEMORY;
|
2009-10-13 22:39:20 +02:00
|
|
|
}
|
2009-10-06 13:11:18 +02:00
|
|
|
|
|
|
|
len = 0;
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = buf; *ptr; ptr++) {
|
2009-10-07 22:11:43 +02:00
|
|
|
if(*ptr > 0xff) {
|
|
|
|
ret[len++] = '%';
|
|
|
|
ret[len++] = 'u';
|
|
|
|
ret[len++] = int_to_char(*ptr >> 12);
|
|
|
|
ret[len++] = int_to_char((*ptr >> 8) & 0xf);
|
|
|
|
ret[len++] = int_to_char((*ptr >> 4) & 0xf);
|
|
|
|
ret[len++] = int_to_char(*ptr & 0xf);
|
|
|
|
}
|
2011-02-18 11:05:46 +01:00
|
|
|
else if(is_ecma_nonblank(*ptr))
|
2009-10-06 13:11:18 +02:00
|
|
|
ret[len++] = *ptr;
|
|
|
|
else {
|
2009-10-07 22:11:43 +02:00
|
|
|
ret[len++] = '%';
|
|
|
|
ret[len++] = int_to_char(*ptr >> 4);
|
|
|
|
ret[len++] = int_to_char(*ptr & 0xf);
|
2009-10-06 13:11:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-10-13 22:39:20 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
2012-10-11 12:16:01 +02:00
|
|
|
*r = jsval_string(ret_str);
|
2009-10-06 13:11:18 +02:00
|
|
|
else
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(ret_str);
|
2009-10-06 13:11:18 +02:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:34:05 +02:00
|
|
|
/* ECMA-262 3rd Edition 15.1.2.1 */
|
2016-03-29 17:49:43 +02:00
|
|
|
HRESULT JSGlobal_eval(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2019-05-20 21:05:25 +02:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-07-28 18:44:43 +02:00
|
|
|
DWORD exec_flags = EXEC_EVAL;
|
2012-03-12 19:24:22 +01:00
|
|
|
bytecode_t *code;
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *src;
|
2008-09-17 23:34:05 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_undefined();
|
2008-09-17 23:34:05 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
if(!is_string(argv[0])) {
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
2012-09-17 15:16:42 +02:00
|
|
|
return jsval_copy(argv[0], r);
|
2008-09-17 23:34:05 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
src = jsstr_flatten(get_string(argv[0]));
|
|
|
|
if(!src)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
TRACE("parsing %s\n", debugstr_jsval(argv[0]));
|
2020-03-07 14:40:31 +01:00
|
|
|
hres = compile_script(ctx, src, 0, 0, NULL, NULL, TRUE, FALSE, frame ? frame->bytecode->named_item : NULL, &code);
|
2008-09-17 23:34:05 +02:00
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:16:42 +02:00
|
|
|
WARN("parse (%s) failed: %08x\n", debugstr_jsval(argv[0]), hres);
|
2020-01-31 17:22:42 +01:00
|
|
|
return hres;
|
2008-09-17 23:34:05 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 21:05:25 +02:00
|
|
|
if(!frame || (frame->flags & EXEC_GLOBAL))
|
2016-03-28 17:49:33 +02:00
|
|
|
exec_flags |= EXEC_GLOBAL;
|
2016-03-29 17:49:43 +02:00
|
|
|
if(flags & DISPATCH_JSCRIPT_CALLEREXECSSOURCE)
|
|
|
|
exec_flags |= EXEC_RETURN_TO_INTERP;
|
2019-05-20 21:05:25 +02:00
|
|
|
hres = exec_source(ctx, exec_flags, code, &code->global_code, frame ? frame->scope : NULL,
|
2020-03-17 19:19:25 +01:00
|
|
|
frame ? frame->this_obj : NULL, NULL, 0, NULL, r);
|
2012-03-12 19:24:22 +01:00
|
|
|
release_bytecode(code);
|
2008-09-17 23:34:05 +02:00
|
|
|
return hres;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_isNaN(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2012-09-17 15:16:20 +02:00
|
|
|
BOOL ret = TRUE;
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-10-14 23:07:01 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(argc) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, argv[0], &n);
|
2008-10-14 23:07:01 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-03-27 11:28:51 +02:00
|
|
|
if(!isnan(n))
|
2012-09-17 15:16:20 +02:00
|
|
|
ret = FALSE;
|
2008-10-14 23:07:01 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_bool(ret);
|
2008-10-14 23:07:01 +02:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_isFinite(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2012-09-17 15:16:20 +02:00
|
|
|
BOOL ret = FALSE;
|
2008-10-16 01:50:06 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(argc) {
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-10-16 01:50:06 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, argv[0], &n);
|
2008-10-16 01:50:06 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2016-01-27 20:43:11 +01:00
|
|
|
ret = is_finite(n);
|
2008-10-16 01:50:06 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_bool(ret);
|
2008-10-16 01:50:06 +02:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2008-09-21 15:42:48 +02:00
|
|
|
static INT char_to_int(WCHAR c)
|
|
|
|
{
|
|
|
|
if('0' <= c && c <= '9')
|
|
|
|
return c - '0';
|
|
|
|
if('a' <= c && c <= 'z')
|
|
|
|
return c - 'a' + 10;
|
|
|
|
if('A' <= c && c <= 'Z')
|
|
|
|
return c - 'A' + 10;
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_parseInt(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2011-02-28 13:11:48 +01:00
|
|
|
BOOL neg = FALSE, empty = TRUE;
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr;
|
2008-09-21 15:42:48 +02:00
|
|
|
DOUBLE ret = 0.0;
|
2011-02-28 13:11:48 +01:00
|
|
|
INT radix=0, i;
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *str;
|
2008-09-21 15:42:48 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(NAN);
|
2009-06-03 21:11:20 +02:00
|
|
|
return S_OK;
|
2008-09-21 15:42:48 +02:00
|
|
|
}
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(argc >= 2) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_int32(ctx, argv[1], &radix);
|
2008-09-21 15:42:48 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-02-28 13:11:48 +01:00
|
|
|
if(radix && (radix < 2 || radix > 36)) {
|
2008-09-21 15:42:48 +02:00
|
|
|
WARN("radix %d out of range\n", radix);
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(NAN);
|
2011-02-28 13:11:48 +01:00
|
|
|
return S_OK;
|
2008-09-21 15:42:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &ptr);
|
2008-09-21 15:42:48 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2019-06-06 09:17:49 +02:00
|
|
|
while(iswspace(*ptr))
|
2013-03-27 11:03:44 +01:00
|
|
|
ptr++;
|
2008-09-21 15:42:48 +02:00
|
|
|
|
|
|
|
switch(*ptr) {
|
|
|
|
case '+':
|
|
|
|
ptr++;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
neg = TRUE;
|
|
|
|
ptr++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-28 13:11:48 +01:00
|
|
|
if(!radix) {
|
|
|
|
if(*ptr == '0') {
|
|
|
|
if(ptr[1] == 'x' || ptr[1] == 'X') {
|
|
|
|
radix = 16;
|
|
|
|
ptr += 2;
|
|
|
|
}else {
|
|
|
|
radix = 8;
|
|
|
|
ptr++;
|
|
|
|
empty = FALSE;
|
|
|
|
}
|
|
|
|
}else {
|
|
|
|
radix = 10;
|
|
|
|
}
|
2019-08-08 15:26:06 +02:00
|
|
|
}else if(radix == 16 && *ptr == '0' && (ptr[1] == 'x' || ptr[1] == 'X')) {
|
|
|
|
ptr += 2;
|
2011-02-28 13:11:48 +01:00
|
|
|
}
|
2008-09-21 15:42:48 +02:00
|
|
|
|
2011-02-28 13:11:48 +01:00
|
|
|
i = char_to_int(*ptr++);
|
|
|
|
if(i < radix) {
|
|
|
|
do {
|
|
|
|
ret = ret*radix + i;
|
|
|
|
i = char_to_int(*ptr++);
|
|
|
|
}while(i < radix);
|
|
|
|
}else if(empty) {
|
2012-05-29 12:53:55 +02:00
|
|
|
ret = NAN;
|
2008-09-21 15:42:48 +02:00
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2008-09-21 15:42:48 +02:00
|
|
|
|
|
|
|
if(neg)
|
|
|
|
ret = -ret;
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(ret);
|
2008-09-21 15:42:48 +02:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2009-08-05 23:27:52 +02:00
|
|
|
LONGLONG d = 0, hlp;
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *val_str;
|
2010-05-01 01:28:58 +02:00
|
|
|
int exp = 0;
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *str;
|
2009-08-05 23:27:52 +02:00
|
|
|
BOOL ret_nan = TRUE, positive = TRUE;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(NAN);
|
2009-08-05 23:27:52 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2019-11-08 21:26:08 +01:00
|
|
|
TRACE("%s\n", debugstr_jsval(argv[0]));
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &val_str, &str);
|
2009-08-05 23:27:52 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2019-06-06 09:17:49 +02:00
|
|
|
while(iswspace(*str)) str++;
|
2009-08-05 23:27:52 +02:00
|
|
|
|
|
|
|
if(*str == '+')
|
|
|
|
str++;
|
|
|
|
else if(*str == '-') {
|
|
|
|
positive = FALSE;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
2019-11-08 21:26:08 +01:00
|
|
|
if(is_digit(*str))
|
2009-08-05 23:27:52 +02:00
|
|
|
ret_nan = FALSE;
|
|
|
|
|
2019-11-08 21:26:08 +01:00
|
|
|
while(is_digit(*str)) {
|
2009-08-05 23:27:52 +02:00
|
|
|
hlp = d*10 + *(str++) - '0';
|
2013-10-14 15:14:16 +02:00
|
|
|
if(d>MAXLONGLONG/10 || hlp<0) {
|
2009-08-05 23:27:52 +02:00
|
|
|
exp++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
d = hlp;
|
|
|
|
}
|
2019-11-08 21:26:08 +01:00
|
|
|
while(is_digit(*str)) {
|
2009-08-05 23:27:52 +02:00
|
|
|
exp++;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*str == '.') str++;
|
|
|
|
|
2019-11-08 21:26:08 +01:00
|
|
|
if(is_digit(*str))
|
2009-08-05 23:27:52 +02:00
|
|
|
ret_nan = FALSE;
|
|
|
|
|
2019-11-08 21:26:08 +01:00
|
|
|
while(is_digit(*str)) {
|
2009-08-05 23:27:52 +02:00
|
|
|
hlp = d*10 + *(str++) - '0';
|
2013-10-14 15:14:16 +02:00
|
|
|
if(d>MAXLONGLONG/10 || hlp<0)
|
2009-08-05 23:27:52 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
d = hlp;
|
|
|
|
exp--;
|
|
|
|
}
|
2019-11-08 21:26:08 +01:00
|
|
|
while(is_digit(*str))
|
2009-08-05 23:27:52 +02:00
|
|
|
str++;
|
|
|
|
|
|
|
|
if(*str && !ret_nan && (*str=='e' || *str=='E')) {
|
|
|
|
int sign = 1, e = 0;
|
|
|
|
|
|
|
|
str++;
|
|
|
|
if(*str == '+')
|
|
|
|
str++;
|
|
|
|
else if(*str == '-') {
|
|
|
|
sign = -1;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
2019-11-08 21:26:08 +01:00
|
|
|
while(is_digit(*str)) {
|
2009-08-05 23:27:52 +02:00
|
|
|
if(e>INT_MAX/10 || (e = e*10 + *str++ - '0')<0)
|
|
|
|
e = INT_MAX;
|
|
|
|
}
|
|
|
|
e *= sign;
|
|
|
|
|
|
|
|
if(exp<0 && e<0 && exp+e>0) exp = INT_MIN;
|
|
|
|
else if(exp>0 && e>0 && exp+e<0) exp = INT_MAX;
|
|
|
|
else exp += e;
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(val_str);
|
2009-08-05 23:27:52 +02:00
|
|
|
|
|
|
|
if(ret_nan) {
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(NAN);
|
2009-08-05 23:27:52 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-04-19 15:28:30 +02:00
|
|
|
if(!positive)
|
|
|
|
d = -d;
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(exp>0 ? d*pow(10, exp) : d/pow(10, -exp));
|
2009-08-05 23:27:52 +02:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2009-09-02 12:33:39 +02:00
|
|
|
static inline int hex_to_int(const WCHAR wch) {
|
2019-06-06 09:17:49 +02:00
|
|
|
if(towupper(wch)>='A' && towupper(wch)<='F') return towupper(wch)-'A'+10;
|
2019-11-08 21:26:08 +01:00
|
|
|
if(is_digit(wch)) return wch-'0';
|
2009-09-02 12:33:39 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_unescape(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *ret_str, *str;
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr, *buf;
|
2009-09-02 12:33:39 +02:00
|
|
|
DWORD len = 0;
|
2012-10-11 12:16:01 +02:00
|
|
|
WCHAR *ret;
|
2009-09-02 12:33:39 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2013-03-08 11:37:56 +01:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(jsstr_undefined());
|
2009-09-02 12:33:39 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &buf);
|
2009-09-02 12:33:39 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = buf; *ptr; ptr++) {
|
2009-09-02 12:33:39 +02:00
|
|
|
if(*ptr == '%') {
|
|
|
|
if(hex_to_int(*(ptr+1))!=-1 && hex_to_int(*(ptr+2))!=-1)
|
|
|
|
ptr += 2;
|
|
|
|
else if(*(ptr+1)=='u' && hex_to_int(*(ptr+2))!=-1 && hex_to_int(*(ptr+3))!=-1
|
|
|
|
&& hex_to_int(*(ptr+4))!=-1 && hex_to_int(*(ptr+5))!=-1)
|
|
|
|
ptr += 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
|
2016-09-07 10:50:11 +02:00
|
|
|
ret_str = jsstr_alloc_buf(len, &ret);
|
|
|
|
if(!ret_str) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-09-02 12:33:39 +02:00
|
|
|
return E_OUTOFMEMORY;
|
2009-10-13 22:39:20 +02:00
|
|
|
}
|
2009-09-02 12:33:39 +02:00
|
|
|
|
|
|
|
len = 0;
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = buf; *ptr; ptr++) {
|
2009-09-02 12:33:39 +02:00
|
|
|
if(*ptr == '%') {
|
|
|
|
if(hex_to_int(*(ptr+1))!=-1 && hex_to_int(*(ptr+2))!=-1) {
|
|
|
|
ret[len] = (hex_to_int(*(ptr+1))<<4) + hex_to_int(*(ptr+2));
|
|
|
|
ptr += 2;
|
|
|
|
}
|
|
|
|
else if(*(ptr+1)=='u' && hex_to_int(*(ptr+2))!=-1 && hex_to_int(*(ptr+3))!=-1
|
|
|
|
&& hex_to_int(*(ptr+4))!=-1 && hex_to_int(*(ptr+5))!=-1) {
|
|
|
|
ret[len] = (hex_to_int(*(ptr+2))<<12) + (hex_to_int(*(ptr+3))<<8)
|
|
|
|
+ (hex_to_int(*(ptr+4))<<4) + hex_to_int(*(ptr+5));
|
|
|
|
ptr += 5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret[len] = *ptr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret[len] = *ptr;
|
|
|
|
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-10-13 22:39:20 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
2012-10-11 12:16:01 +02:00
|
|
|
*r = jsval_string(ret_str);
|
2009-09-02 12:33:39 +02:00
|
|
|
else
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(ret_str);
|
2009-09-02 12:33:39 +02:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_GetObject(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
|
|
|
FIXME("\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_ScriptEngine(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2010-12-27 13:37:54 +01:00
|
|
|
static const WCHAR JScriptW[] = {'J','S','c','r','i','p','t',0};
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *ret;
|
2010-12-27 13:37:54 +01:00
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
ret = jsstr_alloc(JScriptW);
|
2010-12-27 13:37:54 +01:00
|
|
|
if(!ret)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
*r = jsval_string(ret);
|
2010-12-27 13:37:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_ScriptEngineMajorVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2010-12-27 13:38:08 +01:00
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(JSCRIPT_MAJOR_VERSION);
|
2010-12-27 13:38:08 +01:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_ScriptEngineMinorVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2010-12-27 13:38:08 +01:00
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(JSCRIPT_MINOR_VERSION);
|
2010-12-27 13:38:08 +01:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_ScriptEngineBuildVersion(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2010-12-27 13:38:08 +01:00
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_number(JSCRIPT_BUILD_VERSION);
|
2010-12-27 13:38:08 +01:00
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_CollectGarbage(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-09 01:22:54 +02:00
|
|
|
{
|
2014-06-19 16:16:39 +02:00
|
|
|
static int once = 0;
|
|
|
|
if (!once++)
|
|
|
|
FIXME(": stub\n");
|
|
|
|
return S_OK;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_encodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-10-07 19:02:39 +02:00
|
|
|
{
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr, *uri;
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *str, *ret;
|
2008-10-07 19:02:39 +02:00
|
|
|
DWORD len = 0, i;
|
|
|
|
char buf[4];
|
|
|
|
WCHAR *rptr;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2013-03-08 11:37:56 +01:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(jsstr_undefined());
|
2008-10-07 19:02:39 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &uri);
|
2008-10-07 19:02:39 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = uri; *ptr; ptr++) {
|
2008-10-07 19:02:39 +02:00
|
|
|
if(is_uri_unescaped(*ptr) || is_uri_reserved(*ptr) || *ptr == '#') {
|
|
|
|
len++;
|
|
|
|
}else {
|
2019-12-04 16:03:21 +01:00
|
|
|
i = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, ptr, 1, NULL, 0, NULL, NULL)*3;
|
2008-10-07 19:02:39 +02:00
|
|
|
if(!i) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2020-01-31 17:23:16 +01:00
|
|
|
return JS_E_INVALID_URI_CHAR;
|
2008-10-07 19:02:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
len += i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 10:50:11 +02:00
|
|
|
ret = jsstr_alloc_buf(len, &rptr);
|
|
|
|
if(!ret) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2008-10-07 19:02:39 +02:00
|
|
|
return E_OUTOFMEMORY;
|
2009-10-13 22:39:20 +02:00
|
|
|
}
|
2008-10-07 19:02:39 +02:00
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = uri; *ptr; ptr++) {
|
2008-10-07 19:02:39 +02:00
|
|
|
if(is_uri_unescaped(*ptr) || is_uri_reserved(*ptr) || *ptr == '#') {
|
|
|
|
*rptr++ = *ptr;
|
|
|
|
}else {
|
2019-12-04 16:03:21 +01:00
|
|
|
len = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, ptr, 1, buf, sizeof(buf), NULL, NULL);
|
2008-10-07 19:02:39 +02:00
|
|
|
for(i=0; i<len; i++) {
|
|
|
|
*rptr++ = '%';
|
|
|
|
*rptr++ = int_to_char((BYTE)buf[i] >> 4);
|
|
|
|
*rptr++ = int_to_char(buf[i] & 0x0f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
TRACE("%s -> %s\n", debugstr_jsstr(str), debugstr_jsstr(ret));
|
|
|
|
jsstr_release(str);
|
2009-10-13 22:39:20 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(ret);
|
|
|
|
else
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(ret);
|
2008-10-07 19:02:39 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_decodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2009-10-06 13:11:25 +02:00
|
|
|
{
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr, *uri;
|
2013-03-25 12:28:38 +01:00
|
|
|
jsstr_t *str, *ret_str;
|
|
|
|
unsigned len = 0;
|
|
|
|
int i, val, res;
|
2013-03-27 11:03:44 +01:00
|
|
|
WCHAR *ret;
|
2011-09-02 12:24:57 +02:00
|
|
|
char buf[4];
|
|
|
|
WCHAR out;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2013-03-08 11:37:56 +01:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(jsstr_undefined());
|
2011-09-02 12:24:57 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &uri);
|
2011-09-02 12:24:57 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = uri; *ptr; ptr++) {
|
2011-09-02 12:24:57 +02:00
|
|
|
if(*ptr != '%') {
|
|
|
|
len++;
|
|
|
|
}else {
|
|
|
|
res = 0;
|
|
|
|
for(i=0; i<4; i++) {
|
|
|
|
if(ptr[i*3]!='%' || hex_to_int(ptr[i*3+1])==-1 || (val=hex_to_int(ptr[i*3+2]))==-1)
|
|
|
|
break;
|
|
|
|
val += hex_to_int(ptr[i*3+1])<<4;
|
|
|
|
buf[i] = val;
|
|
|
|
|
2019-12-04 16:03:21 +01:00
|
|
|
res = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, buf, i+1, &out, 1);
|
2011-09-02 12:24:57 +02:00
|
|
|
if(res)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!res) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2020-01-31 17:23:16 +01:00
|
|
|
return JS_E_INVALID_URI_CODING;
|
2011-09-02 12:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ptr += i*3+2;
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 10:50:11 +02:00
|
|
|
ret_str = jsstr_alloc_buf(len, &ret);
|
|
|
|
if(!ret_str) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2011-09-02 12:24:57 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = uri; *ptr; ptr++) {
|
2011-09-02 12:24:57 +02:00
|
|
|
if(*ptr != '%') {
|
2013-03-25 12:28:38 +01:00
|
|
|
*ret++ = *ptr;
|
2011-09-02 12:24:57 +02:00
|
|
|
}else {
|
|
|
|
for(i=0; i<4; i++) {
|
|
|
|
if(ptr[i*3]!='%' || hex_to_int(ptr[i*3+1])==-1 || (val=hex_to_int(ptr[i*3+2]))==-1)
|
|
|
|
break;
|
|
|
|
val += hex_to_int(ptr[i*3+1])<<4;
|
|
|
|
buf[i] = val;
|
|
|
|
|
2019-12-04 16:03:21 +01:00
|
|
|
res = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, buf, i+1, ret, 1);
|
2011-09-02 12:24:57 +02:00
|
|
|
if(res)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr += i*3+2;
|
2013-03-25 12:28:38 +01:00
|
|
|
ret++;
|
2011-09-02 12:24:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-25 12:28:38 +01:00
|
|
|
TRACE("%s -> %s\n", debugstr_jsstr(str), debugstr_jsstr(ret_str));
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2011-09-02 12:24:57 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
2013-03-25 12:28:38 +01:00
|
|
|
*r = jsval_string(ret_str);
|
2012-09-17 15:16:20 +02:00
|
|
|
else
|
2013-03-25 12:28:38 +01:00
|
|
|
jsstr_release(ret_str);
|
2011-09-02 12:24:57 +02:00
|
|
|
return S_OK;
|
2009-10-06 13:11:25 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_encodeURIComponent(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2009-10-06 13:11:25 +02:00
|
|
|
{
|
2013-03-25 12:28:38 +01:00
|
|
|
jsstr_t *str, *ret_str;
|
2009-10-13 22:39:20 +02:00
|
|
|
char buf[4];
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr, *uri;
|
2009-10-13 22:39:20 +02:00
|
|
|
DWORD len = 0, size, i;
|
2013-03-25 12:28:38 +01:00
|
|
|
WCHAR *ret;
|
2009-10-13 22:39:20 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2013-03-08 11:37:56 +01:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(jsstr_undefined());
|
2009-10-13 22:39:20 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &uri);
|
2009-10-13 22:39:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = uri; *ptr; ptr++) {
|
2009-10-13 22:39:20 +02:00
|
|
|
if(is_uri_unescaped(*ptr))
|
|
|
|
len++;
|
|
|
|
else {
|
2019-12-04 16:03:21 +01:00
|
|
|
size = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, ptr, 1, NULL, 0, NULL, NULL);
|
2009-10-13 22:39:20 +02:00
|
|
|
if(!size) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2020-01-31 17:23:16 +01:00
|
|
|
return JS_E_INVALID_URI_CHAR;
|
2009-10-13 22:39:20 +02:00
|
|
|
}
|
|
|
|
len += size*3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 10:50:11 +02:00
|
|
|
ret_str = jsstr_alloc_buf(len, &ret);
|
|
|
|
if(!ret_str) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-10-13 22:39:20 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
for(ptr = uri; *ptr; ptr++) {
|
2012-10-11 12:16:01 +02:00
|
|
|
if(is_uri_unescaped(*ptr)) {
|
2013-03-25 12:28:38 +01:00
|
|
|
*ret++ = *ptr;
|
2012-10-11 12:16:01 +02:00
|
|
|
}else {
|
2019-12-04 16:03:21 +01:00
|
|
|
size = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, ptr, 1, buf, sizeof(buf), NULL, NULL);
|
2009-10-13 22:39:20 +02:00
|
|
|
for(i=0; i<size; i++) {
|
2013-03-25 12:28:38 +01:00
|
|
|
*ret++ = '%';
|
|
|
|
*ret++ = int_to_char((BYTE)buf[i] >> 4);
|
|
|
|
*ret++ = int_to_char(buf[i] & 0x0f);
|
2009-10-13 22:39:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-10-13 22:39:20 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
2013-03-25 12:28:38 +01:00
|
|
|
*r = jsval_string(ret_str);
|
2012-09-17 15:16:20 +02:00
|
|
|
else
|
2013-03-25 12:28:38 +01:00
|
|
|
jsstr_release(ret_str);
|
2009-10-13 22:39:20 +02:00
|
|
|
return S_OK;
|
2009-10-06 13:11:25 +02:00
|
|
|
}
|
|
|
|
|
2009-11-16 22:39:08 +01:00
|
|
|
/* ECMA-262 3rd Edition 15.1.3.2 */
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT JSGlobal_decodeURIComponent(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2009-10-06 13:11:25 +02:00
|
|
|
{
|
2013-03-27 11:03:44 +01:00
|
|
|
const WCHAR *ptr, *uri;
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *str, *ret;
|
2009-11-16 22:39:08 +01:00
|
|
|
WCHAR *out_ptr;
|
|
|
|
DWORD len = 0;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(!argc) {
|
2013-03-08 11:37:56 +01:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(jsstr_undefined());
|
2009-11-16 22:39:08 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
hres = to_flat_string(ctx, argv[0], &str, &uri);
|
2009-11-16 22:39:08 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
ptr = uri;
|
2009-11-16 22:39:08 +01:00
|
|
|
while(*ptr) {
|
|
|
|
if(*ptr == '%') {
|
|
|
|
char octets[4];
|
|
|
|
unsigned char mask = 0x80;
|
|
|
|
int i, size, num_bytes = 0;
|
|
|
|
if(hex_to_int(*(ptr+1)) < 0 || hex_to_int(*(ptr+2)) < 0) {
|
|
|
|
FIXME("Throw URIError: Invalid hex sequence\n");
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
octets[0] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
|
|
|
|
ptr += 3;
|
|
|
|
while(octets[0] & mask) {
|
|
|
|
mask = mask >> 1;
|
|
|
|
++num_bytes;
|
|
|
|
}
|
|
|
|
if(num_bytes == 1 || num_bytes > 4) {
|
|
|
|
FIXME("Throw URIError: Invalid initial UTF character\n");
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
for(i = 1; i < num_bytes; ++i) {
|
|
|
|
if(*ptr != '%'){
|
|
|
|
FIXME("Throw URIError: Incomplete UTF sequence\n");
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
if(hex_to_int(*(ptr+1)) < 0 || hex_to_int(*(ptr+2)) < 0) {
|
|
|
|
FIXME("Throw URIError: Invalid hex sequence\n");
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
octets[i] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
|
|
|
|
ptr += 3;
|
|
|
|
}
|
|
|
|
size = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, octets,
|
|
|
|
num_bytes ? num_bytes : 1, NULL, 0);
|
|
|
|
if(size == 0) {
|
|
|
|
FIXME("Throw URIError: Invalid UTF sequence\n");
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
len += size;
|
|
|
|
}else {
|
|
|
|
++ptr;
|
|
|
|
++len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 10:50:11 +02:00
|
|
|
ret = jsstr_alloc_buf(len, &out_ptr);
|
2009-11-16 22:39:08 +01:00
|
|
|
if(!ret) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:03:44 +01:00
|
|
|
ptr = uri;
|
2009-11-16 22:39:08 +01:00
|
|
|
while(*ptr) {
|
|
|
|
if(*ptr == '%') {
|
|
|
|
char octets[4];
|
|
|
|
unsigned char mask = 0x80;
|
|
|
|
int i, size, num_bytes = 0;
|
|
|
|
octets[0] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
|
|
|
|
ptr += 3;
|
|
|
|
while(octets[0] & mask) {
|
|
|
|
mask = mask >> 1;
|
|
|
|
++num_bytes;
|
|
|
|
}
|
|
|
|
for(i = 1; i < num_bytes; ++i) {
|
|
|
|
octets[i] = (hex_to_int(*(ptr+1)) << 4) + hex_to_int(*(ptr+2));
|
|
|
|
ptr += 3;
|
|
|
|
}
|
|
|
|
size = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, octets,
|
|
|
|
num_bytes ? num_bytes : 1, out_ptr, len);
|
|
|
|
len -= size;
|
|
|
|
out_ptr += size;
|
|
|
|
}else {
|
|
|
|
*out_ptr++ = *ptr++;
|
|
|
|
--len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2009-11-16 22:39:08 +01:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_string(ret);
|
|
|
|
else
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(ret);
|
2009-11-16 22:39:08 +01:00
|
|
|
return S_OK;
|
2009-10-06 13:11:25 +02:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:22:54 +02:00
|
|
|
static const builtin_prop_t JSGlobal_props[] = {
|
|
|
|
{CollectGarbageW, JSGlobal_CollectGarbage, PROPF_METHOD},
|
2009-10-13 22:08:43 +02:00
|
|
|
{_GetObjectW, JSGlobal_GetObject, PROPF_METHOD|2},
|
2008-09-09 01:27:38 +02:00
|
|
|
{ScriptEngineW, JSGlobal_ScriptEngine, PROPF_METHOD},
|
2008-09-09 01:22:54 +02:00
|
|
|
{ScriptEngineBuildVersionW, JSGlobal_ScriptEngineBuildVersion, PROPF_METHOD},
|
|
|
|
{ScriptEngineMajorVersionW, JSGlobal_ScriptEngineMajorVersion, PROPF_METHOD},
|
|
|
|
{ScriptEngineMinorVersionW, JSGlobal_ScriptEngineMinorVersion, PROPF_METHOD},
|
2009-10-13 22:08:43 +02:00
|
|
|
{decodeURIW, JSGlobal_decodeURI, PROPF_METHOD|1},
|
|
|
|
{decodeURIComponentW, JSGlobal_decodeURIComponent, PROPF_METHOD|1},
|
|
|
|
{encodeURIW, JSGlobal_encodeURI, PROPF_METHOD|1},
|
|
|
|
{encodeURIComponentW, JSGlobal_encodeURIComponent, PROPF_METHOD|1},
|
|
|
|
{escapeW, JSGlobal_escape, PROPF_METHOD|1},
|
2008-09-17 23:34:05 +02:00
|
|
|
{evalW, JSGlobal_eval, PROPF_METHOD|1},
|
2009-10-13 22:08:43 +02:00
|
|
|
{isFiniteW, JSGlobal_isFinite, PROPF_METHOD|1},
|
|
|
|
{isNaNW, JSGlobal_isNaN, PROPF_METHOD|1},
|
|
|
|
{parseFloatW, JSGlobal_parseFloat, PROPF_METHOD|1},
|
2008-09-09 01:22:54 +02:00
|
|
|
{parseIntW, JSGlobal_parseInt, PROPF_METHOD|2},
|
2009-10-13 22:08:43 +02:00
|
|
|
{unescapeW, JSGlobal_unescape, PROPF_METHOD|1}
|
2008-09-09 01:22:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const builtin_info_t JSGlobal_info = {
|
|
|
|
JSCLASS_GLOBAL,
|
|
|
|
{NULL, NULL, 0},
|
2018-07-09 20:59:12 +02:00
|
|
|
ARRAY_SIZE(JSGlobal_props),
|
2008-09-09 01:22:54 +02:00
|
|
|
JSGlobal_props,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2010-09-06 16:11:49 +02:00
|
|
|
static HRESULT init_constructors(script_ctx_t *ctx, jsdisp_t *object_prototype)
|
2008-09-10 02:33:15 +02:00
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-07-12 19:52:31 +02:00
|
|
|
hres = init_function_constr(ctx, object_prototype);
|
2008-09-19 00:46:26 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, FunctionW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->function_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-07-12 19:52:31 +02:00
|
|
|
hres = create_object_constr(ctx, object_prototype, &ctx->object_constr);
|
2009-07-07 13:45:06 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, ObjectW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->object_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-14 11:55:15 +02:00
|
|
|
hres = create_array_constr(ctx, object_prototype, &ctx->array_constr);
|
2008-09-10 02:33:57 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, ArrayW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->array_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-14 11:54:51 +02:00
|
|
|
hres = create_bool_constr(ctx, object_prototype, &ctx->bool_constr);
|
2008-09-10 02:34:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, BooleanW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->bool_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-14 11:53:57 +02:00
|
|
|
hres = create_date_constr(ctx, object_prototype, &ctx->date_constr);
|
2008-09-30 17:48:18 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, DateW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->date_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2019-04-18 21:08:40 +02:00
|
|
|
hres = create_enumerator_constr(ctx, object_prototype, &ctx->enumerator_constr);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = jsdisp_define_data_property(ctx->global, EnumeratorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->enumerator_constr));
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-14 11:58:10 +02:00
|
|
|
hres = init_error_constr(ctx, object_prototype);
|
2009-07-20 18:17:51 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, ErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->error_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, EvalErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->eval_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, RangeErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->range_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, ReferenceErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->reference_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, RegExpErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->regexp_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, SyntaxErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->syntax_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, TypeErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->type_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, URIErrorW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->uri_error_constr));
|
2015-02-05 14:47:51 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-12 12:48:34 +02:00
|
|
|
hres = create_number_constr(ctx, object_prototype, &ctx->number_constr);
|
2008-09-10 02:34:33 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, NumberW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->number_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-12 12:48:15 +02:00
|
|
|
hres = create_regexp_constr(ctx, object_prototype, &ctx->regexp_constr);
|
2008-09-10 02:34:54 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, RegExpW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->regexp_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2009-08-12 12:47:53 +02:00
|
|
|
hres = create_string_constr(ctx, object_prototype, &ctx->string_constr);
|
2008-09-10 02:33:37 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, StringW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->string_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2010-10-18 18:46:59 +02:00
|
|
|
hres = create_vbarray_constr(ctx, object_prototype, &ctx->vbarray_constr);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, VBArrayW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(ctx->vbarray_constr));
|
2015-02-05 14:47:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2008-09-10 02:33:15 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-09 01:22:54 +02:00
|
|
|
HRESULT init_global(script_ctx_t *ctx)
|
|
|
|
{
|
2018-05-11 14:43:40 +02:00
|
|
|
unsigned const_flags = ctx->version >= SCRIPTLANGUAGEVERSION_ES5 ? 0 : PROPF_WRITABLE;
|
2014-10-13 12:36:30 +02:00
|
|
|
jsdisp_t *math, *object_prototype, *constr;
|
2008-09-10 02:33:15 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2008-09-09 01:22:54 +02:00
|
|
|
if(ctx->global)
|
|
|
|
return S_OK;
|
|
|
|
|
2015-02-05 14:47:44 +01:00
|
|
|
hres = create_dispex(ctx, &JSGlobal_info, NULL, &ctx->global);
|
2009-07-12 19:52:31 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2015-02-05 14:47:44 +01:00
|
|
|
hres = create_object_prototype(ctx, &object_prototype);
|
2008-09-10 02:33:15 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2015-02-05 14:47:44 +01:00
|
|
|
hres = init_constructors(ctx, object_prototype);
|
|
|
|
jsdisp_release(object_prototype);
|
2008-09-10 02:35:43 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = create_math(ctx, &math);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, MathW, PROPF_WRITABLE, jsval_obj(math));
|
2010-08-02 11:08:57 +02:00
|
|
|
jsdisp_release(math);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2016-01-27 20:43:26 +01:00
|
|
|
if(ctx->version >= 2) {
|
|
|
|
jsdisp_t *json;
|
|
|
|
|
|
|
|
hres = create_json(ctx, &json);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, JSONW, PROPF_WRITABLE, jsval_obj(json));
|
2016-01-27 20:43:26 +01:00
|
|
|
jsdisp_release(json);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2014-10-13 12:36:30 +02:00
|
|
|
hres = create_activex_constr(ctx, &constr);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:52 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, ActiveXObjectW, PROPF_WRITABLE,
|
|
|
|
jsval_obj(constr));
|
2014-10-13 12:36:30 +02:00
|
|
|
jsdisp_release(constr);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:40 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, undefinedW, const_flags, jsval_undefined());
|
2009-12-21 00:24:11 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2018-05-11 14:43:40 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, NaNW, const_flags, jsval_number(NAN));
|
2010-08-02 11:08:57 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2008-09-10 02:35:43 +02:00
|
|
|
|
2018-05-11 14:43:40 +02:00
|
|
|
hres = jsdisp_define_data_property(ctx->global, InfinityW, const_flags, jsval_number(INFINITY));
|
2008-09-10 02:35:43 +02:00
|
|
|
return hres;
|
2008-09-09 01:22:54 +02:00
|
|
|
}
|