/* * Copyright (C) 2012 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.jcr.impl.dataflow; import org.exoplatform.services.jcr.datamodel.ValueData; import org.exoplatform.services.jcr.impl.dataflow.persistent.CalendarPersistedValueData; import org.exoplatform.services.jcr.impl.dataflow.persistent.PersistedValueData; import org.exoplatform.services.jcr.impl.util.JCRDateFormat; import java.io.IOException; import java.util.Calendar; /** * @author <a href="abazko@exoplatform.com">Anatoliy Bazko</a> * @version $Id: CalendarValueData.java 34360 2009-07-22 23:58:59Z tolusha $ */ public abstract class CalendarValueData extends AbstractValueData { /** * The value. */ protected Calendar value; /** * CalendarValueData constructor. */ protected CalendarValueData(int orderNumber, Calendar value) { super(orderNumber); this.value = value; } /** * {@inheritDoc} */ protected boolean internalEquals(ValueData another) { if (another instanceof CalendarValueData) { // We implement our own method equal because the default one is too restrictive, indeed two time zones // with the same offset but with different IDs should not be considered as different Calendar that = ((CalendarValueData)another).value; return that.getTimeInMillis() == value.getTimeInMillis() && that.isLenient() == value.isLenient() && that.getFirstDayOfWeek() == value.getFirstDayOfWeek() && that.getMinimalDaysInFirstWeek() == value.getMinimalDaysInFirstWeek() && that.get(Calendar.ZONE_OFFSET) + that.get(Calendar.DST_OFFSET) == value.get(Calendar.ZONE_OFFSET) + value.get(Calendar.DST_OFFSET); } return false; } /** * {@inheritDoc} */ protected byte[] spoolInternalValue() { return JCRDateFormat.format(value).getBytes(); } /** * {@inheritDoc} */ public String toString() { return getString(); } /** * {@inheritDoc} */ public PersistedValueData createPersistedCopy(int orderNumber) throws IOException { return new CalendarPersistedValueData(orderNumber, value); } /** * {@inheritDoc} */ public TransientValueData createTransientCopy(int orderNumber) throws IOException { return new TransientValueData(orderNumber, value); } /** * {@inheritDoc} */ @Override protected Long getLong() { return value.getTimeInMillis(); } /** * {@inheritDoc} */ @Override protected Double getDouble() { return new Double(value.getTimeInMillis()); } /** * {@inheritDoc} */ protected String getString() { return JCRDateFormat.format(value); } /** * {@inheritDoc} */ @Override protected Calendar getDate() { return value; } }