mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
79 lines
3.4 KiB
C++
79 lines
3.4 KiB
C++
#include "common.hpp"
|
|
#include "pybind11/stl.h"
|
|
|
|
#include "tooling/router_event.hpp"
|
|
#include "tooling/dht_event.hpp"
|
|
#include "tooling/path_event.hpp"
|
|
#include "tooling/rc_event.hpp"
|
|
|
|
#include <messages/relay_status.hpp>
|
|
#include <path/path.hpp>
|
|
|
|
namespace tooling
|
|
{
|
|
void
|
|
RouterEvent_Init(py::module& mod)
|
|
{
|
|
py::class_<RouterEvent>(mod, "RouterEvent")
|
|
.def("__repr__", &RouterEvent::ToString)
|
|
.def("__str__", &RouterEvent::ToString)
|
|
.def_readonly("routerID", &RouterEvent::routerID)
|
|
.def_readonly("triggered", &RouterEvent::triggered);
|
|
|
|
py::class_<PathAttemptEvent, RouterEvent>(mod, "PathAttemptEvent")
|
|
.def_readonly("hops", &PathAttemptEvent::hops);
|
|
|
|
py::class_<PathRequestReceivedEvent, RouterEvent>(mod, "PathRequestReceivedEvent")
|
|
.def_readonly("prevHop", &PathRequestReceivedEvent::prevHop)
|
|
.def_readonly("nextHop", &PathRequestReceivedEvent::nextHop)
|
|
.def_readonly("txid", &PathRequestReceivedEvent::txid)
|
|
.def_readonly("rxid", &PathRequestReceivedEvent::rxid)
|
|
.def_readonly("isEndpoint", &PathRequestReceivedEvent::isEndpoint);
|
|
|
|
py::class_<PathStatusReceivedEvent, RouterEvent>(mod, "PathStatusReceivedEvent")
|
|
.def_readonly("rxid", &PathStatusReceivedEvent::rxid)
|
|
.def_readonly("status", &PathStatusReceivedEvent::rxid)
|
|
.def_property_readonly("Successful", [](const PathStatusReceivedEvent* const ev) {
|
|
return ev->status == llarp::LR_StatusRecord::SUCCESS;
|
|
});
|
|
|
|
py::class_<PubIntroSentEvent, RouterEvent>(mod, "DhtPubIntroSentEvent")
|
|
.def_readonly("introsetPubkey", &PubIntroSentEvent::introsetPubkey)
|
|
.def_readonly("relay", &PubIntroSentEvent::relay)
|
|
.def_readonly("relayIndex", &PubIntroSentEvent::relayIndex);
|
|
|
|
py::class_<PubIntroReceivedEvent, RouterEvent>(mod, "DhtPubIntroReceivedEvent")
|
|
.def_readonly("from", &PubIntroReceivedEvent::from)
|
|
.def_readonly("location", &PubIntroReceivedEvent::location)
|
|
.def_readonly("relayOrder", &PubIntroReceivedEvent::relayOrder)
|
|
.def_readonly("txid", &PubIntroReceivedEvent::txid);
|
|
|
|
py::class_<GotIntroReceivedEvent, RouterEvent>(mod, "DhtGotIntroReceivedEvent")
|
|
.def_readonly("from", &GotIntroReceivedEvent::From)
|
|
.def_readonly("location", &GotIntroReceivedEvent::Introset)
|
|
.def_readonly("relayOrder", &GotIntroReceivedEvent::RelayOrder)
|
|
.def_readonly("txid", &GotIntroReceivedEvent::TxID);
|
|
|
|
py::class_<RCGossipReceivedEvent, RouterEvent>(mod, "RCGossipReceivedEvent")
|
|
.def_readonly("rc", &RCGossipReceivedEvent::rc)
|
|
.def("LongString", &RCGossipReceivedEvent::LongString);
|
|
|
|
py::class_<RCGossipSentEvent, RouterEvent>(mod, "RCGossipSentEvent")
|
|
.def_readonly("rc", &RCGossipSentEvent::rc)
|
|
.def("LongString", &RCGossipSentEvent::LongString);
|
|
|
|
py::class_<FindRouterEvent, RouterEvent>(mod, "FindRouterEvent")
|
|
.def_readonly("from", &FindRouterEvent::from)
|
|
.def_readonly("iterative", &FindRouterEvent::iterative)
|
|
.def_readonly("exploritory", &FindRouterEvent::exploritory)
|
|
.def_readonly("txid", &FindRouterEvent::txid)
|
|
.def_readonly("version", &FindRouterEvent::version);
|
|
|
|
py::class_<FindRouterReceivedEvent, FindRouterEvent, RouterEvent>(
|
|
mod, "FindRouterReceivedEvent");
|
|
|
|
py::class_<FindRouterSentEvent, FindRouterEvent, RouterEvent>(mod, "FindRouterSentEvent");
|
|
}
|
|
|
|
} // namespace tooling
|