zxing-cpp 0.5.2

A rust wrapper for the zxing-cpp barcode library.
Documentation
// Copyright 2026 Axel Waggershauser
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include <optional>
#include <span>
#include <stdexcept>
#include <string>

namespace ZXing {

enum class RSField
{
	Aztec4,
	Aztec6,
	Aztec8,
	Aztec10,
	Aztec12,
	DataMatrix,
	MaxiCode,
	PDF417,
	QRCode
};

inline RSField GF2nAztec(int wordSize)
{
	switch (wordSize) {
	case 4: return RSField::Aztec4;
	case 6: return RSField::Aztec6;
	case 8: return RSField::Aztec8;
	case 10: return RSField::Aztec10;
	case 12: return RSField::Aztec12;
	default: throw std::invalid_argument("Unsupported word size " + std::to_string(wordSize));
	}
}

/**
 * @brief ReedSolomonDecode fixes errors in a codeword containing both data and parity symbols.
 *
 * @param codeword data and error-correction/parity symbols; corrected in place on success
 * @param numECC number of error-correction/parity symbols
 * @param erasures positions of known erasures in the codeword
 * @return optional unused error correction in the range [0, 1] if codeword errors could successfully be fixed (or there have not been
 * any), std::nullopt otherwise
 */
std::optional<double> ReedSolomonDecode(RSField field, std::span<int> codeword, int numECC, std::span<const int> erasures = {});

std::optional<double> ReedSolomonDecode(RSField field, std::span<uint8_t> codeword, int numECC,
										std::span<const int> erasures = {});

/**
 * @brief ReedSolomonEncode generates error correction symbols for the given data symbols.
 *
 * @param field The Galois field to use for encoding.
 * @param data The input data symbols.
 * @param parity The output buffer for the generated error correction symbols.
 */
void ReedSolomonEncode(RSField field, std::span<const uint8_t> data, std::span<uint8_t> parity);

/// @brief ReedSolomonEncode replaces the last numECC symbols in codeword with parity symbols
void ReedSolomonEncode(RSField field, std::span<uint8_t> codeword, int numECC);
void ReedSolomonEncode(RSField field, std::span<int> codeword, int numECC);

} // ZXing