Major refactoring of 1D barcode code. Moved into com.google.zxing.oned package. Misc...
[zxing.git] / core / src / com / google / zxing / oned / MultiFormatOneDReader.java
1 /*
2  * Copyright 2008 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.oned;
18
19 import com.google.zxing.ReaderException;
20 import com.google.zxing.Result;
21 import com.google.zxing.common.BitArray;
22
23 /**
24  * @author dswitkin@google.com (Daniel Switkin)
25  * @author srowen@google.com (Sean Owen)
26  */
27 public final class MultiFormatOneDReader extends AbstractOneDReader {
28
29   private final OneDReader[] readers = new OneDReader[]{
30       new MultiFormatUPCEANReader(), new Code39Reader(), new Code128Reader()
31   };
32
33   public Result decodeRow(int rowNumber, BitArray row) throws ReaderException {
34     ReaderException saved = null;
35     for (int i = 0; i < readers.length; i++) {
36       try {
37         return readers[i].decodeRow(rowNumber, row);
38       } catch (ReaderException re) {
39         saved = re;
40       }
41     }
42     throw saved;
43   }
44
45 }