You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.6 KiB

#include <iostream>
#include <boost/array.hpp>
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <json/json.h>
#include <libdevcore/Log.h>
9 years ago
#include <libdevcore/FixedHash.h>
#include <libethcore/Farm.h>
#include <libethcore/EthashAux.h>
#include "BuildInfo.h"
using namespace std;
using namespace boost::asio;
using boost::asio::ip::tcp;
9 years ago
using namespace dev;
using namespace dev::eth;
class EthStratumClient
{
public:
9 years ago
EthStratumClient(GenericFarm<EthashProofOfWork> * f, string const & host, string const & port, string const & user, string const & pass);
~EthStratumClient();
9 years ago
bool isRunning() { return m_running; }
h256 currentHeaderHash() { return m_current.headerHash; }
bool current() { return m_current; }
9 years ago
bool submit(EthashProofOfWork::Solution solution);
private:
9 years ago
void connect();
9 years ago
void disconnect();
void resolve_handler(const boost::system::error_code& ec, tcp::resolver::iterator i);
void connect_handler(const boost::system::error_code& ec, tcp::resolver::iterator i);
9 years ago
void handleResponse(const boost::system::error_code& ec);
void readResponse(const boost::system::error_code& ec, std::size_t bytes_transferred);
void processReponse(Json::Value& responseObject);
9 years ago
string m_host;
string m_port;
string m_user;
string m_pass;
9 years ago
bool m_authorized;
bool m_running;
9 years ago
bool m_precompute;
string m_response;
9 years ago
GenericFarm<EthashProofOfWork> * p_farm;
EthashProofOfWork::WorkPackage m_current;
9 years ago
string m_job;
9 years ago
EthashAux::FullType m_dag;
boost::asio::io_service m_io_service;
tcp::socket m_socket;
9 years ago
boost::asio::streambuf m_requestBuffer;
boost::asio::streambuf m_responseBuffer;
};