/* 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-2019 SChernykh * Copyright 2016-2019 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_CPUCONFIG_H #define XMRIG_CPUCONFIG_H #include "backend/common/Threads.h" #include "backend/cpu/CpuLaunchData.h" #include "backend/cpu/CpuThreads.h" #include "crypto/common/Assembly.h" namespace xmrig { class CpuConfig { public: enum AesMode { AES_AUTO, AES_HW, AES_SOFT }; CpuConfig() = default; bool isHwAES() const; rapidjson::Value toJSON(rapidjson::Document &doc) const; size_t memPoolSize() const; std::vector get(const Miner *miner, const Algorithm &algorithm) const; void read(const rapidjson::Value &value, uint32_t version); inline bool isEnabled() const { return m_enabled; } inline bool isHugePages() const { return m_hugePages; } inline bool isShouldSave() const { return m_shouldSave; } inline const Assembly &assembly() const { return m_assembly; } inline const String &argon2Impl() const { return m_argon2Impl; } inline const Threads &threads() const { return m_threads; } inline int priority() const { return m_priority; } private: void generate(); void generateArgon2(); void setAesMode(const rapidjson::Value &value); void setMemoryPool(const rapidjson::Value &value); inline void setPriority(int priority) { m_priority = (priority >= -1 && priority <= 5) ? priority : -1; } AesMode m_aes = AES_AUTO; Assembly m_assembly; bool m_enabled = true; bool m_hugePages = true; bool m_shouldSave = false; int m_memoryPool = 0; int m_priority = -1; String m_argon2Impl; Threads m_threads; uint32_t m_limit = 100; }; } /* namespace xmrig */ #endif /* XMRIG_CPUCONFIG_H */