jscript: Split regexp_match function.
[wine] / dlls / jscript / dispex.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 "jscript.h"
20
21 #include "wine/unicode.h"
22 #include "wine/debug.h"
23
24 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
25
26 /*
27  * This IID is used to get DispatchEx objecto from interface.
28  * We might consider using private insteface instead.
29  */
30 static const IID IID_IDispatchJS =
31         {0x719c3050,0xf9d3,0x11cf,{0xa4,0x93,0x00,0x40,0x05,0x23,0xa8,0xa6}};
32
33 typedef enum {
34     PROP_VARIANT,
35     PROP_BUILTIN,
36     PROP_PROTREF,
37     PROP_DELETED
38 } prop_type_t;
39
40 struct _dispex_prop_t {
41     WCHAR *name;
42     prop_type_t type;
43     DWORD flags;
44
45     union {
46         VARIANT var;
47         const builtin_prop_t *p;
48         DWORD ref;
49     } u;
50 };
51
52 static inline DISPID prop_to_id(DispatchEx *This, dispex_prop_t *prop)
53 {
54     return prop - This->props;
55 }
56
57 static inline dispex_prop_t *get_prop(DispatchEx *This, DISPID id)
58 {
59     if(id < 0 || id >= This->prop_cnt || This->props[id].type == PROP_DELETED)
60         return NULL;
61
62     return This->props+id;
63 }
64
65 static DWORD get_flags(DispatchEx *This, dispex_prop_t *prop)
66 {
67     if(prop->type == PROP_PROTREF) {
68         dispex_prop_t *parent = get_prop(This->prototype, prop->u.ref);
69         if(!parent) {
70             prop->type = PROP_DELETED;
71             return 0;
72         }
73
74         return get_flags(This->prototype, parent);
75     }
76
77     return prop->flags;
78 }
79
80 static const builtin_prop_t *find_builtin_prop(DispatchEx *This, const WCHAR *name)
81 {
82     int min = 0, max, i, r;
83
84     max = This->builtin_info->props_cnt-1;
85     while(min <= max) {
86         i = (min+max)/2;
87
88         r = strcmpW(name, This->builtin_info->props[i].name);
89         if(!r)
90             return This->builtin_info->props + i;
91
92         if(r < 0)
93             max = i-1;
94         else
95             min = i+1;
96     }
97
98     return NULL;
99 }
100
101 static dispex_prop_t *alloc_prop(DispatchEx *This, const WCHAR *name, prop_type_t type, DWORD flags)
102 {
103     dispex_prop_t *ret;
104
105     if(This->buf_size == This->prop_cnt) {
106         dispex_prop_t *tmp = heap_realloc(This->props, (This->buf_size<<=1)*sizeof(*This->props));
107         if(!tmp)
108             return NULL;
109         This->props = tmp;
110     }
111
112     ret = This->props + This->prop_cnt++;
113     ret->type = type;
114     ret->flags = flags;
115     ret->name = heap_strdupW(name);
116     if(!ret->name)
117         return NULL;
118
119     return ret;
120 }
121
122 static dispex_prop_t *alloc_protref(DispatchEx *This, const WCHAR *name, DWORD ref)
123 {
124     dispex_prop_t *ret;
125
126     ret = alloc_prop(This, name, PROP_PROTREF, 0);
127     if(!ret)
128         return NULL;
129
130     ret->u.ref = ref;
131     return ret;
132 }
133
134 static HRESULT find_prop_name(DispatchEx *This, const WCHAR *name, dispex_prop_t **ret)
135 {
136     const builtin_prop_t *builtin;
137     dispex_prop_t *prop;
138
139     for(prop = This->props; prop < This->props+This->prop_cnt; prop++) {
140         if(prop->name && !strcmpW(prop->name, name)) {
141             *ret = prop;
142             return S_OK;
143         }
144     }
145
146     builtin = find_builtin_prop(This, name);
147     if(builtin) {
148         prop = alloc_prop(This, name, PROP_BUILTIN, builtin->flags);
149         if(!prop)
150             return E_OUTOFMEMORY;
151
152         prop->u.p = builtin;
153         *ret = prop;
154         return S_OK;
155     }
156
157     *ret = NULL;
158     return S_OK;
159 }
160
161 static HRESULT find_prop_name_prot(DispatchEx *This, const WCHAR *name, BOOL alloc, dispex_prop_t **ret)
162 {
163     dispex_prop_t *prop;
164     HRESULT hres;
165
166     hres = find_prop_name(This, name, &prop);
167     if(FAILED(hres))
168         return hres;
169     if(prop) {
170         *ret = prop;
171         return S_OK;
172     }
173
174     if(This->prototype) {
175         hres = find_prop_name_prot(This->prototype, name, FALSE, &prop);
176         if(FAILED(hres))
177             return hres;
178         if(prop) {
179             prop = alloc_protref(This, prop->name, prop - This->prototype->props);
180             if(!prop)
181                 return E_OUTOFMEMORY;
182             *ret = prop;
183             return S_OK;
184         }
185     }
186
187     if(alloc) {
188         TRACE("creating prop %s\n", debugstr_w(name));
189
190         prop = alloc_prop(This, name, PROP_VARIANT, PROPF_ENUM);
191         if(!prop)
192             return E_OUTOFMEMORY;
193         VariantInit(&prop->u.var);
194     }
195
196     *ret = prop;
197     return S_OK;
198 }
199
200 static HRESULT set_this(DISPPARAMS *dp, DISPPARAMS *olddp, IDispatch *jsthis)
201 {
202     VARIANTARG *oldargs;
203     int i;
204
205     static DISPID this_id = DISPID_THIS;
206
207     *dp = *olddp;
208
209     for(i = 0; i < dp->cNamedArgs; i++) {
210         if(dp->rgdispidNamedArgs[i] == DISPID_THIS)
211             return S_OK;
212     }
213
214     oldargs = dp->rgvarg;
215     dp->rgvarg = heap_alloc((dp->cArgs+1) * sizeof(VARIANTARG));
216     if(!dp->rgvarg)
217         return E_OUTOFMEMORY;
218     memcpy(dp->rgvarg+1, oldargs, dp->cArgs*sizeof(VARIANTARG));
219     V_VT(dp->rgvarg) = VT_DISPATCH;
220     V_DISPATCH(dp->rgvarg) = jsthis;
221     dp->cArgs++;
222
223     if(dp->cNamedArgs) {
224         DISPID *old = dp->rgdispidNamedArgs;
225         dp->rgdispidNamedArgs = heap_alloc((dp->cNamedArgs+1)*sizeof(DISPID));
226         if(!dp->rgdispidNamedArgs) {
227             heap_free(dp->rgvarg);
228             return E_OUTOFMEMORY;
229         }
230
231         memcpy(dp->rgdispidNamedArgs+1, old, dp->cNamedArgs*sizeof(DISPID));
232         dp->rgdispidNamedArgs[0] = DISPID_THIS;
233         dp->cNamedArgs++;
234     }else {
235         dp->rgdispidNamedArgs = &this_id;
236         dp->cNamedArgs = 1;
237     }
238
239     return S_OK;
240 }
241
242 static HRESULT invoke_prop_func(DispatchEx *This, DispatchEx *jsthis, dispex_prop_t *prop, LCID lcid, WORD flags,
243         DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
244 {
245     HRESULT hres;
246
247     switch(prop->type) {
248     case PROP_BUILTIN:
249         if(flags == DISPATCH_CONSTRUCT && (prop->flags & DISPATCH_METHOD)) {
250             WARN("%s is not a constructor\n", debugstr_w(prop->name));
251             return E_INVALIDARG;
252         }
253         return prop->u.p->invoke(jsthis, lcid, flags, dp, retv, ei, caller);
254     case PROP_PROTREF:
255         return invoke_prop_func(This->prototype, jsthis, This->prototype->props+prop->u.ref, lcid, flags, dp, retv, ei, caller);
256     case PROP_VARIANT: {
257         DISPPARAMS new_dp;
258
259         if(V_VT(&prop->u.var) != VT_DISPATCH) {
260             FIXME("invoke vt %d\n", V_VT(&prop->u.var));
261             return E_FAIL;
262         }
263
264         TRACE("call %s %p\n", debugstr_w(prop->name), V_DISPATCH(&prop->u.var));
265
266         hres = set_this(&new_dp, dp, (IDispatch*)_IDispatchEx_(jsthis));
267         if(FAILED(hres))
268             return hres;
269
270         hres = disp_call(V_DISPATCH(&prop->u.var), DISPID_VALUE, lcid, flags, &new_dp, retv, ei, caller);
271
272         if(new_dp.rgvarg != dp->rgvarg) {
273             heap_free(new_dp.rgvarg);
274             if(new_dp.cNamedArgs > 1)
275                 heap_free(new_dp.rgdispidNamedArgs);
276         }
277
278         return hres;
279     }
280     default:
281         ERR("type %d\n", prop->type);
282     }
283
284     return E_FAIL;
285 }
286
287 static HRESULT prop_get(DispatchEx *This, dispex_prop_t *prop, LCID lcid, DISPPARAMS *dp,
288         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
289 {
290     HRESULT hres;
291
292     switch(prop->type) {
293     case PROP_BUILTIN:
294         if(prop->u.p->flags & PROPF_METHOD) {
295             DispatchEx *obj;
296             hres = create_builtin_function(This->ctx, prop->u.p->invoke, prop->u.p->flags, NULL, &obj);
297             if(FAILED(hres))
298                 break;
299
300             prop->type = PROP_VARIANT;
301             V_VT(&prop->u.var) = VT_DISPATCH;
302             V_DISPATCH(&prop->u.var) = (IDispatch*)_IDispatchEx_(obj);
303
304             hres = VariantCopy(retv, &prop->u.var);
305         }else {
306             hres = prop->u.p->invoke(This, lcid, DISPATCH_PROPERTYGET, dp, retv, ei, caller);
307         }
308         break;
309     case PROP_PROTREF:
310         hres = prop_get(This->prototype, This->prototype->props+prop->u.ref, lcid, dp, retv, ei, caller);
311         break;
312     case PROP_VARIANT:
313         hres = VariantCopy(retv, &prop->u.var);
314         break;
315     default:
316         ERR("type %d\n", prop->type);
317         return E_FAIL;
318     }
319
320     if(FAILED(hres)) {
321         TRACE("fail %08x\n", hres);
322         return hres;
323     }
324
325     TRACE("%s ret %s\n", debugstr_w(prop->name), debugstr_variant(retv));
326     return hres;
327 }
328
329 static HRESULT prop_put(DispatchEx *This, dispex_prop_t *prop, LCID lcid, DISPPARAMS *dp,
330         jsexcept_t *ei, IServiceProvider *caller)
331 {
332     DWORD i;
333     HRESULT hres;
334
335     switch(prop->type) {
336     case PROP_BUILTIN:
337         if(!(prop->flags & PROPF_METHOD))
338             return prop->u.p->invoke(This, lcid, DISPATCH_PROPERTYPUT, dp, NULL, ei, caller);
339     case PROP_PROTREF:
340         prop->type = PROP_VARIANT;
341         prop->flags = PROPF_ENUM;
342         V_VT(&prop->u.var) = VT_EMPTY;
343         break;
344     case PROP_VARIANT:
345         VariantClear(&prop->u.var);
346         break;
347     default:
348         ERR("type %d\n", prop->type);
349         return E_FAIL;
350     }
351
352     for(i=0; i < dp->cNamedArgs; i++) {
353         if(dp->rgdispidNamedArgs[i] == DISPID_PROPERTYPUT)
354             break;
355     }
356
357     if(i == dp->cNamedArgs) {
358         TRACE("no value to set\n");
359         return DISP_E_PARAMNOTOPTIONAL;
360     }
361
362     hres = VariantCopy(&prop->u.var, dp->rgvarg+i);
363     if(FAILED(hres))
364         return hres;
365
366     if(This->builtin_info->on_put)
367         This->builtin_info->on_put(This, prop->name);
368
369     TRACE("%s = %s\n", debugstr_w(prop->name), debugstr_variant(dp->rgvarg+i));
370     return S_OK;
371 }
372
373 static HRESULT fill_protrefs(DispatchEx *This)
374 {
375     dispex_prop_t *iter, *prop;
376     HRESULT hres;
377
378     if(!This->prototype)
379         return S_OK;
380
381     fill_protrefs(This->prototype);
382
383     for(iter = This->prototype->props; iter < This->prototype->props+This->prototype->prop_cnt; iter++) {
384         if(!iter->name)
385             continue;
386         hres = find_prop_name(This, iter->name, &prop);
387         if(FAILED(hres))
388             return hres;
389         if(!prop) {
390             prop = alloc_protref(This, iter->name, iter - This->prototype->props);
391             if(!prop)
392                 return E_OUTOFMEMORY;
393         }
394     }
395
396     return S_OK;
397 }
398
399 #define DISPATCHEX_THIS(iface) DEFINE_THIS(DispatchEx, IDispatchEx, iface)
400
401 static HRESULT WINAPI DispatchEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
402 {
403     DispatchEx *This = DISPATCHEX_THIS(iface);
404
405     if(IsEqualGUID(&IID_IUnknown, riid)) {
406         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
407         *ppv = _IDispatchEx_(This);
408     }else if(IsEqualGUID(&IID_IDispatch, riid)) {
409         TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
410         *ppv = _IDispatchEx_(This);
411     }else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
412         TRACE("(%p)->(IID_IDispatchEx %p)\n", This, ppv);
413         *ppv = _IDispatchEx_(This);
414     }else if(IsEqualGUID(&IID_IDispatchJS, riid)) {
415         TRACE("(%p)->(IID_IDispatchJS %p)\n", This, ppv);
416         IUnknown_AddRef(_IDispatchEx_(This));
417         *ppv = This;
418         return S_OK;
419     }else {
420         WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
421         *ppv = NULL;
422         return E_NOINTERFACE;
423     }
424
425     IUnknown_AddRef((IUnknown*)*ppv);
426     return S_OK;
427 }
428
429 static ULONG WINAPI DispatchEx_AddRef(IDispatchEx *iface)
430 {
431     DispatchEx *This = DISPATCHEX_THIS(iface);
432     LONG ref = InterlockedIncrement(&This->ref);
433
434     TRACE("(%p) ref=%d\n", This, ref);
435
436     return ref;
437 }
438
439 static ULONG WINAPI DispatchEx_Release(IDispatchEx *iface)
440 {
441     DispatchEx *This = DISPATCHEX_THIS(iface);
442     LONG ref = InterlockedDecrement(&This->ref);
443
444     TRACE("(%p) ref=%d\n", This, ref);
445
446     if(!ref) {
447         dispex_prop_t *prop;
448
449         for(prop = This->props; prop < This->props+This->prop_cnt; prop++) {
450             if(prop->type == PROP_VARIANT)
451                 VariantClear(&prop->u.var);
452             heap_free(prop->name);
453         }
454         heap_free(This->props);
455         script_release(This->ctx);
456
457         if(This->builtin_info->destructor)
458             This->builtin_info->destructor(This);
459         else
460             heap_free(This);
461     }
462
463     return ref;
464 }
465
466 static HRESULT WINAPI DispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
467 {
468     DispatchEx *This = DISPATCHEX_THIS(iface);
469
470     TRACE("(%p)->(%p)\n", This, pctinfo);
471
472     *pctinfo = 1;
473     return S_OK;
474 }
475
476 static HRESULT WINAPI DispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
477                                               LCID lcid, ITypeInfo **ppTInfo)
478 {
479     DispatchEx *This = DISPATCHEX_THIS(iface);
480     FIXME("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
481     return E_NOTIMPL;
482 }
483
484 static HRESULT WINAPI DispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
485                                                 LPOLESTR *rgszNames, UINT cNames,
486                                                 LCID lcid, DISPID *rgDispId)
487 {
488     DispatchEx *This = DISPATCHEX_THIS(iface);
489     UINT i;
490     HRESULT hres;
491
492     TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
493           lcid, rgDispId);
494
495     for(i=0; i < cNames; i++) {
496         hres = IDispatchEx_GetDispID(_IDispatchEx_(This), rgszNames[i], 0, rgDispId+i);
497         if(FAILED(hres))
498             return hres;
499     }
500
501     return S_OK;
502 }
503
504 static HRESULT WINAPI DispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
505                             REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
506                             VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
507 {
508     DispatchEx *This = DISPATCHEX_THIS(iface);
509
510     TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
511           lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
512
513     return IDispatchEx_InvokeEx(_IDispatchEx_(This), dispIdMember, lcid, wFlags,
514             pDispParams, pVarResult, pExcepInfo, NULL);
515 }
516
517 static HRESULT WINAPI DispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
518 {
519     DispatchEx *This = DISPATCHEX_THIS(iface);
520     dispex_prop_t *prop;
521     HRESULT hres;
522
523     TRACE("(%p)->(%s %x %p)\n", This, debugstr_w(bstrName), grfdex, pid);
524
525     if(grfdex & ~(fdexNameCaseSensitive|fdexNameEnsure|fdexNameImplicit)) {
526         FIXME("Unsupported grfdex %x\n", grfdex);
527         return E_NOTIMPL;
528     }
529
530     hres = find_prop_name_prot(This, bstrName, (grfdex&fdexNameEnsure) != 0, &prop);
531     if(FAILED(hres))
532         return hres;
533     if(prop) {
534         *pid = prop_to_id(This, prop);
535         return S_OK;
536     }
537
538     TRACE("not found %s\n", debugstr_w(bstrName));
539     return DISP_E_UNKNOWNNAME;
540 }
541
542 static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
543         VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
544 {
545     DispatchEx *This = DISPATCHEX_THIS(iface);
546     dispex_prop_t *prop;
547     jsexcept_t jsexcept;
548     HRESULT hres;
549
550     TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
551
552     if(pvarRes)
553         V_VT(pvarRes) = VT_EMPTY;
554
555     prop = get_prop(This, id);
556     if(!prop || prop->type == PROP_DELETED) {
557         TRACE("invalid id\n");
558         return DISP_E_MEMBERNOTFOUND;
559     }
560
561     memset(&jsexcept, 0, sizeof(jsexcept));
562
563     switch(wFlags) {
564     case DISPATCH_METHOD:
565     case DISPATCH_CONSTRUCT:
566         hres = invoke_prop_func(This, This, prop, lcid, wFlags, pdp, pvarRes, &jsexcept, pspCaller);
567         break;
568     case DISPATCH_PROPERTYGET:
569         hres = prop_get(This, prop, lcid, pdp, pvarRes, &jsexcept, pspCaller);
570         break;
571     case DISPATCH_PROPERTYPUT:
572         hres = prop_put(This, prop, lcid, pdp, &jsexcept, pspCaller);
573         break;
574     default:
575         FIXME("Unimplemented flags %x\n", wFlags);
576         return E_INVALIDARG;
577     }
578
579     if(pei)
580         *pei = jsexcept.ei;
581
582     return hres;
583 }
584
585 static HRESULT WINAPI DispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
586 {
587     DispatchEx *This = DISPATCHEX_THIS(iface);
588     dispex_prop_t *prop;
589     HRESULT hres;
590
591     TRACE("(%p)->(%s %x)\n", This, debugstr_w(bstrName), grfdex);
592
593     if(grfdex & ~(fdexNameCaseSensitive|fdexNameEnsure|fdexNameImplicit))
594         FIXME("Unsupported grfdex %x\n", grfdex);
595
596     hres = find_prop_name(This, bstrName, &prop);
597     if(FAILED(hres))
598         return hres;
599     if(!prop) {
600         TRACE("not found\n");
601         return S_OK;
602     }
603
604     heap_free(prop->name);
605     prop->name = NULL;
606     prop->type = PROP_DELETED;
607     return S_OK;
608 }
609
610 static HRESULT WINAPI DispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
611 {
612     DispatchEx *This = DISPATCHEX_THIS(iface);
613     FIXME("(%p)->(%x)\n", This, id);
614     return E_NOTIMPL;
615 }
616
617 static HRESULT WINAPI DispatchEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
618 {
619     DispatchEx *This = DISPATCHEX_THIS(iface);
620     FIXME("(%p)->(%x %x %p)\n", This, id, grfdexFetch, pgrfdex);
621     return E_NOTIMPL;
622 }
623
624 static HRESULT WINAPI DispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
625 {
626     DispatchEx *This = DISPATCHEX_THIS(iface);
627     dispex_prop_t *prop;
628
629     TRACE("(%p)->(%x %p)\n", This, id, pbstrName);
630
631     prop = get_prop(This, id);
632     if(!prop || !prop->name || prop->type == PROP_DELETED)
633         return DISP_E_MEMBERNOTFOUND;
634
635     *pbstrName = SysAllocString(prop->name);
636     if(!*pbstrName)
637         return E_OUTOFMEMORY;
638
639     return S_OK;
640 }
641
642 static HRESULT WINAPI DispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
643 {
644     DispatchEx *This = DISPATCHEX_THIS(iface);
645     dispex_prop_t *iter;
646     HRESULT hres;
647
648     TRACE("(%p)->(%x %x %p)\n", This, grfdex, id, pid);
649
650     if(id == DISPID_STARTENUM) {
651         hres = fill_protrefs(This);
652         if(FAILED(hres))
653             return hres;
654     }
655
656     iter = get_prop(This, id+1);
657     if(!iter) {
658         *pid = DISPID_STARTENUM;
659         return S_FALSE;
660     }
661
662     while(iter < This->props + This->prop_cnt) {
663         if(iter->name && (get_flags(This, iter) & PROPF_ENUM)) {
664             *pid = prop_to_id(This, iter);
665             return S_OK;
666         }
667         iter++;
668     }
669
670     *pid = DISPID_STARTENUM;
671     return S_FALSE;
672 }
673
674 static HRESULT WINAPI DispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
675 {
676     DispatchEx *This = DISPATCHEX_THIS(iface);
677     FIXME("(%p)->(%p)\n", This, ppunk);
678     return E_NOTIMPL;
679 }
680
681 #undef DISPATCHEX_THIS
682
683 static IDispatchExVtbl DispatchExVtbl = {
684     DispatchEx_QueryInterface,
685     DispatchEx_AddRef,
686     DispatchEx_Release,
687     DispatchEx_GetTypeInfoCount,
688     DispatchEx_GetTypeInfo,
689     DispatchEx_GetIDsOfNames,
690     DispatchEx_Invoke,
691     DispatchEx_GetDispID,
692     DispatchEx_InvokeEx,
693     DispatchEx_DeleteMemberByName,
694     DispatchEx_DeleteMemberByDispID,
695     DispatchEx_GetMemberProperties,
696     DispatchEx_GetMemberName,
697     DispatchEx_GetNextDispID,
698     DispatchEx_GetNameSpaceParent
699 };
700
701 HRESULT init_dispex(DispatchEx *dispex, script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *prototype)
702 {
703     TRACE("%p (%p)\n", dispex, prototype);
704
705     dispex->lpIDispatchExVtbl = &DispatchExVtbl;
706     dispex->ref = 1;
707     dispex->builtin_info = builtin_info;
708
709     dispex->props = heap_alloc((dispex->buf_size=4) * sizeof(dispex_prop_t));
710     if(!dispex->props)
711         return E_OUTOFMEMORY;
712
713     dispex->prototype = prototype;
714     if(prototype)
715         IDispatchEx_AddRef(_IDispatchEx_(prototype));
716
717     dispex->prop_cnt = 1;
718     dispex->props[0].name = NULL;
719     dispex->props[0].flags = 0;
720     if(builtin_info->value_prop.invoke) {
721         dispex->props[0].type = PROP_BUILTIN;
722         dispex->props[0].u.p = &builtin_info->value_prop;
723     }else {
724         dispex->props[0].type = PROP_DELETED;
725     }
726
727     script_addref(ctx);
728     dispex->ctx = ctx;
729
730     return S_OK;
731 }
732
733 static const builtin_info_t dispex_info = {
734     JSCLASS_NONE,
735     {NULL, NULL, 0},
736     0, NULL,
737     NULL,
738     NULL
739 };
740
741 HRESULT create_dispex(script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *prototype, DispatchEx **dispex)
742 {
743     DispatchEx *ret;
744     HRESULT hres;
745
746     ret = heap_alloc_zero(sizeof(DispatchEx));
747     if(!ret)
748         return E_OUTOFMEMORY;
749
750     hres = init_dispex(ret, ctx, builtin_info ? builtin_info : &dispex_info, prototype);
751     if(FAILED(hres))
752         return hres;
753
754     *dispex = ret;
755     return S_OK;
756 }
757
758 HRESULT init_dispex_from_constr(DispatchEx *dispex, script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *constr)
759 {
760     DispatchEx *prot = NULL;
761     dispex_prop_t *prop;
762     HRESULT hres;
763
764     static const WCHAR prototypeW[] = {'p','r','o','t','o','t','y','p','e',0};
765
766     hres = find_prop_name_prot(constr, prototypeW, FALSE, &prop);
767     if(SUCCEEDED(hres) && prop) {
768         jsexcept_t jsexcept;
769         VARIANT var;
770
771         V_VT(&var) = VT_EMPTY;
772         memset(&jsexcept, 0, sizeof(jsexcept));
773         hres = prop_get(constr, prop, ctx->lcid, NULL, &var, &jsexcept, NULL/*FIXME*/);
774         if(FAILED(hres)) {
775             ERR("Could not get prototype\n");
776             return hres;
777         }
778
779         if(V_VT(&var) == VT_DISPATCH)
780             prot = iface_to_jsdisp((IUnknown*)V_DISPATCH(&var));
781         VariantClear(&var);
782     }
783
784     hres = init_dispex(dispex, ctx, builtin_info, prot);
785
786     if(prot)
787         IDispatchEx_Release(_IDispatchEx_(prot));
788     return hres;
789 }
790
791 DispatchEx *iface_to_jsdisp(IUnknown *iface)
792 {
793     DispatchEx *ret;
794     HRESULT hres;
795
796     hres = IUnknown_QueryInterface(iface, &IID_IDispatchJS, (void**)&ret);
797     if(FAILED(hres))
798         return NULL;
799
800     return ret;
801 }
802
803 HRESULT jsdisp_call_value(DispatchEx *disp, LCID lcid, WORD flags, DISPPARAMS *dp, VARIANT *retv,
804         jsexcept_t *ei, IServiceProvider *caller)
805 {
806     return disp->builtin_info->value_prop.invoke(disp, lcid, flags, dp, retv, ei, caller);
807 }
808
809 HRESULT jsdisp_call(DispatchEx *disp, DISPID id, LCID lcid, WORD flags, DISPPARAMS *dp, VARIANT *retv,
810         jsexcept_t *ei, IServiceProvider *caller)
811 {
812     dispex_prop_t *prop;
813
814     memset(ei, 0, sizeof(*ei));
815     if(retv)
816         V_VT(retv) = VT_EMPTY;
817
818     prop = get_prop(disp, id);
819     if(!prop)
820         return DISP_E_MEMBERNOTFOUND;
821
822     return invoke_prop_func(disp, disp, prop, lcid, flags, dp, retv, ei, caller);
823 }
824
825 HRESULT disp_call(IDispatch *disp, DISPID id, LCID lcid, WORD flags, DISPPARAMS *dp, VARIANT *retv,
826         jsexcept_t *ei, IServiceProvider *caller)
827 {
828     DispatchEx *jsdisp;
829     IDispatchEx *dispex;
830     HRESULT hres;
831
832     jsdisp = iface_to_jsdisp((IUnknown*)disp);
833     if(jsdisp) {
834         hres = jsdisp_call(jsdisp, id, lcid, flags, dp, retv, ei, caller);
835         IDispatchEx_Release(_IDispatchEx_(jsdisp));
836         return hres;
837     }
838
839     memset(ei, 0, sizeof(*ei));
840
841     if(retv)
842         V_VT(retv) = VT_EMPTY;
843     hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
844     if(FAILED(hres)) {
845         UINT err = 0;
846
847         if(flags == DISPATCH_CONSTRUCT) {
848             WARN("IDispatch cannot be constructor\n");
849             return DISP_E_MEMBERNOTFOUND;
850         }
851
852         TRACE("using IDispatch\n");
853         return IDispatch_Invoke(disp, id, &IID_NULL, lcid, flags, dp, retv, &ei->ei, &err);
854     }
855
856     hres = IDispatchEx_InvokeEx(dispex, id, lcid, flags, dp, retv, &ei->ei, caller);
857     IDispatchEx_Release(dispex);
858
859     return hres;
860 }
861
862 HRESULT jsdisp_propput_name(DispatchEx *obj, const WCHAR *name, LCID lcid, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
863 {
864     DISPID named_arg = DISPID_PROPERTYPUT;
865     DISPPARAMS dp = {val, &named_arg, 1, 1};
866     dispex_prop_t *prop;
867     HRESULT hres;
868
869     hres = find_prop_name_prot(obj, name, TRUE, &prop);
870     if(FAILED(hres))
871         return hres;
872
873     return prop_put(obj, prop, lcid, &dp, ei, caller);
874 }
875
876 HRESULT jsdisp_propput_idx(DispatchEx *obj, DWORD idx, LCID lcid, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
877 {
878     WCHAR buf[12];
879
880     static const WCHAR formatW[] = {'%','d',0};
881
882     sprintfW(buf, formatW, idx);
883     return jsdisp_propput_name(obj, buf, lcid, val, ei, caller);
884 }
885
886 HRESULT disp_propput(IDispatch *disp, DISPID id, LCID lcid, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
887 {
888     DISPID dispid = DISPID_PROPERTYPUT;
889     DISPPARAMS dp  = {val, &dispid, 1, 1};
890     IDispatchEx *dispex;
891     DispatchEx *jsdisp;
892     HRESULT hres;
893
894     jsdisp = iface_to_jsdisp((IUnknown*)disp);
895     if(jsdisp) {
896         dispex_prop_t *prop;
897
898         prop = get_prop(jsdisp, id);
899         if(prop)
900             hres = prop_put(jsdisp, prop, lcid, &dp, ei, caller);
901         else
902             hres = DISP_E_MEMBERNOTFOUND;
903
904         IDispatchEx_Release(_IDispatchEx_(jsdisp));
905         return hres;
906     }
907
908     hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
909     if(FAILED(hres)) {
910         ULONG err = 0;
911
912         TRACE("using IDispatch\n");
913         return IDispatch_Invoke(disp, id, &IID_NULL, DISPATCH_PROPERTYPUT, lcid, &dp, NULL, &ei->ei, &err);
914     }
915
916     hres = IDispatchEx_InvokeEx(dispex, id, lcid, DISPATCH_PROPERTYPUT, &dp, NULL, &ei->ei, caller);
917
918     IDispatchEx_Release(dispex);
919     return hres;
920 }
921
922 static HRESULT jsdisp_propget_name(DispatchEx *obj, const WCHAR *name, LCID lcid, VARIANT *var,
923         jsexcept_t *ei, IServiceProvider *caller)
924 {
925     DISPPARAMS dp = {NULL, NULL, 0, 0};
926     dispex_prop_t *prop;
927     HRESULT hres;
928
929     hres = find_prop_name_prot(obj, name, FALSE, &prop);
930     if(FAILED(hres))
931         return hres;
932
933     V_VT(var) = VT_EMPTY;
934     if(!prop)
935         return S_OK;
936
937     return prop_get(obj, prop, lcid, &dp, var, ei, caller);
938 }
939
940 HRESULT jsdisp_propget_idx(DispatchEx *obj, DWORD idx, LCID lcid, VARIANT *var, jsexcept_t *ei, IServiceProvider *caller)
941 {
942     WCHAR buf[12];
943
944     static const WCHAR formatW[] = {'%','d',0};
945
946     sprintfW(buf, formatW, idx);
947     return jsdisp_propget_name(obj, buf, lcid, var, ei, caller);
948 }
949
950 HRESULT disp_propget(IDispatch *disp, DISPID id, LCID lcid, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
951 {
952     DISPPARAMS dp  = {NULL,NULL,0,0};
953     IDispatchEx *dispex;
954     DispatchEx *jsdisp;
955     HRESULT hres;
956
957     jsdisp = iface_to_jsdisp((IUnknown*)disp);
958     if(jsdisp) {
959         dispex_prop_t *prop;
960
961         prop = get_prop(jsdisp, id);
962         if(prop)
963             hres = prop_get(jsdisp, prop, lcid, &dp, val, ei, caller);
964         else
965             hres = DISP_E_MEMBERNOTFOUND;
966
967         IDispatchEx_Release(_IDispatchEx_(jsdisp));
968         return hres;
969     }
970
971     hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
972     if(FAILED(hres)) {
973         ULONG err = 0;
974
975         TRACE("uding IDispatch\n");
976         return IDispatchEx_Invoke(dispex, id, &IID_NULL, lcid, INVOKE_PROPERTYGET, &dp, val, &ei->ei, &err);
977     }
978
979     hres = IDispatchEx_InvokeEx(dispex, id, lcid, INVOKE_PROPERTYGET, &dp, val, &ei->ei, caller);
980     IDispatchEx_Release(dispex);
981
982     return hres;
983 }