rxing 0.8.2

A rust port of the zxing barcode library.
Documentation
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
/*
 * Copyright 2007 ZXing authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//package com.google.zxing;

use std::collections::{HashMap, HashSet};

use crate::{BarcodeFormat, PointCallback};

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

/**
 * Encapsulates a type of hint that a caller may pass to a barcode reader to help it
 * more quickly or accurately decode it. It is up to implementations to decide what,
 * if anything, to do with the information that is supplied.
 *
 * @author Sean Owen
 * @author dswitkin@google.com (Daniel Switkin)
 * @see Reader#decode(BinaryBitmap,java.util.Map)
 */
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Eq, PartialEq, Hash, Debug, Clone, Copy)]
pub enum DecodeHintType {
    /**
     * Unspecified, application-specific hint. Maps to an unspecified {@link Object}.
     */
    OTHER,

    /**
     * Image is a pure monochrome image of a barcode. Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    PURE_BARCODE,

    /**
     * Image is known to be of one of a few possible formats.
     * Maps to a {@link List} of {@link BarcodeFormat}s.
     */
    POSSIBLE_FORMATS,

    /**
     * Spend more time to try to find a barcode; optimize for accuracy, not speed.
     * Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    TRY_HARDER,

    /**
     * Specifies what character encoding to use when decoding, where applicable (type String)
     */
    CHARACTER_SET,

    /**
     * Allowed lengths of encoded data -- reject anything else. Maps to an {@code int[]}.
     */
    ALLOWED_LENGTHS,

    /**
     * Assume Code 39 codes employ a check digit. Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    ASSUME_CODE_39_CHECK_DIGIT,

    /**
     * Assume the barcode is being processed as a GS1 barcode, and modify behavior as needed.
     * For example this affects FNC1 handling for Code 128 (aka GS1-128). Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    ASSUME_GS1,

    /**
     * If true, return the start and end digits in a Codabar barcode instead of stripping them. They
     * are alpha, whereas the rest are numeric. By default, they are stripped, but this causes them
     * to not be. Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    RETURN_CODABAR_START_END,

    /**
     * The caller needs to be notified via callback when a possible {@link Point}
     * is found. Maps to a {@link PointCallback}.
     */
    NEED_RESULT_POINT_CALLBACK,

    /**
     * Allowed extension lengths for EAN or UPC barcodes. Other formats will ignore this.
     * Maps to an {@code int[]} of the allowed extension lengths, for example [2], [5], or [2, 5].
     * If it is optional to have an extension, do not set this hint. If this is set,
     * and a UPC or EAN barcode is found but an extension is not, then no result will be returned
     * at all.
     */
    ALLOWED_EAN_EXTENSIONS,

    /**
     * If true, also tries to decode as inverted image. All configured decoders are simply called a
     * second time with an inverted image. Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    ALSO_INVERTED,

    /**
     * Specifies that the codes are expected to be in conformance with the specification
     * ISO/IEC 18004 regading the interpretation of character encoding. Values encoded in BYTE mode
     * or in KANJI mode are interpreted as ISO-8859-1 characters unless an ECI specified at a prior
     * location in the input specified a different encoding. By default the encoding of BYTE encoded
     * values is determinied by the {@link #CHARACTER_SET} hint or otherwise by a heuristic that
     * examines the bytes. By default KANJI encoded values are interpreted as the bytes of Shift-JIS
     * encoded characters (note that this is the case even if an ECI specifies a different
     * encoding).
     */
    #[cfg(feature = "allow_forced_iso_ied_18004_compliance")]
    QR_ASSUME_SPEC_CONFORM_INPUT,

    /*
     * Will translate the ASCII values parsed by the Telepen reader into the Telepen Numeric form.
     */
    TELEPEN_AS_NUMERIC,
    /*
     * Data type the hint is expecting.
     * Among the possible values the {@link Void} stands out as being used for
     * hints that do not expect a value to be supplied (flag hints). Such hints
     * will possibly have their value ignored, or replaced by a
     * {@link Boolean#TRUE}. Hint suppliers should probably use
     * {@link Boolean#TRUE} as directed by the actual hint documentation.
     */
    /*
    private final Class<?> valueType;

    DecodeHintType(Class<?> valueType) {
      this.valueType = valueType;
    }

    public Class<?> getValueType() {
      return valueType;
    }*/
}

#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Clone)]
pub enum DecodeHintValue {
    /**
     * Unspecified, application-specific hint. Maps to an unspecified {@link Object}.
     */
    Other(String),

