| 
									
										
										
										
											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-06-06 16:57:59 +03:00
										 |  |  | #include "gmock.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | #include "fmt/format.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | template <typename T> | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | class mock_allocator { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |  public: | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   mock_allocator() {} | 
					
						
							|  |  |  |   mock_allocator(const mock_allocator &) {} | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   typedef T value_type; | 
					
						
							|  |  |  |   MOCK_METHOD1_T(allocate, T* (std::size_t n)); | 
					
						
							|  |  |  |   MOCK_METHOD2_T(deallocate, void (T* p, std::size_t n)); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename Allocator> | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | class allocator_ref { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |  private: | 
					
						
							|  |  |  |   Allocator *alloc_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   void move(allocator_ref &other) { | 
					
						
							| 
									
										
										
										
											2018-07-22 15:07:53 -07:00
										 |  |  |     alloc_ = other.alloc_; | 
					
						
							| 
									
										
										
										
											2018-10-24 06:34:28 -07:00
										 |  |  |     other.alloc_ = FMT_NULL; | 
					
						
							| 
									
										
										
										
											2018-07-22 15:07:53 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |  public: | 
					
						
							|  |  |  |   typedef typename Allocator::value_type value_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-24 06:34:28 -07:00
										 |  |  |   explicit allocator_ref(Allocator *alloc = FMT_NULL) : alloc_(alloc) {} | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07: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; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07: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: | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   Allocator *get() const { return alloc_; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-10 06:51:13 -08:00
										 |  |  |   value_type* allocate(std::size_t n) { | 
					
						
							|  |  |  |     return fmt::internal::allocate(*alloc_, n); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   void deallocate(value_type* p, std::size_t n) { alloc_->deallocate(p, n); } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // FMT_MOCK_ALLOCATOR_H_
 |