ebba71ee6c2e378cbb82a1e1c4500174f1c92112
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagSimpleContactResultParser.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.AddressBookParsedResult;
22
23 /**
24  * <p>Represents a "simple contact" result encoded according to section 4.8 of the
25  * MobileTag Reader International Specification.</p>
26  *
27  * @author Sean Owen
28  */
29 final class MobileTagSimpleContactResultParser extends AbstractMobileTagResultParser {
30
31   public static final String SERVICE_TYPE = "02";
32
33   public static AddressBookParsedResult 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), 9);
43     if (matches == null || !isDigits(matches[7], 8)) {
44       return null;
45     }
46     String fullName = matches[0];
47     String telephoneCell = matches[1];
48     String telephone = matches[2];
49     String email1 = matches[3];
50     String email2 = matches[4];
51     String address = matches[5];
52     String org = matches[6];
53     String birthday = matches[7];
54     if (!isStringOfDigits(birthday, 8)) {
55       return null;
56     }
57     String title = matches[8];
58
59     return new AddressBookParsedResult(new String[] {fullName},
60                                        null,
61                                        new String[] {telephoneCell, telephone},
62                                        new String[] {email1, email2},
63                                        null,
64                                        address,
65                                        org,
66                                        birthday,
67                                        title,
68                                        null);
69   }
70
71 }