1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/service/context.hpp

79 lines
1.8 KiB
C++
Raw Normal View History

#ifndef LLARP_SERVICE_CONTEXT_HPP
#define LLARP_SERVICE_CONTEXT_HPP
2018-12-12 03:15:08 +01:00
2018-12-12 02:12:59 +01:00
#include <handlers/tun.hpp>
#include <net/net.hpp>
2018-12-12 03:15:08 +01:00
#include <service/config.hpp>
#include <service/endpoint.hpp>
2018-12-12 02:12:59 +01:00
#include <unordered_map>
namespace llarp
{
namespace service
{
/// holds all the hidden service endpoints we own
2019-04-19 17:10:26 +02:00
struct Context
{
explicit Context(AbstractRouter *r);
~Context();
void
Tick(llarp_time_t now);
/// stop all held services
bool
StopAll();
2019-02-11 18:14:43 +01:00
util::StatusObject
2019-04-19 17:10:26 +02:00
ExtractStatus() const;
2019-02-08 20:43:25 +01:00
bool
hasEndpoints();
/// function visitor returns false to prematurely break iteration
void
2019-04-23 18:13:22 +02:00
ForEachService(
std::function< bool(const std::string &, const Endpoint_ptr &) >
visit) const;
/// add default endpoint with options
bool
2018-11-26 14:29:45 +01:00
AddDefaultEndpoint(
const std::unordered_multimap< std::string, std::string > &opts);
/// add endpoint via config
bool
2018-11-11 14:14:19 +01:00
AddEndpoint(const Config::section_t &conf, bool autostart = false);
2020-02-28 17:29:15 +01:00
/// inject endpoint instance
void
InjectEndpoint(std::string name, std::shared_ptr<Endpoint> ep);
/// 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);
2020-02-28 17:29:15 +01:00
Endpoint_ptr
GetDefault()
{
return GetEndpointByName("default");
}
2018-11-11 14:14:19 +01:00
bool
StartAll();
private:
2019-07-01 15:44:25 +02: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-17 06:37:50 +02:00
} // namespace service
} // namespace llarp
#endif