xmrig/src/workers/SingleWorker.cpp

122 lines
2.9 KiB
C++
Raw Normal View History

/* 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 2016-2017 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/>.
*/
2017-06-10 06:41:08 +00:00
#include <thread>
2017-06-10 06:41:08 +00:00
2017-06-11 07:58:46 +00:00
#include "crypto/CryptoNight.h"
#include "workers/SingleWorker.h"
2017-06-10 06:41:08 +00:00
#include "workers/Workers.h"
SingleWorker::SingleWorker(Handle *handle)
: Worker(handle)
{
}
2017-06-10 06:41:08 +00:00
void SingleWorker::start()
{
2017-07-19 01:28:59 +00:00
while (Workers::sequence() > 0) {
2017-06-11 03:52:23 +00:00
if (Workers::isPaused()) {
do {
std::this_thread::sleep_for(std::chrono::milliseconds(200));
}
while (Workers::isPaused());
2017-07-23 06:36:30 +00:00
if (Workers::sequence() == 0) {
break;
}
2017-06-11 03:52:23 +00:00
consumeJob();
}
2018-03-03 03:10:46 +00:00
const uint8_t version = m_job.size() ? m_job.blob()[0] : 0;
2017-06-11 03:52:23 +00:00
while (!Workers::isOutdated(m_sequence)) {
2017-06-12 04:18:14 +00:00
if ((m_count & 0xF) == 0) {
storeStats();
}
2017-06-11 07:58:46 +00:00
m_count++;
*m_job.nonce() = ++m_result.nonce;
2017-06-11 03:52:23 +00:00
2018-03-03 03:10:46 +00:00
if (CryptoNight::hash(m_job, m_result, m_ctx, version)) {
2017-06-11 07:58:46 +00:00
Workers::submit(m_result);
}
2017-06-11 03:52:23 +00:00
2017-06-13 16:58:31 +00:00
std::this_thread::yield();
2017-06-11 03:52:23 +00:00
}
consumeJob();
}
}
bool SingleWorker::resume(const Job &job)
{
if (m_job.poolId() == -1 && job.poolId() >= 0 && job.id() == m_paused.id()) {
m_job = m_paused;
m_result = m_job;
m_result.nonce = *m_job.nonce();
return true;
}
return false;
}
2017-06-11 03:52:23 +00:00
void SingleWorker::consumeJob()
{
Job job = Workers::job();
2017-06-11 03:52:23 +00:00
m_sequence = Workers::sequence();
2017-07-10 18:42:28 +00:00
if (m_job == job) {
return;
}
2017-06-11 03:52:23 +00:00
save(job);
if (resume(job)) {
return;
}
m_job = std::move(job);
m_result = m_job;
2017-06-11 07:58:46 +00:00
if (m_job.isNicehash()) {
2017-06-11 07:58:46 +00:00
m_result.nonce = (*m_job.nonce() & 0xff000000U) + (0xffffffU / m_threads * m_id);
}
else {
m_result.nonce = 0xffffffffU / m_threads * m_id;
}
2017-06-10 06:41:08 +00:00
}
void SingleWorker::save(const Job &job)
{
if (job.poolId() == -1 && m_job.poolId() >= 0) {
m_paused = m_job;
}
}