/*
This file is part of cpp-ethereum.
cpp-ethereum 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.
Foobar 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 Foobar. If not, see .
*/
/** @file PeerNetwork.h
* @author Gav Wood
* @date 2014
*/
#pragma once
#include
#include
#include
#include
#include
#include "RLP.h"
#include "Common.h"
namespace ba = boost::asio;
namespace bi = boost::asio::ip;
namespace eth
{
class BlockChain;
class TransactionQueue;
class BlockChain;
enum PacketType
{
Hello = 0,
Disconnect,
Ping,
Pong,
GetPeers = 0x10,
Peers,
Transactions,
Blocks,
GetChain
};
class PeerServer;
class PeerSession: public std::enable_shared_from_this
{
friend class PeerServer;
public:
PeerSession(PeerServer* _server, bi::tcp::socket _socket, uint _rNId);
~PeerSession();
void start();
void disconnect();
void ping();
private:
void doRead();
void doWrite(std::size_t length);
bool interpret(RLP const& _r);
static RLPStream& prep(RLPStream& _s);
static void seal(bytes& _b);
void sealAndSend(RLPStream& _s);
void sendDestroy(bytes& _msg);
void send(bytesConstRef _msg);
PeerServer* m_server;
bi::tcp::socket m_socket;
std::array m_data;
bytes m_incoming;
std::string m_clientVersion;
uint m_protocolVersion;
uint m_networkId;
uint m_reqNetworkId;
std::chrono::steady_clock::time_point m_ping;
std::chrono::steady_clock::duration m_lastPing;
};
struct PeerInfo
{
std::string clientVersion;
bi::tcp::endpoint endpoint;
std::chrono::steady_clock::duration lastPing;
};
class PeerServer
{
friend class PeerSession;
public:
/// Start server, listening for connections on the given port.
PeerServer(std::string const& _clientVersion, BlockChain const& _ch, uint _networkId, short _port);
/// Start server, but don't listen.
PeerServer(std::string const& _clientVersion, uint _networkId);
/// Connect to a peer explicitly.
bool connect(std::string const& _addr = "127.0.0.1", uint _port = 30303);
/// Sync with the BlockChain. It might contain one of our mined blocks, we might have new candidates from the network.
/// Conduct I/O, polling, syncing, whatever.
/// Ideally all time-consuming I/O is done in a background thread, but you get this call every 100ms or so anyway.
void process(BlockChain& _bc, TransactionQueue&, Overlay& _o);
void process(BlockChain& _bc);
/// Get number of peers connected.
unsigned peerCount() const { return m_peers.size(); }
/// Set ideal number of peers.
void setIdealPeerCount(uint _n) { m_idealPeerCount = _n; }
/// Get peer information.
std::vector peers() const;
/// Ping the peers.
void pingAll();
private:
void doAccept();
std::vector potentialPeers();
std::string m_clientVersion;
BlockChain const* m_chain = nullptr;
ba::io_service m_ioService;
bi::tcp::acceptor m_acceptor;
bi::tcp::socket m_socket;
uint m_requiredNetworkId;
std::vector> m_peers;
std::vector m_incomingTransactions;
std::vector m_incomingBlocks;
std::vector m_incomingPeers;
h256 m_latestBlockSent;
std::set m_transactionsSent;
unsigned m_idealPeerCount;
};
}