02ad6cd72851d53645f6b57042d4b738792a899b
[zxing.git] / core / src / com / google / zxing / client / result / optional / NDEFTextResultParser.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.TextParsedResult;
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 final class NDEFTextResultParser extends AbstractNDEFResultParser {
29
30   public static TextParsedResult parse(Result result) {
31     byte[] bytes = result.getRawBytes();
32     if (bytes == null) {
33       return null;
34     }
35     NDEFRecord ndefRecord = NDEFRecord.readRecord(bytes, 0);
36     if (ndefRecord == null || !ndefRecord.isMessageBegin() || !ndefRecord.isMessageEnd()) {
37       return null;
38     }
39     if (!ndefRecord.getType().equals(NDEFRecord.TEXT_WELL_KNOWN_TYPE)) {
40       return null;
41     }
42     String[] languageText = decodeTextPayload(ndefRecord.getPayload());
43     return new TextParsedResult(languageText[0], languageText[1]);
44   }
45
46   static String[] decodeTextPayload(byte[] payload) {
47     byte statusByte = payload[0];
48     boolean isUTF16 = (statusByte & 0x80) != 0;
49     int languageLength = statusByte & 0x1F;
50     // language is always ASCII-encoded:
51     String language = bytesToString(payload, 1, languageLength, "US-ASCII");
52     String encoding = isUTF16 ? "UTF-16" : "UTF8";
53     String text = bytesToString(payload, 1 + languageLength, payload.length - languageLength - 1, encoding);
54     return new String[] { language, text };
55   }
56
57 }