Remove my old email address from files. Might as well save spammers the trouble.
[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     if (!isBasicallyValidURI(rawText)) {
34       return null;
35     }
36     // We specifically handle the odd "URL" scheme here for simplicity
37     if (rawText.startsWith("URL:")) {
38       rawText = rawText.substring(4);
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     return uri != null && uri.indexOf(' ') < 0 && uri.indexOf('\n') < 0 &&
50            (uri.indexOf(':') >= 0 || uri.indexOf('.') >= 0);
51   }
52
53 }