LCOV - code coverage report
Current view: top level - sd/source/ui/slidesorter/model - SlsPageEnumeration.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 35 59 59.3 %
Date: 2014-11-03 Functions: 14 22 63.6 %
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             : #include <sal/config.h>
      21             : 
      22             : #include <utility>
      23             : 
      24             : #include <boost/noncopyable.hpp>
      25             : 
      26             : #include "model/SlideSorterModel.hxx"
      27             : #include "model/SlsPageDescriptor.hxx"
      28             : 
      29             : using namespace ::sd::slidesorter;
      30             : using namespace ::sd::slidesorter::model;
      31             : 
      32             : namespace {
      33             : 
      34             : class PageEnumerationImpl
      35             :     : public Enumeration<SharedPageDescriptor>, private boost::noncopyable
      36             : {
      37             : public:
      38             :     inline PageEnumerationImpl (
      39             :         const SlideSorterModel& rModel,
      40             :         const PageEnumeration::PagePredicate& rPredicate);
      41             :     virtual ~PageEnumerationImpl (void);
      42             :     /** Create a copy of the called enumeration object.
      43             :     */
      44             :     virtual ::std::unique_ptr<Enumeration<SharedPageDescriptor> > Clone (void) SAL_OVERRIDE;
      45             : 
      46             :     virtual bool HasMoreElements (void) const SAL_OVERRIDE;
      47             :     virtual SharedPageDescriptor GetNextElement (void) SAL_OVERRIDE;
      48             :     virtual void Rewind (void) SAL_OVERRIDE;
      49             : 
      50             : private:
      51             :     const SlideSorterModel& mrModel;
      52             :     const PageEnumeration::PagePredicate maPredicate;
      53             :     int mnIndex;
      54             : 
      55             :     /** This constructor sets the internal page index to the given value.
      56             :         It does not call AdvanceToNextValidElement() to skip elements that
      57             :         do not fulfill Predicate.
      58             :     */
      59             :     inline PageEnumerationImpl (
      60             :         const SlideSorterModel& rModel,
      61             :         const PageEnumeration::PagePredicate& rPredicate,
      62             :         int nIndex);
      63             : 
      64             :     /** Skip all elements that do not fulfill Predicate starting with the
      65             :         one pointed to by mnIndex.
      66             :     */
      67             :     inline void AdvanceToNextValidElement (void);
      68             : };
      69             : 
      70             : } // end of anonymouse namespace
      71             : 
      72             : namespace sd { namespace slidesorter { namespace model {
      73             : 
      74        5228 : PageEnumeration PageEnumeration::Create (
      75             :     const SlideSorterModel& rModel,
      76             :     const PagePredicate& rPredicate)
      77             : {
      78             :     return PageEnumeration(::std::unique_ptr<Enumeration<SharedPageDescriptor> >(
      79        5228 :         new PageEnumerationImpl(rModel, rPredicate)));
      80             : }
      81             : 
      82        5228 : PageEnumeration::PageEnumeration (
      83             :     ::std::unique_ptr<Enumeration<SharedPageDescriptor> > && pImpl)
      84        5228 :     : mpImpl(std::move(pImpl))
      85             : {
      86        5228 : }
      87             : 
      88           0 : PageEnumeration::PageEnumeration (
      89             :     PageEnumeration& rEnumeration,
      90           0 :     bool bCloneImpl)
      91             : {
      92             : 
      93           0 :     if( bCloneImpl )
      94             :     {
      95           0 :         mpImpl = rEnumeration.mpImpl->Clone();
      96             :     }
      97             :     else
      98             :     {
      99           0 :         mpImpl = std::move(rEnumeration.mpImpl);
     100             :     }
     101           0 : }
     102             : 
     103           0 : PageEnumeration::PageEnumeration (const PageEnumeration& rEnumeration )
     104           0 : : sd::slidesorter::model::Enumeration<sd::slidesorter::model::SharedPageDescriptor>()
     105             : {
     106           0 :     mpImpl = rEnumeration.mpImpl->Clone();
     107           0 : }
     108             : 
     109        5228 : PageEnumeration::~PageEnumeration (void)
     110             : {
     111        5228 : }
     112             : 
     113           0 : PageEnumeration& PageEnumeration::operator= (
     114             :     const PageEnumeration& rEnumeration)
     115             : {
     116           0 :     mpImpl = rEnumeration.mpImpl->Clone();
     117           0 :     return *this;
     118             : }
     119             : 
     120           0 : ::std::unique_ptr<Enumeration<SharedPageDescriptor> > PageEnumeration::Clone (void)
     121             : {
     122             :     return ::std::unique_ptr<Enumeration<SharedPageDescriptor> >(
     123           0 :         new PageEnumeration (*this, true));
     124             : }
     125             : 
     126        9788 : bool PageEnumeration::HasMoreElements (void) const
     127             : {
     128        9788 :     return mpImpl->HasMoreElements();
     129             : }
     130             : 
     131        4970 : SharedPageDescriptor PageEnumeration::GetNextElement (void)
     132             : {
     133        4970 :     return mpImpl->GetNextElement();
     134             : }
     135             : 
     136           0 : void PageEnumeration::Rewind (void)
     137             : {
     138           0 :     return mpImpl->Rewind();
     139             : }
     140             : 
     141             : } } } // end of namespace ::sd::slidesorter::model
     142             : 
     143             : namespace {
     144             : 
     145        5228 : PageEnumerationImpl::PageEnumerationImpl (
     146             :     const SlideSorterModel& rModel,
     147             :     const PageEnumeration::PagePredicate& rPredicate)
     148             :     : mrModel(rModel),
     149             :       maPredicate(rPredicate),
     150        5228 :       mnIndex(0)
     151             : {
     152        5228 :     Rewind();
     153        5228 : }
     154             : 
     155           0 : PageEnumerationImpl::PageEnumerationImpl (
     156             :     const SlideSorterModel& rModel,
     157             :     const PageEnumeration::PagePredicate& rPredicate,
     158             :     int nIndex)
     159             :     : mrModel(rModel),
     160             :       maPredicate(rPredicate),
     161           0 :       mnIndex(nIndex)
     162             : {
     163           0 : }
     164             : 
     165       10456 : PageEnumerationImpl::~PageEnumerationImpl (void)
     166             : {
     167       10456 : }
     168             : 
     169             : ::std::unique_ptr<Enumeration<SharedPageDescriptor> >
     170           0 :     PageEnumerationImpl::Clone (void)
     171             : {
     172             :     return ::std::unique_ptr<Enumeration<SharedPageDescriptor> >(
     173           0 :         new PageEnumerationImpl(mrModel,maPredicate,mnIndex));
     174             : }
     175             : 
     176        9788 : bool PageEnumerationImpl::HasMoreElements (void) const
     177             : {
     178        9788 :     return (mnIndex < mrModel.GetPageCount());
     179             : }
     180             : 
     181        4970 : SharedPageDescriptor PageEnumerationImpl::GetNextElement (void)
     182             : {
     183        4970 :     SharedPageDescriptor pDescriptor (mrModel.GetPageDescriptor(mnIndex));
     184             : 
     185             :     // Go to the following valid element.
     186        4970 :     mnIndex += 1;
     187        4970 :     AdvanceToNextValidElement();
     188             : 
     189        4970 :     return pDescriptor;
     190             : }
     191             : 
     192        5228 : void PageEnumerationImpl::Rewind (void)
     193             : {
     194             :     // Go to first valid element.
     195        5228 :     mnIndex = 0;
     196        5228 :     AdvanceToNextValidElement();
     197        5228 : }
     198             : 
     199       10198 : void PageEnumerationImpl::AdvanceToNextValidElement (void)
     200             : {
     201       20396 :     while (mnIndex < mrModel.GetPageCount())
     202             :     {
     203        5128 :         SharedPageDescriptor pDescriptor (mrModel.GetPageDescriptor(mnIndex));
     204             : 
     205             :         // Test for the predicate being fulfilled.
     206        5128 :         if (pDescriptor.get()!=NULL && maPredicate(pDescriptor))
     207             :         {
     208             :             // This predicate is valid.
     209        5128 :             break;
     210             :         }
     211             :         else
     212             :         {
     213             :             // Advance to next predicate.
     214           0 :             mnIndex += 1;
     215             :         }
     216           0 :     }
     217       10198 : }
     218             : 
     219         114 : } // end of anonymous namespace
     220             : 
     221             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10