Add iCal support, plus many small changes suggested by code inspection -- mostly...
[zxing.git] / core / src / com / google / zxing / client / result / CalendarParsedResult.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;
18
19 /**
20  * @author srowen@google.com (Sean Owen)
21  */
22 public final class CalendarParsedResult extends ParsedResult {
23
24   private final String summary;
25   private final String start;
26   private final String end;
27   private final String location;
28   private final String attendee;
29   private final String title;
30
31   public CalendarParsedResult(String summary,
32                               String start,
33                               String end,
34                               String location,
35                               String attendee,
36                               String title) {
37     super(ParsedResultType.CALENDAR);
38     validateDate(start);
39     validateDate(end);
40     this.summary = summary;
41     this.start = start;
42     this.end = end;
43     this.location = location;
44     this.attendee = attendee;
45     this.title = title;
46   }
47
48   public String getSummary() {
49     return summary;
50   }
51
52   /**
53    * <p>We would return the start and end date as a {@link java.util.Date} except that this code
54    * needs to work under JavaME / MIDP and there is no date parsing library available there, such
55    * as <code>java.text.SimpleDateFormat</code>.</p>
56    *
57    * @return start time formatted as yyyyMMdd'T'HHmmss'Z'.</p>
58    */
59   public String getStart() {
60     return start;
61   }
62
63   /**
64    * @see #getStart()
65    */
66   public String getEnd() {
67     return end;
68   }
69
70   public String getLocation() {
71     return location;
72   }
73
74   public String getAttendee() {
75     return attendee;
76   }
77
78   public String getTitle() {
79     return title;
80   }
81
82   public String getDisplayResult() {
83     StringBuffer result = new StringBuffer();
84     maybeAppend(summary, result);
85     maybeAppend(start, result);
86     maybeAppend(end, result);
87     maybeAppend(location, result);
88     maybeAppend(attendee, result);
89     maybeAppend(title, result);
90     return result.toString();
91   }
92
93   private static void validateDate(String date) {
94     if (date != null) {
95       if (date.length() != 16) {
96         throw new IllegalArgumentException();
97       }
98       for (int i = 0; i < 8; i++) {
99         if (!Character.isDigit(date.charAt(i))) {
100           throw new IllegalArgumentException();
101         }
102       }
103       if (date.charAt(8) != 'T') {
104         throw new IllegalArgumentException();
105       }
106       for (int i = 9; i < 15; i++) {
107         if (!Character.isDigit(date.charAt(i))) {
108           throw new IllegalArgumentException();
109         }
110       }
111       if (date.charAt(15) != 'Z') {
112         throw new IllegalArgumentException();
113       }
114     }
115   }
116
117 }