Add Code 93 support. Update tests to reflect new (better) number of successes.
[zxing.git] / core / src / com / google / zxing / oned / EAN8Reader.java
1 /*
2  * Copyright 2008 ZXing authors
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.BarcodeFormat;
20 import com.google.zxing.NotFoundException;
21 import com.google.zxing.common.BitArray;
22
23 /**
24  * <p>Implements decoding of the EAN-8 format.</p>
25  *
26  * @author Sean Owen
27  */
28 public final class EAN8Reader extends UPCEANReader {
29
30   private final int[] decodeMiddleCounters;
31
32   public EAN8Reader() {
33     decodeMiddleCounters = new int[4];
34   }
35
36   protected int decodeMiddle(BitArray row, int[] startRange, StringBuffer result)
37       throws NotFoundException {
38     int[] counters = decodeMiddleCounters;
39     counters[0] = 0;
40     counters[1] = 0;
41     counters[2] = 0;
42     counters[3] = 0;
43     int end = row.getSize();
44     int rowOffset = startRange[1];
45
46     for (int x = 0; x < 4 && rowOffset < end; x++) {
47       int bestMatch = decodeDigit(row, counters, rowOffset, L_PATTERNS);
48       result.append((char) ('0' + bestMatch));
49       for (int i = 0; i < counters.length; i++) {
50         rowOffset += counters[i];
51       }
52     }
53
54     int[] middleRange = findGuardPattern(row, rowOffset, true, MIDDLE_PATTERN);
55     rowOffset = middleRange[1];
56
57     for (int x = 0; x < 4 && rowOffset < end; x++) {
58       int bestMatch = decodeDigit(row, counters, rowOffset, L_PATTERNS);
59       result.append((char) ('0' + bestMatch));
60       for (int i = 0; i < counters.length; i++) {
61         rowOffset += counters[i];
62       }
63     }
64
65     return rowOffset;
66   }
67
68   BarcodeFormat getBarcodeFormat() {
69     return BarcodeFormat.EAN_8;
70   }
71
72 }