2018-07-11 13:20:14 +00:00
|
|
|
#ifndef LLARP_SERVICE_ADDRESS_HPP
|
|
|
|
#define LLARP_SERVICE_ADDRESS_HPP
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2018-12-12 00:48:54 +00:00
|
|
|
#include <dht/key.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <router_id.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/aligned.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2018-12-20 14:18:03 +00:00
|
|
|
#include <functional>
|
|
|
|
#include <numeric>
|
2018-07-11 13:20:14 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
2018-12-03 22:22:59 +00:00
|
|
|
/// Snapp/Snode Address
|
2019-01-02 01:03:53 +00:00
|
|
|
struct Address : public AlignedBuffer< 32 >
|
2018-07-12 13:43:37 +00:00
|
|
|
{
|
|
|
|
std::string
|
2018-12-03 22:22:59 +00:00
|
|
|
ToString(const char* tld = ".loki") const;
|
2018-07-11 13:20:14 +00:00
|
|
|
|
2018-08-02 00:48:43 +00:00
|
|
|
bool
|
2018-12-03 22:22:59 +00:00
|
|
|
FromString(const std::string& str, const char* tld = ".loki");
|
2018-08-02 00:48:43 +00:00
|
|
|
|
2019-01-02 01:03:53 +00:00
|
|
|
Address() : AlignedBuffer< SIZE >()
|
2018-07-12 18:21:44 +00:00
|
|
|
{
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
|
2019-01-02 01:04:08 +00:00
|
|
|
explicit Address(const Data& buf) : AlignedBuffer< SIZE >(buf)
|
2018-08-10 21:34:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-02 01:03:53 +00:00
|
|
|
Address(const Address& other) : AlignedBuffer< SIZE >(other.as_array())
|
2018-08-10 21:34:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-02 01:04:08 +00:00
|
|
|
explicit Address(const AlignedBuffer< SIZE >& other)
|
|
|
|
: AlignedBuffer< SIZE >(other)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-08-10 21:34:11 +00:00
|
|
|
bool
|
|
|
|
operator<(const Address& other) const
|
|
|
|
{
|
2019-01-02 01:03:53 +00:00
|
|
|
return as_array() < other.as_array();
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
friend std::ostream&
|
|
|
|
operator<<(std::ostream& out, const Address& self)
|
|
|
|
{
|
|
|
|
return out << self.ToString();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
operator==(const Address& other) const
|
|
|
|
{
|
2019-01-02 01:03:53 +00:00
|
|
|
return as_array() == other.as_array();
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
operator!=(const Address& other) const
|
|
|
|
{
|
2019-01-02 01:03:53 +00:00
|
|
|
return as_array() != other.as_array();
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Address&
|
2018-12-20 14:18:03 +00:00
|
|
|
operator=(const Address& other) = default;
|
2018-08-10 21:34:11 +00:00
|
|
|
|
2019-01-02 01:03:53 +00:00
|
|
|
dht::Key_t
|
2018-08-10 21:34:11 +00:00
|
|
|
ToKey() const
|
2018-07-17 04:37:50 +00:00
|
|
|
{
|
2019-01-02 01:03:53 +00:00
|
|
|
return dht::Key_t(as_array());
|
2018-07-17 04:37:50 +00:00
|
|
|
}
|
2018-08-10 21:34:11 +00:00
|
|
|
|
2019-01-02 01:03:53 +00:00
|
|
|
RouterID
|
2018-08-10 21:34:11 +00:00
|
|
|
ToRouter() const
|
|
|
|
{
|
2019-01-02 01:03:53 +00:00
|
|
|
return RouterID(as_array());
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Hash
|
|
|
|
{
|
|
|
|
size_t
|
|
|
|
operator()(const Address& buf) const
|
|
|
|
{
|
2019-01-02 01:03:53 +00:00
|
|
|
return std::accumulate(buf.begin(), buf.end(), 0,
|
2018-12-20 14:18:03 +00:00
|
|
|
std::bit_xor< size_t >());
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
};
|
2018-07-12 13:43:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|
2018-07-11 13:20:14 +00:00
|
|
|
|
2018-09-19 16:20:34 +00:00
|
|
|
#endif
|