lokinet/include/llarp.hpp

126 lines
2.2 KiB
C++
Raw Normal View History

#ifndef LLARP_HPP
#define LLARP_HPP
2019-04-14 17:12:11 +00:00
#include <util/fs.hpp>
#include <util/types.hpp>
2019-04-08 12:01:52 +00:00
#include <ev/ev.hpp>
#include <iostream>
2019-04-14 16:08:51 +00:00
#include <map>
#include <memory>
#include <string>
#include <vector>
struct llarp_ev_loop;
struct llarp_nodedb;
struct llarp_nodedb_iter;
struct llarp_main;
namespace llarp
{
class Logic;
struct AbstractRouter;
struct Config;
struct Crypto;
struct CryptoManager;
struct MetricsConfig;
struct RouterContact;
2019-07-09 13:47:24 +00:00
namespace thread
{
class ThreadPool;
2019-07-09 13:47:24 +00:00
}
namespace metrics
{
class DefaultManagerGuard;
class PublisherScheduler;
} // namespace metrics
namespace thread
{
class Scheduler;
}
struct Context
{
Context();
~Context();
// These come first, in this order.
// This ensures we get metric collection on shutdown
std::unique_ptr< thread::Scheduler > m_scheduler;
std::unique_ptr< metrics::DefaultManagerGuard > m_metricsManager;
std::unique_ptr< metrics::PublisherScheduler > m_metricsPublisher;
std::unique_ptr< Crypto > crypto;
std::unique_ptr< CryptoManager > cryptoManager;
std::unique_ptr< AbstractRouter > router;
2019-07-09 13:47:24 +00:00
std::shared_ptr< thread::ThreadPool > worker;
std::shared_ptr< Logic > logic;
std::unique_ptr< Config > config;
std::unique_ptr< llarp_nodedb > nodedb;
2019-04-08 12:01:52 +00:00
llarp_ev_loop_ptr mainloop;
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
2019-05-29 12:28:23 +00:00
Setup(bool debug = false);
int
Run();
void
HandleSignal(int sig);
private:
void
SetPIDFile(const std::string &fname);
2019-01-18 13:24:33 +00:00
bool
WritePIDFile() const;
void
RemovePIDFile() const;
bool
Configure();
void
SigINT();
bool
ReloadConfig();
void
progress();
2019-04-07 17:55:14 +00:00
void
setupMetrics(const MetricsConfig &metricsConfig);
2019-04-07 17:55:14 +00:00
std::string configfile;
2019-01-18 13:24:33 +00:00
std::string pidfile;
};
2018-07-09 03:34:29 +00:00
} // namespace llarp
llarp::Context *
llarp_main_get_context(llarp_main *m);
#endif