android: Update app-specific/MIME type icons
[LibreOffice.git] / include / oox / helper / refvector.hxx
blob208d34be1efbf5cd37886cc1f343bab8d46feb07
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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
23 #include <algorithm>
24 #include <functional>
25 #include <memory>
26 #include <utility>
27 #include <vector>
29 #include <sal/types.h>
31 namespace oox {
34 /** Template for a vector of ref-counted objects with additional accessor functions.
36 An instance of the class RefVector< Type > stores elements of the type
37 std::shared_ptr< Type >. The new accessor functions has() and get()
38 work correctly for indexes out of the current range, there is no need to
39 check the passed index before.
41 template< typename ObjType >
42 class RefVector : public ::std::vector< std::shared_ptr< ObjType > >
44 public:
45 typedef ::std::vector< std::shared_ptr< ObjType > > container_type;
46 typedef typename container_type::value_type value_type;
47 typedef typename container_type::size_type size_type;
49 public:
51 /** Returns a reference to the object with the passed index, or 0 on error. */
52 value_type get( sal_Int32 nIndex ) const
54 if( const value_type* pxRef = getRef( nIndex ) ) return *pxRef;
55 return value_type();
58 /** Calls the passed functor for every contained object, automatically
59 skips all elements that are empty references. */
60 template< typename FunctorType >
61 void forEach( FunctorType aFunctor ) const
63 ::std::for_each( this->begin(), this->end(), ForEachFunctor< FunctorType >( aFunctor ) );
66 /** Calls the passed member function of ObjType on every contained object,
67 automatically skips all elements that are empty references. */
68 template< typename FuncType >
69 void forEachMem( FuncType pFunc ) const
71 forEach( ::std::bind( pFunc, std::placeholders::_1 ) );
74 /** Calls the passed member function of ObjType on every contained object,
75 automatically skips all elements that are empty references. */
76 template< typename FuncType, typename ParamType >
77 void forEachMem( FuncType pFunc, ParamType aParam ) const
79 forEach( ::std::bind( pFunc, std::placeholders::_1, aParam ) );
82 /** Calls the passed member function of ObjType on every contained object,
83 automatically skips all elements that are empty references. */
84 template< typename FuncType, typename ParamType1, typename ParamType2 >
85 void forEachMem( FuncType pFunc, ParamType1 aParam1, ParamType2 aParam2 ) const
87 forEach( ::std::bind( pFunc, std::placeholders::_1, aParam1, aParam2 ) );
90 /** Calls the passed member function of ObjType on every contained object,
91 automatically skips all elements that are empty references. */
92 template< typename FuncType, typename ParamType1, typename ParamType2, typename ParamType3 >
93 void forEachMem( FuncType pFunc, ParamType1 aParam1, ParamType2 aParam2, ParamType3 aParam3 ) const
95 forEach( ::std::bind( pFunc, std::placeholders::_1, aParam1, aParam2, aParam3 ) );
98 /** Calls the passed functor for every contained object. Passes the index as
99 first argument and the object reference as second argument to rFunctor. */
100 template< typename FunctorType >
101 void forEachWithIndex( const FunctorType& rFunctor ) const
103 ::std::for_each( this->begin(), this->end(), ForEachFunctorWithIndex< FunctorType >( rFunctor ) );
106 /** Calls the passed member function of ObjType on every contained object.
107 Passes the vector index as first argument to the member function. */
108 template< typename FuncType, typename ParamType1, typename ParamType2 >
109 void forEachMemWithIndex( FuncType pFunc, ParamType1 aParam1, ParamType2 aParam2 ) const
111 forEachWithIndex( ::std::bind( pFunc, std::placeholders::_2, std::placeholders::_1, aParam1, aParam2 ) );
114 /** Searches for an element by using the passed functor that takes a
115 constant reference of the object type (const ObjType&). */
116 template< typename FunctorType >
117 value_type findIf( const FunctorType& rFunctor ) const
119 typename container_type::const_iterator aIt = ::std::find_if( this->begin(), this->end(), FindFunctor< FunctorType >( rFunctor ) );
120 return (aIt == this->end()) ? value_type() : *aIt;
123 private:
124 template< typename FunctorType >
125 struct ForEachFunctor
127 FunctorType maFunctor;
128 explicit ForEachFunctor( FunctorType aFunctor ) : maFunctor(std::move( aFunctor )) {}
129 void operator()( const value_type& rxValue ) { if( rxValue.get() ) maFunctor( *rxValue ); }
132 template< typename FunctorType >
133 struct ForEachFunctorWithIndex
135 FunctorType maFunctor;
136 sal_Int32 mnIndex;
137 explicit ForEachFunctorWithIndex( FunctorType aFunctor ) : maFunctor(std::move( aFunctor )), mnIndex( 0 ) {}
138 void operator()( const value_type& rxValue ) {
139 if( rxValue.get() ) maFunctor( mnIndex, *rxValue );
140 ++mnIndex;
144 template< typename FunctorType >
145 struct FindFunctor
147 FunctorType maFunctor;
148 explicit FindFunctor( const FunctorType& rFunctor ) : maFunctor( rFunctor ) {}
149 bool operator()( const value_type& rxValue ) { return rxValue.get() && maFunctor( *rxValue ); }
152 const value_type* getRef( sal_Int32 nIndex ) const
154 return ((0 <= nIndex) && (static_cast< size_type >( nIndex ) < this->size())) ?
155 &(*this)[ static_cast< size_type >( nIndex ) ] : nullptr;
160 } // namespace oox
162 #endif
164 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */