mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +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.
133 lines
3.1 KiB
C++
133 lines
3.1 KiB
C++
#include "router_event.hpp"
|
|
|
|
#include <llarp/path/path_types.hpp>
|
|
#include <llarp/path/path.hpp>
|
|
#include <llarp/path/transit_hop.hpp>
|
|
|
|
namespace tooling
|
|
{
|
|
struct PathAttemptEvent : public RouterEvent
|
|
{
|
|
std::vector<llarp::path::PathHopConfig> hops;
|
|
llarp::PathID_t pathid;
|
|
|
|
PathAttemptEvent(const llarp::RouterID& routerID, std::shared_ptr<const llarp::path::Path> path)
|
|
: RouterEvent("PathAttemptEvent", routerID, false)
|
|
, hops(path->hops)
|
|
, pathid(path->hops[0].rxID)
|
|
{}
|
|
|
|
std::string
|
|
ToString() const
|
|
{
|
|
std::string result = RouterEvent::ToString();
|
|
result += "---- [";
|
|
|
|
size_t i = 0;
|
|
for (const auto& hop : hops)
|
|
{
|
|
i++;
|
|
|
|
result += llarp::RouterID(hop.rc.pubkey).ShortString();
|
|
result += "]";
|
|
|
|
if (i != hops.size())
|
|
{
|
|
result += " -> [";
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
};
|
|
|
|
struct PathRequestReceivedEvent : public RouterEvent
|
|
{
|
|
llarp::RouterID prevHop;
|
|
llarp::RouterID nextHop;
|
|
llarp::PathID_t txid;
|
|
llarp::PathID_t rxid;
|
|
bool isEndpoint = false;
|
|
|
|
PathRequestReceivedEvent(
|
|
const llarp::RouterID& routerID, std::shared_ptr<const llarp::path::TransitHop> hop)
|
|
: RouterEvent("PathRequestReceivedEvent", routerID, true)
|
|
, prevHop(hop->info.downstream)
|
|
, nextHop(hop->info.upstream)
|
|
, txid(hop->info.txID)
|
|
, rxid(hop->info.rxID)
|
|
, isEndpoint(routerID == nextHop ? true : false)
|
|
{}
|
|
|
|
std::string
|
|
ToString() const
|
|
{
|
|
std::string result = RouterEvent::ToString();
|
|
result += "---- [";
|
|
result += prevHop.ShortString();
|
|
result += "] -> [*";
|
|
result += routerID.ShortString();
|
|
result += "] -> [";
|
|
|
|
if (isEndpoint)
|
|
{
|
|
result += "nowhere]";
|
|
}
|
|
else
|
|
{
|
|
result += nextHop.ShortString();
|
|
result += "]";
|
|
}
|
|
|
|
return result;
|
|
}
|
|
};
|
|
|
|
struct PathStatusReceivedEvent : public RouterEvent
|
|
{
|
|
llarp::PathID_t rxid;
|
|
uint64_t status;
|
|
|
|
PathStatusReceivedEvent(
|
|
const llarp::RouterID& routerID, const llarp::PathID_t rxid_, uint64_t status_)
|
|
: RouterEvent("PathStatusReceivedEvent", routerID, true), rxid(rxid_), status(status_)
|
|
{}
|
|
|
|
std::string
|
|
ToString() const
|
|
{
|
|
std::string result = RouterEvent::ToString();
|
|
result += "---- path rxid: " + rxid.ShortHex();
|
|
result += ", status: " + std::to_string(status);
|
|
|
|
return result;
|
|
}
|
|
};
|
|
|
|
struct PathBuildRejectedEvent : public RouterEvent
|
|
{
|
|
llarp::PathID_t rxid;
|
|
llarp::RouterID rejectedBy;
|
|
|
|
PathBuildRejectedEvent(
|
|
const llarp::RouterID& routerID,
|
|
const llarp::PathID_t rxid_,
|
|
const llarp::RouterID& rejectedBy_)
|
|
: RouterEvent("PathBuildRejectedEvent", routerID, false)
|
|
, rxid(rxid_)
|
|
, rejectedBy(rejectedBy_)
|
|
{}
|
|
|
|
std::string
|
|
ToString() const
|
|
{
|
|
std::string result = RouterEvent::ToString();
|
|
result += "---- path rxid: " + rxid.ShortHex();
|
|
result += ", rejectedBy: " + rejectedBy.ShortString();
|
|
|
|
return result;
|
|
}
|
|
};
|
|
|
|
} // namespace tooling
|