STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Static Public Member Functions | Private Types | Private Attributes | List of all members
_com_error Class Reference

#include <comdef.h>

Public Member Functions

 _com_error (HRESULT hr, IErrorInfo *perrinfo=NULL, bool fAddRef=false) throw ()
 
 _com_error (const _com_error &that) throw ()
 
virtual ~_com_error () throw ()
 
_com_erroroperator= (const _com_error &that) throw ()
 
HRESULT Error () const throw ()
 
WORD WCode () const throw ()
 
IErrorInfo * ErrorInfo () const throw ()
 
_bstr_t Description () const
 
DWORD HelpContext () const throw ()
 
_bstr_t HelpFile () const
 
_bstr_t Source () const
 
GUID GUID () const throw ()
 
const TCHARErrorMessage () const throw ()
 

Static Public Member Functions

static HRESULT WCodeToHRESULT (WORD wCode) throw ()
 
static WORD HRESULTToWCode (HRESULT hr) throw ()
 

Private Types

enum  { WCODE_HRESULT_FIRST = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x200), WCODE_HRESULT_LAST = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF+1, 0) - 1 }
 

Private Attributes

const HRESULT m_hresult
 
IErrorInfo * m_perrinfo
 
TCHARm_pszMsg
 

Member Enumeration Documentation

anonymous enum
private
Enumerator
WCODE_HRESULT_FIRST 
WCODE_HRESULT_LAST 
272  {
273  WCODE_HRESULT_FIRST = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x200),
274  WCODE_HRESULT_LAST = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF+1, 0) - 1
275  };
Definition: comdef.h:273
Definition: comdef.h:274

Constructor & Destructor Documentation

_com_error::_com_error ( HRESULT  hr,
IErrorInfo *  perrinfo = NULL,
bool  fAddRef = false 
)
throw (
)
inline
285 {
286  if (m_perrinfo != NULL && fAddRef) {
287  m_perrinfo->AddRef();
288  }
289 }
const HRESULT m_hresult
Definition: comdef.h:276
TCHAR * m_pszMsg
Definition: comdef.h:278
#define NULL
Definition: crtdbg.h:30
void IErrorInfo * perrinfo
Definition: comdef.h:205
IErrorInfo * m_perrinfo
Definition: comdef.h:277
_com_error::_com_error ( const _com_error that)
throw (
)
inline
293 {
294  if (m_perrinfo != NULL) {
295  m_perrinfo->AddRef();
296  }
297 }
const HRESULT m_hresult
Definition: comdef.h:276
TCHAR * m_pszMsg
Definition: comdef.h:278
#define NULL
Definition: crtdbg.h:30
IErrorInfo * m_perrinfo
Definition: comdef.h:277
_com_error::~_com_error ( )
throw (
)
inlinevirtual
300 {
301  if (m_perrinfo != NULL) {
302  m_perrinfo->Release();
303  }
304  if (m_pszMsg != NULL) {
305  LocalFree((HLOCAL)m_pszMsg);
306  }
307 }
TCHAR * m_pszMsg
Definition: comdef.h:278
#define NULL
Definition: crtdbg.h:30
IErrorInfo * m_perrinfo
Definition: comdef.h:277

Member Function Documentation

