Get rid of the no longer used ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
[wine/multimedia.git] / dlls / oleaut32 / dispatch.c
blobbb34cd1e368f3bff6de57a2ec3e4486505976002
1 /**
2 * Dispatch API functions
4 * Copyright 2000 Francois Jacques, Macadamian Technologies Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * TODO: Type coercion is implemented in variant.c but not called yet.
23 #include "config.h"
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <ctype.h>
31 #include "windef.h"
32 #include "winbase.h"
33 #include "objbase.h"
34 #include "oleauto.h"
35 #include "winerror.h"
36 #include "winreg.h"
37 #include "winnls.h" /* for PRIMARYLANGID */
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(ole);
42 WINE_DECLARE_DEBUG_CHANNEL(typelib);
44 static IDispatch * WINAPI StdDispatch_Construct(IUnknown * punkOuter, void * pvThis, ITypeInfo * pTypeInfo);
46 /******************************************************************************
47 * DispInvoke (OLEAUT32.30)
49 * Call an object method using the information from its type library.
51 * RETURNS
52 * Success: S_OK.
53 * Failure: Returns DISP_E_EXCEPTION and updates pexcepinfo if an exception occurs.
54 * DISP_E_BADPARAMCOUNT if the number of parameters is incorrect.
55 * DISP_E_MEMBERNOTFOUND if the method does not exist.
56 * puArgErr is updated if a parameter error (see notes) occurs.
57 * Otherwise, returns the result of calling ITypeInfo_Invoke().
59 * NOTES
60 * Parameter errors include the following:
61 *| DISP_E_BADVARTYPE
62 *| E_INVALIDARG An argument was invalid
63 *| DISP_E_TYPEMISMATCH,
64 *| DISP_E_OVERFLOW An argument was valid but could not be coerced
65 *| DISP_E_PARAMNOTOPTIONAL A non optional parameter was not passed
66 *| DISP_E_PARAMNOTFOUND A parameter was passed that was not expected by the method
67 * This call defers to ITypeInfo_Invoke().
69 HRESULT WINAPI DispInvoke(
70 VOID *_this, /* [in] Object to call method on */
71 ITypeInfo *ptinfo, /* [in] Object type info */
72 DISPID dispidMember, /* [in] DISPID of the member (e.g. from GetIDsOfNames()) */
73 USHORT wFlags, /* [in] Kind of method call (DISPATCH_ flags from "oaidl.h") */
74 DISPPARAMS *pparams, /* [in] Array of method arguments */
75 VARIANT *pvarResult, /* [out] Destination for the result of the call */
76 EXCEPINFO *pexcepinfo, /* [out] Destination for exception information */
77 UINT *puArgErr) /* [out] Destination for bad argument */
79 /**
80 * TODO:
81 * For each param, call DispGetParam to perform type coercion
83 FIXME("Coercion of arguments not implemented\n");
85 return ITypeInfo_Invoke(ptinfo, _this, dispidMember, wFlags,
86 pparams, pvarResult, pexcepinfo, puArgErr);
89 /******************************************************************************
90 * DispGetIDsOfNames (OLEAUT32.29)
92 * Convert a set of parameter names to DISPID's for DispInvoke().
94 * RETURNS
95 * Success: S_OK.
96 * Failure: An HRESULT error code.
98 * NOTES
99 * This call defers to ITypeInfo_GetIDsOfNames(). The ITypeInfo interface passed
100 * as ptinfo contains the information to map names to DISPID's.
102 HRESULT WINAPI DispGetIDsOfNames(
103 ITypeInfo *ptinfo, /* [in] Object's type info */
104 OLECHAR **rgszNames, /* [in] Array of names to get DISPID's for */
105 UINT cNames, /* [in] Number of names in rgszNames */
106 DISPID *rgdispid) /* [out] Destination for converted DISPID's */
108 return ITypeInfo_GetIDsOfNames(ptinfo, rgszNames, cNames, rgdispid);
111 /******************************************************************************
112 * DispGetParam (OLEAUT32.28)
114 * Retrive a parameter from a DISPPARAMS structure and coerce it to the
115 * specified variant type.
117 * NOTES
118 * Coercion is done using system (0) locale.
120 * RETURNS
121 * Success: S_OK.
122 * Failure: DISP_E_PARAMNOTFOUND, if position is invalid. or
123 * DISP_E_TYPEMISMATCH, if the coercion failed. puArgErr is
124 * set to the index of the argument in pdispparams.
126 HRESULT WINAPI DispGetParam(
127 DISPPARAMS *pdispparams, /* [in] Parameter list */
128 UINT position, /* [in] Position of parameter to coerce in pdispparams */
129 VARTYPE vtTarg, /* [in] Type of value to coerce to */
130 VARIANT *pvarResult, /* [out] Destination for resulting variant */
131 UINT *puArgErr) /* [out] Destination for error code */
133 /* position is counted backwards */
134 UINT pos;
135 HRESULT hr;
137 TRACE("position=%d, cArgs=%d, cNamedArgs=%d\n",
138 position, pdispparams->cArgs, pdispparams->cNamedArgs);
139 if (position < pdispparams->cArgs) {
140 /* positional arg? */
141 pos = pdispparams->cArgs - position - 1;
142 } else {
143 /* FIXME: is this how to handle named args? */
144 for (pos=0; pos<pdispparams->cNamedArgs; pos++)
145 if (pdispparams->rgdispidNamedArgs[pos] == position) break;
147 if (pos==pdispparams->cNamedArgs)
148 return DISP_E_PARAMNOTFOUND;
150 hr = VariantChangeType(pvarResult,
151 &pdispparams->rgvarg[pos],
152 0, vtTarg);
153 if (hr == DISP_E_TYPEMISMATCH) *puArgErr = pos;
154 return hr;
157 /******************************************************************************
158 * CreateStdDispatch [OLEAUT32.32]
160 * Create and return a standard IDispatch object.
162 * RETURNS
163 * Success: S_OK. ppunkStdDisp contains the new object.
164 * Failure: An HRESULT error code.
166 * NOTES
167 * Outer unknown appears to be completely ignored.
169 HRESULT WINAPI CreateStdDispatch(
170 IUnknown* punkOuter,
171 void* pvThis,
172 ITypeInfo* ptinfo,
173 IUnknown** ppunkStdDisp)
175 TRACE("(%p, %p, %p, %p)\n", punkOuter, pvThis, ptinfo, ppunkStdDisp);
177 *ppunkStdDisp = (LPUNKNOWN)StdDispatch_Construct(punkOuter, pvThis, ptinfo);
178 if (!*ppunkStdDisp)
179 return E_OUTOFMEMORY;
180 return S_OK;
183 /******************************************************************************
184 * CreateDispTypeInfo [OLEAUT32.31]
186 * Build type information for an object so it can be called through an
187 * IDispatch interface.
189 * RETURNS
190 * Success: S_OK. pptinfo contains the created ITypeInfo object.
191 * Failure: E_INVALIDARG, if one or more arguments is invalid.
193 * NOTES
194 * This call allows an objects methods to be accessed through IDispatch, by
195 * building an ITypeInfo object that IDispatch can use to call through.
197 HRESULT WINAPI CreateDispTypeInfo(
198 INTERFACEDATA *pidata, /* [I] Description of the interface to build type info for */
199 LCID lcid, /* [I] Locale Id */
200 ITypeInfo **pptinfo) /* [O] Destination for created ITypeInfo object */
202 FIXME("(%p,%ld,%p),stub\n",pidata,lcid,pptinfo);
203 return 0;
206 /******************************************************************************
207 * IDispatch {OLEAUT32}
209 * NOTES
210 * The IDispatch interface provides a single interface to dispatch method calls,
211 * regardless of whether the object to be called is in or out of process,
212 * local or remote (e.g. being called over a network). This interface is late-bound
213 * (linked at run-time), as opposed to early-bound (linked at compile time).
215 * The interface is used by objects that wish to called by scripting
216 * languages such as VBA, in order to minimise the amount of COM and C/C++
217 * knowledge required, or by objects that wish to live out of process from code
218 * that will call their methods.
220 * Method, property and parameter names can be localised. The details required to
221 * map names to methods and parameters are collected in a type library, usually
222 * output by an IDL compiler using the objects IDL description. This information is
223 * accessible programatically through the ITypeLib interface (for a type library),
224 * and the ITypeInfo interface (for an object within the type library). Type information
225 * can also be created at run-time using CreateDispTypeInfo().
227 * WRAPPERS
228 * Instead of using IDispatch directly, there are several wrapper functions available
229 * to simplify the process of calling an objects methods through IDispatch.
231 * A standard implementation of an IDispatch object is created by calling
232 * CreateStdDispatch(). Numeric Id values for the parameters and methods (DISPID's)
233 * of an object of interest are retrieved by calling DispGetIDsOfNames(). DispGetParam()
234 * retrieves information about a particular parameter. Finally the DispInvoke()
235 * function is responsable for actually calling methods on an object.
237 * METHODS
240 typedef struct
242 IDispatchVtbl *lpVtbl;
243 void * pvThis;
244 ITypeInfo * pTypeInfo;
245 ULONG ref;
246 } StdDispatch;
248 /******************************************************************************
249 * IDispatch_QueryInterface {OLEAUT32}
251 * See IUnknown_QueryInterface.
253 static HRESULT WINAPI StdDispatch_QueryInterface(
254 LPDISPATCH iface,
255 REFIID riid,
256 void** ppvObject)
258 ICOM_THIS(StdDispatch, iface);
259 TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), ppvObject);
261 if (IsEqualIID(riid, &IID_IDispatch) ||
262 IsEqualIID(riid, &IID_IUnknown))
264 *ppvObject = (LPVOID)This;
265 IUnknown_AddRef((LPUNKNOWN)*ppvObject);
266 return S_OK;
268 return E_NOINTERFACE;
271 /******************************************************************************
272 * IDispatch_AddRef {OLEAUT32}
274 * See IUnknown_AddRef.
276 static ULONG WINAPI StdDispatch_AddRef(LPDISPATCH iface)
278 ICOM_THIS(StdDispatch, iface);
279 TRACE("()\n");
281 return ++This->ref;
284 /******************************************************************************
285 * IDispatch_Release {OLEAUT32}
287 * See IUnknown_Release.
289 static ULONG WINAPI StdDispatch_Release(LPDISPATCH iface)
291 ICOM_THIS(StdDispatch, iface);
292 ULONG ret;
293 TRACE("(%p)->()\n", This);
295 ret = This->ref--;
297 if (This->ref == 0)
299 ITypeInfo_Release(This->pTypeInfo);
300 CoTaskMemFree(This);
303 return ret;
306 /******************************************************************************
307 * IDispatch_GetTypeInfoCount {OLEAUT32}
309 * Get the count of type information in an IDispatch interface.
311 * PARAMS
312 * iface [I] IDispatch interface
313 * pctinfo [O] Destination for the count
315 * RETURNS
316 * Success: S_OK. pctinfo is updated with the count. This is always 1 if
317 * the object provides type information, and 0 if it does not.
318 * Failure: E_NOTIMPL. The object does not provide type information.
320 * NOTES
321 * See IDispatch() and IDispatch_GetTypeInfo().
323 static HRESULT WINAPI StdDispatch_GetTypeInfoCount(LPDISPATCH iface, UINT * pctinfo)
325 ICOM_THIS(StdDispatch, iface);
326 TRACE("(%p)\n", pctinfo);
328 *pctinfo = This->pTypeInfo ? 1 : 0;
329 return S_OK;
332 /******************************************************************************
333 * IDispatch_GetTypeInfo {OLEAUT32}
335 * Get type information from an IDispatch interface.
337 * PARAMS
338 * iface [I] IDispatch interface
339 * iTInfo [I] Index of type information.
340 * lcid [I] Locale of the type information to get
341 * ppTInfo [O] Destination for the ITypeInfo object
343 * RETURNS
344 * Success: S_OK. ppTInfo is updated with the objects type information
345 * Failure: DISP_E_BADINDEX, if iTInfo is any value other than 0.
347 * NOTES
348 * See IDispatch.
350 static HRESULT WINAPI StdDispatch_GetTypeInfo(LPDISPATCH iface, UINT iTInfo, LCID lcid, ITypeInfo** ppTInfo)
352 ICOM_THIS(StdDispatch, iface);
353 TRACE("(%d, %lx, %p)\n", iTInfo, lcid, ppTInfo);
355 *ppTInfo = NULL;
356 if (iTInfo != 0)
357 return DISP_E_BADINDEX;
359 if (This->pTypeInfo)
361 *ppTInfo = This->pTypeInfo;
362 ITypeInfo_AddRef(*ppTInfo);
364 return S_OK;
367 /******************************************************************************
368 * IDispatch_GetIDsOfNames {OLEAUT32}
370 * Convert a methods name and an optional set of parameter names into DISPID's
371 * for passing to IDispatch_Invoke().
373 * PARAMS
374 * iface [I] IDispatch interface
375 * riid [I] Reserved, set to IID_NULL
376 * rgszNames [I] Name to convert
377 * cNames [I] Number of names in rgszNames
378 * lcid [I] Locale of the type information to convert from
379 * rgDispId [O] Destination for converted DISPID's.
381 * RETURNS
382 * Success: S_OK.
383 * Failure: DISP_E_UNKNOWNNAME, if any of the names is invalid.
384 * DISP_E_UNKNOWNLCID if lcid is invalid.
385 * Otherwise, an An HRESULT error code.
387 * NOTES
388 * This call defers to ITypeInfo_GetIDsOfNames(), using the ITypeInfo object
389 * contained within the IDispatch object.
390 * The first member of the names list must be a method name. The names following
391 * the method name are the parameters for that method.
393 static HRESULT WINAPI StdDispatch_GetIDsOfNames(LPDISPATCH iface, REFIID riid, LPOLESTR * rgszNames, UINT cNames, LCID lcid, DISPID * rgDispId)
395 ICOM_THIS(StdDispatch, iface);
396 TRACE("(%s, %p, %d, 0x%lx, %p)\n", debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
398 if (!IsEqualGUID(riid, &IID_NULL))
400 FIXME(" expected riid == IID_NULL\n");
401 return E_INVALIDARG;
403 return DispGetIDsOfNames(This->pTypeInfo, rgszNames, cNames, rgDispId);
406 /******************************************************************************
407 * IDispatch_Invoke {OLEAUT32}
409 * Call an object method.
411 * PARAMS
412 * iface [I] IDispatch interface
413 * dispIdMember [I] DISPID of the method (from GetIDsOfNames())
414 * riid [I] Reserved, set to IID_NULL
415 * lcid [I] Locale of the type information to convert parameters with
416 * wFlags, [I] Kind of method call (DISPATCH_ flags from "oaidl.h")
417 * pDispParams [I] Array of method arguments
418 * pVarResult [O] Destination for the result of the call
419 * pExcepInfo [O] Destination for exception information
420 * puArgErr [O] Destination for bad argument
422 * RETURNS
423 * Success: S_OK.
424 * Failure: See DispInvoke() for failure cases.
426 * NOTES
427 * See DispInvoke() and IDispatch().
429 static HRESULT WINAPI StdDispatch_Invoke(LPDISPATCH iface, DISPID dispIdMember, REFIID riid, LCID lcid,
430 WORD wFlags, DISPPARAMS * pDispParams, VARIANT * pVarResult,
431 EXCEPINFO * pExcepInfo, UINT * puArgErr)
433 ICOM_THIS(StdDispatch, iface);
434 TRACE("(%ld, %s, 0x%lx, 0x%x, %p, %p, %p, %p)\n", dispIdMember, debugstr_guid(riid), lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
436 if (!IsEqualGUID(riid, &IID_NULL))
438 FIXME(" expected riid == IID_NULL\n");
439 return E_INVALIDARG;
441 return DispInvoke(This->pvThis, This->pTypeInfo, dispIdMember, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
444 static IDispatchVtbl StdDispatch_VTable =
446 StdDispatch_QueryInterface,
447 StdDispatch_AddRef,
448 StdDispatch_Release,
449 StdDispatch_GetTypeInfoCount,
450 StdDispatch_GetTypeInfo,
451 StdDispatch_GetIDsOfNames,
452 StdDispatch_Invoke
455 static IDispatch * WINAPI StdDispatch_Construct(
456 IUnknown * punkOuter,
457 void * pvThis,
458 ITypeInfo * pTypeInfo)
460 StdDispatch * pStdDispatch;
462 pStdDispatch = CoTaskMemAlloc(sizeof(StdDispatch));
463 if (!pStdDispatch)
464 return (IDispatch *)pStdDispatch;
466 pStdDispatch->lpVtbl = &StdDispatch_VTable;
467 pStdDispatch->pvThis = pvThis;
468 pStdDispatch->pTypeInfo = pTypeInfo;
469 pStdDispatch->ref = 1;
471 /* we keep a reference to the type info so prevent it from
472 * being destroyed until we are done with it */
473 ITypeInfo_AddRef(pTypeInfo);
475 return (IDispatch *)pStdDispatch;