1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
/* SPDX-License-Identifier: MIT */
/* Copyright (c) 2022 Max Bachmann */
#pragma once
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <stdio.h>
#include <vector>
namespace rapidfuzz {
namespace detail {
template <typename T, bool IsConst>
struct BitMatrixView {
using value_type = T;
using size_type = size_t;
using pointer = typename std::conditional<IsConst, const value_type*, value_type*>::type;
using reference = typename std::conditional<IsConst, const value_type&, value_type&>::type;
BitMatrixView(pointer vector, size_type cols) noexcept : m_vector(vector), m_cols(cols)
{}
reference operator[](size_type col) noexcept
{
assert(col < m_cols);
return m_vector[col];
}
size_type size() const noexcept
{
return m_cols;
}
private:
pointer m_vector;
size_type m_cols;
};
template <typename T>
struct BitMatrix {
using value_type = T;
BitMatrix() : m_rows(0), m_cols(0), m_matrix(nullptr)
{}
BitMatrix(size_t rows, size_t cols, T val) : m_rows(rows), m_cols(cols), m_matrix(nullptr)
{
if (m_rows && m_cols) m_matrix = new T[m_rows * m_cols];
std::fill_n(m_matrix, m_rows * m_cols, val);
}
BitMatrix(const BitMatrix& other) : m_rows(other.m_rows), m_cols(other.m_cols), m_matrix(nullptr)
{
if (m_rows && m_cols) m_matrix = new T[m_rows * m_cols];
std::copy(other.m_matrix, other.m_matrix + m_rows * m_cols, m_matrix);
}
BitMatrix(BitMatrix&& other) noexcept : m_rows(0), m_cols(0), m_matrix(nullptr)
{
other.swap(*this);
}
BitMatrix& operator=(BitMatrix&& other) noexcept
{
other.swap(*this);
return *this;
}
BitMatrix& operator=(const BitMatrix& other)
{
BitMatrix temp = other;
temp.swap(*this);
return *this;
}
void swap(BitMatrix& rhs) noexcept
{
using std::swap;
swap(m_rows, rhs.m_rows);
swap(m_cols, rhs.m_cols);
swap(m_matrix, rhs.m_matrix);
}
~BitMatrix()
{
delete[] m_matrix;
}
BitMatrixView<value_type, false> operator[](size_t row) noexcept
{
assert(row < m_rows);
return {&m_matrix[row * m_cols], m_cols};
}
BitMatrixView<value_type, true> operator[](size_t row) const noexcept
{
assert(row < m_rows);
return {&m_matrix[row * m_cols], m_cols};
}
size_t rows() const noexcept
{
return m_rows;
}
size_t cols() const noexcept
{
return m_cols;
}
private:
size_t m_rows;
size_t m_cols;
T* m_matrix;
};
template <typename T>
struct ShiftedBitMatrix {
using value_type = T;
ShiftedBitMatrix()
{}
ShiftedBitMatrix(size_t rows, size_t cols, T val) : m_matrix(rows, cols, val), m_offsets(rows)
{}
ShiftedBitMatrix(const ShiftedBitMatrix& other) : m_matrix(other.m_matrix), m_offsets(other.m_offsets)
{}
ShiftedBitMatrix(ShiftedBitMatrix&& other) noexcept
{
other.swap(*this);
}
ShiftedBitMatrix& operator=(ShiftedBitMatrix&& other) noexcept
{
other.swap(*this);
return *this;
}
ShiftedBitMatrix& operator=(const ShiftedBitMatrix& other)
{
ShiftedBitMatrix temp = other;
temp.swap(*this);
return *this;
}
void swap(ShiftedBitMatrix& rhs) noexcept
{
using std::swap;
swap(m_matrix, rhs.m_matrix);
swap(m_offsets, rhs.m_offsets);
}
bool test_bit(size_t row, size_t col, bool default_ = false) const noexcept
{
ptrdiff_t offset = m_offsets[row];
if (offset < 0) {
col += static_cast<size_t>(-offset);
}
else if (col >= static_cast<size_t>(offset)) {
col -= static_cast<size_t>(offset);
}
/* bit on the left of the band */
else {
return default_;
}
size_t word_size = sizeof(value_type) * 8;
size_t col_word = col / word_size;
value_type col_mask = value_type(1) << (col % word_size);
return bool(m_matrix[row][col_word] & col_mask);
}
BitMatrixView<value_type, false> operator[](size_t row) noexcept
{
return m_matrix[row];
}
BitMatrixView<value_type, true> operator[](size_t row) const noexcept
{
return m_matrix[row];
}
void set_offset(size_t row, ptrdiff_t offset)
{
m_offsets[row] = offset;
}
private:
BitMatrix<value_type> m_matrix;
std::vector<ptrdiff_t> m_offsets;
};
} // namespace detail
} // namespace rapidfuzz
|