blob: 210cb908a7c622aef440064a2651e7a0fb69087b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#pragma once
#ifndef MARISA_SCOPED_ARRAY_H_
#define MARISA_SCOPED_ARRAY_H_
#include "base.h"
namespace marisa {
template <typename T>
class scoped_array {
public:
scoped_array() : array_(NULL) {}
explicit scoped_array(T *array) : array_(array) {}
~scoped_array() {
delete [] array_;
}
void reset(T *array = NULL) {
MARISA_THROW_IF((array != NULL) && (array == array_), MARISA_RESET_ERROR);
scoped_array(array).swap(*this);
}
T &operator[](std::size_t i) const {
MARISA_DEBUG_IF(array_ == NULL, MARISA_STATE_ERROR);
return array_[i];
}
T *get() const {
return array_;
}
void clear() {
scoped_array().swap(*this);
}
void swap(scoped_array &rhs) {
marisa::swap(array_, rhs.array_);
}
private:
T *array_;
// Disallows copy and assignment.
scoped_array(const scoped_array &);
scoped_array &operator=(const scoped_array &);
};
} // namespace marisa
#endif // MARISA_SCOPED_ARRAY_H_
|