Changed signature of parse() to take in more general Result
[zxing.git] / core / src / com / google / zxing / client / result / URLTOResult.java
1 /*
2  * Copyright 2007 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.client.result;
18
19 import com.google.zxing.Result;
20
21 /**
22  * "URLTO" result format, which is of the form "URLTO:[title]:[url]".
23  * This seems to be used sometimes, but I am not able to find documentation
24  * on its origin or official format?
25  *
26  * @author srowen@google.com (Sean Owen)
27  */
28 public final class URLTOResult extends ParsedReaderResult {
29
30   private final String title;
31   private final String uri;
32
33   private URLTOResult(String title, String uri) {
34     super(ParsedReaderResultType.URLTO);
35     this.title = title;
36     this.uri = uri;
37   }
38
39   public static URLTOResult parse(Result result) {
40     String rawText = result.getText();
41     if (!rawText.startsWith("URLTO:")) {
42       return null;
43     }
44     int titleEnd = rawText.indexOf(':', 6);
45     if (titleEnd < 0) {
46       return null;
47     }
48     String title = rawText.substring(6, titleEnd);
49     String uri = rawText.substring(titleEnd + 1);
50     return new URLTOResult(title, uri);
51   }
52
53   public String getTitle() {
54     return title;
55   }
56
57   public String getURI() {
58     return uri;
59   }
60
61   public String getDisplayResult() {
62     if (title == null) {
63       return uri;
64     } else {
65       return title + '\n' + uri;
66     }
67   }
68
69 }