mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
97 lines
1.5 KiB
C++
97 lines
1.5 KiB
C++
#ifndef LLARP_HPP
|
|
#define LLARP_HPP
|
|
|
|
#include <util/types.hpp>
|
|
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct llarp_ev_loop;
|
|
struct llarp_nodedb;
|
|
struct llarp_nodedb_iter;
|
|
struct llarp_threadpool;
|
|
|
|
namespace llarp
|
|
{
|
|
struct Config;
|
|
struct Crypto;
|
|
class Logic;
|
|
struct AbstractRouter;
|
|
struct RouterContact;
|
|
|
|
struct Context
|
|
{
|
|
~Context();
|
|
|
|
int num_nethreads = 1;
|
|
bool singleThreaded = false;
|
|
std::unique_ptr< llarp::Crypto > crypto;
|
|
std::unique_ptr< llarp::AbstractRouter > router;
|
|
std::unique_ptr< llarp_threadpool > worker;
|
|
std::unique_ptr< llarp::Logic > logic;
|
|
std::unique_ptr< llarp::Config > config;
|
|
std::unique_ptr< llarp_nodedb > nodedb;
|
|
std::unique_ptr< llarp_ev_loop > mainloop;
|
|
std::string nodedb_dir;
|
|
|
|
bool
|
|
LoadConfig(const std::string &fname);
|
|
|
|
void
|
|
Close();
|
|
|
|
int
|
|
LoadDatabase();
|
|
|
|
int
|
|
IterateDatabase(llarp_nodedb_iter &i);
|
|
|
|
bool
|
|
PutDatabase(struct llarp::RouterContact &rc);
|
|
|
|
llarp::RouterContact *
|
|
GetDatabase(const byte_t *pk);
|
|
|
|
int
|
|
Setup();
|
|
|
|
int
|
|
Run();
|
|
|
|
void
|
|
HandleSignal(int sig);
|
|
|
|
private:
|
|
void
|
|
SetPIDFile(const std::string &fname);
|
|
|
|
bool
|
|
WritePIDFile() const;
|
|
|
|
void
|
|
RemovePIDFile() const;
|
|
|
|
bool
|
|
Configure();
|
|
|
|
void
|
|
SigINT();
|
|
|
|
bool
|
|
ReloadConfig();
|
|
|
|
void
|
|
iter_config(const char *section, const char *key, const char *val);
|
|
|
|
void
|
|
progress();
|
|
|
|
std::string configfile;
|
|
std::string pidfile;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|