CComparable.java

  1. /*
  2.  * @cond LICENSE
  3.  * ######################################################################################
  4.  * # LGPL License                                                                       #
  5.  * #                                                                                    #
  6.  * # This file is part of the LightJason AgentSpeak(L++)                                #
  7.  * # Copyright (c) 2015-19, LightJason (info@lightjason.org)                            #
  8.  * # This program is free software: you can redistribute it and/or modify               #
  9.  * # it under the terms of the GNU Lesser General Public License as                     #
  10.  * # published by the Free Software Foundation, either version 3 of the                 #
  11.  * # License, or (at your option) any later version.                                    #
  12.  * #                                                                                    #
  13.  * # This program is distributed in the hope that it will be useful,                    #
  14.  * # but WITHOUT ANY WARRANTY; without even the implied warranty of                     #
  15.  * # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                      #
  16.  * # GNU Lesser General Public License for more details.                                #
  17.  * #                                                                                    #
  18.  * # You should have received a copy of the GNU Lesser General Public License           #
  19.  * # along with this program. If not, see http://www.gnu.org/licenses/                  #
  20.  * ######################################################################################
  21.  * @endcond
  22.  */

  23. package org.lightjason.agentspeak.language.execution.expression.numerical;

  24. import org.lightjason.agentspeak.error.CIllegalArgumentException;
  25. import org.lightjason.agentspeak.language.CRawTerm;
  26. import org.lightjason.agentspeak.language.ITerm;
  27. import org.lightjason.agentspeak.language.execution.IContext;
  28. import org.lightjason.agentspeak.language.execution.expression.EOperator;
  29. import org.lightjason.agentspeak.language.execution.expression.IBaseBinary;
  30. import org.lightjason.agentspeak.language.execution.expression.IExpression;
  31. import org.lightjason.agentspeak.language.fuzzy.CFuzzyValue;
  32. import org.lightjason.agentspeak.language.fuzzy.IFuzzyValue;

  33. import javax.annotation.Nonnull;
  34. import java.util.LinkedList;
  35. import java.util.List;


  36. /**
  37.  * comparable binary expression
  38.  */
  39. public final class CComparable extends IBaseBinary
  40. {
  41.     /**
  42.      * serial id
  43.      */
  44.     private static final long serialVersionUID = 3088316270644309406L;

  45.     /**
  46.      * ctor
  47.      *
  48.      * @param p_operator operator
  49.      * @param p_lefthandside left-hand-side argument
  50.      * @param p_righthandside right-hand-side
  51.      */
  52.     public CComparable( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_lefthandside, @Nonnull final IExpression p_righthandside )
  53.     {
  54.         super( p_operator, p_lefthandside, p_righthandside );
  55.         if ( !m_operator.isComparable() )
  56.             throw new CIllegalArgumentException( org.lightjason.agentspeak.common.CCommon.languagestring( this, "operator", m_operator ) );
  57.     }

  58.     @Nonnull
  59.     @Override
  60.     public final IFuzzyValue<Boolean> execute( final boolean p_parallel, @Nonnull final IContext p_context,
  61.                                                @Nonnull final List<ITerm> p_argument, @Nonnull final List<ITerm> p_return )
  62.     {
  63.         final List<ITerm> l_argument = new LinkedList<>();
  64.         if ( !this.executearguments( p_parallel, p_context, l_argument ) )
  65.             return CFuzzyValue.from( false );

  66.         switch ( m_operator )
  67.         {
  68.             case EQUAL:
  69.                 p_return.add( CRawTerm.from( checkequal( l_argument.get( 0 ), l_argument.get( 1 ) ) ) );
  70.                 return CFuzzyValue.from( true );

  71.             case NOTEQUAL:
  72.                 p_return.add( CRawTerm.from( !checkequal( l_argument.get( 0 ), l_argument.get( 1 ) ) ) );
  73.                 return CFuzzyValue.from( true );

  74.             default:
  75.                 return CFuzzyValue.from( false );
  76.         }
  77.     }

  78.     /**
  79.      * check method with number handling
  80.      *
  81.      * @param p_value1 term value
  82.      * @param p_value2 term value
  83.      * @return equality flag
  84.      */
  85.     @SuppressWarnings( "unchecked" )
  86.     private static boolean checkequal( @Nonnull final ITerm p_value1, @Nonnull final ITerm p_value2 )
  87.     {
  88.         final Object l_value1 = p_value1.raw();
  89.         final Object l_value2 = p_value2.raw();

  90.         return ( l_value1 instanceof Number ) && ( l_value2 instanceof Number )
  91.                ? Double.valueOf( ( (Number) l_value1 ).doubleValue() ).equals( ( (Number) l_value2 ).doubleValue() )
  92.                : l_value1.equals( l_value2 );
  93.     }

  94. }