oleaut32: Add tests for DispGetParam. Fix two issues that crashed the tests.
[wine] / dlls / oleaut32 / dispatch.c
1 /**
2  * Dispatch API functions
3  *
4  * Copyright 2000  Francois Jacques, Macadamian Technologies Inc.
5  *
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.
10  *
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.
15  *
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  */
21
22 #include "config.h"
23
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <ctype.h>
29
30 #define COBJMACROS
31
32 #include "windef.h"
33 #include "winbase.h"
34 #include "objbase.h"
35 #include "oleauto.h"
36 #include "winerror.h"
37
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(ole);
41
42 static IDispatch * StdDispatch_Construct(IUnknown * punkOuter, void * pvThis, ITypeInfo * pTypeInfo);
43
44 /******************************************************************************
45  *              DispInvoke (OLEAUT32.30)
46  *
47  * Call an object method using the information from its type library.
48  *
49  * RETURNS
50  *  Success: S_OK.
51  *  Failure: Returns DISP_E_EXCEPTION and updates pexcepinfo if an exception occurs.
52  *           DISP_E_BADPARAMCOUNT if the number of parameters is incorrect.
53  *           DISP_E_MEMBERNOTFOUND if the method does not exist.
54  *           puArgErr is updated if a parameter error (see notes) occurs.
55  *           Otherwise, returns the result of calling ITypeInfo_Invoke().
56  *
57  * NOTES
58  *  Parameter errors include the following:
59  *| DISP_E_BADVARTYPE
60  *| E_INVALIDARG            An argument was invalid
61  *| DISP_E_TYPEMISMATCH,
62  *| DISP_E_OVERFLOW         An argument was valid but could not be coerced
63  *| DISP_E_PARAMNOTOPTIONAL A non optional parameter was not passed
64  *| DISP_E_PARAMNOTFOUND    A parameter was passed that was not expected by the method
65  *  This call defers to ITypeInfo_Invoke().
66  */
67 HRESULT WINAPI DispInvoke(
68         VOID       *_this,        /* [in] Object to call method on */
69         ITypeInfo  *ptinfo,       /* [in] Object type info */
70         DISPID      dispidMember, /* [in] DISPID of the member (e.g. from GetIDsOfNames()) */
71         USHORT      wFlags,       /* [in] Kind of method call (DISPATCH_ flags from "oaidl.h") */
72         DISPPARAMS *pparams,      /* [in] Array of method arguments */
73         VARIANT    *pvarResult,   /* [out] Destination for the result of the call */
74         EXCEPINFO  *pexcepinfo,   /* [out] Destination for exception information */
75         UINT       *puArgErr)     /* [out] Destination for bad argument */
76 {
77     TRACE("\n");
78
79     return ITypeInfo_Invoke(ptinfo, _this, dispidMember, wFlags,
80                             pparams, pvarResult, pexcepinfo, puArgErr);
81 }
82
83 /******************************************************************************
84  *              DispGetIDsOfNames (OLEAUT32.29)
85  *
86  * Convert a set of parameter names to DISPIDs for DispInvoke().
87  *
88  * RETURNS
89  *  Success: S_OK.
90  *  Failure: An HRESULT error code.
91  *
92  * NOTES
93  *  This call defers to ITypeInfo_GetIDsOfNames(). The ITypeInfo interface passed
94  *  as ptinfo contains the information to map names to DISPIDs.
95  */
96 HRESULT WINAPI DispGetIDsOfNames(
97         ITypeInfo  *ptinfo,    /* [in] Object's type info */
98         OLECHAR   **rgszNames, /* [in] Array of names to get DISPIDs for */
99         UINT        cNames,    /* [in] Number of names in rgszNames */
100         DISPID     *rgdispid)  /* [out] Destination for converted DISPIDs */
101 {
102     return ITypeInfo_GetIDsOfNames(ptinfo, rgszNames, cNames, rgdispid);
103 }
104
105 /******************************************************************************
106  *              DispGetParam (OLEAUT32.28)
107  *
108  * Retrieve a parameter from a DISPPARAMS structure and coerce it to the
109  * specified variant type.
110  *
111  * NOTES
112  *  Coercion is done using system (0) locale.
113  *
114  * RETURNS
115  *  Success: S_OK.
116  *  Failure: DISP_E_PARAMNOTFOUND, if position is invalid. or
117  *           DISP_E_TYPEMISMATCH, if the coercion failed. puArgErr is
118  *           set to the index of the argument in pdispparams.
119  */
120 HRESULT WINAPI DispGetParam(
121         DISPPARAMS *pdispparams, /* [in] Parameter list */
122         UINT        position,    /* [in] Position of parameter to coerce in pdispparams */
123         VARTYPE     vtTarg,      /* [in] Type of value to coerce to */
124         VARIANT    *pvarResult,  /* [out] Destination for resulting variant */
125         UINT       *puArgErr)    /* [out] Destination for error code */
126 {
127     /* position is counted backwards */
128     UINT pos;
129     HRESULT hr;
130
131     TRACE("position=%d, cArgs=%d, cNamedArgs=%d\n",
132           position, pdispparams->cArgs, pdispparams->cNamedArgs);
133
134     if (pdispparams->cArgs > 0 && !pdispparams->rgvarg)
135         return E_INVALIDARG;
136
137     if (!pvarResult)
138         return E_INVALIDARG;
139
140     if (position < pdispparams->cArgs) {
141       /* positional arg? */
142       pos = pdispparams->cArgs - position - 1;
143     } else {
144       /* FIXME: is this how to handle named args? */
145       for (pos=0; pos<pdispparams->cNamedArgs; pos++)
146         if (pdispparams->rgdispidNamedArgs[pos] == position) break;
147
148       if (pos==pdispparams->cNamedArgs)
149         return DISP_E_PARAMNOTFOUND;
150     }
151     hr = VariantChangeType(pvarResult,
152                            &pdispparams->rgvarg[pos],
153                            0, vtTarg);
154     if (hr == DISP_E_TYPEMISMATCH) *puArgErr = pos;
155     return hr;
156 }
157
158 /******************************************************************************
159  * CreateStdDispatch [OLEAUT32.32]
160  *
161  * Create and return a standard IDispatch object.
162  *
163  * RETURNS
164  *  Success: S_OK. ppunkStdDisp contains the new object.
165  *  Failure: An HRESULT error code.
166  *
167  * NOTES
168  *  Outer unknown appears to be completely ignored.
169  */
170 HRESULT WINAPI CreateStdDispatch(
171         IUnknown* punkOuter,
172         void* pvThis,
173         ITypeInfo* ptinfo,
174         IUnknown** ppunkStdDisp)
175 {
176     TRACE("(%p, %p, %p, %p)\n", punkOuter, pvThis, ptinfo, ppunkStdDisp);
177
178     *ppunkStdDisp = (LPUNKNOWN)StdDispatch_Construct(punkOuter, pvThis, ptinfo);
179     if (!*ppunkStdDisp)
180         return E_OUTOFMEMORY;
181     return S_OK;
182 }
183
184
185 /******************************************************************************
186  * IDispatch {OLEAUT32}
187  *
188  * NOTES
189  *  The IDispatch interface provides a single interface to dispatch method calls,
190  *  regardless of whether the object to be called is in or out of process,
191  *  local or remote (e.g. being called over a network). This interface is late-bound
192  *  (linked at run-time), as opposed to early-bound (linked at compile time).
193  *
194  *  The interface is used by objects that wish to called by scripting
195  *  languages such as VBA, in order to minimise the amount of COM and C/C++
196  *  knowledge required, or by objects that wish to live out of process from code
197  *  that will call their methods.
198  *
199  *  Method, property and parameter names can be localised. The details required to
200  *  map names to methods and parameters are collected in a type library, usually
201  *  output by an IDL compiler using the objects IDL description. This information is
202  *  accessible programmatically through the ITypeLib interface (for a type library),
203  *  and the ITypeInfo interface (for an object within the type library). Type information
204  *  can also be created at run-time using CreateDispTypeInfo().
205  *
206  * WRAPPERS
207  *  Instead of using IDispatch directly, there are several wrapper functions available
208  *  to simplify the process of calling an objects methods through IDispatch.
209  *
210  *  A standard implementation of an IDispatch object is created by calling
211  *  CreateStdDispatch(). Numeric Id values for the parameters and methods (DISPIDs)
212  *  of an object of interest are retrieved by calling DispGetIDsOfNames(). DispGetParam()
213  *  retrieves information about a particular parameter. Finally the DispInvoke()
214  *  function is responsible for actually calling methods on an object.
215  *
216  * METHODS
217  */
218
219 typedef struct
220 {
221     const IDispatchVtbl *lpVtbl;
222     void * pvThis;
223     ITypeInfo * pTypeInfo;
224     LONG ref;
225 } StdDispatch;
226
227 /******************************************************************************
228  * IDispatch_QueryInterface {OLEAUT32}
229  *
230  * See IUnknown_QueryInterface.
231  */
232 static HRESULT WINAPI StdDispatch_QueryInterface(
233   LPDISPATCH iface,
234   REFIID riid,
235   void** ppvObject)
236 {
237     StdDispatch *This = (StdDispatch *)iface;
238     TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), ppvObject);
239
240     if (IsEqualIID(riid, &IID_IDispatch) ||
241         IsEqualIID(riid, &IID_IUnknown))
242     {
243         *ppvObject = This;
244         IUnknown_AddRef((LPUNKNOWN)*ppvObject);
245         return S_OK;
246     }
247     return E_NOINTERFACE;
248 }
249
250 /******************************************************************************
251  * IDispatch_AddRef {OLEAUT32}
252  *
253  * See IUnknown_AddRef.
254  */
255 static ULONG WINAPI StdDispatch_AddRef(LPDISPATCH iface)
256 {
257     StdDispatch *This = (StdDispatch *)iface;
258     ULONG refCount = InterlockedIncrement(&This->ref);
259
260     TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
261
262     return refCount;
263 }
264
265 /******************************************************************************
266  * IDispatch_Release {OLEAUT32}
267  *
268  * See IUnknown_Release.
269  */
270 static ULONG WINAPI StdDispatch_Release(LPDISPATCH iface)
271 {
272     StdDispatch *This = (StdDispatch *)iface;
273     ULONG refCount = InterlockedDecrement(&This->ref);
274
275     TRACE("(%p)->(ref before=%u)\n", This, refCount + 1);
276
277     if (!refCount)
278     {
279         ITypeInfo_Release(This->pTypeInfo);
280         CoTaskMemFree(This);
281     }
282
283     return refCount;
284 }
285
286 /******************************************************************************
287  * IDispatch_GetTypeInfoCount {OLEAUT32}
288  *
289  * Get the count of type information in an IDispatch interface.
290  *
291  * PARAMS
292  *  iface   [I] IDispatch interface
293  *  pctinfo [O] Destination for the count
294  *
295  * RETURNS
296  *  Success: S_OK. pctinfo is updated with the count. This is always 1 if
297  *           the object provides type information, and 0 if it does not.
298  *  Failure: E_NOTIMPL. The object does not provide type information.
299  *
300  * NOTES
301  *  See IDispatch() and IDispatch_GetTypeInfo().
302  */
303 static HRESULT WINAPI StdDispatch_GetTypeInfoCount(LPDISPATCH iface, UINT * pctinfo)
304 {
305     StdDispatch *This = (StdDispatch *)iface;
306     TRACE("(%p)\n", pctinfo);
307
308     *pctinfo = This->pTypeInfo ? 1 : 0;
309     return S_OK;
310 }
311
312 /******************************************************************************
313  * IDispatch_GetTypeInfo {OLEAUT32}
314  *
315  * Get type information from an IDispatch interface.
316  *
317  * PARAMS
318  *  iface   [I] IDispatch interface
319  *  iTInfo  [I] Index of type information.
320  *  lcid    [I] Locale of the type information to get
321  *  ppTInfo [O] Destination for the ITypeInfo object
322  *
323  * RETURNS
324  *  Success: S_OK. ppTInfo is updated with the objects type information
325  *  Failure: DISP_E_BADINDEX, if iTInfo is any value other than 0.
326  *
327  * NOTES
328  *  See IDispatch.
329  */
330 static HRESULT WINAPI StdDispatch_GetTypeInfo(LPDISPATCH iface, UINT iTInfo, LCID lcid, ITypeInfo** ppTInfo)
331 {
332     StdDispatch *This = (StdDispatch *)iface;
333     TRACE("(%d, %x, %p)\n", iTInfo, lcid, ppTInfo);
334
335     *ppTInfo = NULL;
336     if (iTInfo != 0)
337         return DISP_E_BADINDEX;
338
339     if (This->pTypeInfo)
340     {
341       *ppTInfo = This->pTypeInfo;
342       ITypeInfo_AddRef(*ppTInfo);
343     }
344     return S_OK;
345 }
346
347 /******************************************************************************
348  * IDispatch_GetIDsOfNames {OLEAUT32}
349  *
350  * Convert a methods name and an optional set of parameter names into DISPIDs
351  * for passing to IDispatch_Invoke().
352  *
353  * PARAMS
354  *  iface     [I] IDispatch interface
355  *  riid      [I] Reserved, set to IID_NULL
356  *  rgszNames [I] Name to convert
357  *  cNames    [I] Number of names in rgszNames
358  *  lcid      [I] Locale of the type information to convert from
359  *  rgDispId  [O] Destination for converted DISPIDs.
360  *
361  * RETURNS
362  *  Success: S_OK.
363  *  Failure: DISP_E_UNKNOWNNAME, if any of the names is invalid.
364  *           DISP_E_UNKNOWNLCID if lcid is invalid.
365  *           Otherwise, an HRESULT error code.
366  *
367  * NOTES
368  *  This call defers to ITypeInfo_GetIDsOfNames(), using the ITypeInfo object
369  *  contained within the IDispatch object.
370  *  The first member of the names list must be a method name. The names following
371  *  the method name are the parameters for that method.
372  */
373 static HRESULT WINAPI StdDispatch_GetIDsOfNames(LPDISPATCH iface, REFIID riid, LPOLESTR * rgszNames, UINT cNames, LCID lcid, DISPID * rgDispId)
374 {
375     StdDispatch *This = (StdDispatch *)iface;
376     TRACE("(%s, %p, %d, 0x%x, %p)\n", debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
377
378     if (!IsEqualGUID(riid, &IID_NULL))
379     {
380         FIXME(" expected riid == IID_NULL\n");
381         return E_INVALIDARG;
382     }
383     return DispGetIDsOfNames(This->pTypeInfo, rgszNames, cNames, rgDispId);
384 }
385
386 /******************************************************************************
387  * IDispatch_Invoke {OLEAUT32}
388  *
389  * Call an object method.
390  *
391  * PARAMS
392  *  iface        [I] IDispatch interface
393  *  dispIdMember [I] DISPID of the method (from GetIDsOfNames())
394  *  riid         [I] Reserved, set to IID_NULL
395  *  lcid         [I] Locale of the type information to convert parameters with
396  *  wFlags,      [I] Kind of method call (DISPATCH_ flags from "oaidl.h")
397  *  pDispParams  [I] Array of method arguments
398  *  pVarResult   [O] Destination for the result of the call
399  *  pExcepInfo   [O] Destination for exception information
400  *  puArgErr     [O] Destination for bad argument
401  *
402  * RETURNS
403  *  Success: S_OK.
404  *  Failure: See DispInvoke() for failure cases.
405  *
406  * NOTES
407  *  See DispInvoke() and IDispatch().
408  */
409 static HRESULT WINAPI StdDispatch_Invoke(LPDISPATCH iface, DISPID dispIdMember, REFIID riid, LCID lcid,
410                                          WORD wFlags, DISPPARAMS * pDispParams, VARIANT * pVarResult,
411                                          EXCEPINFO * pExcepInfo, UINT * puArgErr)
412 {
413     StdDispatch *This = (StdDispatch *)iface;
414     TRACE("(%d, %s, 0x%x, 0x%x, %p, %p, %p, %p)\n", dispIdMember, debugstr_guid(riid), lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
415
416     if (!IsEqualGUID(riid, &IID_NULL))
417     {
418         FIXME(" expected riid == IID_NULL\n");
419         return E_INVALIDARG;
420     }
421     return DispInvoke(This->pvThis, This->pTypeInfo, dispIdMember, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
422 }
423
424 static const IDispatchVtbl StdDispatch_VTable =
425 {
426   StdDispatch_QueryInterface,
427   StdDispatch_AddRef,
428   StdDispatch_Release,
429   StdDispatch_GetTypeInfoCount,
430   StdDispatch_GetTypeInfo,
431   StdDispatch_GetIDsOfNames,
432   StdDispatch_Invoke
433 };
434
435 static IDispatch * StdDispatch_Construct(
436   IUnknown * punkOuter,
437   void * pvThis,
438   ITypeInfo * pTypeInfo)
439 {
440     StdDispatch * pStdDispatch;
441
442     pStdDispatch = CoTaskMemAlloc(sizeof(StdDispatch));
443     if (!pStdDispatch)
444         return (IDispatch *)pStdDispatch;
445
446     pStdDispatch->lpVtbl = &StdDispatch_VTable;
447     pStdDispatch->pvThis = pvThis;
448     pStdDispatch->pTypeInfo = pTypeInfo;
449     pStdDispatch->ref = 1;
450
451     /* we keep a reference to the type info so prevent it from
452      * being destroyed until we are done with it */
453     ITypeInfo_AddRef(pTypeInfo);
454
455     return (IDispatch *)pStdDispatch;
456 }