2015-11-13 17:17:37 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-11-13 17:17:37 +11:00
|
|
|
*
|
2018-04-20 15:03:35 +10:00
|
|
|
* Copyright 2015-2018 Danny Robson <danny@nerdcruft.net>
|
2015-11-13 17:17:37 +11:00
|
|
|
*/
|
|
|
|
|
2018-04-20 15:03:35 +10:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../view.hpp"
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2016-02-25 13:17:14 +11:00
|
|
|
#include <cstddef>
|
2018-02-28 11:49:13 +11:00
|
|
|
#include <utility>
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-04-20 15:03:35 +10:00
|
|
|
// C++11 allocator concept conformant(ish) allocator adaptor, going from our
|
2015-11-13 17:17:37 +11:00
|
|
|
// allocator interface to that of the STL and friends.
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::alloc {
|
2018-04-09 18:33:12 +10:00
|
|
|
template <typename ValueT, typename BackingT>
|
2015-11-13 17:17:37 +11:00
|
|
|
class allocator {
|
|
|
|
public:
|
2018-02-28 11:49:13 +11:00
|
|
|
typedef ValueT value_type;
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-03-07 17:56:42 +11:00
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
template <typename ...Args>
|
2018-02-28 11:49:13 +11:00
|
|
|
explicit allocator (Args&& ...args):
|
2018-03-07 17:56:42 +11:00
|
|
|
m_backing (std::forward<Args> (args)...)
|
2018-02-28 11:49:13 +11:00
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::view<ValueT*>
|
2018-03-07 17:57:10 +11:00
|
|
|
allocate (size_t count)
|
2018-02-28 11:49:13 +11:00
|
|
|
{
|
2018-04-20 15:03:35 +10:00
|
|
|
return {
|
|
|
|
reinterpret_cast<ValueT*> (
|
|
|
|
m_backing.template allocate (
|
|
|
|
sizeof (ValueT) * count,
|
|
|
|
alignof (ValueT)
|
|
|
|
)
|
|
|
|
),
|
|
|
|
count
|
|
|
|
};
|
2018-02-28 11:49:13 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
deallocate (ValueT *t, size_t count)
|
|
|
|
{
|
2018-03-07 17:57:10 +11:00
|
|
|
return m_backing.template deallocate (t, sizeof (ValueT) * count);
|
2018-02-28 11:49:13 +11:00
|
|
|
}
|
2015-11-13 17:17:37 +11:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
2018-02-28 11:49:13 +11:00
|
|
|
BackingT &m_backing;
|
2015-11-13 17:17:37 +11:00
|
|
|
};
|
2018-04-09 18:33:12 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// convenience type-inferring constructor for allocators.
|
|
|
|
template <typename ValueT, typename BackingT>
|
|
|
|
auto
|
|
|
|
make_allocator (BackingT &backing)
|
|
|
|
{
|
|
|
|
return allocator<ValueT,BackingT> (backing);
|
|
|
|
}
|
2016-10-10 17:58:59 +11:00
|
|
|
}
|