LibreOffice Module o3tl (master) 1
vector_pool.hxx
Go to the documentation of this file.
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#ifndef INCLUDED_O3TL_VECTOR_POOL_HXX
21#define INCLUDED_O3TL_VECTOR_POOL_HXX
22
23#include <utility>
24#include <vector>
25
26namespace o3tl
27{
28 namespace detail
29 {
30 template<typename ValueType, class Container> class simple_pool_impl :
31 public Container
32 {
33 typedef typename Container::value_type value_type;
34 std::ptrdiff_t mnFirstFreeIndex;
35
36 public:
39 {}
40
41 std::ptrdiff_t alloc()
42 {
43 return store(ValueType());
44 }
45
46 std::ptrdiff_t store(const ValueType& rCopy)
47 {
48 if( mnFirstFreeIndex != -1 )
49 {
50 std::ptrdiff_t nIdx=mnFirstFreeIndex;
51 mnFirstFreeIndex = this->at(mnFirstFreeIndex).nextFree;
52 this->at(nIdx).value = rCopy;
53 this->at(nIdx).nextFree = -1;
54
55 return nIdx;
56 }
57 else
58 {
59 this->push_back(value_type(rCopy));
60 return this->size()-1;
61 }
62 }
63
64 void free( std::ptrdiff_t nIdx )
65 {
66 this->at(nIdx).nextFree = mnFirstFreeIndex;
67 mnFirstFreeIndex = nIdx;
68 }
69
70 const ValueType& get( std::ptrdiff_t nIdx ) const
71 {
72 return this->operator[](nIdx).value;
73 }
74 ValueType& get( std::ptrdiff_t nIdx )
75 {
76 return this->operator[](nIdx).value;
77 }
78 };
79
80 template< typename ValueType > struct struct_from_value
81 {
82 struct type
83 {
84 type() :
85 value(),
86 nextFree(-1)
87 {}
88 explicit type( ValueType val ) :
89 value(std::move(val)),
90 nextFree(-1)
91 {}
92
94 std::ptrdiff_t nextFree;
95 };
96 };
97 }
98
115 template<typename ValueType> struct vector_pool :
116 public detail::simple_pool_impl<ValueType,
117 std::vector<typename detail::struct_from_value<ValueType>::type > >
118 {};
119}
120
121#endif /* INCLUDED_O3TL_VECTOR_POOL_HXX */
122
123/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Container::value_type value_type
Definition: vector_pool.hxx:33
void free(std::ptrdiff_t nIdx)
Definition: vector_pool.hxx:64
ValueType & get(std::ptrdiff_t nIdx)
Definition: vector_pool.hxx:74
std::ptrdiff_t store(const ValueType &rCopy)
Definition: vector_pool.hxx:46
const ValueType & get(std::ptrdiff_t nIdx) const
Definition: vector_pool.hxx:70
size
ValueType