LightJason - AgentSpeak(L++)
CComparable.java
Go to the documentation of this file.
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 
24 package org.lightjason.agentspeak.language.execution.expression.numerical;
25 
35 
36 import javax.annotation.Nonnull;
37 import java.util.LinkedList;
38 import java.util.List;
39 
40 
44 public final class CComparable extends IBaseBinary
45 {
49  private static final long serialVersionUID = 3088316270644309406L;
50 
58  public CComparable( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_lefthandside, @Nonnull final IExpression p_righthandside )
59  {
60  super( p_operator, p_lefthandside, p_righthandside );
61  if ( !m_operator.isComparable() )
63  }
64 
65  @Nonnull
66  @Override
67  public final IFuzzyValue<Boolean> execute( final boolean p_parallel, @Nonnull final IContext p_context,
68  @Nonnull final List<ITerm> p_argument, @Nonnull final List<ITerm> p_return )
69  {
70  final List<ITerm> l_argument = new LinkedList<>();
71  if ( !this.executearguments( p_parallel, p_context, l_argument ) )
72  return CFuzzyValue.from( false );
73 
74  switch ( m_operator )
75  {
76  case EQUAL:
77  p_return.add( CRawTerm.from( checkequal( l_argument.get( 0 ), l_argument.get( 1 ) ) ) );
78  return CFuzzyValue.from( true );
79 
80  case NOTEQUAL:
81  p_return.add( CRawTerm.from( !checkequal( l_argument.get( 0 ), l_argument.get( 1 ) ) ) );
82  return CFuzzyValue.from( true );
83 
84  default:
85  return CFuzzyValue.from( false );
86  }
87  }
88 
96  @SuppressWarnings( "unchecked" )
97  private static boolean checkequal( @Nonnull final ITerm p_value1, @Nonnull final ITerm p_value2 )
98  {
99  final Object l_value1 = p_value1.raw();
100  final Object l_value2 = p_value2.raw();
101 
102  return ( l_value1 instanceof Number ) && ( l_value2 instanceof Number )
103  ? Double.valueOf( ( (Number) l_value1 ).doubleValue() ).equals( ( (Number) l_value2 ).doubleValue() )
104  : l_value1.equals( l_value2 );
105  }
106 
107 }
static< N > IFuzzyValue< N > from( @Nonnull final N p_value)
factory
static< T > String languagestring(final T p_source, final String p_label, final Object... p_parameter)
returns the language depend string on any object
final boolean isComparable()
check of a comparable operator
Definition: EOperator.java:102
final IFuzzyValue< Boolean > execute(final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument, @Nonnull final List< ITerm > p_return)
defines a plan-body operation
execution context with local data
Definition: IContext.java:42
result for an immutable fuzzy value
static boolean checkequal( @Nonnull final ITerm p_value1, @Nonnull final ITerm p_value2)
check method with number handling
static< N > CRawTerm< N > from(final N p_value)
factory for a raw term
Definition: CRawTerm.java:104
CComparable( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_lefthandside, @Nonnull final IExpression p_righthandside)
ctor
final boolean executearguments(final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument)
execute expression arguments
term structure for simple datatypes
Definition: CRawTerm.java:45