_bstr_t _com_error::Description ( ) const
inline
337 {
338  BSTR bstr = NULL;
339  if (m_perrinfo != NULL) {
340  if (FAILED(m_perrinfo->GetDescription(&bstr))) {
341  bstr = NULL;
342  }
343  }
344  return _bstr_t(bstr, false);
345 }
Definition: comutil.h:144
#define NULL
Definition: crtdbg.h:30
#define FAILED(hr)
Definition: comutil.h:71
IErrorInfo * m_perrinfo
Definition: comdef.h:277
HRESULT _com_error::Error ( ) const
throw (
)
inline
319 {
320  return m_hresult;
321 }
const HRESULT m_hresult
Definition: comdef.h:276
IErrorInfo * _com_error::ErrorInfo ( ) const
throw (
)
inline
329 {
330  if (m_perrinfo != NULL) {
331  m_perrinfo->AddRef();
332  }
333  return m_perrinfo;
334 }
#define NULL
Definition: crtdbg.h:30
IErrorInfo * m_perrinfo
Definition: comdef.h:277
const TCHAR * _com_error::ErrorMessage ( ) const
throw (
)
inline
393 {
394  if (m_pszMsg == NULL) {
395  FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|
396  FORMAT_MESSAGE_FROM_SYSTEM|
397  FORMAT_MESSAGE_IGNORE_INSERTS,
398  NULL,
399  m_hresult,
400  MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
401  (LPTSTR)&m_pszMsg,
402  0,
403  NULL);
404  if (m_pszMsg != NULL) {
405  int nLen = lstrlen(m_pszMsg);
406  if (nLen > 1 && m_pszMsg[nLen - 1] == '\n') {
407  m_pszMsg[nLen - 1] = 0;
408  if (m_pszMsg[nLen - 2] == '\r') {
409  m_pszMsg[nLen - 2] = 0;
410  }
411  }
412  }
413  else {
414  m_pszMsg = (LPTSTR)LocalAlloc(0, 32 * sizeof(TCHAR));
415  if (m_pszMsg != NULL) {
416  WORD wCode = WCode();
417  if (wCode != 0) {
418  _COM_PRINTF_S_1(m_pszMsg, 32, TEXT("IDispatch error #%d"), (int)wCode);
419  }
420  else {
421  _COM_PRINTF_S_1(m_pszMsg, 32, TEXT("Unknown error 0x%0lX"), m_hresult);
422  }
423  }
424  }
425  }
426  return m_pszMsg;
427 }
const HRESULT m_hresult
Definition: comdef.h:276
char TCHAR
Definition: tchar.h:2138
TCHAR * m_pszMsg
Definition: comdef.h:278
#define NULL
Definition: crtdbg.h:30
#define _COM_PRINTF_S_1(dest, destsize, format, arg1)
Definition: comutil.h:49
WORD WCode() const
Definition: comdef.h:323
_GUID _com_error::GUID ( ) const
throw (
)
inline
381 {
382  _GUID guid;
383  _COM_MEMCPY_S(&guid, sizeof(_GUID), &__uuidof(NULL), sizeof(_GUID));
384  if (m_perrinfo != NULL) {
385  if (FAILED(m_perrinfo->GetGUID(&guid))) {
386  _COM_MEMCPY_S(&guid, sizeof(_GUID), &__uuidof(NULL), sizeof(_GUID));
387  }
388  }
389  return guid;
390 }
#define NULL
Definition: crtdbg.h:30
#define FAILED(hr)
Definition: comutil.h:71
#define _COM_MEMCPY_S(dest, destsize, src, count)
Definition: comutil.h:48
IErrorInfo * m_perrinfo
Definition: comdef.h:277
DWORD _com_error::HelpContext ( ) const
throw (
)
inline
348 {
349  DWORD dwHelpContext = 0;
350  if (m_perrinfo != NULL) {
351  if (FAILED(m_perrinfo->GetHelpContext(&dwHelpContext))) {
352  dwHelpContext = 0;
353  }
354  }
355  return dwHelpContext;
356 }
#define NULL
Definition: crtdbg.h:30
#define FAILED(hr)
Definition: comutil.h:71
unsigned long DWORD
Definition: concrt.h:57
IErrorInfo * m_perrinfo
Definition: comdef.h:277
_bstr_t _com_error::HelpFile ( ) const
inline
359 {
360  BSTR bstr = NULL;
361  if (m_perrinfo != NULL) {
362  if (FAILED(m_perrinfo->GetHelpFile(&bstr))) {
363  bstr = NULL;
364  }
365  }
366  return _bstr_t(bstr, false);
367 }
Definition: comutil.h:144
#define NULL
Definition: crtdbg.h:30
#define FAILED(hr)
Definition: comutil.h:71
IErrorInfo * m_perrinfo
Definition: comdef.h:277
WORD _com_error::HRESULTToWCode ( HRESULT  hr)
throw (
)
inlinestatic
435 {
436  return (hr >= WCODE_HRESULT_FIRST && hr <= WCODE_HRESULT_LAST)
437  ? WORD(hr - WCODE_HRESULT_FIRST)
438  : 0;
439 }
Definition: comdef.h:273
Definition: comdef.h:274
_com_error & _com_error::operator= ( const _com_error that)
throw (
)
inline
310 {
311  if (this != &that) {
312  this->_com_error::~_com_error();
313  this->_com_error::_com_error(that);
314  }
315  return *this;
316 }
virtual ~_com_error()
Definition: comdef.h:299
_com_error(HRESULT hr, IErrorInfo *perrinfo=NULL, bool fAddRef=false)
Definition: comdef.h:281
_bstr_t _com_error::Source ( ) const
inline
370 {
371  BSTR bstr = NULL;
372  if (m_perrinfo != NULL) {
373  if (FAILED(m_perrinfo->GetSource(&bstr))) {
374  bstr = NULL;
375  }
376  }
377  return _bstr_t(bstr, false);
378 }
Definition: comutil.h:144
#define NULL
Definition: crtdbg.h:30
#define FAILED(hr)
Definition: comutil.h:71
IErrorInfo * m_perrinfo
Definition: comdef.h:277
WORD _com_error::WCode ( ) const
throw (
)
inline
324 {
325  return HRESULTToWCode(m_hresult);
326 }
const HRESULT m_hresult
Definition: comdef.h:276
static WORD HRESULTToWCode(HRESULT hr)
Definition: comdef.h:434
HRESULT _com_error::WCodeToHRESULT ( WORD  wCode)
throw (
)
inlinestatic
430 {
431  return wCode >= 0xFE00 ? WCODE_HRESULT_LAST : WCODE_HRESULT_FIRST + wCode;
432 }
Definition: comdef.h:273
Definition: comdef.h:274

Member Data Documentation

const HRESULT _com_error::m_hresult
private
IErrorInfo* _com_error::m_perrinfo
private
TCHAR* _com_error::m_pszMsg
mutableprivate

The documentation for this class was generated from the following file: