LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/sc/source/core/data - columniterator.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 63 68 92.6 %
Date: 2013-07-09 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      121339 : 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      121339 :     miBlockEnd(mrCellTextAttrs.end())
      21             : {
      22      121339 :     init(nStartRow, nEndRow);
      23      121339 : }
      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        2063 : void ScColumnTextWidthIterator::next()
      36             : {
      37        2063 :     ++miDataCur;
      38        2063 :     ++mnCurPos;
      39             : 
      40        2063 :     if (miDataCur != miDataEnd)
      41             :     {
      42             :         // Stil in the same block. We're good.
      43        1473 :         checkEndRow();
      44        1473 :         return;
      45             :     }
      46             : 
      47             :     // Move to the next block.
      48        1180 :     for (++miBlockCur; miBlockCur != miBlockEnd; ++miBlockCur)
      49             :     {
      50         622 :         if (miBlockCur->type != sc::element_type_celltextattr)
      51             :         {
      52             :             // We don't iterator over this block.
      53         590 :             mnCurPos += miBlockCur->size;
      54         590 :             continue;
      55             :         }
      56             : 
      57          32 :         getDataIterators(0);
      58          32 :         checkEndRow();
      59          32 :         return;
      60             :     }
      61             : 
      62             :     // Reached the end.
      63             :     OSL_ASSERT(miBlockCur == miBlockEnd);
      64             : }
      65             : 
      66      123408 : bool ScColumnTextWidthIterator::hasCell() const
      67             : {
      68      123408 :     return miBlockCur != miBlockEnd;
      69             : }
      70             : 
      71        2064 : SCROW ScColumnTextWidthIterator::getPos() const
      72             : {
      73             :     OSL_ASSERT(miBlockCur != miBlockEnd && miDataCur != miDataEnd);
      74        2064 :     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        2036 : void ScColumnTextWidthIterator::setValue(sal_uInt16 nVal)
      84             : {
      85             :     OSL_ASSERT(miBlockCur != miBlockEnd && miDataCur != miDataEnd);
      86        2036 :     miDataCur->mnTextWidth = nVal;
      87        2036 : }
      88             : 
      89      121345 : void ScColumnTextWidthIterator::init(SCROW nStartRow, SCROW nEndRow)
      90             : {
      91      121345 :     if (!ValidRow(nStartRow) || !ValidRow(nEndRow))
      92           0 :         miBlockCur = miBlockEnd;
      93             : 
      94      121345 :     size_t nStart = static_cast<size_t>(nStartRow);
      95             : 
      96             :     // Locate the start row position.
      97      121345 :     size_t nBlockStart = 0, nBlockEnd = 0;
      98      123918 :     for (; miBlockCur != miBlockEnd; ++miBlockCur, nBlockStart = nBlockEnd)
      99             :     {
     100      123918 :         nBlockEnd = nBlockStart + miBlockCur->size; // non-inclusive end point.
     101      123918 :         if (nBlockStart <= nStart && nStart < nBlockEnd)
     102             :         {
     103             :             // Initial block is found!
     104      121345 :             break;
     105             :         }
     106             :     }
     107             : 
     108      121345 :     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      121345 :     if (miBlockCur->type == sc::element_type_celltextattr)
     114             :     {
     115             :         // This block stores text widths for non-empty cells.
     116         921 :         size_t nOffsetInBlock = nStart - nBlockStart;
     117         921 :         mnCurPos = nStart;
     118         921 :         getDataIterators(nOffsetInBlock);
     119         921 :         checkEndRow();
     120         921 :         return;
     121             :     }
     122             : 
     123             :     // Current block is not of ushort type.  Skip to the next block.
     124      120424 :     nBlockStart = nBlockEnd;
     125      120424 :     ++miBlockCur;
     126             : 
     127             :     // Look for the first ushort block.
     128      120424 :     for (; miBlockCur != miBlockEnd; ++miBlockCur, nBlockStart = nBlockEnd)
     129             :     {
     130         136 :         nBlockEnd = nBlockStart + miBlockCur->size; // non-inclusive end point.
     131         136 :         if (miBlockCur->type != sc::element_type_celltextattr)
     132           0 :             continue;
     133             : 
     134             :         // Found!
     135         136 :         mnCurPos = nBlockStart;
     136         136 :         getDataIterators(0);
     137         136 :         checkEndRow();
     138         136 :         return;
     139             :     }
     140             : 
     141             :     // Not found.
     142             :     OSL_ASSERT(miBlockCur == miBlockEnd);
     143             : }
     144             : 
     145        1089 : 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        1089 :     miDataCur = sc::celltextattr_block::begin(*miBlockCur->data);
     154        1089 :     miDataEnd = sc::celltextattr_block::end(*miBlockCur->data);
     155             : 
     156        1089 :     std::advance(miDataCur, nOffsetInBlock);
     157        1089 : }
     158             : 
     159        2562 : void ScColumnTextWidthIterator::checkEndRow()
     160             : {
     161        2562 :     if (mnCurPos <= mnEnd)
     162             :         // We're still good.
     163        4626 :         return;
     164             : 
     165             :     // We're below the end position. End the iteration.
     166         498 :     miBlockCur = miBlockEnd;
     167          93 : }
     168             : 
     169             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10