Files
xmrig/src/base/io/Console.cpp

78 lines
2.1 KiB
C++
Raw Normal View History

2017-07-23 08:35:26 +03:00
/* XMRig
2020-12-03 12:06:18 +07:00
* Copyright (c) 2018-2020 SChernykh <https://github.com/SChernykh>
* Copyright (c) 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
2017-07-23 08:35:26 +03:00
*
* 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 <http://www.gnu.org/licenses/>.
*/
2019-03-16 02:07:26 +07:00
#include "base/io/Console.h"
#include "base/kernel/interfaces/IConsoleListener.h"
2019-03-16 00:44:15 +07:00
#include "base/tools/Handle.h"
2017-07-23 08:35:26 +03:00
2019-03-16 00:44:15 +07:00
xmrig::Console::Console(IConsoleListener *listener)
2017-07-23 09:36:30 +03:00
: m_listener(listener)
2017-07-23 08:35:26 +03:00
{
if (!isSupported()) {
return;
}
2017-07-23 08:35:26 +03:00
m_tty = new uv_tty_t;
2019-03-16 00:44:15 +07:00
m_tty->data = this;
uv_tty_init(uv_default_loop(), m_tty, 0, 1);
if (!uv_is_readable(reinterpret_cast<uv_stream_t*>(m_tty))) {
return;
}
2019-03-16 00:44:15 +07:00
uv_tty_set_mode(m_tty, UV_TTY_MODE_RAW);
uv_read_start(reinterpret_cast<uv_stream_t*>(m_tty), Console::onAllocBuffer, Console::onRead);
}
xmrig::Console::~Console()
{
2019-03-19 22:13:43 +07:00
uv_tty_reset_mode();
2019-03-16 00:44:15 +07:00
Handle::close(m_tty);
2017-07-23 08:35:26 +03:00
}
bool xmrig::Console::isSupported() const
{
const uv_handle_type type = uv_guess_handle(0);
return type == UV_TTY || type == UV_NAMED_PIPE;
}
2019-03-16 00:44:15 +07:00
void xmrig::Console::onAllocBuffer(uv_handle_t *handle, size_t, uv_buf_t *buf)
2017-07-23 08:35:26 +03:00
{
auto console = static_cast<Console*>(handle->data);
buf->len = 1;
buf->base = console->m_buf;
}
2019-03-16 00:44:15 +07:00
void xmrig::Console::onRead(uv_stream_t *stream, ssize_t nread, const uv_buf_t *buf)
2017-07-23 08:35:26 +03:00
{
if (nread < 0) {
return uv_close(reinterpret_cast<uv_handle_t*>(stream), nullptr);
}
if (nread == 1) {
2017-07-23 09:36:30 +03:00
static_cast<Console*>(stream->data)->m_listener->onConsoleCommand(buf->base[0]);
2017-07-23 08:35:26 +03:00
}
}