Package org.apache.imperius.spl.parser.expressions.impl

Source Code of org.apache.imperius.spl.parser.expressions.impl.GetDayOfWeek

/*
* 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. 
*/
//

/**
* @author Prashant Baliga <prabalig@in.ibm.com>
*
*/
package org.apache.imperius.spl.parser.expressions.impl;

import java.util.Calendar;
import java.util.List;
import java.util.logging.Logger;

import org.apache.imperius.spl.core.TypeConstants;
import org.apache.imperius.spl.core.TypeInfo;
import org.apache.imperius.spl.parser.exceptions.SPLException;
import org.apache.imperius.spl.parser.expressions.NumericExpression;
import org.apache.imperius.spl.parser.expressions.SingleArgumentExpression;
import org.apache.imperius.spl.parser.util.TypeResolver;
import org.apache.imperius.util.Messages;
import org.apache.imperius.util.SPLLogger;



public class GetDayOfWeek extends SingleArgumentExpression implements
        NumericExpression
{
   
    public static final String className = GetDayOfWeek.class.getName();
   
    private static Logger logger = SPLLogger.getSPLLogger().getLogger();
    private static final String sourceClass="GetDayOfWeek";
   
   
   
    public GetDayOfWeek(List exprList, boolean validateExpression)
            throws SPLException
    {
        super(exprList);
        logger.entering(sourceClass,Thread.currentThread().getName()+" "+ "GetDayOfWeek");

        if (validateExpression)
        {
            if (!validate())
            {
                logger.severe(Thread.currentThread().getName()+" "+"validation error: " + className
                        + " has wrong data type passed in.");
               
                throw new SPLException(Messages.getString(
              "SPL_VALIDATION_ERROR_MSG", new Object[] { className }));
            }
        }
        logger.exiting(sourceClass,Thread.currentThread().getName()+" "+ "GetDayOfWeek");
       
    }
   
    public Object evaluate() throws SPLException
    {
        logger.entering(sourceClass,Thread.currentThread().getName()+" "+ "evaluate");

        try
        {
            Calendar calendar = (Calendar) _exp.evaluate();
           
            // I actually use a case statement in case the JVM later changes the
            // constant values
            int result = 0;
           
            switch (calendar.get(Calendar.DAY_OF_WEEK))
            {
                case Calendar.SUNDAY:
                    result = 1;
                    break;
                case Calendar.MONDAY:
                    result = 2;
                    break;
                case Calendar.TUESDAY:
                    result = 3;
                    break;
                case Calendar.WEDNESDAY:
                    result = 4;
                    break;
                case Calendar.THURSDAY:
                    result = 5;
                    break;
                case Calendar.FRIDAY:
                    result = 6;
                    break;
                case Calendar.SATURDAY:
                    result = 7;
                    break;
            }

            logger.exiting(sourceClass,Thread.currentThread().getName()+" "+ "evaluate");
        
            return new Integer(result);
           
        }
        catch (Exception e)
        {
            logger.severe(Thread.currentThread().getName()+" "+"evaluation error: " + e.toString());
           
            throw new SPLException(Messages.getString(
          "SPL_EVALUATION_ERROR_MSG", new Object[] { e
              .getLocalizedMessage() }));

        }
    }
   
    public boolean validate() throws SPLException
    {
        logger.entering(sourceClass,Thread.currentThread().getName()+" "+ "validate");
        
        TypeInfo eType = _exp.getType();
       
       
        if (!eType.getIsArray() && TypeResolver.isCalendar(eType))
        {
            logger.exiting(sourceClass,Thread.currentThread().getName()+" "+ "validate");
           
            _dataType.setType(TypeConstants.intType);
            return true;
        }
        else
        {
          throw new SPLException(Messages.getString(
          "SPL_NOT_REQUIRED_EXP_EXCEPTION_MSG",
          new Object[] { eType }));
        }

       
    }
   
    public String toString()
    {
        logger.entering(sourceClass,Thread.currentThread().getName()+" "+ "toString");

        String str = "GetDayOfWeek("+this._exp.toString() +")";
         
        logger.exiting(sourceClass,Thread.currentThread().getName()+" "+ "toString");
      
        return str;
    }
   
}
TOP

Related Classes of org.apache.imperius.spl.parser.expressions.impl.GetDayOfWeek

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.