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"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
36 static const WCHAR lengthW
[] = {'l','e','n','g','t','h',0};
37 static const WCHAR concatW
[] = {'c','o','n','c','a','t',0};
38 static const WCHAR joinW
[] = {'j','o','i','n',0};
39 static const WCHAR popW
[] = {'p','o','p',0};
40 static const WCHAR pushW
[] = {'p','u','s','h',0};
41 static const WCHAR reverseW
[] = {'r','e','v','e','r','s','e',0};
42 static const WCHAR shiftW
[] = {'s','h','i','f','t',0};
43 static const WCHAR sliceW
[] = {'s','l','i','c','e',0};
44 static const WCHAR sortW
[] = {'s','o','r','t',0};
45 static const WCHAR spliceW
[] = {'s','p','l','i','c','e',0};
46 static const WCHAR toStringW
[] = {'t','o','S','t','r','i','n','g',0};
47 static const WCHAR toLocaleStringW
[] = {'t','o','L','o','c','a','l','e','S','t','r','i','n','g',0};
48 static const WCHAR unshiftW
[] = {'u','n','s','h','i','f','t',0};
50 static const WCHAR default_separatorW
[] = {',',0};
52 static inline ArrayInstance
*array_from_vdisp(vdisp_t
*vdisp
)
54 return (ArrayInstance
*)vdisp
->u
.jsdisp
;
57 static inline ArrayInstance
*array_this(vdisp_t
*jsthis
)
59 return is_vclass(jsthis
, JSCLASS_ARRAY
) ? array_from_vdisp(jsthis
) : NULL
;
62 static HRESULT
get_length(script_ctx_t
*ctx
, vdisp_t
*vdisp
, jsdisp_t
**jsthis
, DWORD
*ret
)
68 array
= array_this(vdisp
);
70 *jsthis
= &array
->dispex
;
76 return throw_type_error(ctx
, JS_E_JSCRIPT_EXPECTED
, NULL
);
78 hres
= jsdisp_propget_name(vdisp
->u
.jsdisp
, lengthW
, &val
);
82 hres
= to_uint32(ctx
, val
, ret
);
87 *jsthis
= vdisp
->u
.jsdisp
;
91 static HRESULT
set_length(jsdisp_t
*obj
, DWORD length
)
93 if(is_class(obj
, JSCLASS_ARRAY
)) {
94 ((ArrayInstance
*)obj
)->length
= length
;
98 return jsdisp_propput_name(obj
, lengthW
, jsval_number(length
));
101 static WCHAR
*idx_to_str(DWORD idx
, WCHAR
*ptr
)
109 *ptr
-- = '0' + (idx
%10);
116 static HRESULT
Array_get_length(script_ctx_t
*ctx
, vdisp_t
*jsthis
, jsval_t
*r
)
118 ArrayInstance
*This
= array_from_vdisp(jsthis
);
120 TRACE("%p %d\n", This
, This
->length
);
122 *r
= jsval_number(This
->length
);
126 static HRESULT
Array_set_length(script_ctx_t
*ctx
, vdisp_t
*jsthis
, jsval_t value
)
128 ArrayInstance
*This
= array_from_vdisp(jsthis
);
133 TRACE("%p %d\n", This
, This
->length
);
135 hres
= to_number(ctx
, value
, &len
);
141 return throw_range_error(ctx
, JS_E_INVALID_LENGTH
, NULL
);
143 for(i
=len
; i
< This
->length
; i
++) {
144 hres
= jsdisp_delete_idx(&This
->dispex
, i
);
153 static HRESULT
concat_array(jsdisp_t
*array
, ArrayInstance
*obj
, DWORD
*len
)
159 for(i
=0; i
< obj
->length
; i
++) {
160 hres
= jsdisp_get_idx(&obj
->dispex
, i
, &val
);
161 if(hres
== DISP_E_UNKNOWNNAME
)
166 hres
= jsdisp_propput_idx(array
, *len
+i
, val
);
176 static HRESULT
concat_obj(jsdisp_t
*array
, IDispatch
*obj
, DWORD
*len
)
181 jsobj
= iface_to_jsdisp((IUnknown
*)obj
);
183 if(is_class(jsobj
, JSCLASS_ARRAY
)) {
184 hres
= concat_array(array
, (ArrayInstance
*)jsobj
, len
);
185 jsdisp_release(jsobj
);
188 jsdisp_release(jsobj
);
191 return jsdisp_propput_idx(array
, (*len
)++, jsval_disp(obj
));
194 static HRESULT
Array_concat(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
203 hres
= create_array(ctx
, 0, &ret
);
207 hres
= concat_obj(ret
, jsthis
->u
.disp
, &len
);
208 if(SUCCEEDED(hres
)) {
211 for(i
=0; i
< argc
; i
++) {
212 if(is_object_instance(argv
[i
]))
213 hres
= concat_obj(ret
, get_object(argv
[i
]), &len
);
215 hres
= jsdisp_propput_idx(ret
, len
++, argv
[i
]);
231 static HRESULT
array_join(script_ctx_t
*ctx
, jsdisp_t
*array
, DWORD length
, const WCHAR
*sep
, jsval_t
*r
)
233 jsstr_t
**str_tab
, *ret
;
236 HRESULT hres
= E_FAIL
;
240 *r
= jsval_string(jsstr_empty());
244 str_tab
= heap_alloc_zero(length
* sizeof(*str_tab
));
246 return E_OUTOFMEMORY
;
248 for(i
=0; i
< length
; i
++) {
249 hres
= jsdisp_get_idx(array
, i
, &val
);
250 if(hres
== DISP_E_UNKNOWNNAME
) {
253 } else if(FAILED(hres
))
256 if(!is_undefined(val
) && !is_null(val
)) {
257 hres
= to_string(ctx
, val
, str_tab
+i
);
264 if(SUCCEEDED(hres
)) {
265 DWORD seplen
= 0, len
= 0;
267 seplen
= strlenW(sep
);
270 len
= jsstr_length(str_tab
[0]);
271 for(i
=1; i
< length
; i
++) {
274 len
+= jsstr_length(str_tab
[i
]);
275 if(len
> JSSTR_MAX_LENGTH
) {
276 hres
= E_OUTOFMEMORY
;
281 if(SUCCEEDED(hres
)) {
284 ptr
= jsstr_alloc_buf(len
, &ret
);
287 ptr
+= jsstr_flush(str_tab
[0], ptr
);
289 for(i
=1; i
< length
; i
++) {
291 memcpy(ptr
, sep
, seplen
*sizeof(WCHAR
));
296 ptr
+= jsstr_flush(str_tab
[i
], ptr
);
299 hres
= E_OUTOFMEMORY
;
304 for(i
=0; i
< length
; i
++) {
306 jsstr_release(str_tab
[i
]);
312 TRACE("= %s\n", debugstr_jsstr(ret
));
315 *r
= jsval_string(ret
);
321 /* ECMA-262 3rd Edition 15.4.4.5 */
322 static HRESULT
Array_join(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
331 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
339 hres
= to_flat_string(ctx
, argv
[0], &sep_str
, &sep
);
343 hres
= array_join(ctx
, jsthis
, length
, sep
, r
);
345 jsstr_release(sep_str
);
347 hres
= array_join(ctx
, jsthis
, length
, default_separatorW
, r
);
353 static HRESULT
Array_pop(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
363 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
368 hres
= set_length(jsthis
, 0);
373 *r
= jsval_undefined();
378 hres
= jsdisp_get_idx(jsthis
, length
, &val
);
380 hres
= jsdisp_delete_idx(jsthis
, length
);
381 else if(hres
== DISP_E_UNKNOWNNAME
)
382 val
= jsval_undefined();
387 hres
= set_length(jsthis
, length
);
401 /* ECMA-262 3rd Edition 15.4.4.7 */
402 static HRESULT
Array_push(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
412 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
416 for(i
=0; i
< argc
; i
++) {
417 hres
= jsdisp_propput_idx(jsthis
, length
+i
, argv
[i
]);
422 hres
= set_length(jsthis
, length
+argc
);
427 *r
= jsval_number(length
+argc
);
431 static HRESULT
Array_reverse(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
437 HRESULT hres1
, hres2
;
441 hres1
= get_length(ctx
, vthis
, &jsthis
, &length
);
445 for(k
=0; k
<length
/2; k
++) {
448 hres1
= jsdisp_get_idx(jsthis
, k
, &v1
);
449 if(FAILED(hres1
) && hres1
!=DISP_E_UNKNOWNNAME
)
452 hres2
= jsdisp_get_idx(jsthis
, l
, &v2
);
453 if(FAILED(hres2
) && hres2
!=DISP_E_UNKNOWNNAME
) {
458 if(hres1
== DISP_E_UNKNOWNNAME
)
459 hres1
= jsdisp_delete_idx(jsthis
, l
);
461 hres1
= jsdisp_propput_idx(jsthis
, l
, v1
);
469 if(hres2
== DISP_E_UNKNOWNNAME
)
470 hres2
= jsdisp_delete_idx(jsthis
, k
);
472 hres2
= jsdisp_propput_idx(jsthis
, k
, v2
);
481 *r
= jsval_obj(jsdisp_addref(jsthis
));
485 /* ECMA-262 3rd Edition 15.4.4.9 */
486 static HRESULT
Array_shift(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
496 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
501 hres
= set_length(jsthis
, 0);
506 *r
= jsval_undefined();
510 hres
= jsdisp_get_idx(jsthis
, 0, &ret
);
511 if(hres
== DISP_E_UNKNOWNNAME
) {
512 ret
= jsval_undefined();
516 for(i
=1; SUCCEEDED(hres
) && i
<length
; i
++) {
517 hres
= jsdisp_get_idx(jsthis
, i
, &v
);
518 if(hres
== DISP_E_UNKNOWNNAME
)
519 hres
= jsdisp_delete_idx(jsthis
, i
-1);
520 else if(SUCCEEDED(hres
))
521 hres
= jsdisp_propput_idx(jsthis
, i
-1, v
);
524 if(SUCCEEDED(hres
)) {
525 hres
= jsdisp_delete_idx(jsthis
, length
-1);
527 hres
= set_length(jsthis
, length
-1);
540 /* ECMA-262 3rd Edition 15.4.4.10 */
541 static HRESULT
Array_slice(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
543 jsdisp_t
*arr
, *jsthis
;
545 DWORD length
, start
, end
, idx
;
550 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
555 hres
= to_number(ctx
, argv
[0], &range
);
559 range
= floor(range
);
560 if(-range
>length
|| isnan(range
)) start
= 0;
561 else if(range
< 0) start
= range
+length
;
562 else if(range
<= length
) start
= range
;
568 hres
= to_number(ctx
, argv
[1], &range
);
572 range
= floor(range
);
573 if(-range
>length
) end
= 0;
574 else if(range
< 0) end
= range
+length
;
575 else if(range
<= length
) end
= range
;
580 hres
= create_array(ctx
, (end
>start
)?end
-start
:0, &arr
);
584 for(idx
=start
; idx
<end
; idx
++) {
587 hres
= jsdisp_get_idx(jsthis
, idx
, &v
);
588 if(hres
== DISP_E_UNKNOWNNAME
)
591 if(SUCCEEDED(hres
)) {
592 hres
= jsdisp_propput_idx(arr
, idx
-start
, v
);
610 static HRESULT
sort_cmp(script_ctx_t
*ctx
, jsdisp_t
*cmp_func
, jsval_t v1
, jsval_t v2
, INT
*cmp
)
615 jsval_t args
[2] = {v1
, v2
};
619 hres
= jsdisp_call_value(cmp_func
, NULL
, DISPATCH_METHOD
, 2, args
, &res
);
623 hres
= to_number(ctx
, res
, &n
);
630 *cmp
= n
> 0.0 ? 1 : -1;
631 }else if(is_undefined(v1
)) {
632 *cmp
= is_undefined(v2
) ? 0 : 1;
633 }else if(is_undefined(v2
)) {
635 }else if(is_number(v1
) && is_number(v2
)) {
636 double d
= get_number(v1
)-get_number(v2
);
640 *cmp
= d
< -0.0 ? -1 : 0;
644 hres
= to_string(ctx
, v1
, &x
);
648 hres
= to_string(ctx
, v2
, &y
);
649 if(SUCCEEDED(hres
)) {
650 *cmp
= jsstr_cmp(x
, y
);
661 /* ECMA-262 3rd Edition 15.4.4.11 */
662 static HRESULT
Array_sort(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
665 jsdisp_t
*jsthis
, *cmp_func
= NULL
;
666 jsval_t
*vtab
, **sorttab
= NULL
;
673 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
678 WARN("invalid arg_cnt %d\n", argc
);
683 if(!is_object_instance(argv
[0])) {
684 WARN("arg is not dispatch\n");
688 cmp_func
= iface_to_jsdisp((IUnknown
*)get_object(argv
[0]));
689 if(!cmp_func
|| !is_class(cmp_func
, JSCLASS_FUNCTION
)) {
690 WARN("cmp_func is not a function\n");
692 jsdisp_release(cmp_func
);
699 jsdisp_release(cmp_func
);
701 *r
= jsval_obj(jsdisp_addref(jsthis
));
705 vtab
= heap_alloc_zero(length
* sizeof(*vtab
));
707 for(i
=0; i
<length
; i
++) {
708 hres
= jsdisp_get_idx(jsthis
, i
, vtab
+i
);
709 if(hres
== DISP_E_UNKNOWNNAME
) {
710 vtab
[i
] = jsval_undefined();
712 } else if(FAILED(hres
)) {
713 WARN("Could not get elem %d: %08x\n", i
, hres
);
718 hres
= E_OUTOFMEMORY
;
721 if(SUCCEEDED(hres
)) {
722 sorttab
= heap_alloc(length
*2*sizeof(*sorttab
));
724 hres
= E_OUTOFMEMORY
;
728 if(SUCCEEDED(hres
)) {
729 jsval_t
*tmpv
, **tmpbuf
;
732 tmpbuf
= sorttab
+ length
;
733 for(i
=0; i
< length
; i
++)
736 for(i
=0; i
< length
/2; i
++) {
737 hres
= sort_cmp(ctx
, cmp_func
, *sorttab
[2*i
+1], *sorttab
[2*i
], &cmp
);
743 sorttab
[2*i
] = sorttab
[2*i
+1];
744 sorttab
[2*i
+1] = tmpv
;
748 if(SUCCEEDED(hres
)) {
751 for(k
=2; k
< length
; k
*= 2) {
752 for(i
=0; i
+k
< length
; i
+= 2*k
) {
757 bend
= length
- (i
+k
);
759 memcpy(tmpbuf
, sorttab
+i
, k
*sizeof(jsval_t
*));
761 while(a
< k
&& b
< bend
) {
762 hres
= sort_cmp(ctx
, cmp_func
, *tmpbuf
[a
], *sorttab
[i
+k
+b
], &cmp
);
767 sorttab
[i
+a
+b
] = tmpbuf
[a
];
770 sorttab
[i
+a
+b
] = sorttab
[i
+k
+b
];
779 memcpy(sorttab
+i
+a
+b
, tmpbuf
+a
, (k
-a
)*sizeof(jsval_t
*));
787 for(i
=0; SUCCEEDED(hres
) && i
< length
; i
++)
788 hres
= jsdisp_propput_idx(jsthis
, i
, *sorttab
[i
]);
792 for(i
=0; i
< length
; i
++)
793 jsval_release(vtab
[i
]);
798 jsdisp_release(cmp_func
);
804 *r
= jsval_obj(jsdisp_addref(jsthis
));
808 /* ECMA-262 3rd Edition 15.4.4.12 */
809 static HRESULT
Array_splice(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
812 DWORD length
, start
=0, delete_cnt
=0, i
, add_args
= 0;
813 jsdisp_t
*ret_array
= NULL
, *jsthis
;
821 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
826 hres
= to_integer(ctx
, argv
[0], &d
);
832 start
= min(n
, length
);
834 start
= -n
> length
? 0 : length
+ n
;
836 start
= d
< 0.0 ? 0 : length
;
841 hres
= to_integer(ctx
, argv
[1], &d
);
847 delete_cnt
= min(n
, length
-start
);
849 delete_cnt
= length
-start
;
856 hres
= create_array(ctx
, 0, &ret_array
);
860 for(i
=0; SUCCEEDED(hres
) && i
< delete_cnt
; i
++) {
861 hres
= jsdisp_get_idx(jsthis
, start
+i
, &val
);
862 if(hres
== DISP_E_UNKNOWNNAME
) {
864 }else if(SUCCEEDED(hres
)) {
865 hres
= jsdisp_propput_idx(ret_array
, i
, val
);
871 hres
= jsdisp_propput_name(ret_array
, lengthW
, jsval_number(delete_cnt
));
874 if(add_args
< delete_cnt
) {
875 for(i
= start
; SUCCEEDED(hres
) && i
< length
-delete_cnt
; i
++) {
876 hres
= jsdisp_get_idx(jsthis
, i
+delete_cnt
, &val
);
877 if(hres
== DISP_E_UNKNOWNNAME
) {
878 hres
= jsdisp_delete_idx(jsthis
, i
+add_args
);
879 }else if(SUCCEEDED(hres
)) {
880 hres
= jsdisp_propput_idx(jsthis
, i
+add_args
, val
);
885 for(i
=length
; SUCCEEDED(hres
) && i
!= length
-delete_cnt
+add_args
; i
--)
886 hres
= jsdisp_delete_idx(jsthis
, i
-1);
887 }else if(add_args
> delete_cnt
) {
888 for(i
=length
-delete_cnt
; SUCCEEDED(hres
) && i
!= start
; i
--) {
889 hres
= jsdisp_get_idx(jsthis
, i
+delete_cnt
-1, &val
);
890 if(hres
== DISP_E_UNKNOWNNAME
) {
891 hres
= jsdisp_delete_idx(jsthis
, i
+add_args
-1);
892 }else if(SUCCEEDED(hres
)) {
893 hres
= jsdisp_propput_idx(jsthis
, i
+add_args
-1, val
);
899 for(i
=0; SUCCEEDED(hres
) && i
< add_args
; i
++)
900 hres
= jsdisp_propput_idx(jsthis
, start
+i
, argv
[i
+2]);
903 hres
= jsdisp_propput_name(jsthis
, lengthW
, jsval_number(length
-delete_cnt
+add_args
));
907 jsdisp_release(ret_array
);
912 *r
= jsval_obj(ret_array
);
916 /* ECMA-262 3rd Edition 15.4.4.2 */
917 static HRESULT
Array_toString(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
920 ArrayInstance
*array
;
924 array
= array_this(jsthis
);
926 return throw_type_error(ctx
, JS_E_ARRAY_EXPECTED
, NULL
);
928 return array_join(ctx
, &array
->dispex
, array
->length
, default_separatorW
, r
);
931 static HRESULT
Array_toLocaleString(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
938 /* ECMA-262 3rd Edition 15.4.4.13 */
939 static HRESULT
Array_unshift(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
943 WCHAR buf
[14], *buf_end
, *str
;
951 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
956 buf_end
= buf
+ sizeof(buf
)/sizeof(WCHAR
)-1;
961 str
= idx_to_str(i
, buf_end
);
963 hres
= jsdisp_get_id(jsthis
, str
, 0, &id
);
964 if(SUCCEEDED(hres
)) {
965 hres
= jsdisp_propget(jsthis
, id
, &val
);
969 hres
= jsdisp_propput_idx(jsthis
, i
+argc
, val
);
971 }else if(hres
== DISP_E_UNKNOWNNAME
) {
972 hres
= IDispatchEx_DeleteMemberByDispID(vthis
->u
.dispex
, id
);
980 for(i
=0; i
<argc
; i
++) {
981 hres
= jsdisp_propput_idx(jsthis
, i
, argv
[i
]);
988 hres
= set_length(jsthis
, length
);
994 *r
= ctx
->version
< 2 ? jsval_undefined() : jsval_number(length
);
998 static HRESULT
Array_get_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, jsval_t
*r
)
1002 return array_join(ctx
, jsthis
->u
.jsdisp
, array_from_vdisp(jsthis
)->length
, default_separatorW
, r
);
1005 static void Array_destructor(jsdisp_t
*dispex
)
1010 static void Array_on_put(jsdisp_t
*dispex
, const WCHAR
*name
)
1012 ArrayInstance
*array
= (ArrayInstance
*)dispex
;
1013 const WCHAR
*ptr
= name
;
1019 while(*ptr
&& isdigitW(*ptr
)) {
1020 id
= id
*10 + (*ptr
-'0');
1027 if(id
>= array
->length
)
1028 array
->length
= id
+1;
1031 static const builtin_prop_t Array_props
[] = {
1032 {concatW
, Array_concat
, PROPF_METHOD
|1},
1033 {joinW
, Array_join
, PROPF_METHOD
|1},
1034 {lengthW
, NULL
,0, Array_get_length
, Array_set_length
},
1035 {popW
, Array_pop
, PROPF_METHOD
},
1036 {pushW
, Array_push
, PROPF_METHOD
|1},
1037 {reverseW
, Array_reverse
, PROPF_METHOD
},
1038 {shiftW
, Array_shift
, PROPF_METHOD
},
1039 {sliceW
, Array_slice
, PROPF_METHOD
|2},
1040 {sortW
, Array_sort
, PROPF_METHOD
|1},
1041 {spliceW
, Array_splice
, PROPF_METHOD
|2},
1042 {toLocaleStringW
, Array_toLocaleString
, PROPF_METHOD
},
1043 {toStringW
, Array_toString
, PROPF_METHOD
},
1044 {unshiftW
, Array_unshift
, PROPF_METHOD
|1},
1047 static const builtin_info_t Array_info
= {
1049 {NULL
, NULL
,0, Array_get_value
},
1050 sizeof(Array_props
)/sizeof(*Array_props
),
1056 static const builtin_prop_t ArrayInst_props
[] = {
1057 {lengthW
, NULL
,0, Array_get_length
, Array_set_length
}
1060 static const builtin_info_t ArrayInst_info
= {
1062 {NULL
, NULL
,0, Array_get_value
},
1063 sizeof(ArrayInst_props
)/sizeof(*ArrayInst_props
),
1069 static HRESULT
ArrayConstr_value(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
1079 case DISPATCH_METHOD
:
1080 case DISPATCH_CONSTRUCT
: {
1081 if(argc
== 1 && is_number(argv
[0])) {
1082 double n
= get_number(argv
[0]);
1084 if(n
< 0 || !is_int32(n
))
1085 return throw_range_error(ctx
, JS_E_INVALID_LENGTH
, NULL
);
1087 hres
= create_array(ctx
, n
, &obj
);
1091 *r
= jsval_obj(obj
);
1095 hres
= create_array(ctx
, argc
, &obj
);
1099 for(i
=0; i
< argc
; i
++) {
1100 hres
= jsdisp_propput_idx(obj
, i
, argv
[i
]);
1105 jsdisp_release(obj
);
1109 *r
= jsval_obj(obj
);
1113 FIXME("unimplemented flags: %x\n", flags
);
1120 static HRESULT
alloc_array(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, ArrayInstance
**ret
)
1122 ArrayInstance
*array
;
1125 array
= heap_alloc_zero(sizeof(ArrayInstance
));
1127 return E_OUTOFMEMORY
;
1129 if(object_prototype
)
1130 hres
= init_dispex(&array
->dispex
, ctx
, &Array_info
, object_prototype
);
1132 hres
= init_dispex_from_constr(&array
->dispex
, ctx
, &ArrayInst_info
, ctx
->array_constr
);
1143 HRESULT
create_array_constr(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, jsdisp_t
**ret
)
1145 ArrayInstance
*array
;
1148 static const WCHAR ArrayW
[] = {'A','r','r','a','y',0};
1150 hres
= alloc_array(ctx
, object_prototype
, &array
);
1154 hres
= create_builtin_constructor(ctx
, ArrayConstr_value
, ArrayW
, NULL
, PROPF_CONSTR
|1, &array
->dispex
, ret
);
1156 jsdisp_release(&array
->dispex
);
1160 HRESULT
create_array(script_ctx_t
*ctx
, DWORD length
, jsdisp_t
**ret
)
1162 ArrayInstance
*array
;
1165 hres
= alloc_array(ctx
, NULL
, &array
);
1169 array
->length
= length
;
1171 *ret
= &array
->dispex
;