Error messages improved

This commit is contained in:
Nekotekina 2015-12-18 14:11:18 +03:00
parent aa811b6eef
commit a666318b95
4 changed files with 46 additions and 39 deletions

View File

@ -109,7 +109,7 @@ static bool truncate_file(const std::string& file, u64 length)
#else #else
#include <sys/sendfile.h> #include <sys/sendfile.h>
#endif #endif
#include "errno.h" #include <errno.h>
#define GET_API_ERROR static_cast<u64>(errno) #define GET_API_ERROR static_cast<u64>(errno)
@ -839,7 +839,7 @@ std::string fs::get_executable_dir()
wchar_t buf[2048]; wchar_t buf[2048];
if (GetModuleFileName(NULL, buf, ::size32(buf)) - 1 >= ::size32(buf) - 1) if (GetModuleFileName(NULL, buf, ::size32(buf)) - 1 >= ::size32(buf) - 1)
{ {
MessageBoxA(0, fmt::format("GetModuleFileName() failed: 0x%x.", GetLastError()).c_str(), "fs::get_config_dir()", MB_ICONERROR); MessageBoxA(0, fmt::format("GetModuleFileName() failed (0x%x).", GetLastError()).c_str(), "fs::get_config_dir()", MB_ICONERROR);
return dir; // empty return dir; // empty
} }

View File

@ -19,26 +19,33 @@
#include <ucontext.h> #include <ucontext.h>
#endif #endif
static const auto s_terminate_handler_set = std::set_terminate([]() void report_fatal_error(const std::string& msg)
{ {
if (std::uncaught_exception()) #ifdef _WIN32
const auto& text = msg + "\n\nPlease report this error to the developers. Press (Ctrl+C) to copy this message.";
MessageBoxA(0, text.c_str(), "Fatal error", MB_ICONERROR); // TODO: unicode message
#else
std::printf("Fatal error: %s\nPlease report this error to the developers.\n", msg.c_str());
#endif
}
[[noreturn]] void catch_all_exceptions()
{
try
{ {
try throw;
{ }
throw; catch (const std::exception& ex)
} {
catch (const std::exception& ex) report_fatal_error("Unhandled exception: "s + ex.what());
{ }
std::printf("Unhandled exception: %s\n", ex.what()); catch (...)
} {
catch (...) report_fatal_error("Unhandled exception (unknown)");
{
std::printf("Unhandled exception of unknown type.\n");
}
} }
std::abort(); std::abort();
}); }
void SetCurrentThreadDebugName(const char* threadName) void SetCurrentThreadDebugName(const char* threadName)
{ {
@ -1158,7 +1165,7 @@ const auto g_exception_handler = AddVectoredExceptionHandler(1, [](PEXCEPTION_PO
const auto g_exception_filter = SetUnhandledExceptionFilter([](PEXCEPTION_POINTERS pExp) -> LONG const auto g_exception_filter = SetUnhandledExceptionFilter([](PEXCEPTION_POINTERS pExp) -> LONG
{ {
std::string msg; std::string msg = fmt::format("Unhandled Win32 exception 0x%08X.\n", pExp->ExceptionRecord->ExceptionCode);
if (pExp->ExceptionRecord->ExceptionCode == EXCEPTION_ACCESS_VIOLATION) if (pExp->ExceptionRecord->ExceptionCode == EXCEPTION_ACCESS_VIOLATION)
{ {
@ -1184,11 +1191,10 @@ const auto g_exception_filter = SetUnhandledExceptionFilter([](PEXCEPTION_POINTE
} }
} }
msg += fmt::format("Image base: %p.\n\n", GetModuleHandle(NULL)); msg += fmt::format("Image base: %p.", GetModuleHandle(NULL));
msg += "Report this error to the developers. Press (Ctrl+C) to copy this message.";
// Report fatal error // Report fatal error
MessageBoxA(0, msg.c_str(), fmt::format("Win32 Exception 0x%08X", pExp->ExceptionRecord->ExceptionCode).c_str(), MB_ICONERROR); report_fatal_error(msg);
return EXCEPTION_CONTINUE_SEARCH; return EXCEPTION_CONTINUE_SEARCH;
}); });
@ -1218,8 +1224,8 @@ void signal_handler(int sig, siginfo_t* info, void* uct)
} }
else else
{ {
// Report fatal error (TODO) // TODO (debugger interaction)
std::printf("Access violation %s location %p at %p.\n", cause, info->si_addr, RIP(context)); report_fatal_error(fmt::format("Access violation %s location %p at %p.", cause, info->si_addr, RIP(context)));
std::abort(); std::abort();
} }
} }
@ -1253,8 +1259,8 @@ void thread_ctrl::initialize()
if (g_sigaction_result == -1) if (g_sigaction_result == -1)
#endif #endif
{ {
std::printf("Exceptions handlers are not set correctly.\n"); report_fatal_error("Exception handler is not set correctly.");
std::terminate(); std::abort();
} }
// TODO // TODO
@ -1286,12 +1292,9 @@ thread_ctrl::~thread_ctrl()
{ {
m_future.get(); m_future.get();
} }
catch (const std::exception& ex) catch (...)
{
LOG_ERROR(GENERAL, "Abandoned exception: %s", ex.what());
}
catch (EmulationStopped)
{ {
catch_all_exceptions();
} }
} }
} }
@ -1310,7 +1313,7 @@ std::string named_thread_t::get_name() const
void named_thread_t::start() void named_thread_t::start()
{ {
CHECK_ASSERTION(m_thread == nullptr); CHECK_ASSERTION(!m_thread);
// Get shared_ptr instance (will throw if called from the constructor or the object has been created incorrectly) // Get shared_ptr instance (will throw if called from the constructor or the object has been created incorrectly)
auto ptr = shared_from_this(); auto ptr = shared_from_this();
@ -1348,7 +1351,7 @@ void named_thread_t::start()
} }
catch (const std::exception& e) catch (const std::exception& e)
{ {
LOG_ERROR(GENERAL, "Exception: %s", e.what()); LOG_ERROR(GENERAL, "Exception: %s\nPlease report this to the developers.", e.what());
Emu.Pause(); Emu.Pause();
} }
catch (EmulationStopped) catch (EmulationStopped)

