2012-11-07 05:17:17 +01:00
|
|
|
//
|
|
|
|
// Error.cpp
|
|
|
|
//
|
|
|
|
// $Id: //poco/1.4/Foundation/src/Error.cpp#3 $
|
|
|
|
//
|
|
|
|
// Library: Foundation
|
|
|
|
// Package: Core
|
|
|
|
// Module: Error
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-11-07 05:17:17 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
#include "Poco/UnicodeConverter.h"
|
|
|
|
#include "Poco/Error.h"
|
|
|
|
#include <string>
|
2013-02-19 06:16:12 +01:00
|
|
|
#include <string.h>
|
2014-11-12 02:47:39 +01:00
|
|
|
#include <errno.h>
|
2012-11-07 05:17:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef POCO_OS_FAMILY_WINDOWS
|
2014-11-12 02:47:39 +01:00
|
|
|
DWORD Error::last()
|
|
|
|
{
|
|
|
|
return GetLastError();
|
|
|
|
}
|
|
|
|
|
2012-11-07 05:17:17 +01:00
|
|
|
|
|
|
|
std::string Error::getMessage(DWORD errorCode)
|
|
|
|
{
|
|
|
|
std::string errMsg;
|
|
|
|
DWORD dwFlg = FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS;
|
|
|
|
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
|
|
|
|
LPWSTR lpMsgBuf = 0;
|
|
|
|
if (FormatMessageW(dwFlg, 0, errorCode, 0, (LPWSTR) & lpMsgBuf, 0, NULL))
|
|
|
|
UnicodeConverter::toUTF8(lpMsgBuf, errMsg);
|
|
|
|
#else
|
|
|
|
LPTSTR lpMsgBuf = 0;
|
|
|
|
if (FormatMessageA(dwFlg, 0, errorCode, 0, (LPTSTR) & lpMsgBuf, 0, NULL))
|
|
|
|
errMsg = lpMsgBuf;
|
|
|
|
#endif
|
|
|
|
LocalFree(lpMsgBuf);
|
|
|
|
return errMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2014-11-12 02:47:39 +01:00
|
|
|
int Error::last()
|
|
|
|
{
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
|
2012-11-07 05:17:17 +01:00
|
|
|
|
|
|
|
std::string Error::getMessage(int errorCode)
|
|
|
|
{
|
2013-02-19 06:16:12 +01:00
|
|
|
/* Reentrant version of `strerror'.
|
|
|
|
There are 2 flavors of `strerror_r', GNU which returns the string
|
|
|
|
and may or may not use the supplied temporary buffer and POSIX one
|
|
|
|
which fills the string into the buffer.
|
|
|
|
To use the POSIX version, -D_XOPEN_SOURCE=600 or -D_POSIX_C_SOURCE=200112L
|
|
|
|
without -D_GNU_SOURCE is needed, otherwise the GNU version is
|
|
|
|
preferred.
|
|
|
|
*/
|
2013-11-01 16:46:20 +01:00
|
|
|
#if defined _GNU_SOURCE && !POCO_ANDROID
|
2013-02-19 06:16:12 +01:00
|
|
|
char errmsg[256] = "";
|
|
|
|
return std::string(strerror_r(errorCode, errmsg, 256));
|
2013-11-01 16:46:20 +01:00
|
|
|
#elif (_XOPEN_SOURCE >= 600) || POCO_ANDROID
|
2013-02-19 06:16:12 +01:00
|
|
|
char errmsg[256] = "";
|
|
|
|
strerror_r(errorCode, errmsg, 256);
|
|
|
|
return errmsg;
|
|
|
|
#else
|
|
|
|
return std::string(strerror(errorCode));
|
|
|
|
#endif
|
2012-11-07 05:17:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Poco
|