lokinet/include/llarp.hpp

100 lines
1.6 KiB
C++
Raw Normal View History

#ifndef LLARP_HPP
#define LLARP_HPP
#include <util/types.hpp>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
struct llarp_config;
struct llarp_config_iterator;
struct llarp_ev_loop;
struct llarp_nodedb;
struct llarp_nodedb_iter;
struct llarp_threadpool;
namespace llarp
{
struct Crypto;
class Logic;
struct Router;
struct RouterContact;
struct Context
{
~Context();
2018-06-06 12:46:26 +00:00
int num_nethreads = 1;
bool singleThreaded = false;
std::unique_ptr< llarp::Crypto > crypto;
llarp::Router *router = nullptr;
2018-07-12 18:21:44 +00:00
llarp_threadpool *worker = nullptr;
2018-12-10 14:14:55 +00:00
llarp::Logic *logic = nullptr;
2018-07-12 18:21:44 +00:00
llarp_config *config = nullptr;
llarp_nodedb *nodedb = nullptr;
llarp_ev_loop *mainloop = nullptr;
2018-09-17 12:02:09 +00:00
std::string nodedb_dir;
bool
LoadConfig(const std::string &fname);
void
Close();
2018-06-19 09:45:29 +00:00
int
LoadDatabase();
int
IterateDatabase(llarp_nodedb_iter &i);
2018-06-19 09:45:29 +00:00
bool
PutDatabase(struct llarp::RouterContact &rc);
2018-06-19 09:45:29 +00:00
llarp::RouterContact *
2018-06-21 11:11:55 +00:00
GetDatabase(const byte_t *pk);
int
Setup();
int
Run();
void
HandleSignal(int sig);
private:
2019-01-18 13:24:33 +00:00
void
SetPIDFile(const std::string & fname);
bool
WritePIDFile() const;
void
RemovePIDFile() const;
bool
Configure();
void
SigINT();
bool
ReloadConfig();
static void
iter_config(llarp_config_iterator *itr, const char *section,
const char *key, const char *val);
void
progress();
std::string configfile;
2019-01-18 13:24:33 +00:00
std::string pidfile;
};
2018-07-09 03:34:29 +00:00
} // namespace llarp
#endif