/* XMRig * Copyright 2010 Jeff Garzik * Copyright 2012-2014 pooler * Copyright 2014 Lucas Jones * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2017-2018 XMR-Stak , * Copyright 2018-2020 SChernykh * Copyright 2016-2020 XMRig , * * 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 . */ #ifndef XMRIG_CPUBACKEND_H #define XMRIG_CPUBACKEND_H #include "backend/common/interfaces/IBackend.h" #include "base/tools/Object.h" #include namespace xmrig { class Controller; class CpuBackendPrivate; class Miner; class CpuBackend : public IBackend { public: XMRIG_DISABLE_COPY_MOVE_DEFAULT(CpuBackend) CpuBackend(Controller *controller); ~CpuBackend() override; protected: inline void execCommand(char) override {} bool isEnabled() const override; bool isEnabled(const Algorithm &algorithm) const override; const Hashrate *hashrate() const override; const String &profileName() const override; const String &type() const override; void prepare(const Job &nextJob) override; void printHashrate(bool details) override; void printHealth() override; void setJob(const Job &job) override; void start(IWorker *worker, bool ready) override; void stop() override; bool tick(uint64_t ticks) override; # ifdef XMRIG_FEATURE_API rapidjson::Value toJSON(rapidjson::Document &doc) const override; void handleRequest(IApiRequest &request) override; # endif # ifdef XMRIG_FEATURE_BENCHMARK Benchmark *benchmark() const override; void printBenchProgress() const override; # endif private: CpuBackendPrivate *d_ptr; }; } /* namespace xmrig */ #endif /* XMRIG_CPUBACKEND_H */