2008-10-14 11:10:49 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2008 Max Kellermann <max@duempel.org>
|
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
static size_t playlist_dir_length;
|
|
|
|
|
2008-10-15 19:36:33 +02:00
|
|
|
void mapper_init(void)
|
|
|
|
{
|
2009-01-01 19:07:38 +01:00
|
|
|
ConfigParam *music_dir_param = parseConfigFilePath(CONF_MUSIC_DIR, false);
|
2008-10-31 16:47:14 +01:00
|
|
|
ConfigParam *playlist_dir_param = parseConfigFilePath(CONF_PLAYLIST_DIR, 1);
|
2008-10-15 19:36:33 +02:00
|
|
|
int ret;
|
|
|
|
struct stat st;
|
|
|
|
|
2009-01-01 19:07:38 +01:00
|
|
|
if (music_dir_param != NULL) {
|
|
|
|
music_dir = g_strdup(music_dir_param->value);
|
|
|
|
} else {
|
|
|
|
music_dir = g_strdup(g_get_user_special_dir(G_USER_DIRECTORY_MUSIC));
|
|
|
|
if (music_dir == NULL)
|
|
|
|
/* GLib failed to determine the XDG music
|
|
|
|
directory - abort */
|
|
|
|
g_error("config parameter \"%s\" not found\n", CONF_MUSIC_DIR);
|
|
|
|
}
|
|
|
|
|
2008-10-15 19:36:33 +02:00
|
|
|
music_dir = g_strdup(music_dir_param->value);
|
|
|
|
music_dir_length = strlen(music_dir);
|
|
|
|
|
|
|
|
ret = stat(music_dir, &st);
|
|
|
|
if (ret < 0)
|
2008-10-31 16:46:46 +01:00
|
|
|
g_warning("failed to stat music directory \"%s\" (config line %i): %s\n",
|
|
|
|
music_dir_param->value, music_dir_param->line,
|
|
|
|
strerror(errno));
|
2008-10-15 19:36:33 +02:00
|
|
|
else if (!S_ISDIR(st.st_mode))
|
2008-10-31 16:46:46 +01:00
|
|
|
g_warning("music directory is not a directory: \"%s\" (config line %i)\n",
|
|
|
|
music_dir_param->value, music_dir_param->line);
|
2008-10-31 16:47:14 +01:00
|
|
|
|
|
|
|
playlist_dir = g_strdup(playlist_dir_param->value);
|
|
|
|
playlist_dir_length = strlen(playlist_dir);
|
|
|
|
|
|
|
|
ret = stat(playlist_dir, &st);
|
|
|
|
if (ret < 0)
|
|
|
|
g_warning("failed to stat playlist directory \"%s\" (config line %i): %s\n",
|
|
|
|
playlist_dir_param->value, playlist_dir_param->line,
|
|
|
|
strerror(errno));
|
|
|
|
else if (!S_ISDIR(st.st_mode))
|
|
|
|
g_warning("playlist directory is not a directory: \"%s\" (config line %i)\n",
|
|
|
|
playlist_dir_param->value, playlist_dir_param->line);
|
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-02 10:48:11 +01:00
|
|
|
char *
|
|
|
|
map_uri_fs(const char *uri)
|
2008-12-24 22:04:24 +01:00
|
|
|
{
|
|
|
|
assert(uri != NULL);
|
|
|
|
assert(*uri != '/');
|
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
return g_build_filename(music_dir, uri, NULL);
|
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
|
|
|
{
|
|
|
|
const char *dirname = directory_get_path(directory);
|
|
|
|
if (isRootDirectory(dirname))
|
2009-01-02 10:48:11 +01:00
|
|
|
return g_strdup(music_dir);
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2009-01-02 10:48:11 +01:00
|
|
|
return map_uri_fs(dirname);
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
map_directory_child_fs(const struct directory *directory, const char *name,
|
|
|
|
char *buffer)
|
|
|
|
{
|
2009-01-02 10:48:11 +01:00
|
|
|
char *parent_fs;
|
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)
|
|
|
|
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;
|
|
|
|
|
2008-11-20 18:10:18 +01:00
|
|
|
name = utf8_to_fs_charset(buffer, name);
|
2008-10-14 11:10:49 +02:00
|
|
|
pfx_dir(buffer, name, strlen(name),
|
|
|
|
parent_fs, strlen(parent_fs));
|
2009-01-02 10:48:11 +01:00
|
|
|
g_free(parent_fs);
|
2008-10-14 11:10:49 +02:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
map_song_fs(const struct song *song, char *buffer)
|
|
|
|
{
|
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))
|
|
|
|
return map_directory_child_fs(song->parent, song->url, buffer);
|
|
|
|
else
|
|
|
|
return utf8_to_fs_charset(buffer, song->url);
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
map_fs_to_utf8(const char *path_fs, char *buffer)
|
|
|
|
{
|
2008-10-15 19:36:33 +02:00
|
|
|
if (strncmp(path_fs, music_dir, music_dir_length) == 0 &&
|
|
|
|
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;
|
|
|
|
|
|
|
|
return fs_charset_to_utf8(buffer, path_fs);
|
|
|
|
}
|
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-01 19:17:44 +01:00
|
|
|
char *filename = g_strconcat(name, "." PLAYLIST_FILE_SUFFIX, NULL);
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
path = g_build_filename(playlist_dir, filename, NULL);
|
|
|
|
g_free(filename);
|
|
|
|
|
|
|
|
return path;
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|