2018-03-04 17:16:51 +00: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 15:48:16 +00:00
|
|
|
|
|
|
|
#ifndef FMT_MOCK_ALLOCATOR_H_
|
|
|
|
#define FMT_MOCK_ALLOCATOR_H_
|
|
|
|
|
2021-05-01 00:02:14 +00:00
|
|
|
#include <assert.h> // assert
|
|
|
|
#include <stddef.h> // size_t
|
|
|
|
|
|
|
|
#include <memory> // std::allocator_traits
|
|
|
|
|
2021-04-28 22:59:43 +00:00
|
|
|
#include "gmock/gmock.h"
|
2014-09-29 15:48:16 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename T> class mock_allocator {
|
2014-09-29 15:48:16 +00:00
|
|
|
public:
|
2018-09-19 15:55:45 +00:00
|
|
|
mock_allocator() {}
|
2019-01-13 02:27:38 +00:00
|
|
|
mock_allocator(const mock_allocator&) {}
|
2021-05-01 00:02:14 +00:00
|
|
|
using value_type = T;
|
2020-05-07 22:59:46 +00:00
|
|
|
MOCK_METHOD1_T(allocate, T*(size_t n));
|
|
|
|
MOCK_METHOD2_T(deallocate, void(T* p, size_t n));
|
2014-09-29 15:48:16 +00:00
|
|
|
};
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Allocator> class allocator_ref {
|
2014-09-29 15:48:16 +00:00
|
|
|
private:
|
2019-01-13 02:27:38 +00:00
|
|
|
Allocator* alloc_;
|
2014-09-29 15:48:16 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
void move(allocator_ref& other) {
|
2018-07-22 22:07:53 +00:00
|
|
|
alloc_ = other.alloc_;
|
2019-05-30 14:01:31 +00:00
|
|
|
other.alloc_ = nullptr;
|
2018-07-22 22:07:53 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 15:48:16 +00:00
|
|
|
public:
|
2021-05-01 00:02:14 +00:00
|
|
|
using value_type = typename Allocator::value_type;
|
2014-09-29 15:48:16 +00:00
|
|
|
|
2019-05-30 14:01:31 +00:00
|
|
|
explicit allocator_ref(Allocator* alloc = nullptr) : alloc_(alloc) {}
|
2014-09-29 15:48:16 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
allocator_ref(const allocator_ref& other) : alloc_(other.alloc_) {}
|
|
|
|
allocator_ref(allocator_ref&& other) { move(other); }
|
2014-09-29 15:48:16 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
allocator_ref& operator=(allocator_ref&& other) {
|
2018-07-22 22:07:53 +00:00
|
|
|
assert(this != &other);
|
|
|
|
move(other);
|
2014-09-29 15:48:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
allocator_ref& operator=(const allocator_ref& other) {
|
2014-09-29 15:48:16 +00:00
|
|
|
alloc_ = other.alloc_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-07-22 22:07:53 +00:00
|
|
|
public:
|
2019-01-13 02:27:38 +00:00
|
|
|
Allocator* get() const { return alloc_; }
|
2014-09-29 15:48:16 +00:00
|
|
|
|
2020-05-07 22:59:46 +00:00
|
|
|
value_type* allocate(size_t n) {
|
2019-06-15 16:44:51 +00:00
|
|
|
return std::allocator_traits<Allocator>::allocate(*alloc_, n);
|
2018-02-10 14:51:13 +00:00
|
|
|
}
|
2020-05-07 22:59:46 +00:00
|
|
|
void deallocate(value_type* p, size_t n) { alloc_->deallocate(p, n); }
|
2014-09-29 15:48:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FMT_MOCK_ALLOCATOR_H_
|