fmt/test/mock-allocator.h

61 lines
1.4 KiB
C
Raw Normal View History

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.
#ifndef FMT_MOCK_ALLOCATOR_H_
#define FMT_MOCK_ALLOCATOR_H_
#include "fmt/format.h"
2019-01-13 02:27:38 +00:00
#include "gmock.h"
2019-01-13 02:27:38 +00:00
template <typename T> class mock_allocator {
public:
mock_allocator() {}
2019-01-13 02:27:38 +00:00
mock_allocator(const mock_allocator&) {}
typedef T value_type;
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));
};
2019-01-13 02:27:38 +00:00
template <typename Allocator> class allocator_ref {
private:
2019-01-13 02:27:38 +00:00
Allocator* alloc_;
2019-01-13 02:27:38 +00:00
void move(allocator_ref& other) {
2018-07-22 22:07:53 +00:00
alloc_ = other.alloc_;
other.alloc_ = nullptr;
2018-07-22 22:07:53 +00:00
}
public:
typedef typename Allocator::value_type value_type;
explicit allocator_ref(Allocator* alloc = nullptr) : alloc_(alloc) {}
2019-01-13 02:27:38 +00:00
allocator_ref(const allocator_ref& other) : alloc_(other.alloc_) {}
allocator_ref(allocator_ref&& other) { move(other); }
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);
return *this;
}
2019-01-13 02:27:38 +00:00
allocator_ref& operator=(const allocator_ref& other) {
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_; }
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); }
};
#endif // FMT_MOCK_ALLOCATOR_H_