Added BarcodeFormat to Result, indicating what type of barcode was detected. Added...
[zxing.git] / core / src / com / google / zxing / oned / EAN8Reader.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.BarcodeFormat;
21 import com.google.zxing.common.BitArray;
22
23 /**
24  * <p>Implements decoding of the EAN-8 format.</p>
25  *
26  * @author srowen@google.com (Sean Owen)
27  */
28 public final class EAN8Reader extends AbstractUPCEANReader {
29
30   protected int decodeMiddle(BitArray row, int[] startRange, StringBuffer result) throws ReaderException {
31
32     int[] counters = new int[4];
33     int end = row.getSize();
34     int rowOffset = startRange[1];
35
36     for (int x = 0; x < 4 && rowOffset < end; x++) {
37       int bestMatch = decodeDigit(row, counters, rowOffset, L_PATTERNS);
38       result.append((char) ('0' + bestMatch));
39       for (int i = 0; i < counters.length; i++) {
40         rowOffset += counters[i];
41       }
42     }
43
44     int[] middleRange = findGuardPattern(row, rowOffset, true, MIDDLE_PATTERN);
45     rowOffset = middleRange[1];
46
47     for (int x = 0; x < 4 && rowOffset < end; x++) {
48       int bestMatch = decodeDigit(row, counters, rowOffset, L_PATTERNS);
49       result.append((char) ('0' + bestMatch));
50       for (int i = 0; i < counters.length; i++) {
51         rowOffset += counters[i];
52       }
53     }
54
55     return rowOffset;
56   }
57
58   BarcodeFormat getBarcodeFormat() {
59     return BarcodeFormat.EAN_8;  
60   }
61
62 }