LCOV - code coverage report
Current view: top level - sc/source/core/inc - jumpmatrix.hxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 12 0.0 %
Date: 2014-04-14 Functions: 0 2 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             : #ifndef SC_JUMPMATRIX_HXX
      21             : #define SC_JUMPMATRIX_HXX
      22             : 
      23             : #include "formula/token.hxx"
      24             : #include "formula/errorcodes.hxx"
      25             : #include <vector>
      26             : #include "types.hxx"
      27             : #include "address.hxx"
      28             : 
      29             : typedef ::std::vector< formula::FormulaToken*> ScTokenVec;
      30             : 
      31             : struct ScJumpMatrixEntry
      32             : {
      33             :     double  fBool;      // 0:= false  1:= true   also if no-path
      34             :                         // other values may contain error conditions like NAN and INF
      35             :     short   nStart;     // start of path (actually start-1, see formula::FormulaTokenIterator)
      36             :     short   nNext;      // next after path
      37             :                         // jump path exists if nStart != nNext, else no path
      38             :     short   nStop;      // optional stop of path (nPC < nStop)
      39             : 
      40           0 :     void    SetJump( double fBoolP, short nStartP, short nNextP, short nStopP )
      41             :                 {
      42           0 :                     fBool = fBoolP;
      43           0 :                     nStart = nStartP;
      44           0 :                     nNext = nNextP;
      45           0 :                     nStop = nStopP;
      46           0 :                 }
      47           0 :     void    GetJump( double& rBool, short& rStart, short& rNext, short& rStop )
      48             :                 {
      49           0 :                     rBool = fBool;
      50           0 :                     rStart = nStart;
      51           0 :                     rNext = nNext;
      52           0 :                     rStop = nStop;
      53           0 :                 }
      54             : };
      55             : 
      56             : class ScJumpMatrix
      57             : {
      58             :     ScJumpMatrixEntry*  pJump;      // the jumps
      59             :     ScMatrixRef         pMat;       // the results
      60             :     ScTokenVec*         pParams;    // parameter stack
      61             :     SCSIZE              nCols;
      62             :     SCSIZE              nRows;
      63             :     SCSIZE              nCurCol;
      64             :     SCSIZE              nCurRow;
      65             :     SCSIZE              nResMatCols;
      66             :     SCSIZE              nResMatRows;
      67             :     bool                bStarted;
      68             : 
      69             :     // Buffer result ranges to be able to set a range of identically typed
      70             :     // values at the result matrix in order to avoid multiple shrinks and
      71             :     // growths of multi_type_vector segments, which is a major performance
      72             :     // bottleneck, see fdo#72929
      73             :     ::std::vector< svl::SharedString >  mvBufferStrings;
      74             :     ::std::vector< double >             mvBufferDoubles;
      75             :     SCSIZE                              mnBufferCol;
      76             :     SCSIZE                              mnBufferRowStart;
      77             :     SCSIZE                              mnBufferEmptyCount;
      78             :     SCSIZE                              mnBufferEmptyPathCount;
      79             : 
      80             :     enum BufferType
      81             :     {
      82             :         BUFFER_NONE,
      83             :         BUFFER_DOUBLE,
      84             :         BUFFER_STRING,
      85             :         BUFFER_EMPTY,
      86             :         BUFFER_EMPTYPATH
      87             :     };
      88             : 
      89             :     /** Flush different types or non-consecutive buffers. */
      90             :     void FlushBufferOtherThan( BufferType eType, SCSIZE nC, SCSIZE nR );
      91             : 
      92             :     // not implemented, prevent usage
      93             :     ScJumpMatrix( const ScJumpMatrix& );
      94             :     ScJumpMatrix& operator=( const ScJumpMatrix& );
      95             : 
      96             : public:
      97             :     ScJumpMatrix( SCSIZE nColsP, SCSIZE nRowsP );
      98             :     ~ScJumpMatrix();
      99             :     void GetDimensions( SCSIZE& rCols, SCSIZE& rRows ) const;
     100             :     void SetJump( SCSIZE nCol, SCSIZE nRow, double fBool, short nStart, short nNext, short nStop = SHRT_MAX );
     101             :     void GetJump( SCSIZE nCol, SCSIZE nRow, double& rBool, short& rStart, short& rNext, short& rStop ) const;
     102             :     void SetAllJumps( double fBool, short nStart, short nNext, short nStop = SHRT_MAX );
     103             :     void SetJumpParameters( ScTokenVec* p );
     104             :     const ScTokenVec* GetJumpParameters() const;
     105             :     bool HasResultMatrix() const;
     106             :     ScMatrix* GetResultMatrix();        ///< also applies pending buffered values
     107             :     void GetPos( SCSIZE& rCol, SCSIZE& rRow ) const;
     108             :     bool Next( SCSIZE& rCol, SCSIZE& rRow );
     109             :     void GetResMatDimensions( SCSIZE& rCols, SCSIZE& rRows );
     110             :     void SetNewResMat( SCSIZE nNewCols, SCSIZE nNewRows );
     111             : 
     112             :     void PutResultDouble( double fVal, SCSIZE nC, SCSIZE nR );
     113             :     void PutResultString( const svl::SharedString& rStr, SCSIZE nC, SCSIZE nR );
     114             :     void PutResultEmpty( SCSIZE nC, SCSIZE nR );
     115             :     void PutResultEmptyPath( SCSIZE nC, SCSIZE nR );
     116             : };
     117             : 
     118             : #endif // SC_JUMPMATRIX_HXX
     119             : 
     120             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10