Biiig standardization of whitespace. 2 space indents now, no tabs.
[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.common.BitArray;
21
22 /**
23  * <p>Implements decoding of the EAN-8 format.</p>
24  *
25  * @author srowen@google.com (Sean Owen)
26  */
27 public final class EAN8Reader extends AbstractUPCEANReader {
28
29   protected int decodeMiddle(BitArray row, int[] startRange, StringBuffer result) throws ReaderException {
30
31     int[] counters = new int[4];
32     int end = row.getSize();
33     int rowOffset = startRange[1];
34
35     for (int x = 0; x < 4 && rowOffset < end; x++) {
36       int bestMatch = decodeDigit(row, counters, rowOffset, L_PATTERNS);
37       result.append((char) ('0' + bestMatch));
38       for (int i = 0; i < counters.length; i++) {
39         rowOffset += counters[i];
40       }
41     }
42
43     int[] middleRange = findGuardPattern(row, rowOffset, true, MIDDLE_PATTERN);
44     rowOffset = middleRange[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     return rowOffset;
55   }
56
57 }