Files
rippled/src/ripple/peerfinder/impl/SlotImp.h
Nik Bougalis 3974ddd8f7 Remove RippleAddress:
The RippleAddress class was used to represent a number of fundamentally
different types: account public keys, account secret keys, node public
keys, node secret keys, seeds and generators.

The class is replaced by the following types:
* PublicKey for account and node public keys
* SecretKey for account and node private keys
* Generator for generating secp256k1 accounts
* Seed for account, node and generator seeds
2016-01-12 18:45:36 -08:00

194 lines
5.2 KiB
C++

//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2012, 2013 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#ifndef RIPPLE_PEERFINDER_SLOTIMP_H_INCLUDED
#define RIPPLE_PEERFINDER_SLOTIMP_H_INCLUDED
#include <ripple/peerfinder/Slot.h>
#include <ripple/peerfinder/PeerfinderManager.h>
#include <beast/config/CompilerConfig.h>
#include <beast/container/aged_unordered_map.h>
#include <beast/container/aged_container_utility.h>
#include <boost/optional.hpp>
#include <atomic>
namespace ripple {
namespace PeerFinder {
class SlotImp : public Slot
{
private:
using recent_type = beast::aged_unordered_map <beast::IP::Endpoint, int>;
public:
using ptr = std::shared_ptr <SlotImp>;
// inbound
SlotImp (beast::IP::Endpoint const& local_endpoint,
beast::IP::Endpoint const& remote_endpoint, bool fixed,
clock_type& clock);
// outbound
SlotImp (beast::IP::Endpoint const& remote_endpoint,
bool fixed, clock_type& clock);
bool inbound () const
{
return m_inbound;
}
bool fixed () const
{
return m_fixed;
}
bool cluster () const
{
return m_cluster;
}
State state () const
{
return m_state;
}
beast::IP::Endpoint const& remote_endpoint () const
{
return m_remote_endpoint;
}
boost::optional <beast::IP::Endpoint> const& local_endpoint () const
{
return m_local_endpoint;
}
boost::optional <PublicKey> const& public_key () const
{
return m_public_key;
}
boost::optional<std::uint16_t> listening_port () const
{
std::uint32_t const value = m_listening_port;
if (value == unknownPort)
return boost::none;
return value;
}
void set_listening_port (std::uint16_t port)
{
m_listening_port = port;
}
void local_endpoint (beast::IP::Endpoint const& endpoint)
{
m_local_endpoint = endpoint;
}
void remote_endpoint (beast::IP::Endpoint const& endpoint)
{
m_remote_endpoint = endpoint;
}
void public_key (PublicKey const& key)
{
m_public_key = key;
}
void cluster (bool cluster_)
{
m_cluster = cluster_;
}
//--------------------------------------------------------------------------
void state (State state_);
void activate (clock_type::time_point const& now);
// "Memberspace"
//
// The set of all recent addresses that we have seen from this peer.
// We try to avoid sending a peer the same addresses they gave us.
//
class recent_t
{
public:
explicit recent_t (clock_type& clock);
/** Called for each valid endpoint received for a slot.
We also insert messages that we send to the slot to prevent
sending a slot the same address too frequently.
*/
void insert (beast::IP::Endpoint const& ep, int hops);
/** Returns `true` if we should not send endpoint to the slot. */
bool filter (beast::IP::Endpoint const& ep, int hops);
private:
void expire ();
friend class SlotImp;
recent_type cache;
} recent;
void expire()
{
recent.expire();
}
private:
bool const m_inbound;
bool const m_fixed;
bool m_cluster;
State m_state;
beast::IP::Endpoint m_remote_endpoint;
boost::optional <beast::IP::Endpoint> m_local_endpoint;
boost::optional <PublicKey> m_public_key;
static std::int32_t BEAST_CONSTEXPR unknownPort = -1;
std::atomic <std::int32_t> m_listening_port;
public:
// DEPRECATED public data members
// Tells us if we checked the connection. Outbound connections
// are always considered checked since we successfuly connected.
bool checked;
// Set to indicate if the connection can receive incoming at the
// address advertised in mtENDPOINTS. Only valid if checked is true.
bool canAccept;
// Set to indicate that a connection check for this peer is in
// progress. Valid always.
bool connectivityCheckInProgress;
// The time after which we will accept mtENDPOINTS from the peer
// This is to prevent flooding or spamming. Receipt of mtENDPOINTS
// sooner than the allotted time should impose a load charge.
//
clock_type::time_point whenAcceptEndpoints;
};
}
}
#endif