/*
* Copyright (C) 2015 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Scylla is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Scylla. If not, see .
*/
#pragma once
#include "seastarx.hh"
#include "core/sstring.hh"
#include "hashing.hh"
#include
#include
#include
#include "utils/mutable_view.hh"
using bytes = basic_sstring;
using bytes_view = std::experimental::basic_string_view;
using bytes_mutable_view = basic_mutable_view;
using bytes_opt = std::experimental::optional;
using sstring_view = std::experimental::string_view;
namespace std {
template <>
struct hash {
size_t operator()(bytes_view v) const {
return hash()({reinterpret_cast(v.begin()), v.size()});
}
};
}
bytes from_hex(sstring_view s);
sstring to_hex(bytes_view b);
sstring to_hex(const bytes& b);
sstring to_hex(const bytes_opt& b);
std::ostream& operator<<(std::ostream& os, const bytes& b);
std::ostream& operator<<(std::ostream& os, const bytes_opt& b);
namespace std {
// Must be in std:: namespace, or ADL fails
std::ostream& operator<<(std::ostream& os, const bytes_view& b);
}
template<>
struct appending_hash {
template
void operator()(Hasher& h, const bytes& v) const {
feed_hash(h, v.size());
h.update(reinterpret_cast(v.cbegin()), v.size() * sizeof(bytes::value_type));
}
};
template<>
struct appending_hash {
template
void operator()(Hasher& h, bytes_view v) const {
feed_hash(h, v.size());
h.update(reinterpret_cast(v.begin()), v.size() * sizeof(bytes_view::value_type));
}
};