Devin Jeanpierre | 59e4d35 | 2017-07-21 03:44:36 -0700 | [diff] [blame] | 1 | // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 2 | // Distributed under MIT license, or public domain if desired and |
| 3 | // recognized in your jurisdiction. |
| 4 | // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE |
| 5 | |
Jordan Bayles | 9704ced | 2019-11-14 09:38:11 -0800 | [diff] [blame] | 6 | #ifndef JSON_ALLOCATOR_H_INCLUDED |
| 7 | #define JSON_ALLOCATOR_H_INCLUDED |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 8 | |
| 9 | #include <cstring> |
| 10 | #include <memory> |
| 11 | |
Jessica Clarke | 42e892d | 2022-01-12 21:27:16 +0000 | [diff] [blame^] | 12 | #pragma pack(push) |
| 13 | #pragma pack() |
Sergiy80 | d6e666f | 2016-12-03 22:29:14 +0200 | [diff] [blame] | 14 | |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 15 | namespace Json { |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 16 | template <typename T> class SecureAllocator { |
| 17 | public: |
| 18 | // Type definitions |
| 19 | using value_type = T; |
| 20 | using pointer = T*; |
| 21 | using const_pointer = const T*; |
| 22 | using reference = T&; |
| 23 | using const_reference = const T&; |
| 24 | using size_type = std::size_t; |
| 25 | using difference_type = std::ptrdiff_t; |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 26 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 27 | /** |
| 28 | * Allocate memory for N items using the standard allocator. |
| 29 | */ |
| 30 | pointer allocate(size_type n) { |
| 31 | // allocate using "global operator new" |
| 32 | return static_cast<pointer>(::operator new(n * sizeof(T))); |
| 33 | } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 34 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 35 | /** |
| 36 | * Release memory which was allocated for N items at pointer P. |
| 37 | * |
| 38 | * The memory block is filled with zeroes before being released. |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 39 | */ |
Christian Ledergerber | 30170d6 | 2020-10-13 17:55:58 +0200 | [diff] [blame] | 40 | void deallocate(pointer p, size_type n) { |
| 41 | // memset_s is used because memset may be optimized away by the compiler |
| 42 | memset_s(p, n * sizeof(T), 0, n * sizeof(T)); |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 43 | // free using "global operator delete" |
| 44 | ::operator delete(p); |
| 45 | } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 46 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 47 | /** |
| 48 | * Construct an item in-place at pointer P. |
| 49 | */ |
| 50 | template <typename... Args> void construct(pointer p, Args&&... args) { |
| 51 | // construct using "placement new" and "perfect forwarding" |
| 52 | ::new (static_cast<void*>(p)) T(std::forward<Args>(args)...); |
| 53 | } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 54 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 55 | size_type max_size() const { return size_t(-1) / sizeof(T); } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 56 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 57 | pointer address(reference x) const { return std::addressof(x); } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 58 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 59 | const_pointer address(const_reference x) const { return std::addressof(x); } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 60 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 61 | /** |
| 62 | * Destroy an item in-place at pointer P. |
| 63 | */ |
| 64 | void destroy(pointer p) { |
| 65 | // destroy using "explicit destructor" |
| 66 | p->~T(); |
| 67 | } |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 68 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 69 | // Boilerplate |
| 70 | SecureAllocator() {} |
| 71 | template <typename U> SecureAllocator(const SecureAllocator<U>&) {} |
| 72 | template <typename U> struct rebind { using other = SecureAllocator<U>; }; |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 73 | }; |
| 74 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 75 | template <typename T, typename U> |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 76 | bool operator==(const SecureAllocator<T>&, const SecureAllocator<U>&) { |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 77 | return true; |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 78 | } |
| 79 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 80 | template <typename T, typename U> |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 81 | bool operator!=(const SecureAllocator<T>&, const SecureAllocator<U>&) { |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 82 | return false; |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 83 | } |
| 84 | |
Billy Donahue | b5e1fe8 | 2018-05-20 16:55:27 -0400 | [diff] [blame] | 85 | } // namespace Json |
dawesc | f8674c6 | 2016-03-06 11:42:11 -0600 | [diff] [blame] | 86 | |
Sergiy80 | d6e666f | 2016-12-03 22:29:14 +0200 | [diff] [blame] | 87 | #pragma pack(pop) |
| 88 | |
Jordan Bayles | 9704ced | 2019-11-14 09:38:11 -0800 | [diff] [blame] | 89 | #endif // JSON_ALLOCATOR_H_INCLUDED |