Add EnumIndexedVector.
[dcpomatic.git] / src / lib / enum_indexed_vector.h
1 /*
2     Copyright (C) 2022 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_ENUM_INDEXED_VECTOR_H
23 #define DCPOMATIC_ENUM_INDEXED_VECTOR_H
24
25
26 #include <vector>
27
28
29 template <typename Type, typename Enum>
30 class EnumIndexedVector
31 {
32 public:
33         EnumIndexedVector()
34                 : _data(static_cast<int>(Enum::COUNT))
35         {}
36
37         EnumIndexedVector(EnumIndexedVector const& other)
38                 : _data(other._data)
39         {}
40
41         EnumIndexedVector& operator=(EnumIndexedVector const& other) {
42                 if (this == &other) {
43                         return *this;
44                 }
45
46                 _data = other._data;
47                 return *this;
48         }
49
50         typename std::vector<Type>::reference operator[](int index) {
51                 return _data[index];
52         }
53
54         typename std::vector<Type>::const_reference operator[](int index) const {
55                 return _data[index];
56         }
57
58         typename std::vector<Type>::reference operator[](Enum index) {
59                 return _data[static_cast<int>(index)];
60         }
61
62         typename std::vector<Type>::const_reference operator[](Enum index) const {
63                 return _data[static_cast<int>(index)];
64         }
65
66         void clear() {
67                 std::fill(_data.begin(), _data.end(), {});
68         }
69
70         typename std::vector<Type>::const_iterator begin() const {
71                 return _data.begin();
72         }
73
74         typename std::vector<Type>::const_iterator end() const {
75                 return _data.end();
76         }
77
78         typename std::vector<Type>::iterator begin() {
79                 return _data.begin();
80         }
81
82         typename std::vector<Type>::iterator end() {
83                 return _data.end();
84         }
85
86 private:
87         std::vector<Type> _data;
88 };
89
90
91 #endif
92