PMDK C++ bindings
1.8.1
This is the C++ bindings documentation for PMDK's libpmemobj.
|
Go to the documentation of this file.
38 #ifndef LIBPMEMOBJ_CPP_ALLOCATOR_HPP
39 #define LIBPMEMOBJ_CPP_ALLOCATOR_HPP
46 #include <libpmemobj/tx_base.h>
67 using reference = value_type &;
68 using const_reference =
const value_type &;
92 typename =
typename std::enable_if<
93 std::is_convertible<U *, T *>::value>::type>
110 detail::conditional_add_to_tx(
p.get());
111 new (
static_cast<void *
>(
p.get())) value_type(t);
122 template <
typename... Args>
126 detail::conditional_add_to_tx(
p.get());
127 new (
static_cast<void *
>(
p.get()))
128 value_type(std::forward<Args>(args)...);
142 if (pmemobj_tx_stage() == TX_STAGE_WORK) {
143 pmemobj_tx_add_range_direct((
void *)
p.get(),
sizeof(
p));
146 detail::destroy<value_type>(*
p);
160 using value_type = void;
184 template <
typename U>
196 template <
typename T>
202 using value_type = T;
205 using size_type = std::size_t;
206 using bool_type = bool;
236 template <
typename U,
237 typename =
typename std::enable_if<
238 std::is_convertible<U *, T *>::value>::type>
254 if (pmemobj_tx_stage() != TX_STAGE_WORK)
256 "refusing to allocate memory outside of transaction scope");
259 return pmemobj_tx_alloc(
sizeof(value_type) * cnt,
260 detail::type_num<T>());
273 if (pmemobj_tx_stage() != TX_STAGE_WORK)
275 "refusing to free memory outside of transaction scope");
277 if (pmemobj_tx_free(*
p.raw_ptr()) != 0)
279 "failed to delete persistent memory object")
280 .with_pmemobj_errormsg();
291 return PMEMOBJ_MAX_ALLOC_SIZE /
sizeof(value_type);
304 using value_type = void;
307 using reference = value_type;
308 using const_reference =
const value_type;
309 using size_type = std::size_t;
310 using bool_type = bool;
340 template <
typename U>
355 if (pmemobj_tx_stage() != TX_STAGE_WORK)
357 "refusing to allocate memory outside of transaction scope");
360 return pmemobj_tx_alloc(1 * cnt, 0);
373 if (pmemobj_tx_stage() != TX_STAGE_WORK)
375 "refusing to free memory outside of transaction scope");
377 if (pmemobj_tx_free(
p.raw()) != 0)
379 "failed to delete persistent memory object")
380 .with_pmemobj_errormsg();
391 return PMEMOBJ_MAX_ALLOC_SIZE;
400 template <
typename T,
typename T2>
412 template <
typename T,
typename OtherAllocator>
426 template <
typename T,
typename Policy = standard_alloc_policy<T>,
427 typename Traits =
object_traits<T>>
433 using AllocationPolicy = Policy;
434 using TTraits = Traits;
440 using size_type =
typename AllocationPolicy::size_type;
441 using pointer =
typename AllocationPolicy::pointer;
442 using value_type =
typename AllocationPolicy::value_type;
447 template <
typename U>
474 template <
typename U>
482 template <
typename U,
typename P,
typename T2>
484 : Policy(rhs), Traits(rhs)
498 template <
typename T,
typename P,
typename Tr,
typename T2,
typename P2,
503 return operator==(
static_cast<const P &
>(lhs),
504 static_cast<const P2 &
>(rhs));
516 template <
typename T,
typename P,
typename Tr,
typename OtherAllocator>
standard_alloc_policy(standard_alloc_policy< U > const &)
Type converting constructor.
Definition: allocator.hpp:341
void construct(pointer p, Args &&... args)
Create an object at a specific address.
Definition: allocator.hpp:124
Custom transaction error class.
Definition: pexceptions.hpp:167
allocator()=default
Defaulted constructor.
A persistent version of concurrent hash map implementation Ref: https://arxiv.org/abs/1509....
Definition: allocation_flag.hpp:44
Commonly used functionality.
(EXPERIMENTAL) Encapsulates the information about the persistent memory allocation model using PMDK's...
Definition: allocator.hpp:428
allocator(allocator< U > const &)
Type converting constructor.
Definition: allocator.hpp:475
~object_traits()=default
Defaulted destructor.
Resides on pmem class.
Definition: p.hpp:64
Rebind to a different type.
Definition: allocator.hpp:212
object_traits(object_traits< U > const &)
Type converting constructor.
Definition: allocator.hpp:94
bool operator!=(const allocator< T, P, Tr > &lhs, const OtherAllocator &rhs)
Determines if memory from another allocator can be deallocated from this one.
Definition: allocator.hpp:518
object_traits()=default
Defaulted constructor.
void destroy(pointer p)
Destroy an object based on a pointer.
Definition: allocator.hpp:139
~standard_alloc_policy()=default
Defaulted destructor.
standard_alloc_policy(standard_alloc_policy const &)
Explicit copy constructor.
Definition: allocator.hpp:333
~standard_alloc_policy()=default
Defaulted destructor.
standard_alloc_policy()=default
Defaulted constructor.
void deallocate(pointer p, size_type=0)
Deallocates storage pointed to p, which must be a value returned by a previous call to allocate that ...
Definition: allocator.hpp:271
Encapsulates object specific allocator functionality.
Definition: allocator.hpp:59
Rebind to a different type.
Definition: allocator.hpp:74
Persistent pointer class.
Definition: persistent_ptr.hpp:132
allocator(allocator< U, P, T2 > const &rhs)
Type converting constructor.
Definition: allocator.hpp:483
standard_alloc_policy(standard_alloc_policy< U > const &)
Type converting constructor.
Definition: allocator.hpp:239
object_traits()=default
Defaulted constructor.
~object_traits()=default
Defaulted destructor.
Convenience extensions for the resides on pmem property template.
bool operator==(standard_alloc_policy< T > const &, standard_alloc_policy< T2 > const &)
Determines if memory from another allocator can be deallocated from this one.
Definition: allocator.hpp:402
The allocation policy template for a given type.
Definition: allocator.hpp:197
Functions for destroying arrays.
Custom transaction error class.
Definition: pexceptions.hpp:185
object_traits(object_traits< U > const &)
Type converting constructor.
Definition: allocator.hpp:185
pointer allocate(size_type cnt, const_pointer=0)
Allocate storage for cnt bytes.
Definition: allocator.hpp:353
Rebind to a different type.
Definition: allocator.hpp:448
~allocator()=default
Defaulted destructor.
void construct(pointer p, const_reference t)
Create an object at a specific address.
Definition: allocator.hpp:107
size_type max_size() const
The largest value that can meaningfully be passed to allocate().
Definition: allocator.hpp:389
Persistent smart pointer.
standard_alloc_policy()=default
Defaulted constructor.
allocator(allocator const &rhs)
Explicit copy constructor.
Definition: allocator.hpp:467
pointer allocate(size_type cnt, const_void_pointer=0)
Allocate storage for cnt objects of type T.
Definition: allocator.hpp:252
void deallocate(pointer p, size_type=0)
Deallocates storage pointed to p, which must be a value returned by a previous call to allocate that ...
Definition: allocator.hpp:371
size_type max_size() const
The largest value that can meaningfully be passed to allocate().
Definition: allocator.hpp:289
standard_alloc_policy(standard_alloc_policy const &)
Explicit copy constructor.
Definition: allocator.hpp:229