clang-tidy: override
[alexxy/gromacs.git] / src / gromacs / options / valuestore.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2016,2017,2018, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \file
36  * \brief
37  * Declares implementations for IOptionValueStore.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_options
41  */
42 #ifndef GMX_OPTIONS_VALUESTORE_H
43 #define GMX_OPTIONS_VALUESTORE_H
44
45 #include <vector>
46
47 #include "gromacs/options/ivaluestore.h"
48 #include "gromacs/utility/arrayref.h"
49
50 namespace gmx
51 {
52
53 template <typename T>
54 class OptionValueStorePlain : public IOptionValueStore<T>
55 {
56     public:
57         OptionValueStorePlain(T *store, int *storeCount, int initialCount)
58             : count_(initialCount), store_(store), storeCount_(storeCount)
59         {
60         }
61
62         int valueCount() override { return count_; }
63         ArrayRef<T> values() override { return arrayRefFromArray(store_, count_); }
64         void clear() override
65         {
66             count_ = 0;
67             if (storeCount_ != nullptr)
68             {
69                 *storeCount_ = count_;
70             }
71         }
72         void reserve(size_t /*count*/) override
73         {
74         }
75         void append(const T &value) override
76         {
77             store_[count_] = value;
78             ++count_;
79             if (storeCount_ != nullptr)
80             {
81                 *storeCount_ = count_;
82             }
83         }
84
85     private:
86         int                          count_;
87         T                           *store_;
88         int                         *storeCount_;
89 };
90
91 template <typename T>
92 class OptionValueStoreVector : public IOptionValueStore<T>
93 {
94     public:
95         explicit OptionValueStoreVector(std::vector<T> *store) : store_(store) {}
96
97         int valueCount() override { return static_cast<int>(store_->size()); }
98         ArrayRef<T> values() override { return *store_; }
99         void clear() override { store_->clear(); }
100         void reserve(size_t count) override
101         {
102             store_->reserve(store_->size() + count);
103         }
104         void append(const T &value) override
105         {
106             store_->push_back(value);
107         }
108
109     private:
110         std::vector<T> *store_;
111 };
112
113 // Specialization that works around std::vector<bool> specialities.
114 template <>
115 class OptionValueStoreVector<bool> : public IOptionValueStore<bool>
116 {
117     public:
118         explicit OptionValueStoreVector(std::vector<bool> *store) : store_(store)
119         {
120         }
121
122         int valueCount() override { return static_cast<int>(store_->size()); }
123         ArrayRef<bool> values() override
124         {
125             return arrayRefFromArray(reinterpret_cast<bool *>(boolStore_.data()),
126                                      boolStore_.size());
127         }
128         void clear() override
129         {
130             boolStore_.clear();
131             store_->clear();
132         }
133         void reserve(size_t count) override
134         {
135             boolStore_.reserve(boolStore_.size() + count);
136             store_->reserve(store_->size() + count);
137         }
138         void append(const bool &value) override
139         {
140             boolStore_.push_back({value});
141             store_->push_back(value);
142         }
143
144     private:
145         struct Bool
146         {
147             bool value;
148         };
149
150         std::vector<Bool>  boolStore_;
151         std::vector<bool> *store_;
152 };
153
154 /*! \internal
155  * \brief
156  * Value storage that does not store anywhere.
157  *
158  * This is needed because even though the values are not stored anywhere, the
159  * code still expects to access them later through valueCount() and values().
160  *
161  * \ingroup module_options
162  */
163 template <typename T>
164 class OptionValueStoreNull : public IOptionValueStore<T>
165 {
166     public:
167         OptionValueStoreNull() : store_(&vector_) {}
168
169         int valueCount() override { return store_.valueCount(); }
170         ArrayRef<T> values() override { return store_.values(); }
171         void clear() override { store_.clear(); }
172         void reserve(size_t count) override { store_.reserve(count); }
173         void append(const T &value) override { store_.append(value); }
174
175     private:
176         std::vector<T>            vector_;
177         OptionValueStoreVector<T> store_;
178 };
179
180 } // namespace gmx
181
182 #endif