/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.isis.core.metamodel.facets.value; import java.text.DateFormat; import java.util.ArrayList; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.TimeZone; import com.google.common.collect.Maps; import org.apache.isis.core.commons.config.ConfigurationConstants; import org.apache.isis.core.metamodel.facetapi.FacetHolder; import org.apache.isis.core.metamodel.services.ServicesInjector; public abstract class DateAndTimeValueSemanticsProviderAbstract<T> extends ValueSemanticsProviderAbstractTemporal<T> { private static Map<String, DateFormat> formats = Maps.newHashMap(); static { formats.put(ISO_ENCODING_FORMAT, createDateEncodingFormat("yyyyMMdd'T'HHmmssSSS")); formats.put("iso", createDateFormat("yyyy-MM-dd HH:mm")); formats.put("medium", DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.SHORT)); } private static final Object DEFAULT_VALUE = null; // no default private static final int TYPICAL_LENGTH = 18; @SuppressWarnings("unchecked") public DateAndTimeValueSemanticsProviderAbstract(final FacetHolder holder, final Class<T> adaptedClass, final Immutability immutability, final EqualByContent equalByContent, final ServicesInjector context) { super("datetime", holder, adaptedClass, TYPICAL_LENGTH, immutability, equalByContent, (T) DEFAULT_VALUE, context); final String formatRequired = getConfiguration().getString(ConfigurationConstants.ROOT + "value.format.datetime"); if (formatRequired == null) { format = formats().get(defaultFormat()); } else { setMask(formatRequired); } } // ////////////////////////////////////////////////////////////////// // temporal-specific stuff // ////////////////////////////////////////////////////////////////// @Override protected String defaultFormat() { return "medium"; } @Override protected Map<String, DateFormat> formats() { return formats; } @Override protected DateFormat format() { final Locale locale = Locale.getDefault(); final TimeZone timeZone = TimeZone.getDefault(); final DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.SHORT, locale); dateFormat.setTimeZone(timeZone); return dateFormat; } @Override public String toString() { return "JavaDateTimeValueSemanticsProvider: " + format; } protected List<DateFormat> formatsToTry() { List<DateFormat> formats = new ArrayList<DateFormat>(); final Locale locale = Locale.getDefault(); final TimeZone timeZone = TimeZone.getDefault(); formats.add(DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale)); formats.add(createDateFormat("yyyy-MM-dd HH:mm:ss.SSS")); formats.add(createDateFormat("yyyyMMdd'T'HHmmssSSS")); formats.add(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.SHORT, locale)); formats.add(createDateFormat("yyyy-MM-dd HH:mm:ss")); formats.add(DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, locale)); formats.add(createDateFormat("yyyyMMdd'T'HHmmss")); formats.add(createDateFormat("yyyy-MM-dd HH:mm")); formats.add(createDateFormat("yyyyMMdd'T'HHmm")); formats.add(createDateFormat("dd-MMM-yyyy HH:mm")); for (DateFormat format : formats) { format.setTimeZone(timeZone); } return formats; } }