LightJason - AgentSpeak(L++)
CBinary.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.logical;
25 
35 
36 import javax.annotation.Nonnull;
37 import java.util.LinkedList;
38 import java.util.List;
39 
40 
44 public final class CBinary extends IBaseBinary
45 {
49  private static final long serialVersionUID = 397466749260293866L;
50 
58  public CBinary( @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.isLogical() )
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  // calculate return of both expression results
75  switch ( m_operator )
76  {
77 
78  case AND:
79  p_return.add( CRawTerm.from( l_argument.get( 0 ).<Boolean>raw() && l_argument.get( 1 ).<Boolean>raw() ) );
80  return CFuzzyValue.from( true );
81 
82  case OR:
83  p_return.add( CRawTerm.from( l_argument.get( 0 ).<Boolean>raw() || l_argument.get( 1 ).<Boolean>raw() ) );
84  return CFuzzyValue.from( true );
85 
86  case XOR:
87  p_return.add( CRawTerm.from( l_argument.get( 0 ).<Boolean>raw() ^ l_argument.get( 1 ).<Boolean>raw() ) );
88  return CFuzzyValue.from( true );
89 
90  default:
91  return CFuzzyValue.from( false );
92  }
93  }
94 
95 }
final boolean isLogical()
check of a logical operator
Definition: EOperator.java:82
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
CBinary( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_lefthandside, @Nonnull final IExpression p_righthandside)
ctor
Definition: CBinary.java:58
execution context with local data
Definition: IContext.java:42
result for an immutable fuzzy value
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
Definition: CBinary.java:67
static< N > CRawTerm< N > from(final N p_value)
factory for a raw term
Definition: CRawTerm.java:104
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