29 #include <boost/algorithm/string/predicate.hpp>
35 #define WIN32_LEAN_AND_MEAN
40 #define ERR_LS LOG_STREAM(err, log_setup)
41 #define WRN_LS LOG_STREAM(warn, log_setup)
42 #define LOG_LS LOG_STREAM(info, log_setup)
43 #define DBG_LS LOG_STREAM(debug, log_setup)
56 console_handler(
const console_handler&) =
delete;
57 console_handler& operator=(
const console_handler&) =
delete;
64 bool owns_console()
const;
72 void enable_native_console_output();
75 console_handler::console_handler()
76 : created_wincon_(
false)
78 DBG_LS <<
"Early init message";
80 if(GetConsoleWindow() !=
nullptr) {
84 LOG_LS <<
"Console already attached at startup (built with console subsystem flag?), log file disabled.";
86 enable_native_console_output();
89 DBG_LS <<
"Windows console init complete!";
92 bool console_handler::owns_console()
const
94 return created_wincon_;
97 void console_handler::enable_native_console_output()
99 if(AttachConsole(ATTACH_PARENT_PROCESS)) {
100 LOG_LS <<
"Attached parent process console.";
101 }
else if(AllocConsole()) {
102 LOG_LS <<
"Allocated own console.";
103 created_wincon_ =
true;
110 WRN_LS <<
"Cannot attach or allocate a console, continuing anyway (is this Wine?)";
113 DBG_LS <<
"stderr to console";
116 assert(freopen(
"CONOUT$",
"wb", stderr) == stderr);
118 DBG_LS <<
"stdout to console";
121 assert(freopen(
"CONOUT$",
"wb", stdout) == stdout);
123 DBG_LS <<
"stdin from console";
124 assert(freopen(
"CONIN$",
"rb", stdin) == stdin);
126 LOG_LS <<
"Console streams handover complete!";
129 std::unique_ptr<console_handler> lfm;
136 lfm.reset(
new console_handler());
142 return lfm && lfm->owns_console();
Declarations for File-IO.
Standard logging facilities (interface).
static lg::log_domain log_setup("logsetup")
bool using_own_console()
Returns true if a console was allocated by the Wesnoth process.
void do_console_redirect()
Allocates a console if needed and redirects output to CONOUT.