mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-26 12:22:34 +00:00
rename helper methods
This commit is contained in:
@@ -174,7 +174,7 @@ pub fn getDataMaskBit(maskPattern: u32, x: u32, y: u32) -> Result<bool, Exceptio
|
||||
((temp % 3) + ((y + x) & 0x1)) & 0x1
|
||||
}
|
||||
_ => {
|
||||
return Err(Exceptions::illegalArgument(format!(
|
||||
return Err(Exceptions::illegalArgumentWith(format!(
|
||||
"Invalid mask pattern: {maskPattern}"
|
||||
)))
|
||||
}
|
||||
|
||||
@@ -278,7 +278,7 @@ pub fn embedDataBits(
|
||||
}
|
||||
// All bits should be consumed.
|
||||
if bitIndex != dataBits.getSize() {
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"Not all bits consumed: {}/{}",
|
||||
bitIndex,
|
||||
dataBits.getSize()
|
||||
@@ -323,7 +323,7 @@ pub fn findMSBSet(value: u32) -> u32 {
|
||||
// operations. We don't care if coefficients are positive or negative.
|
||||
pub fn calculateBCHCode(value: u32, poly: u32) -> Result<u32, Exceptions> {
|
||||
if poly == 0 {
|
||||
return Err(Exceptions::illegalArgument("0 polynomial"));
|
||||
return Err(Exceptions::illegalArgumentWith("0 polynomial"));
|
||||
}
|
||||
let mut value = value;
|
||||
// If poly is "1 1111 0010 0101" (version info poly), msbSetInPoly is 13. We'll subtract 1
|
||||
@@ -347,7 +347,7 @@ pub fn makeTypeInfoBits(
|
||||
bits: &mut BitArray,
|
||||
) -> Result<(), Exceptions> {
|
||||
if !QRCode::isValidMaskPattern(maskPattern as i32) {
|
||||
return Err(Exceptions::writer("Invalid mask pattern"));
|
||||
return Err(Exceptions::writerWith("Invalid mask pattern"));
|
||||
}
|
||||
let typeInfo = (ecLevel.get_value() << 3) as u32 | maskPattern;
|
||||
bits.appendBits(typeInfo, 5)?;
|
||||
@@ -361,7 +361,7 @@ pub fn makeTypeInfoBits(
|
||||
|
||||
if bits.getSize() != 15 {
|
||||
// Just in case.
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"should not happen but we got: {}",
|
||||
bits.getSize()
|
||||
)));
|
||||
@@ -378,7 +378,7 @@ pub fn makeVersionInfoBits(version: &Version, bits: &mut BitArray) -> Result<(),
|
||||
|
||||
if bits.getSize() != 18 {
|
||||
// Just in case.
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"should not happen but we got: {}",
|
||||
bits.getSize()
|
||||
)));
|
||||
@@ -411,7 +411,7 @@ pub fn embedTimingPatterns(matrix: &mut ByteMatrix) {
|
||||
// Embed the lonely dark dot at left bottom corner. JISX0510:2004 (p.46)
|
||||
pub fn embedDarkDotAtLeftBottomCorner(matrix: &mut ByteMatrix) -> Result<(), Exceptions> {
|
||||
if matrix.get(8, matrix.getHeight() - 8) == 0 {
|
||||
return Err(Exceptions::writerEmpty());
|
||||
return Err(Exceptions::writer);
|
||||
}
|
||||
matrix.set(8, matrix.getHeight() - 8, 1);
|
||||
Ok(())
|
||||
@@ -424,7 +424,7 @@ pub fn embedHorizontalSeparationPattern(
|
||||
) -> Result<(), Exceptions> {
|
||||
for x in 0..8 {
|
||||
if !isEmpty(matrix.get(xStart + x, yStart)) {
|
||||
return Err(Exceptions::writerEmpty());
|
||||
return Err(Exceptions::writer);
|
||||
}
|
||||
matrix.set(xStart + x, yStart, 0);
|
||||
}
|
||||
@@ -438,7 +438,7 @@ pub fn embedVerticalSeparationPattern(
|
||||
) -> Result<(), Exceptions> {
|
||||
for y in 0..7 {
|
||||
if !isEmpty(matrix.get(xStart, yStart + y)) {
|
||||
return Err(Exceptions::writerEmpty());
|
||||
return Err(Exceptions::writer);
|
||||
}
|
||||
matrix.set(xStart, yStart + y, 0);
|
||||
}
|
||||
|
||||
@@ -158,7 +158,7 @@ impl MinimalEncoder {
|
||||
Self::getVersion(Self::getVersionSize(result.getVersion()))?,
|
||||
&self.ecLevel,
|
||||
) {
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"Data too big for version {version}"
|
||||
)));
|
||||
}
|
||||
@@ -186,7 +186,7 @@ impl MinimalEncoder {
|
||||
}
|
||||
}
|
||||
if smallestRXingResult < 0 {
|
||||
return Err(Exceptions::writer("Data too big for any version"));
|
||||
return Err(Exceptions::writerWith("Data too big for any version"));
|
||||
}
|
||||
Ok(results[smallestRXingResult as usize].clone())
|
||||
}
|
||||
@@ -247,7 +247,7 @@ impl MinimalEncoder {
|
||||
Some(Mode::ALPHANUMERIC) => Ok(1),
|
||||
Some(Mode::BYTE) => Ok(3),
|
||||
Some(Mode::KANJI) | None => Ok(0),
|
||||
_ => Err(Exceptions::illegalArgument(format!(
|
||||
_ => Err(Exceptions::illegalArgumentWith(format!(
|
||||
"Illegal mode {mode:?}"
|
||||
))),
|
||||
}
|
||||
@@ -259,27 +259,19 @@ impl MinimalEncoder {
|
||||
position: usize,
|
||||
edge: Option<Rc<Edge>>,
|
||||
) -> Result<(), Exceptions> {
|
||||
let vertexIndex = position
|
||||
+ edge
|
||||
.as_ref()
|
||||
.ok_or(Exceptions::formatEmpty())?
|
||||
.characterLength as usize;
|
||||
let modeEdges = &mut edges[vertexIndex][edge
|
||||
.as_ref()
|
||||
.ok_or(Exceptions::formatEmpty())?
|
||||
.charsetEncoderIndex];
|
||||
let vertexIndex =
|
||||
position + edge.as_ref().ok_or(Exceptions::format)?.characterLength as usize;
|
||||
let modeEdges =
|
||||
&mut edges[vertexIndex][edge.as_ref().ok_or(Exceptions::format)?.charsetEncoderIndex];
|
||||
let modeOrdinal =
|
||||
Self::getCompactedOrdinal(Some(edge.as_ref().ok_or(Exceptions::formatEmpty())?.mode))?
|
||||
Self::getCompactedOrdinal(Some(edge.as_ref().ok_or(Exceptions::format)?.mode))?
|
||||
as usize;
|
||||
if modeEdges[modeOrdinal].is_none()
|
||||
|| modeEdges[modeOrdinal]
|
||||
.as_ref()
|
||||
.ok_or(Exceptions::formatEmpty())?
|
||||
.ok_or(Exceptions::format)?
|
||||
.cachedTotalSize
|
||||
> edge
|
||||
.as_ref()
|
||||
.ok_or(Exceptions::formatEmpty())?
|
||||
.cachedTotalSize
|
||||
> edge.as_ref().ok_or(Exceptions::format)?.cachedTotalSize
|
||||
{
|
||||
modeEdges[modeOrdinal] = edge;
|
||||
}
|
||||
@@ -302,12 +294,12 @@ impl MinimalEncoder {
|
||||
.encoders
|
||||
.canEncode(
|
||||
&self.stringToEncode[from],
|
||||
priorityEncoderIndex.ok_or(Exceptions::formatEmpty())?,
|
||||
priorityEncoderIndex.ok_or(Exceptions::format)?,
|
||||
)
|
||||
.ok_or(Exceptions::formatEmpty())?
|
||||
.ok_or(Exceptions::format)?
|
||||
{
|
||||
start = priorityEncoderIndex.ok_or(Exceptions::formatEmpty())?;
|
||||
end = priorityEncoderIndex.ok_or(Exceptions::formatEmpty())? + 1;
|
||||
start = priorityEncoderIndex.ok_or(Exceptions::format)?;
|
||||
end = priorityEncoderIndex.ok_or(Exceptions::format)? + 1;
|
||||
}
|
||||
|
||||
for i in start..end {
|
||||
@@ -316,10 +308,10 @@ impl MinimalEncoder {
|
||||
.canEncode(
|
||||
self.stringToEncode
|
||||
.get(from)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())?,
|
||||
.ok_or(Exceptions::indexOutOfBounds)?,
|
||||
i,
|
||||
)
|
||||
.ok_or(Exceptions::formatEmpty())?
|
||||
.ok_or(Exceptions::format)?
|
||||
{
|
||||
self.addEdge(
|
||||
edges,
|
||||
@@ -335,7 +327,7 @@ impl MinimalEncoder {
|
||||
self.encoders.clone(),
|
||||
self.stringToEncode.clone(),
|
||||
)
|
||||
.ok_or(Exceptions::writerEmpty())?,
|
||||
.ok_or(Exceptions::writer)?,
|
||||
)),
|
||||
)?;
|
||||
}
|
||||
@@ -343,9 +335,7 @@ impl MinimalEncoder {
|
||||
|
||||
if self.canEncode(
|
||||
&Mode::KANJI,
|
||||
self.stringToEncode
|
||||
.get(from)
|
||||
.ok_or(Exceptions::formatEmpty())?,
|
||||
self.stringToEncode.get(from).ok_or(Exceptions::format)?,
|
||||
) {
|
||||
self.addEdge(
|
||||
edges,
|
||||
@@ -361,7 +351,7 @@ impl MinimalEncoder {
|
||||
self.encoders.clone(),
|
||||
self.stringToEncode.clone(),
|
||||
)
|
||||
.ok_or(Exceptions::writerEmpty())?,
|
||||
.ok_or(Exceptions::writer)?,
|
||||
)),
|
||||
)?;
|
||||
}
|
||||
@@ -371,7 +361,7 @@ impl MinimalEncoder {
|
||||
&Mode::ALPHANUMERIC,
|
||||
self.stringToEncode
|
||||
.get(from)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())?,
|
||||
.ok_or(Exceptions::indexOutOfBounds)?,
|
||||
) {
|
||||
self.addEdge(
|
||||
edges,
|
||||
@@ -386,7 +376,7 @@ impl MinimalEncoder {
|
||||
&Mode::ALPHANUMERIC,
|
||||
self.stringToEncode
|
||||
.get(from + 1)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())?,
|
||||
.ok_or(Exceptions::indexOutOfBounds)?,
|
||||
)
|
||||
{
|
||||
1
|
||||
@@ -398,7 +388,7 @@ impl MinimalEncoder {
|
||||
self.encoders.clone(),
|
||||
self.stringToEncode.clone(),
|
||||
)
|
||||
.ok_or(Exceptions::writerEmpty())?,
|
||||
.ok_or(Exceptions::writer)?,
|
||||
)),
|
||||
)?;
|
||||
}
|
||||
@@ -407,7 +397,7 @@ impl MinimalEncoder {
|
||||
&Mode::NUMERIC,
|
||||
self.stringToEncode
|
||||
.get(from)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())?,
|
||||
.ok_or(Exceptions::indexOutOfBounds)?,
|
||||
) {
|
||||
self.addEdge(
|
||||
edges,
|
||||
@@ -422,7 +412,7 @@ impl MinimalEncoder {
|
||||
&Mode::NUMERIC,
|
||||
self.stringToEncode
|
||||
.get(from + 1)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())?,
|
||||
.ok_or(Exceptions::indexOutOfBounds)?,
|
||||
)
|
||||
{
|
||||
1
|
||||
@@ -431,7 +421,7 @@ impl MinimalEncoder {
|
||||
&Mode::NUMERIC,
|
||||
self.stringToEncode
|
||||
.get(from + 2)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())?,
|
||||
.ok_or(Exceptions::indexOutOfBounds)?,
|
||||
)
|
||||
{
|
||||
2
|
||||
@@ -443,7 +433,7 @@ impl MinimalEncoder {
|
||||
self.encoders.clone(),
|
||||
self.stringToEncode.clone(),
|
||||
)
|
||||
.ok_or(Exceptions::writerEmpty())?,
|
||||
.ok_or(Exceptions::writer)?,
|
||||
)),
|
||||
)?;
|
||||
}
|
||||
@@ -606,16 +596,16 @@ impl MinimalEncoder {
|
||||
version,
|
||||
edges[inputLength][minJ][minK]
|
||||
.as_ref()
|
||||
.ok_or(Exceptions::writerEmpty())?
|
||||
.ok_or(Exceptions::writer)?
|
||||
.clone(),
|
||||
self.isGS1,
|
||||
&self.ecLevel,
|
||||
self.encoders.clone(),
|
||||
self.stringToEncode.clone(),
|
||||
)
|
||||
.ok_or(Exceptions::writerEmpty())?)
|
||||
.ok_or(Exceptions::writer)?)
|
||||
} else {
|
||||
Err(Exceptions::writer(format!(
|
||||
Err(Exceptions::writerWith(format!(
|
||||
r#"Internal error: failed to encode "{}"#,
|
||||
self.stringToEncode
|
||||
.iter()
|
||||
@@ -1031,7 +1021,7 @@ impl RXingResultNode {
|
||||
bits,
|
||||
self.encoders
|
||||
.getCharset(self.charsetEncoderIndex)
|
||||
.ok_or(Exceptions::writerEmpty())?,
|
||||
.ok_or(Exceptions::writer)?,
|
||||
)?;
|
||||
}
|
||||
Ok(())
|
||||
|
||||
@@ -100,9 +100,8 @@ pub fn encode_with_hints(
|
||||
let mut has_encoding_hint = hints.contains_key(&EncodeHintType::CHARACTER_SET);
|
||||
if has_encoding_hint {
|
||||
if let Some(EncodeHintValue::CharacterSet(v)) = hints.get(&EncodeHintType::CHARACTER_SET) {
|
||||
encoding = Some(
|
||||
encoding::label::encoding_from_whatwg_label(v).ok_or(Exceptions::writerEmpty())?,
|
||||
)
|
||||
encoding =
|
||||
Some(encoding::label::encoding_from_whatwg_label(v).ok_or(Exceptions::writer)?)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -180,7 +179,7 @@ pub fn encode_with_hints(
|
||||
version = Version::getVersionForNumber(versionNumber)?;
|
||||
let bitsNeeded = calculateBitsNeeded(mode, &header_bits, &data_bits, version);
|
||||
if !willFit(bitsNeeded, version, &ec_level) {
|
||||
return Err(Exceptions::writer("Data too big for requested version"));
|
||||
return Err(Exceptions::writerWith("Data too big for requested version"));
|
||||
}
|
||||
} else {
|
||||
version = recommendVersion(&ec_level, mode, &header_bits, &data_bits)?;
|
||||
@@ -388,7 +387,7 @@ fn chooseVersion(
|
||||
return Ok(version);
|
||||
}
|
||||
}
|
||||
Err(Exceptions::writer(format!(
|
||||
Err(Exceptions::writerWith(format!(
|
||||
"data too big {numInputBits}/{ecLevel:?}"
|
||||
)))
|
||||
}
|
||||
@@ -416,7 +415,7 @@ pub fn willFit(numInputBits: u32, version: VersionRef, ecLevel: &ErrorCorrection
|
||||
pub fn terminateBits(num_data_bytes: u32, bits: &mut BitArray) -> Result<(), Exceptions> {
|
||||
let capacity = num_data_bytes * 8;
|
||||
if bits.getSize() > capacity as usize {
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"data bits cannot fit in the QR Code{capacity} > "
|
||||
)));
|
||||
}
|
||||
@@ -444,7 +443,7 @@ pub fn terminateBits(num_data_bytes: u32, bits: &mut BitArray) -> Result<(), Exc
|
||||
bits.appendBits(if (i & 0x01) == 0 { 0xEC } else { 0x11 }, 8)?;
|
||||
}
|
||||
if bits.getSize() != capacity as usize {
|
||||
return Err(Exceptions::writer("Bits size does not equal capacity"));
|
||||
return Err(Exceptions::writerWith("Bits size does not equal capacity"));
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
@@ -463,7 +462,7 @@ pub fn getNumDataBytesAndNumECBytesForBlockID(
|
||||
// numECBytesInBlock: &mut [u32],
|
||||
) -> Result<(u32, u32), Exceptions> {
|
||||
if block_id >= num_rsblocks {
|
||||
return Err(Exceptions::writer("Block ID too large"));
|
||||
return Err(Exceptions::writerWith("Block ID too large"));
|
||||
}
|
||||
// numRsBlocksInGroup2 = 196 % 5 = 1
|
||||
let num_rs_blocks_in_group2 = num_total_bytes % num_rsblocks;
|
||||
@@ -484,18 +483,18 @@ pub fn getNumDataBytesAndNumECBytesForBlockID(
|
||||
// Sanity checks.
|
||||
// 26 = 26
|
||||
if num_ec_bytes_in_group1 != numEcBytesInGroup2 {
|
||||
return Err(Exceptions::writer("EC bytes mismatch"));
|
||||
return Err(Exceptions::writerWith("EC bytes mismatch"));
|
||||
}
|
||||
// 5 = 4 + 1.
|
||||
if num_rsblocks != num_rs_blocks_in_group1 + num_rs_blocks_in_group2 {
|
||||
return Err(Exceptions::writer("RS blocks mismatch"));
|
||||
return Err(Exceptions::writerWith("RS blocks mismatch"));
|
||||
}
|
||||
// 196 = (13 + 26) * 4 + (14 + 26) * 1
|
||||
if num_total_bytes
|
||||
!= ((num_data_bytes_in_group1 + num_ec_bytes_in_group1) * num_rs_blocks_in_group1)
|
||||
+ ((num_data_bytes_in_group2 + numEcBytesInGroup2) * num_rs_blocks_in_group2)
|
||||
{
|
||||
return Err(Exceptions::writer("total bytes mismatch"));
|
||||
return Err(Exceptions::writerWith("total bytes mismatch"));
|
||||
}
|
||||
|
||||
Ok(if block_id < num_rs_blocks_in_group1 {
|
||||
@@ -517,7 +516,7 @@ pub fn interleaveWithECBytes(
|
||||
) -> Result<BitArray, Exceptions> {
|
||||
// "bits" must have "getNumDataBytes" bytes of data.
|
||||
if bits.getSizeInBytes() as u32 != num_data_bytes {
|
||||
return Err(Exceptions::writer(
|
||||
return Err(Exceptions::writerWith(
|
||||
"Number of bits and data bytes does not match",
|
||||
));
|
||||
}
|
||||
@@ -552,7 +551,7 @@ pub fn interleaveWithECBytes(
|
||||
data_bytes_offset += numDataBytesInBlock as usize;
|
||||
}
|
||||
if num_data_bytes != data_bytes_offset as u32 {
|
||||
return Err(Exceptions::writer("Data bytes does not match offset"));
|
||||
return Err(Exceptions::writerWith("Data bytes does not match offset"));
|
||||
}
|
||||
|
||||
let mut result = BitArray::new();
|
||||
@@ -577,7 +576,7 @@ pub fn interleaveWithECBytes(
|
||||
}
|
||||
if num_total_bytes != result.getSizeInBytes() as u32 {
|
||||
// Should be same.
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"Interleaving error: {} and {} differ.",
|
||||
num_total_bytes,
|
||||
result.getSizeInBytes()
|
||||
@@ -627,7 +626,7 @@ pub fn appendLengthInfo(
|
||||
) -> Result<(), Exceptions> {
|
||||
let numBits = mode.getCharacterCountBits(version);
|
||||
if num_letters >= (1 << numBits) {
|
||||
return Err(Exceptions::writer(format!(
|
||||
return Err(Exceptions::writerWith(format!(
|
||||
"{} is bigger than {}",
|
||||
num_letters,
|
||||
((1 << numBits) - 1)
|
||||
@@ -650,7 +649,7 @@ pub fn appendBytes(
|
||||
Mode::ALPHANUMERIC => appendAlphanumericBytes(content, bits),
|
||||
Mode::BYTE => append8BitBytes(content, bits, encoding),
|
||||
Mode::KANJI => appendKanjiBytes(content, bits),
|
||||
_ => Err(Exceptions::writer(format!("Invalid mode: {mode:?}"))),
|
||||
_ => Err(Exceptions::writerWith(format!("Invalid mode: {mode:?}"))),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -658,22 +657,18 @@ pub fn appendNumericBytes(content: &str, bits: &mut BitArray) -> Result<(), Exce
|
||||
let length = content.len();
|
||||
let mut i = 0;
|
||||
while i < length {
|
||||
let num1 = content
|
||||
.chars()
|
||||
.nth(i)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())? as u8
|
||||
- b'0';
|
||||
let num1 = content.chars().nth(i).ok_or(Exceptions::indexOutOfBounds)? as u8 - b'0';
|
||||
if i + 2 < length {
|
||||
// Encode three numeric letters in ten bits.
|
||||
let num2 = content
|
||||
.chars()
|
||||
.nth(i + 1)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())? as u8
|
||||
.ok_or(Exceptions::indexOutOfBounds)? as u8
|
||||
- b'0';
|
||||
let num3 = content
|
||||
.chars()
|
||||
.nth(i + 2)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())? as u8
|
||||
.ok_or(Exceptions::indexOutOfBounds)? as u8
|
||||
- b'0';
|
||||
bits.appendBits(num1 as u32 * 100 + num2 as u32 * 10 + num3 as u32, 10)?;
|
||||
i += 3;
|
||||
@@ -682,7 +677,7 @@ pub fn appendNumericBytes(content: &str, bits: &mut BitArray) -> Result<(), Exce
|
||||
let num2 = content
|
||||
.chars()
|
||||
.nth(i + 1)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())? as u8
|
||||
.ok_or(Exceptions::indexOutOfBounds)? as u8
|
||||
- b'0';
|
||||
bits.appendBits(num1 as u32 * 10 + num2 as u32, 7)?;
|
||||
i += 2;
|
||||
@@ -699,24 +694,20 @@ pub fn appendAlphanumericBytes(content: &str, bits: &mut BitArray) -> Result<(),
|
||||
let length = content.len();
|
||||
let mut i = 0;
|
||||
while i < length {
|
||||
let code1 = getAlphanumericCode(
|
||||
content
|
||||
.chars()
|
||||
.nth(i)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())? as u32,
|
||||
);
|
||||
let code1 =
|
||||
getAlphanumericCode(content.chars().nth(i).ok_or(Exceptions::indexOutOfBounds)? as u32);
|
||||
if code1 == -1 {
|
||||
return Err(Exceptions::writerEmpty());
|
||||
return Err(Exceptions::writer);
|
||||
}
|
||||
if i + 1 < length {
|
||||
let code2 = getAlphanumericCode(
|
||||
content
|
||||
.chars()
|
||||
.nth(i + 1)
|
||||
.ok_or(Exceptions::indexOutOfBoundsEmpty())? as u32,
|
||||
.ok_or(Exceptions::indexOutOfBounds)? as u32,
|
||||
);
|
||||
if code2 == -1 {
|
||||
return Err(Exceptions::writerEmpty());
|
||||
return Err(Exceptions::writer);
|
||||
}
|
||||
// Encode two alphanumeric letters in 11 bits.
|
||||
bits.appendBits((code1 as i16 * 45 + code2 as i16) as u32, 11)?;
|
||||
@@ -737,7 +728,7 @@ pub fn append8BitBytes(
|
||||
) -> Result<(), Exceptions> {
|
||||
let bytes = encoding
|
||||
.encode(content, encoding::EncoderTrap::Strict)
|
||||
.map_err(|e| Exceptions::writer(format!("error {e}")))?;
|
||||
.map_err(|e| Exceptions::writerWith(format!("error {e}")))?;
|
||||
for b in bytes {
|
||||
bits.appendBits(b as u32, 8)?;
|
||||
}
|
||||
@@ -749,9 +740,9 @@ pub fn appendKanjiBytes(content: &str, bits: &mut BitArray) -> Result<(), Except
|
||||
|
||||
let bytes = sjis
|
||||
.encode(content, encoding::EncoderTrap::Strict)
|
||||
.map_err(|e| Exceptions::writer(format!("error {e}")))?;
|
||||
.map_err(|e| Exceptions::writerWith(format!("error {e}")))?;
|
||||
if bytes.len() % 2 != 0 {
|
||||
return Err(Exceptions::writer("Kanji byte size not even"));
|
||||
return Err(Exceptions::writerWith("Kanji byte size not even"));
|
||||
}
|
||||
let max_i = bytes.len() - 1; // bytes.length must be even
|
||||
let mut i = 0;
|
||||
@@ -766,7 +757,7 @@ pub fn appendKanjiBytes(content: &str, bits: &mut BitArray) -> Result<(), Except
|
||||
subtracted = code as i32 - 0xc140;
|
||||
}
|
||||
if subtracted == -1 {
|
||||
return Err(Exceptions::writer("Invalid byte sequence"));
|
||||
return Err(Exceptions::writerWith("Invalid byte sequence"));
|
||||
}
|
||||
let encoded = ((subtracted >> 8) * 0xc0) + (subtracted & 0xff);
|
||||
bits.appendBits(encoded as u32, 13)?;
|
||||
|
||||
Reference in New Issue
Block a user