Added an ISBN parsed result type courtesy of jbreiden.
[zxing.git] / core / src / com / google / zxing / client / result / UPCResultParser.java
1 /*
2  * Copyright 2007 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.client.result;
18
19 import com.google.zxing.BarcodeFormat;
20 import com.google.zxing.Result;
21
22 /**
23  * Parses strings of digits that repesent a UPC code.
24  * 
25  * @author dswitkin@google.com (Daniel Switkin)
26  */
27 final class UPCResultParser extends ResultParser {
28
29   private UPCResultParser() {
30   }
31
32   // Treat all UPC and EAN variants as UPCs, in the sense that they are all product barcodes.
33   public static UPCParsedResult parse(Result result) {
34     BarcodeFormat format = result.getBarcodeFormat();
35     if (!BarcodeFormat.UPC_A.equals(format) && !BarcodeFormat.UPC_E.equals(format) &&
36         !BarcodeFormat.EAN_8.equals(format) && !BarcodeFormat.EAN_13.equals(format)) {
37       return null;
38     }
39     if (ISBNResultParser.parse(result) != null) {
40       return null;
41     }
42     String rawText = result.getText();
43     if (rawText == null) {
44       return null;
45     }
46     int length = rawText.length();
47     if (length != 12 && length != 13) {
48       return null;
49     }
50     for (int x = 0; x < length; x++) {
51       char c = rawText.charAt(x);
52       if (c < '0' || c > '9') {
53         return null;
54       }
55     }
56     // Not actually checking the checksum again here
57     return new UPCParsedResult(rawText);
58   }
59
60 }