Improved datamatrix reader with new algorithm
[zxing.git] / core / src / com / google / zxing / client / result / URIResultParser.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.Result;
20
21 /**
22  * Tries to parse results that are a URI of some kind.
23  * 
24  * @author Sean Owen
25  */
26 final class URIResultParser extends ResultParser {
27
28   private URIResultParser() {
29   }
30
31   public static URIParsedResult parse(Result result) {
32     String rawText = result.getText();
33     // We specifically handle the odd "URL" scheme here for simplicity
34     if (rawText != null && rawText.startsWith("URL:")) {
35       rawText = rawText.substring(4);
36     }
37     if (!isBasicallyValidURI(rawText)) {
38       return null;
39     }
40     return new URIParsedResult(rawText, null);
41   }
42
43   /**
44    * Determines whether a string is not obviously not a URI. This implements crude checks; this class does not
45    * intend to strictly check URIs as its only function is to represent what is in a barcode, but, it does
46    * need to know when a string is obviously not a URI.
47    */
48   static boolean isBasicallyValidURI(String uri) {
49     if (uri == null || uri.indexOf(' ') >= 0 || uri.indexOf('\n') >= 0) {
50       return false;
51     }
52     // Look for period in a domain but followed by at least a two-char TLD
53     // Forget strings that don't have a valid-looking protocol
54     int period = uri.indexOf('.');
55     if (period >= uri.length() - 2) {
56       return false;
57     }
58     int colon = uri.indexOf(':');
59     if (period < 0 && colon < 0) {
60       return false;
61     }
62     if (colon >= 0) {
63       if (period < 0 || period > colon) {
64         // colon ends the protocol
65         for (int i = 0; i < colon; i++) {
66           char c = uri.charAt(i);
67           if ((c < 'a' || c > 'z') && (c < 'A' || c > 'Z')) {
68             return false;
69           }
70         }
71       } else {
72         // colon starts the port; crudely look for at least two numbers
73         if (colon >= uri.length() - 2) {
74           return false;
75         }
76         for (int i = colon + 1; i < colon + 3; i++) {
77           char c = uri.charAt(i);
78           if (c < '0' || c > '9') {
79             return false;
80           }
81         }
82       }
83     }
84     return true;
85   }
86
87 }