2011-09-05 23:03:05 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2011-09-05 23:03:05 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2012-07-30 07:26:08 +02:00
|
|
|
#include "SimpleDatabasePlugin.hxx"
|
2014-02-26 08:39:44 +01:00
|
|
|
#include "PrefixedLightSong.hxx"
|
2014-02-19 22:54:52 +01:00
|
|
|
#include "db/DatabasePlugin.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/Selection.hxx"
|
|
|
|
#include "db/Helpers.hxx"
|
2016-10-29 10:21:57 +02:00
|
|
|
#include "db/Stats.hxx"
|
2014-04-25 18:39:21 +02:00
|
|
|
#include "db/UniqueTags.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/LightDirectory.hxx"
|
2014-02-26 09:17:41 +01:00
|
|
|
#include "Directory.hxx"
|
|
|
|
#include "Song.hxx"
|
|
|
|
#include "DatabaseSave.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/DatabaseLock.hxx"
|
|
|
|
#include "db/DatabaseError.hxx"
|
2017-02-07 16:57:16 +01:00
|
|
|
#include "tag/Mask.hxx"
|
2014-08-07 18:35:57 +02:00
|
|
|
#include "fs/io/TextFile.hxx"
|
|
|
|
#include "fs/io/BufferedOutputStream.hxx"
|
|
|
|
#include "fs/io/FileOutputStream.hxx"
|
2015-02-28 20:42:50 +01:00
|
|
|
#include "fs/FileInfo.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2013-02-02 15:27:06 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2014-02-26 08:39:44 +01:00
|
|
|
#include "util/CharUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Domain.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2012-07-30 07:26:08 +02:00
|
|
|
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_ZLIB
|
2014-08-30 00:24:38 +02:00
|
|
|
#include "fs/io/GzipOutputStream.hxx"
|
|
|
|
#endif
|
|
|
|
|
2015-12-16 00:33:10 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2011-09-05 23:03:05 +02:00
|
|
|
#include <errno.h>
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain simple_db_domain("simple_db");
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2016-10-28 23:05:13 +02:00
|
|
|
inline SimpleDatabase::SimpleDatabase(const ConfigBlock &block)
|
2014-02-19 23:17:21 +01:00
|
|
|
:Database(simple_db_plugin),
|
2016-10-28 23:05:13 +02:00
|
|
|
path(block.GetPath("path")),
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_ZLIB
|
2016-10-28 23:05:13 +02:00
|
|
|
compress(block.GetBlockValue("compress", true)),
|
2014-08-11 21:30:49 +02:00
|
|
|
#endif
|
2016-10-28 23:05:13 +02:00
|
|
|
cache_path(block.GetPath("cache_directory")),
|
|
|
|
prefixed_light_song(nullptr)
|
|
|
|
{
|
|
|
|
if (path.IsNull())
|
|
|
|
throw std::runtime_error("No \"path\" parameter specified");
|
|
|
|
|
|
|
|
path_utf8 = path.ToUTF8();
|
|
|
|
}
|
2014-02-26 08:39:44 +01:00
|
|
|
|
2014-08-11 21:30:49 +02:00
|
|
|
inline SimpleDatabase::SimpleDatabase(AllocatedPath &&_path,
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifndef ENABLE_ZLIB
|
2014-08-11 21:30:49 +02:00
|
|
|
gcc_unused
|
|
|
|
#endif
|
|
|
|
bool _compress)
|
2014-02-26 08:39:44 +01:00
|
|
|
:Database(simple_db_plugin),
|
|
|
|
path(std::move(_path)),
|
|
|
|
path_utf8(path.ToUTF8()),
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_ZLIB
|
2014-08-11 21:30:49 +02:00
|
|
|
compress(_compress),
|
|
|
|
#endif
|
2014-02-26 08:39:44 +01:00
|
|
|
cache_path(AllocatedPath::Null()),
|
|
|
|
prefixed_light_song(nullptr) {
|
|
|
|
}
|
2014-02-19 23:17:21 +01:00
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
Database *
|
2014-01-11 01:01:54 +01:00
|
|
|
SimpleDatabase::Create(gcc_unused EventLoop &loop,
|
|
|
|
gcc_unused DatabaseListener &listener,
|
2016-10-28 23:03:07 +02:00
|
|
|
const ConfigBlock &block)
|
2011-09-10 18:48:10 +02:00
|
|
|
{
|
2016-10-28 23:05:13 +02:00
|
|
|
return new SimpleDatabase(block);
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2016-03-18 22:21:09 +01:00
|
|
|
void
|
|
|
|
SimpleDatabase::Check() const
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2013-01-17 00:56:57 +01:00
|
|
|
assert(!path.IsNull());
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
/* Check if the file exists */
|
2015-02-27 19:13:46 +01:00
|
|
|
if (!PathExists(path)) {
|
2011-09-05 23:03:05 +02:00
|
|
|
/* If the file doesn't exist, we can't check if we can write
|
|
|
|
* it, so we are going to try to get the directory path, and
|
|
|
|
* see if we can write a file in that */
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto dirPath = path.GetDirectoryName();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
/* Check that the parent part of the path is a directory */
|
2015-02-28 20:42:50 +01:00
|
|
|
FileInfo fi;
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2016-03-18 22:21:09 +01:00
|
|
|
try {
|
|
|
|
fi = FileInfo(dirPath);
|
|
|
|
} catch (...) {
|
|
|
|
std::throw_with_nested(std::runtime_error("On parent directory of db file"));
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2016-03-18 22:21:09 +01:00
|
|
|
if (!fi.IsDirectory())
|
|
|
|
throw std::runtime_error("Couldn't create db file \"" +
|
|
|
|
path_utf8 + "\" because the "
|
|
|
|
"parent path is not a directory");
|
|
|
|
|
2013-12-05 09:41:43 +01:00
|
|
|
#ifndef WIN32
|
2011-09-05 23:03:05 +02:00
|
|
|
/* Check if we can write to the directory */
|
2013-02-02 15:27:06 +01:00
|
|
|
if (!CheckAccess(dirPath, X_OK | W_OK)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
const int e = errno;
|
2013-02-02 15:27:06 +01:00
|
|
|
const std::string dirPath_utf8 = dirPath.ToUTF8();
|
2016-03-18 22:21:09 +01:00
|
|
|
throw FormatErrno(e, "Can't create db file in \"%s\"",
|
2013-08-10 18:02:44 +02:00
|
|
|
dirPath_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
2013-12-05 09:41:43 +01:00
|
|
|
#endif
|
2016-03-18 22:21:09 +01:00
|
|
|
|
|
|
|
return;
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Path exists, now check if it's a regular file */
|
2016-03-18 22:21:09 +01:00
|
|
|
const FileInfo fi(path);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2016-03-18 22:21:09 +01:00
|
|
|
if (!fi.IsRegular())
|
|
|
|
throw std::runtime_error("db file \"" + path_utf8 + "\" is not a regular file");
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2013-12-05 09:41:43 +01:00
|
|
|
#ifndef WIN32
|
2011-09-05 23:03:05 +02:00
|
|
|
/* And check that we can write to it */
|
2016-03-18 22:21:09 +01:00
|
|
|
if (!CheckAccess(path, R_OK | W_OK))
|
|
|
|
throw FormatErrno("Can't open db file \"%s\" for reading/writing",
|
2013-08-10 18:02:44 +02:00
|
|
|
path_utf8.c_str());
|
2013-12-05 09:41:43 +01:00
|
|
|
#endif
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 09:45:34 +02:00
|
|
|
void
|
|
|
|
SimpleDatabase::Load()
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2013-10-01 18:35:37 +02:00
|
|
|
assert(!path.IsNull());
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(root != nullptr);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-12-16 11:05:33 +01:00
|
|
|
TextFile file(path);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2016-10-29 10:00:35 +02:00
|
|
|
LogDebug(simple_db_domain, "reading DB");
|
|
|
|
|
2016-10-29 09:45:34 +02:00
|
|
|
db_load_internal(file, *root);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-02-28 20:42:50 +01:00
|
|
|
FileInfo fi;
|
|
|
|
if (GetFileInfo(path, fi))
|
2017-02-11 22:18:28 +01:00
|
|
|
mtime = fi.GetModificationTime();
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2016-03-18 22:17:46 +01:00
|
|
|
void
|
|
|
|
SimpleDatabase::Open()
|
2016-02-28 11:40:39 +01:00
|
|
|
{
|
2014-02-26 08:39:44 +01:00
|
|
|
assert(prefixed_light_song == nullptr);
|
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
root = Directory::NewRoot();
|
2017-02-11 22:18:28 +01:00
|
|
|
mtime = std::chrono::system_clock::time_point::min();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2012-08-15 23:28:19 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
borrowed_song_count = 0;
|
|
|
|
#endif
|
|
|
|
|
2016-02-28 11:40:39 +01:00
|
|
|
try {
|
2016-10-29 09:45:34 +02:00
|
|
|
Load();
|
2016-02-28 11:40:39 +01:00
|
|
|
} catch (const std::exception &e) {
|
|
|
|
LogError(e);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2016-02-28 11:38:22 +01:00
|
|
|
delete root;
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2016-03-18 22:21:09 +01:00
|
|
|
Check();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
root = Directory::NewRoot();
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
void
|
|
|
|
SimpleDatabase::Close()
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(root != nullptr);
|
2014-02-26 08:39:44 +01:00
|
|
|
assert(prefixed_light_song == nullptr);
|
2012-08-15 23:28:19 +02:00
|
|
|
assert(borrowed_song_count == 0);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2014-01-09 13:21:56 +01:00
|
|
|
delete root;
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
const LightSong *
|
2016-03-19 00:13:57 +01:00
|
|
|
SimpleDatabase::GetSong(const char *uri) const
|
2011-09-13 21:01:35 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(root != nullptr);
|
2014-02-26 08:39:44 +01:00
|
|
|
assert(prefixed_light_song == nullptr);
|
2014-01-19 10:51:34 +01:00
|
|
|
assert(borrowed_song_count == 0);
|
2011-09-13 21:01:35 +02:00
|
|
|
|
2015-12-15 23:27:05 +01:00
|
|
|
ScopeDatabaseLock protect;
|
2014-02-26 20:10:31 +01:00
|
|
|
|
|
|
|
auto r = root->LookupDirectory(uri);
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
if (r.directory->IsMount()) {
|
|
|
|
/* pass the request to the mounted database */
|
2015-12-15 23:27:05 +01:00
|
|
|
protect.unlock();
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
const LightSong *song =
|
2016-03-19 00:13:57 +01:00
|
|
|
r.directory->mounted_database->GetSong(r.uri);
|
2014-02-26 08:39:44 +01:00
|
|
|
if (song == nullptr)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
prefixed_light_song =
|
|
|
|
new PrefixedLightSong(*song, r.directory->GetPath());
|
|
|
|
return prefixed_light_song;
|
|
|
|
}
|
|
|
|
|
2016-02-28 11:19:28 +01:00
|
|
|
if (r.uri == nullptr)
|
2014-02-26 20:10:31 +01:00
|
|
|
/* it's a directory */
|
2016-02-28 11:19:28 +01:00
|
|
|
throw DatabaseError(DatabaseErrorCode::NOT_FOUND,
|
|
|
|
"No such song");
|
2014-02-26 20:10:31 +01:00
|
|
|
|
2016-02-28 11:19:28 +01:00
|
|
|
if (strchr(r.uri, '/') != nullptr)
|
2014-02-26 20:10:31 +01:00
|
|
|
/* refers to a URI "below" the actual song */
|
2016-02-28 11:19:28 +01:00
|
|
|
throw DatabaseError(DatabaseErrorCode::NOT_FOUND,
|
|
|
|
"No such song");
|
2014-02-26 20:10:31 +01:00
|
|
|
|
|
|
|
const Song *song = r.directory->FindSong(r.uri);
|
2015-12-15 23:27:05 +01:00
|
|
|
protect.unlock();
|
2016-02-28 11:19:28 +01:00
|
|
|
if (song == nullptr)
|
|
|
|
throw DatabaseError(DatabaseErrorCode::NOT_FOUND,
|
|
|
|
"No such song");
|
2014-01-19 10:51:34 +01:00
|
|
|
|
|
|
|
light_song = song->Export();
|
|
|
|
|
2012-08-15 23:28:19 +02:00
|
|
|
#ifndef NDEBUG
|
2014-01-19 10:51:34 +01:00
|
|
|
++borrowed_song_count;
|
2012-08-15 23:28:19 +02:00
|
|
|
#endif
|
2011-09-13 21:01:35 +02:00
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
return &light_song;
|
2011-09-13 21:01:35 +02:00
|
|
|
}
|
|
|
|
|
2012-08-15 23:28:19 +02:00
|
|
|
void
|
2014-01-19 10:51:34 +01:00
|
|
|
SimpleDatabase::ReturnSong(gcc_unused const LightSong *song) const
|
2012-08-15 23:28:19 +02:00
|
|
|
{
|
2014-02-26 08:39:44 +01:00
|
|
|
assert(song != nullptr);
|
|
|
|
assert(song == &light_song || song == prefixed_light_song);
|
|
|
|
|
|
|
|
delete prefixed_light_song;
|
|
|
|
prefixed_light_song = nullptr;
|
2012-08-15 23:28:19 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2014-02-26 08:39:44 +01:00
|
|
|
if (song == &light_song) {
|
|
|
|
assert(borrowed_song_count > 0);
|
|
|
|
--borrowed_song_count;
|
|
|
|
}
|
2012-08-15 23:28:19 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2012-08-07 23:06:41 +02:00
|
|
|
SimpleDatabase::Visit(const DatabaseSelection &selection,
|
2012-07-30 07:26:08 +02:00
|
|
|
VisitDirectory visit_directory,
|
|
|
|
VisitSong visit_song,
|
2016-10-29 10:21:57 +02:00
|
|
|
VisitPlaylist visit_playlist) const
|
2011-09-10 18:48:10 +02:00
|
|
|
{
|
2012-09-05 20:49:04 +02:00
|
|
|
ScopeDatabaseLock protect;
|
|
|
|
|
2014-02-26 19:48:37 +01:00
|
|
|
auto r = root->LookupDirectory(selection.uri.c_str());
|
|
|
|
if (r.uri == nullptr) {
|
|
|
|
/* it's a directory */
|
|
|
|
|
2016-10-29 10:04:43 +02:00
|
|
|
if (selection.recursive && visit_directory)
|
|
|
|
visit_directory(r.directory->Export());
|
2014-02-26 19:48:37 +01:00
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
r.directory->Walk(selection.recursive, selection.filter,
|
|
|
|
visit_directory, visit_song,
|
|
|
|
visit_playlist);
|
|
|
|
return;
|
2014-02-26 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr(r.uri, '/') == nullptr) {
|
2012-09-05 20:49:04 +02:00
|
|
|
if (visit_song) {
|
2014-02-26 19:48:37 +01:00
|
|
|
Song *song = r.directory->FindSong(r.uri);
|
2014-01-19 10:51:34 +01:00
|
|
|
if (song != nullptr) {
|
|
|
|
const LightSong song2 = song->Export();
|
2016-10-29 10:04:43 +02:00
|
|
|
if (selection.Match(song2))
|
|
|
|
visit_song(song2);
|
2016-11-23 17:30:30 +01:00
|
|
|
|
|
|
|
return;
|
2014-01-19 10:51:34 +01:00
|
|
|
}
|
2012-09-05 20:49:04 +02:00
|
|
|
}
|
2011-09-10 18:48:10 +02:00
|
|
|
}
|
|
|
|
|
2016-02-28 11:19:28 +01:00
|
|
|
throw DatabaseError(DatabaseErrorCode::NOT_FOUND,
|
|
|
|
"No such directory");
|
2011-09-10 18:48:10 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2012-08-15 21:32:34 +02:00
|
|
|
SimpleDatabase::VisitUniqueTags(const DatabaseSelection &selection,
|
2017-02-07 16:57:16 +01:00
|
|
|
TagType tag_type, TagMask group_mask,
|
2016-10-29 10:21:57 +02:00
|
|
|
VisitTag visit_tag) const
|
2012-08-15 21:32:34 +02:00
|
|
|
{
|
2016-10-29 10:21:57 +02:00
|
|
|
::VisitUniqueTags(*this, selection, tag_type, group_mask, visit_tag);
|
2012-08-15 21:32:34 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
DatabaseStats
|
|
|
|
SimpleDatabase::GetStats(const DatabaseSelection &selection) const
|
2012-08-15 22:20:28 +02:00
|
|
|
{
|
2016-10-29 10:21:57 +02:00
|
|
|
return ::GetStats(*this, selection);
|
2012-08-15 22:20:28 +02:00
|
|
|
}
|
|
|
|
|
2015-12-16 10:24:43 +01:00
|
|
|
void
|
|
|
|
SimpleDatabase::Save()
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2015-12-15 23:27:05 +01:00
|
|
|
{
|
|
|
|
const ScopeDatabaseLock protect;
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-12-15 23:27:05 +01:00
|
|
|
LogDebug(simple_db_domain, "removing empty directories from DB");
|
|
|
|
root->PruneEmpty();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-12-15 23:27:05 +01:00
|
|
|
LogDebug(simple_db_domain, "sorting DB");
|
|
|
|
root->Sort();
|
|
|
|
}
|
2012-01-31 22:12:14 +01:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
LogDebug(simple_db_domain, "writing DB");
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-12-15 22:26:26 +01:00
|
|
|
FileOutputStream fos(path);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2014-08-11 21:30:49 +02:00
|
|
|
OutputStream *os = &fos;
|
|
|
|
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_ZLIB
|
2015-12-16 00:33:10 +01:00
|
|
|
std::unique_ptr<GzipOutputStream> gzip;
|
2014-08-11 21:30:49 +02:00
|
|
|
if (compress) {
|
2015-12-16 10:14:56 +01:00
|
|
|
gzip.reset(new GzipOutputStream(*os));
|
2015-12-16 00:33:10 +01:00
|
|
|
os = gzip.get();
|
2014-08-11 21:30:49 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
BufferedOutputStream bos(*os);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2014-07-30 20:58:14 +02:00
|
|
|
db_save_internal(bos, *root);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-12-16 10:24:43 +01:00
|
|
|
bos.Flush();
|
2014-08-11 21:30:49 +02:00
|
|
|
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_ZLIB
|
2014-08-11 21:30:49 +02:00
|
|
|
if (gzip != nullptr) {
|
2015-12-16 10:24:43 +01:00
|
|
|
gzip->Flush();
|
2015-12-16 00:33:10 +01:00
|
|
|
gzip.reset();
|
2014-08-11 21:30:49 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-12-16 00:24:41 +01:00
|
|
|
fos.Commit();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2015-02-28 20:42:50 +01:00
|
|
|
FileInfo fi;
|
|
|
|
if (GetFileInfo(path, fi))
|
2017-02-11 22:18:28 +01:00
|
|
|
mtime = fi.GetModificationTime();
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2016-02-28 11:19:28 +01:00
|
|
|
void
|
|
|
|
SimpleDatabase::Mount(const char *uri, Database *db)
|
2014-02-26 08:39:44 +01:00
|
|
|
{
|
2014-12-26 14:28:01 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2014-02-26 08:39:44 +01:00
|
|
|
assert(uri != nullptr);
|
|
|
|
assert(db != nullptr);
|
2014-12-26 14:28:01 +01:00
|
|
|
#endif
|
|
|
|
assert(*uri != 0);
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
ScopeDatabaseLock protect;
|
|
|
|
|
|
|
|
auto r = root->LookupDirectory(uri);
|
2016-02-28 11:19:28 +01:00
|
|
|
if (r.uri == nullptr)
|
|
|
|
throw DatabaseError(DatabaseErrorCode::CONFLICT,
|
|
|
|
"Already exists");
|
2014-02-26 08:39:44 +01:00
|
|
|
|
2016-02-28 11:19:28 +01:00
|
|
|
if (strchr(r.uri, '/') != nullptr)
|
|
|
|
throw DatabaseError(DatabaseErrorCode::NOT_FOUND,
|
|
|
|
"Parent not found");
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
Directory *mnt = r.directory->CreateChild(r.uri);
|
|
|
|
mnt->mounted_database = db;
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr bool
|
|
|
|
IsSafeChar(char ch)
|
|
|
|
{
|
|
|
|
return IsAlphaNumericASCII(ch) || ch == '-' || ch == '_' || ch == '%';
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr bool
|
|
|
|
IsUnsafeChar(char ch)
|
|
|
|
{
|
|
|
|
return !IsSafeChar(ch);
|
|
|
|
}
|
|
|
|
|
2016-10-29 10:56:31 +02:00
|
|
|
void
|
|
|
|
SimpleDatabase::Mount(const char *local_uri, const char *storage_uri)
|
2014-02-26 08:39:44 +01:00
|
|
|
{
|
2016-02-28 11:19:28 +01:00
|
|
|
if (cache_path.IsNull())
|
|
|
|
throw DatabaseError(DatabaseErrorCode::NOT_FOUND,
|
|
|
|
"No 'cache_directory' configured");
|
2014-02-26 08:39:44 +01:00
|
|
|
|
|
|
|
std::string name(storage_uri);
|
|
|
|
std::replace_if(name.begin(), name.end(), IsUnsafeChar, '_');
|
|
|
|
|
2016-10-29 10:56:31 +02:00
|
|
|
const auto name_fs = AllocatedPath::FromUTF8Throw(name.c_str());
|
2015-03-03 13:16:45 +01:00
|
|
|
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifndef ENABLE_ZLIB
|
2014-08-11 21:30:49 +02:00
|
|
|
constexpr bool compress = false;
|
|
|
|
#endif
|
2014-02-26 08:39:44 +01:00
|
|
|
auto db = new SimpleDatabase(AllocatedPath::Build(cache_path,
|
2015-03-03 13:16:45 +01:00
|
|
|
name_fs.c_str()),
|
2014-08-11 21:30:49 +02:00
|
|
|
compress);
|
2016-03-18 18:55:54 +01:00
|
|
|
try {
|
2016-03-18 22:17:46 +01:00
|
|
|
db->Open();
|
2016-03-18 18:55:54 +01:00
|
|
|
} catch (...) {
|
2014-02-26 08:39:44 +01:00
|
|
|
delete db;
|
2016-03-18 18:55:54 +01:00
|
|
|
throw;
|
2014-02-26 08:39:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: update the new database instance?
|
|
|
|
|
2016-02-28 11:19:28 +01:00
|
|
|
try {
|
|
|
|
Mount(local_uri, db);
|
|
|
|
} catch (...) {
|
2014-02-26 08:39:44 +01:00
|
|
|
db->Close();
|
|
|
|
delete db;
|
2016-02-28 11:19:28 +01:00
|
|
|
throw;
|
2014-02-26 08:39:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Database *
|
|
|
|
SimpleDatabase::LockUmountSteal(const char *uri)
|
|
|
|
{
|
|
|
|
ScopeDatabaseLock protect;
|
|
|
|
|
|
|
|
auto r = root->LookupDirectory(uri);
|
|
|
|
if (r.uri != nullptr || !r.directory->IsMount())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Database *db = r.directory->mounted_database;
|
|
|
|
r.directory->mounted_database = nullptr;
|
|
|
|
r.directory->Delete();
|
|
|
|
|
|
|
|
return db;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SimpleDatabase::Unmount(const char *uri)
|
|
|
|
{
|
|
|
|
Database *db = LockUmountSteal(uri);
|
|
|
|
if (db == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
db->Close();
|
|
|
|
delete db;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
const DatabasePlugin simple_db_plugin = {
|
|
|
|
"simple",
|
2014-02-17 20:57:56 +01:00
|
|
|
DatabasePlugin::FLAG_REQUIRE_STORAGE,
|
2012-07-30 07:26:08 +02:00
|
|
|
SimpleDatabase::Create,
|
|
|
|
};
|