/* vim:set ts=2 sw=2 sts=2 et: */
/**
* \author Marcus Holland-Moritz (github@mhxnet.de)
* \copyright Copyright (c) Marcus Holland-Moritz
*
* This file is part of ricepp.
*
* ricepp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ricepp 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 ricepp. If not, see .
*/
#pragma once
#include
#include
#include
#include
#include
#include
#include
namespace ricepp {
namespace detail {
template
struct output_iterator_traits : std::iterator_traits {};
template
struct output_iterator_traits> {
using value_type = typename Container::value_type;
};
template
using output_iterator_value_type =
typename output_iterator_traits::value_type;
} // namespace detail
template OutputIt>
class bitstream_writer final {
public:
using iterator_type = OutputIt;
using bits_type = uint64_t;
static constexpr size_t kBitsTypeBits{std::numeric_limits::digits};
bitstream_writer(OutputIt out)
: out_{out} {}
RICEPP_FORCE_INLINE void write_bit(bool bit) {
assert(bit_pos_ < kBitsTypeBits);
write_bits_impl(bit, 1);
}
RICEPP_FORCE_INLINE void write_bit(bool bit, size_t repeat) {
bits_type const bits = bit ? ~bits_type{} : bits_type{};
if (bit_pos_ != 0) [[likely]] {
auto remaining_bits = kBitsTypeBits - bit_pos_;
if (repeat > remaining_bits) [[unlikely]] {
write_bits_impl(bits, remaining_bits);
repeat -= remaining_bits;
}
}
while (repeat > kBitsTypeBits) [[unlikely]] {
write_packet(bits);
repeat -= kBitsTypeBits;
}
if (repeat > 0) [[likely]] {
write_bits_impl(bits, repeat);
}
}
template
RICEPP_FORCE_INLINE void write_bits(T bits, size_t num_bits) {
static constexpr size_t kArgBits{std::numeric_limits::digits};
assert(bit_pos_ < kBitsTypeBits);
assert(num_bits <= kArgBits);
if (num_bits > 0) [[likely]] {
for (;;) {
size_t const bits_to_write =
std::min(num_bits, kBitsTypeBits - bit_pos_);
write_bits_impl(bits, bits_to_write);
bits >>= bits_to_write;
if (num_bits == bits_to_write) [[likely]] {
break;
}
num_bits -= bits_to_write;
}
}
}
size_t flush() {
size_t const bits_flushed = bit_pos_;
if (bits_flushed > 0) {
write_packet(data_);
data_ = bits_type{};
bit_pos_ = 0;
}
return bits_flushed;
}
iterator_type iterator() const { return out_; }
private:
RICEPP_FORCE_INLINE void write_bits_impl(bits_type bits, size_t num_bits) {
assert(bit_pos_ + num_bits <= kBitsTypeBits);
if (num_bits < kBitsTypeBits) [[likely]] {
bits &= (static_cast(1) << num_bits) - 1;
}
data_ |= bits << bit_pos_;
bit_pos_ += num_bits;
if (bit_pos_ == kBitsTypeBits) {
write_packet(data_);
data_ = bits_type{};
bit_pos_ = 0;
}
}
RICEPP_FORCE_INLINE void write_packet(bits_type bits) {
size_t const to_copy =
bit_pos_ == 0 ? sizeof(bits_type) : (bit_pos_ + 7) / 8;
bits = byteswap(bits);
auto const bytes = reinterpret_cast(&bits);
out_ = std::copy_n(bytes, to_copy, out_);
}
bits_type data_{};
size_t bit_pos_{0};
iterator_type out_;
};
} // namespace ricepp