]> git.lizzy.rs Git - minetest.git/blob - src/database/database-dummy.cpp
Fix two memleak reports from Coverity (#12466)
[minetest.git] / src / database / database-dummy.cpp
1 /*
2 Minetest
3 Copyright (C) 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 /*
21 Dummy database class
22 */
23
24 #include "database-dummy.h"
25 #include "remoteplayer.h"
26
27
28 bool Database_Dummy::saveBlock(const v3s16 &pos, const std::string &data)
29 {
30         m_database[getBlockAsInteger(pos)] = data;
31         return true;
32 }
33
34 void Database_Dummy::loadBlock(const v3s16 &pos, std::string *block)
35 {
36         s64 i = getBlockAsInteger(pos);
37         auto it = m_database.find(i);
38         if (it == m_database.end()) {
39                 *block = "";
40                 return;
41         }
42
43         *block = it->second;
44 }
45
46 bool Database_Dummy::deleteBlock(const v3s16 &pos)
47 {
48         m_database.erase(getBlockAsInteger(pos));
49         return true;
50 }
51
52 void Database_Dummy::listAllLoadableBlocks(std::vector<v3s16> &dst)
53 {
54         dst.reserve(m_database.size());
55         for (std::map<s64, std::string>::const_iterator x = m_database.begin();
56                         x != m_database.end(); ++x) {
57                 dst.push_back(getIntegerAsBlock(x->first));
58         }
59 }
60
61 void Database_Dummy::savePlayer(RemotePlayer *player)
62 {
63         m_player_database.insert(player->getName());
64 }
65
66 bool Database_Dummy::loadPlayer(RemotePlayer *player, PlayerSAO *sao)
67 {
68         return m_player_database.find(player->getName()) != m_player_database.end();
69 }
70
71 bool Database_Dummy::removePlayer(const std::string &name)
72 {
73         m_player_database.erase(name);
74         return true;
75 }
76
77 void Database_Dummy::listPlayers(std::vector<std::string> &res)
78 {
79         for (const auto &player : m_player_database) {
80                 res.emplace_back(player);
81         }
82 }
83
84 bool Database_Dummy::getModEntries(const std::string &modname, StringMap *storage)
85 {
86         const auto mod_pair = m_mod_meta_database.find(modname);
87         if (mod_pair != m_mod_meta_database.cend()) {
88                 for (const auto &pair : mod_pair->second) {
89                         (*storage)[pair.first] = pair.second;
90                 }
91         }
92         return true;
93 }
94
95 bool Database_Dummy::setModEntry(const std::string &modname,
96         const std::string &key, const std::string &value)
97 {
98         auto mod_pair = m_mod_meta_database.find(modname);
99         if (mod_pair == m_mod_meta_database.end()) {
100                 m_mod_meta_database[modname] = StringMap({{key, value}});
101         } else {
102                 mod_pair->second[key] = value;
103         }
104         return true;
105 }
106
107 bool Database_Dummy::removeModEntry(const std::string &modname, const std::string &key)
108 {
109         auto mod_pair = m_mod_meta_database.find(modname);
110         if (mod_pair != m_mod_meta_database.end())
111                 return mod_pair->second.erase(key) > 0;
112         return false;
113 }
114
115 void Database_Dummy::listMods(std::vector<std::string> *res)
116 {
117         for (const auto &pair : m_mod_meta_database) {
118                 res->push_back(pair.first);
119         }
120 }