Add iCal support, plus many small changes suggested by code inspection -- mostly...
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagSMSResultParser.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.BarcodeFormat;
20 import com.google.zxing.Result;
21 import com.google.zxing.client.result.SMSParsedResult;
22
23 /**
24  * <p>Represents a "SMS" result encoded according to section 4.6 of the
25  * MobileTag Reader International Specification.</p>
26  *
27  * @author srowen@google.com (Sean Owen)
28  */
29 final class MobileTagSMSResultParser extends AbstractMobileTagResultParser {
30
31   public static final String SERVICE_TYPE = "03";
32
33   public static SMSParsedResult parse(Result result) {
34     if (!result.getBarcodeFormat().equals(BarcodeFormat.DATAMATRIX)) {
35       return null;
36     }
37     String rawText = result.getText();
38     if (!rawText.startsWith(SERVICE_TYPE)) {
39       return null;
40     }
41
42     String[] matches = matchDelimitedFields(rawText.substring(2), 3);
43     if (matches == null) {
44       return null;
45     }
46     String to = matches[0];
47     String body = matches[1];
48     String title = matches[2];
49
50     return new SMSParsedResult("sms:" + to, to, null, null, body, title);
51   }
52
53 }