mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
0708a0d897
probably does not work
126 lines
2.3 KiB
C++
126 lines
2.3 KiB
C++
#ifndef LLARP_HPP
|
|
#define LLARP_HPP
|
|
|
|
#include <future>
|
|
#include <iostream>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace vpn
|
|
{
|
|
class Platform;
|
|
}
|
|
|
|
class EventLoop;
|
|
struct Config;
|
|
struct RouterContact;
|
|
struct Config;
|
|
struct Crypto;
|
|
struct CryptoManager;
|
|
struct AbstractRouter;
|
|
class NodeDB;
|
|
|
|
namespace thread
|
|
{
|
|
class ThreadPool;
|
|
}
|
|
|
|
struct RuntimeOptions
|
|
{
|
|
bool background = false;
|
|
bool debug = false;
|
|
bool isSNode = false;
|
|
};
|
|
|
|
struct Context
|
|
{
|
|
std::shared_ptr<Crypto> crypto = nullptr;
|
|
std::shared_ptr<CryptoManager> cryptoManager = nullptr;
|
|
std::shared_ptr<AbstractRouter> router = nullptr;
|
|
std::shared_ptr<EventLoop> loop = nullptr;
|
|
std::shared_ptr<NodeDB> nodedb = nullptr;
|
|
std::string nodedb_dir;
|
|
|
|
virtual ~Context() = default;
|
|
|
|
void
|
|
Setup(const RuntimeOptions& opts);
|
|
|
|
int
|
|
Run(const RuntimeOptions& opts);
|
|
|
|
void
|
|
HandleSignal(int sig);
|
|
|
|
/// Configure given the specified config.
|
|
void
|
|
Configure(std::shared_ptr<Config> conf);
|
|
|
|
/// handle SIGHUP
|
|
void
|
|
Reload();
|
|
|
|
bool
|
|
IsUp() const;
|
|
|
|
bool
|
|
LooksAlive() const;
|
|
|
|
bool
|
|
IsStopping() const;
|
|
|
|
/// close async
|
|
void
|
|
CloseAsync();
|
|
|
|
/// wait until closed and done
|
|
void
|
|
Wait();
|
|
|
|
/// call a function in logic thread
|
|
/// return true if queued for calling
|
|
/// return false if not queued for calling
|
|
bool
|
|
CallSafe(std::function<void(void)> f);
|
|
|
|
/// Creates a router. Can be overridden to allow a different class of router
|
|
/// to be created instead. Defaults to llarp::Router.
|
|
virtual std::shared_ptr<AbstractRouter>
|
|
makeRouter(const std::shared_ptr<EventLoop>& loop);
|
|
|
|
/// create the nodedb given our current configs
|
|
virtual std::shared_ptr<NodeDB>
|
|
makeNodeDB();
|
|
|
|
/// create the vpn platform for use in creating network interfaces
|
|
virtual std::shared_ptr<llarp::vpn::Platform>
|
|
makeVPNPlatform();
|
|
|
|
#ifdef ANDROID
|
|
|
|
int androidFD = -1;
|
|
|
|
int
|
|
GetUDPSocket();
|
|
#endif
|
|
|
|
protected:
|
|
std::shared_ptr<Config> config = nullptr;
|
|
|
|
private:
|
|
void
|
|
SigINT();
|
|
|
|
void
|
|
Close();
|
|
|
|
std::unique_ptr<std::promise<void>> closeWaiter;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|