REDACTED-rig/src/core/Controller.cpp
2021-08-25 18:45:15 +07:00

106 lines
2.1 KiB
C++

/* XMRig
* Copyright (c) 2018-2021 SChernykh <https://github.com/SChernykh>
* Copyright (c) 2016-2021 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 "core/Controller.h"
#include "backend/cpu/Cpu.h"
#include "core/config/Config.h"
#include "core/Miner.h"
#include "crypto/common/VirtualMemory.h"
#include "net/Network.h"
#ifdef XMRIG_FEATURE_API
# include "base/api/Api.h"
# include "hw/api/HwApi.h"
#endif
#include <cassert>
xmrig::Controller::Controller(Process *process) :
Base(process)
{
}
xmrig::Controller::~Controller()
{
VirtualMemory::destroy();
}
int xmrig::Controller::init()
{
Base::init();
VirtualMemory::init(config()->cpu().memPoolSize(), config()->cpu().hugePageSize());
m_network = std::make_shared<Network>(this);
# ifdef XMRIG_FEATURE_API
m_hwApi = std::make_shared<HwApi>();
api()->addListener(m_hwApi.get());
# endif
return 0;
}
void xmrig::Controller::start()
{
Base::start();
m_miner = std::make_shared<Miner>(this);
network()->connect();
}
void xmrig::Controller::stop()
{
Base::stop();
m_network.reset();
m_miner->stop();
m_miner.reset();
}
xmrig::Miner *xmrig::Controller::miner() const
{
assert(m_miner);
return m_miner.get();
}
xmrig::Network *xmrig::Controller::network() const
{
assert(m_network);
return m_network.get();
}
void xmrig::Controller::execCommand(char command) const
{
miner()->execCommand(command);
network()->execCommand(command);
}