Files
intel-linux-sgx/external/CppMicroServices/util/src/Error.cpp
T
Li, Xun d10cabebb5 Linux 2.5 Open Source Gold Release
Added new APIs in sgx_uae_service.h and sgx_ukey_exchange.h to support ECDSA quote based remote attestation.
  The set of legacy APIs supports EPID only and the set of new APIs supports ECDSA quotes.
Enhanced Edger8r with structure deep-copy feature.
Fixed bugs.

Signed-off-by: Li, Xun <xun.li@intel.com>
2019-04-02 13:26:58 +08:00

128 lines
3.5 KiB
C++

/*=============================================================================
Library: CppMicroServices
Copyright (c) The CppMicroServices developers. See the COPYRIGHT
file at the top-level directory of this distribution and at
https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT .
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=============================================================================*/
#include "cppmicroservices/util/Error.h"
#include "cppmicroservices/util/String.h"
#ifdef US_PLATFORM_POSIX
# include <errno.h>
# include <string.h>
#else
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif
# include <crtdbg.h>
# include <windows.h>
#endif
namespace cppmicroservices {
namespace util {
#ifdef US_PLATFORM_WINDOWS
std::string GetLastWin32ErrorStr()
{
// Retrieve the system error message for the last-error code
LPVOID lpMsgBuf;
DWORD dw = GetLastError();
DWORD rc =
FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
reinterpret_cast<LPWSTR>(&lpMsgBuf),
0,
NULL);
// If FormatMessage fails using FORMAT_MESSAGE_ALLOCATE_BUFFER
// it means that the size of the error message exceeds an internal
// buffer limit (128 kb according to MSDN) and lpMsgBuf will be
// uninitialized.
// Inform the caller that the error message couldn't be retrieved.
if (rc == 0) {
return std::string("Failed to retrieve error message.");
}
std::string errMsg(
ToUTF8String(std::wstring(reinterpret_cast<LPCWSTR>(lpMsgBuf))));
LocalFree(lpMsgBuf);
return errMsg;
}
#endif
std::string GetLastCErrorStr()
{
char errorString[128];
#if ((_POSIX_C_SOURCE >= 200112L) && !_GNU_SOURCE) || defined(US_PLATFORM_APPLE)
// This is the XSI strerror_r version
int en = errno;
int r = strerror_r(errno, errorString, sizeof errorString);
if (r) {
std::string errMsg = "Unknown error " + util::ToString(en) +
": strerror_r failed with error code ";
if (r < 0) {
errMsg += util::ToString(static_cast<int>(errno));
} else {
errMsg += util::ToString(r);
}
return errMsg;
}
return errorString;
#elif defined(US_PLATFORM_WINDOWS)
if (strerror_s(errorString, sizeof errorString, errno)) {
return "Unknown error";
}
return errorString;
#else
return strerror_r(errno, errorString, sizeof errorString);
#endif
}
std::string GetExceptionStr(const std::exception_ptr& exc)
{
std::string excStr;
if (!exc) {
return excStr;
}
try {
std::rethrow_exception(exc);
} catch (const std::exception& e) {
excStr = e.what();
} catch (...) {
excStr = "unknown";
}
return excStr;
}
std::string GetLastExceptionStr()
{
return GetExceptionStr(std::current_exception());
}
} // namespace util
} // namespace cppmicroservices