mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
46ad8d4058
- includes are now sorted in consistent, logical order; first step in an attempt to fix the tomfoolery (no relation to Tom) brought in by include-what-you-use - shuffled around some cmake linking to simplify dependency graph - superfluous files removed
75 lines
1.4 KiB
C++
75 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <llarp/router_id.hpp>
|
|
#include <llarp/util/aligned.hpp>
|
|
#include <llarp/util/formattable.hpp>
|
|
|
|
#include <array>
|
|
|
|
namespace llarp::dht
|
|
{
|
|
struct Key_t : public AlignedBuffer<32>
|
|
{
|
|
explicit Key_t(const byte_t* buf) : AlignedBuffer<SIZE>(buf)
|
|
{}
|
|
|
|
explicit Key_t(const std::array<byte_t, SIZE>& data) : AlignedBuffer<SIZE>(data)
|
|
{}
|
|
|
|
explicit Key_t(const AlignedBuffer<SIZE>& data) : AlignedBuffer<SIZE>(data)
|
|
{}
|
|
|
|
Key_t() : AlignedBuffer<SIZE>()
|
|
{}
|
|
|
|
/// get snode address string
|
|
std::string
|
|
SNode() const
|
|
{
|
|
const RouterID rid{as_array()};
|
|
return rid.ToString();
|
|
}
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const;
|
|
|
|
std::string
|
|
ToString() const
|
|
{
|
|
return SNode();
|
|
}
|
|
|
|
Key_t
|
|
operator^(const Key_t& other) const
|
|
{
|
|
Key_t dist;
|
|
std::transform(begin(), end(), other.begin(), dist.begin(), std::bit_xor<byte_t>());
|
|
return dist;
|
|
}
|
|
|
|
bool
|
|
operator==(const Key_t& other) const
|
|
{
|
|
return as_array() == other.as_array();
|
|
}
|
|
|
|
bool
|
|
operator!=(const Key_t& other) const
|
|
{
|
|
return as_array() != other.as_array();
|
|
}
|
|
|
|
bool
|
|
operator<(const Key_t& other) const
|
|
{
|
|
return as_array() < other.as_array();
|
|
}
|
|
|
|
bool
|
|
operator>(const Key_t& other) const
|
|
{
|
|
return as_array() > other.as_array();
|
|
}
|
|
};
|
|
} // namespace llarp::dht
|