LCOV - code coverage report
Current view: top level - sc/source/core/data - columniterator.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 63 68 92.6 %
Date: 2014-04-11 Functions: 11 12 91.7 %
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             : 
      10             : #include "columniterator.hxx"
      11             : #include "column.hxx"
      12             : #include "document.hxx"
      13             : #include "table.hxx"
      14             : 
      15      185679 : ScColumnTextWidthIterator::ScColumnTextWidthIterator(ScColumn& rCol, SCROW nStartRow, SCROW nEndRow) :
      16             :     mrCellTextAttrs(rCol.maCellTextAttrs),
      17             :     mnEnd(static_cast<size_t>(nEndRow)),
      18             :     mnCurPos(0),
      19             :     miBlockCur(mrCellTextAttrs.begin()),
      20      185679 :     miBlockEnd(mrCellTextAttrs.end())
      21             : {
      22      185679 :     init(nStartRow, nEndRow);
      23      185679 : }
      24             : 
      25           6 : ScColumnTextWidthIterator::ScColumnTextWidthIterator(ScDocument& rDoc, const ScAddress& rStartPos, SCROW nEndRow) :
      26          12 :     mrCellTextAttrs(rDoc.maTabs[rStartPos.Tab()]->aCol[rStartPos.Col()].maCellTextAttrs),
      27             :     mnEnd(static_cast<size_t>(nEndRow)),
      28             :     mnCurPos(0),
      29             :     miBlockCur(mrCellTextAttrs.begin()),
      30          18 :     miBlockEnd(mrCellTextAttrs.end())
      31             : {
      32           6 :     init(rStartPos.Row(), nEndRow);
      33           6 : }
      34             : 
      35        1839 : void ScColumnTextWidthIterator::next()
      36             : {
      37        1839 :     ++miDataCur;
      38        1839 :     ++mnCurPos;
      39             : 
      40        1839 :     if (miDataCur != miDataEnd)
      41             :     {
      42             :         // Stil in the same block. We're good.
      43        1311 :         checkEndRow();
      44        1311 :         return;
      45             :     }
      46             : 
      47             :     // Move to the next block.
      48        1056 :     for (++miBlockCur; miBlockCur != miBlockEnd; ++miBlockCur)
      49             :     {
      50         542 :         if (miBlockCur->type != sc::element_type_celltextattr)
      51             :         {
      52             :             // We don't iterator over this block.
      53         528 :             mnCurPos += miBlockCur->size;
      54         528 :             continue;
      55             :         }
      56             : 
      57          14 :         getDataIterators(0);
      58          14 :         checkEndRow();
      59          14 :         return;
      60             :     }
      61             : 
      62             :     // Reached the end.
      63             :     OSL_ASSERT(miBlockCur == miBlockEnd);
      64             : }
      65             : 
      66      187524 : bool ScColumnTextWidthIterator::hasCell() const
      67             : {
      68      187524 :     return miBlockCur != miBlockEnd;
      69             : }
      70             : 
      71        1840 : SCROW ScColumnTextWidthIterator::getPos() const
      72             : {
      73             :     OSL_ASSERT(miBlockCur != miBlockEnd && miDataCur != miDataEnd);
      74        1840 :     return static_cast<SCROW>(mnCurPos);
      75             : }
      76             : 
      77           0 : sal_uInt16 ScColumnTextWidthIterator::getValue() const
      78             : {
      79             :     OSL_ASSERT(miBlockCur != miBlockEnd && miDataCur != miDataEnd);
      80           0 :     return miDataCur->mnTextWidth;
      81             : }
      82             : 
      83        1812 : void ScColumnTextWidthIterator::setValue(sal_uInt16 nVal)
      84             : {
      85             :     OSL_ASSERT(miBlockCur != miBlockEnd && miDataCur != miDataEnd);
      86        1812 :     miDataCur->mnTextWidth = nVal;
      87        1812 : }
      88             : 
      89      185685 : void ScColumnTextWidthIterator::init(SCROW nStartRow, SCROW nEndRow)
      90             : {
      91      185685 :     if (!ValidRow(nStartRow) || !ValidRow(nEndRow))
      92           0 :         miBlockCur = miBlockEnd;
      93             : 
      94      185685 :     size_t nStart = static_cast<size_t>(nStartRow);
      95             : 
      96             :     // Locate the start row position.
      97      185685 :     size_t nBlockStart = 0, nBlockEnd = 0;
      98      187370 :     for (; miBlockCur != miBlockEnd; ++miBlockCur, nBlockStart = nBlockEnd)
      99             :     {
     100      187370 :         nBlockEnd = nBlockStart + miBlockCur->size; // non-inclusive end point.
     101      187370 :         if (nBlockStart <= nStart && nStart < nBlockEnd)
     102             :         {
     103             :             // Initial block is found!
     104      185685 :             break;
     105             :         }
     106             :     }
     107             : 
     108      185685 :     if (miBlockCur == miBlockEnd)
     109             :         // Initial block not found for whatever reason... Bail out.
     110           0 :         return;
     111             : 
     112             :     // Locate the initial row position within this block.
     113      185685 :     if (miBlockCur->type == sc::element_type_celltextattr)
     114             :     {
     115             :         // This block stores text widths for non-empty cells.
     116         802 :         size_t nOffsetInBlock = nStart - nBlockStart;
     117         802 :         mnCurPos = nStart;
     118         802 :         getDataIterators(nOffsetInBlock);
     119         802 :         checkEndRow();
     120         802 :         return;
     121             :     }
     122             : 
     123             :     // Current block is not of ushort type.  Skip to the next block.
     124      184883 :     nBlockStart = nBlockEnd;
     125      184883 :     ++miBlockCur;
     126             : 
     127             :     // Look for the first ushort block.
     128      184883 :     for (; miBlockCur != miBlockEnd; ++miBlockCur, nBlockStart = nBlockEnd)
     129             :     {
     130         124 :         nBlockEnd = nBlockStart + miBlockCur->size; // non-inclusive end point.
     131         124 :         if (miBlockCur->type != sc::element_type_celltextattr)
     132           0 :             continue;
     133             : 
     134             :         // Found!
     135         124 :         mnCurPos = nBlockStart;
     136         124 :         getDataIterators(0);
     137         124 :         checkEndRow();
     138         124 :         return;
     139             :     }
     140             : 
     141             :     // Not found.
     142             :     OSL_ASSERT(miBlockCur == miBlockEnd);
     143             : }
     144             : 
     145         940 : void ScColumnTextWidthIterator::getDataIterators(size_t nOffsetInBlock)
     146             : {
     147             :     OSL_ENSURE(miBlockCur != miBlockEnd, "block is at end position");
     148             : #if 0
     149             :     // Does not compile
     150             :     OSL_ENSURE(miBlockCur->type == sc::celltextattr_block,
     151             :                "wrong block type - unsigned short block expected.");
     152             : #endif
     153         940 :     miDataCur = sc::celltextattr_block::begin(*miBlockCur->data);
     154         940 :     miDataEnd = sc::celltextattr_block::end(*miBlockCur->data);
     155             : 
     156         940 :     std::advance(miDataCur, nOffsetInBlock);
     157         940 : }
     158             : 
     159        2251 : void ScColumnTextWidthIterator::checkEndRow()
     160             : {
     161        2251 :     if (mnCurPos <= mnEnd)
     162             :         // We're still good.
     163        4091 :         return;
     164             : 
     165             :     // We're below the end position. End the iteration.
     166         411 :     miBlockCur = miBlockEnd;
     167         102 : }
     168             : 
     169             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10