blob: 1844ad43e00c762fd2d71de48fe5c94b06b54d0d [file] [log] [blame]
peizhen guo410e0e12014-08-12 13:24:14 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014, Regents of the University of California
4 *
5 * This file is part of NSL (NDN Signature Logger).
6 * See AUTHORS.md for complete list of NSL authors and contributors.
7 *
8 * NSL is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NSL, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Peizhen Guo <patrick.guopz@gmail.com>
20 */
21
22#include "merkle-tree-sqlite3.hpp"
23#include <stdlib.h>
24#include <boost/filesystem.hpp>
25
26
27namespace nsl {
28
29static const std::string INIT_SUBTREE_TABLE = "\
30CREATE TABLE IF NOT EXISTS \n \
31 SubTree( \n \
32 subTree_sequence INTEGER, \n \
33 subTree_level INTEGER, \n \
34 subTree_info BLOB, \n \
35 \
36 PRIMARY KEY (subTree_sequence, subTree_level) \n \
37 ); \n \
38 \
39CREATE INDEX subTree_index ON SubTree(subTree_sequence); \n \
40";
41
42static const std::string INIT_LEAF_TABLE = "\
43CREATE TABLE IF NOT EXISTS \n \
44 Leaf( \n \
45 leaf_sequence INTEGER, \n \
46 leaf_info BLOB, \n \
47 \
48 PRIMARY KEY (leaf_sequence) \n \
49 ); \n \
50 \
51CREATE INDEX leaf_index ON Leaf(leaf_sequence); \n \
52";
53
54/**
55 * A utility function to call the normal sqlite3_bind_text where the value and length are
56 * value.c_str() and value.size().
57 */
58static int sqlite3_bind_text(sqlite3_stmt* statement,
59 int index,
60 const std::string& value,
61 void(*destructor)(void*))
62{
63 return sqlite3_bind_text(statement, index, value.c_str(), value.size(), destructor);
64}
65
66
67MerkleTreeSqlite3::MerkleTreeSqlite3()
68{
69 boost::filesystem::path identityDir = boost::filesystem::path("/Users/GPZ/Develop/nslDB");
70 boost::filesystem::create_directories(identityDir);
71
72 /// @todo Add define for windows/unix in wscript. The following may completely fail on windows
73 int res = sqlite3_open_v2((identityDir / "nsl-merkle-tree.db").c_str(), &m_database,
74 SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,
75#ifdef NDN_CXX_DISABLE_SQLITE3_FS_LOCKING
76 "unix-dotfile"
77#else
78 0
79#endif
80 );
81
82 if (res != SQLITE_OK)
83 std::cout << "DB cannot be opened/created";
84
85 //Check if SubTree table exists;
86 sqlite3_stmt* statement;
87 sqlite3_prepare_v2(m_database,
88 "SELECT name FROM sqlite_master WHERE type='table' And name='SubTree'",
89 -1, &statement, 0);
90 res = sqlite3_step(statement);
91
92 bool SubTreeTableExists = false;
93 if (res == SQLITE_ROW)
94 SubTreeTableExists = true;
95
96 sqlite3_finalize(statement);
97
98 if (!SubTreeTableExists)
99 {
100 char* errorMessage = 0;
101 res = sqlite3_exec(m_database, INIT_SUBTREE_TABLE.c_str(), NULL, NULL, &errorMessage);
102
103 if (res != SQLITE_OK && errorMessage != 0)
104 {
105 sqlite3_free(errorMessage);
106 }
107 }
108
109 //Check if Leaf table exists;
110 sqlite3_prepare_v2(m_database,
111 "SELECT name FROM sqlite_master WHERE type='table' And name='Leaf'",
112 -1, &statement, 0);
113 res = sqlite3_step(statement);
114
115 bool LeafTableExists = false;
116 if (res == SQLITE_ROW)
117 LeafTableExists = true;
118
119 sqlite3_finalize(statement);
120
121 if (!LeafTableExists)
122 {
123 char* errorMessage = 0;
124 res = sqlite3_exec(m_database, INIT_LEAF_TABLE.c_str(), NULL, NULL, &errorMessage);
125
126 if (res != SQLITE_OK && errorMessage != 0)
127 {
128 sqlite3_free(errorMessage);
129 }
130 }
131
132}
133
134
135MerkleTreeSqlite3::~MerkleTreeSqlite3()
136{
137}
138
139
140void
141MerkleTreeSqlite3::addSubTree(SubTreePtr oldSubTree)
142{
143 Index old_idx = oldSubTree->getRootIndex();
144 std::string old_info = oldSubTree->encoding();
145
146 sqlite3_stmt* statement;
147 sqlite3_prepare_v2(m_database,
148 "INSERT OR REPLACE INTO SubTree \
149 (subTree_sequence, subTree_level, subTree_info) \
150 values (?, ?, ?)",
151 -1, &statement, 0);
152 sqlite3_bind_int64(statement, 1, old_idx.number);
153 sqlite3_bind_int64(statement, 2, old_idx.level);
154 sqlite3_bind_text(statement, 3, old_info, SQLITE_TRANSIENT);
155 sqlite3_step(statement);
156 sqlite3_finalize(statement);
157}
158
159
160std::string
161MerkleTreeSqlite3::getSubTree(Index rootIndex)
162{
163 sqlite3_stmt* statement;
164 sqlite3_prepare_v2(m_database,
165 "SELECT subTree_info FROM SubTree \
166 WHERE subTree_sequence=? AND subTree_level=?",
167 -1, &statement, 0);
168 sqlite3_bind_int64(statement, 1, rootIndex.number);
169 sqlite3_bind_int64(statement, 2, rootIndex.level);
170 int res = sqlite3_step(statement);
171 std::string result;
172 if (res == SQLITE_ROW)
173 {
174 result = std::string(reinterpret_cast<const char *>(sqlite3_column_text(statement, 0)),
175 sqlite3_column_bytes(statement, 0));
176 sqlite3_finalize(statement);
177 return result;
178 }
179 else
180 {
181 sqlite3_finalize(statement);
182 return result;
183 }
184}
185
186
187bool
188MerkleTreeSqlite3::doesSubTreeExist(Index rootIndex)
189{
190 bool result = false;
191 sqlite3_stmt* statement;
192 sqlite3_prepare_v2(m_database,
193 "SELECT count(*) FROM SubTree WHERE subTree_sequence=? AND subTree_level=?",
194 -1, &statement, 0);
195 sqlite3_bind_int64(statement, 1, rootIndex.number);
196 sqlite3_bind_int64(statement, 2, rootIndex.level);
197 int res = sqlite3_step(statement);
198 if (res == SQLITE_ROW)
199 {
200 int countAll = sqlite3_column_int(statement, 0);
201 if (countAll > 0)
202 result = true;
203 }
204 sqlite3_finalize(statement);
205 return result;
206}
207
208
209void
210MerkleTreeSqlite3::deleteSubTree(Index rootIndex)
211{
212 sqlite3_stmt* stmt;
213 sqlite3_prepare_v2(m_database, "DELETE FROM SubTree WHERE subTree_sequence=? AND subTree_level=?",
214 -1, &stmt, 0);
215 sqlite3_bind_int64(stmt, 1, rootIndex.number);
216 sqlite3_bind_int64(stmt, 2, rootIndex.level);
217 sqlite3_step(stmt);
218 sqlite3_finalize(stmt);
219}
220
221
222void
223MerkleTreeSqlite3::getAllSubTree(std::vector<std::string> subTreeInfoList)
224{
225 sqlite3_stmt* stmt;
226 sqlite3_prepare_v2(m_database,
227 "SELECT subTree_info FROM SubTree",
228 -1, &stmt, 0);
229 while (sqlite3_step(stmt) == SQLITE_ROW)
230 subTreeInfoList.push_back(std::string(reinterpret_cast<const char *>
231 (sqlite3_column_text(stmt, 0)),
232 sqlite3_column_bytes(stmt, 0)));
233
234 sqlite3_finalize(stmt);
235}
236
237
238// For leafInfo
239
240void
241MerkleTreeSqlite3::addLeafInfo(uint64_t sequence, ndn::ConstBufferPtr buf_ptr)
242{
243
244 sqlite3_stmt* statement;
245 sqlite3_prepare_v2(m_database,
246 "INSERT OR REPLACE INTO Leaf \
247 (leaf_sequence, leaf_info) \
248 values (?, ?)", -1, &statement, 0);
249 sqlite3_bind_int64(statement, 1, sequence);
250 sqlite3_bind_blob(statement, 2, buf_ptr->buf(), buf_ptr->size(), SQLITE_STATIC);
251 sqlite3_step(statement);
252 sqlite3_finalize(statement);
253}
254
255
256ndn::ConstBufferPtr
257MerkleTreeSqlite3::getLeafInfo(uint64_t sequence)
258{
259 sqlite3_stmt* statement;
260 sqlite3_prepare_v2(m_database,
261 "SELECT leaf_info FROM Leaf \
262 WHERE leaf_sequence=?", -1, &statement, 0);
263 sqlite3_bind_int64(statement, 1, sequence);
264 int res = sqlite3_step(statement);
265 if (res == SQLITE_ROW)
266 {
267 ndn::Buffer res_buf(sqlite3_column_blob(statement, 0), sqlite3_column_bytes(statement, 0));
268 ndn::ConstBufferPtr result = ndn::make_shared<ndn::Buffer>(res_buf);
269 sqlite3_finalize(statement);
270 return result;
271 }
272 else
273 {
274 sqlite3_finalize(statement);
275 return ndn::ConstBufferPtr();
276 }
277}
278
279
280bool
281MerkleTreeSqlite3::doesLeafInfoExist(uint64_t sequence)
282{
283 bool result = false;
284 sqlite3_stmt* statement;
285 sqlite3_prepare_v2(m_database,
286 "SELECT count(*) FROM Leaf WHERE leaf_sequence=?",
287 -1, &statement, 0);
288 sqlite3_bind_int64(statement, 1, sequence);
289 int res = sqlite3_step(statement);
290 if (res == SQLITE_ROW)
291 {
292 int countAll = sqlite3_column_int(statement, 0);
293 if (countAll > 0)
294 result = true;
295 }
296 sqlite3_finalize(statement);
297 return result;
298}
299
300
301void
302MerkleTreeSqlite3::deleteLeafInfo(uint64_t sequence)
303{
304 sqlite3_stmt* stmt;
305 sqlite3_prepare_v2(m_database, "DELETE FROM Leaf WHERE leaf_sequence=?",
306 -1, &stmt, 0);
307 sqlite3_bind_int64(stmt, 1, sequence);
308 sqlite3_step(stmt);
309 sqlite3_finalize(stmt);
310}
311
312
313void
314MerkleTreeSqlite3::getAllLeafInfo(std::map<uint64_t, ndn::ConstBufferPtr> leaves)
315{
316 sqlite3_stmt* stmt;
317 sqlite3_prepare_v2(m_database,
318 "SELECT leaf_sequence, leaf_info FROM Leaf",
319 -1, &stmt, 0);
320 while (sqlite3_step(stmt) == SQLITE_ROW)
321 {
322 uint64_t seq = sqlite3_column_int64(stmt, 0);
323 ndn::ConstBufferPtr buf = ndn::make_shared<ndn::Buffer>(sqlite3_column_blob(stmt, 1),
324 sqlite3_column_bytes(stmt, 1));
325 leaves[seq] = buf;
326 }
327
328 sqlite3_finalize(stmt);
329}
330
331
332} // namespace nsl