1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/net/net_int.hpp

231 lines
3.7 KiB
C++
Raw Normal View History

2018-12-03 23:22:59 +01:00
#ifndef LLARP_NET_INT_HPP
#define LLARP_NET_INT_HPP
// for addrinfo
#ifndef _WIN32
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#else
#include <winsock2.h>
#include <ws2tcpip.h>
#define inet_aton(x, y) inet_pton(AF_INET, x, y)
#endif
#include <net/net.h>
2018-12-03 23:22:59 +01:00
#include <stdlib.h> // for itoa
#include <iostream>
2019-03-27 22:20:04 +01:00
#include <util/endian.hpp>
#include <vector>
2018-12-03 23:22:59 +01:00
2019-06-11 18:44:05 +02:00
#include <absl/numeric/int128.h>
#include <absl/hash/hash.h>
2018-12-03 23:22:59 +01:00
namespace llarp
{
template < typename UInt_t >
struct huint_t
2018-12-03 23:22:59 +01:00
{
UInt_t h;
2018-12-03 23:22:59 +01:00
constexpr huint_t operator&(huint_t x) const
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{h & x.h}};
}
2018-12-03 23:22:59 +01:00
constexpr huint_t
operator|(huint_t x) const
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{h | x.h}};
}
2018-12-03 23:22:59 +01:00
constexpr huint_t
operator^(huint_t x) const
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{h ^ x.h}};
}
2018-12-03 23:22:59 +01:00
constexpr huint_t
operator~() const
2018-12-03 23:22:59 +01:00
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{~h}};
}
constexpr huint_t
operator<<(int n) const
{
UInt_t v{h};
v <<= n;
return huint_t{v};
2018-12-03 23:22:59 +01:00
}
inline huint_t
operator++()
{
++h;
return *this;
}
2019-05-02 17:19:21 +02:00
inline huint_t
operator--()
2019-02-08 20:43:25 +01:00
{
--h;
return *this;
2019-02-08 20:43:25 +01:00
}
constexpr bool
operator<(huint_t x) const
{
return h < x.h;
}
2019-06-11 18:44:05 +02:00
constexpr bool
operator!=(huint_t x) const
{
return h != x.h;
}
constexpr bool
operator==(huint_t x) const
{
return h == x.h;
}
2019-06-11 18:44:05 +02:00
using Hash = absl::Hash< huint_t< UInt_t > >;
template < typename H >
friend H
AbslHashValue(H hash, const huint_t< UInt_t >& i)
2018-12-03 23:22:59 +01:00
{
return H::combine(std::move(hash), i.h);
2019-06-11 18:44:05 +02:00
}
2018-12-03 23:22:59 +01:00
using V6Container = std::vector< uint8_t >;
void
ToV6(V6Container& c);
2018-12-03 23:22:59 +01:00
std::string
ToString() const;
2018-12-03 23:22:59 +01:00
2019-06-11 18:44:05 +02:00
bool
FromString(const std::string&);
friend std::ostream&
operator<<(std::ostream& out, const huint_t& i)
{
return out << i.ToString();
}
};
2018-12-03 23:22:59 +01:00
2019-06-11 18:44:05 +02:00
using huint32_t = huint_t< uint32_t >;
using huint16_t = huint_t< uint16_t >;
using huint128_t = huint_t< absl::uint128 >;
2018-12-03 23:22:59 +01:00
template < typename UInt_t >
struct nuint_t
{
UInt_t n;
2018-12-03 23:22:59 +01:00
constexpr nuint_t operator&(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return nuint_t{UInt_t(n & x.n)};
2018-12-03 23:22:59 +01:00
}
constexpr nuint_t
operator|(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return nuint_t{UInt_t(n | x.n)};
}
2018-12-03 23:22:59 +01:00
constexpr nuint_t
operator^(nuint_t x) const
{
return nuint_t{UInt_t(n ^ x.n)};
}
2018-12-03 23:22:59 +01:00
constexpr nuint_t
operator~() const
{
return nuint_t{UInt_t(~n)};
}
2018-12-03 23:22:59 +01:00
inline nuint_t
operator++()
{
++n;
return *this;
}
inline nuint_t
operator--()
{
--n;
return *this;
}
2018-12-03 23:22:59 +01:00
constexpr bool
operator<(nuint_t x) const
{
return n < x.n;
}
2018-12-03 23:22:59 +01:00
constexpr bool
operator==(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return n == x.n;
2018-12-03 23:22:59 +01:00
}
struct Hash
{
inline size_t
operator()(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return std::hash< UInt_t >{}(x.n);
2018-12-03 23:22:59 +01:00
}
};
using V6Container = std::vector< uint8_t >;
void
ToV6(V6Container& c);
2018-12-03 23:22:59 +01:00
std::string
ToString() const;
2018-12-03 23:22:59 +01:00
friend std::ostream&
operator<<(std::ostream& out, const nuint_t& i)
2018-12-03 23:22:59 +01:00
{
return out << i.ToString();
2018-12-03 23:22:59 +01:00
}
};
2019-06-11 18:44:05 +02:00
using nuint32_t = nuint_t< uint32_t >;
using nuint16_t = nuint_t< uint16_t >;
using nuint128_t = nuint_t< absl::uint128 >;
2018-12-03 23:22:59 +01:00
static inline nuint32_t
xhtonl(huint32_t x)
{
return nuint32_t{htonl(x.h)};
}
static inline huint32_t
xntohl(nuint32_t x)
{
return huint32_t{ntohl(x.n)};
}
static inline nuint16_t
xhtons(huint16_t x)
{
return nuint16_t{htons(x.h)};
}
static inline huint16_t
xntohs(nuint16_t x)
{
return huint16_t{ntohs(x.n)};
}
} // namespace llarp
#endif