Added tests for CryptEnumProviders.
[wine.git] / dlls / ole32 / errorinfo.c
blob6f30afbbe592c602bebe63b3acba7095bf668be9
1 /*
2 * ErrorInfo API
4 * Copyright 2000 Patrik Stridvall, Juergen Schmied
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 * NOTES:
22 * The errorinfo is a per-thread object. The reference is stored in the
23 * TEB at offset 0xf80
26 #include <stdarg.h>
27 #include <string.h>
29 #define COBJMACROS
31 #include "windef.h"
32 #include "winbase.h"
33 #include "oleauto.h"
34 #include "winerror.h"
36 #include "objbase.h"
37 #include "wine/unicode.h"
38 #include "compobj_private.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(ole);
44 /* this code is from SysAllocStringLen (ole2disp.c in oleaut32) */
45 static BSTR WINAPI ERRORINFO_SysAllocString(const OLECHAR* in)
47 DWORD bufferSize;
48 DWORD* newBuffer;
49 WCHAR* stringBuffer;
50 DWORD len;
52 if (in == NULL)
53 return NULL;
55 * Find the lenth of the buffer passed-in in bytes.
57 len = strlenW(in);
58 bufferSize = len * sizeof (WCHAR);
61 * Allocate a new buffer to hold the string.
62 * don't forget to keep an empty spot at the beginning of the
63 * buffer for the character count and an extra character at the
64 * end for the '\0'.
66 newBuffer = (DWORD*)HeapAlloc(GetProcessHeap(),
68 bufferSize + sizeof(WCHAR) + sizeof(DWORD));
71 * If the memory allocation failed, return a null pointer.
73 if (newBuffer==0)
74 return 0;
77 * Copy the length of the string in the placeholder.
79 *newBuffer = bufferSize;
82 * Skip the byte count.
84 newBuffer++;
87 * Copy the information in the buffer.
88 * Since it is valid to pass a NULL pointer here, we'll initialize the
89 * buffer to nul if it is the case.
91 if (in != 0)
92 memcpy(newBuffer, in, bufferSize);
93 else
94 memset(newBuffer, 0, bufferSize);
97 * Make sure that there is a nul character at the end of the
98 * string.
100 stringBuffer = (WCHAR*)newBuffer;
101 stringBuffer[len] = 0;
103 return (LPWSTR)stringBuffer;
106 /* this code is from SysFreeString (ole2disp.c in oleaut32)*/
107 static VOID WINAPI ERRORINFO_SysFreeString(BSTR in)
109 DWORD* bufferPointer;
111 /* NULL is a valid parameter */
112 if(!in) return;
115 * We have to be careful when we free a BSTR pointer, it points to
116 * the beginning of the string but it skips the byte count contained
117 * before the string.
119 bufferPointer = (DWORD*)in;
121 bufferPointer--;
124 * Free the memory from it's "real" origin.
126 HeapFree(GetProcessHeap(), 0, bufferPointer);
130 typedef struct ErrorInfoImpl
132 ICOM_VTABLE(IErrorInfo) *lpvtei;
133 ICOM_VTABLE(ICreateErrorInfo) *lpvtcei;
134 ICOM_VTABLE(ISupportErrorInfo) *lpvtsei;
135 DWORD ref;
137 GUID m_Guid;
138 BSTR bstrSource;
139 BSTR bstrDescription;
140 BSTR bstrHelpFile;
141 DWORD m_dwHelpContext;
142 } ErrorInfoImpl;
144 static ICOM_VTABLE(IErrorInfo) IErrorInfoImpl_VTable;
145 static ICOM_VTABLE(ICreateErrorInfo) ICreateErrorInfoImpl_VTable;
146 static ICOM_VTABLE(ISupportErrorInfo) ISupportErrorInfoImpl_VTable;
149 converts a objectpointer to This
151 #define _IErrorInfo_Offset ((int)(&(((ErrorInfoImpl*)0)->lpvtei)))
152 #define _ICOM_THIS_From_IErrorInfo(class, name) class* This = (class*)(((char*)name)-_IErrorInfo_Offset);
154 #define _ICreateErrorInfo_Offset ((int)(&(((ErrorInfoImpl*)0)->lpvtcei)))
155 #define _ICOM_THIS_From_ICreateErrorInfo(class, name) class* This = (class*)(((char*)name)-_ICreateErrorInfo_Offset);
157 #define _ISupportErrorInfo_Offset ((int)(&(((ErrorInfoImpl*)0)->lpvtsei)))
158 #define _ICOM_THIS_From_ISupportErrorInfo(class, name) class* This = (class*)(((char*)name)-_ISupportErrorInfo_Offset);
161 converts This to a objectpointer
163 #define _IErrorInfo_(This) (IErrorInfo*)&(This->lpvtei)
164 #define _ICreateErrorInfo_(This) (ICreateErrorInfo*)&(This->lpvtcei)
165 #define _ISupportErrorInfo_(This) (ISupportErrorInfo*)&(This->lpvtsei)
167 IErrorInfo * IErrorInfoImpl_Constructor()
169 ErrorInfoImpl * ei = HeapAlloc(GetProcessHeap(), 0, sizeof(ErrorInfoImpl));
170 if (ei)
172 ei->lpvtei = &IErrorInfoImpl_VTable;
173 ei->lpvtcei = &ICreateErrorInfoImpl_VTable;
174 ei->lpvtsei = &ISupportErrorInfoImpl_VTable;
175 ei->ref = 1;
176 ei->bstrSource = NULL;
177 ei->bstrDescription = NULL;
178 ei->bstrHelpFile = NULL;
179 ei->m_dwHelpContext = 0;
181 return (IErrorInfo *)ei;
185 static HRESULT WINAPI IErrorInfoImpl_QueryInterface(
186 IErrorInfo* iface,
187 REFIID riid,
188 VOID** ppvoid)
190 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
191 TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvoid);
193 *ppvoid = NULL;
195 if(IsEqualIID(riid, &IID_IErrorInfo))
197 *ppvoid = _IErrorInfo_(This);
199 else if(IsEqualIID(riid, &IID_ICreateErrorInfo))
201 *ppvoid = _ICreateErrorInfo_(This);
203 else if(IsEqualIID(riid, &IID_ISupportErrorInfo))
205 *ppvoid = _ISupportErrorInfo_(This);
208 if(*ppvoid)
210 IUnknown_AddRef( (IUnknown*)*ppvoid );
211 TRACE("-- Interface: (%p)->(%p)\n",ppvoid,*ppvoid);
212 return S_OK;
214 TRACE("-- Interface: E_NOINTERFACE\n");
215 return E_NOINTERFACE;
218 static ULONG WINAPI IErrorInfoImpl_AddRef(
219 IErrorInfo* iface)
221 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
222 TRACE("(%p)->(count=%lu)\n",This,This->ref);
223 return InterlockedIncrement(&This->ref);
226 static ULONG WINAPI IErrorInfoImpl_Release(
227 IErrorInfo* iface)
229 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
230 TRACE("(%p)->(count=%lu)\n",This,This->ref);
232 if (!InterlockedDecrement(&This->ref))
234 TRACE("-- destroying IErrorInfo(%p)\n",This);
235 HeapFree(GetProcessHeap(),0,This);
236 return 0;
238 return This->ref;
241 static HRESULT WINAPI IErrorInfoImpl_GetGUID(
242 IErrorInfo* iface,
243 GUID * pGUID)
245 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
246 TRACE("(%p)->(count=%lu)\n",This,This->ref);
247 if(!pGUID )return E_INVALIDARG;
248 memcpy(pGUID, &This->m_Guid, sizeof(GUID));
249 return S_OK;
252 static HRESULT WINAPI IErrorInfoImpl_GetSource(
253 IErrorInfo* iface,
254 BSTR *pBstrSource)
256 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
257 TRACE("(%p)->(pBstrSource=%p)\n",This,pBstrSource);
258 if (pBstrSource == NULL)
259 return E_INVALIDARG;
260 *pBstrSource = ERRORINFO_SysAllocString(This->bstrSource);
261 return S_OK;
264 static HRESULT WINAPI IErrorInfoImpl_GetDescription(
265 IErrorInfo* iface,
266 BSTR *pBstrDescription)
268 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
270 TRACE("(%p)->(pBstrDescription=%p)\n",This,pBstrDescription);
271 if (pBstrDescription == NULL)
272 return E_INVALIDARG;
273 *pBstrDescription = ERRORINFO_SysAllocString(This->bstrDescription);
275 return S_OK;
278 static HRESULT WINAPI IErrorInfoImpl_GetHelpFile(
279 IErrorInfo* iface,
280 BSTR *pBstrHelpFile)
282 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
284 TRACE("(%p)->(pBstrHelpFile=%p)\n",This, pBstrHelpFile);
285 if (pBstrHelpFile == NULL)
286 return E_INVALIDARG;
287 *pBstrHelpFile = ERRORINFO_SysAllocString(This->bstrHelpFile);
289 return S_OK;
292 static HRESULT WINAPI IErrorInfoImpl_GetHelpContext(
293 IErrorInfo* iface,
294 DWORD *pdwHelpContext)
296 _ICOM_THIS_From_IErrorInfo(ErrorInfoImpl, iface);
297 TRACE("(%p)->(pdwHelpContext=%p)\n",This, pdwHelpContext);
298 if (pdwHelpContext == NULL)
299 return E_INVALIDARG;
300 *pdwHelpContext = This->m_dwHelpContext;
302 return S_OK;
305 static ICOM_VTABLE(IErrorInfo) IErrorInfoImpl_VTable =
307 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
308 IErrorInfoImpl_QueryInterface,
309 IErrorInfoImpl_AddRef,
310 IErrorInfoImpl_Release,
312 IErrorInfoImpl_GetGUID,
313 IErrorInfoImpl_GetSource,
314 IErrorInfoImpl_GetDescription,
315 IErrorInfoImpl_GetHelpFile,
316 IErrorInfoImpl_GetHelpContext
320 static HRESULT WINAPI ICreateErrorInfoImpl_QueryInterface(
321 ICreateErrorInfo* iface,
322 REFIID riid,
323 VOID** ppvoid)
325 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
326 TRACE("(%p)\n", This);
327 return IErrorInfo_QueryInterface(_IErrorInfo_(This), riid, ppvoid);
330 static ULONG WINAPI ICreateErrorInfoImpl_AddRef(
331 ICreateErrorInfo* iface)
333 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
334 TRACE("(%p)\n", This);
335 return IErrorInfo_AddRef(_IErrorInfo_(This));
338 static ULONG WINAPI ICreateErrorInfoImpl_Release(
339 ICreateErrorInfo* iface)
341 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
342 TRACE("(%p)\n", This);
343 return IErrorInfo_Release(_IErrorInfo_(This));
347 static HRESULT WINAPI ICreateErrorInfoImpl_SetGUID(
348 ICreateErrorInfo* iface,
349 REFGUID rguid)
351 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
352 TRACE("(%p)->(%s)\n", This, debugstr_guid(rguid));
353 memcpy(&This->m_Guid, rguid, sizeof(GUID));
354 return S_OK;
357 static HRESULT WINAPI ICreateErrorInfoImpl_SetSource(
358 ICreateErrorInfo* iface,
359 LPOLESTR szSource)
361 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
362 TRACE("(%p)\n",This);
363 if (This->bstrSource != NULL)
364 ERRORINFO_SysFreeString(This->bstrSource);
365 This->bstrSource = ERRORINFO_SysAllocString(szSource);
367 return S_OK;
370 static HRESULT WINAPI ICreateErrorInfoImpl_SetDescription(
371 ICreateErrorInfo* iface,
372 LPOLESTR szDescription)
374 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
375 TRACE("(%p)\n",This);
376 if (This->bstrDescription != NULL)
377 ERRORINFO_SysFreeString(This->bstrDescription);
378 This->bstrDescription = ERRORINFO_SysAllocString(szDescription);
380 return S_OK;
383 static HRESULT WINAPI ICreateErrorInfoImpl_SetHelpFile(
384 ICreateErrorInfo* iface,
385 LPOLESTR szHelpFile)
387 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
388 TRACE("(%p)\n",This);
389 if (This->bstrHelpFile != NULL)
390 ERRORINFO_SysFreeString(This->bstrHelpFile);
391 This->bstrHelpFile = ERRORINFO_SysAllocString(szHelpFile);
393 return S_OK;
396 static HRESULT WINAPI ICreateErrorInfoImpl_SetHelpContext(
397 ICreateErrorInfo* iface,
398 DWORD dwHelpContext)
400 _ICOM_THIS_From_ICreateErrorInfo(ErrorInfoImpl, iface);
401 TRACE("(%p)\n",This);
402 This->m_dwHelpContext = dwHelpContext;
404 return S_OK;
407 static ICOM_VTABLE(ICreateErrorInfo) ICreateErrorInfoImpl_VTable =
409 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
410 ICreateErrorInfoImpl_QueryInterface,
411 ICreateErrorInfoImpl_AddRef,
412 ICreateErrorInfoImpl_Release,
414 ICreateErrorInfoImpl_SetGUID,
415 ICreateErrorInfoImpl_SetSource,
416 ICreateErrorInfoImpl_SetDescription,
417 ICreateErrorInfoImpl_SetHelpFile,
418 ICreateErrorInfoImpl_SetHelpContext
421 static HRESULT WINAPI ISupportErrorInfoImpl_QueryInterface(
422 ISupportErrorInfo* iface,
423 REFIID riid,
424 VOID** ppvoid)
426 _ICOM_THIS_From_ISupportErrorInfo(ErrorInfoImpl, iface);
427 TRACE("(%p)\n", This);
429 return IErrorInfo_QueryInterface(_IErrorInfo_(This), riid, ppvoid);
432 static ULONG WINAPI ISupportErrorInfoImpl_AddRef(
433 ISupportErrorInfo* iface)
435 _ICOM_THIS_From_ISupportErrorInfo(ErrorInfoImpl, iface);
436 TRACE("(%p)\n", This);
437 return IErrorInfo_AddRef(_IErrorInfo_(This));
440 static ULONG WINAPI ISupportErrorInfoImpl_Release(
441 ISupportErrorInfo* iface)
443 _ICOM_THIS_From_ISupportErrorInfo(ErrorInfoImpl, iface);
444 TRACE("(%p)\n", This);
445 return IErrorInfo_Release(_IErrorInfo_(This));
449 static HRESULT WINAPI ISupportErrorInfoImpl_InterfaceSupportsErrorInfo(
450 ISupportErrorInfo* iface,
451 REFIID riid)
453 _ICOM_THIS_From_ISupportErrorInfo(ErrorInfoImpl, iface);
454 TRACE("(%p)->(%s)\n", This, debugstr_guid(riid));
455 return (IsEqualIID(riid, &This->m_Guid)) ? S_OK : S_FALSE;
458 static ICOM_VTABLE(ISupportErrorInfo) ISupportErrorInfoImpl_VTable =
460 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
461 ISupportErrorInfoImpl_QueryInterface,
462 ISupportErrorInfoImpl_AddRef,
463 ISupportErrorInfoImpl_Release,
466 ISupportErrorInfoImpl_InterfaceSupportsErrorInfo
468 /***********************************************************************
469 * CreateErrorInfo (OLE32.@)
471 HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo **pperrinfo)
473 IErrorInfo * pei;
474 HRESULT res;
475 TRACE("(%p): stub:\n", pperrinfo);
476 if(! pperrinfo ) return E_INVALIDARG;
477 if(!(pei=IErrorInfoImpl_Constructor()))return E_OUTOFMEMORY;
479 res = IErrorInfo_QueryInterface(pei, &IID_ICreateErrorInfo, (LPVOID*)pperrinfo);
480 IErrorInfo_Release(pei);
481 return res;
484 /***********************************************************************
485 * GetErrorInfo (OLE32.@)
487 HRESULT WINAPI GetErrorInfo(ULONG dwReserved, IErrorInfo **pperrinfo)
489 APARTMENT * apt = COM_CurrentInfo();
491 TRACE("(%ld, %p, %p)\n", dwReserved, pperrinfo, COM_CurrentInfo()->ErrorInfo);
493 if(!pperrinfo) return E_INVALIDARG;
494 if (!apt || !apt->ErrorInfo)
496 *pperrinfo = NULL;
497 return S_FALSE;
500 *pperrinfo = (IErrorInfo*)(apt->ErrorInfo);
501 /* clear thread error state */
502 apt->ErrorInfo = NULL;
503 return S_OK;
506 /***********************************************************************
507 * SetErrorInfo (OLE32.@)
509 HRESULT WINAPI SetErrorInfo(ULONG dwReserved, IErrorInfo *perrinfo)
511 IErrorInfo * pei;
512 APARTMENT * apt = COM_CurrentInfo();
514 TRACE("(%ld, %p)\n", dwReserved, perrinfo);
516 if (!apt) apt = COM_CreateApartment(COINIT_UNINITIALIZED);
518 /* release old errorinfo */
519 pei = (IErrorInfo*)apt->ErrorInfo;
520 if(pei) IErrorInfo_Release(pei);
522 /* set to new value */
523 apt->ErrorInfo = perrinfo;
524 if(perrinfo) IErrorInfo_AddRef(perrinfo);
525 return S_OK;