]> git.lizzy.rs Git - dragonfireclient.git/blob - src/metadata.cpp
Pass clang-format on various cpp/header files (#5559)
[dragonfireclient.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 "exceptions.h"
22 #include "gamedef.h"
23 #include "log.h"
24 #include <sstream>
25 #include "constants.h" // MAP_BLOCKSIZE
26 #include <sstream>
27
28 /*
29         Metadata
30 */
31
32 void Metadata::clear()
33 {
34         m_stringvars.clear();
35 }
36
37 bool Metadata::empty() const
38 {
39         return m_stringvars.size() == 0;
40 }
41
42 size_t Metadata::size() const
43 {
44         return m_stringvars.size();
45 }
46
47 bool Metadata::contains(const std::string &name) const
48 {
49         return m_stringvars.find(name) != m_stringvars.end();
50 }
51
52 bool Metadata::operator==(const Metadata &other) const
53 {
54         if (size() != other.size())
55                 return false;
56
57         for (StringMap::const_iterator it = m_stringvars.begin();
58                         it != m_stringvars.end(); ++it) {
59                 if (!other.contains(it->first) ||
60                                 other.getString(it->first) != it->second)
61                         return false;
62         }
63
64         return true;
65 }
66
67 const std::string &Metadata::getString(const std::string &name, u16 recursion) const
68 {
69         StringMap::const_iterator it = m_stringvars.find(name);
70         if (it == m_stringvars.end()) {
71                 static const std::string empty_string = std::string("");
72                 return empty_string;
73         }
74
75         return resolveString(it->second, recursion);
76 }
77
78 /**
79  * Sets var to name key in the metadata storage
80  *
81  * @param name
82  * @param var
83  * @return true if key-value pair is created or changed
84  */
85 bool Metadata::setString(const std::string &name, const std::string &var)
86 {
87         if (var.empty()) {
88                 m_stringvars.erase(name);
89                 return true;
90         }
91
92         StringMap::iterator it = m_stringvars.find(name);
93         if (it != m_stringvars.end() && it->second == var) {
94                 return false;
95         }
96
97         m_stringvars[name] = var;
98         return true;
99 }
100
101 const std::string &Metadata::resolveString(const std::string &str, u16 recursion) const
102 {
103         if (recursion <= 1 && str.substr(0, 2) == "${" && str[str.length() - 1] == '}') {
104                 return getString(str.substr(2, str.length() - 3), recursion + 1);
105         } else {
106                 return str;
107         }
108 }