2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2016,2017,2018,2019,2020, 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.
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.
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.
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.
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.
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.
37 #include "keyvaluetree.h"
42 #include "gromacs/utility/compare.h"
43 #include "gromacs/utility/gmxassert.h"
44 #include "gromacs/utility/strconvert.h"
45 #include "gromacs/utility/stringutil.h"
46 #include "gromacs/utility/textwriter.h"
54 //! Helper function to split a KeyValueTreePath to its components
55 std::vector
<std::string
> splitPathElements(const std::string
& path
)
57 GMX_ASSERT(!path
.empty() && path
[0] == '/', "Paths to KeyValueTree should start with '/'");
58 return splitDelimitedString(path
.substr(1), '/');
63 /********************************************************************
67 KeyValueTreePath::KeyValueTreePath(const char* path
) : path_(splitPathElements(path
)) {}
69 KeyValueTreePath::KeyValueTreePath(const std::string
& path
) : path_(splitPathElements(path
)) {}
71 std::string
KeyValueTreePath::toString() const
73 return "/" + joinStrings(path_
, "/");
76 /********************************************************************
80 bool KeyValueTreeObject::hasDistinctProperties(const KeyValueTreeObject
& obj
) const
82 for (const auto& prop
: obj
.values_
)
84 if (keyExists(prop
.key()))
86 GMX_RELEASE_ASSERT(!prop
.value().isArray(), "Comparison of arrays not implemented");
87 if (prop
.value().isObject() && valueMap_
.at(prop
.key()).isObject())
89 return valueMap_
.at(prop
.key()).asObject().hasDistinctProperties(prop
.value().asObject());
97 /********************************************************************
102 void dumpKeyValueTree(TextWriter
* writer
, const KeyValueTreeObject
& tree
)
104 for (const auto& prop
: tree
.properties())
106 const auto& value
= prop
.value();
107 if (value
.isObject())
109 writer
->writeString(prop
.key());
110 writer
->writeLine(":");
111 int oldIndent
= writer
->wrapperSettings().indent();
112 writer
->wrapperSettings().setIndent(oldIndent
+ 2);
113 dumpKeyValueTree(writer
, value
.asObject());
114 writer
->wrapperSettings().setIndent(oldIndent
);
118 int indent
= writer
->wrapperSettings().indent();
119 writer
->writeString(formatString("%*s", -(33 - indent
), prop
.key().c_str()));
120 writer
->writeString(" = ");
123 writer
->writeString("[");
124 for (const auto& elem
: value
.asArray().values())
126 GMX_RELEASE_ASSERT(!elem
.isObject() && !elem
.isArray(),
127 "Arrays of objects not currently implemented");
128 writer
->writeString(" ");
129 writer
->writeString(simpleValueToString(elem
));
131 writer
->writeString(" ]");
135 writer
->writeString(simpleValueToString(value
));
143 /********************************************************************
144 * Key value tree comparison
153 CompareHelper(TextWriter
* writer
, real ftol
, real abstol
) :
160 void compareObjects(const KeyValueTreeObject
& obj1
, const KeyValueTreeObject
& obj2
)
162 for (const auto& prop1
: obj1
.properties())
164 currentPath_
.append(prop1
.key());
165 if (obj2
.keyExists(prop1
.key()))
167 compareValues(prop1
.value(), obj2
[prop1
.key()]);
171 handleMissingKeyInSecondObject(prop1
.value());
173 currentPath_
.pop_back();
175 for (const auto& prop2
: obj2
.properties())
177 currentPath_
.append(prop2
.key());
178 if (!obj1
.keyExists(prop2
.key()))
180 handleMissingKeyInFirstObject(prop2
.value());
182 currentPath_
.pop_back();
187 void compareValues(const KeyValueTreeValue
& value1
, const KeyValueTreeValue
& value2
)
189 if (value1
.type() == value2
.type())
191 if (value1
.isObject())
193 compareObjects(value1
.asObject(), value2
.asObject());
195 else if (value1
.isArray())
197 GMX_RELEASE_ASSERT(false, "Array comparison not implemented");
199 else if (!areSimpleValuesOfSameTypeEqual(value1
, value2
))
201 writer_
->writeString(currentPath_
.toString());
202 writer_
->writeLine(formatString(" (%s - %s)", simpleValueToString(value1
).c_str(),
203 simpleValueToString(value2
).c_str()));
206 else if ((value1
.isType
<double>() && value2
.isType
<float>())
207 || (value1
.isType
<float>() && value2
.isType
<double>()))
209 const bool firstIsDouble
= value1
.isType
<double>();
210 const float v1
= firstIsDouble
? value1
.cast
<double>() : value1
.cast
<float>();
211 const float v2
= firstIsDouble
? value2
.cast
<float>() : value2
.cast
<double>();
212 if (!equal_float(v1
, v2
, ftol_
, abstol_
))
214 writer_
->writeString(currentPath_
.toString());
215 writer_
->writeLine(formatString(" (%e - %e)", v1
, v2
));
220 handleMismatchingTypes(value1
, value2
);
224 bool areSimpleValuesOfSameTypeEqual(const KeyValueTreeValue
& value1
, const KeyValueTreeValue
& value2
)
226 GMX_ASSERT(value1
.type() == value2
.type(), "Caller should ensure that types are equal");
227 if (value1
.isType
<bool>())
229 return value1
.cast
<bool>() == value2
.cast
<bool>();
231 else if (value1
.isType
<int>())
233 return value1
.cast
<int>() == value2
.cast
<int>();
235 else if (value1
.isType
<int64_t>())
237 return value1
.cast
<int64_t>() == value2
.cast
<int64_t>();
239 else if (value1
.isType
<double>())
241 return equal_double(value1
.cast
<double>(), value2
.cast
<double>(), ftol_
, abstol_
);
243 else if (value1
.isType
<float>())
245 return equal_float(value1
.cast
<float>(), value2
.cast
<float>(), ftol_
, abstol_
);
247 else if (value1
.isType
<std::string
>())
249 return value1
.cast
<std::string
>() == value2
.cast
<std::string
>();
253 GMX_RELEASE_ASSERT(false, "Unknown value type");
258 void handleMismatchingTypes(const KeyValueTreeValue
& /* value1 */,
259 const KeyValueTreeValue
& /* value2 */)
261 writer_
->writeString(currentPath_
.toString());
262 writer_
->writeString(" type mismatch");
265 void handleMissingKeyInFirstObject(const KeyValueTreeValue
& value
)
267 const std::string message
= formatString("%s (missing - %s)", currentPath_
.toString().c_str(),
268 formatValueForMissingMessage(value
).c_str());
269 writer_
->writeLine(message
);
271 void handleMissingKeyInSecondObject(const KeyValueTreeValue
& value
)
273 const std::string message
= formatString("%s (%s - missing)", currentPath_
.toString().c_str(),
274 formatValueForMissingMessage(value
).c_str());
275 writer_
->writeLine(message
);
278 static std::string
formatValueForMissingMessage(const KeyValueTreeValue
& value
)
280 if (value
.isObject() || value
.isArray())
284 return simpleValueToString(value
);
287 KeyValueTreePath currentPath_
;
296 void compareKeyValueTrees(TextWriter
* writer
,
297 const KeyValueTreeObject
& tree1
,
298 const KeyValueTreeObject
& tree2
,
302 CompareHelper
helper(writer
, ftol
, abstol
);
303 helper
.compareObjects(tree1
, tree2
);