LCOV - code coverage report
Current view: top level - slideshow/source/engine - expressionnodefactory.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 75 0.0 %
Date: 2014-11-03 Functions: 0 45 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : // must be first
      22             : #include <canvas/debug.hxx>
      23             : #include <expressionnodefactory.hxx>
      24             : 
      25             : #include <canvas/verbosetrace.hxx>
      26             : 
      27             : #include <basegfx/matrix/b2dhommatrix.hxx>
      28             : #include <basegfx/point/b2dpoint.hxx>
      29             : 
      30             : #include <functional>
      31             : #include <algorithm>
      32             : 
      33             : 
      34             : /* Implementation of ExpressionNodeFactory class */
      35             : 
      36             : namespace slideshow
      37             : {
      38             :     namespace internal
      39             :     {
      40             :         namespace
      41             :         {
      42           0 :             class ConstantValueExpression : public ExpressionNode
      43             :             {
      44             :             public:
      45           0 :                 ConstantValueExpression( double rValue ) :
      46           0 :                     maValue( rValue )
      47             :                 {
      48           0 :                 }
      49             : 
      50           0 :                 virtual double operator()( double /*t*/ ) const SAL_OVERRIDE
      51             :                 {
      52           0 :                     return maValue;
      53             :                 }
      54             : 
      55           0 :                 virtual bool isConstant() const SAL_OVERRIDE
      56             :                 {
      57           0 :                     return true;
      58             :                 }
      59             : 
      60             :             private:
      61             :                 double  maValue;
      62             :             };
      63             : 
      64           0 :             class TValueExpression : public ExpressionNode
      65             :             {
      66             :             public:
      67           0 :                 TValueExpression()
      68           0 :                 {
      69           0 :                 }
      70             : 
      71           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
      72             :                 {
      73           0 :                     return t;
      74             :                 }
      75             : 
      76           0 :                 virtual bool isConstant() const SAL_OVERRIDE
      77             :                 {
      78           0 :                     return false;
      79             :                 }
      80             :             };
      81             : 
      82             :             /** Base class for following binary functions (*+-/)
      83             : 
      84             :                 Does not pay off to have all this as a template, since
      85             :                 we'd have to hold the functor as a member (+33% object
      86             :                 size).
      87             :              */
      88           0 :             class BinaryExpressionBase : public ExpressionNode
      89             :             {
      90             :             public:
      91           0 :                 BinaryExpressionBase( const ExpressionNodeSharedPtr&    rFirstArg,
      92             :                                       const ExpressionNodeSharedPtr&    rSecondArg ) :
      93             :                     mpFirstArg( rFirstArg ),
      94           0 :                     mpSecondArg( rSecondArg )
      95             :                 {
      96           0 :                 }
      97             : 
      98           0 :                 virtual bool isConstant() const SAL_OVERRIDE
      99             :                 {
     100             :                     return
     101           0 :                         mpFirstArg->isConstant() &&
     102           0 :                         mpSecondArg->isConstant();
     103             :                 }
     104             : 
     105             :             protected:
     106             :                 ExpressionNodeSharedPtr mpFirstArg;
     107             :                 ExpressionNodeSharedPtr mpSecondArg;
     108             :             };
     109             : 
     110           0 :             class PlusExpression : public BinaryExpressionBase
     111             :             {
     112             :             public:
     113           0 :                 PlusExpression( const ExpressionNodeSharedPtr&  rFirstArg,
     114             :                                 const ExpressionNodeSharedPtr&  rSecondArg ) :
     115           0 :                     BinaryExpressionBase( rFirstArg, rSecondArg )
     116             :                 {
     117           0 :                 }
     118             : 
     119           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
     120             :                 {
     121           0 :                     return (*mpFirstArg)(t) + (*mpSecondArg)(t);
     122             :                 }
     123             :             };
     124             : 
     125           0 :             class MinusExpression : public BinaryExpressionBase
     126             :             {
     127             :             public:
     128           0 :                 MinusExpression( const ExpressionNodeSharedPtr& rFirstArg,
     129             :                                  const ExpressionNodeSharedPtr& rSecondArg ) :
     130           0 :                     BinaryExpressionBase( rFirstArg, rSecondArg )
     131             :                 {
     132           0 :                 }
     133             : 
     134           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
     135             :                 {
     136           0 :                     return (*mpFirstArg)(t) - (*mpSecondArg)(t);
     137             :                 }
     138             :             };
     139             : 
     140           0 :             class MultipliesExpression : public BinaryExpressionBase
     141             :             {
     142             :             public:
     143           0 :                 MultipliesExpression( const ExpressionNodeSharedPtr&    rFirstArg,
     144             :                                       const ExpressionNodeSharedPtr&    rSecondArg ) :
     145           0 :                     BinaryExpressionBase( rFirstArg, rSecondArg )
     146             :                 {
     147           0 :                 }
     148             : 
     149           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
     150             :                 {
     151           0 :                     return (*mpFirstArg)(t) * (*mpSecondArg)(t);
     152             :                 }
     153             :             };
     154             : 
     155           0 :             class DividesExpression : public BinaryExpressionBase
     156             :             {
     157             :             public:
     158           0 :                 DividesExpression( const ExpressionNodeSharedPtr&   rFirstArg,
     159             :                                    const ExpressionNodeSharedPtr&   rSecondArg ) :
     160           0 :                     BinaryExpressionBase( rFirstArg, rSecondArg )
     161             :                 {
     162           0 :                 }
     163             : 
     164           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
     165             :                 {
     166           0 :                     return (*mpFirstArg)(t) / (*mpSecondArg)(t);
     167             :                 }
     168             :             };
     169             : 
     170           0 :             class MinExpression : public BinaryExpressionBase
     171             :             {
     172             :             public:
     173           0 :                 MinExpression( const ExpressionNodeSharedPtr&   rFirstArg,
     174             :                                const ExpressionNodeSharedPtr&   rSecondArg ) :
     175           0 :                     BinaryExpressionBase( rFirstArg, rSecondArg )
     176             :                 {
     177           0 :                 }
     178             : 
     179           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
     180             :                 {
     181           0 :                     return ::std::min( (*mpFirstArg)(t), (*mpSecondArg)(t) );
     182             :                 }
     183             :             };
     184             : 
     185           0 :             class MaxExpression : public BinaryExpressionBase
     186             :             {
     187             :             public:
     188           0 :                 MaxExpression( const ExpressionNodeSharedPtr&   rFirstArg,
     189             :                                const ExpressionNodeSharedPtr&   rSecondArg ) :
     190           0 :                     BinaryExpressionBase( rFirstArg, rSecondArg )
     191             :                 {
     192           0 :                 }
     193             : 
     194           0 :                 virtual double operator()( double t ) const SAL_OVERRIDE
     195             :                 {
     196           0 :                     return ::std::max( (*mpFirstArg)(t), (*mpSecondArg)(t) );
     197             :                 }
     198             :             };
     199             :         }
     200             : 
     201           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createConstantValueExpression( double rConstantValue )
     202             :         {
     203           0 :             return ExpressionNodeSharedPtr( new ConstantValueExpression(rConstantValue) );
     204             :         }
     205             : 
     206           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createValueTExpression()
     207             :         {
     208           0 :             return ExpressionNodeSharedPtr( new TValueExpression() );
     209             :         }
     210             : 
     211           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createPlusExpression( const ExpressionNodeSharedPtr& rLHS,
     212             :                                                                              const ExpressionNodeSharedPtr& rRHS )
     213             :         {
     214           0 :             return ExpressionNodeSharedPtr( new PlusExpression(rLHS, rRHS) );
     215             :         }
     216             : 
     217           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createMinusExpression( const ExpressionNodeSharedPtr&    rLHS,
     218             :                                                                               const ExpressionNodeSharedPtr&    rRHS )
     219             :         {
     220           0 :             return ExpressionNodeSharedPtr( new MinusExpression(rLHS, rRHS) );
     221             :         }
     222             : 
     223           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createMultipliesExpression( const ExpressionNodeSharedPtr&   rLHS,
     224             :                                                                                    const ExpressionNodeSharedPtr&   rRHS )
     225             :         {
     226           0 :             return ExpressionNodeSharedPtr( new MultipliesExpression(rLHS, rRHS) );
     227             :         }
     228             : 
     229           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createDividesExpression( const ExpressionNodeSharedPtr&  rLHS,
     230             :                                                                                 const ExpressionNodeSharedPtr&  rRHS )
     231             :         {
     232           0 :             return ExpressionNodeSharedPtr( new DividesExpression(rLHS, rRHS) );
     233             :         }
     234             : 
     235           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createMinExpression   ( const ExpressionNodeSharedPtr&   rOuterFunction,
     236             :                                                                                const ExpressionNodeSharedPtr&   rInnerFunction )
     237             :         {
     238           0 :             return ExpressionNodeSharedPtr( new MinExpression(rOuterFunction, rInnerFunction) );
     239             :         }
     240             : 
     241           0 :         ExpressionNodeSharedPtr ExpressionNodeFactory::createMaxExpression   ( const ExpressionNodeSharedPtr&   rOuterFunction,
     242             :                                                                                const ExpressionNodeSharedPtr&   rInnerFunction )
     243             :         {
     244           0 :             return ExpressionNodeSharedPtr( new MaxExpression(rOuterFunction, rInnerFunction) );
     245             :         }
     246             : 
     247             :     }
     248             : }
     249             : 
     250             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10