All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.hssf.record.formula.functions.CalendarFieldFunction Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   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.poi.hssf.record.formula.functions;

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

import org.apache.poi.hssf.record.formula.eval.ErrorEval;
import org.apache.poi.hssf.record.formula.eval.EvaluationException;
import org.apache.poi.hssf.record.formula.eval.NumberEval;
import org.apache.poi.hssf.record.formula.eval.OperandResolver;
import org.apache.poi.hssf.record.formula.eval.ValueEval;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;

/**
 * Implementation of Excel functions DAY, MONTH and YEAR
 *
 *
 * @author Guenter Kickinger [email protected]
 */
public final class CalendarFieldFunction extends Fixed1ArgFunction {

	public static final Function YEAR = new CalendarFieldFunction(Calendar.YEAR, false);
	public static final Function MONTH = new CalendarFieldFunction(Calendar.MONTH, true);
	public static final Function DAY = new CalendarFieldFunction(Calendar.DAY_OF_MONTH, false);

	private final int _dateFieldId;
	private final boolean _needsOneBaseAdjustment;

	private CalendarFieldFunction(int dateFieldId, boolean needsOneBaseAdjustment) {
		_dateFieldId = dateFieldId;
		_needsOneBaseAdjustment = needsOneBaseAdjustment;
	}

	public final ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0) {
		int val;
		try {
			ValueEval ve = OperandResolver.getSingleValue(arg0, srcRowIndex, srcColumnIndex);
			val = OperandResolver.coerceValueToInt(ve);
		} catch (EvaluationException e) {
			return e.getErrorEval();
		}
		if (val < 0) {
			return ErrorEval.NUM_ERROR;
		}
		return new NumberEval(getCalField(val));
	}

	private int getCalField(int serialDay) {
		if (serialDay == 0) {
			// Special weird case
			// day zero should be 31-Dec-1899,  but Excel seems to think it is 0-Jan-1900
			switch (_dateFieldId) {
				case Calendar.YEAR: return 1900;
				case Calendar.MONTH: return 1;
				case Calendar.DAY_OF_MONTH: return 0;
			}
			throw new IllegalStateException("bad date field " + _dateFieldId);
		}
		Date d = HSSFDateUtil.getJavaDate(serialDay, false); // TODO fix 1900/1904 problem

		Calendar c = new GregorianCalendar();
		c.setTime(d);

		int result = c.get(_dateFieldId);
		if (_needsOneBaseAdjustment) {
			result++;
		}
		return result;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy