You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
211 lines
4.9 KiB
211 lines
4.9 KiB
/*
|
|
This file is part of cpp-ethereum.
|
|
|
|
cpp-ethereum 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.
|
|
|
|
cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file Farm.h
|
|
* @author Gav Wood <i@gavwood.com>
|
|
* @date 2015
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <thread>
|
|
#include <list>
|
|
#include <atomic>
|
|
#include <libdevcore/Common.h>
|
|
#include <libdevcore/Worker.h>
|
|
#include <libethcore/Common.h>
|
|
#include <libethcore/Miner.h>
|
|
#include <libethcore/BlockInfo.h>
|
|
#include <libethcore/ProofOfWork.h>
|
|
|
|
namespace dev
|
|
{
|
|
|
|
namespace eth
|
|
{
|
|
|
|
/**
|
|
* @brief A collective of Miners.
|
|
* Miners ask for work, then submit proofs
|
|
* @threadsafe
|
|
*/
|
|
template <class PoW>
|
|
class GenericFarm: public GenericFarmFace<PoW>
|
|
{
|
|
public:
|
|
using WorkPackage = typename PoW::WorkPackage;
|
|
using Solution = typename PoW::Solution;
|
|
using Miner = GenericMiner<PoW>;
|
|
|
|
~GenericFarm()
|
|
{
|
|
stop();
|
|
}
|
|
|
|
/**
|
|
* @brief Sets the current mining mission.
|
|
* @param _bi The block (header) we wish to be mining.
|
|
*/
|
|
void setWork(BlockInfo const& _bi) { setWork(PoW::package(_bi)); }
|
|
|
|
/**
|
|
* @brief Sets the current mining mission.
|
|
* @param _wp The work package we wish to be mining.
|
|
*/
|
|
void setWork(WorkPackage const& _wp)
|
|
{
|
|
WriteGuard l(x_minerWork);
|
|
if (_wp.headerHash == m_work.headerHash)
|
|
return;
|
|
m_work = _wp;
|
|
for (auto const& m: m_miners)
|
|
m->setWork(m_work);
|
|
resetTimer();
|
|
}
|
|
|
|
/**
|
|
* @brief (Re)start miners for CPU only.
|
|
* @returns true if started properly.
|
|
*/
|
|
bool startCPU() { return start<typename PoW::CPUMiner>(); }
|
|
|
|
/**
|
|
* @brief (Re)start miners for GPU only.
|
|
* @returns true if started properly.
|
|
*/
|
|
bool startGPU() { return start<typename PoW::GPUMiner>(); }
|
|
|
|
/**
|
|
* @brief Stop all mining activities.
|
|
*/
|
|
void stop()
|
|
{
|
|
WriteGuard l(x_minerWork);
|
|
m_miners.clear();
|
|
m_work.reset();
|
|
m_isMining = false;
|
|
}
|
|
|
|
bool isMining() const
|
|
{
|
|
return m_isMining;
|
|
}
|
|
|
|
/**
|
|
* @brief Get information on the progress of mining this work package.
|
|
* @return The progress with mining so far.
|
|
*/
|
|
MiningProgress const& miningProgress() const
|
|
{
|
|
MiningProgress p;
|
|
p.ms = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - m_lastStart).count();
|
|
{
|
|
ReadGuard l2(x_minerWork);
|
|
for (auto const& i: m_miners)
|
|
p.hashes += i->hashCount();
|
|
}
|
|
ReadGuard l(x_progress);
|
|
m_progress = p;
|
|
return m_progress;
|
|
}
|
|
|
|
/**
|
|
* @brief Reset the mining progess counter.
|
|
*/
|
|
void resetMiningProgress()
|
|
{
|
|
DEV_READ_GUARDED(x_minerWork)
|
|
for (auto const& i: m_miners)
|
|
i->resetHashCount();
|
|
resetTimer();
|
|
}
|
|
|
|
using SolutionFound = std::function<bool(Solution const&)>;
|
|
|
|
/**
|
|
* @brief Provides a valid header based upon that received previously with setWork().
|
|
* @param _bi The now-valid header.
|
|
* @return true if the header was good and that the Farm should pause until more work is submitted.
|
|
*/
|
|
void onSolutionFound(SolutionFound const& _handler) { m_onSolutionFound = _handler; }
|
|
|
|
WorkPackage work() const { ReadGuard l(x_minerWork); return m_work; }
|
|
|
|
private:
|
|
/**
|
|
* @brief Called from a Miner to note a WorkPackage has a solution.
|
|
* @param _p The solution.
|
|
* @param _wp The WorkPackage that the Solution is for.
|
|
* @return true iff the solution was good (implying that mining should be .
|
|
*/
|
|
bool submitProof(Solution const& _s, Miner* _m) override
|
|
{
|
|
if (m_onSolutionFound && m_onSolutionFound(_s))
|
|
{
|
|
if (x_minerWork.try_lock())
|
|
{
|
|
for (std::shared_ptr<Miner> const& m: m_miners)
|
|
if (m.get() != _m)
|
|
m->setWork();
|
|
m_work.reset();
|
|
x_minerWork.unlock();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @brief Start a number of miners.
|
|
*/
|
|
template <class MinerType>
|
|
bool start()
|
|
{
|
|
WriteGuard l(x_minerWork);
|
|
if (!m_miners.empty() && !!std::dynamic_pointer_cast<MinerType>(m_miners[0]))
|
|
return true;
|
|
m_miners.clear();
|
|
m_miners.reserve(MinerType::instances());
|
|
for (unsigned i = 0; i < MinerType::instances(); ++i)
|
|
{
|
|
m_miners.push_back(std::shared_ptr<Miner>(new MinerType(std::make_pair(this, i))));
|
|
m_miners.back()->setWork(m_work);
|
|
}
|
|
m_isMining = true;
|
|
resetTimer();
|
|
return true;
|
|
}
|
|
|
|
void resetTimer()
|
|
{
|
|
m_lastStart = std::chrono::steady_clock::now();
|
|
}
|
|
|
|
mutable SharedMutex x_minerWork;
|
|
std::vector<std::shared_ptr<Miner>> m_miners;
|
|
WorkPackage m_work;
|
|
|
|
std::atomic<bool> m_isMining = {false};
|
|
|
|
mutable SharedMutex x_progress;
|
|
mutable MiningProgress m_progress;
|
|
std::chrono::steady_clock::time_point m_lastStart;
|
|
|
|
SolutionFound m_onSolutionFound;
|
|
};
|
|
|
|
}
|
|
}
|
|
|