Add history feature; group some functionality into subpackages
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagSimpleCalendarResultParser.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.CalendarParsedResult;
22
23 /**
24  * <p>Represents a "simple calendar" result encoded according to section 4.9 of the
25  * MobileTag Reader International Specification.</p>
26  *
27  * @author Sean Owen
28  */
29 final class MobileTagSimpleCalendarResultParser extends AbstractMobileTagResultParser {
30
31   public static final String SERVICE_TYPE = "07";
32
33   public static CalendarParsedResult 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), 6);
43     if (matches == null || !isDigits(matches[1], 10) || !isDigits(matches[2], 10)) {
44       return null;
45     }
46     String summary = matches[0];
47     String start = expandDateString(matches[1]);
48     String end = expandDateString(matches[2]);
49     String location = matches[3];
50     String attendee = matches[4];
51     String title = matches[5];
52
53     try {
54       return new CalendarParsedResult(summary, start, end, location, attendee, title);
55     } catch (IllegalArgumentException iae) {
56       return null;
57     }
58   }
59
60   private static String expandDateString(String date) {
61     if (date == null) {
62       return null;
63     }
64     // Input is of form YYMMddHHmmss, and needs to be YYYYMMdd'T'HHmmss'Z'
65     return "20" + date.substring(0, 6) + 'T' + date.substring(6) + "00Z";
66   }
67
68 }