View Javadoc

1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License.
18   *
19   */
20  package org.apache.mina.integration.beans;
21  
22  import java.beans.PropertyEditor;
23  import java.text.DateFormat;
24  import java.text.ParseException;
25  import java.text.SimpleDateFormat;
26  import java.util.Date;
27  import java.util.Locale;
28  import java.util.regex.Pattern;
29  
30  /**
31   * A {@link PropertyEditor} which converts a {@link String} into
32   * a {@link Date} and vice versa.
33   *
34   * @author The Apache MINA Project (dev@mina.apache.org)
35   * @version $Revision: 601229 $, $Date: 2007-12-05 08:13:18 +0100 (mer, 05 déc 2007) $
36   */
37  public class DateEditor extends AbstractPropertyEditor {
38      private static final Pattern MILLIS = Pattern.compile("[0-9][0-9]*");
39      
40      private final DateFormat[] formats = new DateFormat[] {
41              new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.ENGLISH),
42              new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z", Locale.ENGLISH),
43              new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.ENGLISH),
44              new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH),
45              new SimpleDateFormat("yyyy-MM", Locale.ENGLISH),
46              new SimpleDateFormat("yyyy", Locale.ENGLISH),
47      };
48              
49      public DateEditor() {
50          for (DateFormat f: formats) {
51              f.setLenient(true);
52          }
53      }
54  
55      @Override
56      protected String toText(Object value) {
57          if (value instanceof Number) {
58              long time = ((Number) value).longValue();
59              if (time <= 0) {
60                  return null;
61              }
62              value = new Date(time);
63          }
64          return formats[0].format((Date) value);
65      }
66  
67      @Override
68      protected Object toValue(String text) throws IllegalArgumentException {
69          if (MILLIS.matcher(text).matches()) {
70              long time = Long.parseLong(text);
71              if (time <= 0) {
72                  return null;
73              }
74              return new Date(time);
75          }
76          
77          for (DateFormat f: formats) {
78              try {
79                  return f.parse(text);
80              } catch (ParseException e) {
81              }
82          }
83          
84          throw new IllegalArgumentException("Wrong date: " + text);
85      }
86  }