2014-12-16 21:38:14 -08:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-04 17:17:46 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 05:12:49 -07:00
|
|
|
#include <cstddef>
|
2013-09-08 17:41:23 -07:00
|
|
|
#ifdef _WIN32
|
2018-08-13 13:28:24 -07:00
|
|
|
#include <windows.h>
|
2015-05-06 00:06:12 -07:00
|
|
|
#else
|
2015-06-21 05:12:49 -07:00
|
|
|
#include <cerrno>
|
|
|
|
#include <cstring>
|
2013-09-08 17:41:23 -07:00
|
|
|
#endif
|
|
|
|
|
2018-07-19 06:03:30 -07:00
|
|
|
#include "common/common_funcs.h"
|
2013-09-04 17:17:46 -07:00
|
|
|
|
|
|
|
// Generic function to get last error message.
|
|
|
|
// Call directly after the command or use the error num.
|
|
|
|
// This function might change the error code.
|
2018-07-19 06:03:30 -07:00
|
|
|
std::string GetLastErrorMsg() {
|
2020-10-29 20:30:42 -07:00
|
|
|
static constexpr std::size_t buff_size = 255;
|
2018-07-19 06:03:30 -07:00
|
|
|
char err_str[buff_size];
|
2013-09-08 17:41:23 -07:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2014-12-03 10:57:57 -08:00
|
|
|
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, nullptr, GetLastError(),
|
2016-09-17 17:38:01 -07:00
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), err_str, buff_size, nullptr);
|
2020-10-29 20:30:42 -07:00
|
|
|
return std::string(err_str, buff_size);
|
|
|
|
#elif defined(__GLIBC__) && (_GNU_SOURCE || (_POSIX_C_SOURCE < 200112L && _XOPEN_SOURCE < 600))
|
|
|
|
// Thread safe (GNU-specific)
|
|
|
|
const char* str = strerror_r(errno, err_str, buff_size);
|
|
|
|
return std::string(str);
|
2013-09-08 17:41:23 -07:00
|
|
|
#else
|
2014-04-01 15:20:08 -07:00
|
|
|
// Thread safe (XSI-compliant)
|
2020-10-29 20:30:42 -07:00
|
|
|
const int success = strerror_r(errno, err_str, buff_size);
|
|
|
|
if (success != 0) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return std::string(err_str);
|
2013-09-08 17:41:23 -07:00
|
|
|
#endif
|
|
|
|
}
|