LightJason - AgentSpeak(L++)
CUnary.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.Collections;
38 import java.util.LinkedList;
39 import java.util.List;
40 
41 
45 public final class CUnary extends IBaseUnary
46 {
50  private static final long serialVersionUID = -5203681823131507779L;
51 
58  public CUnary( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_expression )
59  {
60  super( p_operator, p_expression );
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  final boolean l_result = m_expression.execute( p_parallel, p_context, Collections.<ITerm>emptyList(), l_argument ).value();
72  if ( l_argument.size() != 1 )
73  return CFuzzyValue.from( false );
74 
75  switch ( m_operator )
76  {
77  case NEGATION:
78  p_return.add( CRawTerm.from(
79  !( l_result && l_argument.get( 0 ).<Boolean>raw() )
80  ) );
81  return CFuzzyValue.from( true );
82 
83  default:
84  return CFuzzyValue.from( false );
85  }
86  }
87 
88 }
final IExpression m_expression
left-hand-side argument
Definition: IBaseUnary.java:51
final boolean isLogical()
check of a logical operator
Definition: EOperator.java:82
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
static< N > IFuzzyValue< N > from( @Nonnull final N p_value)
factory
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: CUnary.java:67
static< T > String languagestring(final T p_source, final String p_label, final Object... p_parameter)
returns the language depend string on any object
execution context with local data
Definition: IContext.java:42
result for an immutable fuzzy value
CUnary( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_expression)
ctor
Definition: CUnary.java:58
static< N > CRawTerm< N > from(final N p_value)
factory for a raw term
Definition: CRawTerm.java:104
term structure for simple datatypes
Definition: CRawTerm.java:45