2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-02 22:43:56 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-14 11:10:49 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-10-14 11:10:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Maps directory and song objects to file system paths.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2008-10-14 11:10:49 +02:00
|
|
|
#include "song.h"
|
2013-01-21 19:14:37 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-01-23 19:38:09 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
|
|
|
#include "fs/DirectoryReader.hxx"
|
2008-10-15 19:36:33 +02:00
|
|
|
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2011-11-28 09:37:05 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2011-11-28 09:56:03 +01:00
|
|
|
#include <dirent.h>
|
2008-10-15 19:36:33 +02:00
|
|
|
|
2012-08-13 23:37:50 +02:00
|
|
|
/**
|
|
|
|
* The absolute path of the music directory encoded in UTF-8.
|
|
|
|
*/
|
|
|
|
static char *music_dir_utf8;
|
|
|
|
static size_t music_dir_utf8_length;
|
2008-10-15 19:36:33 +02:00
|
|
|
|
2012-08-13 23:37:50 +02:00
|
|
|
/**
|
|
|
|
* The absolute path of the music directory encoded in the filesystem
|
|
|
|
* character set.
|
|
|
|
*/
|
2013-01-23 19:38:09 +01:00
|
|
|
static Path music_dir_fs = Path::Null();
|
2012-08-13 23:37:50 +02:00
|
|
|
static size_t music_dir_fs_length;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The absolute path of the playlist directory encoded in the
|
|
|
|
* filesystem character set.
|
|
|
|
*/
|
2013-01-23 19:38:09 +01:00
|
|
|
static Path playlist_dir_fs = Path::Null();
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2013-01-27 08:26:17 +01:00
|
|
|
static inline GQuark
|
|
|
|
mapper_quark()
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string ("mapper");
|
|
|
|
}
|
|
|
|
|
2009-01-30 13:47:45 +01:00
|
|
|
/**
|
|
|
|
* Duplicate a string, chop all trailing slashes.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
strdup_chop_slash(const char *path_fs)
|
|
|
|
{
|
|
|
|
size_t length = strlen(path_fs);
|
|
|
|
|
|
|
|
while (length > 0 && path_fs[length - 1] == G_DIR_SEPARATOR)
|
|
|
|
--length;
|
|
|
|
|
|
|
|
return g_strndup(path_fs, length);
|
|
|
|
}
|
|
|
|
|
2011-11-28 09:35:50 +01:00
|
|
|
static void
|
2013-01-23 19:38:09 +01:00
|
|
|
check_directory(const char *path_utf8, const Path &path_fs)
|
2011-11-28 09:35:50 +01:00
|
|
|
{
|
2011-11-28 09:37:05 +01:00
|
|
|
struct stat st;
|
2013-01-23 19:38:09 +01:00
|
|
|
if (!StatFile(path_fs, st)) {
|
2011-11-28 09:37:05 +01:00
|
|
|
g_warning("Failed to stat directory \"%s\": %s",
|
2013-01-23 19:38:09 +01:00
|
|
|
path_utf8, g_strerror(errno));
|
2011-11-28 09:37:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!S_ISDIR(st.st_mode)) {
|
2013-01-23 19:38:09 +01:00
|
|
|
g_warning("Not a directory: %s", path_utf8);
|
2011-11-28 09:37:05 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-11-28 09:44:36 +01:00
|
|
|
|
|
|
|
#ifndef WIN32
|
2013-01-23 19:38:09 +01:00
|
|
|
const Path x = Path::Build(path_fs, ".");
|
|
|
|
if (!StatFile(x, st) && errno == EACCES)
|
2011-11-28 09:44:36 +01:00
|
|
|
g_warning("No permission to traverse (\"execute\") directory: %s",
|
2013-01-23 19:38:09 +01:00
|
|
|
path_utf8);
|
2011-11-28 09:44:36 +01:00
|
|
|
#endif
|
2011-11-28 09:56:03 +01:00
|
|
|
|
2013-01-23 19:38:09 +01:00
|
|
|
const DirectoryReader reader(path_fs);
|
|
|
|
if (reader.Failed() && errno == EACCES)
|
|
|
|
g_warning("No permission to read directory: %s", path_utf8);
|
2011-11-28 09:35:50 +01:00
|
|
|
}
|
|
|
|
|
2013-01-27 08:26:17 +01:00
|
|
|
static bool
|
|
|
|
mapper_set_music_dir(const char *path_utf8, GError **error_r)
|
2009-01-18 16:56:07 +01:00
|
|
|
{
|
2013-01-27 08:26:17 +01:00
|
|
|
music_dir_fs = Path::FromUTF8(path_utf8);
|
|
|
|
if (music_dir_fs.IsNull()) {
|
|
|
|
g_set_error(error_r, mapper_quark(), 0,
|
|
|
|
"Failed to convert music path to FS encoding");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
music_dir_fs_length = music_dir_fs.length();
|
|
|
|
|
2012-08-13 23:37:50 +02:00
|
|
|
music_dir_utf8 = strdup_chop_slash(path_utf8);
|
|
|
|
music_dir_utf8_length = strlen(music_dir_utf8);
|
2011-11-28 09:35:50 +01:00
|
|
|
|
2013-01-23 19:38:09 +01:00
|
|
|
check_directory(path_utf8, music_dir_fs);
|
2013-01-27 08:26:17 +01:00
|
|
|
|
|
|
|
return true;
|
2009-01-18 16:56:07 +01:00
|
|
|
}
|
|
|
|
|
2013-01-27 08:26:17 +01:00
|
|
|
static bool
|
|
|
|
mapper_set_playlist_dir(const char *path_utf8, GError **error_r)
|
2009-01-18 16:15:45 +01:00
|
|
|
{
|
2013-01-23 19:38:09 +01:00
|
|
|
playlist_dir_fs = Path::FromUTF8(path_utf8);
|
2013-01-27 08:26:17 +01:00
|
|
|
if (playlist_dir_fs.IsNull()) {
|
|
|
|
g_set_error(error_r, mapper_quark(), 0,
|
|
|
|
"Failed to convert playlist path to FS encoding");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-23 19:38:09 +01:00
|
|
|
check_directory(path_utf8, playlist_dir_fs);
|
2013-01-27 08:26:17 +01:00
|
|
|
return true;
|
2009-01-18 16:15:45 +01:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2013-01-27 08:26:17 +01:00
|
|
|
bool mapper_init(const char *_music_dir, const char *_playlist_dir,
|
|
|
|
GError **error_r)
|
2008-10-15 19:36:33 +02:00
|
|
|
{
|
2009-07-15 18:58:19 +02:00
|
|
|
if (_music_dir != NULL)
|
2013-01-27 08:26:17 +01:00
|
|
|
if (!mapper_set_music_dir(_music_dir, error_r))
|
|
|
|
return false;
|
2009-07-15 18:58:19 +02:00
|
|
|
|
|
|
|
if (_playlist_dir != NULL)
|
2013-01-27 08:26:17 +01:00
|
|
|
if (!mapper_set_playlist_dir(_playlist_dir, error_r))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2008-10-15 19:36:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void mapper_finish(void)
|
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
g_free(music_dir_utf8);
|
2008-10-15 19:36:33 +02:00
|
|
|
}
|
|
|
|
|
2012-02-13 20:10:19 +01:00
|
|
|
const char *
|
2012-08-13 23:37:50 +02:00
|
|
|
mapper_get_music_directory_utf8(void)
|
2009-01-18 16:56:07 +01:00
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
return music_dir_utf8;
|
|
|
|
}
|
|
|
|
|
2013-01-23 19:38:09 +01:00
|
|
|
const Path &
|
2012-08-13 23:37:50 +02:00
|
|
|
mapper_get_music_directory_fs(void)
|
|
|
|
{
|
|
|
|
return music_dir_fs;
|
2009-01-18 16:56:07 +01:00
|
|
|
}
|
|
|
|
|
2010-07-25 13:18:57 +02:00
|
|
|
const char *
|
|
|
|
map_to_relative_path(const char *path_utf8)
|
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
return music_dir_utf8 != NULL &&
|
|
|
|
memcmp(path_utf8, music_dir_utf8,
|
|
|
|
music_dir_utf8_length) == 0 &&
|
|
|
|
G_IS_DIR_SEPARATOR(path_utf8[music_dir_utf8_length])
|
|
|
|
? path_utf8 + music_dir_utf8_length + 1
|
2010-07-25 13:18:57 +02:00
|
|
|
: path_utf8;
|
|
|
|
}
|
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
Path
|
2009-01-02 10:48:11 +01:00
|
|
|
map_uri_fs(const char *uri)
|
2008-12-24 22:04:24 +01:00
|
|
|
{
|
|
|
|
assert(uri != NULL);
|
|
|
|
assert(*uri != '/');
|
|
|
|
|
2013-01-23 19:38:09 +01:00
|
|
|
if (music_dir_fs.IsNull())
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Null();
|
2009-01-18 16:56:07 +01:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
const Path uri_fs = Path::FromUTF8(uri);
|
|
|
|
if (uri_fs.IsNull())
|
|
|
|
return Path::Null();
|
2009-01-08 21:20:46 +01:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Build(music_dir_fs, uri_fs);
|
2008-12-24 22:04:24 +01:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
Path
|
2013-01-02 23:06:20 +01:00
|
|
|
map_directory_fs(const Directory *directory)
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
assert(music_dir_utf8 != NULL);
|
2013-01-23 19:38:09 +01:00
|
|
|
assert(!music_dir_fs.IsNull());
|
2009-01-18 16:56:07 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
if (directory->IsRoot())
|
2013-01-23 19:38:09 +01:00
|
|
|
return music_dir_fs;
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
return map_uri_fs(directory->GetPath());
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
Path
|
2013-01-02 23:06:20 +01:00
|
|
|
map_directory_child_fs(const Directory *directory, const char *name)
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
assert(music_dir_utf8 != NULL);
|
2013-01-23 19:38:09 +01:00
|
|
|
assert(!music_dir_fs.IsNull());
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2008-10-31 16:48:58 +01:00
|
|
|
/* check for invalid or unauthorized base names */
|
|
|
|
if (*name == 0 || strchr(name, '/') != NULL ||
|
|
|
|
strcmp(name, ".") == 0 || strcmp(name, "..") == 0)
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Null();
|
2008-10-31 16:48:58 +01:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
const Path parent_fs = map_directory_fs(directory);
|
|
|
|
if (parent_fs.IsNull())
|
|
|
|
return Path::Null();
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
const Path name_fs = Path::FromUTF8(name);
|
|
|
|
if (name_fs.IsNull())
|
|
|
|
return Path::Null();
|
2009-01-08 21:20:46 +01:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Build(parent_fs, name_fs);
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
2012-08-15 22:44:21 +02:00
|
|
|
/**
|
|
|
|
* Map a song object that was created by song_dup_detached(). It does
|
|
|
|
* not have a real parent directory, only the dummy object
|
|
|
|
* #detached_root.
|
|
|
|
*/
|
2013-01-17 00:56:57 +01:00
|
|
|
static Path
|
2012-08-15 22:44:21 +02:00
|
|
|
map_detached_song_fs(const char *uri_utf8)
|
|
|
|
{
|
2013-01-17 00:56:57 +01:00
|
|
|
Path uri_fs = Path::FromUTF8(uri_utf8);
|
|
|
|
if (uri_fs.IsNull())
|
|
|
|
return Path::Null();
|
2012-08-15 22:44:21 +02:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Build(music_dir_fs, uri_fs);
|
2012-08-15 22:44:21 +02:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
Path
|
2009-01-02 10:48:55 +01:00
|
|
|
map_song_fs(const struct song *song)
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
2008-10-15 22:35:13 +02:00
|
|
|
assert(song_is_file(song));
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2008-10-15 22:35:13 +02:00
|
|
|
if (song_in_database(song))
|
2012-08-15 22:44:21 +02:00
|
|
|
return song_is_detached(song)
|
|
|
|
? map_detached_song_fs(song->uri)
|
|
|
|
: map_directory_child_fs(song->parent, song->uri);
|
2008-10-15 22:35:13 +02:00
|
|
|
else
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::FromUTF8(song->uri);
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
2009-01-04 18:59:47 +01:00
|
|
|
char *
|
|
|
|
map_fs_to_utf8(const char *path_fs)
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
2013-01-23 19:38:09 +01:00
|
|
|
if (!music_dir_fs.IsNull() &&
|
|
|
|
strncmp(path_fs, music_dir_fs.c_str(), music_dir_fs_length) == 0 &&
|
2012-08-13 23:37:50 +02:00
|
|
|
G_IS_DIR_SEPARATOR(path_fs[music_dir_fs_length]))
|
2008-10-14 11:10:49 +02:00
|
|
|
/* remove musicDir prefix */
|
2012-08-13 23:37:50 +02:00
|
|
|
path_fs += music_dir_fs_length + 1;
|
2009-10-20 21:01:55 +02:00
|
|
|
else if (G_IS_DIR_SEPARATOR(path_fs[0]))
|
2008-10-14 11:10:49 +02:00
|
|
|
/* not within musicDir */
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-30 13:47:52 +01:00
|
|
|
while (path_fs[0] == G_DIR_SEPARATOR)
|
|
|
|
++path_fs;
|
|
|
|
|
2013-01-23 21:26:38 +01:00
|
|
|
const std::string path_utf8 = Path::ToUTF8(path_fs);
|
|
|
|
if (path_utf8.empty())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return g_strdup(path_utf8.c_str());
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2013-01-23 19:38:09 +01:00
|
|
|
const Path &
|
2008-10-31 16:47:14 +01:00
|
|
|
map_spl_path(void)
|
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
return playlist_dir_fs;
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
Path
|
2009-01-01 19:17:44 +01:00
|
|
|
map_spl_utf8_to_fs(const char *name)
|
2008-10-31 16:47:14 +01:00
|
|
|
{
|
2013-01-23 19:38:09 +01:00
|
|
|
if (playlist_dir_fs.IsNull())
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Null();
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
char *filename_utf8 = g_strconcat(name, PLAYLIST_FILE_SUFFIX, NULL);
|
|
|
|
const Path filename_fs = Path::FromUTF8(filename_utf8);
|
2009-12-08 08:17:35 +01:00
|
|
|
g_free(filename_utf8);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (filename_fs.IsNull())
|
|
|
|
return Path::Null();
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
return Path::Build(playlist_dir_fs, filename_fs);
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|