xmrig/src/core/Controller.cpp

152 lines
3.4 KiB
C++
Raw Normal View History

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>
* Copyright 2016-2018 XMRig <https://github.com/xmrig>, <support@xmrig.com>
*
* 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/>.
*/
#include <assert.h>
2018-04-12 23:38:18 +00:00
#include "common/config/ConfigLoader.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"
#include "core/Config.h"
2018-03-27 07:01:38 +00:00
#include "core/Controller.h"
#include "Cpu.h"
#include "interfaces/IControllerListener.h"
#include "net/Network.h"
2018-03-27 07:01:38 +00:00
#ifdef HAVE_SYSLOG_H
# include "log/SysLog.h"
#endif
class xmrig::ControllerPrivate
{
public:
inline ControllerPrivate() :
network(nullptr),
2018-03-27 07:01:38 +00:00
config(nullptr)
{}
inline ~ControllerPrivate()
{
delete network;
delete config;
2018-03-27 07:01:38 +00:00
}
Network *network;
2018-03-27 07:01:38 +00:00
std::vector<xmrig::IControllerListener *> listeners;
xmrig::Config *config;
2018-03-27 07:01:38 +00:00
};
xmrig::Controller::Controller()
: d_ptr(new ControllerPrivate())
{
}
xmrig::Controller::~Controller()
{
ConfigLoader::release();
2018-03-27 07:01:38 +00:00
delete d_ptr;
}
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
{
assert(d_ptr->config != nullptr);
2018-03-27 07:01:38 +00:00
return d_ptr->config;
}
int xmrig::Controller::init(int argc, char **argv)
{
Cpu::init();
d_ptr->config = xmrig::Config::load(argc, argv, this);
if (!d_ptr->config) {
return 1;
}
2018-03-27 07:01:38 +00:00
Log::init();
Platform::init(config()->userAgent());
Platform::setProcessPriority(d_ptr->config->priority());
2018-03-27 07:01:38 +00:00
if (!config()->isBackground()) {
Log::add(new ConsoleLog(this));
}
2018-03-27 07:01:38 +00:00
if (config()->logFile()) {
Log::add(new FileLog(config()->logFile()));
}
2018-03-27 07:01:38 +00:00
# ifdef HAVE_SYSLOG_H
2018-03-31 09:52:58 +00:00
if (config()->isSyslog()) {
Log::add(new SysLog());
}
# endif
2018-03-27 07:01:38 +00:00
d_ptr->network = new Network(this);
2018-03-27 07:01:38 +00:00
return 0;
}
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);
}
void xmrig::Controller::onNewConfig(IConfig *config)
2018-03-27 07:01:38 +00:00
{
Config *previousConfig = d_ptr->config;
d_ptr->config = static_cast<Config*>(config);
2018-03-27 07:01:38 +00:00
for (xmrig::IControllerListener *listener : d_ptr->listeners) {
listener->onConfigChanged(d_ptr->config, previousConfig);
}
2018-03-27 07:01:38 +00:00
delete previousConfig;
2018-03-27 07:01:38 +00:00
}