/* * 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/. * * Copyright 2016 Danny Robson */ #ifndef CRUFT_UTIL_ALLOC_RAW_ALIGNED_DIRECT_HPP #define CRUFT_UTIL_ALLOC_RAW_ALIGNED_DIRECT_HPP #include "../../../debug.hpp" #include "../../../view.hpp" #include #include namespace cruft::alloc::raw::aligned { /// wraps a child allocator and enforces a fixed alignment template class direct { public: /////////////////////////////////////////////////////////////////////// template direct (cruft::view _data, std::size_t _alignment, Args &&...args): m_successor (_data, std::forward (args)...), m_alignment (_alignment) { ; } /////////////////////////////////////////////////////////////////////// template auto allocate (std::size_t count) { return m_successor.template allocate (count, m_alignment); } //--------------------------------------------------------------------- template auto deallocate (cruft::view ptr) { return m_successor.template deallocate (ptr); } /////////////////////////////////////////////////////////////////////// constexpr auto alignment (void) const noexcept { return m_alignment; } /////////////////////////////////////////////////////////////////////// auto data (void) { return m_successor.data (); } //--------------------------------------------------------------------- auto begin (void) { return m_successor.begin (); } auto begin (void) const { return m_successor.begin (); } auto end (void) { return m_successor.end (); } auto end (void) const { return m_successor.end (); } //--------------------------------------------------------------------- auto offset (const void *ptr) const { return m_successor.offset (ptr); } /////////////////////////////////////////////////////////////////////// auto reset (void) { return m_successor.reset (); } /////////////////////////////////////////////////////////////////////// auto capacity (void) const { return m_successor.capacity (); } auto used (void) const { return m_successor.used (); } auto remain (void) const { return m_successor.remain (); } private: ChildT m_successor; std::size_t m_alignment; }; } #endif