Refactorings to allow raw bytes to be passed back with reader result, where applicable
[zxing.git] / core / src / com / google / zxing / client / result / BookmarkDoCoMoResult.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 /**
20  * @author srowen@google.com (Sean Owen)
21  */
22 public final class BookmarkDoCoMoResult extends AbstractDoCoMoResult {
23
24   private final String title;
25   private final String uri;
26
27   private BookmarkDoCoMoResult(String title, String uri) {
28     super(ParsedReaderResultType.BOOKMARK);
29     this.title = title;
30     this.uri = uri;
31   }
32
33   public static BookmarkDoCoMoResult parse(String rawText) {
34     if (!rawText.startsWith("MEBKM:")) {
35       return null;
36     }
37     String title = matchSinglePrefixedField("TITLE:", rawText);
38     String[] rawUri = matchPrefixedField("URL:", rawText);
39     if (rawUri == null) {
40       return null;
41     }
42     String uri = rawUri[0];
43     if (!URIParsedResult.isBasicallyValidURI(uri)) {
44       return null;
45     }
46     return new BookmarkDoCoMoResult(title, uri);
47   }
48
49   public String getTitle() {
50     return title;
51   }
52
53   public String getURI() {
54     return uri;
55   }
56
57   public String getDisplayResult() {
58     if (title == null) {
59       return uri;
60     } else {
61       return title + '\n' + uri;
62     }
63   }
64
65 }