/* XMRig * Copyright 2010 Jeff Garzik * Copyright 2012-2014 pooler * Copyright 2014 Lucas Jones * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2017-2018 XMR-Stak , * Copyright 2019 Spudz76 * Copyright 2018-2019 SChernykh * Copyright 2016-2019 XMRig , * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "base/tools/Handle.h" #include "base/io/log/backends/ConsoleLog.h" #include "base/io/log/Log.h" xmrig::ConsoleLog::ConsoleLog() { if (!isSupported()) { Log::colors = false; return; } m_tty = new uv_tty_t; if (uv_tty_init(uv_default_loop(), m_tty, 1, 0) < 0) { Log::colors = false; return; } uv_tty_set_mode(m_tty, UV_TTY_MODE_NORMAL); # ifdef WIN32 m_stream = reinterpret_cast(m_tty); HANDLE handle = GetStdHandle(STD_INPUT_HANDLE); if (handle != INVALID_HANDLE_VALUE) { DWORD mode = 0; if (GetConsoleMode(handle, &mode)) { mode &= ~ENABLE_QUICK_EDIT_MODE; SetConsoleMode(handle, mode | ENABLE_EXTENDED_FLAGS); } } # endif } xmrig::ConsoleLog::~ConsoleLog() { Handle::close(m_tty); } void xmrig::ConsoleLog::print(int, const char *line, size_t, size_t size, bool colors) { if (!m_tty || Log::colors != colors) { return; } # ifdef _WIN32 uv_buf_t buf = uv_buf_init(const_cast(line), static_cast(size)); if (!isWritable()) { fputs(line, stdout); fflush(stdout); } else { uv_try_write(m_stream, &buf, 1); } # else fputs(line, stdout); fflush(stdout); # endif } bool xmrig::ConsoleLog::isSupported() const { const uv_handle_type type = uv_guess_handle(1); return type == UV_TTY || type == UV_NAMED_PIPE; } #ifdef WIN32 bool xmrig::ConsoleLog::isWritable() const { if (!m_stream || uv_is_writable(m_stream) != 1) { return false; } return isSupported(); } #endif