View File

@ -1,5 +1,8 @@
#pragma once #pragma once
// Will report exception and call std::abort() if put in catch(...)
[[noreturn]] void catch_all_exceptions();
// Thread control class // Thread control class
class thread_ctrl final class thread_ctrl final
{ {

View File

@ -16,6 +16,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <sys/types.h> #include <sys/types.h>
#include <errno.h>
/* OS X uses MAP_ANON instead of MAP_ANONYMOUS */ /* OS X uses MAP_ANON instead of MAP_ANONYMOUS */
#ifndef MAP_ANONYMOUS #ifndef MAP_ANONYMOUS
@ -46,8 +47,8 @@ namespace vm
if (memory_handle == NULL) if (memory_handle == NULL)
{ {
std::printf("CreateFileMapping() failed\n"); MessageBoxA(0, fmt::format("CreateFileMapping() failed (0x%x).", GetLastError()).c_str(), "vm::initialize()", MB_ICONERROR);
return{}; std::abort();
} }
mapped_ptr_t base_addr(static_cast<u8*>(::MapViewOfFile(memory_handle, FILE_MAP_WRITE, 0, 0, 0x100000000))); mapped_ptr_t base_addr(static_cast<u8*>(::MapViewOfFile(memory_handle, FILE_MAP_WRITE, 0, 0, 0x100000000)));
@ -59,15 +60,15 @@ namespace vm
if (memory_handle == -1) if (memory_handle == -1)
{ {
std::printf("shm_open('/rpcs3_vm') failed\n"); std::printf("shm_open('/rpcs3_vm') failed (%d).\n", errno);
return{}; std::abort();
} }
if (::ftruncate(memory_handle, 0x100000000) == -1) if (::ftruncate(memory_handle, 0x100000000) == -1)
{ {
std::printf("ftruncate(memory_handle) failed\n"); std::printf("ftruncate(memory_handle) failed (%d).\n", errno);
::shm_unlink("/rpcs3_vm"); ::shm_unlink("/rpcs3_vm");
return{}; std::abort();
} }
mapped_ptr_t base_addr(static_cast<u8*>(::mmap(nullptr, 0x100000000, PROT_NONE, MAP_SHARED, memory_handle, 0))); mapped_ptr_t base_addr(static_cast<u8*>(::mmap(nullptr, 0x100000000, PROT_NONE, MAP_SHARED, memory_handle, 0)));
@ -76,7 +77,7 @@ namespace vm
::shm_unlink("/rpcs3_vm"); ::shm_unlink("/rpcs3_vm");
#endif #endif
std::printf("vm: base_addr = %p, priv_addr = %p\n", base_addr.get(), priv_addr.get()); std::printf("vm::g_base_addr = %p\nvm::g_priv_addr = %p\n", base_addr.get(), priv_addr.get());
return{ std::move(base_addr), std::move(priv_addr) }; return{ std::move(base_addr), std::move(priv_addr) };
} }