zxing-cpp 0.5.1

A rust wrapper for the zxing-cpp barcode library.
Documentation
/*
* Copyright 2016 Nu-book Inc.
* Copyright 2022 gitlost
* Copyright 2025 Axel Waggershauser
*/
// SPDX-License-Identifier: Apache-2.0

#include "TextDecoder.h"

#include "ZXAlgorithms.h"
#include "libzueci/zueci.h"

#include <cassert>
#include <stdexcept>
#include <cstdio>

namespace ZXing {

std::string BytesToUtf8(ByteView bytes, ECI eci)
{
	constexpr unsigned int replacement = 0xFFFD;
	constexpr unsigned int flags = ZUECI_FLAG_SB_STRAIGHT_THRU | ZUECI_FLAG_SJIS_STRAIGHT_THRU;
	int utf8_len;

	if (eci == ECI::Unknown)
		eci = ECI::Binary;

	int error_number = zueci_dest_len_utf8(ToInt(eci), bytes.data(), Size(bytes), replacement, flags, &utf8_len);
	if (error_number >= ZUECI_ERROR) {
#ifdef PRINT_DEBUG
		fprintf(stderr, "zueci_dest_len_utf8 error: %d\n", error_number);
#endif
		// throw FormatError("Invalid UTF-8 data");
		return {};
	}

	std::string utf8(utf8_len, 0);

	error_number = zueci_eci_to_utf8(ToInt(eci), bytes.data(), Size(bytes), replacement, flags,
									 reinterpret_cast<uint8_t*>(utf8.data()), &utf8_len);
	if (error_number >= ZUECI_ERROR) {
#ifdef PRINT_DEBUG
		fprintf(stderr, "zueci_eci_to_utf8 error: %d\n", error_number);
#endif
		// throw FormatError("Invalid UTF-8 data");
		return {};
	}

	assert(Size(utf8) == utf8_len);

	return utf8;
}

} // ZXing