fmt/test/mock-allocator.h

78 lines
1.8 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_
2021-05-01 00:02:14 +00:00
#include <assert.h> // assert
#include <stddef.h> // size_t
#include <memory> // std::allocator_traits
#include "gmock/gmock.h"
2019-01-13 02:27:38 +00:00
template <typename T> class mock_allocator {
public:
2024-01-12 16:36:01 +00:00
using value_type = T;
using size_type = size_t;
using pointer = T*;
using const_pointer = const T*;
using reference = T&;
using const_reference = const T&;
using difference_type = ptrdiff_t;
template <typename U> struct rebind {
using other = mock_allocator<U>;
};
mock_allocator() {}
2019-01-13 02:27:38 +00:00
mock_allocator(const mock_allocator&) {}
2024-01-12 16:36:01 +00:00
MOCK_METHOD(T*, allocate, (size_t));
MOCK_METHOD(void, deallocate, (T*, size_t));
};
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:
2021-05-01 00:02:14 +00:00
using value_type = typename Allocator::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_