Add ModMetadata API (#5131)
[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 "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,
68                 u16 recursion) const
69 {
70         StringMap::const_iterator it = m_stringvars.find(name);
71         if (it == m_stringvars.end()) {
72                 static const std::string empty_string = std::string("");
73                 return empty_string;
74         }
75
76         return resolveString(it->second, recursion);
77 }
78
79 /**
80  * Sets var to name key in the metadata storage
81  *
82  * @param name
83  * @param var
84  * @return true if key-value pair is created or changed
85  */
86 bool Metadata::setString(const std::string &name, const std::string &var)
87 {
88         if (var.empty()) {
89                 m_stringvars.erase(name);
90                 return true;
91         }
92
93         StringMap::iterator it = m_stringvars.find(name);
94         if (it != m_stringvars.end() && it->second == var) {
95                 return false;
96         }
97
98         m_stringvars[name] = var;
99         return true;
100 }
101
102 const std::string &Metadata::resolveString(const std::string &str,
103                 u16 recursion) const
104 {
105         if (recursion <= 1 &&
106                         str.substr(0, 2) == "${" && str[str.length() - 1] == '}') {
107                 return getString(str.substr(2, str.length() - 3), recursion + 1);
108         } else {
109                 return str;
110         }
111 }