2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mapper.h"
|
|
|
|
#include "directory.h"
|
|
|
|
#include "song.h"
|
|
|
|
#include "path.h"
|
2008-10-15 19:36:33 +02:00
|
|
|
#include "conf.h"
|
|
|
|
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
2008-10-15 19:36:33 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2008-10-15 19:36:33 +02:00
|
|
|
|
|
|
|
static char *music_dir;
|
|
|
|
static size_t music_dir_length;
|
|
|
|
|
2008-10-31 16:47:14 +01:00
|
|
|
static char *playlist_dir;
|
2009-01-18 16:15:45 +01:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2009-01-18 16:56:07 +01:00
|
|
|
static void
|
2009-01-18 18:59:10 +01:00
|
|
|
mapper_set_music_dir(const char *path)
|
2009-01-18 16:56:07 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct stat st;
|
|
|
|
|
2009-01-30 13:47:45 +01:00
|
|
|
music_dir = strdup_chop_slash(path);
|
2009-01-18 16:56:07 +01:00
|
|
|
music_dir_length = strlen(music_dir);
|
|
|
|
|
|
|
|
ret = stat(music_dir, &st);
|
|
|
|
if (ret < 0)
|
2009-01-18 18:59:10 +01:00
|
|
|
g_warning("failed to stat music directory \"%s\": %s",
|
|
|
|
music_dir, g_strerror(errno));
|
2009-01-18 16:56:07 +01:00
|
|
|
else if (!S_ISDIR(st.st_mode))
|
2009-01-18 18:59:10 +01:00
|
|
|
g_warning("music directory is not a directory: \"%s\"",
|
|
|
|
music_dir);
|
2009-01-18 16:56:07 +01:00
|
|
|
}
|
|
|
|
|
2009-01-18 16:15:45 +01:00
|
|
|
static void
|
2009-01-18 18:59:10 +01:00
|
|
|
mapper_set_playlist_dir(const char *path)
|
2009-01-18 16:15:45 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
playlist_dir = g_strdup(path);
|
|
|
|
|
|
|
|
ret = stat(playlist_dir, &st);
|
|
|
|
if (ret < 0)
|
2009-01-18 18:59:10 +01:00
|
|
|
g_warning("failed to stat playlist directory \"%s\": %s",
|
|
|
|
playlist_dir, g_strerror(errno));
|
2009-01-18 16:15:45 +01:00
|
|
|
else if (!S_ISDIR(st.st_mode))
|
2009-01-18 18:59:10 +01:00
|
|
|
g_warning("playlist directory is not a directory: \"%s\"",
|
|
|
|
playlist_dir);
|
2009-01-18 16:15:45 +01:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2008-10-15 19:36:33 +02:00
|
|
|
void mapper_init(void)
|
|
|
|
{
|
2009-01-18 18:59:10 +01:00
|
|
|
const char *path;
|
2008-10-15 19:36:33 +02:00
|
|
|
|
2009-01-18 18:59:10 +01:00
|
|
|
path = config_get_path(CONF_MUSIC_DIR);
|
|
|
|
if (path != NULL)
|
|
|
|
mapper_set_music_dir(path);
|
2009-03-01 00:37:22 +01:00
|
|
|
#if GLIB_CHECK_VERSION(2,14,0)
|
2009-01-18 16:56:07 +01:00
|
|
|
else {
|
2009-01-18 18:59:10 +01:00
|
|
|
path = g_get_user_special_dir(G_USER_DIRECTORY_MUSIC);
|
2009-01-18 16:56:07 +01:00
|
|
|
if (path != NULL)
|
2009-01-18 18:59:10 +01:00
|
|
|
mapper_set_music_dir(path);
|
2009-01-01 19:07:38 +01:00
|
|
|
}
|
2009-01-18 16:56:07 +01:00
|
|
|
#endif
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2009-01-18 18:59:10 +01:00
|
|
|
path = config_get_path(CONF_PLAYLIST_DIR);
|
|
|
|
if (path != NULL)
|
|
|
|
mapper_set_playlist_dir(path);
|
2008-10-15 19:36:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void mapper_finish(void)
|
|
|
|
{
|
|
|
|
g_free(music_dir);
|
2008-10-31 16:47:14 +01:00
|
|
|
g_free(playlist_dir);
|
2008-10-15 19:36:33 +02:00
|
|
|
}
|
|
|
|
|
2009-01-18 16:56:07 +01:00
|
|
|
bool
|
|
|
|
mapper_has_music_directory(void)
|
|
|
|
{
|
|
|
|
return music_dir != NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
char *
|
|
|
|
map_uri_fs(const char *uri)
|
2008-12-24 22:04:24 +01:00
|
|
|
{
|
2009-01-08 21:20:46 +01:00
|
|
|
char *uri_fs, *path_fs;
|
2009-01-08 17:29:08 +01:00
|
|
|
|
2008-12-24 22:04:24 +01:00
|
|
|
assert(uri != NULL);
|
|
|
|
assert(*uri != '/');
|
|
|
|
|
2009-01-18 16:56:07 +01:00
|
|
|
if (music_dir == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-08 21:20:46 +01:00
|
|
|
uri_fs = utf8_to_fs_charset(uri);
|
|
|
|
if (uri_fs == NULL)
|
2009-01-08 17:29:08 +01:00
|
|
|
return NULL;
|
|
|
|
|
2009-01-08 21:20:46 +01:00
|
|
|
path_fs = g_build_filename(music_dir, uri_fs, NULL);
|
|
|
|
g_free(uri_fs);
|
|
|
|
|
|
|
|
return path_fs;
|
2008-12-24 22:04:24 +01:00
|
|
|
}
|
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
char *
|
|
|
|
map_directory_fs(const struct directory *directory)
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
2009-01-18 16:56:07 +01:00
|
|
|
assert(music_dir != NULL);
|
|
|
|
|
2009-01-08 21:29:30 +01:00
|
|
|
if (directory_is_root(directory))
|
2009-01-02 10:48:11 +01:00
|
|
|
return g_strdup(music_dir);
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2009-01-08 21:29:30 +01:00
|
|
|
return map_uri_fs(directory_get_path(directory));
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
2009-01-02 10:48:55 +01:00
|
|
|
char *
|
|
|
|
map_directory_child_fs(const struct directory *directory, const char *name)
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
2009-01-08 21:20:46 +01:00
|
|
|
char *name_fs, *parent_fs, *path;
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2009-01-18 16:56:07 +01:00
|
|
|
assert(music_dir != NULL);
|
|
|
|
|
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)
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
parent_fs = map_directory_fs(directory);
|
2008-10-14 11:10:49 +02:00
|
|
|
if (parent_fs == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-08 21:20:46 +01:00
|
|
|
name_fs = utf8_to_fs_charset(name);
|
|
|
|
if (name_fs == NULL) {
|
|
|
|
g_free(parent_fs);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
path = g_build_filename(parent_fs, name_fs, NULL);
|
2009-01-02 10:48:11 +01:00
|
|
|
g_free(parent_fs);
|
2009-01-08 21:20:46 +01:00
|
|
|
g_free(name_fs);
|
|
|
|
|
2009-01-02 10:48:55 +01:00
|
|
|
return path;
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
2009-01-02 10:48:55 +01:00
|
|
|
char *
|
|
|
|
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))
|
2009-01-02 10:48:55 +01:00
|
|
|
return map_directory_child_fs(song->parent, song->url);
|
2008-10-15 22:35:13 +02:00
|
|
|
else
|
2009-01-08 21:20:46 +01:00
|
|
|
return utf8_to_fs_charset(song->url);
|
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
|
|
|
{
|
2009-01-18 16:56:07 +01:00
|
|
|
if (music_dir != NULL &&
|
|
|
|
strncmp(path_fs, music_dir, music_dir_length) == 0 &&
|
2008-10-15 19:36:33 +02:00
|
|
|
path_fs[music_dir_length] == '/')
|
2008-10-14 11:10:49 +02:00
|
|
|
/* remove musicDir prefix */
|
2008-10-19 00:05:39 +02:00
|
|
|
path_fs += music_dir_length + 1;
|
2008-10-14 11:10:49 +02:00
|
|
|
else if (path_fs[0] == '/')
|
|
|
|
/* not within musicDir */
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-30 13:47:52 +01:00
|
|
|
while (path_fs[0] == G_DIR_SEPARATOR)
|
|
|
|
++path_fs;
|
|
|
|
|
2009-01-08 21:20:46 +01:00
|
|
|
return fs_charset_to_utf8(path_fs);
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
|
|
|
const char *
|
|
|
|
map_spl_path(void)
|
|
|
|
{
|
|
|
|
return playlist_dir;
|
|
|
|
}
|
|
|
|
|
2009-01-01 19:17:44 +01:00
|
|
|
char *
|
|
|
|
map_spl_utf8_to_fs(const char *name)
|
2008-10-31 16:47:14 +01:00
|
|
|
{
|
2009-01-25 13:43:57 +01:00
|
|
|
char *filename = g_strconcat(name, PLAYLIST_FILE_SUFFIX, NULL);
|
2009-01-01 19:17:44 +01:00
|
|
|
char *path;
|
|
|
|
|
2009-01-18 16:15:45 +01:00
|
|
|
if (playlist_dir == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-01 19:17:44 +01:00
|
|
|
path = g_build_filename(playlist_dir, filename, NULL);
|
|
|
|
g_free(filename);
|
|
|
|
|
|
|
|
return path;
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|