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

100 lines
2.3 KiB
C++
Raw Normal View History

2020-01-25 17:29:01 +01:00
#include <router_version.hpp>
#include <constants/version.hpp>
#include <constants/proto.hpp>
#include <algorithm>
#include <cassert>
namespace llarp
{
2020-01-25 18:21:28 +01:00
RouterVersion::RouterVersion(const Version_t& router, uint64_t proto)
: m_Version(router), m_ProtoVersion(proto)
2020-01-25 17:29:01 +01:00
{
2020-01-25 18:21:28 +01:00
}
bool
RouterVersion::IsCompatableWith(const RouterVersion& other) const
{
return m_ProtoVersion == other.m_ProtoVersion;
2020-01-25 17:29:01 +01:00
}
bool
RouterVersion::BEncode(llarp_buffer_t* buf) const
{
if(not bencode_start_list(buf))
return false;
if(not IsEmpty())
{
2020-01-25 18:21:28 +01:00
if(not bencode_write_uint64(buf, m_ProtoVersion))
return false;
for(const auto& i : m_Version)
{
if(not bencode_write_uint64(buf, i))
2020-01-25 17:29:01 +01:00
return false;
2020-01-25 18:21:28 +01:00
}
2020-01-25 17:29:01 +01:00
}
return bencode_end(buf);
}
void
RouterVersion::Clear()
{
2020-01-25 18:21:28 +01:00
m_Version.fill(0);
m_ProtoVersion = INVALID_VERSION;
2020-01-25 17:29:01 +01:00
assert(IsEmpty());
}
bool
RouterVersion::IsEmpty() const
{
2020-01-25 18:38:12 +01:00
return *this == emptyRouterVersion;
2020-01-25 17:29:01 +01:00
}
bool
RouterVersion::BDecode(llarp_buffer_t* buf)
{
// clear before hand
2020-01-25 18:21:28 +01:00
Clear();
2020-01-25 17:29:01 +01:00
size_t idx = 0;
if(not bencode_read_list(
[self = this, &idx](llarp_buffer_t* buffer, bool has) {
if(has)
{
2020-01-25 18:38:12 +01:00
uint64_t i;
2020-01-25 18:21:28 +01:00
if(idx == 0)
{
uint64_t val = -1;
if(not bencode_read_integer(buffer, &val))
2020-01-25 18:21:28 +01:00
return false;
self->m_ProtoVersion = val;
2020-01-25 18:21:28 +01:00
}
2020-01-25 18:38:12 +01:00
else if(bencode_read_integer(buffer, &i))
{
// prevent overflow (note that idx includes version too)
2020-01-31 22:52:59 +01:00
if(idx > self->m_Version.max_size())
return false;
2020-01-25 18:38:12 +01:00
self->m_Version[idx - 1] = i;
}
else
2020-01-25 17:29:01 +01:00
return false;
++idx;
}
return true;
},
buf))
return false;
// either full list or empty list is valid
2020-01-25 18:21:28 +01:00
return idx == 4 || idx == 0;
2020-01-25 17:29:01 +01:00
}
std::string
RouterVersion::ToString() const
{
2020-01-25 18:21:28 +01:00
return std::to_string(m_Version.at(0)) + "."
+ std::to_string(m_Version.at(1)) + "."
+ std::to_string(m_Version.at(2)) + " protocol version "
+ std::to_string(m_ProtoVersion);
2020-01-25 17:29:01 +01:00
}
} // namespace llarp