2020-06-29 15:44:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <llarp.hpp>
|
2021-03-09 22:24:35 +00:00
|
|
|
#include "hive_router.hpp"
|
2020-06-29 15:44:13 +00:00
|
|
|
|
|
|
|
namespace tooling
|
|
|
|
{
|
|
|
|
/// HiveContext is a subclass of llarp::Context which allows RouterHive to
|
|
|
|
/// perform custom behavior which might be undesirable in production code.
|
|
|
|
struct HiveContext : public llarp::Context
|
|
|
|
{
|
2020-07-01 19:46:52 +00:00
|
|
|
HiveContext(RouterHive* hive);
|
|
|
|
|
2021-02-02 18:16:34 +00:00
|
|
|
std::shared_ptr<llarp::AbstractRouter>
|
2021-03-02 22:49:25 +00:00
|
|
|
makeRouter(const llarp::EventLoop_ptr& loop) override;
|
2020-07-01 19:46:52 +00:00
|
|
|
|
|
|
|
/// Get this context's router as a HiveRouter.
|
|
|
|
///
|
|
|
|
/// Returns nullptr if there is no router or throws an exception if the
|
|
|
|
/// router is somehow not an instance of HiveRouter.
|
|
|
|
HiveRouter*
|
|
|
|
getRouterAsHiveRouter();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
RouterHive* m_hive = nullptr;
|
2020-06-29 15:44:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace tooling
|