#include "cetl/pf17/buffer_memory_resource.hpp"
|
| UnsynchronizedBufferMemoryResource (void *buffer, std::size_t buffer_size_bytes, cetl::pf17::pmr::memory_resource *upstream, std::size_t upstream_max_size_bytes) noexcept |
|
| UnsynchronizedBufferMemoryResource (void *buffer, std::size_t buffer_size_bytes) noexcept |
|
| UnsynchronizedBufferMemoryResource (const UnsynchronizedBufferMemoryResource &)=delete |
|
UnsynchronizedBufferMemoryResource & | operator= (const UnsynchronizedBufferMemoryResource &)=delete |
|
| UnsynchronizedBufferMemoryResource (UnsynchronizedBufferMemoryResource &&) noexcept=default |
|
UnsynchronizedBufferMemoryResource & | operator= (UnsynchronizedBufferMemoryResource &&)=delete |
|
void * | data () noexcept |
|
const void * | data () const noexcept |
|
std::size_t | size () const noexcept |
|
| memory_resource ()=default |
|
| memory_resource (const memory_resource &rhs)=default |
|
virtual | ~memory_resource ()=default |
|
memory_resource & | operator= (const memory_resource &rhs)=default |
|
void * | allocate (std::size_t size_bytes, std::size_t alignment=alignof(std::max_align_t)) |
|
void | deallocate (void *p, std::size_t size_bytes, std::size_t alignment=alignof(std::max_align_t)) |
|
bool | is_equal (const memory_resource &rhs) const noexcept |
|
std::size_t | max_size () const noexcept |
|
void * | reallocate (void *ptr, std::size_t old_size_bytes, std::size_t new_size_bytes, std::size_t alignment=alignof(std::max_align_t)) |
|
Implementation of cetl::pf17::pmr::memory_resource that uses cetl::pmr::UnsynchronizedBufferMemoryResourceDelegate as the internal implementation.
- Examples
- Using this class with STL containers:
Message a{aAlloc};
const std::size_t item_cout = SmallMessageSizeBytes /
sizeof(
decltype(aAlloc)::value_type);
a.data.reserve(item_cout);
std::cout <<
"BEFORE -> data size = " << a.data.size() <<
", data capacity : " << a.data.capacity() <<
std::endl;
{
a.data.push_back(i);
}
std::cout <<
"AFTER -> data size = " << a.data.size() <<
", data capacity : " << a.data.capacity() <<
std::endl;
Creating a small-buffer optimization using this class:
SmallMessageSizeBytes,
cetl::pf17::pmr::new_delete_resource(),
Message b{bAlloc};
std::cout <<
"BEFORE -> data size = " << b.data.size() <<
", data capacity : " << b.data.capacity() <<
std::endl;
const std::size_t item_cout = (SmallMessageSizeBytes /
sizeof(
decltype(bAlloc)::value_type)) * 100;
{
b.data.push_back(i);
}
std::cout <<
"AFTER -> data size = " << b.data.size() <<
", data capacity : " << b.data.capacity() <<
std::endl;
Using two std::pmr::UnsynchronizedBufferMemoryResourceDelegate instances with std::vector:
SmallMessageSizeBytes,
&cUpstreamResource,
Message c{cAlloc};
std::cout <<
"BEFORE -> data size = " << c.data.size() <<
", data capacity : " << c.data.capacity() <<
std::endl;
const std::size_t item_cout = SmallMessageSizeBytes /
sizeof(
decltype(cAlloc)::value_type);
{
c.data.push_back(i);
}
std::cout <<
"AFTER -> data size = " << c.data.size() <<
", data capacity : " << c.data.capacity() <<
std::endl;
(See full example here...)
◆ UnsynchronizedBufferMemoryResource() [1/2]
◆ UnsynchronizedBufferMemoryResource() [2/2]
cetl::pf17::pmr::UnsynchronizedBufferMemoryResource::UnsynchronizedBufferMemoryResource |
( |
void * | buffer, |
|
|
std::size_t | buffer_size_bytes ) |
|
inlinenoexcept |
◆ data() [1/2]
const void * cetl::pf17::pmr::UnsynchronizedBufferMemoryResource::data |
( |
| ) |
const |
|
inlinenoexcept |
Direct access to the internal data. It is generally not safe to use this memory directly.
◆ data() [2/2]
void * cetl::pf17::pmr::UnsynchronizedBufferMemoryResource::data |
( |
| ) |
|
|
inlinenoexcept |
Direct access to the internal data. It is generally not safe to use this memory directly.
References data().
Referenced by data().
◆ size()
std::size_t cetl::pf17::pmr::UnsynchronizedBufferMemoryResource::size |
( |
| ) |
const |
|
inlinenoexcept |
The size in bytes of the internal buffer.
The documentation for this class was generated from the following file: