/* XMRig * Copyright 2010 Jeff Garzik * Copyright 2012-2014 pooler * Copyright 2014 Lucas Jones * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2016-2017 XMRig * Copyright 2017- BenDr0id * * * 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 __CC_CLIENT_H__ #define __CC_CLIENT_H__ #ifndef XMRIG_NO_CC #include #include <3rdparty/cpp-httplib/httplib.h> #include "Options.h" #include "ClientStatus.h" class Hashrate; class NetworkState; class CCClient { public: CCClient(Options *options, uv_async_t* async); ~CCClient(); static void updateHashrate(const Hashrate *hashrate); static void updateNetworkState(const NetworkState &results); private: static void publishClientStatusReport(); static void updateConfig(); static void publishConfig(); static std::shared_ptr performRequest(const std::string& requestUrl, const std::string& requestBuffer, const std::string& operation); static void onThreadStarted(void *handle); static void onReport(uv_timer_t *handle); const Options* m_options; static CCClient* m_self; static uv_mutex_t m_mutex; ClientStatus m_clientStatus; std::string m_authorization; uv_async_t* m_async; uv_timer_t m_timer; uv_loop_t m_client_loop; uv_thread_t m_thread; }; #endif #endif /* __CC_CLIENT_H__ */