2015-04-25 02:21:39 +02:00
|
|
|
#pragma once
|
|
|
|
#ifndef MESSMER_CPPUTILS_DATA_FIXEDSIZEDATA_H_
|
|
|
|
#define MESSMER_CPPUTILS_DATA_FIXEDSIZEDATA_H_
|
|
|
|
|
|
|
|
#include <cryptopp/cryptopp/hex.h>
|
|
|
|
#include <string>
|
|
|
|
#include <cstring>
|
2015-07-22 13:38:36 +02:00
|
|
|
#include "../assert/assert.h"
|
2015-04-25 02:21:39 +02:00
|
|
|
|
|
|
|
namespace cpputils {
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-10-22 17:36:03 +02:00
|
|
|
class FixedSizeData final {
|
2015-04-25 02:21:39 +02:00
|
|
|
public:
|
|
|
|
//Non-virtual destructor because we want objects to be small
|
|
|
|
~FixedSizeData() {}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
static constexpr size_t BINARY_LENGTH = SIZE;
|
|
|
|
static constexpr size_t STRING_LENGTH = 2 * BINARY_LENGTH; // Hex encoding
|
2015-04-25 02:21:39 +02:00
|
|
|
|
2015-10-04 17:14:32 +02:00
|
|
|
//TODO Test Null()
|
|
|
|
static FixedSizeData<SIZE> Null();
|
2015-04-25 02:21:39 +02:00
|
|
|
|
|
|
|
static FixedSizeData<SIZE> FromString(const std::string &data);
|
|
|
|
std::string ToString() const;
|
|
|
|
|
|
|
|
static FixedSizeData<SIZE> FromBinary(const void *source);
|
|
|
|
void ToBinary(void *target) const;
|
|
|
|
|
|
|
|
const unsigned char *data() const;
|
2015-10-22 17:36:03 +02:00
|
|
|
unsigned char *data();
|
2015-04-25 02:21:39 +02:00
|
|
|
|
2015-10-26 12:15:11 +01:00
|
|
|
template<size_t size> FixedSizeData<size> take() const;
|
|
|
|
template<size_t size> FixedSizeData<SIZE-size> drop() const;
|
|
|
|
|
2015-04-25 02:21:39 +02:00
|
|
|
private:
|
|
|
|
FixedSizeData() {}
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t _SIZE> friend class FixedSizeData;
|
2015-04-25 02:21:39 +02:00
|
|
|
|
|
|
|
unsigned char _data[BINARY_LENGTH];
|
|
|
|
};
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE> bool operator==(const FixedSizeData<SIZE> &lhs, const FixedSizeData<SIZE> &rhs);
|
|
|
|
template<size_t SIZE> bool operator!=(const FixedSizeData<SIZE> &lhs, const FixedSizeData<SIZE> &rhs);
|
2015-04-25 02:21:39 +02:00
|
|
|
|
|
|
|
// ----- Implementation -----
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE> constexpr size_t FixedSizeData<SIZE>::BINARY_LENGTH;
|
|
|
|
template<size_t SIZE> constexpr size_t FixedSizeData<SIZE>::STRING_LENGTH;
|
2015-04-25 02:21:39 +02:00
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-10-04 17:14:32 +02:00
|
|
|
FixedSizeData<SIZE> FixedSizeData<SIZE>::Null() {
|
|
|
|
FixedSizeData<SIZE> result;
|
|
|
|
std::memset(result._data, 0, BINARY_LENGTH);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
FixedSizeData<SIZE> FixedSizeData<SIZE>::FromString(const std::string &data) {
|
2015-07-22 13:38:36 +02:00
|
|
|
ASSERT(data.size() == STRING_LENGTH, "Wrong string size for parsing FixedSizeData");
|
2015-04-25 02:21:39 +02:00
|
|
|
FixedSizeData<SIZE> result;
|
|
|
|
CryptoPP::StringSource(data, true,
|
|
|
|
new CryptoPP::HexDecoder(
|
|
|
|
new CryptoPP::ArraySink(result._data, BINARY_LENGTH)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
std::string FixedSizeData<SIZE>::ToString() const {
|
|
|
|
std::string result;
|
|
|
|
CryptoPP::ArraySource(_data, BINARY_LENGTH, true,
|
|
|
|
new CryptoPP::HexEncoder(
|
|
|
|
new CryptoPP::StringSink(result)
|
|
|
|
)
|
|
|
|
);
|
2015-07-22 13:38:36 +02:00
|
|
|
ASSERT(result.size() == STRING_LENGTH, "Created wrongly sized string");
|
2015-04-25 02:21:39 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
const unsigned char *FixedSizeData<SIZE>::data() const {
|
|
|
|
return _data;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-10-22 17:36:03 +02:00
|
|
|
unsigned char *FixedSizeData<SIZE>::data() {
|
|
|
|
return const_cast<unsigned char*>(const_cast<const FixedSizeData<SIZE>*>(this)->data());
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
void FixedSizeData<SIZE>::ToBinary(void *target) const {
|
|
|
|
std::memcpy(target, _data, BINARY_LENGTH);
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
FixedSizeData<SIZE> FixedSizeData<SIZE>::FromBinary(const void *source) {
|
|
|
|
FixedSizeData<SIZE> result;
|
|
|
|
std::memcpy(result._data, source, BINARY_LENGTH);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE> template<size_t size>
|
2015-10-26 12:15:11 +01:00
|
|
|
FixedSizeData<size> FixedSizeData<SIZE>::take() const {
|
|
|
|
static_assert(size <= SIZE, "Out of bounds");
|
|
|
|
FixedSizeData<size> result;
|
|
|
|
std::memcpy(result._data, _data, size);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE> template<size_t size>
|
2015-10-26 12:15:11 +01:00
|
|
|
FixedSizeData<SIZE-size> FixedSizeData<SIZE>::drop() const {
|
|
|
|
static_assert(size <= SIZE, "Out of bounds");
|
|
|
|
FixedSizeData<SIZE-size> result;
|
|
|
|
std::memcpy(result._data, _data+size, SIZE-size);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
bool operator==(const FixedSizeData<SIZE> &lhs, const FixedSizeData<SIZE> &rhs) {
|
|
|
|
return 0 == std::memcmp(lhs.data(), rhs.data(), FixedSizeData<SIZE>::BINARY_LENGTH);
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:08 +01:00
|
|
|
template<size_t SIZE>
|
2015-04-25 02:21:39 +02:00
|
|
|
bool operator!=(const FixedSizeData<SIZE> &lhs, const FixedSizeData<SIZE> &rhs) {
|
|
|
|
return !operator==(lhs, rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|