Permit tests to specify the refdata filename
[alexxy/gromacs.git] / src / testutils / refdata_impl.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2015,2016,2017,2018,2019, 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 /*! \internal \file
36  * \brief
37  * Declares internal data structures for the reference data framework.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_testutils
41  */
42 #ifndef GMX_TESTUTILS_REFDATA_IMPL_H
43 #define GMX_TESTUTILS_REFDATA_IMPL_H
44
45 #include <list>
46 #include <memory>
47 #include <string>
48
49 #include "gromacs/utility/gmxassert.h"
50
51 namespace gmx
52 {
53 namespace test
54 {
55
56 class ReferenceDataEntry
57 {
58 public:
59     typedef std::unique_ptr<ReferenceDataEntry> EntryPointer;
60     typedef std::list<EntryPointer>             ChildList;
61     typedef ChildList::const_iterator           ChildIterator;
62
63     static EntryPointer createRoot() { return std::make_unique<ReferenceDataEntry>("", ""); }
64
65     ReferenceDataEntry(const char* type, const char* id) :
66         type_(type),
67         id_(id != nullptr ? id : ""),
68         isTextBlock_(false),
69         hasBeenChecked_(false),
70         correspondingOutputEntry_(nullptr)
71     {
72     }
73
74     const std::string&  type() const { return type_; }
75     const std::string&  id() const { return id_; }
76     bool                isCompound() const { return !children_.empty(); }
77     bool                isTextBlock() const { return isTextBlock_; }
78     const std::string&  value() const { return value_; }
79     const ChildList&    children() const { return children_; }
80     ReferenceDataEntry* correspondingOutputEntry() const { return correspondingOutputEntry_; }
81
82     bool idMatches(const char* id) const
83     {
84         return (id == nullptr && id_.empty()) || (id != nullptr && id_ == id);
85     }
86
87     ChildIterator findChild(const char* id, const ChildIterator& prev) const
88     {
89         if (children_.empty())
90         {
91             return children_.end();
92         }
93         ChildIterator child          = prev;
94         bool          wrappingSearch = true;
95         if (child != children_.end())
96         {
97             if (id == nullptr && (*child)->id().empty())
98             {
99                 wrappingSearch = false;
100                 ++child;
101                 if (child == children_.end())
102                 {
103                     return children_.end();
104                 }
105             }
106         }
107         else
108         {
109             child          = children_.begin();
110             wrappingSearch = false;
111         }
112         do
113         {
114             if ((*child)->idMatches(id))
115             {
116                 return child;
117             }
118             ++child;
119             if (wrappingSearch && child == children_.end())
120             {
121                 child = children_.begin();
122             }
123         } while (child != children_.end() && child != prev);
124         return children_.end();
125     }
126     bool isValidChild(const ChildIterator& prev) const { return prev != children_.end(); }
127
128     bool hasBeenChecked() const { return hasBeenChecked_; }
129     void setChecked() { hasBeenChecked_ = true; }
130
131     void setCheckedIncludingChildren()
132     {
133         setChecked();
134         for (const auto& child : children_)
135         {
136             child->setCheckedIncludingChildren();
137         }
138     }
139
140     EntryPointer cloneToOutputEntry()
141     {
142         EntryPointer entry(new ReferenceDataEntry(type_.c_str(), id_.c_str()));
143         setCorrespondingOutputEntry(entry.get());
144         entry->setValue(value());
145         entry->isTextBlock_ = isTextBlock_;
146         return entry;
147     }
148
149     void setValue(const std::string& value)
150     {
151         GMX_RELEASE_ASSERT(!isCompound(), "Cannot have a value for a compound entry");
152         value_ = value;
153     }
154     void setTextBlockValue(const std::string& value)
155     {
156         GMX_RELEASE_ASSERT(!isCompound(), "Cannot have a value for a compound entry");
157         value_       = value;
158         isTextBlock_ = true;
159     }
160     void makeCompound(const char* type)
161     {
162         type_.assign(type);
163         value_.clear();
164         isTextBlock_ = false;
165     }
166     void setCorrespondingOutputEntry(ReferenceDataEntry* entry)
167     {
168         GMX_RELEASE_ASSERT(correspondingOutputEntry_ == nullptr, "Output entry already exists");
169         correspondingOutputEntry_ = entry;
170     }
171     ChildIterator addChild(EntryPointer child)
172     {
173         GMX_RELEASE_ASSERT(isCompound() || value_.empty(),
174                            "Cannot make an entry with a value to a compound");
175         return children_.insert(children_.end(), move(child));
176     }
177
178 private:
179     std::string         type_;
180     std::string         id_;
181     std::string         value_;
182     bool                isTextBlock_;
183     ChildList           children_;
184     bool                hasBeenChecked_;
185     ReferenceDataEntry* correspondingOutputEntry_;
186 };
187
188 } // namespace test
189 } // namespace gmx
190
191 #endif