-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I97309a7fd3c7059fe439fe516ba97920b53b5fcd
- Loading branch information
Showing
6 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#pragma once | ||
#include "huffman/src/bit_span.hpp" | ||
#include "huffman/src/code.hpp" | ||
#include "huffman/src/table.hpp" | ||
|
||
namespace gpu_deflate::huffman { | ||
/// Decodes a bit stream using a code table. | ||
/// | ||
/// If a code from \p bits is not found in \p code_table, the | ||
/// decoding is aborted. | ||
/// | ||
/// @param code_table The code table to use for decoding. | ||
/// @param bits The bit stream to decode. | ||
/// @param output The output iterator to write the decoded symbols to. | ||
/// | ||
/// @returns The output iterator after writing the decoded symbols. | ||
/// @tparam Symbol The type of the symbols in the code table. | ||
/// @tparam Extent The extent of the code table. | ||
/// @tparam O The type of the output iterator. | ||
template < | ||
std::regular Symbol, | ||
std::size_t Extent = std::dynamic_extent, | ||
class O> | ||
auto decode(const table<Symbol, Extent>& code_table, bit_span bits, O output) | ||
-> O | ||
{ | ||
code current_code{}; | ||
auto code_table_pos = code_table.begin(); | ||
for (auto bit : bits) { | ||
current_code << bit; | ||
auto found = code_table.find(current_code, code_table_pos); | ||
if (found) { | ||
*output = found->symbol; | ||
output++; | ||
code_table_pos = code_table.begin(); | ||
current_code = code{}; | ||
continue; | ||
} | ||
if (found.error() == code_table.end()) { | ||
break; | ||
} | ||
code_table_pos = found.error(); | ||
} | ||
return output; | ||
} | ||
} // namespace gpu_deflate::huffman |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#include "huffman/huffman.hpp" | ||
|
||
#include <boost/ut.hpp> | ||
|
||
#include <array> | ||
#include <cstddef> | ||
#include <utility> | ||
#include <vector> | ||
|
||
auto main() -> int | ||
{ | ||
using ::boost::ut::expect; | ||
using ::boost::ut::test; | ||
|
||
namespace huffman = ::gpu_deflate::huffman; | ||
|
||
test("basic") = [] { | ||
// encoded data from dahuffman readme.rst, but in hex. | ||
constexpr std::array<std::byte, 6> bytes = { | ||
std::byte{0x86}, | ||
std::byte{0x7c}, | ||
std::byte{0x25}, | ||
std::byte{0x13}, | ||
std::byte{0x69}, | ||
std::byte{0x40}}; | ||
|
||
constexpr auto code_table = // clang-format off | ||
huffman::table{ | ||
huffman::table_contents, | ||
{std::pair{00000_c, '\4'}, | ||
{00001_c, 'x'}, | ||
{0001_c, 'q'}, | ||
{001_c, 'n'}, | ||
{01_c, 'i'}, | ||
{1_c, 'e'}} | ||
}; // clang-format on | ||
|
||
constexpr std::vector<char> output_buf; | ||
const auto result = | ||
decode(bytes, code_table, std::back_inserter(output_buf)); | ||
}; | ||
} |