You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/service/tag.hpp

62 lines
1.3 KiB
C++

#pragma once
#include <llarp/dht/key.hpp>
#include <llarp/util/aligned.hpp>
#include <llarp/util/status.hpp>
#include <sodium/crypto_generichash.h>
namespace llarp
{
namespace service
{
struct Tag : public AlignedBuffer<16>
{
Tag() : AlignedBuffer<SIZE>()
{}
Tag(const byte_t* d) : AlignedBuffer<SIZE>(d)
{}
Tag(const std::string& str) : Tag()
{
// evidently, does nothing on LP64 systems (where size_t is *already*
// unsigned long but zero-extends this on LLP64 systems
// 2Jan19: reeee someone undid the patch
std::copy(
str.begin(), str.begin() + std::min(std::string::size_type(16), str.size()), begin());
}
Tag&
operator=(const std::string& str)
{
std::copy(
str.begin(), str.begin() + std::min(std::string::size_type(16), str.size()), begin());
return *this;
}
util::StatusObject
ExtractStatus() const
{
return util::StatusObject{{"name", ToString()}};
}
std::string
ToString() const;
bool
Empty() const
{
return data()[0] == 0;
}
};
} // namespace service
} // namespace llarp
namespace std
{
template <>
struct hash<llarp::service::Tag> : hash<llarp::AlignedBuffer<llarp::service::Tag::SIZE>>
{};
} // namespace std