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

com.scudata.expression.fn.math.Shift Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.expression.fn.math;

import java.math.BigDecimal;
import java.math.BigInteger;

import com.scudata.common.MessageManager;
import com.scudata.common.RQException;
import com.scudata.dm.Context;
import com.scudata.expression.Expression;
import com.scudata.expression.Function;
import com.scudata.expression.IParam;
import com.scudata.resources.EngineMessage;


/**
 * ??λ???㣬s<0???ƣ?s>0????
 * @author yanjing
 *
 */
public class Shift	extends Function {
	private Expression exp1;
	private Expression exp2;

	/**
	 * ??????ʽ????Ч?ԣ???Ч???׳??쳣
	 */
	public void checkValidity() {
		if (param == null) {
			MessageManager mm = EngineMessage.get();
			throw new RQException("shift" + mm.getMessage("function.missingParam"));
		} else if (param.getSubSize() != 2) {
			MessageManager mm = EngineMessage.get();
			throw new RQException("shift" + mm.getMessage("function.invalidParam"));
		}
		
		IParam sub1 = param.getSub(0);
		IParam sub2 = param.getSub(1);
		if (sub1 == null || sub2 == null) {
			MessageManager mm = EngineMessage.get();
			throw new RQException("shift" + mm.getMessage("function.invalidParam"));
		}

		exp1 = sub1.getLeafExpression();
		exp2 = sub2.getLeafExpression();
	}

	public Object calculate(Context ctx) {
		Object result1 = exp1.calculate(ctx);
		if (result1 == null) {
			return null;
		} else if (!(result1 instanceof Number)) {
			MessageManager mm = EngineMessage.get();
			throw new RQException("The first param of shift" + mm.getMessage("function.paramTypeError"));
		}
		
		Object result2 = exp2.calculate(ctx);
		if (result2 == null) {
			return null;
		} else if (!(result2 instanceof Number)) {
			MessageManager mm = EngineMessage.get();
			throw new RQException("The second param of shift" + mm.getMessage("function.paramTypeError"));
		}
		
		int n = ((Number)result2).intValue();
		if (n == 0) {
			return result1;
		}
		
		if (result1 instanceof BigDecimal) {
			BigInteger bi = ((BigDecimal)result1).toBigInteger();
			if (n > 0) { // ????
				bi = bi.shiftRight(n);
			} else { // ????
				bi = bi.shiftLeft(-n);
			}
			
			return new BigDecimal(bi);
		} else if (result1 instanceof BigInteger) {
			BigInteger bi = (BigInteger)result1;
			if (n > 0) { // ????
				bi = bi.shiftRight(n);
			} else { // ????
				bi = bi.shiftLeft(-n);
			}
			
			return new BigDecimal(bi);
		} else if (result1 instanceof Integer) {
			int x = ((Number)result1).intValue();
			if (n > 0) { // ????
				if (option == null || option.indexOf('s') == -1) {
					// ????λ??0
					return x >>> n;
				} else {
					return x >> n;
				}
			} else { // ????
				return x << -n;
			}
		} else {
			long x = ((Number)result1).longValue();
			if (n > 0) { // ????
				if (option == null || option.indexOf('s') == -1) {
					// ????λ??0
					return x >>> n;
				} else {
					return x >> n;
				}
			} else { // ????
				return x << -n;
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy