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_jsdisp(jsdisp_t
*jsdisp
)
54 return CONTAINING_RECORD(jsdisp
, ArrayInstance
, dispex
);
57 static inline ArrayInstance
*array_from_vdisp(vdisp_t
*vdisp
)
59 return array_from_jsdisp(vdisp
->u
.jsdisp
);
62 static inline ArrayInstance
*array_this(vdisp_t
*jsthis
)
64 return is_vclass(jsthis
, JSCLASS_ARRAY
) ? array_from_vdisp(jsthis
) : NULL
;
67 static HRESULT
get_length(script_ctx_t
*ctx
, vdisp_t
*vdisp
, jsdisp_t
**jsthis
, DWORD
*ret
)
73 array
= array_this(vdisp
);
75 *jsthis
= &array
->dispex
;
81 return throw_type_error(ctx
, JS_E_JSCRIPT_EXPECTED
, NULL
);
83 hres
= jsdisp_propget_name(vdisp
->u
.jsdisp
, lengthW
, &val
);
87 hres
= to_uint32(ctx
, val
, ret
);
92 *jsthis
= vdisp
->u
.jsdisp
;
96 static HRESULT
set_length(jsdisp_t
*obj
, DWORD length
)
98 if(is_class(obj
, JSCLASS_ARRAY
)) {
99 ((ArrayInstance
*)obj
)->length
= length
;
103 return jsdisp_propput_name(obj
, lengthW
, jsval_number(length
));
106 static WCHAR
*idx_to_str(DWORD idx
, WCHAR
*ptr
)
114 *ptr
-- = '0' + (idx
%10);
121 static HRESULT
Array_get_length(script_ctx_t
*ctx
, jsdisp_t
*jsthis
, jsval_t
*r
)
123 TRACE("%p\n", jsthis
);
125 *r
= jsval_number(array_from_jsdisp(jsthis
)->length
);
129 static HRESULT
Array_set_length(script_ctx_t
*ctx
, jsdisp_t
*jsthis
, jsval_t value
)
131 ArrayInstance
*This
= array_from_jsdisp(jsthis
);
136 TRACE("%p %d\n", This
, This
->length
);
138 hres
= to_number(ctx
, value
, &len
);
144 return throw_range_error(ctx
, JS_E_INVALID_LENGTH
, NULL
);
146 for(i
=len
; i
< This
->length
; i
++) {
147 hres
= jsdisp_delete_idx(&This
->dispex
, i
);
156 static HRESULT
concat_array(jsdisp_t
*array
, ArrayInstance
*obj
, DWORD
*len
)
162 for(i
=0; i
< obj
->length
; i
++) {
163 hres
= jsdisp_get_idx(&obj
->dispex
, i
, &val
);
164 if(hres
== DISP_E_UNKNOWNNAME
)
169 hres
= jsdisp_propput_idx(array
, *len
+i
, val
);
179 static HRESULT
concat_obj(jsdisp_t
*array
, IDispatch
*obj
, DWORD
*len
)
184 jsobj
= iface_to_jsdisp((IUnknown
*)obj
);
186 if(is_class(jsobj
, JSCLASS_ARRAY
)) {
187 hres
= concat_array(array
, (ArrayInstance
*)jsobj
, len
);
188 jsdisp_release(jsobj
);
191 jsdisp_release(jsobj
);
194 return jsdisp_propput_idx(array
, (*len
)++, jsval_disp(obj
));
197 static HRESULT
Array_concat(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
206 hres
= create_array(ctx
, 0, &ret
);
210 hres
= concat_obj(ret
, jsthis
->u
.disp
, &len
);
211 if(SUCCEEDED(hres
)) {
214 for(i
=0; i
< argc
; i
++) {
215 if(is_object_instance(argv
[i
]))
216 hres
= concat_obj(ret
, get_object(argv
[i
]), &len
);
218 hres
= jsdisp_propput_idx(ret
, len
++, argv
[i
]);
234 static HRESULT
array_join(script_ctx_t
*ctx
, jsdisp_t
*array
, DWORD length
, const WCHAR
*sep
, jsval_t
*r
)
236 jsstr_t
**str_tab
, *ret
;
239 HRESULT hres
= E_FAIL
;
243 *r
= jsval_string(jsstr_empty());
247 str_tab
= heap_alloc_zero(length
* sizeof(*str_tab
));
249 return E_OUTOFMEMORY
;
251 for(i
=0; i
< length
; i
++) {
252 hres
= jsdisp_get_idx(array
, i
, &val
);
253 if(hres
== DISP_E_UNKNOWNNAME
) {
256 } else if(FAILED(hres
))
259 if(!is_undefined(val
) && !is_null(val
)) {
260 hres
= to_string(ctx
, val
, str_tab
+i
);
267 if(SUCCEEDED(hres
)) {
268 DWORD seplen
= 0, len
= 0;
270 seplen
= strlenW(sep
);
273 len
= jsstr_length(str_tab
[0]);
274 for(i
=1; i
< length
; i
++) {
277 len
+= jsstr_length(str_tab
[i
]);
278 if(len
> JSSTR_MAX_LENGTH
) {
279 hres
= E_OUTOFMEMORY
;
284 if(SUCCEEDED(hres
)) {
287 ptr
= jsstr_alloc_buf(len
, &ret
);
290 ptr
+= jsstr_flush(str_tab
[0], ptr
);
292 for(i
=1; i
< length
; i
++) {
294 memcpy(ptr
, sep
, seplen
*sizeof(WCHAR
));
299 ptr
+= jsstr_flush(str_tab
[i
], ptr
);
302 hres
= E_OUTOFMEMORY
;
307 for(i
=0; i
< length
; i
++) {
309 jsstr_release(str_tab
[i
]);
315 TRACE("= %s\n", debugstr_jsstr(ret
));
318 *r
= jsval_string(ret
);
324 /* ECMA-262 3rd Edition 15.4.4.5 */
325 static HRESULT
Array_join(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
334 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
342 hres
= to_flat_string(ctx
, argv
[0], &sep_str
, &sep
);
346 hres
= array_join(ctx
, jsthis
, length
, sep
, r
);
348 jsstr_release(sep_str
);
350 hres
= array_join(ctx
, jsthis
, length
, default_separatorW
, r
);
356 static HRESULT
Array_pop(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
366 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
371 hres
= set_length(jsthis
, 0);
376 *r
= jsval_undefined();
381 hres
= jsdisp_get_idx(jsthis
, length
, &val
);
383 hres
= jsdisp_delete_idx(jsthis
, length
);
384 else if(hres
== DISP_E_UNKNOWNNAME
)
385 val
= jsval_undefined();
390 hres
= set_length(jsthis
, length
);
404 /* ECMA-262 3rd Edition 15.4.4.7 */
405 static HRESULT
Array_push(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
415 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
419 for(i
=0; i
< argc
; i
++) {
420 hres
= jsdisp_propput_idx(jsthis
, length
+i
, argv
[i
]);
425 hres
= set_length(jsthis
, length
+argc
);
430 *r
= jsval_number(length
+argc
);
434 static HRESULT
Array_reverse(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
440 HRESULT hres1
, hres2
;
444 hres1
= get_length(ctx
, vthis
, &jsthis
, &length
);
448 for(k
=0; k
<length
/2; k
++) {
451 hres1
= jsdisp_get_idx(jsthis
, k
, &v1
);
452 if(FAILED(hres1
) && hres1
!=DISP_E_UNKNOWNNAME
)
455 hres2
= jsdisp_get_idx(jsthis
, l
, &v2
);
456 if(FAILED(hres2
) && hres2
!=DISP_E_UNKNOWNNAME
) {
461 if(hres1
== DISP_E_UNKNOWNNAME
)
462 hres1
= jsdisp_delete_idx(jsthis
, l
);
464 hres1
= jsdisp_propput_idx(jsthis
, l
, v1
);
472 if(hres2
== DISP_E_UNKNOWNNAME
)
473 hres2
= jsdisp_delete_idx(jsthis
, k
);
475 hres2
= jsdisp_propput_idx(jsthis
, k
, v2
);
484 *r
= jsval_obj(jsdisp_addref(jsthis
));
488 /* ECMA-262 3rd Edition 15.4.4.9 */
489 static HRESULT
Array_shift(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
499 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
504 hres
= set_length(jsthis
, 0);
509 *r
= jsval_undefined();
513 hres
= jsdisp_get_idx(jsthis
, 0, &ret
);
514 if(hres
== DISP_E_UNKNOWNNAME
) {
515 ret
= jsval_undefined();
519 for(i
=1; SUCCEEDED(hres
) && i
<length
; i
++) {
520 hres
= jsdisp_get_idx(jsthis
, i
, &v
);
521 if(hres
== DISP_E_UNKNOWNNAME
)
522 hres
= jsdisp_delete_idx(jsthis
, i
-1);
523 else if(SUCCEEDED(hres
))
524 hres
= jsdisp_propput_idx(jsthis
, i
-1, v
);
527 if(SUCCEEDED(hres
)) {
528 hres
= jsdisp_delete_idx(jsthis
, length
-1);
530 hres
= set_length(jsthis
, length
-1);
543 /* ECMA-262 3rd Edition 15.4.4.10 */
544 static HRESULT
Array_slice(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
546 jsdisp_t
*arr
, *jsthis
;
548 DWORD length
, start
, end
, idx
;
553 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
558 hres
= to_number(ctx
, argv
[0], &range
);
562 range
= floor(range
);
563 if(-range
>length
|| isnan(range
)) start
= 0;
564 else if(range
< 0) start
= range
+length
;
565 else if(range
<= length
) start
= range
;
571 hres
= to_number(ctx
, argv
[1], &range
);
575 range
= floor(range
);
576 if(-range
>length
) end
= 0;
577 else if(range
< 0) end
= range
+length
;
578 else if(range
<= length
) end
= range
;
583 hres
= create_array(ctx
, (end
>start
)?end
-start
:0, &arr
);
587 for(idx
=start
; idx
<end
; idx
++) {
590 hres
= jsdisp_get_idx(jsthis
, idx
, &v
);
591 if(hres
== DISP_E_UNKNOWNNAME
)
594 if(SUCCEEDED(hres
)) {
595 hres
= jsdisp_propput_idx(arr
, idx
-start
, v
);
613 static HRESULT
sort_cmp(script_ctx_t
*ctx
, jsdisp_t
*cmp_func
, jsval_t v1
, jsval_t v2
, INT
*cmp
)
618 jsval_t args
[2] = {v1
, v2
};
622 hres
= jsdisp_call_value(cmp_func
, NULL
, DISPATCH_METHOD
, 2, args
, &res
);
626 hres
= to_number(ctx
, res
, &n
);
633 *cmp
= n
> 0.0 ? 1 : -1;
634 }else if(is_undefined(v1
)) {
635 *cmp
= is_undefined(v2
) ? 0 : 1;
636 }else if(is_undefined(v2
)) {
638 }else if(is_number(v1
) && is_number(v2
)) {
639 double d
= get_number(v1
)-get_number(v2
);
643 *cmp
= d
< -0.0 ? -1 : 0;
647 hres
= to_string(ctx
, v1
, &x
);
651 hres
= to_string(ctx
, v2
, &y
);
652 if(SUCCEEDED(hres
)) {
653 *cmp
= jsstr_cmp(x
, y
);
664 /* ECMA-262 3rd Edition 15.4.4.11 */
665 static HRESULT
Array_sort(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
668 jsdisp_t
*jsthis
, *cmp_func
= NULL
;
669 jsval_t
*vtab
, **sorttab
= NULL
;
676 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
681 WARN("invalid arg_cnt %d\n", argc
);
686 if(!is_object_instance(argv
[0])) {
687 WARN("arg is not dispatch\n");
691 cmp_func
= iface_to_jsdisp((IUnknown
*)get_object(argv
[0]));
692 if(!cmp_func
|| !is_class(cmp_func
, JSCLASS_FUNCTION
)) {
693 WARN("cmp_func is not a function\n");
695 jsdisp_release(cmp_func
);
702 jsdisp_release(cmp_func
);
704 *r
= jsval_obj(jsdisp_addref(jsthis
));
708 vtab
= heap_alloc_zero(length
* sizeof(*vtab
));
710 for(i
=0; i
<length
; i
++) {
711 hres
= jsdisp_get_idx(jsthis
, i
, vtab
+i
);
712 if(hres
== DISP_E_UNKNOWNNAME
) {
713 vtab
[i
] = jsval_undefined();
715 } else if(FAILED(hres
)) {
716 WARN("Could not get elem %d: %08x\n", i
, hres
);
721 hres
= E_OUTOFMEMORY
;
724 if(SUCCEEDED(hres
)) {
725 sorttab
= heap_alloc(length
*2*sizeof(*sorttab
));
727 hres
= E_OUTOFMEMORY
;
731 if(SUCCEEDED(hres
)) {
732 jsval_t
*tmpv
, **tmpbuf
;
735 tmpbuf
= sorttab
+ length
;
736 for(i
=0; i
< length
; i
++)
739 for(i
=0; i
< length
/2; i
++) {
740 hres
= sort_cmp(ctx
, cmp_func
, *sorttab
[2*i
+1], *sorttab
[2*i
], &cmp
);
746 sorttab
[2*i
] = sorttab
[2*i
+1];
747 sorttab
[2*i
+1] = tmpv
;
751 if(SUCCEEDED(hres
)) {
754 for(k
=2; k
< length
; k
*= 2) {
755 for(i
=0; i
+k
< length
; i
+= 2*k
) {
760 bend
= length
- (i
+k
);
762 memcpy(tmpbuf
, sorttab
+i
, k
*sizeof(jsval_t
*));
764 while(a
< k
&& b
< bend
) {
765 hres
= sort_cmp(ctx
, cmp_func
, *tmpbuf
[a
], *sorttab
[i
+k
+b
], &cmp
);
770 sorttab
[i
+a
+b
] = tmpbuf
[a
];
773 sorttab
[i
+a
+b
] = sorttab
[i
+k
+b
];
782 memcpy(sorttab
+i
+a
+b
, tmpbuf
+a
, (k
-a
)*sizeof(jsval_t
*));
790 for(i
=0; SUCCEEDED(hres
) && i
< length
; i
++)
791 hres
= jsdisp_propput_idx(jsthis
, i
, *sorttab
[i
]);
795 for(i
=0; i
< length
; i
++)
796 jsval_release(vtab
[i
]);
801 jsdisp_release(cmp_func
);
807 *r
= jsval_obj(jsdisp_addref(jsthis
));
811 /* ECMA-262 3rd Edition 15.4.4.12 */
812 static HRESULT
Array_splice(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
815 DWORD length
, start
=0, delete_cnt
=0, i
, add_args
= 0;
816 jsdisp_t
*ret_array
= NULL
, *jsthis
;
824 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
829 hres
= to_integer(ctx
, argv
[0], &d
);
835 start
= min(n
, length
);
837 start
= -n
> length
? 0 : length
+ n
;
839 start
= d
< 0.0 ? 0 : length
;
844 hres
= to_integer(ctx
, argv
[1], &d
);
850 delete_cnt
= min(n
, length
-start
);
852 delete_cnt
= length
-start
;
859 hres
= create_array(ctx
, 0, &ret_array
);
863 for(i
=0; SUCCEEDED(hres
) && i
< delete_cnt
; i
++) {
864 hres
= jsdisp_get_idx(jsthis
, start
+i
, &val
);
865 if(hres
== DISP_E_UNKNOWNNAME
) {
867 }else if(SUCCEEDED(hres
)) {
868 hres
= jsdisp_propput_idx(ret_array
, i
, val
);
874 hres
= jsdisp_propput_name(ret_array
, lengthW
, jsval_number(delete_cnt
));
877 if(add_args
< delete_cnt
) {
878 for(i
= start
; SUCCEEDED(hres
) && i
< length
-delete_cnt
; i
++) {
879 hres
= jsdisp_get_idx(jsthis
, i
+delete_cnt
, &val
);
880 if(hres
== DISP_E_UNKNOWNNAME
) {
881 hres
= jsdisp_delete_idx(jsthis
, i
+add_args
);
882 }else if(SUCCEEDED(hres
)) {
883 hres
= jsdisp_propput_idx(jsthis
, i
+add_args
, val
);
888 for(i
=length
; SUCCEEDED(hres
) && i
!= length
-delete_cnt
+add_args
; i
--)
889 hres
= jsdisp_delete_idx(jsthis
, i
-1);
890 }else if(add_args
> delete_cnt
) {
891 for(i
=length
-delete_cnt
; SUCCEEDED(hres
) && i
!= start
; i
--) {
892 hres
= jsdisp_get_idx(jsthis
, i
+delete_cnt
-1, &val
);
893 if(hres
== DISP_E_UNKNOWNNAME
) {
894 hres
= jsdisp_delete_idx(jsthis
, i
+add_args
-1);
895 }else if(SUCCEEDED(hres
)) {
896 hres
= jsdisp_propput_idx(jsthis
, i
+add_args
-1, val
);
902 for(i
=0; SUCCEEDED(hres
) && i
< add_args
; i
++)
903 hres
= jsdisp_propput_idx(jsthis
, start
+i
, argv
[i
+2]);
906 hres
= jsdisp_propput_name(jsthis
, lengthW
, jsval_number(length
-delete_cnt
+add_args
));
910 jsdisp_release(ret_array
);
915 *r
= jsval_obj(ret_array
);
919 /* ECMA-262 3rd Edition 15.4.4.2 */
920 static HRESULT
Array_toString(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
923 ArrayInstance
*array
;
927 array
= array_this(jsthis
);
929 return throw_type_error(ctx
, JS_E_ARRAY_EXPECTED
, NULL
);
931 return array_join(ctx
, &array
->dispex
, array
->length
, default_separatorW
, r
);
934 static HRESULT
Array_toLocaleString(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
941 /* ECMA-262 3rd Edition 15.4.4.13 */
942 static HRESULT
Array_unshift(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
946 WCHAR buf
[14], *buf_end
, *str
;
954 hres
= get_length(ctx
, vthis
, &jsthis
, &length
);
959 buf_end
= buf
+ sizeof(buf
)/sizeof(WCHAR
)-1;
964 str
= idx_to_str(i
, buf_end
);
966 hres
= jsdisp_get_id(jsthis
, str
, 0, &id
);
967 if(SUCCEEDED(hres
)) {
968 hres
= jsdisp_propget(jsthis
, id
, &val
);
972 hres
= jsdisp_propput_idx(jsthis
, i
+argc
, val
);
974 }else if(hres
== DISP_E_UNKNOWNNAME
) {
975 hres
= IDispatchEx_DeleteMemberByDispID(vthis
->u
.dispex
, id
);
983 for(i
=0; i
<argc
; i
++) {
984 hres
= jsdisp_propput_idx(jsthis
, i
, argv
[i
]);
991 hres
= set_length(jsthis
, length
);
997 *r
= ctx
->version
< 2 ? jsval_undefined() : jsval_number(length
);
1001 static HRESULT
Array_get_value(script_ctx_t
*ctx
, jsdisp_t
*jsthis
, jsval_t
*r
)
1003 ArrayInstance
*array
= array_from_jsdisp(jsthis
);
1007 return array_join(ctx
, &array
->dispex
, array
->length
, default_separatorW
, r
);
1010 static void Array_destructor(jsdisp_t
*dispex
)
1015 static void Array_on_put(jsdisp_t
*dispex
, const WCHAR
*name
)
1017 ArrayInstance
*array
= (ArrayInstance
*)dispex
;
1018 const WCHAR
*ptr
= name
;
1024 while(*ptr
&& isdigitW(*ptr
)) {
1025 id
= id
*10 + (*ptr
-'0');
1032 if(id
>= array
->length
)
1033 array
->length
= id
+1;
1036 static const builtin_prop_t Array_props
[] = {
1037 {concatW
, Array_concat
, PROPF_METHOD
|1},
1038 {joinW
, Array_join
, PROPF_METHOD
|1},
1039 {lengthW
, NULL
,0, Array_get_length
, Array_set_length
},
1040 {popW
, Array_pop
, PROPF_METHOD
},
1041 {pushW
, Array_push
, PROPF_METHOD
|1},
1042 {reverseW
, Array_reverse
, PROPF_METHOD
},
1043 {shiftW
, Array_shift
, PROPF_METHOD
},
1044 {sliceW
, Array_slice
, PROPF_METHOD
|2},
1045 {sortW
, Array_sort
, PROPF_METHOD
|1},
1046 {spliceW
, Array_splice
, PROPF_METHOD
|2},
1047 {toLocaleStringW
, Array_toLocaleString
, PROPF_METHOD
},
1048 {toStringW
, Array_toString
, PROPF_METHOD
},
1049 {unshiftW
, Array_unshift
, PROPF_METHOD
|1},
1052 static const builtin_info_t Array_info
= {
1054 {NULL
, NULL
,0, Array_get_value
},
1055 sizeof(Array_props
)/sizeof(*Array_props
),
1061 static const builtin_prop_t ArrayInst_props
[] = {
1062 {lengthW
, NULL
,0, Array_get_length
, Array_set_length
}
1065 static const builtin_info_t ArrayInst_info
= {
1067 {NULL
, NULL
,0, Array_get_value
},
1068 sizeof(ArrayInst_props
)/sizeof(*ArrayInst_props
),
1074 static HRESULT
ArrayConstr_value(script_ctx_t
*ctx
, vdisp_t
*vthis
, WORD flags
, unsigned argc
, jsval_t
*argv
,
1084 case DISPATCH_METHOD
:
1085 case DISPATCH_CONSTRUCT
: {
1086 if(argc
== 1 && is_number(argv
[0])) {
1087 double n
= get_number(argv
[0]);
1089 if(n
< 0 || !is_int32(n
))
1090 return throw_range_error(ctx
, JS_E_INVALID_LENGTH
, NULL
);
1092 hres
= create_array(ctx
, n
, &obj
);
1096 *r
= jsval_obj(obj
);
1100 hres
= create_array(ctx
, argc
, &obj
);
1104 for(i
=0; i
< argc
; i
++) {
1105 hres
= jsdisp_propput_idx(obj
, i
, argv
[i
]);
1110 jsdisp_release(obj
);
1114 *r
= jsval_obj(obj
);
1118 FIXME("unimplemented flags: %x\n", flags
);
1125 static HRESULT
alloc_array(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, ArrayInstance
**ret
)
1127 ArrayInstance
*array
;
1130 array
= heap_alloc_zero(sizeof(ArrayInstance
));
1132 return E_OUTOFMEMORY
;
1134 if(object_prototype
)
1135 hres
= init_dispex(&array
->dispex
, ctx
, &Array_info
, object_prototype
);
1137 hres
= init_dispex_from_constr(&array
->dispex
, ctx
, &ArrayInst_info
, ctx
->array_constr
);
1148 HRESULT
create_array_constr(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, jsdisp_t
**ret
)
1150 ArrayInstance
*array
;
1153 static const WCHAR ArrayW
[] = {'A','r','r','a','y',0};
1155 hres
= alloc_array(ctx
, object_prototype
, &array
);
1159 hres
= create_builtin_constructor(ctx
, ArrayConstr_value
, ArrayW
, NULL
, PROPF_CONSTR
|1, &array
->dispex
, ret
);
1161 jsdisp_release(&array
->dispex
);
1165 HRESULT
create_array(script_ctx_t
*ctx
, DWORD length
, jsdisp_t
**ret
)
1167 ArrayInstance
*array
;
1170 hres
= alloc_array(ctx
, NULL
, &array
);
1174 array
->length
= length
;
1176 *ret
= &array
->dispex
;