2018-03-27 07:01:38 +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>
|
|
|
|
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
|
2019-02-14 21:59:20 +00:00
|
|
|
* Copyright 2018-2019 SChernykh <https://github.com/SChernykh>
|
|
|
|
* Copyright 2016-2019 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
2018-03-27 07:01:38 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
2018-04-12 23:38:18 +00:00
|
|
|
#include "common/config/ConfigLoader.h"
|
2018-09-23 14:51:56 +00:00
|
|
|
#include "common/cpu/Cpu.h"
|
2018-06-05 00:34:58 +00:00
|
|
|
#include "common/interfaces/IControllerListener.h"
|
2018-04-20 11:54:58 +00:00
|
|
|
#include "common/log/ConsoleLog.h"
|
|
|
|
#include "common/log/FileLog.h"
|
|
|
|
#include "common/log/Log.h"
|
2018-04-13 00:23:01 +00:00
|
|
|
#include "common/Platform.h"
|
2018-03-31 09:29:47 +00:00
|
|
|
#include "core/Config.h"
|
2018-03-27 07:01:38 +00:00
|
|
|
#include "core/Controller.h"
|
2018-03-31 09:29:47 +00:00
|
|
|
#include "net/Network.h"
|
2018-03-27 07:01:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SYSLOG_H
|
2018-04-21 14:41:39 +00:00
|
|
|
# include "common/log/SysLog.h"
|
2018-03-27 07:01:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
class xmrig::ControllerPrivate
|
|
|
|
{
|
|
|
|
public:
|
2019-02-14 22:42:46 +00:00
|
|
|
inline ControllerPrivate(Process *process) :
|
2018-03-31 09:29:47 +00:00
|
|
|
network(nullptr),
|
2019-02-14 22:42:46 +00:00
|
|
|
process(process),
|
2018-03-27 07:01:38 +00:00
|
|
|
config(nullptr)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
inline ~ControllerPrivate()
|
|
|
|
{
|
2018-03-31 09:29:47 +00:00
|
|
|
delete network;
|
|
|
|
delete config;
|
2018-03-27 07:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
Network *network;
|
2019-02-14 22:42:46 +00:00
|
|
|
Process *process;
|
2018-03-27 07:01:38 +00:00
|
|
|
std::vector<xmrig::IControllerListener *> listeners;
|
2018-03-31 09:29:47 +00:00
|
|
|
xmrig::Config *config;
|
2018-03-27 07:01:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-02-14 22:42:46 +00:00
|
|
|
xmrig::Controller::Controller(Process *process)
|
|
|
|
: d_ptr(new ControllerPrivate(process))
|
2018-03-27 07:01:38 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
xmrig::Controller::~Controller()
|
|
|
|
{
|
2018-03-31 09:29:47 +00:00
|
|
|
ConfigLoader::release();
|
2018-03-27 07:01:38 +00:00
|
|
|
|
|
|
|
delete d_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-10 20:18:56 +00:00
|
|
|
bool xmrig::Controller::isDone() const
|
|
|
|
{
|
|
|
|
return ConfigLoader::isDone();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-31 10:51:33 +00:00
|
|
|
bool xmrig::Controller::isReady() const
|
|
|
|
{
|
|
|
|
return d_ptr->config && d_ptr->network;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-27 07:01:38 +00:00
|
|
|
xmrig::Config *xmrig::Controller::config() const
|
|
|
|
{
|
2018-03-31 09:29:47 +00:00
|
|
|
assert(d_ptr->config != nullptr);
|
|
|
|
|
2018-03-27 07:01:38 +00:00
|
|
|
return d_ptr->config;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-14 22:42:46 +00:00
|
|
|
int xmrig::Controller::init()
|
2018-03-27 07:01:38 +00:00
|
|
|
{
|
2018-03-31 09:29:47 +00:00
|
|
|
Cpu::init();
|
|
|
|
|
2019-02-14 22:42:46 +00:00
|
|
|
d_ptr->config = xmrig::Config::load(d_ptr->process, this);
|
2018-03-31 09:29:47 +00:00
|
|
|
if (!d_ptr->config) {
|
|
|
|
return 1;
|
|
|
|
}
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
Log::init();
|
|
|
|
Platform::init(config()->userAgent());
|
|
|
|
Platform::setProcessPriority(d_ptr->config->priority());
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
if (!config()->isBackground()) {
|
|
|
|
Log::add(new ConsoleLog(this));
|
|
|
|
}
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
if (config()->logFile()) {
|
2018-05-19 06:06:49 +00:00
|
|
|
Log::add(new FileLog(this, config()->logFile()));
|
2018-03-31 09:29:47 +00:00
|
|
|
}
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
# ifdef HAVE_SYSLOG_H
|
2018-03-31 09:52:58 +00:00
|
|
|
if (config()->isSyslog()) {
|
2018-03-31 09:29:47 +00:00
|
|
|
Log::add(new SysLog());
|
|
|
|
}
|
|
|
|
# endif
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
d_ptr->network = new Network(this);
|
2018-03-27 07:01:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
Network *xmrig::Controller::network() const
|
|
|
|
{
|
|
|
|
assert(d_ptr->network != nullptr);
|
|
|
|
|
|
|
|
return d_ptr->network;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-27 07:01:38 +00:00
|
|
|
void xmrig::Controller::addListener(IControllerListener *listener)
|
|
|
|
{
|
|
|
|
d_ptr->listeners.push_back(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-31 06:48:06 +00:00
|
|
|
void xmrig::Controller::onNewConfig(IConfig *config)
|
2018-03-27 07:01:38 +00:00
|
|
|
{
|
2018-03-31 09:29:47 +00:00
|
|
|
Config *previousConfig = d_ptr->config;
|
|
|
|
d_ptr->config = static_cast<Config*>(config);
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
for (xmrig::IControllerListener *listener : d_ptr->listeners) {
|
|
|
|
listener->onConfigChanged(d_ptr->config, previousConfig);
|
|
|
|
}
|
2018-03-27 07:01:38 +00:00
|
|
|
|
2018-03-31 09:29:47 +00:00
|
|
|
delete previousConfig;
|
2018-03-27 07:01:38 +00:00
|
|
|
}
|