Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
shared_ptr.h
Go to the documentation of this file.
1/* Copyright (C) 2022 Wildfire Games.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23#ifndef INCLUDED_ALLOCATORS_SHARED_PTR
24#define INCLUDED_ALLOCATORS_SHARED_PTR
25
26#include "lib/alignment.h"
27#include "lib/sysdep/rtl.h" // rtl_AllocateAligned
28
30{
31 template<class T>
33 {
34 }
35};
36
37template<class T>
38inline std::shared_ptr<T> DummySharedPtr(T* ptr)
39{
40 return std::shared_ptr<T>(ptr, DummyDeleter());
41}
42
44{
45 template<class T>
46 void operator()(T* p)
47 {
48 delete[] p;
49 }
50};
51
52// (note: uses CheckedArrayDeleter)
53std::shared_ptr<u8> Allocate(size_t size);
54
55
57{
58 template<class T>
59 void operator()(T* t)
60 {
62 }
63};
64
65template<class T>
66static inline Status AllocateAligned(std::shared_ptr<T>& p, size_t size, size_t alignment = cacheLineSize)
67{
68 void* mem = rtl_AllocateAligned(size, alignment);
69 if(!mem)
71 p.reset((T*)mem, AlignedDeleter());
72 return INFO::OK;
73}
74
75#endif // #ifndef INCLUDED_ALLOCATORS_SHARED_PTR
static const size_t cacheLineSize
Definition: alignment.h:75
const Status NO_MEM
Definition: status.h:432
const Status OK
Definition: status.h:388
void rtl_FreeAligned(void *alignedPointer)
Definition: gcc.cpp:93
void * rtl_AllocateAligned(size_t size, size_t alignment)
Definition: gcc.cpp:66
#define T(string_literal)
Definition: secure_crt.cpp:77
std::shared_ptr< T > DummySharedPtr(T *ptr)
Definition: shared_ptr.h:38
static Status AllocateAligned(std::shared_ptr< T > &p, size_t size, size_t alignment=cacheLineSize)
Definition: shared_ptr.h:66
std::shared_ptr< u8 > Allocate(size_t size)
Definition: shared_ptr.cpp:55
#define WARN_RETURN(status)
Definition: status.h:257
i64 Status
Error handling system.
Definition: status.h:173
Definition: shared_ptr.h:57
void operator()(T *t)
Definition: shared_ptr.h:59
Definition: shared_ptr.h:44
void operator()(T *p)
Definition: shared_ptr.h:46
Definition: shared_ptr.h:30
void operator()(T *)
Definition: shared_ptr.h:32