2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 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"
|
2008-10-14 11:10:49 +02:00
|
|
|
#include "mapper.h"
|
|
|
|
#include "directory.h"
|
|
|
|
#include "song.h"
|
|
|
|
#include "path.h"
|
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>
|
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);
|
|
|
|
}
|
|
|
|
|
2011-11-28 09:35:50 +01:00
|
|
|
static void
|
|
|
|
check_directory(const char *path)
|
|
|
|
{
|
|
|
|
if (!g_file_test(path, G_FILE_TEST_IS_DIR))
|
|
|
|
g_warning("Not a directory: %s", path);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2011-11-28 09:35:50 +01:00
|
|
|
check_directory(path);
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2011-11-28 09:35:50 +01:00
|
|
|
check_directory(path);
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2011-11-28 09:35:50 +01:00
|
|
|
playlist_dir = g_strdup(path);
|
2009-01-18 16:15:45 +01:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2009-07-15 18:58:19 +02:00
|
|
|
void mapper_init(const char *_music_dir, const char *_playlist_dir)
|
2008-10-15 19:36:33 +02:00
|
|
|
{
|
2009-07-15 18:58:19 +02:00
|
|
|
if (_music_dir != NULL)
|
|
|
|
mapper_set_music_dir(_music_dir);
|
|
|
|
|
|
|
|
if (_playlist_dir != NULL)
|
|
|
|
mapper_set_playlist_dir(_playlist_dir);
|
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;
|
|
|
|
}
|
|
|
|
|
2010-07-25 13:18:57 +02:00
|
|
|
const char *
|
|
|
|
map_to_relative_path(const char *path_utf8)
|
|
|
|
{
|
|
|
|
return music_dir != NULL &&
|
|
|
|
memcmp(path_utf8, music_dir, music_dir_length) == 0 &&
|
|
|
|
G_IS_DIR_SEPARATOR(path_utf8[music_dir_length])
|
|
|
|
? path_utf8 + music_dir_length + 1
|
|
|
|
: path_utf8;
|
|
|
|
}
|
|
|
|
|
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-10-13 18:01:06 +02:00
|
|
|
return map_directory_child_fs(song->parent, song->uri);
|
2008-10-15 22:35:13 +02:00
|
|
|
else
|
2009-10-13 18:01:06 +02:00
|
|
|
return utf8_to_fs_charset(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
|
|
|
{
|
2009-01-18 16:56:07 +01:00
|
|
|
if (music_dir != NULL &&
|
|
|
|
strncmp(path_fs, music_dir, music_dir_length) == 0 &&
|
2009-10-20 21:01:55 +02:00
|
|
|
G_IS_DIR_SEPARATOR(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;
|
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;
|
|
|
|
|
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-12-08 08:17:35 +01:00
|
|
|
char *filename_utf8, *filename_fs, *path;
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2009-01-18 16:15:45 +01:00
|
|
|
if (playlist_dir == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-12-08 08:17:35 +01:00
|
|
|
filename_utf8 = g_strconcat(name, PLAYLIST_FILE_SUFFIX, NULL);
|
|
|
|
filename_fs = utf8_to_fs_charset(filename_utf8);
|
|
|
|
g_free(filename_utf8);
|
|
|
|
if (filename_fs == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
path = g_build_filename(playlist_dir, filename_fs, NULL);
|
|
|
|
g_free(filename_fs);
|
2009-01-01 19:17:44 +01:00
|
|
|
|
|
|
|
return path;
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|