jscript: Make Array.pop generic.
[wine] / dlls / jscript / array.c
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <math.h>
20
21 #include "jscript.h"
22
23 #include "wine/debug.h"
24
25 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
26
27 typedef struct {
28     DispatchEx dispex;
29
30     DWORD length;
31 } ArrayInstance;
32
33 static const WCHAR lengthW[] = {'l','e','n','g','t','h',0};
34 static const WCHAR concatW[] = {'c','o','n','c','a','t',0};
35 static const WCHAR joinW[] = {'j','o','i','n',0};
36 static const WCHAR popW[] = {'p','o','p',0};
37 static const WCHAR pushW[] = {'p','u','s','h',0};
38 static const WCHAR reverseW[] = {'r','e','v','e','r','s','e',0};
39 static const WCHAR shiftW[] = {'s','h','i','f','t',0};
40 static const WCHAR sliceW[] = {'s','l','i','c','e',0};
41 static const WCHAR sortW[] = {'s','o','r','t',0};
42 static const WCHAR spliceW[] = {'s','p','l','i','c','e',0};
43 static const WCHAR toStringW[] = {'t','o','S','t','r','i','n','g',0};
44 static const WCHAR toLocaleStringW[] = {'t','o','L','o','c','a','l','e','S','t','r','i','n','g',0};
45 static const WCHAR unshiftW[] = {'u','n','s','h','i','f','t',0};
46
47 static const WCHAR default_separatorW[] = {',',0};
48
49 static inline ArrayInstance *array_from_vdisp(vdisp_t *vdisp)
50 {
51     return (ArrayInstance*)vdisp->u.jsdisp;
52 }
53
54 static inline ArrayInstance *array_this(vdisp_t *jsthis)
55 {
56     return is_vclass(jsthis, JSCLASS_ARRAY) ? array_from_vdisp(jsthis) : NULL;
57 }
58
59 static HRESULT get_length(script_ctx_t *ctx, vdisp_t *vdisp, jsexcept_t *ei, DispatchEx **jsthis, DWORD *ret)
60 {
61     ArrayInstance *array;
62     VARIANT var;
63     HRESULT hres;
64
65     array = array_this(vdisp);
66     if(array) {
67         *jsthis = &array->dispex;
68         *ret = array->length;
69         return S_OK;
70     }
71
72     if(!is_jsdisp(vdisp))
73         return throw_type_error(ctx, ei, IDS_JSCRIPT_EXPECTED, NULL);
74
75     hres = jsdisp_propget_name(vdisp->u.jsdisp, lengthW, &var, ei, NULL/*FIXME*/);
76     if(FAILED(hres))
77         return hres;
78
79     hres = to_uint32(ctx, &var, ei, ret);
80     VariantClear(&var);
81     if(FAILED(hres))
82         return hres;
83
84     *jsthis = vdisp->u.jsdisp;
85     return S_OK;
86 }
87
88 static HRESULT set_length(DispatchEx *obj, jsexcept_t *ei, DWORD length)
89 {
90     VARIANT var;
91
92     if(is_class(obj, JSCLASS_ARRAY)) {
93         ((ArrayInstance*)obj)->length = length;
94         return S_OK;
95     }
96
97     V_VT(&var) = VT_I4;
98     V_I4(&var) = length;
99     return jsdisp_propput_name(obj, lengthW, &var, ei, NULL/*FIXME*/);
100 }
101
102 static WCHAR *idx_to_str(DWORD idx, WCHAR *ptr)
103 {
104     if(!idx) {
105         *ptr = '0';
106         return ptr;
107     }
108
109     while(idx) {
110         *ptr-- = '0' + (idx%10);
111         idx /= 10;
112     }
113
114     return ptr+1;
115 }
116
117 static HRESULT Array_length(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
118         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
119 {
120     ArrayInstance *This = array_from_vdisp(jsthis);
121
122     TRACE("%p %d\n", This, This->length);
123
124     switch(flags) {
125     case DISPATCH_PROPERTYGET:
126         V_VT(retv) = VT_I4;
127         V_I4(retv) = This->length;
128         break;
129     case DISPATCH_PROPERTYPUT: {
130         VARIANT num;
131         DOUBLE len = -1;
132         DWORD i;
133         HRESULT hres;
134
135         hres = to_number(ctx, get_arg(dp, 0), ei, &num);
136         if(V_VT(&num) == VT_I4)
137             len = V_I4(&num);
138         else
139             len = floor(V_R8(&num));
140
141         if(len!=(DWORD)len)
142             return throw_range_error(ctx, ei, IDS_INVALID_LENGTH, NULL);
143
144         for(i=len; i<This->length; i++) {
145             hres = jsdisp_delete_idx(&This->dispex, i);
146             if(FAILED(hres))
147                 return hres;
148         }
149
150         This->length = len;
151         break;
152     }
153     default:
154         FIXME("unimplemented flags %x\n", flags);
155         return E_NOTIMPL;
156     }
157
158     return S_OK;
159 }
160
161 static HRESULT concat_array(DispatchEx *array, ArrayInstance *obj, DWORD *len,
162         jsexcept_t *ei, IServiceProvider *caller)
163 {
164     VARIANT var;
165     DWORD i;
166     HRESULT hres;
167
168     for(i=0; i < obj->length; i++) {
169         hres = jsdisp_propget_idx(&obj->dispex, i, &var, ei, caller);
170         if(hres == DISP_E_UNKNOWNNAME)
171             continue;
172         if(FAILED(hres))
173             return hres;
174
175         hres = jsdisp_propput_idx(array, *len+i, &var, ei, caller);
176         VariantClear(&var);
177         if(FAILED(hres))
178             return hres;
179     }
180
181     *len += obj->length;
182     return S_OK;
183 }
184
185 static HRESULT concat_obj(DispatchEx *array, IDispatch *obj, DWORD *len, jsexcept_t *ei, IServiceProvider *caller)
186 {
187     DispatchEx *jsobj;
188     VARIANT var;
189     HRESULT hres;
190
191     jsobj = iface_to_jsdisp((IUnknown*)obj);
192     if(jsobj) {
193         if(is_class(jsobj, JSCLASS_ARRAY)) {
194             hres = concat_array(array, (ArrayInstance*)jsobj, len, ei, caller);
195             jsdisp_release(jsobj);
196             return hres;
197         }
198         jsdisp_release(jsobj);
199     }
200
201     V_VT(&var) = VT_DISPATCH;
202     V_DISPATCH(&var) = obj;
203     return jsdisp_propput_idx(array, (*len)++, &var, ei, caller);
204 }
205
206 static HRESULT Array_concat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
207         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
208 {
209     DispatchEx *ret;
210     DWORD len = 0;
211     HRESULT hres;
212
213     TRACE("\n");
214
215     hres = create_array(ctx, 0, &ret);
216     if(FAILED(hres))
217         return hres;
218
219     hres = concat_obj(ret, jsthis->u.disp, &len, ei, caller);
220     if(SUCCEEDED(hres)) {
221         VARIANT *arg;
222         DWORD i;
223
224         for(i=0; i < arg_cnt(dp); i++) {
225             arg = get_arg(dp, i);
226             if(V_VT(arg) == VT_DISPATCH)
227                 hres = concat_obj(ret, V_DISPATCH(arg), &len, ei, caller);
228             else
229                 hres = jsdisp_propput_idx(ret, len++, arg, ei, caller);
230             if(FAILED(hres))
231                 break;
232         }
233     }
234
235     if(FAILED(hres))
236         return hres;
237
238     if(retv) {
239         V_VT(retv) = VT_DISPATCH;
240         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(ret);
241     }else {
242         jsdisp_release(ret);
243     }
244     return S_OK;
245 }
246
247 static HRESULT array_join(script_ctx_t *ctx, DispatchEx *array, DWORD length, const WCHAR *sep, VARIANT *retv,
248         jsexcept_t *ei, IServiceProvider *caller)
249 {
250     BSTR *str_tab, ret = NULL;
251     VARIANT var;
252     DWORD i;
253     HRESULT hres = E_FAIL;
254
255     if(!length) {
256         if(retv) {
257             V_VT(retv) = VT_BSTR;
258             V_BSTR(retv) = SysAllocStringLen(NULL, 0);
259             if(!V_BSTR(retv))
260                 return E_OUTOFMEMORY;
261         }
262         return S_OK;
263     }
264
265     str_tab = heap_alloc_zero(length * sizeof(BSTR));
266     if(!str_tab)
267         return E_OUTOFMEMORY;
268
269     for(i=0; i < length; i++) {
270         hres = jsdisp_propget_idx(array, i, &var, ei, caller);
271         if(FAILED(hres))
272             break;
273
274         if(V_VT(&var) != VT_EMPTY && V_VT(&var) != VT_NULL)
275             hres = to_string(ctx, &var, ei, str_tab+i);
276         VariantClear(&var);
277         if(FAILED(hres))
278             break;
279     }
280
281     if(SUCCEEDED(hres)) {
282         DWORD seplen = 0, len = 0;
283         WCHAR *ptr;
284
285         seplen = strlenW(sep);
286
287         if(str_tab[0])
288             len = SysStringLen(str_tab[0]);
289         for(i=1; i < length; i++)
290             len += seplen + SysStringLen(str_tab[i]);
291
292         ret = SysAllocStringLen(NULL, len);
293         if(ret) {
294             DWORD tmplen = 0;
295
296             if(str_tab[0]) {
297                 tmplen = SysStringLen(str_tab[0]);
298                 memcpy(ret, str_tab[0], tmplen*sizeof(WCHAR));
299             }
300
301             ptr = ret + tmplen;
302             for(i=1; i < length; i++) {
303                 if(seplen) {
304                     memcpy(ptr, sep, seplen*sizeof(WCHAR));
305                     ptr += seplen;
306                 }
307
308                 if(str_tab[i]) {
309                     tmplen = SysStringLen(str_tab[i]);
310                     memcpy(ptr, str_tab[i], tmplen*sizeof(WCHAR));
311                     ptr += tmplen;
312                 }
313             }
314             *ptr=0;
315         }else {
316             hres = E_OUTOFMEMORY;
317         }
318     }
319
320     for(i=0; i < length; i++)
321         SysFreeString(str_tab[i]);
322     heap_free(str_tab);
323     if(FAILED(hres))
324         return hres;
325
326     TRACE("= %s\n", debugstr_w(ret));
327
328     if(retv) {
329         if(!ret) {
330             ret = SysAllocStringLen(NULL, 0);
331             if(!ret)
332                 return E_OUTOFMEMORY;
333         }
334
335         V_VT(retv) = VT_BSTR;
336         V_BSTR(retv) = ret;
337     }else {
338         SysFreeString(ret);
339     }
340
341     return S_OK;
342 }
343
344 /* ECMA-262 3rd Edition    15.4.4.5 */
345 static HRESULT Array_join(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
346         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
347 {
348     DispatchEx *jsthis;
349     DWORD length;
350     HRESULT hres;
351
352     TRACE("\n");
353
354     hres = get_length(ctx, vthis, ei, &jsthis, &length);
355     if(FAILED(hres))
356         return hres;
357
358     if(arg_cnt(dp)) {
359         BSTR sep;
360
361         hres = to_string(ctx, get_arg(dp,0), ei, &sep);
362         if(FAILED(hres))
363             return hres;
364
365         hres = array_join(ctx, jsthis, length, sep, retv, ei, caller);
366
367         SysFreeString(sep);
368     }else {
369         hres = array_join(ctx, jsthis, length, default_separatorW, retv, ei, caller);
370     }
371
372     return hres;
373 }
374
375 static HRESULT Array_pop(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
376         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
377 {
378     DispatchEx *jsthis;
379     VARIANT val;
380     DWORD length;
381     HRESULT hres;
382
383     TRACE("\n");
384
385     hres = get_length(ctx, vthis, ei, &jsthis, &length);
386     if(FAILED(hres))
387         return hres;
388
389     if(!length) {
390         hres = set_length(jsthis, ei, 0);
391         if(FAILED(hres))
392             return hres;
393
394         if(retv)
395             V_VT(retv) = VT_EMPTY;
396         return S_OK;
397     }
398
399     length--;
400     hres = jsdisp_propget_idx(jsthis, length, &val, ei, caller);
401     if(SUCCEEDED(hres)) {
402         hres = jsdisp_delete_idx(jsthis, length);
403     } else if(hres == DISP_E_UNKNOWNNAME) {
404         V_VT(&val) = VT_EMPTY;
405         hres = S_OK;
406     } else
407         return hres;
408
409     if(SUCCEEDED(hres))
410         hres = set_length(jsthis, ei, length);
411
412     if(FAILED(hres)) {
413         VariantClear(&val);
414         return hres;
415     }
416
417     if(retv)
418         *retv = val;
419     else
420         VariantClear(&val);
421
422     return S_OK;
423 }
424
425 /* ECMA-262 3rd Edition    15.4.4.7 */
426 static HRESULT Array_push(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
427         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
428 {
429     DispatchEx *jsthis;
430     DWORD length = 0;
431     int i, n;
432     HRESULT hres;
433
434     TRACE("\n");
435
436     hres = get_length(ctx, vthis, ei, &jsthis, &length);
437     if(FAILED(hres))
438         return hres;
439
440     n = arg_cnt(dp);
441     for(i=0; i < n; i++) {
442         hres = jsdisp_propput_idx(jsthis, length+i, get_arg(dp, i), ei, sp);
443         if(FAILED(hres))
444             return hres;
445     }
446
447     hres = set_length(jsthis, ei, length+n);
448     if(FAILED(hres))
449         return hres;
450
451     if(retv) {
452         V_VT(retv) = VT_I4;
453         V_I4(retv) = length+n;
454     }
455     return S_OK;
456 }
457
458 static HRESULT Array_reverse(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
459         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
460 {
461     DispatchEx *jsthis;
462     DWORD length, k, l;
463     VARIANT v1, v2;
464     HRESULT hres1, hres2;
465
466     TRACE("\n");
467
468     hres1 = get_length(ctx, vthis, ei, &jsthis, &length);
469     if(FAILED(hres1))
470         return hres1;
471
472     for(k=0; k<length/2; k++) {
473         l = length-k-1;
474
475         hres1 = jsdisp_propget_idx(jsthis, k, &v1, ei, sp);
476         hres2 = jsdisp_propget_idx(jsthis, l, &v2, ei, sp);
477
478         if(hres1 == DISP_E_UNKNOWNNAME)
479             jsdisp_delete_idx(jsthis, l);
480         else
481             jsdisp_propput_idx(jsthis, l, &v1, ei, sp);
482
483         if(hres2 == DISP_E_UNKNOWNNAME)
484             jsdisp_delete_idx(jsthis, k);
485         else
486             jsdisp_propput_idx(jsthis, k, &v2, ei, sp);
487     }
488
489     if(retv) {
490         V_VT(retv) = VT_DISPATCH;
491         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(jsthis);
492         IDispatch_AddRef(V_DISPATCH(retv));
493     }
494
495     return S_OK;
496 }
497
498 /* ECMA-262 3rd Edition    15.4.4.9 */
499 static HRESULT Array_shift(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
500         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
501 {
502     DispatchEx *jsthis;
503     DWORD length = 0, i;
504     VARIANT v, ret;
505     HRESULT hres;
506
507     TRACE("\n");
508
509     hres = get_length(ctx, vthis, ei, &jsthis, &length);
510     if(FAILED(hres))
511         return hres;
512
513     if(!length) {
514         hres = set_length(jsthis, ei, 0);
515         if(FAILED(hres))
516             return hres;
517     }
518
519     if(!length) {
520         if(retv)
521             V_VT(retv) = VT_EMPTY;
522         return S_OK;
523     }
524
525     hres = jsdisp_propget_idx(jsthis, 0, &ret, ei, caller);
526     if(hres == DISP_E_UNKNOWNNAME) {
527         V_VT(&ret) = VT_EMPTY;
528         hres = S_OK;
529     }
530
531     for(i=1; SUCCEEDED(hres) && i<length; i++) {
532         hres = jsdisp_propget_idx(jsthis, i, &v, ei, caller);
533         if(hres == DISP_E_UNKNOWNNAME)
534             hres = jsdisp_delete_idx(jsthis, i-1);
535         else if(SUCCEEDED(hres))
536             hres = jsdisp_propput_idx(jsthis, i-1, &v, ei, caller);
537     }
538
539     if(SUCCEEDED(hres)) {
540         hres = jsdisp_delete_idx(jsthis, length-1);
541         if(SUCCEEDED(hres))
542             hres = set_length(jsthis, ei, length-1);
543     }
544
545     if(SUCCEEDED(hres) && retv)
546         *retv = ret;
547     else
548         VariantClear(&ret);
549     return hres;
550 }
551
552 /* ECMA-262 3rd Edition    15.4.4.10 */
553 static HRESULT Array_slice(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
554         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
555 {
556     DispatchEx *arr, *jsthis;
557     VARIANT v;
558     DOUBLE range;
559     DWORD length, start, end, idx;
560     HRESULT hres;
561
562     TRACE("\n");
563
564     hres = get_length(ctx, vthis, ei, &jsthis, &length);
565     if(FAILED(hres))
566         return hres;
567
568     if(arg_cnt(dp)) {
569         hres = to_number(ctx, get_arg(dp, 0), ei, &v);
570         if(FAILED(hres))
571             return hres;
572
573         if(V_VT(&v) == VT_I4)
574             range = V_I4(&v);
575         else
576             range = floor(V_R8(&v));
577
578         if(-range>length || isnan(range)) start = 0;
579         else if(range < 0) start = range+length;
580         else if(range <= length) start = range;
581         else start = length;
582     }
583     else start = 0;
584
585     if(arg_cnt(dp)>1) {
586         hres = to_number(ctx, get_arg(dp, 1), ei, &v);
587         if(FAILED(hres))
588             return hres;
589
590         if(V_VT(&v) == VT_I4)
591             range = V_I4(&v);
592         else
593             range = floor(V_R8(&v));
594
595         if(-range>length) end = 0;
596         else if(range < 0) end = range+length;
597         else if(range <= length) end = range;
598         else end = length;
599     }
600     else end = length;
601
602     hres = create_array(ctx, (end>start)?end-start:0, &arr);
603     if(FAILED(hres))
604         return hres;
605
606     for(idx=start; idx<end; idx++) {
607         hres = jsdisp_propget_idx(jsthis, idx, &v, ei, sp);
608         if(hres == DISP_E_UNKNOWNNAME)
609             continue;
610
611         if(SUCCEEDED(hres)) {
612             hres = jsdisp_propput_idx(arr, idx-start, &v, ei, sp);
613             VariantClear(&v);
614         }
615
616         if(FAILED(hres)) {
617             jsdisp_release(arr);
618             return hres;
619         }
620     }
621
622     if(retv) {
623         V_VT(retv) = VT_DISPATCH;
624         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(arr);
625     }
626     else
627         jsdisp_release(arr);
628
629     return S_OK;
630 }
631
632 static HRESULT sort_cmp(script_ctx_t *ctx, DispatchEx *cmp_func, VARIANT *v1, VARIANT *v2, jsexcept_t *ei,
633         IServiceProvider *caller, INT *cmp)
634 {
635     HRESULT hres;
636
637     if(cmp_func) {
638         VARIANTARG args[2];
639         DISPPARAMS dp = {args, NULL, 2, 0};
640         VARIANT tmp;
641         VARIANT res;
642
643         args[0] = *v2;
644         args[1] = *v1;
645
646         hres = jsdisp_call_value(cmp_func, DISPATCH_METHOD, &dp, &res, ei, caller);
647         if(FAILED(hres))
648             return hres;
649
650         hres = to_number(ctx, &res, ei, &tmp);
651         VariantClear(&res);
652         if(FAILED(hres))
653             return hres;
654
655         if(V_VT(&tmp) == VT_I4)
656             *cmp = V_I4(&tmp);
657         else
658             *cmp = V_R8(&tmp) > 0.0 ? 1 : -1;
659     }else if(is_num_vt(V_VT(v1))) {
660         if(is_num_vt(V_VT(v2))) {
661             DOUBLE d = num_val(v1)-num_val(v2);
662             if(d > 0.0)
663                 *cmp = 1;
664             else if(d < -0.0)
665                 *cmp = -1;
666             else
667                 *cmp = 0;
668         }else {
669             *cmp = -1;
670         }
671     }else if(is_num_vt(V_VT(v2))) {
672         *cmp = 1;
673     }else if(V_VT(v1) == VT_BSTR) {
674         if(V_VT(v2) == VT_BSTR)
675             *cmp = strcmpW(V_BSTR(v1), V_BSTR(v2));
676         else
677             *cmp = -1;
678     }else if(V_VT(v2) == VT_BSTR) {
679         *cmp = 1;
680     }else {
681         *cmp = 0;
682     }
683
684     return S_OK;
685 }
686
687 /* ECMA-262 3rd Edition    15.4.4.11 */
688 static HRESULT Array_sort(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
689         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
690 {
691     DispatchEx *cmp_func = NULL;
692     VARIANT *vtab, **sorttab = NULL;
693     DWORD length;
694     DWORD i;
695     HRESULT hres = S_OK;
696
697     TRACE("\n");
698
699     if(is_vclass(jsthis, JSCLASS_ARRAY)) {
700         length = array_from_vdisp(jsthis)->length;
701     }else {
702         FIXME("unsupported this not array\n");
703         return E_NOTIMPL;
704     }
705
706     if(arg_cnt(dp) > 1) {
707         WARN("invalid arg_cnt %d\n", arg_cnt(dp));
708         return E_FAIL;
709     }
710
711     if(arg_cnt(dp) == 1) {
712         VARIANT *arg = get_arg(dp, 0);
713
714         if(V_VT(arg) != VT_DISPATCH) {
715             WARN("arg is not dispatch\n");
716             return E_FAIL;
717         }
718
719
720         cmp_func = iface_to_jsdisp((IUnknown*)V_DISPATCH(arg));
721         if(!cmp_func || !is_class(cmp_func, JSCLASS_FUNCTION)) {
722             WARN("cmp_func is not a function\n");
723             if(cmp_func)
724                 jsdisp_release(cmp_func);
725             return E_FAIL;
726         }
727     }
728
729     if(!length) {
730         if(cmp_func)
731             jsdisp_release(cmp_func);
732         if(retv) {
733             V_VT(retv) = VT_DISPATCH;
734             V_DISPATCH(retv) = jsthis->u.disp;
735             IDispatch_AddRef(jsthis->u.disp);
736         }
737         return S_OK;
738     }
739
740     vtab = heap_alloc_zero(length * sizeof(VARIANT));
741     if(vtab) {
742         for(i=0; i<length; i++) {
743             hres = jsdisp_propget_idx(jsthis->u.jsdisp, i, vtab+i, ei, caller);
744             if(FAILED(hres) && hres != DISP_E_UNKNOWNNAME) {
745                 WARN("Could not get elem %d: %08x\n", i, hres);
746                 break;
747             }
748         }
749     }else {
750         hres = E_OUTOFMEMORY;
751     }
752
753     if(SUCCEEDED(hres)) {
754         sorttab = heap_alloc(length*2*sizeof(VARIANT*));
755         if(!sorttab)
756             hres = E_OUTOFMEMORY;
757     }
758
759     /* merge-sort */
760     if(SUCCEEDED(hres)) {
761         VARIANT *tmpv, **tmpbuf;
762         INT cmp;
763
764         tmpbuf = sorttab + length;
765         for(i=0; i < length; i++)
766             sorttab[i] = vtab+i;
767
768         for(i=0; i < length/2; i++) {
769             hres = sort_cmp(ctx, cmp_func, sorttab[2*i+1], sorttab[2*i], ei, caller, &cmp);
770             if(FAILED(hres))
771                 break;
772
773             if(cmp < 0) {
774                 tmpv = sorttab[2*i];
775                 sorttab[2*i] = sorttab[2*i+1];
776                 sorttab[2*i+1] = tmpv;
777             }
778         }
779
780         if(SUCCEEDED(hres)) {
781             DWORD k, a, b, bend;
782
783             for(k=2; k < length; k *= 2) {
784                 for(i=0; i+k < length; i += 2*k) {
785                     a = b = 0;
786                     if(i+2*k <= length)
787                         bend = k;
788                     else
789                         bend = length - (i+k);
790
791                     memcpy(tmpbuf, sorttab+i, k*sizeof(VARIANT*));
792
793                     while(a < k && b < bend) {
794                         hres = sort_cmp(ctx, cmp_func, tmpbuf[a], sorttab[i+k+b], ei, caller, &cmp);
795                         if(FAILED(hres))
796                             break;
797
798                         if(cmp < 0) {
799                             sorttab[i+a+b] = tmpbuf[a];
800                             a++;
801                         }else {
802                             sorttab[i+a+b] = sorttab[i+k+b];
803                             b++;
804                         }
805                     }
806
807                     if(FAILED(hres))
808                         break;
809
810                     if(a < k)
811                         memcpy(sorttab+i+a+b, tmpbuf+a, (k-a)*sizeof(VARIANT*));
812                 }
813
814                 if(FAILED(hres))
815                     break;
816             }
817         }
818
819         for(i=0; SUCCEEDED(hres) && i < length; i++)
820             hres = jsdisp_propput_idx(jsthis->u.jsdisp, i, sorttab[i], ei, caller);
821     }
822
823     if(vtab) {
824         for(i=0; i < length; i++)
825             VariantClear(vtab+i);
826         heap_free(vtab);
827     }
828     heap_free(sorttab);
829     if(cmp_func)
830         jsdisp_release(cmp_func);
831
832     if(FAILED(hres))
833         return hres;
834
835     if(retv) {
836         V_VT(retv) = VT_DISPATCH;
837         V_DISPATCH(retv) = jsthis->u.disp;
838         IDispatch_AddRef(jsthis->u.disp);
839     }
840
841     return S_OK;
842 }
843
844 /* ECMA-262 3rd Edition    15.4.4.12 */
845 static HRESULT Array_splice(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
846         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
847 {
848     DWORD length, start=0, delete_cnt=0, argc, i, add_args = 0;
849     DispatchEx *ret_array = NULL, *jsthis;
850     VARIANT v;
851     HRESULT hres = S_OK;
852
853     TRACE("\n");
854
855     hres = get_length(ctx, vthis, ei, &jsthis, &length);
856     if(FAILED(hres))
857         return hres;
858
859     argc = arg_cnt(dp);
860     if(argc >= 1) {
861         hres = to_integer(ctx, get_arg(dp,0), ei, &v);
862         if(FAILED(hres))
863             return hres;
864
865         if(V_VT(&v) == VT_I4) {
866             if(V_I4(&v) >= 0)
867                 start = min(V_I4(&v), length);
868             else
869                 start = -V_I4(&v) > length ? 0 : length + V_I4(&v);
870         }else {
871             start = V_R8(&v) < 0.0 ? 0 : length;
872         }
873     }
874
875     if(argc >= 2) {
876         hres = to_integer(ctx, get_arg(dp,1), ei, &v);
877         if(FAILED(hres))
878             return hres;
879
880         if(V_VT(&v) == VT_I4) {
881             if(V_I4(&v) > 0)
882                 delete_cnt = min(V_I4(&v), length-start);
883         }else if(V_R8(&v) > 0.0) {
884             delete_cnt = length-start;
885         }
886
887         add_args = argc-2;
888     }
889
890     if(retv) {
891         hres = create_array(ctx, 0, &ret_array);
892         if(FAILED(hres))
893             return hres;
894
895         for(i=0; SUCCEEDED(hres) && i < delete_cnt; i++) {
896             hres = jsdisp_propget_idx(jsthis, start+i, &v, ei, caller);
897             if(hres == DISP_E_UNKNOWNNAME)
898                 hres = S_OK;
899             else if(SUCCEEDED(hres))
900                 hres = jsdisp_propput_idx(ret_array, i, &v, ei, caller);
901         }
902
903         if(SUCCEEDED(hres)) {
904             V_VT(&v) = VT_I4;
905             V_I4(&v) = delete_cnt;
906
907             hres = jsdisp_propput_name(ret_array, lengthW, &v, ei, caller);
908         }
909     }
910
911     if(add_args < delete_cnt) {
912         for(i = start; SUCCEEDED(hres) && i < length-delete_cnt; i++) {
913             hres = jsdisp_propget_idx(jsthis, i+delete_cnt, &v, ei, caller);
914             if(hres == DISP_E_UNKNOWNNAME)
915                 hres = jsdisp_delete_idx(jsthis, i+add_args);
916             else if(SUCCEEDED(hres))
917                 hres = jsdisp_propput_idx(jsthis, i+add_args, &v, ei, caller);
918         }
919
920         for(i=length; SUCCEEDED(hres) && i != length-delete_cnt+add_args; i--)
921             hres = jsdisp_delete_idx(jsthis, i-1);
922     }else if(add_args > delete_cnt) {
923         for(i=length-delete_cnt; SUCCEEDED(hres) && i != start; i--) {
924             hres = jsdisp_propget_idx(jsthis, i+delete_cnt-1, &v, ei, caller);
925             if(hres == DISP_E_UNKNOWNNAME)
926                 hres = jsdisp_delete_idx(jsthis, i+add_args-1);
927             else if(SUCCEEDED(hres))
928                 hres = jsdisp_propput_idx(jsthis, i+add_args-1, &v, ei, caller);
929         }
930     }
931
932     for(i=0; SUCCEEDED(hres) && i < add_args; i++)
933         hres = jsdisp_propput_idx(jsthis, start+i, get_arg(dp,i+2), ei, caller);
934
935     if(SUCCEEDED(hres)) {
936         V_VT(&v) = VT_I4;
937         V_I4(&v) = length-delete_cnt+add_args;
938         hres = jsdisp_propput_name(jsthis, lengthW, &v, ei, caller);
939     }
940
941     if(FAILED(hres)) {
942         if(ret_array)
943             jsdisp_release(ret_array);
944         return hres;
945     }
946
947     if(retv) {
948         V_VT(retv) = VT_DISPATCH;
949         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(ret_array);
950     }
951     return S_OK;
952 }
953
954 /* ECMA-262 3rd Edition    15.4.4.2 */
955 static HRESULT Array_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
956         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
957 {
958     ArrayInstance *array;
959
960     TRACE("\n");
961
962     array = array_this(jsthis);
963     if(!array)
964         return throw_type_error(ctx, ei, IDS_ARRAY_EXPECTED, NULL);
965
966     return array_join(ctx, &array->dispex, array->length, default_separatorW, retv, ei, sp);
967 }
968
969 static HRESULT Array_toLocaleString(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
970         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
971 {
972     FIXME("\n");
973     return E_NOTIMPL;
974 }
975
976 /* ECMA-262 3rd Edition    15.4.4.13 */
977 static HRESULT Array_unshift(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
978         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
979 {
980     DispatchEx *jsthis;
981     WCHAR buf[14], *buf_end, *str;
982     DWORD argc, i, length;
983     VARIANT var;
984     DISPID id;
985     HRESULT hres;
986
987     TRACE("\n");
988
989     hres = get_length(ctx, vthis, ei, &jsthis, &length);
990     if(FAILED(hres))
991         return hres;
992
993     argc = arg_cnt(dp);
994     if(argc) {
995         buf_end = buf + sizeof(buf)/sizeof(WCHAR)-1;
996         *buf_end-- = 0;
997         i = length;
998
999         while(i--) {
1000             str = idx_to_str(i, buf_end);
1001
1002             hres = jsdisp_get_id(jsthis, str, 0, &id);
1003             if(SUCCEEDED(hres)) {
1004                 hres = jsdisp_propget(jsthis, id, &var, ei, caller);
1005                 if(FAILED(hres))
1006                     return hres;
1007
1008                 hres = jsdisp_propput_idx(jsthis, i+argc, &var, ei, caller);
1009                 VariantClear(&var);
1010             }else if(hres == DISP_E_UNKNOWNNAME) {
1011                 hres = IDispatchEx_DeleteMemberByDispID(vthis->u.dispex, id);
1012             }
1013         }
1014
1015         if(FAILED(hres))
1016             return hres;
1017     }
1018
1019     for(i=0; i<argc; i++) {
1020         hres = jsdisp_propput_idx(jsthis, i, get_arg(dp,i), ei, caller);
1021         if(FAILED(hres))
1022             return hres;
1023     }
1024
1025     if(argc) {
1026         length += argc;
1027         hres = set_length(jsthis, ei, length);
1028         if(FAILED(hres))
1029             return hres;
1030     }
1031
1032     if(retv) {
1033         if(ctx->version < 2) {
1034             V_VT(retv) = VT_EMPTY;
1035         }else {
1036             V_VT(retv) = VT_I4;
1037             V_I4(retv) = length;
1038         }
1039     }
1040     return S_OK;
1041 }
1042
1043 static HRESULT Array_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
1044         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
1045 {
1046     TRACE("\n");
1047
1048     switch(flags) {
1049     case INVOKE_FUNC:
1050         return throw_type_error(ctx, ei, IDS_NOT_FUNC, NULL);
1051     case INVOKE_PROPERTYGET:
1052         return array_join(ctx, jsthis->u.jsdisp, array_from_vdisp(jsthis)->length, default_separatorW, retv, ei, sp);
1053     default:
1054         FIXME("unimplemented flags %x\n", flags);
1055         return E_NOTIMPL;
1056     }
1057
1058     return S_OK;
1059 }
1060
1061 static void Array_destructor(DispatchEx *dispex)
1062 {
1063     heap_free(dispex);
1064 }
1065
1066 static void Array_on_put(DispatchEx *dispex, const WCHAR *name)
1067 {
1068     ArrayInstance *array = (ArrayInstance*)dispex;
1069     const WCHAR *ptr = name;
1070     DWORD id = 0;
1071
1072     if(!isdigitW(*ptr))
1073         return;
1074
1075     while(*ptr && isdigitW(*ptr)) {
1076         id = id*10 + (*ptr-'0');
1077         ptr++;
1078     }
1079
1080     if(*ptr)
1081         return;
1082
1083     if(id >= array->length)
1084         array->length = id+1;
1085 }
1086
1087 static const builtin_prop_t Array_props[] = {
1088     {concatW,                Array_concat,               PROPF_METHOD|1},
1089     {joinW,                  Array_join,                 PROPF_METHOD|1},
1090     {lengthW,                Array_length,               0},
1091     {popW,                   Array_pop,                  PROPF_METHOD},
1092     {pushW,                  Array_push,                 PROPF_METHOD|1},
1093     {reverseW,               Array_reverse,              PROPF_METHOD},
1094     {shiftW,                 Array_shift,                PROPF_METHOD},
1095     {sliceW,                 Array_slice,                PROPF_METHOD|2},
1096     {sortW,                  Array_sort,                 PROPF_METHOD|1},
1097     {spliceW,                Array_splice,               PROPF_METHOD|2},
1098     {toLocaleStringW,        Array_toLocaleString,       PROPF_METHOD},
1099     {toStringW,              Array_toString,             PROPF_METHOD},
1100     {unshiftW,               Array_unshift,              PROPF_METHOD|1},
1101 };
1102
1103 static const builtin_info_t Array_info = {
1104     JSCLASS_ARRAY,
1105     {NULL, Array_value, 0},
1106     sizeof(Array_props)/sizeof(*Array_props),
1107     Array_props,
1108     Array_destructor,
1109     Array_on_put
1110 };
1111
1112 static HRESULT ArrayConstr_value(script_ctx_t *ctx, vdisp_t *vthis, WORD flags, DISPPARAMS *dp,
1113         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
1114 {
1115     DispatchEx *obj;
1116     VARIANT *arg_var;
1117     DWORD i;
1118     HRESULT hres;
1119
1120     TRACE("\n");
1121
1122     switch(flags) {
1123     case DISPATCH_METHOD:
1124     case DISPATCH_CONSTRUCT: {
1125         if(arg_cnt(dp) == 1 && V_VT((arg_var = get_arg(dp, 0))) == VT_I4) {
1126             if(V_I4(arg_var) < 0)
1127                 return throw_range_error(ctx, ei, IDS_INVALID_LENGTH, NULL);
1128
1129             hres = create_array(ctx, V_I4(arg_var), &obj);
1130             if(FAILED(hres))
1131                 return hres;
1132
1133             V_VT(retv) = VT_DISPATCH;
1134             V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(obj);
1135             return S_OK;
1136         }
1137
1138         hres = create_array(ctx, arg_cnt(dp), &obj);
1139         if(FAILED(hres))
1140             return hres;
1141
1142         for(i=0; i < arg_cnt(dp); i++) {
1143             hres = jsdisp_propput_idx(obj, i, get_arg(dp, i), ei, caller);
1144             if(FAILED(hres))
1145                 break;
1146         }
1147         if(FAILED(hres)) {
1148             jsdisp_release(obj);
1149             return hres;
1150         }
1151
1152         V_VT(retv) = VT_DISPATCH;
1153         V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(obj);
1154         break;
1155     }
1156     default:
1157         FIXME("unimplemented flags: %x\n", flags);
1158         return E_NOTIMPL;
1159     }
1160
1161     return S_OK;
1162 }
1163
1164 static HRESULT alloc_array(script_ctx_t *ctx, DispatchEx *object_prototype, ArrayInstance **ret)
1165 {
1166     ArrayInstance *array;
1167     HRESULT hres;
1168
1169     array = heap_alloc_zero(sizeof(ArrayInstance));
1170     if(!array)
1171         return E_OUTOFMEMORY;
1172
1173     if(object_prototype)
1174         hres = init_dispex(&array->dispex, ctx, &Array_info, object_prototype);
1175     else
1176         hres = init_dispex_from_constr(&array->dispex, ctx, &Array_info, ctx->array_constr);
1177
1178     if(FAILED(hres)) {
1179         heap_free(array);
1180         return hres;
1181     }
1182
1183     *ret = array;
1184     return S_OK;
1185 }
1186
1187 HRESULT create_array_constr(script_ctx_t *ctx, DispatchEx *object_prototype, DispatchEx **ret)
1188 {
1189     ArrayInstance *array;
1190     HRESULT hres;
1191
1192     static const WCHAR ArrayW[] = {'A','r','r','a','y',0};
1193
1194     hres = alloc_array(ctx, object_prototype, &array);
1195     if(FAILED(hres))
1196         return hres;
1197
1198     hres = create_builtin_function(ctx, ArrayConstr_value, ArrayW, NULL, PROPF_CONSTR|1, &array->dispex, ret);
1199
1200     jsdisp_release(&array->dispex);
1201     return hres;
1202 }
1203
1204 HRESULT create_array(script_ctx_t *ctx, DWORD length, DispatchEx **ret)
1205 {
1206     ArrayInstance *array;
1207     HRESULT hres;
1208
1209     hres = alloc_array(ctx, NULL, &array);
1210     if(FAILED(hres))
1211         return hres;
1212
1213     array->length = length;
1214
1215     *ret = &array->dispex;
1216     return S_OK;
1217 }