7c96e3ca05c838e01cc2c32c38a4728689b82ea4
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagMMSResultParser.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 "MMS" result encoded according to section 4.7 of the
25  * MobileTag Reader International Specification.</p>
26  *
27  * @author Sean Owen
28  */
29 final class MobileTagMMSResultParser extends AbstractMobileTagResultParser {
30
31   public static final String SERVICE_TYPE = "05";
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), 4);
43     if (matches == null) {
44       return null;
45     }
46     String to = matches[0];
47     String subject = matches[1];
48     String body = matches[2];
49     String title = matches[3];
50
51     return new SMSParsedResult("sms:" + to, to, null, subject, body, title);
52   }
53
54 }