xmrig/src/App.cpp

133 lines
3 KiB
C++
Raw Normal View History

2017-04-15 06:02:08 +00:00
/* XMRig
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
2018-03-27 07:01:38 +00:00
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
2019-02-14 22:42:46 +00:00
* Copyright 2018 Lee Clagett <https://github.com/vtnerd>
2020-03-06 20:24:35 +00:00
* Copyright 2018-2020 SChernykh <https://github.com/SChernykh>
* Copyright 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
2017-04-15 06:02:08 +00: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/>.
*/
2017-06-04 17:52:21 +00:00
2019-09-21 12:26:27 +00:00
#include <cstdlib>
2017-06-04 17:52:21 +00:00
#include <uv.h>
#include "App.h"
#include "backend/cpu/Cpu.h"
2019-03-15 19:07:26 +00:00
#include "base/io/Console.h"
#include "base/io/log/Log.h"
2020-05-28 13:32:41 +00:00
#include "base/io/log/Tags.h"
2020-04-29 07:17:33 +00:00
#include "base/io/Signals.h"
#include "base/kernel/Platform.h"
#include "core/config/Config.h"
2018-03-27 07:01:38 +00:00
#include "core/Controller.h"
2017-06-07 22:16:45 +00:00
#include "Summary.h"
2017-06-04 17:52:21 +00:00
#include "version.h"
2019-09-21 12:26:27 +00:00
xmrig::App::App(Process *process)
2017-06-04 17:52:21 +00:00
{
2020-12-03 05:06:18 +00:00
m_controller = std::make_shared<Controller>(process);
2017-06-04 17:52:21 +00:00
}
2019-02-14 22:42:46 +00:00
xmrig::App::~App()
2017-06-04 17:52:21 +00:00
{
2019-12-08 18:07:42 +00:00
Cpu::release();
2017-06-04 17:52:21 +00:00
}
2019-02-14 22:42:46 +00:00
int xmrig::App::exec()
2017-06-04 17:52:21 +00:00
{
2018-03-31 10:51:33 +00:00
if (!m_controller->isReady()) {
2020-03-06 20:24:35 +00:00
LOG_EMERG("no valid configuration found, try https://xmrig.com/wizard");
2019-09-21 12:26:27 +00:00
2018-01-20 05:58:43 +00:00
return 2;
2017-06-04 17:52:21 +00:00
}
2020-12-03 05:06:18 +00:00
m_signals = std::make_shared<Signals>(this);
2017-06-13 10:20:15 +00:00
2019-09-21 12:26:27 +00:00
int rc = 0;
if (background(rc)) {
return rc;
}
rc = m_controller->init();
if (rc != 0) {
return rc;
}
if (!m_controller->isBackground()) {
2020-12-03 05:06:18 +00:00
m_console = std::make_shared<Console>(this);
2019-09-21 12:26:27 +00:00
}
2017-06-13 10:20:15 +00:00
2020-12-03 05:06:18 +00:00
Summary::print(m_controller.get());
if (m_controller->config()->isDryRun()) {
2020-05-28 13:32:41 +00:00
LOG_NOTICE("%s " WHITE_BOLD("OK"), Tags::config());
2018-01-20 13:43:31 +00:00
return 0;
}
2019-03-29 17:16:01 +00:00
m_controller->start();
2017-06-04 17:52:21 +00:00
2019-09-21 12:26:27 +00:00
rc = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
2017-06-04 17:52:21 +00:00
uv_loop_close(uv_default_loop());
2019-09-21 12:26:27 +00:00
return rc;
2017-06-04 17:52:21 +00:00
}
2017-06-13 10:20:15 +00:00
2019-02-14 22:42:46 +00:00
void xmrig::App::onConsoleCommand(char command)
2017-07-23 06:36:30 +00:00
{
2019-10-31 17:09:28 +00:00
if (command == 3) {
2020-05-28 13:32:41 +00:00
LOG_WARN("%s " YELLOW("Ctrl+C received, exiting"), Tags::signal());
2017-07-23 06:36:30 +00:00
close();
2019-10-31 17:09:28 +00:00
}
else {
m_controller->execCommand(command);
2017-07-23 06:36:30 +00:00
}
}
2019-02-15 07:21:40 +00:00
void xmrig::App::onSignal(int signum)
2017-06-13 10:20:15 +00:00
{
switch (signum)
{
case SIGHUP:
case SIGTERM:
case SIGINT:
2020-12-03 05:06:18 +00:00
return close();
2017-06-13 10:20:15 +00:00
default:
2020-12-03 05:06:18 +00:00
break;
2017-06-13 10:20:15 +00:00
}
2019-02-15 07:21:40 +00:00
}
void xmrig::App::close()
{
2020-12-03 05:06:18 +00:00
m_signals.reset();
m_console.reset();
2019-09-21 12:05:52 +00:00
2019-03-15 17:44:15 +00:00
m_controller->stop();
Log::destroy();
2019-02-15 07:21:40 +00:00
}