Preserve query in geo URI
[zxing.git] / core / src / com / google / zxing / client / result / ISBNResultParser.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.client.result;
18
19 import com.google.zxing.BarcodeFormat;
20 import com.google.zxing.Result;
21
22 /**
23  * Parses strings of digits that represent a ISBN.
24  * 
25  * @author jbreiden@google.com (Jeff Breidenbach)
26  */
27 public class ISBNResultParser extends ResultParser {
28
29   private ISBNResultParser() {
30   }
31
32   // ISBN-13 For Dummies 
33   // http://www.bisg.org/isbn-13/for.dummies.html
34   public static ISBNParsedResult parse(Result result) {
35     BarcodeFormat format = result.getBarcodeFormat();
36     if (!BarcodeFormat.EAN_13.equals(format)) {
37       return null;
38     }
39     String rawText = result.getText();
40     if (rawText == null) {
41       return null;
42     }
43     int length = rawText.length();
44     if (length != 13) {
45       return null;
46     }
47     if (!rawText.startsWith("978") && !rawText.startsWith("979")) {
48       return null;
49     }
50    
51     return new ISBNParsedResult(rawText);
52   }
53
54 }