dwarfs/ricepp/ricepp_cpuspecific_traits.h
2025-04-07 21:32:26 +02:00

195 lines
6.7 KiB
C++

/* 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 <https://www.gnu.org/licenses/>.
*/
#include <cassert>
#include <cstdint>
#include <iostream>
#include <ricepp/byteswap.h>
#include <ricepp/codec_config.h>
#include <ricepp/detail/compiler.h>
#include "ricepp_cpuspecific.h"
namespace ricepp::detail {
template <std::unsigned_integral ValueType>
class dynamic_pixel_traits {
public:
using value_type = ValueType;
static constexpr size_t const kBitCount =
std::numeric_limits<value_type>::digits;
static constexpr value_type const kAllOnes =
std::numeric_limits<value_type>::max();
dynamic_pixel_traits(std::endian byteorder,
unsigned unused_lsb_count) noexcept
: unused_lsb_count_{unused_lsb_count}
, byteorder_{byteorder}
#ifndef NDEBUG
, lsb_mask_{static_cast<value_type>(~(kAllOnes << unused_lsb_count))}
, msb_mask_{static_cast<value_type>(~(kAllOnes >> unused_lsb_count))}
#endif
{
assert(unused_lsb_count < kBitCount);
}
[[nodiscard]] RICEPP_FORCE_INLINE value_type
read(value_type value) const noexcept {
value_type tmp = ricepp::byteswap(value, byteorder_);
assert((tmp & lsb_mask_) == 0);
return tmp >> unused_lsb_count_;
}
[[nodiscard]] RICEPP_FORCE_INLINE value_type
write(value_type value) const noexcept {
assert((value & msb_mask_) == 0);
return ricepp::byteswap(static_cast<value_type>(value << unused_lsb_count_),
byteorder_);
}
private:
unsigned const unused_lsb_count_;
std::endian const byteorder_;
#ifndef NDEBUG
value_type const lsb_mask_;
value_type const msb_mask_;
#endif
};
template <std::unsigned_integral ValueType, std::endian ByteOrder,
unsigned UnusedLsbCount>
class static_pixel_traits {
public:
using value_type = ValueType;
static constexpr size_t const kBitCount =
std::numeric_limits<value_type>::digits;
static constexpr value_type const kAllOnes =
std::numeric_limits<value_type>::max();
static constexpr std::endian const kByteOrder = ByteOrder;
static constexpr unsigned const kUnusedLsbCount = UnusedLsbCount;
static constexpr value_type const kLsbMask =
static_cast<value_type>(~(kAllOnes << kUnusedLsbCount));
static constexpr value_type const kMsbMask =
static_cast<value_type>(~(kAllOnes >> kUnusedLsbCount));
static_assert(kUnusedLsbCount < kBitCount);
[[nodiscard]] static RICEPP_FORCE_INLINE value_type
read(value_type value) noexcept {
value_type tmp = ricepp::byteswap<kByteOrder>(value);
assert((tmp & kLsbMask) == 0);
return tmp >> kUnusedLsbCount;
}
[[nodiscard]] static RICEPP_FORCE_INLINE value_type
write(value_type value) noexcept {
assert((value & kMsbMask) == 0);
return ricepp::byteswap<kByteOrder>(
static_cast<value_type>(value << kUnusedLsbCount));
}
};
template <template <std::unsigned_integral> typename CodecInterface,
template <size_t, size_t, typename> typename CodecImpl,
size_t ComponentStreamCount, typename PixelTraits>
std::unique_ptr<CodecInterface<typename PixelTraits::value_type>>
create_codec_(size_t block_size, PixelTraits const& traits) {
if (block_size <= 512) {
return std::make_unique<CodecImpl<512, ComponentStreamCount, PixelTraits>>(
traits, block_size);
}
return nullptr;
}
template <template <std::unsigned_integral> typename CodecInterface,
template <size_t, size_t, typename> typename CodecImpl,
typename PixelTraits>
std::unique_ptr<CodecInterface<typename PixelTraits::value_type>>
create_codec_(size_t block_size, size_t component_stream_count,
PixelTraits const& traits) {
switch (component_stream_count) {
case 1:
return create_codec_<CodecInterface, CodecImpl, 1, PixelTraits>(block_size,
traits);
case 2:
return create_codec_<CodecInterface, CodecImpl, 2, PixelTraits>(block_size,
traits);
default:
break;
}
return nullptr;
}
template <template <std::unsigned_integral> typename CodecInterface,
template <size_t, size_t, typename> typename CodecImpl,
std::unsigned_integral PixelValueType, std::endian ByteOrder,
unsigned UnusedLsbCount>
std::unique_ptr<CodecInterface<PixelValueType>>
create_codec_(size_t block_size, size_t component_stream_count) {
using pixel_traits =
static_pixel_traits<PixelValueType, ByteOrder, UnusedLsbCount>;
if (auto codec = create_codec_<CodecInterface, CodecImpl, pixel_traits>(
block_size, component_stream_count, pixel_traits{})) {
return codec;
}
return nullptr;
}
template <template <std::unsigned_integral> typename CodecInterface,
template <size_t, size_t, typename> typename CodecImpl,
std::unsigned_integral PixelValueType>
std::unique_ptr<CodecInterface<PixelValueType>>
create_codec_(codec_config const& config) {
if (config.byteorder == std::endian::big) {
switch (config.unused_lsb_count) {
case 0:
return create_codec_<CodecInterface, CodecImpl, PixelValueType,
std::endian::big, 0>(config.block_size,
config.component_stream_count);
case 2:
return create_codec_<CodecInterface, CodecImpl, PixelValueType,
std::endian::big, 2>(config.block_size,
config.component_stream_count);
case 4:
return create_codec_<CodecInterface, CodecImpl, PixelValueType,
std::endian::big, 4>(config.block_size,
config.component_stream_count);
}
}
using pixel_traits = dynamic_pixel_traits<PixelValueType>;
return create_codec_<CodecInterface, CodecImpl, pixel_traits>(
config.block_size, config.component_stream_count,
pixel_traits{config.byteorder, config.unused_lsb_count});
}
} // namespace ricepp::detail