lokinet/llarp/path/pathbuilder.hpp

129 lines
2.7 KiB
C++
Raw Normal View History

#pragma once
2018-08-30 18:48:43 +00:00
#include "pathset.hpp"
#include <llarp/util/status.hpp>
2019-02-08 19:43:25 +00:00
#include <atomic>
#include <set>
2018-06-18 22:03:50 +00:00
2018-08-30 18:48:43 +00:00
namespace llarp
2018-06-18 22:03:50 +00:00
{
2018-08-30 18:48:43 +00:00
namespace path
{
// milliseconds waiting between builds on a path
2020-02-24 19:40:45 +00:00
static constexpr auto MIN_PATH_BUILD_INTERVAL = 500ms;
2019-04-23 16:13:22 +00:00
struct Builder : public PathSet
2018-08-30 18:48:43 +00:00
{
private:
2020-02-24 19:40:45 +00:00
llarp_time_t m_LastWarn = 0s;
protected:
/// flag for PathSet::Stop()
std::atomic<bool> _run;
virtual bool
UrgentBuild(llarp_time_t now) const;
2019-06-20 16:22:29 +00:00
private:
void
DoPathBuildBackoff();
public:
2019-08-02 09:27:27 +00:00
AbstractRouter* m_router;
SecretKey enckey;
2018-08-30 18:48:43 +00:00
size_t numHops;
llarp_time_t lastBuild = 0s;
llarp_time_t buildIntervalLimit = MIN_PATH_BUILD_INTERVAL;
2018-08-30 18:48:43 +00:00
/// construct
Builder(AbstractRouter* p_router, size_t numDesiredPaths, size_t numHops);
2018-08-30 18:48:43 +00:00
2019-06-20 16:22:29 +00:00
virtual ~Builder() = default;
2018-08-30 18:48:43 +00:00
2019-04-19 15:10:26 +00:00
util::StatusObject
ExtractStatus() const;
2019-02-08 19:43:25 +00:00
2019-07-30 23:42:13 +00:00
bool
2018-12-24 21:10:35 +00:00
ShouldBuildMore(llarp_time_t now) const override;
2018-10-29 16:48:36 +00:00
/// should we bundle RCs in builds?
virtual bool
ShouldBundleRC() const = 0;
2019-07-30 23:42:13 +00:00
void
2019-05-07 17:46:38 +00:00
ResetInternalState() override;
2018-12-27 12:00:28 +00:00
/// return true if we hit our soft limit for building paths too fast
bool
2018-12-27 12:00:28 +00:00
BuildCooldownHit(llarp_time_t now) const;
2019-03-07 22:53:36 +00:00
/// get roles for this path builder
virtual PathRole
GetRoles() const
{
return ePathRoleAny;
}
2020-02-25 22:32:57 +00:00
BuildStats
CurrentBuildStats() const
{
return m_BuildStats;
}
2019-07-30 23:42:13 +00:00
bool
2018-12-24 21:10:35 +00:00
Stop() override;
2019-02-05 14:50:33 +00:00
bool
IsStopped() const override;
bool
ShouldRemove() const override;
2018-10-29 16:48:36 +00:00
llarp_time_t
2018-12-24 21:10:35 +00:00
Now() const override;
2018-08-30 18:48:43 +00:00
2019-07-30 23:42:13 +00:00
void
2019-04-23 16:13:22 +00:00
Tick(llarp_time_t now) override;
2018-08-30 18:48:43 +00:00
void
2019-04-23 16:13:22 +00:00
BuildOne(PathRole roles = ePathRoleAny) override;
2018-08-30 18:48:43 +00:00
bool
BuildOneAlignedTo(const RouterID endpoint) override;
std::optional<std::vector<RouterContact>>
GetHopsAlignedToForBuild(RouterID endpoint, const std::set<RouterID>& exclude = {});
void
Build(std::vector<RouterContact> hops, PathRole roles = ePathRoleAny) override;
/// pick a first hop
std::optional<RouterContact>
SelectFirstHop(const std::set<RouterID>& exclude = {}) const;
virtual std::optional<std::vector<RouterContact>>
GetHopsForBuild() override;
2018-08-30 18:48:43 +00:00
void
2018-11-14 18:02:27 +00:00
ManualRebuild(size_t N, PathRole roles = ePathRoleAny);
2018-08-30 18:48:43 +00:00
virtual const SecretKey&
2018-08-30 18:48:43 +00:00
GetTunnelEncryptionSecretKey() const;
2019-09-20 16:56:19 +00:00
virtual void
HandlePathBuilt(Path_ptr p) override;
2019-09-20 16:56:19 +00:00
virtual void
HandlePathBuildTimeout(Path_ptr p) override;
2019-09-20 16:56:19 +00:00
virtual void
HandlePathBuildFailed(Path_ptr p) override;
2018-08-30 18:48:43 +00:00
};
using Builder_ptr = std::shared_ptr<Builder>;
2018-08-30 18:48:43 +00:00
} // namespace path
} // namespace llarp