Code modernization: src/n*, src/o* (#6280)
[oweals/minetest.git] / src / metadata.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "metadata.h"
21 #include "log.h"
22
23 /*
24         Metadata
25 */
26
27 void Metadata::clear()
28 {
29         m_stringvars.clear();
30 }
31
32 bool Metadata::empty() const
33 {
34         return m_stringvars.empty();
35 }
36
37 size_t Metadata::size() const
38 {
39         return m_stringvars.size();
40 }
41
42 bool Metadata::contains(const std::string &name) const
43 {
44         return m_stringvars.find(name) != m_stringvars.end();
45 }
46
47 bool Metadata::operator==(const Metadata &other) const
48 {
49         if (size() != other.size())
50                 return false;
51
52         for (const auto &sv : m_stringvars) {
53                 if (!other.contains(sv.first) || other.getString(sv.first) != sv.second)
54                         return false;
55         }
56
57         return true;
58 }
59
60 const std::string &Metadata::getString(const std::string &name, u16 recursion) const
61 {
62         StringMap::const_iterator it = m_stringvars.find(name);
63         if (it == m_stringvars.end()) {
64                 static const std::string empty_string = std::string("");
65                 return empty_string;
66         }
67
68         return resolveString(it->second, recursion);
69 }
70
71 /**
72  * Sets var to name key in the metadata storage
73  *
74  * @param name
75  * @param var
76  * @return true if key-value pair is created or changed
77  */
78 bool Metadata::setString(const std::string &name, const std::string &var)
79 {
80         if (var.empty()) {
81                 m_stringvars.erase(name);
82                 return true;
83         }
84
85         StringMap::iterator it = m_stringvars.find(name);
86         if (it != m_stringvars.end() && it->second == var) {
87                 return false;
88         }
89
90         m_stringvars[name] = var;
91         return true;
92 }
93
94 const std::string &Metadata::resolveString(const std::string &str, u16 recursion) const
95 {
96         if (recursion <= 1 && str.substr(0, 2) == "${" && str[str.length() - 1] == '}') {
97                 return getString(str.substr(2, str.length() - 3), recursion + 1);
98         }
99
100         return str;
101 }