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

127 lines
2.2 KiB
C++
Raw Normal View History

#ifndef LLARP_HPP
#define LLARP_HPP
2019-04-14 19:12:11 +02:00
#include <util/fs.hpp>
#include <util/types.hpp>
2019-04-08 14:01:52 +02:00
#include <ev/ev.hpp>
#include <iostream>
2019-04-14 18:08:51 +02:00
#include <map>
#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;
2019-02-22 17:21:05 +01:00
struct AbstractRouter;
struct RouterContact;
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;
2019-04-07 19:55:14 +02:00
int num_nethreads = 1;
bool singleThreaded = false;
bool disableMetrics = false;
bool disableMetricLogs = false;
2019-04-14 19:12:11 +02:00
fs::path jsonMetricsPath;
2019-04-14 18:08:51 +02:00
std::string metricTankHost;
std::map< std::string, std::string > metricTags;
std::unique_ptr< Crypto > crypto;
std::unique_ptr< AbstractRouter > router;
std::unique_ptr< llarp_threadpool > worker;
std::shared_ptr< Logic > logic;
std::unique_ptr< Config > config;
std::unique_ptr< llarp_nodedb > nodedb;
2019-04-08 14:01:52 +02:00
llarp_ev_loop_ptr mainloop;
2018-09-17 14:02:09 +02:00
std::string nodedb_dir;
bool
LoadConfig(const std::string &fname);
void
Close();
2018-06-19 11:45:29 +02:00
int
LoadDatabase();
int
IterateDatabase(llarp_nodedb_iter &i);
2018-06-19 11:45:29 +02:00
bool
PutDatabase(struct llarp::RouterContact &rc);
2018-06-19 11:45:29 +02:00
llarp::RouterContact *
2018-06-21 13:11:55 +02:00
GetDatabase(const byte_t *pk);
int
Setup();
int
Run();
void
HandleSignal(int sig);
private:
void
SetPIDFile(const std::string &fname);
2019-01-18 14:24:33 +01:00
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();
2019-04-07 19:55:14 +02:00
void
setupMetrics();
std::string configfile;
2019-01-18 14:24:33 +01:00
std::string pidfile;
};
2018-07-09 05:34:29 +02:00
} // namespace llarp
#endif