/* 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 2018 Lee Clagett * Copyright 2018 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 #include "api/Api.h" #include "App.h" #include "base/io/Console.h" #include "base/io/log/Log.h" #include "base/kernel/Signals.h" #include "common/cpu/Cpu.h" #include "common/Platform.h" #include "core/Config.h" #include "core/Controller.h" #include "crypto/CryptoNight.h" #include "Mem.h" #include "net/Network.h" #include "Summary.h" #include "version.h" #include "workers/Workers.h" #ifndef XMRIG_NO_HTTPD # include "common/api/Httpd.h" #endif xmrig::App::App(Process *process) : m_console(nullptr), m_httpd(nullptr), m_signals(nullptr) { m_controller = new Controller(process); if (m_controller->init() != 0) { return; } if (!m_controller->config()->isBackground()) { m_console = new Console(this); } } xmrig::App::~App() { delete m_signals; delete m_console; delete m_controller; # ifndef XMRIG_NO_HTTPD delete m_httpd; # endif } int xmrig::App::exec() { if (!m_controller->isReady()) { return 2; } m_signals = new Signals(this); background(); Mem::init(m_controller->config()->isHugePages()); Summary::print(m_controller); if (m_controller->config()->isDryRun()) { LOG_NOTICE("OK"); return 0; } # ifndef XMRIG_NO_API Api::start(m_controller); # endif # ifndef XMRIG_NO_HTTPD m_httpd = new Httpd( m_controller->config()->apiPort(), m_controller->config()->apiToken(), m_controller->config()->isApiIPv6(), m_controller->config()->isApiRestricted() ); m_httpd->start(); # endif Workers::start(m_controller); m_controller->network()->connect(); const int r = uv_run(uv_default_loop(), UV_RUN_DEFAULT); uv_loop_close(uv_default_loop()); return r; } void xmrig::App::onConsoleCommand(char command) { switch (command) { case 'h': case 'H': Workers::printHashrate(true); break; case 'p': case 'P': if (Workers::isEnabled()) { LOG_INFO(YELLOW_BOLD("paused") ", press " MAGENTA_BOLD("r") " to resume"); Workers::setEnabled(false); } break; case 'r': case 'R': if (!Workers::isEnabled()) { LOG_INFO(GREEN_BOLD("resumed")); Workers::setEnabled(true); } break; case 3: LOG_WARN("Ctrl+C received, exiting"); close(); break; default: break; } } void xmrig::App::onSignal(int signum) { switch (signum) { case SIGHUP: LOG_WARN("SIGHUP received, exiting"); break; case SIGTERM: LOG_WARN("SIGTERM received, exiting"); break; case SIGINT: LOG_WARN("SIGINT received, exiting"); break; default: return; } close(); } void xmrig::App::close() { # ifndef XMRIG_NO_HTTPD m_httpd->stop(); # endif m_signals->stop(); m_console->stop(); m_controller->stop(); Workers::stop(); Log::destroy(); }