Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013, Regents of the University of California |
| 4 | * Yingdi Yu |
| 5 | * |
| 6 | * BSD license, See the LICENSE file for more information |
| 7 | * |
| 8 | * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| 9 | */ |
| 10 | |
| 11 | #include "dns-storage.h" |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 12 | #include "null-ptrs.h" |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 13 | #include "exception.h" |
| 14 | |
| 15 | #include <boost/filesystem.hpp> |
Yingdi Yu | ec3d9a3 | 2013-10-18 18:35:09 -0700 | [diff] [blame] | 16 | #include "logging.h" |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 17 | |
| 18 | |
| 19 | using namespace std; |
| 20 | using namespace ndn; |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 21 | using namespace ndn::ptr_lib; |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 22 | namespace fs = boost::filesystem; |
| 23 | |
Yingdi Yu | ec3d9a3 | 2013-10-18 18:35:09 -0700 | [diff] [blame] | 24 | INIT_LOGGER("DnsStorage"); |
| 25 | |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 26 | const string INIT_DD_TABLE = "\ |
| 27 | CREATE TABLE IF NOT EXISTS \n \ |
| 28 | DnsData( \n \ |
| 29 | dns_identity BLOB NOT NULL, \n \ |
| 30 | dns_name BLOB NOT NULL, \n \ |
| 31 | dns_type BLOB NOT NULL, \n \ |
| 32 | data_name BLOB NOT NULL, \n \ |
| 33 | dns_value BLOB NOT NULL, \n \ |
| 34 | \ |
| 35 | PRIMARY KEY (dns_identity, dns_name, dns_type) \n \ |
| 36 | ); \ |
| 37 | CREATE INDEX dd_index ON DnsData(dns_identity, dns_name, dns_type); \n \ |
| 38 | CREATE INDEX dd_index2 ON DnsData(data_name); \n \ |
| 39 | "; |
| 40 | |
| 41 | DnsStorage::DnsStorage() |
| 42 | { |
| 43 | fs::path chronosDir = fs::path(getenv("HOME")) / ".chronos"; |
| 44 | fs::create_directories (chronosDir); |
| 45 | |
| 46 | int res = sqlite3_open((chronosDir / "dns.db").c_str (), &m_db); |
| 47 | if (res != SQLITE_OK) |
| 48 | throw LnException("Chronos DNS DB cannot be open/created"); |
| 49 | |
| 50 | // Check if SelfProfile table exists |
| 51 | sqlite3_stmt *stmt; |
| 52 | sqlite3_prepare_v2 (m_db, "SELECT name FROM sqlite_master WHERE type='table' And name='DnsData'", -1, &stmt, 0); |
| 53 | res = sqlite3_step (stmt); |
| 54 | |
| 55 | bool ddTableExist = false; |
| 56 | if (res == SQLITE_ROW) |
| 57 | ddTableExist = true; |
| 58 | sqlite3_finalize (stmt); |
| 59 | |
| 60 | if(!ddTableExist) |
| 61 | { |
| 62 | char *errmsg = 0; |
| 63 | res = sqlite3_exec (m_db, INIT_DD_TABLE.c_str (), NULL, NULL, &errmsg); |
| 64 | if (res != SQLITE_OK && errmsg != 0) |
| 65 | throw LnException("Init \"error\" in DnsData"); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | DnsStorage::~DnsStorage() |
| 70 | { |
| 71 | sqlite3_close(m_db); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | DnsStorage::updateDnsData(const ndn::Blob& data, const std::string& identity, const std::string& name, const std::string& type, const string& dataName) |
| 76 | { |
| 77 | sqlite3_stmt *stmt; |
| 78 | sqlite3_prepare_v2 (m_db, "SELECT data_name FROM DnsData where dns_identity=? and dns_name=? and dns_type=?", -1, &stmt, 0); |
| 79 | sqlite3_bind_text(stmt, 1, identity.c_str(), identity.size(), SQLITE_TRANSIENT); |
| 80 | sqlite3_bind_text(stmt, 2, name.c_str(), name.size(), SQLITE_TRANSIENT); |
| 81 | sqlite3_bind_text(stmt, 3, type.c_str(), type.size(), SQLITE_TRANSIENT); |
| 82 | |
| 83 | if(sqlite3_step (stmt) != SQLITE_ROW) |
| 84 | { |
| 85 | sqlite3_finalize(stmt); |
| 86 | sqlite3_prepare_v2 (m_db, "INSERT INTO DnsData (dns_identity, dns_name, dns_type, dns_value, data_name) VALUES (?, ?, ?, ?, ?)", -1, &stmt, 0); |
| 87 | sqlite3_bind_text(stmt, 1, identity.c_str(), identity.size(), SQLITE_TRANSIENT); |
| 88 | sqlite3_bind_text(stmt, 2, name.c_str(), name.size(), SQLITE_TRANSIENT); |
| 89 | sqlite3_bind_text(stmt, 3, type.c_str(), type.size(), SQLITE_TRANSIENT); |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 90 | sqlite3_bind_text(stmt, 4, (const char*)data.buf(), data.size(), SQLITE_TRANSIENT); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 91 | sqlite3_bind_text(stmt, 5, dataName.c_str(), dataName.size(), SQLITE_TRANSIENT); |
| 92 | sqlite3_step(stmt); |
| 93 | sqlite3_finalize(stmt); |
| 94 | } |
| 95 | else |
| 96 | { |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 97 | sqlite3_finalize(stmt); |
| 98 | sqlite3_prepare_v2 (m_db, "UPDATE DnsData SET dns_value=?, data_name=? WHERE dns_identity=? and dns_name=?, dns_type=?", -1, &stmt, 0); |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 99 | sqlite3_bind_text(stmt, 1, (const char*)data.buf(), data.size(), SQLITE_TRANSIENT); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 100 | sqlite3_bind_text(stmt, 2, dataName.c_str(), dataName.size(), SQLITE_TRANSIENT); |
| 101 | sqlite3_bind_text(stmt, 3, identity.c_str(), identity.size(), SQLITE_TRANSIENT); |
| 102 | sqlite3_bind_text(stmt, 4, name.c_str(), name.size(), SQLITE_TRANSIENT); |
| 103 | sqlite3_bind_text(stmt, 5, type.c_str(), type.size(), SQLITE_TRANSIENT); |
| 104 | sqlite3_step(stmt); |
| 105 | sqlite3_finalize(stmt); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | void |
| 110 | DnsStorage::updateDnsSelfProfileData(const Data& data, const Name& identity) |
| 111 | { |
| 112 | string dnsIdentity = identity.toUri(); |
| 113 | string dnsName("N/A"); |
| 114 | string dnsType("PROFILE"); |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 115 | Blob dnsValue = data.wireEncode(); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 116 | |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 117 | updateDnsData(dnsValue, dnsIdentity, dnsName, dnsType, data.getName().toUri()); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | void |
| 121 | DnsStorage::updateDnsEndorseOthers(const Data& data, const Name& identity, const Name& endorsee) |
| 122 | { |
| 123 | string dnsIdentity = identity.toUri(); |
| 124 | string dnsName = endorsee.toUri(); |
Yingdi Yu | b2e747d | 2013-11-05 23:06:43 -0800 | [diff] [blame] | 125 | string dnsType("ENDORSEE"); |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 126 | Blob dnsValue = data.wireEncode(); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 127 | |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 128 | updateDnsData(dnsValue, dnsIdentity, dnsName, dnsType, data.getName().toUri()); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void |
Yingdi Yu | b2e747d | 2013-11-05 23:06:43 -0800 | [diff] [blame] | 132 | DnsStorage::updateDnsOthersEndorse(const Data& data, const Name& identity) |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 133 | { |
| 134 | string dnsIdentity = identity.toUri(); |
Yingdi Yu | b2e747d | 2013-11-05 23:06:43 -0800 | [diff] [blame] | 135 | string dnsName("N/A"); |
| 136 | string dnsType("ENDORSED"); |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 137 | Blob dnsValue = data.wireEncode(); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 138 | |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 139 | updateDnsData(dnsValue, dnsIdentity, dnsName, dnsType, data.getName().toUri()); |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 142 | shared_ptr<Data> |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 143 | DnsStorage::getData(const Name& dataName) |
| 144 | { |
| 145 | sqlite3_stmt *stmt; |
| 146 | sqlite3_prepare_v2 (m_db, "SELECT dns_value FROM DnsData where data_name=?", -1, &stmt, 0); |
| 147 | sqlite3_bind_text(stmt, 1, dataName.toUri().c_str(), dataName.toUri().size(), SQLITE_TRANSIENT); |
| 148 | |
| 149 | if(sqlite3_step (stmt) == SQLITE_ROW) |
| 150 | { |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 151 | shared_ptr<Data> data = make_shared<Data>(); |
| 152 | data->wireDecode(reinterpret_cast<const uint8_t*>(sqlite3_column_text(stmt, 0)), sqlite3_column_bytes (stmt, 0)); |
Yingdi Yu | e35bdb8 | 2013-11-07 11:32:40 -0800 | [diff] [blame] | 153 | sqlite3_finalize(stmt); |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 154 | return data; |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 155 | } |
Yingdi Yu | e35bdb8 | 2013-11-07 11:32:40 -0800 | [diff] [blame] | 156 | sqlite3_finalize(stmt); |
| 157 | |
Yingdi Yu | 76dd800 | 2013-12-24 11:16:32 +0800 | [diff] [blame] | 158 | return CHRONOCHAT_NULL_DATA_PTR; |
Yingdi Yu | 783ce4b | 2013-10-18 17:04:19 -0700 | [diff] [blame] | 159 | } |