2 * Copyright 2008 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "wine/port.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
30 WINE_DECLARE_DEBUG_CHANNEL(heap
);
32 const char *debugstr_variant(const VARIANT
*v
)
36 return wine_dbg_sprintf("{VT_EMPTY}");
38 return wine_dbg_sprintf("{VT_NULL}");
40 return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v
));
42 return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v
));
44 return wine_dbg_sprintf("{VT_BSTR: %s}", debugstr_w(V_BSTR(v
)));
46 return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v
));
48 return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v
));
50 return wine_dbg_sprintf("{vt %d}", V_VT(v
));
54 #define MIN_BLOCK_SIZE 128
55 #define ARENA_FREE_FILLER 0xaa
57 static inline DWORD
block_size(DWORD block
)
59 return MIN_BLOCK_SIZE
<< block
;
62 void jsheap_init(jsheap_t
*heap
)
64 memset(heap
, 0, sizeof(*heap
));
65 list_init(&heap
->custom_blocks
);
68 void *jsheap_alloc(jsheap_t
*heap
, DWORD size
)
73 if(!heap
->block_cnt
) {
75 heap
->blocks
= heap_alloc(sizeof(void*));
80 tmp
= heap_alloc(block_size(0));
84 heap
->blocks
[0] = tmp
;
88 if(heap
->offset
+ size
<= block_size(heap
->last_block
)) {
89 tmp
= ((BYTE
*)heap
->blocks
[heap
->last_block
])+heap
->offset
;
94 if(size
<= block_size(heap
->last_block
+1)) {
95 if(heap
->last_block
+1 == heap
->block_cnt
) {
96 tmp
= heap_realloc(heap
->blocks
, (heap
->block_cnt
+1)*sizeof(void*));
101 heap
->blocks
[heap
->block_cnt
] = heap_alloc(block_size(heap
->block_cnt
));
102 if(!heap
->blocks
[heap
->block_cnt
])
110 return heap
->blocks
[heap
->last_block
];
113 list
= heap_alloc(size
+ sizeof(struct list
));
117 list_add_head(&heap
->custom_blocks
, list
);
121 void *jsheap_grow(jsheap_t
*heap
, void *mem
, DWORD size
, DWORD inc
)
123 if(mem
== (BYTE
*)heap
->blocks
[heap
->last_block
] + heap
->offset
-size
124 && heap
->offset
+inc
< block_size(heap
->last_block
)) {
129 return jsheap_alloc(heap
, size
+inc
);
132 void jsheap_clear(jsheap_t
*heap
)
139 while((tmp
= list_next(&heap
->custom_blocks
, &heap
->custom_blocks
))) {
147 for(i
=0; i
< heap
->block_cnt
; i
++)
148 memset(heap
->blocks
[i
], ARENA_FREE_FILLER
, block_size(i
));
151 heap
->last_block
= heap
->offset
= 0;
155 void jsheap_free(jsheap_t
*heap
)
161 for(i
=0; i
< heap
->block_cnt
; i
++)
162 heap_free(heap
->blocks
[i
]);
163 heap_free(heap
->blocks
);
168 jsheap_t
*jsheap_mark(jsheap_t
*heap
)
177 /* ECMA-262 3rd Edition 9.1 */
178 HRESULT
to_primitive(script_ctx_t
*ctx
, VARIANT
*v
, jsexcept_t
*ei
, VARIANT
*ret
, hint_t hint
)
190 V_BSTR(ret
) = SysAllocString(V_BSTR(v
));
195 DISPPARAMS dp
= {NULL
, NULL
, 0, 0};
198 static const WCHAR toStringW
[] = {'t','o','S','t','r','i','n','g',0};
199 static const WCHAR valueOfW
[] = {'v','a','l','u','e','O','f',0};
201 jsdisp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(v
));
203 return disp_propget(V_DISPATCH(v
), DISPID_VALUE
, ctx
->lcid
, ret
, ei
, NULL
/*FIXME*/);
206 hint
= is_class(jsdisp
, JSCLASS_DATE
) ? HINT_STRING
: HINT_NUMBER
;
208 /* Native implementation doesn't throw TypeErrors, returns strange values */
210 hres
= jsdisp_get_id(jsdisp
, hint
== HINT_STRING
? toStringW
: valueOfW
, 0, &id
);
211 if(SUCCEEDED(hres
)) {
212 hres
= jsdisp_call(jsdisp
, id
, ctx
->lcid
, DISPATCH_METHOD
, &dp
, ret
, ei
, NULL
/*FIXME*/);
214 WARN("call error - forwarding exception\n");
215 jsdisp_release(jsdisp
);
218 else if(V_VT(ret
) != VT_DISPATCH
) {
219 jsdisp_release(jsdisp
);
223 IDispatch_Release(V_DISPATCH(ret
));
226 hres
= jsdisp_get_id(jsdisp
, hint
== HINT_STRING
? valueOfW
: toStringW
, 0, &id
);
227 if(SUCCEEDED(hres
)) {
228 hres
= jsdisp_call(jsdisp
, id
, ctx
->lcid
, DISPATCH_METHOD
, &dp
, ret
, ei
, NULL
/*FIXME*/);
230 WARN("call error - forwarding exception\n");
231 jsdisp_release(jsdisp
);
234 else if(V_VT(ret
) != VT_DISPATCH
) {
235 jsdisp_release(jsdisp
);
239 IDispatch_Release(V_DISPATCH(ret
));
242 jsdisp_release(jsdisp
);
245 return throw_type_error(ctx
, ei
, IDS_TO_PRIMITIVE
, NULL
);
248 FIXME("Unimplemented for vt %d\n", V_VT(v
));
255 /* ECMA-262 3rd Edition 9.2 */
256 HRESULT
to_boolean(VARIANT
*v
, VARIANT_BOOL
*b
)
264 *b
= V_I4(v
) ? VARIANT_TRUE
: VARIANT_FALSE
;
267 if(isnan(V_R8(v
))) *b
= VARIANT_FALSE
;
268 else *b
= V_R8(v
) ? VARIANT_TRUE
: VARIANT_FALSE
;
271 *b
= V_BSTR(v
) && *V_BSTR(v
) ? VARIANT_TRUE
: VARIANT_FALSE
;
274 *b
= V_DISPATCH(v
) ? VARIANT_TRUE
: VARIANT_FALSE
;
280 FIXME("unimplemented for vt %d\n", V_VT(v
));
287 static int hex_to_int(WCHAR c
)
289 if('0' <= c
&& c
<= '9')
292 if('a' <= c
&& c
<= 'f')
295 if('A' <= c
&& c
<= 'F')
301 /* ECMA-262 3rd Edition 9.3.1 */
302 static HRESULT
str_to_number(BSTR str
, VARIANT
*ret
)
304 const WCHAR
*ptr
= str
;
308 static const WCHAR infinityW
[] = {'I','n','f','i','n','i','t','y'};
310 while(isspaceW(*ptr
))
316 }else if(*ptr
== '+') {
320 if(!strncmpW(ptr
, infinityW
, sizeof(infinityW
)/sizeof(WCHAR
))) {
321 ptr
+= sizeof(infinityW
)/sizeof(WCHAR
);
322 while(*ptr
&& isspaceW(*ptr
))
328 num_set_inf(ret
, !neg
);
332 if(*ptr
== '0' && ptr
[1] == 'x') {
336 while((l
= hex_to_int(*ptr
)) != -1) {
345 while(isdigitW(*ptr
))
346 d
= d
*10 + (*ptr
++ - '0');
348 if(*ptr
== 'e' || *ptr
== 'E') {
356 }else if(*ptr
== '+') {
360 while(isdigitW(*ptr
))
361 l
= l
*10 + (*ptr
++ - '0');
366 }else if(*ptr
== '.') {
370 while(isdigitW(*ptr
)) {
371 d
+= dec
* (*ptr
++ - '0');
376 while(isspaceW(*ptr
))
391 /* ECMA-262 3rd Edition 9.3 */
392 HRESULT
to_number(script_ctx_t
*ctx
, VARIANT
*v
, jsexcept_t
*ei
, VARIANT
*ret
)
407 return str_to_number(V_BSTR(v
), ret
);
412 hres
= to_primitive(ctx
, v
, ei
, &prim
, HINT_NUMBER
);
416 hres
= to_number(ctx
, &prim
, ei
, ret
);
422 V_I4(ret
) = V_BOOL(v
) ? 1 : 0;
425 FIXME("unimplemented for vt %d\n", V_VT(v
));
432 /* ECMA-262 3rd Edition 9.4 */
433 HRESULT
to_integer(script_ctx_t
*ctx
, VARIANT
*v
, jsexcept_t
*ei
, VARIANT
*ret
)
438 hres
= to_number(ctx
, v
, ei
, &num
);
442 if(V_VT(&num
) == VT_I4
)
445 num_set_val(ret
, V_R8(&num
) >= 0.0 ? floor(V_R8(&num
)) : -floor(-V_R8(&num
)));
450 /* ECMA-262 3rd Edition 9.5 */
451 HRESULT
to_int32(script_ctx_t
*ctx
, VARIANT
*v
, jsexcept_t
*ei
, INT
*ret
)
456 hres
= to_number(ctx
, v
, ei
, &num
);
460 *ret
= V_VT(&num
) == VT_I4
? V_I4(&num
) : (INT
)V_R8(&num
);
464 /* ECMA-262 3rd Edition 9.6 */
465 HRESULT
to_uint32(script_ctx_t
*ctx
, VARIANT
*v
, jsexcept_t
*ei
, DWORD
*ret
)
470 hres
= to_number(ctx
, v
, ei
, &num
);
474 *ret
= V_VT(&num
) == VT_I4
? V_I4(&num
) : (DWORD
)V_R8(&num
);
478 static BSTR
int_to_bstr(INT i
)
484 static const WCHAR zeroW
[] = {'0',0};
485 return SysAllocString(zeroW
);
493 p
= buf
+ sizeof(buf
)/sizeof(*buf
)-1;
505 return SysAllocString(p
);
508 /* ECMA-262 3rd Edition 9.8 */
509 HRESULT
to_string(script_ctx_t
*ctx
, VARIANT
*v
, jsexcept_t
*ei
, BSTR
*str
)
511 const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d',0};
512 const WCHAR nullW
[] = {'n','u','l','l',0};
513 const WCHAR trueW
[] = {'t','r','u','e',0};
514 const WCHAR falseW
[] = {'f','a','l','s','e',0};
515 const WCHAR NaNW
[] = {'N','a','N',0};
516 const WCHAR InfinityW
[] = {'-','I','n','f','i','n','i','t','y',0};
520 *str
= SysAllocString(undefinedW
);
523 *str
= SysAllocString(nullW
);
526 *str
= int_to_bstr(V_I4(v
));
530 *str
= SysAllocString(NaNW
);
531 else if(isinf(V_R8(v
)))
532 *str
= SysAllocString(V_R8(v
)<0 ? InfinityW
: InfinityW
+1);
537 V_VT(&strv
) = VT_EMPTY
;
538 hres
= VariantChangeTypeEx(&strv
, v
, MAKELCID(MAKELANGID(LANG_ENGLISH
,SUBLANG_ENGLISH_US
),SORT_DEFAULT
), 0, VT_BSTR
);
542 *str
= V_BSTR(&strv
);
548 *str
= SysAllocString(V_BSTR(v
));
554 hres
= to_primitive(ctx
, v
, ei
, &prim
, HINT_STRING
);
558 hres
= to_string(ctx
, &prim
, ei
, str
);
563 *str
= SysAllocString(V_BOOL(v
) ? trueW
: falseW
);
566 FIXME("unsupported vt %d\n", V_VT(v
));
570 return *str
? S_OK
: E_OUTOFMEMORY
;
573 /* ECMA-262 3rd Edition 9.9 */
574 HRESULT
to_object(script_ctx_t
*ctx
, VARIANT
*v
, IDispatch
**disp
)
581 hres
= create_string(ctx
, V_BSTR(v
), SysStringLen(V_BSTR(v
)), &dispex
);
585 *disp
= (IDispatch
*)_IDispatchEx_(dispex
);
589 hres
= create_number(ctx
, v
, &dispex
);
593 *disp
= (IDispatch
*)_IDispatchEx_(dispex
);
596 IDispatch_AddRef(V_DISPATCH(v
));
597 *disp
= V_DISPATCH(v
);
600 hres
= create_bool(ctx
, V_BOOL(v
), &dispex
);
604 *disp
= (IDispatch
*)_IDispatchEx_(dispex
);
607 FIXME("unsupported vt %d\n", V_VT(v
));