| 
									
										
										
										
											2018-03-04 09:16:51 -08:00
										 |  |  | // Formatting library for C++ - mock allocator
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (c) 2012 - present, Victor Zverovich
 | 
					
						
							|  |  |  | // All rights reserved.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // For the license information refer to format.h.
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef FMT_MOCK_ALLOCATOR_H_
 | 
					
						
							|  |  |  | #define FMT_MOCK_ALLOCATOR_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | #include "fmt/format.h"
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #include "gmock.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename T> class mock_allocator { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |  public: | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   mock_allocator() {} | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   mock_allocator(const mock_allocator&) {} | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   typedef T value_type; | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   MOCK_METHOD1_T(allocate, T*(size_t n)); | 
					
						
							|  |  |  |   MOCK_METHOD2_T(deallocate, void(T* p, size_t n)); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename Allocator> class allocator_ref { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |  private: | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   Allocator* alloc_; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   void move(allocator_ref& other) { | 
					
						
							| 
									
										
										
										
											2018-07-22 15:07:53 -07:00
										 |  |  |     alloc_ = other.alloc_; | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |     other.alloc_ = nullptr; | 
					
						
							| 
									
										
										
										
											2018-07-22 15:07:53 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |  public: | 
					
						
							|  |  |  |   typedef typename Allocator::value_type value_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   explicit allocator_ref(Allocator* alloc = nullptr) : alloc_(alloc) {} | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   allocator_ref(const allocator_ref& other) : alloc_(other.alloc_) {} | 
					
						
							|  |  |  |   allocator_ref(allocator_ref&& other) { move(other); } | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   allocator_ref& operator=(allocator_ref&& other) { | 
					
						
							| 
									
										
										
										
											2018-07-22 15:07:53 -07:00
										 |  |  |     assert(this != &other); | 
					
						
							|  |  |  |     move(other); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |     return *this; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   allocator_ref& operator=(const allocator_ref& other) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |     alloc_ = other.alloc_; | 
					
						
							|  |  |  |     return *this; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-22 15:07:53 -07:00
										 |  |  |  public: | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   Allocator* get() const { return alloc_; } | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   value_type* allocate(size_t n) { | 
					
						
							| 
									
										
										
										
											2019-06-15 09:44:51 -07:00
										 |  |  |     return std::allocator_traits<Allocator>::allocate(*alloc_, n); | 
					
						
							| 
									
										
										
										
											2018-02-10 06:51:13 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   void deallocate(value_type* p, size_t n) { alloc_->deallocate(p, n); } | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // FMT_MOCK_ALLOCATOR_H_
 |