lokinet/llarp/service/context.hpp

71 lines
1.7 KiB
C++
Raw Normal View History

#pragma once
2018-12-12 02:15:08 +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
#include <unordered_map>
namespace llarp
{
namespace service
{
/// holds all the hidden service endpoints we own
/// 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
{
explicit Context(AbstractRouter* r);
~Context();
void
Tick(llarp_time_t now);
/// 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
bool
hasEndpoints();
/// function visitor returns false to prematurely break iteration
void
ForEachService(std::function<bool(const std::string&, const Endpoint_ptr&)> visit) const;
/// add endpoint via config
2020-04-22 20:04:47 +00:00
void
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
InjectEndpoint(std::string name, std::shared_ptr<Endpoint> ep);
2020-02-28 16:29:15 +00:00
/// stop and remove an endpoint by name
/// return false if we don't have the hidden service with that name
bool
RemoveEndpoint(const std::string& name);
Endpoint_ptr
GetEndpointByName(const std::string& name) const;
2020-03-07 01:20:11 +00:00
Endpoint_ptr
GetDefault() const
2020-02-28 16:29:15 +00:00
{
return GetEndpointByName("default");
}
2018-11-11 13:14:19 +00:00
bool
StartAll();
private:
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-17 04:37:50 +00:00
} // namespace service
} // namespace llarp