/* 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_CPUTHREAD_H #define XMRIG_CPUTHREAD_H #include "rapidjson/fwd.h" namespace xmrig { class CpuThread { public: inline constexpr CpuThread() = default; inline constexpr CpuThread(int64_t affinity, uint32_t intensity) : m_affinity(affinity), m_intensity(intensity) {} CpuThread(const rapidjson::Value &value); inline bool isEqual(const CpuThread &other) const { return other.m_affinity == m_affinity && other.m_intensity == m_intensity; } inline bool isValid() const { return m_intensity <= 5; } inline int64_t affinity() const { return m_affinity; } inline uint32_t intensity() const { return m_intensity == 0 ? 1 : m_intensity; } inline bool operator!=(const CpuThread &other) const { return !isEqual(other); } inline bool operator==(const CpuThread &other) const { return isEqual(other); } rapidjson::Value toJSON(rapidjson::Document &doc) const; private: int64_t m_affinity = -1; uint32_t m_intensity = 0; }; } /* namespace xmrig */ #endif /* XMRIG_CPUTHREAD_H */