Added ECI for values 0-2 and also standardize character encoding names throughout...
[zxing.git] / core / src / com / google / zxing / client / result / optional / NDEFTextParsedResult.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.optional;
18
19 import com.google.zxing.Result;
20 import com.google.zxing.client.result.ParsedReaderResultType;
21
22 /**
23  * Recognizes an NDEF message that encodes text according to the
24  * "Text Record Type Definition" specification.
25  *
26  * @author srowen@google.com (Sean Owen)
27  */
28 public final class NDEFTextParsedResult extends AbstractNDEFParsedResult {
29
30   private final String language;
31   private final String text;
32
33   private NDEFTextParsedResult(String language, String text) {
34     super(ParsedReaderResultType.NDEF_TEXT);
35     this.language = language;
36     this.text = text;
37   }
38
39   public static NDEFTextParsedResult parse(Result result) {
40     byte[] bytes = result.getRawBytes();
41     if (bytes == null) {
42       return null;
43     }
44     NDEFRecord ndefRecord = NDEFRecord.readRecord(bytes, 0);
45     if (ndefRecord == null || !ndefRecord.isMessageBegin() || !ndefRecord.isMessageEnd()) {
46       return null;
47     }
48     if (!ndefRecord.getType().equals(NDEFRecord.TEXT_WELL_KNOWN_TYPE)) {
49       return null;
50     }
51     String[] languageText = decodeTextPayload(ndefRecord.getPayload());
52     return new NDEFTextParsedResult(languageText[0], languageText[1]);
53   }
54
55   static String[] decodeTextPayload(byte[] payload) {
56     byte statusByte = payload[0];
57     boolean isUTF16 = (statusByte & 0x80) != 0;
58     int languageLength = statusByte & 0x1F;
59     // language is always ASCII-encoded:
60     String language = bytesToString(payload, 1, languageLength, "US-ASCII");
61     String encoding = isUTF16 ? "UTF-16" : "UTF8";
62     String text = bytesToString(payload, 1 + languageLength, payload.length - languageLength - 1, encoding);
63     return new String[] { language, text };
64   }
65
66   public String getLanguage() {
67     return language;
68   }
69
70   public String getText() {
71     return text;
72   }
73
74   public String getDisplayResult() {
75     return text;
76   }
77
78 }