    /**
     * Image is a pure monochrome image of a barcode. Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    PureBarcode(bool),

    /**
     * Image is known to be of one of a few possible formats.
     * Maps to a {@link List} of {@link BarcodeFormat}s.
     */
    PossibleFormats(HashSet<BarcodeFormat>),

    /**
     * Spend more time to try to find a barcode; optimize for accuracy, not speed.
     * Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    TryHarder(bool),

    /**
     * Specifies what character encoding to use when decoding, where applicable (type String)
     */
    CharacterSet(String),

    /**
     * Allowed lengths of encoded data -- reject anything else. Maps to an {@code int[]}.
     */
    AllowedLengths(Vec<u32>),

    /**
     * Assume Code 39 codes employ a check digit. Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    AssumeCode39CheckDigit(bool),

    /**
     * Assume the barcode is being processed as a GS1 barcode, and modify behavior as needed.
     * For example this affects FNC1 handling for Code 128 (aka GS1-128). Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    AssumeGs1(bool),

    /**
     * If true, return the start and end digits in a Codabar barcode instead of stripping them. They
     * are alpha, whereas the rest are numeric. By default, they are stripped, but this causes them
     * to not be. Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    ReturnCodabarStartEnd(bool),

    /**
     * The caller needs to be notified via callback when a possible {@link Point}
     * is found. Maps to a {@link PointCallback}.
     */
    #[cfg_attr(feature = "serde", serde(skip_serializing, skip_deserializing))]
    NeedResultPointCallback(PointCallback),

    /**
     * Allowed extension lengths for EAN or UPC barcodes. Other formats will ignore this.
     * Maps to an {@code int[]} of the allowed extension lengths, for example [2], [5], or [2, 5].
     * If it is optional to have an extension, do not set this hint. If this is set,
     * and a UPC or EAN barcode is found but an extension is not, then no result will be returned
     * at all.
     */
    AllowedEanExtensions(Vec<u32>),

    /**
     * If true, also tries to decode as inverted image. All configured decoders are simply called a
     * second time with an inverted image. Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    AlsoInverted(bool),

    /**
     * Specifies that the codes are expected to be in conformance with the specification
     * ISO/IEC 18004 regading the interpretation of character encoding. Values encoded in BYTE mode
     * or in KANJI mode are interpreted as ISO-8859-1 characters unless an ECI specified at a prior
     * location in the input specified a different encoding. By default the encoding of BYTE encoded
     * values is determinied by the {@link #CHARACTER_SET} hint or otherwise by a heuristic that
     * examines the bytes. By default KANJI encoded values are interpreted as the bytes of Shift-JIS
     * encoded characters (note that this is the case even if an ECI specifies a different
     * encoding).
     */
    #[cfg(feature = "allow_forced_iso_ied_18004_compliance")]
    QrAssumeSpecConformInput(bool),

    /**
     * Translate the ASCII values parsed by the Telepen reader into the Telepen Numeric form; use {@link Boolean#TRUE}.
     */
    TelepenAsNumeric(bool),
}

#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Default, Clone)]
pub struct DecodeHints {
    /**
     * Unspecified, application-specific hint. Maps to an unspecified {@link Object}.
     */
    pub Other: Option<String>,

    /**
     * Image is a pure monochrome image of a barcode. Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    pub PureBarcode: Option<bool>,

    /**
     * Image is known to be of one of a few possible formats.
     * Maps to a {@link List} of {@link BarcodeFormat}s.
     */
    pub PossibleFormats: Option<HashSet<BarcodeFormat>>,

    /**
     * Spend more time to try to find a barcode; optimize for accuracy, not speed.
     * Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    pub TryHarder: Option<bool>,

    /**
     * Specifies what character encoding to use when decoding, where applicable (type String)
     */
    pub CharacterSet: Option<String>,

    /**
     * Allowed lengths of encoded data -- reject anything else. Maps to an {@code int[]}.
     */
    pub AllowedLengths: Option<Vec<u32>>,

    /**
     * Assume Code 39 codes employ a check digit. Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    pub AssumeCode39CheckDigit: Option<bool>,

    /**
     * Assume the barcode is being processed as a GS1 barcode, and modify behavior as needed.
     * For example this affects FNC1 handling for Code 128 (aka GS1-128). Doesn't matter what it maps to;
     * use {@link Boolean#TRUE}.
     */
    pub AssumeGs1: Option<bool>,

