2024-06-16 01:20:31 +08:00
|
|
|
|
|
|
|
#include "crash_printer/win.hpp"
|
2024-06-27 07:05:33 +08:00
|
|
|
#include "common_helpers/common_helpers.hpp"
|
2024-06-16 01:20:31 +08:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
|
2024-06-29 08:53:23 +08:00
|
|
|
std::string logs_filepath = "./crash_test/zxc.txt";
|
2024-06-16 01:20:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
static LONG WINAPI exception_handler(LPEXCEPTION_POINTERS ex_pointers)
|
|
|
|
{
|
2024-06-29 13:15:57 +08:00
|
|
|
std::ifstream file(std::filesystem::u8path(logs_filepath));
|
2024-06-16 01:20:31 +08:00
|
|
|
if (file.is_open()) {
|
|
|
|
std::string line{};
|
|
|
|
std::getline(file, line);
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
if (line.size()) {
|
|
|
|
std::cout << "Success!" << std::endl;
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cerr << "Failed!" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int* get_ptr()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// simulate the existence of previous handler
|
|
|
|
SetUnhandledExceptionFilter(exception_handler);
|
|
|
|
|
2024-06-27 07:05:33 +08:00
|
|
|
if (!common_helpers::remove_file(logs_filepath)) {
|
2024-06-16 01:20:31 +08:00
|
|
|
std::cerr << "failed to remove log" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!crash_printer::init(logs_filepath)) {
|
|
|
|
std::cerr << "failed to init" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// simulate a crash
|
|
|
|
volatile int * volatile ptr = get_ptr();
|
|
|
|
*ptr = 42;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|