CUnary.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.logical;

  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.IBaseUnary;
  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.Collections;
  35. import java.util.LinkedList;
  36. import java.util.List;


  37. /**
  38.  * logical unary expression
  39.  */
  40. public final class CUnary extends IBaseUnary
  41. {
  42.     /**
  43.      * serial id
  44.      */
  45.     private static final long serialVersionUID = -5203681823131507779L;

  46.     /**
  47.      * ctor
  48.      *
  49.      * @param p_operator operator
  50.      * @param p_expression expression
  51.      */
  52.     public CUnary( @Nonnull final EOperator p_operator, @Nonnull final IExpression p_expression )
  53.     {
  54.         super( p_operator, p_expression );
  55.         if ( !m_operator.isLogical() )
  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.         final boolean l_result = m_expression.execute( p_parallel, p_context, Collections.<ITerm>emptyList(), l_argument ).value();
  65.         if ( l_argument.size() != 1 )
  66.             return CFuzzyValue.from( false );

  67.         switch ( m_operator )
  68.         {
  69.             case NEGATION:
  70.                 p_return.add( CRawTerm.from(
  71.                     !( l_result && l_argument.get( 0 ).<Boolean>raw() )
  72.                 ) );
  73.                 return CFuzzyValue.from( true );

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

  78. }