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

org.apache.geode.cache.query.internal.CompiledUnaryMinus Maven / Gradle / Ivy

Go to download

Apache Geode provides a database-like consistency model, reliable transaction processing and a shared-nothing architecture to maintain very low latency performance with high concurrency processing

There is a newer version: 1.15.1
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.geode.cache.query.internal;

import java.util.*;
import org.apache.geode.cache.query.AmbiguousNameException;
import org.apache.geode.cache.query.FunctionDomainException;
import org.apache.geode.cache.query.NameResolutionException;
import org.apache.geode.cache.query.QueryInvocationTargetException;
import org.apache.geode.cache.query.QueryService;
import org.apache.geode.cache.query.TypeMismatchException;
import org.apache.geode.internal.i18n.LocalizedStrings;

/**
 * 
 */
public class CompiledUnaryMinus extends AbstractCompiledValue {

  private CompiledValue _value;

  /**
   * 
   * @param value
   */
  public CompiledUnaryMinus(CompiledValue value) {
    _value = value;
  }


  @Override
  public List getChildren() {
    return Collections.singletonList(this._value);
  }

  /**
   * @return int
   */
  public int getType() {
    return LITERAL_sum;
  }

  /**
   * @param context
   * @return Object
   */
  public Object evaluate(ExecutionContext context) throws FunctionDomainException,
      TypeMismatchException, NameResolutionException, QueryInvocationTargetException {
    return minus(_value.evaluate(context));
  }

  /**
   * 
   */
  @Override
  public Set computeDependencies(ExecutionContext context)
      throws TypeMismatchException, AmbiguousNameException, NameResolutionException {
    return context.addDependencies(this, this._value.computeDependencies(context));
  }

  /**
   * 
   * @param obj
   * @return Object
   * @throws TypeMismatchException
   */
  private Object minus(Object obj) throws TypeMismatchException {

    if (obj instanceof Number) {
      if (obj instanceof Integer)
        return Integer.valueOf(((Integer) obj).intValue() * -1);
      if (obj instanceof Long)
        return Long.valueOf(((Long) obj).longValue() * -1);
      if (obj instanceof Double)
        return Double.valueOf(((Double) obj).doubleValue() * -1);
      if (obj instanceof Float)
        return Float.valueOf(((Float) obj).floatValue() * -1);
      if (obj instanceof Byte)
        return Byte.valueOf((byte) (((Byte) obj).byteValue() * -1));
      if (obj instanceof Short)
        return Short.valueOf((short) (((Short) obj).shortValue() * -1));
    } else if (obj == null || obj == QueryService.UNDEFINED)
      return QueryService.UNDEFINED;
    throw new TypeMismatchException(LocalizedStrings.CompiledUnaryMinus_0_CANNOT_BE_UNARY_MINUS
        .toLocalizedString(obj.getClass()));
  }

}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy