cfgmgr32.h: Define MAX_DEVICE_ID_LEN.
[wine/multimedia.git] / dlls / jscript / dispex.c
blobd0a328e69237f6ec9823ae96a0156eccad9816d8
1 /*
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
19 #include "jscript.h"
21 #include "wine/unicode.h"
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
27 * This IID is used to get DispatchEx objecto from interface.
28 * We might consider using private insteface instead.
30 static const IID IID_IDispatchJS =
31 {0x719c3050,0xf9d3,0x11cf,{0xa4,0x93,0x00,0x40,0x05,0x23,0xa8,0xa6}};
33 #define FDEX_VERSION_MASK 0xf0000000
35 typedef enum {
36 PROP_VARIANT,
37 PROP_BUILTIN,
38 PROP_PROTREF,
39 PROP_DELETED
40 } prop_type_t;
42 struct _dispex_prop_t {
43 WCHAR *name;
44 prop_type_t type;
45 DWORD flags;
47 union {
48 VARIANT var;
49 const builtin_prop_t *p;
50 DWORD ref;
51 } u;
54 static inline DISPID prop_to_id(DispatchEx *This, dispex_prop_t *prop)
56 return prop - This->props;
59 static inline dispex_prop_t *get_prop(DispatchEx *This, DISPID id)
61 if(id < 0 || id >= This->prop_cnt || This->props[id].type == PROP_DELETED)
62 return NULL;
64 return This->props+id;
67 static DWORD get_flags(DispatchEx *This, dispex_prop_t *prop)
69 if(prop->type == PROP_PROTREF) {
70 dispex_prop_t *parent = get_prop(This->prototype, prop->u.ref);
71 if(!parent) {
72 prop->type = PROP_DELETED;
73 return 0;
76 return get_flags(This->prototype, parent);
79 return prop->flags;
82 static const builtin_prop_t *find_builtin_prop(DispatchEx *This, const WCHAR *name)
84 int min = 0, max, i, r;
86 max = This->builtin_info->props_cnt-1;
87 while(min <= max) {
88 i = (min+max)/2;
90 r = strcmpW(name, This->builtin_info->props[i].name);
91 if(!r)
92 return This->builtin_info->props + i;
94 if(r < 0)
95 max = i-1;
96 else
97 min = i+1;
100 return NULL;
103 static dispex_prop_t *alloc_prop(DispatchEx *This, const WCHAR *name, prop_type_t type, DWORD flags)
105 dispex_prop_t *ret;
107 if(This->buf_size == This->prop_cnt) {
108 dispex_prop_t *tmp = heap_realloc(This->props, (This->buf_size<<=1)*sizeof(*This->props));
109 if(!tmp)
110 return NULL;
111 This->props = tmp;
114 ret = This->props + This->prop_cnt++;
115 ret->type = type;
116 ret->flags = flags;
117 ret->name = heap_strdupW(name);
118 if(!ret->name)
119 return NULL;
121 return ret;
124 static dispex_prop_t *alloc_protref(DispatchEx *This, const WCHAR *name, DWORD ref)
126 dispex_prop_t *ret;
128 ret = alloc_prop(This, name, PROP_PROTREF, 0);
129 if(!ret)
130 return NULL;
132 ret->u.ref = ref;
133 return ret;
136 static HRESULT find_prop_name(DispatchEx *This, const WCHAR *name, dispex_prop_t **ret)
138 const builtin_prop_t *builtin;
139 dispex_prop_t *prop;
141 for(prop = This->props; prop < This->props+This->prop_cnt; prop++) {
142 if(prop->name && !strcmpW(prop->name, name)) {
143 *ret = prop;
144 return S_OK;
148 builtin = find_builtin_prop(This, name);
149 if(builtin) {
150 prop = alloc_prop(This, name, PROP_BUILTIN, builtin->flags);
151 if(!prop)
152 return E_OUTOFMEMORY;
154 prop->u.p = builtin;
155 *ret = prop;
156 return S_OK;
159 *ret = NULL;
160 return S_OK;
163 static HRESULT find_prop_name_prot(DispatchEx *This, const WCHAR *name, BOOL alloc, dispex_prop_t **ret)
165 dispex_prop_t *prop;
166 HRESULT hres;
168 hres = find_prop_name(This, name, &prop);
169 if(FAILED(hres))
170 return hres;
171 if(prop) {
172 *ret = prop;
173 return S_OK;
176 if(This->prototype) {
177 hres = find_prop_name_prot(This->prototype, name, FALSE, &prop);
178 if(FAILED(hres))
179 return hres;
180 if(prop) {
181 prop = alloc_protref(This, prop->name, prop - This->prototype->props);
182 if(!prop)
183 return E_OUTOFMEMORY;
184 *ret = prop;
185 return S_OK;
189 if(alloc) {
190 TRACE("creating prop %s\n", debugstr_w(name));
192 prop = alloc_prop(This, name, PROP_VARIANT, PROPF_ENUM);
193 if(!prop)
194 return E_OUTOFMEMORY;
195 VariantInit(&prop->u.var);
198 *ret = prop;
199 return S_OK;
202 static HRESULT set_this(DISPPARAMS *dp, DISPPARAMS *olddp, IDispatch *jsthis)
204 VARIANTARG *oldargs;
205 int i;
207 static DISPID this_id = DISPID_THIS;
209 *dp = *olddp;
211 for(i = 0; i < dp->cNamedArgs; i++) {
212 if(dp->rgdispidNamedArgs[i] == DISPID_THIS)
213 return S_OK;
216 oldargs = dp->rgvarg;
217 dp->rgvarg = heap_alloc((dp->cArgs+1) * sizeof(VARIANTARG));
218 if(!dp->rgvarg)
219 return E_OUTOFMEMORY;
220 memcpy(dp->rgvarg+1, oldargs, dp->cArgs*sizeof(VARIANTARG));
221 V_VT(dp->rgvarg) = VT_DISPATCH;
222 V_DISPATCH(dp->rgvarg) = jsthis;
223 dp->cArgs++;
225 if(dp->cNamedArgs) {
226 DISPID *old = dp->rgdispidNamedArgs;
227 dp->rgdispidNamedArgs = heap_alloc((dp->cNamedArgs+1)*sizeof(DISPID));
228 if(!dp->rgdispidNamedArgs) {
229 heap_free(dp->rgvarg);
230 return E_OUTOFMEMORY;
233 memcpy(dp->rgdispidNamedArgs+1, old, dp->cNamedArgs*sizeof(DISPID));
234 dp->rgdispidNamedArgs[0] = DISPID_THIS;
235 dp->cNamedArgs++;
236 }else {
237 dp->rgdispidNamedArgs = &this_id;
238 dp->cNamedArgs = 1;
241 return S_OK;
244 static HRESULT invoke_prop_func(DispatchEx *This, DispatchEx *jsthis, dispex_prop_t *prop, WORD flags,
245 DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
247 HRESULT hres;
249 switch(prop->type) {
250 case PROP_BUILTIN: {
251 vdisp_t vthis;
253 if(flags == DISPATCH_CONSTRUCT && (prop->flags & DISPATCH_METHOD)) {
254 WARN("%s is not a constructor\n", debugstr_w(prop->name));
255 return E_INVALIDARG;
258 set_jsdisp(&vthis, jsthis);
259 hres = prop->u.p->invoke(This->ctx, &vthis, flags, dp, retv, ei, caller);
260 vdisp_release(&vthis);
261 return hres;
263 case PROP_PROTREF:
264 return invoke_prop_func(This->prototype, jsthis, This->prototype->props+prop->u.ref, flags, dp, retv, ei, caller);
265 case PROP_VARIANT: {
266 DISPPARAMS new_dp;
268 if(V_VT(&prop->u.var) != VT_DISPATCH) {
269 FIXME("invoke vt %d\n", V_VT(&prop->u.var));
270 return E_FAIL;
273 TRACE("call %s %p\n", debugstr_w(prop->name), V_DISPATCH(&prop->u.var));
275 hres = set_this(&new_dp, dp, (IDispatch*)_IDispatchEx_(jsthis));
276 if(FAILED(hres))
277 return hres;
279 hres = disp_call(This->ctx, V_DISPATCH(&prop->u.var), DISPID_VALUE, flags, &new_dp, retv, ei, caller);
281 if(new_dp.rgvarg != dp->rgvarg) {
282 heap_free(new_dp.rgvarg);
283 if(new_dp.cNamedArgs > 1)
284 heap_free(new_dp.rgdispidNamedArgs);
287 return hres;
289 default:
290 ERR("type %d\n", prop->type);
293 return E_FAIL;
296 static HRESULT prop_get(DispatchEx *This, dispex_prop_t *prop, DISPPARAMS *dp,
297 VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
299 HRESULT hres;
301 switch(prop->type) {
302 case PROP_BUILTIN:
303 if(prop->u.p->flags & PROPF_METHOD) {
304 DispatchEx *obj;
305 hres = create_builtin_function(This->ctx, prop->u.p->invoke, prop->u.p->name, NULL,
306 prop->u.p->flags, NULL, &obj);
307 if(FAILED(hres))
308 break;
310 prop->type = PROP_VARIANT;
311 V_VT(&prop->u.var) = VT_DISPATCH;
312 V_DISPATCH(&prop->u.var) = (IDispatch*)_IDispatchEx_(obj);
314 hres = VariantCopy(retv, &prop->u.var);
315 }else {
316 vdisp_t vthis;
318 set_jsdisp(&vthis, This);
319 hres = prop->u.p->invoke(This->ctx, &vthis, DISPATCH_PROPERTYGET, dp, retv, ei, caller);
320 vdisp_release(&vthis);
322 break;
323 case PROP_PROTREF:
324 hres = prop_get(This->prototype, This->prototype->props+prop->u.ref, dp, retv, ei, caller);
325 break;
326 case PROP_VARIANT:
327 hres = VariantCopy(retv, &prop->u.var);
328 break;
329 default:
330 ERR("type %d\n", prop->type);
331 return E_FAIL;
334 if(FAILED(hres)) {
335 TRACE("fail %08x\n", hres);
336 return hres;
339 TRACE("%s ret %s\n", debugstr_w(prop->name), debugstr_variant(retv));
340 return hres;
343 static HRESULT prop_put(DispatchEx *This, dispex_prop_t *prop, DISPPARAMS *dp,
344 jsexcept_t *ei, IServiceProvider *caller)
346 DWORD i;
347 HRESULT hres;
349 switch(prop->type) {
350 case PROP_BUILTIN:
351 if(!(prop->flags & PROPF_METHOD)) {
352 vdisp_t vthis;
354 set_jsdisp(&vthis, This);
355 hres = prop->u.p->invoke(This->ctx, &vthis, DISPATCH_PROPERTYPUT, dp, NULL, ei, caller);
356 vdisp_release(&vthis);
357 return hres;
359 case PROP_PROTREF:
360 prop->type = PROP_VARIANT;
361 prop->flags = PROPF_ENUM;
362 V_VT(&prop->u.var) = VT_EMPTY;
363 break;
364 case PROP_VARIANT:
365 VariantClear(&prop->u.var);
366 break;
367 default:
368 ERR("type %d\n", prop->type);
369 return E_FAIL;
372 for(i=0; i < dp->cNamedArgs; i++) {
373 if(dp->rgdispidNamedArgs[i] == DISPID_PROPERTYPUT)
374 break;
377 if(i == dp->cNamedArgs) {
378 TRACE("no value to set\n");
379 return DISP_E_PARAMNOTOPTIONAL;
382 hres = VariantCopy(&prop->u.var, dp->rgvarg+i);
383 if(FAILED(hres))
384 return hres;
386 if(This->builtin_info->on_put)
387 This->builtin_info->on_put(This, prop->name);
389 TRACE("%s = %s\n", debugstr_w(prop->name), debugstr_variant(dp->rgvarg+i));
390 return S_OK;
393 static HRESULT fill_protrefs(DispatchEx *This)
395 dispex_prop_t *iter, *prop;
396 HRESULT hres;
398 if(!This->prototype)
399 return S_OK;
401 fill_protrefs(This->prototype);
403 for(iter = This->prototype->props; iter < This->prototype->props+This->prototype->prop_cnt; iter++) {
404 if(!iter->name)
405 continue;
406 hres = find_prop_name(This, iter->name, &prop);
407 if(FAILED(hres))
408 return hres;
409 if(!prop) {
410 prop = alloc_protref(This, iter->name, iter - This->prototype->props);
411 if(!prop)
412 return E_OUTOFMEMORY;
416 return S_OK;
419 #define DISPATCHEX_THIS(iface) DEFINE_THIS(DispatchEx, IDispatchEx, iface)
421 static HRESULT WINAPI DispatchEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
423 DispatchEx *This = DISPATCHEX_THIS(iface);
425 if(IsEqualGUID(&IID_IUnknown, riid)) {
426 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
427 *ppv = _IDispatchEx_(This);
428 }else if(IsEqualGUID(&IID_IDispatch, riid)) {
429 TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
430 *ppv = _IDispatchEx_(This);
431 }else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
432 TRACE("(%p)->(IID_IDispatchEx %p)\n", This, ppv);
433 *ppv = _IDispatchEx_(This);
434 }else if(IsEqualGUID(&IID_IDispatchJS, riid)) {
435 TRACE("(%p)->(IID_IDispatchJS %p)\n", This, ppv);
436 IUnknown_AddRef(_IDispatchEx_(This));
437 *ppv = This;
438 return S_OK;
439 }else {
440 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
441 *ppv = NULL;
442 return E_NOINTERFACE;
445 IUnknown_AddRef((IUnknown*)*ppv);
446 return S_OK;
449 static ULONG WINAPI DispatchEx_AddRef(IDispatchEx *iface)
451 DispatchEx *This = DISPATCHEX_THIS(iface);
452 LONG ref = InterlockedIncrement(&This->ref);
454 TRACE("(%p) ref=%d\n", This, ref);
456 return ref;
459 static ULONG WINAPI DispatchEx_Release(IDispatchEx *iface)
461 DispatchEx *This = DISPATCHEX_THIS(iface);
462 LONG ref = InterlockedDecrement(&This->ref);
464 TRACE("(%p) ref=%d\n", This, ref);
466 if(!ref) {
467 dispex_prop_t *prop;
469 for(prop = This->props; prop < This->props+This->prop_cnt; prop++) {
470 if(prop->type == PROP_VARIANT)
471 VariantClear(&prop->u.var);
472 heap_free(prop->name);
474 heap_free(This->props);
475 script_release(This->ctx);
477 if(This->builtin_info->destructor)
478 This->builtin_info->destructor(This);
479 else
480 heap_free(This);
483 return ref;
486 static HRESULT WINAPI DispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
488 DispatchEx *This = DISPATCHEX_THIS(iface);
490 TRACE("(%p)->(%p)\n", This, pctinfo);
492 *pctinfo = 1;
493 return S_OK;
496 static HRESULT WINAPI DispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo, LCID lcid,
497 ITypeInfo **ppTInfo)
499 DispatchEx *This = DISPATCHEX_THIS(iface);
500 FIXME("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
501 return E_NOTIMPL;
504 static HRESULT WINAPI DispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
505 LPOLESTR *rgszNames, UINT cNames, LCID lcid,
506 DISPID *rgDispId)
508 DispatchEx *This = DISPATCHEX_THIS(iface);
509 UINT i;
510 HRESULT hres;
512 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
513 lcid, rgDispId);
515 for(i=0; i < cNames; i++) {
516 hres = IDispatchEx_GetDispID(_IDispatchEx_(This), rgszNames[i], 0, rgDispId+i);
517 if(FAILED(hres))
518 return hres;
521 return S_OK;
524 static HRESULT WINAPI DispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
525 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
526 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
528 DispatchEx *This = DISPATCHEX_THIS(iface);
530 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
531 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
533 return IDispatchEx_InvokeEx(_IDispatchEx_(This), dispIdMember, lcid, wFlags,
534 pDispParams, pVarResult, pExcepInfo, NULL);
537 static HRESULT WINAPI DispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
539 DispatchEx *This = DISPATCHEX_THIS(iface);
541 TRACE("(%p)->(%s %x %p)\n", This, debugstr_w(bstrName), grfdex, pid);
543 if(grfdex & ~(fdexNameCaseSensitive|fdexNameEnsure|fdexNameImplicit|FDEX_VERSION_MASK)) {
544 FIXME("Unsupported grfdex %x\n", grfdex);
545 return E_NOTIMPL;
548 return jsdisp_get_id(This, bstrName, grfdex, pid);
551 static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
552 VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
554 DispatchEx *This = DISPATCHEX_THIS(iface);
555 dispex_prop_t *prop;
556 jsexcept_t jsexcept;
557 HRESULT hres;
559 TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
561 if(pvarRes)
562 V_VT(pvarRes) = VT_EMPTY;
564 prop = get_prop(This, id);
565 if(!prop || prop->type == PROP_DELETED) {
566 TRACE("invalid id\n");
567 return DISP_E_MEMBERNOTFOUND;
570 memset(&jsexcept, 0, sizeof(jsexcept));
572 switch(wFlags) {
573 case DISPATCH_METHOD:
574 case DISPATCH_CONSTRUCT:
575 hres = invoke_prop_func(This, This, prop, wFlags, pdp, pvarRes, &jsexcept, pspCaller);
576 break;
577 case DISPATCH_PROPERTYGET:
578 hres = prop_get(This, prop, pdp, pvarRes, &jsexcept, pspCaller);
579 break;
580 case DISPATCH_PROPERTYPUT:
581 hres = prop_put(This, prop, pdp, &jsexcept, pspCaller);
582 break;
583 default:
584 FIXME("Unimplemented flags %x\n", wFlags);
585 return E_INVALIDARG;
588 if(pei)
589 *pei = jsexcept.ei;
591 return hres;
594 static HRESULT delete_prop(dispex_prop_t *prop)
596 heap_free(prop->name);
597 prop->name = NULL;
598 prop->type = PROP_DELETED;
600 return S_OK;
603 static HRESULT WINAPI DispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
605 DispatchEx *This = DISPATCHEX_THIS(iface);
606 dispex_prop_t *prop;
607 HRESULT hres;
609 TRACE("(%p)->(%s %x)\n", This, debugstr_w(bstrName), grfdex);
611 if(grfdex & ~(fdexNameCaseSensitive|fdexNameEnsure|fdexNameImplicit|FDEX_VERSION_MASK))
612 FIXME("Unsupported grfdex %x\n", grfdex);
614 hres = find_prop_name(This, bstrName, &prop);
615 if(FAILED(hres))
616 return hres;
617 if(!prop) {
618 TRACE("not found\n");
619 return S_OK;
622 return delete_prop(prop);
625 static HRESULT WINAPI DispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
627 DispatchEx *This = DISPATCHEX_THIS(iface);
628 dispex_prop_t *prop;
630 TRACE("(%p)->(%x)\n", This, id);
632 prop = get_prop(This, id);
633 if(!prop) {
634 WARN("invalid id\n");
635 return DISP_E_MEMBERNOTFOUND;
638 return delete_prop(prop);
641 static HRESULT WINAPI DispatchEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
643 DispatchEx *This = DISPATCHEX_THIS(iface);
644 FIXME("(%p)->(%x %x %p)\n", This, id, grfdexFetch, pgrfdex);
645 return E_NOTIMPL;
648 static HRESULT WINAPI DispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
650 DispatchEx *This = DISPATCHEX_THIS(iface);
651 dispex_prop_t *prop;
653 TRACE("(%p)->(%x %p)\n", This, id, pbstrName);
655 prop = get_prop(This, id);
656 if(!prop || !prop->name || prop->type == PROP_DELETED)
657 return DISP_E_MEMBERNOTFOUND;
659 *pbstrName = SysAllocString(prop->name);
660 if(!*pbstrName)
661 return E_OUTOFMEMORY;
663 return S_OK;
666 static HRESULT WINAPI DispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
668 DispatchEx *This = DISPATCHEX_THIS(iface);
669 dispex_prop_t *iter;
670 HRESULT hres;
672 TRACE("(%p)->(%x %x %p)\n", This, grfdex, id, pid);
674 if(id == DISPID_STARTENUM) {
675 hres = fill_protrefs(This);
676 if(FAILED(hres))
677 return hres;
680 iter = get_prop(This, id+1);
681 if(!iter) {
682 *pid = DISPID_STARTENUM;
683 return S_FALSE;
686 while(iter < This->props + This->prop_cnt) {
687 if(iter->name && (get_flags(This, iter) & PROPF_ENUM)) {
688 *pid = prop_to_id(This, iter);
689 return S_OK;
691 iter++;
694 *pid = DISPID_STARTENUM;
695 return S_FALSE;
698 static HRESULT WINAPI DispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
700 DispatchEx *This = DISPATCHEX_THIS(iface);
701 FIXME("(%p)->(%p)\n", This, ppunk);
702 return E_NOTIMPL;
705 #undef DISPATCHEX_THIS
707 static IDispatchExVtbl DispatchExVtbl = {
708 DispatchEx_QueryInterface,
709 DispatchEx_AddRef,
710 DispatchEx_Release,
711 DispatchEx_GetTypeInfoCount,
712 DispatchEx_GetTypeInfo,
713 DispatchEx_GetIDsOfNames,
714 DispatchEx_Invoke,
715 DispatchEx_GetDispID,
716 DispatchEx_InvokeEx,
717 DispatchEx_DeleteMemberByName,
718 DispatchEx_DeleteMemberByDispID,
719 DispatchEx_GetMemberProperties,
720 DispatchEx_GetMemberName,
721 DispatchEx_GetNextDispID,
722 DispatchEx_GetNameSpaceParent
725 HRESULT init_dispex(DispatchEx *dispex, script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *prototype)
727 TRACE("%p (%p)\n", dispex, prototype);
729 dispex->lpIDispatchExVtbl = &DispatchExVtbl;
730 dispex->ref = 1;
731 dispex->builtin_info = builtin_info;
733 dispex->props = heap_alloc((dispex->buf_size=4) * sizeof(dispex_prop_t));
734 if(!dispex->props)
735 return E_OUTOFMEMORY;
737 dispex->prototype = prototype;
738 if(prototype)
739 IDispatchEx_AddRef(_IDispatchEx_(prototype));
741 dispex->prop_cnt = 1;
742 dispex->props[0].name = NULL;
743 dispex->props[0].flags = 0;
744 if(builtin_info->value_prop.invoke) {
745 dispex->props[0].type = PROP_BUILTIN;
746 dispex->props[0].u.p = &builtin_info->value_prop;
747 }else {
748 dispex->props[0].type = PROP_DELETED;
751 script_addref(ctx);
752 dispex->ctx = ctx;
754 return S_OK;
757 static const builtin_info_t dispex_info = {
758 JSCLASS_NONE,
759 {NULL, NULL, 0},
760 0, NULL,
761 NULL,
762 NULL
765 HRESULT create_dispex(script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *prototype, DispatchEx **dispex)
767 DispatchEx *ret;
768 HRESULT hres;
770 ret = heap_alloc_zero(sizeof(DispatchEx));
771 if(!ret)
772 return E_OUTOFMEMORY;
774 hres = init_dispex(ret, ctx, builtin_info ? builtin_info : &dispex_info, prototype);
775 if(FAILED(hres))
776 return hres;
778 *dispex = ret;
779 return S_OK;
782 HRESULT init_dispex_from_constr(DispatchEx *dispex, script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *constr)
784 DispatchEx *prot = NULL;
785 dispex_prop_t *prop;
786 HRESULT hres;
788 static const WCHAR prototypeW[] = {'p','r','o','t','o','t','y','p','e',0};
790 hres = find_prop_name_prot(constr, prototypeW, FALSE, &prop);
791 if(SUCCEEDED(hres) && prop) {
792 jsexcept_t jsexcept;
793 VARIANT var;
795 V_VT(&var) = VT_EMPTY;
796 memset(&jsexcept, 0, sizeof(jsexcept));
797 hres = prop_get(constr, prop, NULL, &var, &jsexcept, NULL/*FIXME*/);
798 if(FAILED(hres)) {
799 ERR("Could not get prototype\n");
800 return hres;
803 if(V_VT(&var) == VT_DISPATCH)
804 prot = iface_to_jsdisp((IUnknown*)V_DISPATCH(&var));
805 VariantClear(&var);
808 hres = init_dispex(dispex, ctx, builtin_info, prot);
810 if(prot)
811 jsdisp_release(prot);
812 return hres;
815 DispatchEx *iface_to_jsdisp(IUnknown *iface)
817 DispatchEx *ret;
818 HRESULT hres;
820 hres = IUnknown_QueryInterface(iface, &IID_IDispatchJS, (void**)&ret);
821 if(FAILED(hres))
822 return NULL;
824 return ret;
827 HRESULT jsdisp_get_id(DispatchEx *jsdisp, const WCHAR *name, DWORD flags, DISPID *id)
829 dispex_prop_t *prop;
830 HRESULT hres;
832 hres = find_prop_name_prot(jsdisp, name, (flags&fdexNameEnsure) != 0, &prop);
833 if(FAILED(hres))
834 return hres;
836 if(prop) {
837 *id = prop_to_id(jsdisp, prop);
838 return S_OK;
841 TRACE("not found %s\n", debugstr_w(name));
842 return DISP_E_UNKNOWNNAME;
845 HRESULT jsdisp_call_value(DispatchEx *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv,
846 jsexcept_t *ei, IServiceProvider *caller)
848 vdisp_t vdisp;
849 HRESULT hres;
851 set_jsdisp(&vdisp, jsthis);
852 hres = jsthis->builtin_info->value_prop.invoke(jsthis->ctx, &vdisp, flags, dp, retv, ei, caller);
853 vdisp_release(&vdisp);
854 return hres;
857 HRESULT jsdisp_call(DispatchEx *disp, DISPID id, WORD flags, DISPPARAMS *dp, VARIANT *retv,
858 jsexcept_t *ei, IServiceProvider *caller)
860 dispex_prop_t *prop;
862 memset(ei, 0, sizeof(*ei));
863 if(retv)
864 V_VT(retv) = VT_EMPTY;
866 prop = get_prop(disp, id);
867 if(!prop)
868 return DISP_E_MEMBERNOTFOUND;
870 return invoke_prop_func(disp, disp, prop, flags, dp, retv, ei, caller);
873 HRESULT jsdisp_call_name(DispatchEx *disp, const WCHAR *name, WORD flags, DISPPARAMS *dp, VARIANT *retv,
874 jsexcept_t *ei, IServiceProvider *caller)
876 dispex_prop_t *prop;
877 HRESULT hres;
879 hres = find_prop_name_prot(disp, name, TRUE, &prop);
880 if(FAILED(hres))
881 return hres;
883 memset(ei, 0, sizeof(*ei));
884 if(retv)
885 V_VT(retv) = VT_EMPTY;
887 return invoke_prop_func(disp, disp, prop, flags, dp, retv, ei, caller);
890 HRESULT disp_call(script_ctx_t *ctx, IDispatch *disp, DISPID id, WORD flags, DISPPARAMS *dp, VARIANT *retv,
891 jsexcept_t *ei, IServiceProvider *caller)
893 DispatchEx *jsdisp;
894 IDispatchEx *dispex;
895 HRESULT hres;
897 jsdisp = iface_to_jsdisp((IUnknown*)disp);
898 if(jsdisp) {
899 hres = jsdisp_call(jsdisp, id, flags, dp, retv, ei, caller);
900 jsdisp_release(jsdisp);
901 return hres;
904 memset(ei, 0, sizeof(*ei));
906 if(retv)
907 V_VT(retv) = VT_EMPTY;
908 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
909 if(FAILED(hres)) {
910 UINT err = 0;
912 if(flags == DISPATCH_CONSTRUCT) {
913 WARN("IDispatch cannot be constructor\n");
914 return DISP_E_MEMBERNOTFOUND;
917 TRACE("using IDispatch\n");
918 return IDispatch_Invoke(disp, id, &IID_NULL, ctx->lcid, flags, dp, retv, &ei->ei, &err);
921 hres = IDispatchEx_InvokeEx(dispex, id, ctx->lcid, flags, dp, retv, &ei->ei, caller);
922 IDispatchEx_Release(dispex);
924 return hres;
927 HRESULT jsdisp_propput_name(DispatchEx *obj, const WCHAR *name, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
929 DISPID named_arg = DISPID_PROPERTYPUT;
930 DISPPARAMS dp = {val, &named_arg, 1, 1};
931 dispex_prop_t *prop;
932 HRESULT hres;
934 hres = find_prop_name_prot(obj, name, TRUE, &prop);
935 if(FAILED(hres))
936 return hres;
938 return prop_put(obj, prop, &dp, ei, caller);
941 HRESULT jsdisp_propput_idx(DispatchEx *obj, DWORD idx, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
943 WCHAR buf[12];
945 static const WCHAR formatW[] = {'%','d',0};
947 sprintfW(buf, formatW, idx);
948 return jsdisp_propput_name(obj, buf, val, ei, caller);
951 HRESULT disp_propput(script_ctx_t *ctx, IDispatch *disp, DISPID id, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
953 DISPID dispid = DISPID_PROPERTYPUT;
954 DISPPARAMS dp = {val, &dispid, 1, 1};
955 IDispatchEx *dispex;
956 DispatchEx *jsdisp;
957 HRESULT hres;
959 jsdisp = iface_to_jsdisp((IUnknown*)disp);
960 if(jsdisp) {
961 dispex_prop_t *prop;
963 prop = get_prop(jsdisp, id);
964 if(prop)
965 hres = prop_put(jsdisp, prop, &dp, ei, caller);
966 else
967 hres = DISP_E_MEMBERNOTFOUND;
969 jsdisp_release(jsdisp);
970 return hres;
973 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
974 if(FAILED(hres)) {
975 ULONG err = 0;
977 TRACE("using IDispatch\n");
978 return IDispatch_Invoke(disp, id, &IID_NULL, ctx->lcid, DISPATCH_PROPERTYPUT, &dp, NULL, &ei->ei, &err);
981 hres = IDispatchEx_InvokeEx(dispex, id, ctx->lcid, DISPATCH_PROPERTYPUT, &dp, NULL, &ei->ei, caller);
983 IDispatchEx_Release(dispex);
984 return hres;
987 HRESULT jsdisp_propget_name(DispatchEx *obj, const WCHAR *name, VARIANT *var, jsexcept_t *ei, IServiceProvider *caller)
989 DISPPARAMS dp = {NULL, NULL, 0, 0};
990 dispex_prop_t *prop;
991 HRESULT hres;
993 hres = find_prop_name_prot(obj, name, FALSE, &prop);
994 if(FAILED(hres))
995 return hres;
997 V_VT(var) = VT_EMPTY;
998 if(!prop)
999 return S_OK;
1001 return prop_get(obj, prop, &dp, var, ei, caller);
1004 HRESULT jsdisp_propget_idx(DispatchEx *obj, DWORD idx, VARIANT *var, jsexcept_t *ei, IServiceProvider *caller)
1006 WCHAR buf[12];
1008 static const WCHAR formatW[] = {'%','d',0};
1010 sprintfW(buf, formatW, idx);
1011 return jsdisp_propget_name(obj, buf, var, ei, caller);
1014 HRESULT jsdisp_propget(DispatchEx *jsdisp, DISPID id, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
1016 DISPPARAMS dp = {NULL,NULL,0,0};
1017 dispex_prop_t *prop;
1019 prop = get_prop(jsdisp, id);
1020 if(!prop)
1021 return DISP_E_MEMBERNOTFOUND;
1023 V_VT(val) = VT_EMPTY;
1024 return prop_get(jsdisp, prop, &dp, val, ei, caller);
1027 HRESULT disp_propget(script_ctx_t *ctx, IDispatch *disp, DISPID id, VARIANT *val, jsexcept_t *ei, IServiceProvider *caller)
1029 DISPPARAMS dp = {NULL,NULL,0,0};
1030 IDispatchEx *dispex;
1031 DispatchEx *jsdisp;
1032 HRESULT hres;
1034 jsdisp = iface_to_jsdisp((IUnknown*)disp);
1035 if(jsdisp) {
1036 hres = jsdisp_propget(jsdisp, id, val, ei, caller);
1037 jsdisp_release(jsdisp);
1038 return hres;
1041 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
1042 if(FAILED(hres)) {
1043 ULONG err = 0;
1045 TRACE("using IDispatch\n");
1046 return IDispatch_Invoke(disp, id, &IID_NULL, ctx->lcid, INVOKE_PROPERTYGET, &dp, val, &ei->ei, &err);
1049 hres = IDispatchEx_InvokeEx(dispex, id, ctx->lcid, INVOKE_PROPERTYGET, &dp, val, &ei->ei, caller);
1050 IDispatchEx_Release(dispex);
1052 return hres;
1055 HRESULT jsdisp_delete_idx(DispatchEx *obj, DWORD idx)
1057 static const WCHAR formatW[] = {'%','d',0};
1058 WCHAR buf[12];
1059 dispex_prop_t *prop;
1060 HRESULT hres;
1062 sprintfW(buf, formatW, idx);
1064 hres = find_prop_name(obj, buf, &prop);
1065 if(FAILED(hres) || !prop)
1066 return hres;
1068 return delete_prop(prop);