mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
#include <common.hpp>
|
|
#include <pybind11/stl.h>
|
|
#include <pybind11/iostream.h>
|
|
|
|
#include <llarp/tooling/router_hive.hpp>
|
|
#include <llarp/router/abstractrouter.hpp>
|
|
#include <llarp.hpp>
|
|
|
|
namespace tooling
|
|
{
|
|
void
|
|
RouterHive_Init(py::module& mod)
|
|
{
|
|
using RouterHive_ptr = std::shared_ptr<RouterHive>;
|
|
using Context_ptr = RouterHive::Context_ptr;
|
|
using ContextVisitor = std::function<void(Context_ptr)>;
|
|
|
|
py::class_<RouterHive, RouterHive_ptr>(mod, "RouterHive")
|
|
.def(py::init<>())
|
|
.def("AddRelay", &RouterHive::AddRelay)
|
|
.def("AddClient", &RouterHive::AddClient)
|
|
.def("StartRelays", &RouterHive::StartRelays)
|
|
.def("StartClients", &RouterHive::StartClients)
|
|
.def("StopAll", &RouterHive::StopRouters)
|
|
.def(
|
|
"ForEachRelay",
|
|
[](RouterHive& hive, ContextVisitor visit) {
|
|
hive.ForEachRelay([visit](Context_ptr ctx) {
|
|
py::gil_scoped_acquire acquire;
|
|
visit(std::move(ctx));
|
|
});
|
|
})
|
|
.def(
|
|
"ForEachClient",
|
|
[](RouterHive& hive, ContextVisitor visit) {
|
|
hive.ForEachClient([visit](Context_ptr ctx) {
|
|
py::gil_scoped_acquire acquire;
|
|
visit(std::move(ctx));
|
|
});
|
|
})
|
|
.def(
|
|
"ForEachRouter",
|
|
[](RouterHive& hive, ContextVisitor visit) {
|
|
hive.ForEachRouter([visit](Context_ptr ctx) {
|
|
py::gil_scoped_acquire acquire;
|
|
visit(std::move(ctx));
|
|
});
|
|
})
|
|
.def("GetNextEvent", &RouterHive::GetNextEvent)
|
|
.def("GetAllEvents", &RouterHive::GetAllEvents)
|
|
.def("RelayConnectedRelays", &RouterHive::RelayConnectedRelays)
|
|
.def("GetRelayRCs", &RouterHive::GetRelayRCs)
|
|
.def("GetRelay", &RouterHive::GetRelay);
|
|
}
|
|
} // namespace tooling
|