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
/*
 * Copyright 2008 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.
 */

use super::rss::expanded::RSSExpandedReader;
use super::rss::RSS14Reader;
use super::CodaBarReader;
use super::Code128Reader;
use super::Code39Reader;
use super::Code93Reader;
use super::ITFReader;
use super::MultiFormatUPCEANReader;
use super::OneDReader;
use crate::common::Result;
use crate::DecodeHintValue;
use crate::Exceptions;
use crate::{BarcodeFormat, Binarizer, RXingResult};

/**
 * @author dswitkin@google.com (Daniel Switkin)
 * @author Sean Owen
 */
#[derive(Default)]
pub struct MultiFormatOneDReader {
    internal_hints: DecodingHintDictionary,
    possible_formats: HashSet<BarcodeFormat>,
    use_code_39_check_digit: bool,
    rss_14_reader: RSS14Reader,
    rss_expanded_reader: RSSExpandedReader,
}
impl OneDReader for MultiFormatOneDReader {
    fn decode_row(
        &mut self,
        row_number: u32,
        row: &crate::common::BitArray,
        hints: &DecodingHintDictionary,
    ) -> Result<RXingResult> {
        let Self {
            possible_formats,
            use_code_39_check_digit,
            internal_hints,
            rss_14_reader,
            rss_expanded_reader,
        } = self;

        if !possible_formats.is_empty() {
            if possible_formats.contains(&BarcodeFormat::EAN_13)
                || possible_formats.contains(&BarcodeFormat::UPC_A)
                || possible_formats.contains(&BarcodeFormat::EAN_8)
                || possible_formats.contains(&BarcodeFormat::UPC_E)
            {
                if let Ok(res) =
                    MultiFormatUPCEANReader::new(internal_hints).decode_row(row_number, row, hints)
                {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::CODE_39) {
                if let Ok(res) = Code39Reader::with_use_check_digit(*use_code_39_check_digit)
                    .decode_row(row_number, row, hints)
                {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::CODE_93) {
                if let Ok(res) = Code93Reader::default().decode_row(row_number, row, hints) {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::CODE_128) {
                if let Ok(res) = Code128Reader.decode_row(row_number, row, hints) {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::ITF) {
                if let Ok(res) = ITFReader::default().decode_row(row_number, row, hints) {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::CODABAR) {
                if let Ok(res) = CodaBarReader::default().decode_row(row_number, row, hints) {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::RSS_14) {
                if let Ok(res) = rss_14_reader.decode_row(row_number, row, hints) {
                    return Ok(res);
                }
            }
            if possible_formats.contains(&BarcodeFormat::RSS_EXPANDED) {
                if let Ok(res) = rss_expanded_reader.decode_row(row_number, row, hints) {
                    return Ok(res);
                }
            }
        } else {
            if let Ok(res) =
                MultiFormatUPCEANReader::new(internal_hints).decode_row(row_number, row, hints)
            {
                return Ok(res);
            }
            if let Ok(res) = Code39Reader::with_use_check_digit(*use_code_39_check_digit)
                .decode_row(row_number, row, hints)
            {
                return Ok(res);
            }
            if let Ok(res) = CodaBarReader::default().decode_row(row_number, row, hints) {
                return Ok(res);
            }
            if let Ok(res) = Code93Reader::default().decode_row(row_number, row, hints) {
                return Ok(res);
            }
            if let Ok(res) = Code128Reader.decode_row(row_number, row, hints) {
                return Ok(res);
            }
            if let Ok(res) = ITFReader::default().decode_row(row_number, row, hints) {
                return Ok(res);
            }
            if let Ok(res) = rss_14_reader.decode_row(row_number, row, hints) {
                return Ok(res);
            }
            if let Ok(res) = rss_expanded_reader.decode_row(row_number, row, hints) {
                return Ok(res);
            }
        }

        Err(Exceptions::NOT_FOUND)
    }
}
impl MultiFormatOneDReader {
    pub fn new(hints: &DecodingHintDictionary) -> Self {
        let use_code_39_check_digit = matches!(
            hints.get(&DecodeHintType::ASSUME_CODE_39_CHECK_DIGIT),
            Some(DecodeHintValue::AssumeCode39CheckDigit(true))
        );
        let possible_formats = if let Some(DecodeHintValue::PossibleFormats(p)) =
            hints.get(&DecodeHintType::POSSIBLE_FORMATS)
        {
            p.clone()
        } else {
            HashSet::new()
        };

        Self {
            possible_formats,
            use_code_39_check_digit,
            rss_14_reader: RSS14Reader::default(),
            internal_hints: hints.clone(),
            rss_expanded_reader: RSSExpandedReader::default(),
        }
    }
}

use crate::DecodeHintType;
use crate::DecodingHintDictionary;
use crate::RXingResultMetadataType;
use crate::RXingResultMetadataValue;
use crate::Reader;
use std::collections::{HashMap, HashSet};

impl Reader for MultiFormatOneDReader {
    fn decode<B: Binarizer>(&mut self, image: &mut crate::BinaryBitmap<B>) -> Result<RXingResult> {
        self.decode_with_hints(image, &HashMap::new())
    }

    // Note that we don't try rotation without the try harder flag, even if rotation was supported.
    fn decode_with_hints<B: Binarizer>(
        &mut self,
        image: &mut crate::BinaryBitmap<B>,
        hints: &DecodingHintDictionary,
    ) -> Result<RXingResult> {
        let first_try = self._do_decode(image, hints);
        if first_try.is_ok() {
            return first_try;
        }

        let tryHarder = matches!(
            hints.get(&DecodeHintType::TRY_HARDER),
            Some(DecodeHintValue::TryHarder(true))
        );
        if tryHarder && image.is_rotate_supported() {
            let mut rotatedImage = image.rotate_counter_clockwise();
            let mut result = self._do_decode(&mut rotatedImage, hints)?;
            // Record that we found it rotated 90 degrees CCW / 270 degrees CW
            let metadata = result.getRXingResultMetadata();
            let mut orientation = 270;
            if metadata.contains_key(&RXingResultMetadataType::ORIENTATION) {
                // But if we found it reversed in doDecode(), add in that result here:
                orientation = (orientation
                    + if let Some(crate::RXingResultMetadataValue::Orientation(or)) =
                        metadata.get(&RXingResultMetadataType::ORIENTATION)
                    {
                        *or
                    } else {
                        0
                    })
                    % 360;
            }
            result.putMetadata(
                RXingResultMetadataType::ORIENTATION,
                RXingResultMetadataValue::Orientation(orientation),
            );
            // Update result points
            let height = rotatedImage.get_height();
            let total_points = result.getPoints().len();
            let points = result.getPointsMut();
            for point in points.iter_mut().take(total_points) {
                std::mem::swap(&mut point.x, &mut point.y);
                point.x = height as f32 - point.x - 1.0;
            }

            Ok(result)
        } else {
            Err(Exceptions::NOT_FOUND)
        }
    }

    fn reset(&mut self) {
        self.rss_14_reader.reset();
        self.rss_expanded_reader.reset();
    }
}