2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
2018-12-12 02:15:08 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/handlers/tun.hpp>
|
|
|
|
#include <llarp/net/net.hpp>
|
|
|
|
#include <llarp/config/config.hpp>
|
|
|
|
#include "endpoint.hpp"
|
2018-12-12 01:12:59 +00:00
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
/// holds all the hidden service endpoints we own
|
2020-04-30 19:40:20 +00:00
|
|
|
/// TODO: this should be refactored (removed entirely...?) now that lokinet
|
|
|
|
/// only supports one endpoint per instance
|
2019-04-19 15:10:26 +00:00
|
|
|
struct Context
|
2018-07-11 16:11:19 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
explicit Context(AbstractRouter* r);
|
2018-07-11 16:11:19 +00:00
|
|
|
~Context();
|
|
|
|
|
|
|
|
void
|
2018-11-12 16:43:40 +00:00
|
|
|
Tick(llarp_time_t now);
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// stop all held services
|
|
|
|
bool
|
|
|
|
StopAll();
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject
|
2019-04-19 15:10:26 +00:00
|
|
|
ExtractStatus() const;
|
2019-02-08 19:43:25 +00:00
|
|
|
|
2018-10-03 10:44:58 +00:00
|
|
|
bool
|
|
|
|
hasEndpoints();
|
|
|
|
|
2019-01-28 15:26:35 +00:00
|
|
|
/// function visitor returns false to prematurely break iteration
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
ForEachService(std::function<bool(const std::string&, const Endpoint_ptr&)> visit) const;
|
2019-01-28 15:26:35 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// add endpoint via config
|
2020-04-22 20:04:47 +00:00
|
|
|
void
|
2020-05-01 16:13:49 +00:00
|
|
|
AddEndpoint(const Config& conf, bool autostart = false);
|
2018-11-11 13:14:19 +00:00
|
|
|
|
2020-02-28 16:29:15 +00:00
|
|
|
/// inject endpoint instance
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
InjectEndpoint(std::string name, std::shared_ptr<Endpoint> ep);
|
2020-02-28 16:29:15 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// stop and remove an endpoint by name
|
|
|
|
/// return false if we don't have the hidden service with that name
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
RemoveEndpoint(const std::string& name);
|
2018-12-24 16:09:05 +00:00
|
|
|
|
2019-10-04 18:10:58 +00:00
|
|
|
Endpoint_ptr
|
2020-09-01 21:22:22 +00:00
|
|
|
GetEndpointByName(const std::string& name) const;
|
2019-10-04 18:10:58 +00:00
|
|
|
|
2020-03-07 01:20:11 +00:00
|
|
|
Endpoint_ptr
|
2020-09-01 21:22:22 +00:00
|
|
|
GetDefault() const
|
2020-02-28 16:29:15 +00:00
|
|
|
{
|
|
|
|
return GetEndpointByName("default");
|
|
|
|
}
|
|
|
|
|
2018-11-11 13:14:19 +00:00
|
|
|
bool
|
|
|
|
StartAll();
|
2018-07-11 16:11:19 +00:00
|
|
|
|
|
|
|
private:
|
2020-04-07 18:38:56 +00:00
|
|
|
AbstractRouter* const m_Router;
|
|
|
|
std::unordered_map<std::string, std::shared_ptr<Endpoint>> m_Endpoints;
|
|
|
|
std::list<std::shared_ptr<Endpoint>> m_Stopped;
|
2018-07-11 16:11:19 +00:00
|
|
|
};
|
2018-07-17 04:37:50 +00:00
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|