    /**
     * If true, return the start and end digits in a Codabar barcode instead of stripping them. They
     * are alpha, whereas the rest are numeric. By default, they are stripped, but this causes them
     * to not be. Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    pub ReturnCodabarStartEnd: Option<bool>,

    /**
     * The caller needs to be notified via callback when a possible {@link Point}
     * is found. Maps to a {@link PointCallback}.
     */
    #[cfg_attr(feature = "serde", serde(skip_serializing, skip_deserializing))]
    pub NeedResultPointCallback: Option<PointCallback>,

    /**
     * Allowed extension lengths for EAN or UPC barcodes. Other formats will ignore this.
     * Maps to an {@code int[]} of the allowed extension lengths, for example [2], [5], or [2, 5].
     * If it is optional to have an extension, do not set this hint. If this is set,
     * and a UPC or EAN barcode is found but an extension is not, then no result will be returned
     * at all.
     */
    pub AllowedEanExtensions: Option<Vec<u32>>,

    /**
     * If true, also tries to decode as inverted image. All configured decoders are simply called a
     * second time with an inverted image. Doesn't matter what it maps to; use {@link Boolean#TRUE}.
     */
    pub AlsoInverted: Option<bool>,

    /**
     * Specifies that the codes are expected to be in conformance with the specification
     * ISO/IEC 18004 regading the interpretation of character encoding. Values encoded in BYTE mode
     * or in KANJI mode are interpreted as ISO-8859-1 characters unless an ECI specified at a prior
     * location in the input specified a different encoding. By default the encoding of BYTE encoded
     * values is determinied by the {@link #CHARACTER_SET} hint or otherwise by a heuristic that
     * examines the bytes. By default KANJI encoded values are interpreted as the bytes of Shift-JIS
     * encoded characters (note that this is the case even if an ECI specifies a different
     * encoding).
     */
    #[cfg(feature = "allow_forced_iso_ied_18004_compliance")]
    pub QrAssumeSpecConformInput: Option<bool>,

    /**
     * Translate the ASCII values parsed by the Telepen reader into the Telepen Numeric form; use {@link Boolean#TRUE}.
     */
    pub TelepenAsNumeric: Option<bool>,
}

impl From<super::DecodingHintDictionary> for DecodeHints {
    fn from(value: super::DecodingHintDictionary) -> Self {
        let mut new_self: Self = Self::default();
        for (_, v) in value.into_iter() {
            match v {
                DecodeHintValue::Other(v) => new_self.Other = Some(v),
                DecodeHintValue::PureBarcode(v) => new_self.PureBarcode = Some(v),
                DecodeHintValue::PossibleFormats(v) => new_self.PossibleFormats = Some(v),
                DecodeHintValue::TryHarder(v) => new_self.TryHarder = Some(v),
                DecodeHintValue::CharacterSet(v) => new_self.CharacterSet = Some(v),
                DecodeHintValue::AllowedLengths(v) => new_self.AllowedLengths = Some(v),
                DecodeHintValue::AssumeCode39CheckDigit(v) => {
                    new_self.AssumeCode39CheckDigit = Some(v)
                }
                DecodeHintValue::AssumeGs1(v) => new_self.AssumeGs1 = Some(v),
                DecodeHintValue::ReturnCodabarStartEnd(v) => {
                    new_self.ReturnCodabarStartEnd = Some(v)
                }
                DecodeHintValue::NeedResultPointCallback(v) => {
                    new_self.NeedResultPointCallback = Some(v)
                }
                DecodeHintValue::AllowedEanExtensions(v) => new_self.AllowedEanExtensions = Some(v),
                DecodeHintValue::AlsoInverted(v) => new_self.AlsoInverted = Some(v),
                DecodeHintValue::TelepenAsNumeric(v) => new_self.TelepenAsNumeric = Some(v),
                #[cfg(feature = "allow_forced_iso_ied_18004_compliance")]
                DecodeHintValue::QrAssumeSpecConformInput(v) => {
                    new_self.QrAssumeSpecConformInput = Some(v)
                }
            }
        }
        new_self
    }
}

