// Copyright (c) 2011-2016 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once #include #include #include #include #include #include "CryptoNote.h" #include "CryptoNoteCore/Difficulty.h" #include "Logging/LoggerRef.h" namespace CryptoNote { struct BlockMiningParameters { Block blockTemplate; difficulty_type difficulty; }; class Miner { public: Miner(System::Dispatcher& dispatcher, Logging::ILogger& logger); ~Miner(); Block mine(const BlockMiningParameters& blockMiningParameters, size_t threadCount); //NOTE! this is blocking method void stop(); private: System::Dispatcher& m_dispatcher; System::Event m_miningStopped; enum class MiningState : uint8_t { MINING_STOPPED, BLOCK_FOUND, MINING_IN_PROGRESS}; std::atomic m_state; std::vector>> m_workers; Block m_block; Logging::LoggerRef m_logger; void runWorkers(BlockMiningParameters blockMiningParameters, size_t threadCount); void workerFunc(const Block& blockTemplate, difficulty_type difficulty, uint32_t nonceStep); bool setStateBlockFound(); }; } //namespace CryptoNote