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
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
42 struct _dispex_prop_t {
49 const builtin_prop_t *p;
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)
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);
72 prop->type = PROP_DELETED;
76 return get_flags(This->prototype, parent);
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;
90 r = strcmpW(name, This->builtin_info->props[i].name);
92 return This->builtin_info->props + i;
103 static dispex_prop_t *alloc_prop(DispatchEx *This, const WCHAR *name, prop_type_t type, DWORD flags)
107 if(This->buf_size == This->prop_cnt) {
108 dispex_prop_t *tmp = heap_realloc(This->props, (This->buf_size<<=1)*sizeof(*This->props));
114 ret = This->props + This->prop_cnt++;
117 ret->name = heap_strdupW(name);
124 static dispex_prop_t *alloc_protref(DispatchEx *This, const WCHAR *name, DWORD ref)
128 ret = alloc_prop(This, name, PROP_PROTREF, 0);
136 static HRESULT find_prop_name(DispatchEx *This, const WCHAR *name, dispex_prop_t **ret)
138 const builtin_prop_t *builtin;
141 for(prop = This->props; prop < This->props+This->prop_cnt; prop++) {
142 if(prop->name && !strcmpW(prop->name, name)) {
148 builtin = find_builtin_prop(This, name);
150 prop = alloc_prop(This, name, PROP_BUILTIN, builtin->flags);
152 return E_OUTOFMEMORY;
163 static HRESULT find_prop_name_prot(DispatchEx *This, const WCHAR *name, BOOL alloc, dispex_prop_t **ret)
168 hres = find_prop_name(This, name, &prop);
176 if(This->prototype) {
177 hres = find_prop_name_prot(This->prototype, name, FALSE, &prop);
181 prop = alloc_protref(This, prop->name, prop - This->prototype->props);
183 return E_OUTOFMEMORY;
190 TRACE("creating prop %s\n", debugstr_w(name));
192 prop = alloc_prop(This, name, PROP_VARIANT, PROPF_ENUM);
194 return E_OUTOFMEMORY;
195 VariantInit(&prop->u.var);
202 static HRESULT set_this(DISPPARAMS *dp, DISPPARAMS *olddp, IDispatch *jsthis)
207 static DISPID this_id = DISPID_THIS;
211 for(i = 0; i < dp->cNamedArgs; i++) {
212 if(dp->rgdispidNamedArgs[i] == DISPID_THIS)
216 oldargs = dp->rgvarg;
217 dp->rgvarg = heap_alloc((dp->cArgs+1) * sizeof(VARIANTARG));
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;
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;
237 dp->rgdispidNamedArgs = &this_id;
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)
253 if(flags == DISPATCH_CONSTRUCT && (prop->flags & DISPATCH_METHOD)) {
254 WARN("%s is not a constructor\n", debugstr_w(prop->name));
258 set_jsdisp(&vthis, jsthis);
259 hres = prop->u.p->invoke(This->ctx, &vthis, flags, dp, retv, ei, caller);
260 vdisp_release(&vthis);
264 return invoke_prop_func(This->prototype, jsthis, This->prototype->props+prop->u.ref, flags, dp, retv, ei, caller);
268 if(V_VT(&prop->u.var) != VT_DISPATCH) {
269 FIXME("invoke vt %d\n", V_VT(&prop->u.var));
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));
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);
290 ERR("type %d\n", prop->type);
296 static HRESULT prop_get(DispatchEx *This, dispex_prop_t *prop, DISPPARAMS *dp,
297 VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
303 if(prop->u.p->flags & PROPF_METHOD) {
305 hres = create_builtin_function(This->ctx, prop->u.p->invoke, prop->u.p->name, NULL,
306 prop->u.p->flags, NULL, &obj);
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);
318 set_jsdisp(&vthis, This);
319 hres = prop->u.p->invoke(This->ctx, &vthis, DISPATCH_PROPERTYGET, dp, retv, ei, caller);
320 vdisp_release(&vthis);
324 hres = prop_get(This->prototype, This->prototype->props+prop->u.ref, dp, retv, ei, caller);
327 hres = VariantCopy(retv, &prop->u.var);
330 ERR("type %d\n", prop->type);
335 TRACE("fail %08x\n", hres);
339 TRACE("%s ret %s\n", debugstr_w(prop->name), debugstr_variant(retv));
343 static HRESULT prop_put(DispatchEx *This, dispex_prop_t *prop, DISPPARAMS *dp,
344 jsexcept_t *ei, IServiceProvider *caller)
351 if(!(prop->flags & PROPF_METHOD)) {
354 set_jsdisp(&vthis, This);
355 hres = prop->u.p->invoke(This->ctx, &vthis, DISPATCH_PROPERTYPUT, dp, NULL, ei, caller);
356 vdisp_release(&vthis);
360 prop->type = PROP_VARIANT;
361 prop->flags = PROPF_ENUM;
362 V_VT(&prop->u.var) = VT_EMPTY;
365 VariantClear(&prop->u.var);
368 ERR("type %d\n", prop->type);
372 for(i=0; i < dp->cNamedArgs; i++) {
373 if(dp->rgdispidNamedArgs[i] == DISPID_PROPERTYPUT)
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);
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));
393 static HRESULT fill_protrefs(DispatchEx *This)
395 dispex_prop_t *iter, *prop;
401 fill_protrefs(This->prototype);
403 for(iter = This->prototype->props; iter < This->prototype->props+This->prototype->prop_cnt; iter++) {
406 hres = find_prop_name(This, iter->name, &prop);
410 prop = alloc_protref(This, iter->name, iter - This->prototype->props);
412 return E_OUTOFMEMORY;
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));
440 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
442 return E_NOINTERFACE;
445 IUnknown_AddRef((IUnknown*)*ppv);
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);
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);
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);
486 static HRESULT WINAPI DispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
488 DispatchEx *This = DISPATCHEX_THIS(iface);
490 TRACE("(%p)->(%p)\n", This, pctinfo);
496 static HRESULT WINAPI DispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo, LCID lcid,
499 DispatchEx *This = DISPATCHEX_THIS(iface);
500 FIXME("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
504 static HRESULT WINAPI DispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
505 LPOLESTR *rgszNames, UINT cNames, LCID lcid,
508 DispatchEx *This = DISPATCHEX_THIS(iface);
512 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
515 for(i=0; i < cNames; i++) {
516 hres = IDispatchEx_GetDispID(_IDispatchEx_(This), rgszNames[i], 0, rgDispId+i);
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);
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);
559 TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
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));
573 case DISPATCH_METHOD:
574 case DISPATCH_CONSTRUCT:
575 hres = invoke_prop_func(This, This, prop, wFlags, pdp, pvarRes, &jsexcept, pspCaller);
577 case DISPATCH_PROPERTYGET:
578 hres = prop_get(This, prop, pdp, pvarRes, &jsexcept, pspCaller);
580 case DISPATCH_PROPERTYPUT:
581 hres = prop_put(This, prop, pdp, &jsexcept, pspCaller);
584 FIXME("Unimplemented flags %x\n", wFlags);
594 static HRESULT delete_prop(dispex_prop_t *prop)
596 heap_free(prop->name);
598 prop->type = PROP_DELETED;
603 static HRESULT WINAPI DispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
605 DispatchEx *This = DISPATCHEX_THIS(iface);
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);
618 TRACE("not found\n");
622 return delete_prop(prop);
625 static HRESULT WINAPI DispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
627 DispatchEx *This = DISPATCHEX_THIS(iface);
630 TRACE("(%p)->(%x)\n", This, id);
632 prop = get_prop(This, id);
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);
648 static HRESULT WINAPI DispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
650 DispatchEx *This = DISPATCHEX_THIS(iface);
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);
661 return E_OUTOFMEMORY;
666 static HRESULT WINAPI DispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
668 DispatchEx *This = DISPATCHEX_THIS(iface);
672 TRACE("(%p)->(%x %x %p)\n", This, grfdex, id, pid);
674 if(id == DISPID_STARTENUM) {
675 hres = fill_protrefs(This);
680 iter = get_prop(This, id+1);
682 *pid = DISPID_STARTENUM;
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);
694 *pid = DISPID_STARTENUM;
698 static HRESULT WINAPI DispatchEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
700 DispatchEx *This = DISPATCHEX_THIS(iface);
701 FIXME("(%p)->(%p)\n", This, ppunk);
705 #undef DISPATCHEX_THIS
707 static IDispatchExVtbl DispatchExVtbl = {
708 DispatchEx_QueryInterface,
711 DispatchEx_GetTypeInfoCount,
712 DispatchEx_GetTypeInfo,
713 DispatchEx_GetIDsOfNames,
715 DispatchEx_GetDispID,
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;
731 dispex->builtin_info = builtin_info;
733 dispex->props = heap_alloc((dispex->buf_size=4) * sizeof(dispex_prop_t));
735 return E_OUTOFMEMORY;
737 dispex->prototype = 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;
748 dispex->props[0].type = PROP_DELETED;
757 static const builtin_info_t dispex_info = {
765 HRESULT create_dispex(script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *prototype, DispatchEx **dispex)
770 ret = heap_alloc_zero(sizeof(DispatchEx));
772 return E_OUTOFMEMORY;
774 hres = init_dispex(ret, ctx, builtin_info ? builtin_info : &dispex_info, prototype);
782 HRESULT init_dispex_from_constr(DispatchEx *dispex, script_ctx_t *ctx, const builtin_info_t *builtin_info, DispatchEx *constr)
784 DispatchEx *prot = NULL;
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) {
795 V_VT(&var) = VT_EMPTY;
796 memset(&jsexcept, 0, sizeof(jsexcept));
797 hres = prop_get(constr, prop, NULL, &var, &jsexcept, NULL/*FIXME*/);
799 ERR("Could not get prototype\n");
803 if(V_VT(&var) == VT_DISPATCH)
804 prot = iface_to_jsdisp((IUnknown*)V_DISPATCH(&var));
808 hres = init_dispex(dispex, ctx, builtin_info, prot);
811 jsdisp_release(prot);
815 DispatchEx *iface_to_jsdisp(IUnknown *iface)
820 hres = IUnknown_QueryInterface(iface, &IID_IDispatchJS, (void**)&ret);
827 HRESULT jsdisp_get_id(DispatchEx *jsdisp, const WCHAR *name, DWORD flags, DISPID *id)
832 hres = find_prop_name_prot(jsdisp, name, (flags&fdexNameEnsure) != 0, &prop);
837 *id = prop_to_id(jsdisp, prop);
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)
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);
857 HRESULT jsdisp_call(DispatchEx *disp, DISPID id, WORD flags, DISPPARAMS *dp, VARIANT *retv,
858 jsexcept_t *ei, IServiceProvider *caller)
862 memset(ei, 0, sizeof(*ei));
864 V_VT(retv) = VT_EMPTY;
866 prop = get_prop(disp, id);
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)
879 hres = find_prop_name_prot(disp, name, TRUE, &prop);
883 memset(ei, 0, sizeof(*ei));
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)
897 jsdisp = iface_to_jsdisp((IUnknown*)disp);
899 hres = jsdisp_call(jsdisp, id, flags, dp, retv, ei, caller);
900 jsdisp_release(jsdisp);
904 memset(ei, 0, sizeof(*ei));
907 V_VT(retv) = VT_EMPTY;
908 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
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);
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};
934 hres = find_prop_name_prot(obj, name, TRUE, &prop);
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)
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};
959 jsdisp = iface_to_jsdisp((IUnknown*)disp);
963 prop = get_prop(jsdisp, id);
965 hres = prop_put(jsdisp, prop, &dp, ei, caller);
967 hres = DISP_E_MEMBERNOTFOUND;
969 jsdisp_release(jsdisp);
973 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
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);
987 HRESULT jsdisp_propget_name(DispatchEx *obj, const WCHAR *name, VARIANT *var, jsexcept_t *ei, IServiceProvider *caller)
989 DISPPARAMS dp = {NULL, NULL, 0, 0};
993 hres = find_prop_name_prot(obj, name, FALSE, &prop);
997 V_VT(var) = VT_EMPTY;
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)
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);
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;
1034 jsdisp = iface_to_jsdisp((IUnknown*)disp);
1036 hres = jsdisp_propget(jsdisp, id, val, ei, caller);
1037 jsdisp_release(jsdisp);
1041 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
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);
1055 HRESULT jsdisp_delete_idx(DispatchEx *obj, DWORD idx)
1057 static const WCHAR formatW[] = {'%','d',0};
1059 dispex_prop_t *prop;
1062 sprintfW(buf, formatW, idx);
1064 hres = find_prop_name(obj, buf, &prop);
1065 if(FAILED(hres) || !prop)
1068 return delete_prop(prop);