impl From<DecodeHints> for super::DecodingHintDictionary {
    fn from(value: DecodeHints) -> Self {
        let mut new_self = HashMap::default();

        if let Some(v) = value.Other {
            new_self.insert(DecodeHintType::OTHER, DecodeHintValue::Other(v));
        }

        if let Some(v) = value.PureBarcode {
            new_self.insert(
                DecodeHintType::PURE_BARCODE,
                DecodeHintValue::PureBarcode(v),
            );
        }

        if let Some(v) = value.PossibleFormats {
            new_self.insert(
                DecodeHintType::POSSIBLE_FORMATS,
                DecodeHintValue::PossibleFormats(v),
            );
        }

        if let Some(v) = value.TryHarder {
            new_self.insert(DecodeHintType::TRY_HARDER, DecodeHintValue::TryHarder(v));
        }

        if let Some(v) = value.CharacterSet {
            new_self.insert(
                DecodeHintType::CHARACTER_SET,
                DecodeHintValue::CharacterSet(v),
            );
        }

        if let Some(v) = value.AllowedLengths {
            new_self.insert(
                DecodeHintType::ALLOWED_LENGTHS,
                DecodeHintValue::AllowedLengths(v),
            );
        }

        if let Some(v) = value.AssumeCode39CheckDigit {
            new_self.insert(
                DecodeHintType::ASSUME_CODE_39_CHECK_DIGIT,
                DecodeHintValue::AssumeCode39CheckDigit(v),
            );
        }

        if let Some(v) = value.AssumeGs1 {
            new_self.insert(DecodeHintType::ASSUME_GS1, DecodeHintValue::AssumeGs1(v));
        }

        if let Some(v) = value.ReturnCodabarStartEnd {
            new_self.insert(
                DecodeHintType::RETURN_CODABAR_START_END,
                DecodeHintValue::ReturnCodabarStartEnd(v),
            );
        }

        if let Some(v) = value.NeedResultPointCallback {
            new_self.insert(
                DecodeHintType::NEED_RESULT_POINT_CALLBACK,
                DecodeHintValue::NeedResultPointCallback(v),
            );
        }

        if let Some(v) = value.AllowedEanExtensions {
            new_self.insert(
                DecodeHintType::ALLOWED_EAN_EXTENSIONS,
                DecodeHintValue::AllowedEanExtensions(v),
            );
        }

        if let Some(v) = value.AlsoInverted {
            new_self.insert(
                DecodeHintType::ALSO_INVERTED,
                DecodeHintValue::AlsoInverted(v),
            );
        }

        if let Some(v) = value.TelepenAsNumeric {
            new_self.insert(
                DecodeHintType::TELEPEN_AS_NUMERIC,
                DecodeHintValue::TelepenAsNumeric(v),
            );
        }

        #[cfg(feature = "allow_forced_iso_ied_18004_compliance")]
        if let Some(v) = value.QrAssumeSpecConformInput {
            new_self.insert(
                DecodeHintType::QR_ASSUME_SPEC_CONFORM_INPUT,
                DecodeHintValue::QrAssumeSpecConformInput(v),
            );
        }

        new_self
    }
}

impl DecodeHints {
    pub fn with(mut self, value: DecodeHintValue) -> Self {
        match value {
            DecodeHintValue::Other(v) => self.Other = Some(v),
            DecodeHintValue::PureBarcode(v) => self.PureBarcode = Some(v),
            DecodeHintValue::PossibleFormats(v) => self.PossibleFormats = Some(v),
            DecodeHintValue::TryHarder(v) => self.TryHarder = Some(v),
            DecodeHintValue::CharacterSet(v) => self.CharacterSet = Some(v),
            DecodeHintValue::AllowedLengths(v) => self.AllowedLengths = Some(v),
            DecodeHintValue::AssumeCode39CheckDigit(v) => self.AssumeCode39CheckDigit = Some(v),
            DecodeHintValue::AssumeGs1(v) => self.AssumeGs1 = Some(v),
            DecodeHintValue::ReturnCodabarStartEnd(v) => self.ReturnCodabarStartEnd = Some(v),
            DecodeHintValue::NeedResultPointCallback(v) => self.NeedResultPointCallback = Some(v),
            DecodeHintValue::AllowedEanExtensions(v) => self.AllowedEanExtensions = Some(v),
            DecodeHintValue::AlsoInverted(v) => self.AlsoInverted = Some(v),
            DecodeHintValue::TelepenAsNumeric(v) => self.TelepenAsNumeric = Some(v),
            #[cfg(feature = "allow_forced_iso_ied_18004_compliance")]
            DecodeHintValue::QrAssumeSpecConformInput(v) => self.QrAssumeSpecConformInput = Some(v),
        }
        self
    }
}