2016-02-15 17:21:01 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-02-15 17:21:01 +11:00
|
|
|
*
|
|
|
|
* Copyright 2016 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "debug.hpp"
|
2016-02-15 17:21:01 +11:00
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "except.hpp"
|
|
|
|
#include "log.hpp"
|
|
|
|
#include "except.hpp"
|
2017-12-18 15:46:52 +11:00
|
|
|
#include "win32/error.hpp"
|
2016-02-15 17:21:01 +11:00
|
|
|
|
|
|
|
#include <windows.h>
|
2016-08-16 16:22:27 +10:00
|
|
|
#include <iostream>
|
2016-02-15 17:21:01 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
|
|
breakpoint (void)
|
|
|
|
{
|
|
|
|
DebugBreak ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
|
|
await_debugger (void)
|
|
|
|
{
|
|
|
|
// HACK: This is terribly inefficient, but it's not a performance
|
|
|
|
// priority for the time being.
|
|
|
|
while (!IsDebuggerPresent ())
|
|
|
|
Sleep (100);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
prepare_debugger (void)
|
|
|
|
{
|
|
|
|
if (nullptr == LoadLibrary("exchndl.dll")) {
|
2016-04-15 15:56:51 +10:00
|
|
|
auto code = GetLastError ();
|
2018-08-05 14:42:02 +10:00
|
|
|
LOG_WARNING("Emergency debugger not loaded: %s", cruft::win32::error::code_string (code));
|
2016-02-15 17:21:01 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
|
|
enable_fpe (void)
|
|
|
|
{
|
|
|
|
LOG_WARN ("Non-Linux exception code is broken under current GCC.");
|
|
|
|
// _clearfp();
|
|
|
|
// unsigned int ignored;
|
|
|
|
// _controlfp_s (&ignored, _MCW_EM, _MCW_EM);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
disable_fpe (void)
|
|
|
|
{
|
|
|
|
LOG_WARN ("Non-Linux exception code is broken under current GCC.");
|
|
|
|
// _clearfp();
|
|
|
|
// unsigned int ignored;
|
|
|
|
// _controlfp_s (&ignored, 0, _MCW_EM);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
force_console (void)
|
|
|
|
{
|
|
|
|
if (!AttachConsole (ATTACH_PARENT_PROCESS))
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto out_handle = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
auto err_handle = GetStdHandle (STD_ERROR_HANDLE);
|
|
|
|
auto in_handle = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
|
|
|
|
auto out_fd = _open_osfhandle (reinterpret_cast<intptr_t> (out_handle), _O_TEXT);
|
|
|
|
auto err_fd = _open_osfhandle (reinterpret_cast<intptr_t> (err_handle), _O_TEXT);
|
|
|
|
auto in_fd = _open_osfhandle (reinterpret_cast<intptr_t> (in_handle), _O_TEXT);
|
|
|
|
|
|
|
|
auto out_file = _fdopen (out_fd, "w");
|
|
|
|
auto err_file = _fdopen (err_fd, "w");
|
|
|
|
auto in_file = _fdopen (in_fd, "r");
|
|
|
|
|
|
|
|
/// FILE objects are not reassignable, but Windows doesn't leave us much
|
|
|
|
/// choice here.
|
|
|
|
*stdout = *out_file;
|
|
|
|
*stderr = *err_file;
|
|
|
|
*stdin = *in_file;
|
|
|
|
|
|
|
|
setvbuf (stdout, NULL, _IONBF, 0);
|
|
|
|
setvbuf (stderr, NULL, _IONBF, 0);
|
|
|
|
setvbuf (stdin, NULL, _IONBF, 0);
|
|
|
|
|
2016-04-05 11:08:12 +10:00
|
|
|
std::ios::sync_with_stdio ();
|
2016-02-15 17:21:01 +11:00
|
|
|
|
|
|
|
// Windows doesn't give an immediate newline when an application is run
|
|
|
|
// from a console, so we provide one here for sanity.
|
|
|
|
std::cout << "\n";
|
|
|
|
std::cerr << "Console installed\n";
|
|
|
|
}
|