2001-10-06 14:13:28 +00:00
|
|
|
#include "XBase.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include <cerrno>
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// win32 wants a const char* argument to std::exception c'tor
|
2001-11-19 00:33:36 +00:00
|
|
|
#if defined(CONFIG_PLATFORM_WIN32)
|
2001-10-06 14:13:28 +00:00
|
|
|
#define STDEXCEPTARG ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// default to no argument
|
|
|
|
#ifndef STDEXCEPTARG
|
|
|
|
#define STDEXCEPTARG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// XBase
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
XBase::XBase() :
|
|
|
|
exception(STDEXCEPTARG),
|
|
|
|
m_what()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
XBase::XBase(const CString& msg) :
|
|
|
|
exception(STDEXCEPTARG),
|
|
|
|
m_what(msg)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
XBase::~XBase()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
const char*
|
|
|
|
XBase::what() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
if (m_what.empty()) {
|
|
|
|
m_what = getWhat();
|
|
|
|
}
|
|
|
|
return m_what.c_str();
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
2002-06-17 13:31:21 +00:00
|
|
|
XBase::format(const char* /*id*/, const char* fmt, ...) const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// FIXME -- use id to lookup formating string
|
|
|
|
// FIXME -- format string with arguments
|
|
|
|
return fmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// MXErrno
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
MXErrno::MXErrno() :
|
|
|
|
m_errno(errno)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
MXErrno::MXErrno(int err) :
|
|
|
|
m_errno(err)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
int
|
|
|
|
MXErrno::getErrno() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_errno;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
const char*
|
|
|
|
MXErrno::getErrstr() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return strerror(m_errno);
|
|
|
|
}
|