Expanded calendar parsing to allow more date formats, added some unit tests for ISBN...
[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> See validateDate() for the return format.
56    *
57    * @return start time formatted as a RFC 2445 DATE or DATE-TIME.</p>
58    */
59   public String getStart() {
60     return start;
61   }
62
63   /**
64    * @see #getStart(). May return null if the event has no duration.
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   /**
94    * RFC 2445 allows the start and end fields to be of type DATE (e.g. 20081021) or DATE-TIME
95    * (e.g. 20081021T123000 for local time, or 20081021T123000Z for UTC).
96    *
97    * @param date The string to validate
98    */
99   private static void validateDate(String date) {
100     if (date != null) {
101       int length = date.length();
102       if (length != 8 && length != 15 && length != 16) {
103         throw new IllegalArgumentException();
104       }
105       for (int i = 0; i < 8; i++) {
106         if (!Character.isDigit(date.charAt(i))) {
107           throw new IllegalArgumentException();
108         }
109       }
110       if (length > 8) {
111         if (date.charAt(8) != 'T') {
112           throw new IllegalArgumentException();
113         }
114         for (int i = 9; i < 15; i++) {
115           if (!Character.isDigit(date.charAt(i))) {
116             throw new IllegalArgumentException();
117           }
118         }
119         if (length == 16 && date.charAt(15) != 'Z') {
120           throw new IllegalArgumentException();
121         }
122       }
123     }
124   }
125
126 }