1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_OOX_HELPER_REFVECTOR_HXX
21 #define INCLUDED_OOX_HELPER_REFVECTOR_HXX
28 #include <sal/types.h>
33 /** Template for a vector of ref-counted objects with additional accessor functions.
35 An instance of the class RefVector< Type > stores elements of the type
36 std::shared_ptr< Type >. The new accessor functions has() and get()
37 work correctly for indexes out of the current range, there is no need to
38 check the passed index before.
40 template< typename ObjType
>
41 class RefVector
: public ::std::vector
< std::shared_ptr
< ObjType
> >
44 typedef ::std::vector
< std::shared_ptr
< ObjType
> > container_type
;
45 typedef typename
container_type::value_type value_type
;
46 typedef typename
container_type::size_type size_type
;
50 /** Returns a reference to the object with the passed index, or 0 on error. */
51 value_type
get( sal_Int32 nIndex
) const
53 if( const value_type
* pxRef
= getRef( nIndex
) ) return *pxRef
;
57 /** Calls the passed functor for every contained object, automatically
58 skips all elements that are empty references. */
59 template< typename FunctorType
>
60 void forEach( FunctorType aFunctor
) const
62 std::for_each(this->begin(), this->end(), ForEachFunctor
<FunctorType
>(std::move(aFunctor
)));
65 /** Calls the passed member function of ObjType on every contained object,
66 automatically skips all elements that are empty references. */
67 template< typename FuncType
>
68 void forEachMem( FuncType pFunc
) const
70 forEach( ::std::bind( pFunc
, std::placeholders::_1
) );
73 /** Calls the passed member function of ObjType on every contained object,
74 automatically skips all elements that are empty references. */
75 template< typename FuncType
, typename ParamType
>
76 void forEachMem( FuncType pFunc
, ParamType aParam
) const
78 forEach( ::std::bind( pFunc
, std::placeholders::_1
, aParam
) );
81 /** Calls the passed member function of ObjType on every contained object,
82 automatically skips all elements that are empty references. */
83 template< typename FuncType
, typename ParamType1
, typename ParamType2
>
84 void forEachMem( FuncType pFunc
, ParamType1 aParam1
, ParamType2 aParam2
) const
86 forEach( ::std::bind( pFunc
, std::placeholders::_1
, aParam1
, aParam2
) );
89 /** Calls the passed member function of ObjType on every contained object,
90 automatically skips all elements that are empty references. */
91 template< typename FuncType
, typename ParamType1
, typename ParamType2
, typename ParamType3
>
92 void forEachMem( FuncType pFunc
, ParamType1 aParam1
, ParamType2 aParam2
, ParamType3 aParam3
) const
94 forEach( ::std::bind( pFunc
, std::placeholders::_1
, aParam1
, aParam2
, aParam3
) );
97 /** Calls the passed functor for every contained object. Passes the index as
98 first argument and the object reference as second argument to rFunctor. */
99 template< typename FunctorType
>
100 void forEachWithIndex( const FunctorType
& rFunctor
) const
102 ::std::for_each( this->begin(), this->end(), ForEachFunctorWithIndex
< FunctorType
>( rFunctor
) );
105 /** Calls the passed member function of ObjType on every contained object.
106 Passes the vector index as first argument to the member function. */
107 template< typename FuncType
, typename ParamType1
, typename ParamType2
>
108 void forEachMemWithIndex( FuncType pFunc
, ParamType1 aParam1
, ParamType2 aParam2
) const
110 forEachWithIndex( ::std::bind( pFunc
, std::placeholders::_2
, std::placeholders::_1
, aParam1
, aParam2
) );
113 /** Searches for an element by using the passed functor that takes a
114 constant reference of the object type (const ObjType&). */
115 template< typename FunctorType
>
116 value_type
findIf( const FunctorType
& rFunctor
) const
118 typename
container_type::const_iterator aIt
= ::std::find_if( this->begin(), this->end(), FindFunctor
< FunctorType
>( rFunctor
) );
119 return (aIt
== this->end()) ? value_type() : *aIt
;
123 template< typename FunctorType
>
124 struct ForEachFunctor
126 FunctorType maFunctor
;
127 explicit ForEachFunctor( FunctorType aFunctor
) : maFunctor(std::move( aFunctor
)) {}
128 void operator()( const value_type
& rxValue
) { if( rxValue
.get() ) maFunctor( *rxValue
); }
131 template< typename FunctorType
>
132 struct ForEachFunctorWithIndex
134 FunctorType maFunctor
;
136 explicit ForEachFunctorWithIndex( FunctorType aFunctor
) : maFunctor(std::move( aFunctor
)), mnIndex( 0 ) {}
137 void operator()( const value_type
& rxValue
) {
138 if( rxValue
.get() ) maFunctor( mnIndex
, *rxValue
);
143 template< typename FunctorType
>
146 FunctorType maFunctor
;
147 explicit FindFunctor( const FunctorType
& rFunctor
) : maFunctor( rFunctor
) {}
148 bool operator()( const value_type
& rxValue
) { return rxValue
.get() && maFunctor( *rxValue
); }
151 const value_type
* getRef( sal_Int32 nIndex
) const
153 return ((0 <= nIndex
) && (static_cast< size_type
>( nIndex
) < this->size())) ?
154 &(*this)[ static_cast< size_type
>( nIndex
) ] : nullptr;
163 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */