2018-06-25 15:12:08 +00:00
|
|
|
#ifndef LLARP_PATHSET_HPP
|
|
|
|
#define LLARP_PATHSET_HPP
|
2018-07-09 17:32:11 +00:00
|
|
|
#include <llarp/time.h>
|
2018-07-12 18:21:44 +00:00
|
|
|
#include <functional>
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <list>
|
2018-06-25 15:12:08 +00:00
|
|
|
#include <llarp/path_types.hpp>
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <llarp/router_id.hpp>
|
2018-07-18 03:10:21 +00:00
|
|
|
#include <llarp/routing/message.hpp>
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <llarp/service/IntroSet.hpp>
|
2018-07-18 03:10:21 +00:00
|
|
|
#include <llarp/service/lookup.hpp>
|
2018-08-30 18:48:43 +00:00
|
|
|
#include <llarp/dht/messages/all.hpp>
|
2018-06-25 15:12:08 +00:00
|
|
|
#include <map>
|
|
|
|
#include <tuple>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-07-09 17:32:11 +00:00
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
struct GotIntroMessage;
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
namespace path
|
|
|
|
{
|
|
|
|
enum PathStatus
|
|
|
|
{
|
|
|
|
ePathBuilding,
|
|
|
|
ePathEstablished,
|
|
|
|
ePathTimeout,
|
|
|
|
ePathExpired
|
|
|
|
};
|
|
|
|
// forward declare
|
|
|
|
struct Path;
|
|
|
|
|
|
|
|
/// a set of paths owned by an entity
|
|
|
|
struct PathSet
|
|
|
|
{
|
|
|
|
/// construct
|
|
|
|
/// @params numPaths the number of paths to maintain
|
|
|
|
PathSet(size_t numPaths);
|
|
|
|
|
2018-06-29 16:02:39 +00:00
|
|
|
/// tick owned paths
|
|
|
|
void
|
|
|
|
Tick(llarp_time_t now, llarp_router* r);
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
|
|
|
RemovePath(Path* path);
|
|
|
|
|
2018-08-02 00:48:43 +00:00
|
|
|
virtual void
|
2018-06-25 15:12:08 +00:00
|
|
|
HandlePathBuilt(Path* path);
|
|
|
|
|
|
|
|
void
|
|
|
|
AddPath(Path* path);
|
|
|
|
|
|
|
|
Path*
|
2018-08-01 22:10:38 +00:00
|
|
|
GetByUpstream(const RouterID& remote, const PathID_t& rxid) const;
|
2018-06-25 15:12:08 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
ExpirePaths(llarp_time_t now);
|
|
|
|
|
|
|
|
size_t
|
|
|
|
NumInStatus(PathStatus st) const;
|
|
|
|
|
|
|
|
/// return true if we should build another path
|
2018-08-23 15:19:16 +00:00
|
|
|
virtual bool
|
2018-06-25 15:12:08 +00:00
|
|
|
ShouldBuildMore() const;
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
/// return true if we should publish a new hidden service descriptor
|
2018-07-18 03:10:21 +00:00
|
|
|
virtual bool
|
2018-07-18 22:50:05 +00:00
|
|
|
ShouldPublishDescriptors(llarp_time_t now) const
|
2018-07-18 03:10:21 +00:00
|
|
|
{
|
2018-07-18 22:50:05 +00:00
|
|
|
(void)now;
|
2018-07-18 03:10:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-07-17 06:17:13 +00:00
|
|
|
/// override me in subtype
|
2018-07-11 16:11:19 +00:00
|
|
|
virtual bool
|
|
|
|
HandleGotIntroMessage(const llarp::dht::GotIntroMessage* msg)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-10 21:34:11 +00:00
|
|
|
/// override me in subtype
|
|
|
|
virtual bool
|
|
|
|
HandleGotRouterMessage(const llarp::dht::GotRouterMessage* msg)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual routing::IMessageHandler*
|
|
|
|
GetDHTHandler()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
Path*
|
2018-08-01 22:10:38 +00:00
|
|
|
GetEstablishedPathClosestTo(const RouterID& router) const;
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-07-22 23:14:29 +00:00
|
|
|
Path*
|
2018-08-01 22:10:38 +00:00
|
|
|
PickRandomEstablishedPath() const;
|
|
|
|
|
|
|
|
Path*
|
|
|
|
GetPathByRouter(const RouterID& router) const;
|
2018-07-22 23:14:29 +00:00
|
|
|
|
2018-08-10 21:34:11 +00:00
|
|
|
Path*
|
|
|
|
GetPathByID(const PathID_t& id) const;
|
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
bool
|
|
|
|
GetCurrentIntroductions(
|
2018-07-19 04:58:39 +00:00
|
|
|
std::set< llarp::service::Introduction >& intros) const;
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
virtual bool
|
|
|
|
PublishIntroSet(llarp_router* r)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2018-07-17 06:17:13 +00:00
|
|
|
|
2018-07-19 21:08:11 +00:00
|
|
|
virtual bool
|
2018-08-30 18:48:43 +00:00
|
|
|
SelectHop(llarp_nodedb* db, const RouterContact& prev, RouterContact& cur,
|
2018-07-19 21:08:11 +00:00
|
|
|
size_t hop) = 0;
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
private:
|
2018-06-26 14:52:19 +00:00
|
|
|
typedef std::pair< RouterID, PathID_t > PathInfo_t;
|
|
|
|
typedef std::map< PathInfo_t, Path* > PathMap_t;
|
2018-06-25 15:12:08 +00:00
|
|
|
size_t m_NumPaths;
|
2018-06-26 14:52:19 +00:00
|
|
|
PathMap_t m_Paths;
|
2018-06-25 15:12:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace path
|
|
|
|
} // namespace llarp
|
|
|
|
|
2018-08-18 14:01:21 +00:00
|
|
|
#endif
|