2011-09-05 23:03:05 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
|
|
|
* 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"
|
2012-08-07 23:06:41 +02:00
|
|
|
#include "DatabaseSelection.hxx"
|
2012-08-15 21:32:34 +02:00
|
|
|
#include "DatabaseHelpers.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2012-08-29 19:12:26 +02:00
|
|
|
#include "SongFilter.hxx"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "DatabaseSave.hxx"
|
2013-01-02 20:56:21 +01:00
|
|
|
#include "DatabaseLock.hxx"
|
2013-08-10 19:43:27 +02:00
|
|
|
#include "DatabaseError.hxx"
|
2013-01-03 10:16:05 +01:00
|
|
|
#include "TextFile.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigData.hxx"
|
2013-02-02 15:27:06 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2012-07-30 07:26:08 +02:00
|
|
|
|
2013-10-02 08:11:58 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
2011-09-05 23:03:05 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#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
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
Database *
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::Create(const config_param ¶m, Error &error)
|
2011-09-10 18:48:10 +02:00
|
|
|
{
|
2012-07-30 07:26:08 +02:00
|
|
|
SimpleDatabase *db = new SimpleDatabase();
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!db->Configure(param, error)) {
|
2012-07-30 07:26:08 +02:00
|
|
|
delete db;
|
|
|
|
db = NULL;
|
|
|
|
}
|
2011-09-10 18:48:10 +02:00
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
return db;
|
2011-09-10 18:48:10 +02:00
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::Configure(const config_param ¶m, Error &error)
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
path = param.GetBlockPath("path", error);
|
2013-08-07 19:54:38 +02:00
|
|
|
if (path.IsNull()) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!error.IsDefined())
|
|
|
|
error.Set(simple_db_domain,
|
|
|
|
"No \"path\" parameter specified");
|
2012-07-30 07:26:08 +02:00
|
|
|
return false;
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
path_utf8 = path.ToUTF8();
|
2013-01-27 08:26:17 +01:00
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
return true;
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::Check(Error &error) const
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2013-01-17 00:56:57 +01:00
|
|
|
assert(!path.IsNull());
|
2012-07-30 07:26:08 +02:00
|
|
|
assert(!path.empty());
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
/* Check if the file exists */
|
2013-02-02 15:27:06 +01:00
|
|
|
if (!CheckAccess(path, F_OK)) {
|
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-02-02 15:27:06 +01:00
|
|
|
const Path dirPath = path.GetDirectoryName();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
/* Check that the parent part of the path is a directory */
|
|
|
|
struct stat st;
|
2013-02-02 15:27:06 +01:00
|
|
|
if (!StatFile(dirPath, st)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Couldn't stat parent directory of db file "
|
|
|
|
"\"%s\"",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!S_ISDIR(st.st_mode)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(simple_db_domain,
|
|
|
|
"Couldn't create db file \"%s\" because the "
|
|
|
|
"parent path is not a directory",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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();
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno(e, "Can't create db file in \"%s\"",
|
|
|
|
dirPath_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Path exists, now check if it's a regular file */
|
|
|
|
struct stat st;
|
2013-02-02 15:27:06 +01:00
|
|
|
if (!StatFile(path, st)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Couldn't stat db file \"%s\"",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!S_ISREG(st.st_mode)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(simple_db_domain,
|
|
|
|
"db file \"%s\" is not a regular file",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And check that we can write to it */
|
2013-02-02 15:27:06 +01:00
|
|
|
if (!CheckAccess(path, R_OK | W_OK)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Can't open db file \"%s\" for reading/writing",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::Load(Error &error)
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2012-07-30 07:26:08 +02:00
|
|
|
assert(!path.empty());
|
|
|
|
assert(root != NULL);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
TextFile file(path);
|
2013-01-03 10:16:05 +01:00
|
|
|
if (file.HasFailed()) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Failed to open database file \"%s\"",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!db_load_internal(file, root, error))
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
struct stat st;
|
2013-02-02 15:27:06 +01:00
|
|
|
if (StatFile(path, st))
|
2012-07-30 07:26:08 +02:00
|
|
|
mtime = st.st_mtime;
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::Open(Error &error)
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2013-01-02 23:06:20 +01:00
|
|
|
root = Directory::NewRoot();
|
2012-07-30 07:26:08 +02:00
|
|
|
mtime = 0;
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2012-08-15 23:28:19 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
borrowed_song_count = 0;
|
|
|
|
#endif
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!Load(error)) {
|
2013-01-02 23:06:10 +01:00
|
|
|
root->Free();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
g_warning("Failed to load database: %s", error.GetMessage());
|
|
|
|
error.Clear();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!Check(error))
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
root = Directory::NewRoot();
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
void
|
|
|
|
SimpleDatabase::Close()
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2012-07-30 07:26:08 +02:00
|
|
|
assert(root != NULL);
|
2012-08-15 23:28:19 +02:00
|
|
|
assert(borrowed_song_count == 0);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
root->Free();
|
2011-09-05 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::GetSong(const char *uri, Error &error) const
|
2011-09-13 21:01:35 +02:00
|
|
|
{
|
2012-07-30 07:26:08 +02:00
|
|
|
assert(root != NULL);
|
2011-09-13 21:01:35 +02:00
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song = root->LookupSong(uri);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
2011-09-13 21:01:35 +02:00
|
|
|
if (song == NULL)
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(db_domain, DB_NOT_FOUND,
|
|
|
|
"No such song: %s", uri);
|
2012-08-15 23:28:19 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
else
|
|
|
|
++const_cast<unsigned &>(borrowed_song_count);
|
|
|
|
#endif
|
2011-09-13 21:01:35 +02:00
|
|
|
|
|
|
|
return song;
|
|
|
|
}
|
|
|
|
|
2012-08-15 23:28:19 +02:00
|
|
|
void
|
2013-07-28 13:25:12 +02:00
|
|
|
SimpleDatabase::ReturnSong(gcc_unused Song *song) const
|
2012-08-15 23:28:19 +02:00
|
|
|
{
|
|
|
|
assert(song != nullptr);
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
assert(borrowed_song_count > 0);
|
|
|
|
--const_cast<unsigned &>(borrowed_song_count);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_pure
|
2013-01-02 23:06:20 +01:00
|
|
|
const Directory *
|
2012-07-30 07:26:08 +02:00
|
|
|
SimpleDatabase::LookupDirectory(const char *uri) const
|
|
|
|
{
|
|
|
|
assert(root != NULL);
|
|
|
|
assert(uri != NULL);
|
|
|
|
|
2012-09-05 20:50:15 +02:00
|
|
|
ScopeDatabaseLock protect;
|
2013-01-02 23:06:10 +01:00
|
|
|
return root->LookupDirectory(uri);
|
2012-07-30 07:26:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
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,
|
|
|
|
VisitPlaylist visit_playlist,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error) const
|
2011-09-10 18:48:10 +02:00
|
|
|
{
|
2012-09-05 20:49:04 +02:00
|
|
|
ScopeDatabaseLock protect;
|
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
const Directory *directory = root->LookupDirectory(selection.uri);
|
2011-09-10 18:48:10 +02:00
|
|
|
if (directory == NULL) {
|
2012-09-05 20:49:04 +02:00
|
|
|
if (visit_song) {
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song = root->LookupSong(selection.uri);
|
2012-09-05 20:49:04 +02:00
|
|
|
if (song != nullptr)
|
|
|
|
return !selection.Match(*song) ||
|
2013-08-10 18:02:44 +02:00
|
|
|
visit_song(*song, error);
|
2012-09-05 20:49:04 +02:00
|
|
|
}
|
2011-09-10 18:48:10 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(db_domain, DB_NOT_FOUND, "No such directory");
|
2011-09-10 18:48:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-07 21:32:08 +02:00
|
|
|
if (selection.recursive && visit_directory &&
|
2013-08-10 18:02:44 +02:00
|
|
|
!visit_directory(*directory, error))
|
2011-09-10 18:48:10 +02:00
|
|
|
return false;
|
|
|
|
|
2012-09-05 20:50:15 +02:00
|
|
|
return directory->Walk(selection.recursive, selection.filter,
|
|
|
|
visit_directory, visit_song, visit_playlist,
|
2013-08-10 18:02:44 +02:00
|
|
|
error);
|
2011-09-10 18:48:10 +02:00
|
|
|
}
|
|
|
|
|
2012-08-15 21:32:34 +02:00
|
|
|
bool
|
|
|
|
SimpleDatabase::VisitUniqueTags(const DatabaseSelection &selection,
|
|
|
|
enum tag_type tag_type,
|
|
|
|
VisitString visit_string,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error) const
|
2012-08-15 21:32:34 +02:00
|
|
|
{
|
|
|
|
return ::VisitUniqueTags(*this, selection, tag_type, visit_string,
|
2013-08-10 18:02:44 +02:00
|
|
|
error);
|
2012-08-15 21:32:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-15 22:20:28 +02:00
|
|
|
bool
|
|
|
|
SimpleDatabase::GetStats(const DatabaseSelection &selection,
|
2013-08-10 18:02:44 +02:00
|
|
|
DatabaseStats &stats, Error &error) const
|
2012-08-15 22:20:28 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
return ::GetStats(*this, selection, stats, error);
|
2012-08-15 22:20:28 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 23:03:05 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
SimpleDatabase::Save(Error &error)
|
2011-09-05 23:03:05 +02:00
|
|
|
{
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
|
|
|
|
2011-09-05 23:03:05 +02:00
|
|
|
g_debug("removing empty directories from DB");
|
2013-01-02 23:06:10 +01:00
|
|
|
root->PruneEmpty();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
g_debug("sorting DB");
|
2013-01-02 23:06:10 +01:00
|
|
|
root->Sort();
|
2011-09-05 23:03:05 +02:00
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
|
|
|
|
2011-09-05 23:03:05 +02:00
|
|
|
g_debug("writing DB");
|
|
|
|
|
2013-02-02 15:27:06 +01:00
|
|
|
FILE *fp = FOpen(path, FOpenMode::WriteText);
|
2011-09-05 23:03:05 +02:00
|
|
|
if (!fp) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("unable to write to db file \"%s\"",
|
|
|
|
path_utf8.c_str());
|
2011-09-05 23:03:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
db_save_internal(fp, root);
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
if (ferror(fp)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.SetErrno("Failed to write to database file");
|
2011-09-05 23:03:05 +02:00
|
|
|
fclose(fp);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
struct stat st;
|
2013-02-02 15:27:06 +01:00
|
|
|
if (StatFile(path, st))
|
2012-07-30 07:26:08 +02:00
|
|
|
mtime = st.st_mtime;
|
2011-09-05 23:03:05 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
const DatabasePlugin simple_db_plugin = {
|
|
|
|
"simple",
|
|
|
|
SimpleDatabase::Create,
|
|
|
|
};
|