2015-11-11 02:01:37 +00:00
|
|
|
/* Copyright 2015, Michele Santullo
|
|
|
|
* This file is part of "dindexer".
|
|
|
|
*
|
|
|
|
* "dindexer" is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* "dindexer" is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dbbackend.hpp"
|
|
|
|
#include "pq/connection.hpp"
|
2015-12-12 17:23:50 +00:00
|
|
|
#include "dindexer-common/settings.hpp"
|
2016-01-05 12:35:46 +00:00
|
|
|
#include "dindexer-machinery/recorddata.hpp"
|
2015-11-11 02:01:37 +00:00
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
2015-11-11 12:28:04 +00:00
|
|
|
#include <utility>
|
2015-11-27 20:41:36 +00:00
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <exception>
|
2015-12-01 16:35:46 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <boost/utility/string_ref.hpp>
|
2015-12-29 17:32:22 +00:00
|
|
|
#include <chrono>
|
2015-11-11 02:01:37 +00:00
|
|
|
|
|
|
|
namespace din {
|
2015-11-11 12:28:04 +00:00
|
|
|
namespace {
|
|
|
|
} //unnamed namespace
|
|
|
|
|
2015-12-29 17:32:22 +00:00
|
|
|
bool read_from_db (FileRecordData& parItem, SetRecordDataFull& parSet, const dinlib::SettingsDB& parDB, const TigerHash& parHash) {
|
2015-11-27 20:41:36 +00:00
|
|
|
using boost::lexical_cast;
|
|
|
|
|
|
|
|
pq::Connection conn(std::string(parDB.username), std::string(parDB.password), std::string(parDB.dbname), std::string(parDB.address), parDB.port);
|
|
|
|
conn.connect();
|
|
|
|
|
|
|
|
uint32_t group_id;
|
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
2015-12-29 17:32:22 +00:00
|
|
|
oss << "SELECT path,level,group_id,is_directory,is_symlink,size FROM files WHERE hash='" <<
|
|
|
|
tiger_to_string(parHash, true) << "'" <<
|
2015-11-27 20:41:36 +00:00
|
|
|
" LIMIT 1;";
|
|
|
|
|
|
|
|
auto resultset = conn.query(oss.str());
|
|
|
|
if (resultset.empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto row = resultset[0];
|
|
|
|
parItem.path = row["path"];
|
2015-12-29 17:32:22 +00:00
|
|
|
parItem.hash = parHash;
|
2015-11-27 20:41:36 +00:00
|
|
|
parItem.level = lexical_cast<uint16_t>(row["level"]);
|
|
|
|
parItem.size = lexical_cast<uint64_t>(row["size"]);
|
|
|
|
parItem.is_directory = (row["is_directory"] == "t" ? true : false);
|
|
|
|
parItem.is_symlink = (row["is_symlink"] == "t" ? true : false);
|
|
|
|
group_id = lexical_cast<uint32_t>(row["group_id"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "SELECT \"desc\",\"type\",\"disk_number\" FROM sets WHERE \"id\"=" << group_id << ';';
|
|
|
|
|
|
|
|
auto resultset = conn.query(oss.str());
|
|
|
|
if (resultset.empty()) {
|
|
|
|
std::ostringstream err_msg;
|
|
|
|
err_msg << "Missing set: found a record with group_id=" << group_id;
|
|
|
|
err_msg << " but there is no such id in table \"sets\"";
|
|
|
|
throw std::length_error(err_msg.str());
|
|
|
|
}
|
|
|
|
auto row = resultset[0];
|
|
|
|
parSet.type = lexical_cast<char>(row["type"]);
|
|
|
|
parSet.name = row["desc"];
|
|
|
|
parSet.disk_number = lexical_cast<uint32_t>(row["disk_number"]);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-12 17:41:34 +00:00
|
|
|
void write_to_db (const dinlib::SettingsDB& parDB, const std::vector<FileRecordData>& parData, const SetRecordData& parSetData) {
|
2015-12-29 17:32:22 +00:00
|
|
|
using std::chrono::system_clock;
|
2015-12-31 00:38:44 +00:00
|
|
|
using boost::lexical_cast;
|
2015-12-29 17:32:22 +00:00
|
|
|
|
2015-11-11 02:01:37 +00:00
|
|
|
if (parData.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-11 17:08:17 +00:00
|
|
|
pq::Connection conn(std::string(parDB.username), std::string(parDB.password), std::string(parDB.dbname), std::string(parDB.address), parDB.port);
|
2015-11-11 12:28:04 +00:00
|
|
|
conn.connect();
|
|
|
|
|
2015-12-30 10:20:52 +00:00
|
|
|
conn.query("BEGIN;");
|
2015-12-31 00:38:44 +00:00
|
|
|
uint32_t new_group_id;
|
|
|
|
{
|
|
|
|
auto id_res = conn.query("INSERT INTO \"sets\" (\"desc\",\"type\") VALUES ($1, $2) RETURNING \"id\";",
|
|
|
|
parSetData.name,
|
|
|
|
std::string(1, parSetData.type)
|
|
|
|
);
|
|
|
|
assert(id_res.size() == 1);
|
|
|
|
assert(id_res[0].size() == 1);
|
|
|
|
//TODO: make it possible to get the id directly as a string
|
|
|
|
new_group_id = lexical_cast<uint32_t>(id_res[0][0]);
|
|
|
|
}
|
2015-12-29 18:11:15 +00:00
|
|
|
|
2015-12-29 17:32:22 +00:00
|
|
|
for (std::size_t z = 0; z < parData.size(); ++z) {
|
|
|
|
const std::string query = "INSERT INTO \"files\" (path, hash, "
|
|
|
|
"level, group_id, is_directory, is_symlink, size, "
|
2015-12-10 12:13:16 +00:00
|
|
|
"access_time, modify_time, is_hash_valid, unreadable) VALUES "
|
2015-12-31 00:38:44 +00:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11);";
|
2015-12-29 17:32:22 +00:00
|
|
|
|
|
|
|
const auto& itm = parData[z];
|
2015-12-30 10:20:52 +00:00
|
|
|
conn.query(query,
|
2015-12-29 17:32:22 +00:00
|
|
|
itm.path,
|
|
|
|
tiger_to_string(itm.hash),
|
|
|
|
itm.level,
|
2015-12-31 00:38:44 +00:00
|
|
|
new_group_id,
|
2015-12-29 17:32:22 +00:00
|
|
|
itm.is_directory,
|
|
|
|
itm.is_symlink,
|
|
|
|
itm.size,
|
|
|
|
system_clock::from_time_t(itm.atime),
|
|
|
|
system_clock::from_time_t(itm.mtime),
|
|
|
|
itm.hash_valid,
|
|
|
|
itm.unreadable
|
|
|
|
);
|
2015-11-11 12:35:52 +00:00
|
|
|
}
|
2015-12-30 10:20:52 +00:00
|
|
|
conn.query("COMMIT;");
|
2015-11-11 02:01:37 +00:00
|
|
|
}
|
|
|
|
} //namespace din
|