2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2007-05-16 14:02:10 +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.
|
2007-05-16 14:02:10 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2008-10-22 17:21:57 +02:00
|
|
|
#include "stored_playlist.h"
|
2008-10-14 11:10:47 +02:00
|
|
|
#include "playlist_save.h"
|
2010-12-23 16:22:19 +01:00
|
|
|
#include "text_file.h"
|
2008-10-08 10:49:11 +02:00
|
|
|
#include "song.h"
|
2008-10-14 11:10:49 +02:00
|
|
|
#include "mapper.h"
|
2007-05-16 14:02:10 +02:00
|
|
|
#include "path.h"
|
2009-02-25 16:44:06 +01:00
|
|
|
#include "uri.h"
|
2008-10-08 11:07:35 +02:00
|
|
|
#include "database.h"
|
2008-10-14 22:38:14 +02:00
|
|
|
#include "idle.h"
|
2009-01-25 13:53:16 +01:00
|
|
|
#include "conf.h"
|
2011-09-11 07:41:25 +02:00
|
|
|
#include "glib_compat.h"
|
2008-12-29 17:28:32 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <string.h>
|
2009-01-02 17:22:47 +01:00
|
|
|
#include <errno.h>
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2011-09-11 07:55:19 +02:00
|
|
|
static const char PLAYLIST_COMMENT = '#';
|
|
|
|
|
2009-01-25 13:53:16 +01:00
|
|
|
static unsigned playlist_max_length;
|
|
|
|
bool playlist_saveAbsolutePaths = DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS;
|
|
|
|
|
|
|
|
void
|
|
|
|
spl_global_init(void)
|
|
|
|
{
|
|
|
|
playlist_max_length = config_get_positive(CONF_MAX_PLAYLIST_LENGTH,
|
|
|
|
DEFAULT_PLAYLIST_MAX_LENGTH);
|
|
|
|
|
|
|
|
playlist_saveAbsolutePaths =
|
|
|
|
config_get_bool(CONF_SAVE_ABSOLUTE_PATHS,
|
|
|
|
DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS);
|
|
|
|
}
|
|
|
|
|
2009-01-25 14:19:28 +01:00
|
|
|
bool
|
|
|
|
spl_valid_name(const char *name_utf8)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Not supporting '/' was done out of laziness, and we should
|
|
|
|
* really strive to support it in the future.
|
|
|
|
*
|
|
|
|
* Not supporting '\r' and '\n' is done out of protocol
|
|
|
|
* limitations (and arguably laziness), but bending over head
|
|
|
|
* over heels to modify the protocol (and compatibility with
|
|
|
|
* all clients) to support idiots who put '\r' and '\n' in
|
|
|
|
* filenames isn't going to happen, either.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return strchr(name_utf8, '/') == NULL &&
|
|
|
|
strchr(name_utf8, '\n') == NULL &&
|
|
|
|
strchr(name_utf8, '\r') == NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
static const char *
|
|
|
|
spl_map(GError **error_r)
|
|
|
|
{
|
|
|
|
const char *path_fs = map_spl_path();
|
|
|
|
if (path_fs == NULL)
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_DISABLED,
|
|
|
|
"Stored playlists are disabled");
|
|
|
|
|
|
|
|
return path_fs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
spl_check_name(const char *name_utf8, GError **error_r)
|
|
|
|
{
|
|
|
|
if (!spl_valid_name(name_utf8)) {
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_BAD_NAME,
|
|
|
|
"Bad playlist name");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
spl_map_to_fs(const char *name_utf8, GError **error_r)
|
|
|
|
{
|
|
|
|
if (spl_map(error_r) == NULL ||
|
|
|
|
!spl_check_name(name_utf8, error_r))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
char *path_fs = map_spl_utf8_to_fs(name_utf8);
|
|
|
|
if (path_fs == NULL)
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_BAD_NAME,
|
|
|
|
"Bad playlist name");
|
|
|
|
|
|
|
|
return path_fs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a GError for the current errno.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
playlist_errno(GError **error_r)
|
|
|
|
{
|
|
|
|
switch (errno) {
|
|
|
|
case ENOENT:
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_NO_SUCH_LIST,
|
|
|
|
"No such playlist");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_set_error_literal(error_r, g_file_error_quark(), errno,
|
|
|
|
g_strerror(errno));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-22 19:15:50 +02:00
|
|
|
static struct stored_playlist_info *
|
|
|
|
load_playlist_info(const char *parent_path_fs, const char *name_fs)
|
|
|
|
{
|
|
|
|
size_t name_length = strlen(name_fs);
|
|
|
|
|
2009-01-25 13:43:57 +01:00
|
|
|
if (name_length < sizeof(PLAYLIST_FILE_SUFFIX) ||
|
2008-10-22 19:15:50 +02:00
|
|
|
memchr(name_fs, '\n', name_length) != NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-01-25 13:43:57 +01:00
|
|
|
if (!g_str_has_suffix(name_fs, PLAYLIST_FILE_SUFFIX))
|
2008-10-22 19:15:50 +02:00
|
|
|
return NULL;
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
char *path_fs = g_build_filename(parent_path_fs, name_fs, NULL);
|
|
|
|
struct stat st;
|
|
|
|
int ret = stat(path_fs, &st);
|
2009-01-04 19:37:19 +01:00
|
|
|
g_free(path_fs);
|
2008-10-22 19:15:50 +02:00
|
|
|
if (ret < 0 || !S_ISREG(st.st_mode))
|
|
|
|
return NULL;
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
char *name = g_strndup(name_fs,
|
|
|
|
name_length + 1 - sizeof(PLAYLIST_FILE_SUFFIX));
|
|
|
|
char *name_utf8 = fs_charset_to_utf8(name);
|
2008-10-22 19:15:50 +02:00
|
|
|
g_free(name);
|
|
|
|
if (name_utf8 == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
struct stored_playlist_info *playlist =
|
|
|
|
g_new(struct stored_playlist_info, 1);
|
2009-01-08 21:20:46 +01:00
|
|
|
playlist->name = name_utf8;
|
2008-10-22 19:15:50 +02:00
|
|
|
playlist->mtime = st.st_mtime;
|
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
|
|
|
GPtrArray *
|
2011-09-11 07:41:25 +02:00
|
|
|
spl_list(GError **error_r)
|
2008-10-22 19:15:50 +02:00
|
|
|
{
|
2011-09-11 07:41:25 +02:00
|
|
|
const char *parent_path_fs = spl_map(error_r);
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2009-01-18 16:15:45 +01:00
|
|
|
if (parent_path_fs == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
DIR *dir = opendir(parent_path_fs);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (dir == NULL) {
|
|
|
|
g_set_error_literal(error_r, g_file_error_quark(), errno,
|
|
|
|
g_strerror(errno));
|
2008-10-22 19:15:50 +02:00
|
|
|
return NULL;
|
2011-09-11 07:41:25 +02:00
|
|
|
}
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
GPtrArray *list = g_ptr_array_new();
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
struct dirent *ent;
|
2008-10-22 19:15:50 +02:00
|
|
|
while ((ent = readdir(dir)) != NULL) {
|
2012-09-28 00:05:21 +02:00
|
|
|
struct stored_playlist_info *playlist =
|
|
|
|
load_playlist_info(parent_path_fs, ent->d_name);
|
2008-10-22 19:15:50 +02:00
|
|
|
if (playlist != NULL)
|
|
|
|
g_ptr_array_add(list, playlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spl_list_free(GPtrArray *list)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < list->len; ++i) {
|
|
|
|
struct stored_playlist_info *playlist =
|
|
|
|
g_ptr_array_index(list, i);
|
|
|
|
g_free(playlist->name);
|
|
|
|
g_free(playlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_ptr_array_free(list, true);
|
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
static bool
|
|
|
|
spl_save(GPtrArray *list, const char *utf8path, GError **error_r)
|
2008-01-01 11:09:31 +01:00
|
|
|
{
|
2008-09-09 09:59:34 +02:00
|
|
|
assert(utf8path != NULL);
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
if (spl_map(error_r) == NULL)
|
|
|
|
return false;
|
2009-12-08 08:17:35 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
char *path_fs = spl_map_to_fs(utf8path, error_r);
|
2009-01-18 16:15:45 +01:00
|
|
|
if (path_fs == NULL)
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
FILE *file = fopen(path_fs, "w");
|
2009-01-01 19:17:44 +01:00
|
|
|
g_free(path_fs);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (file == NULL) {
|
|
|
|
playlist_errno(error_r);
|
|
|
|
return false;
|
|
|
|
}
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
for (unsigned i = 0; i < list->len; ++i) {
|
|
|
|
const char *uri = g_ptr_array_index(list, i);
|
|
|
|
playlist_print_uri(file, uri);
|
2008-01-01 11:09:31 +01:00
|
|
|
}
|
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(file);
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2008-01-01 11:09:31 +01:00
|
|
|
}
|
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
GPtrArray *
|
2011-09-11 07:41:25 +02:00
|
|
|
spl_load(const char *utf8path, GError **error_r)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
2011-09-11 07:41:25 +02:00
|
|
|
if (spl_map(error_r) == NULL)
|
2008-01-01 11:09:36 +01:00
|
|
|
return NULL;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
char *path_fs = spl_map_to_fs(utf8path, error_r);
|
2009-01-18 16:15:45 +01:00
|
|
|
if (path_fs == NULL)
|
|
|
|
return NULL;
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
FILE *file = fopen(path_fs, "r");
|
2009-01-01 19:17:44 +01:00
|
|
|
g_free(path_fs);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (file == NULL) {
|
|
|
|
playlist_errno(error_r);
|
2008-01-01 11:09:36 +01:00
|
|
|
return NULL;
|
2011-09-11 07:41:25 +02:00
|
|
|
}
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
GPtrArray *list = g_ptr_array_new();
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2010-12-23 16:22:19 +01:00
|
|
|
GString *buffer = g_string_sized_new(1024);
|
|
|
|
char *s;
|
|
|
|
while ((s = read_text_line(file, buffer)) != NULL) {
|
2010-12-23 16:24:37 +01:00
|
|
|
if (*s == 0 || *s == PLAYLIST_COMMENT)
|
2008-01-01 11:09:26 +01:00
|
|
|
continue;
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2009-01-04 16:23:33 +01:00
|
|
|
if (!uri_has_scheme(s)) {
|
2009-01-04 18:59:47 +01:00
|
|
|
char *path_utf8;
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2009-01-04 18:59:47 +01:00
|
|
|
path_utf8 = map_fs_to_utf8(s);
|
2008-10-14 11:10:49 +02:00
|
|
|
if (path_utf8 == NULL)
|
|
|
|
continue;
|
|
|
|
|
2010-12-22 22:25:02 +01:00
|
|
|
s = path_utf8;
|
2009-01-04 19:09:34 +01:00
|
|
|
} else
|
|
|
|
s = g_strdup(s);
|
2008-01-26 21:20:59 +01:00
|
|
|
|
2009-01-04 19:09:34 +01:00
|
|
|
g_ptr_array_add(list, s);
|
2008-10-23 09:54:28 +02:00
|
|
|
|
|
|
|
if (list->len >= playlist_max_length)
|
2008-01-26 21:20:59 +01:00
|
|
|
break;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(file);
|
2008-01-01 11:09:36 +01:00
|
|
|
return list;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
void
|
|
|
|
spl_free(GPtrArray *list)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
2008-10-23 09:54:28 +02:00
|
|
|
for (unsigned i = 0; i < list->len; ++i) {
|
|
|
|
char *uri = g_ptr_array_index(list, i);
|
|
|
|
g_free(uri);
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
g_ptr_array_free(list, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
spl_remove_index_internal(GPtrArray *list, unsigned idx)
|
|
|
|
{
|
|
|
|
assert(idx < list->len);
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
char *uri = g_ptr_array_remove_index(list, idx);
|
2008-10-23 09:54:28 +02:00
|
|
|
assert(uri != NULL);
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spl_insert_index_internal(GPtrArray *list, unsigned idx, char *uri)
|
|
|
|
{
|
|
|
|
assert(idx <= list->len);
|
|
|
|
|
|
|
|
g_ptr_array_add(list, uri);
|
|
|
|
|
|
|
|
memmove(list->pdata + idx + 1, list->pdata + idx,
|
|
|
|
(list->len - idx - 1) * sizeof(list->pdata[0]));
|
|
|
|
g_ptr_array_index(list, idx) = uri;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_move_index(const char *utf8path, unsigned src, unsigned dest,
|
|
|
|
GError **error_r)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
2008-10-23 09:54:28 +02:00
|
|
|
if (src == dest)
|
|
|
|
/* this doesn't check whether the playlist exists, but
|
|
|
|
what the hell.. */
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2008-10-23 09:54:28 +02:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
GPtrArray *list = spl_load(utf8path, error_r);
|
|
|
|
if (list == NULL)
|
|
|
|
return false;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
if (src >= list->len || dest >= list->len) {
|
|
|
|
spl_free(list);
|
2011-09-11 07:41:25 +02:00
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_BAD_RANGE,
|
|
|
|
"Bad range");
|
|
|
|
return false;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
char *uri = spl_remove_index_internal(list, src);
|
2008-10-23 09:54:28 +02:00
|
|
|
spl_insert_index_internal(list, dest, uri);
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool result = spl_save(list, utf8path, error_r);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
spl_free(list);
|
2008-10-14 22:38:14 +02:00
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2008-09-07 13:44:12 +02:00
|
|
|
return result;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_clear(const char *utf8path, GError **error_r)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
|
|
|
FILE *file;
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
if (spl_map(error_r) == NULL)
|
|
|
|
return false;
|
2008-09-07 13:44:12 +02:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
char *path_fs = spl_map_to_fs(utf8path, error_r);
|
2009-01-18 16:15:45 +01:00
|
|
|
if (path_fs == NULL)
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
file = fopen(path_fs, "w");
|
2009-01-01 19:17:44 +01:00
|
|
|
g_free(path_fs);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (file == NULL) {
|
|
|
|
playlist_errno(error_r);
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(file);
|
2008-10-14 22:38:14 +02:00
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_delete(const char *name_utf8, GError **error_r)
|
2008-10-23 09:54:32 +02:00
|
|
|
{
|
2012-09-28 00:05:21 +02:00
|
|
|
char *path_fs = spl_map_to_fs(name_utf8, error_r);
|
2009-01-18 16:15:45 +01:00
|
|
|
if (path_fs == NULL)
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
int ret = unlink(path_fs);
|
2009-01-01 19:17:44 +01:00
|
|
|
g_free(path_fs);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
playlist_errno(error_r);
|
|
|
|
return false;
|
|
|
|
}
|
2008-10-23 09:54:32 +02:00
|
|
|
|
2008-10-23 09:54:39 +02:00
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2008-10-23 09:54:32 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_remove_index(const char *utf8path, unsigned pos, GError **error_r)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
2011-09-11 07:41:25 +02:00
|
|
|
GPtrArray *list = spl_load(utf8path, error_r);
|
|
|
|
if (list == NULL)
|
|
|
|
return false;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
if (pos >= list->len) {
|
|
|
|
spl_free(list);
|
2011-09-11 07:41:25 +02:00
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_BAD_RANGE,
|
|
|
|
"Bad range");
|
|
|
|
return false;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
char *uri = spl_remove_index_internal(list, pos);
|
2008-10-23 09:54:28 +02:00
|
|
|
g_free(uri);
|
2011-09-11 07:41:25 +02:00
|
|
|
bool result = spl_save(list, utf8path, error_r);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-10-23 09:54:28 +02:00
|
|
|
spl_free(list);
|
2008-10-14 22:38:14 +02:00
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2008-09-07 13:44:12 +02:00
|
|
|
return result;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_append_song(const char *utf8path, struct song *song, GError **error_r)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
|
|
|
FILE *file;
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
if (spl_map(error_r) == NULL)
|
|
|
|
return false;
|
2009-12-08 08:17:35 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
char *path_fs = spl_map_to_fs(utf8path, error_r);
|
2009-01-18 16:15:45 +01:00
|
|
|
if (path_fs == NULL)
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
file = fopen(path_fs, "a");
|
2009-01-01 19:17:44 +01:00
|
|
|
g_free(path_fs);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (file == NULL) {
|
|
|
|
playlist_errno(error_r);
|
|
|
|
return false;
|
|
|
|
}
|
2008-09-07 13:44:12 +02:00
|
|
|
|
2012-09-28 00:05:21 +02:00
|
|
|
struct stat st;
|
2008-01-29 10:26:39 +01:00
|
|
|
if (fstat(fileno(file), &st) < 0) {
|
2011-09-11 07:41:25 +02:00
|
|
|
playlist_errno(error_r);
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(file);
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2008-01-26 21:20:59 +01:00
|
|
|
}
|
2008-09-07 13:44:12 +02:00
|
|
|
|
2008-12-24 17:40:41 +01:00
|
|
|
if (st.st_size / (MPD_PATH_MAX + 1) >= (off_t)playlist_max_length) {
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(file);
|
2011-09-11 07:41:25 +02:00
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_TOO_LARGE,
|
|
|
|
"Stored playlist is too large");
|
|
|
|
return false;
|
2008-01-26 21:20:59 +01:00
|
|
|
}
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-10-14 11:10:47 +02:00
|
|
|
playlist_print_song(file, song);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2010-07-25 11:09:13 +02:00
|
|
|
fclose(file);
|
2008-10-14 22:38:14 +02:00
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_append_uri(const char *url, const char *utf8file, GError **error_r)
|
2008-10-22 17:23:11 +02:00
|
|
|
{
|
2009-01-04 16:23:33 +01:00
|
|
|
if (uri_has_scheme(url)) {
|
2012-09-28 00:05:21 +02:00
|
|
|
struct song *song = song_remote_new(url);
|
2011-09-11 07:41:25 +02:00
|
|
|
bool success = spl_append_song(utf8file, song, error_r);
|
2008-10-22 17:23:11 +02:00
|
|
|
song_free(song);
|
2011-09-11 07:41:25 +02:00
|
|
|
return success;
|
2009-01-04 16:23:33 +01:00
|
|
|
} else {
|
2012-09-28 00:05:21 +02:00
|
|
|
struct song *song = db_get_song(url);
|
2011-09-11 07:41:25 +02:00
|
|
|
if (song == NULL) {
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_NO_SUCH_SONG,
|
|
|
|
"No such song");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-15 23:28:19 +02:00
|
|
|
bool success = spl_append_song(utf8file, song, error_r);
|
|
|
|
db_return_song(song);
|
|
|
|
return success;
|
2009-01-04 16:23:33 +01:00
|
|
|
}
|
2008-10-22 17:23:11 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
static bool
|
|
|
|
spl_rename_internal(const char *from_path_fs, const char *to_path_fs,
|
|
|
|
GError **error_r)
|
2007-05-24 20:07:19 +02:00
|
|
|
{
|
2011-09-11 07:41:25 +02:00
|
|
|
if (!g_file_test(from_path_fs, G_FILE_TEST_IS_REGULAR)) {
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_NO_SUCH_LIST,
|
|
|
|
"No such playlist");
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-24 20:07:19 +02:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
if (g_file_test(to_path_fs, G_FILE_TEST_EXISTS)) {
|
|
|
|
g_set_error_literal(error_r, playlist_quark(),
|
|
|
|
PLAYLIST_RESULT_LIST_EXISTS,
|
|
|
|
"Playlist exists already");
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-24 20:07:19 +02:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
if (rename(from_path_fs, to_path_fs) < 0) {
|
|
|
|
playlist_errno(error_r);
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-24 20:07:19 +02:00
|
|
|
|
2008-10-14 22:38:14 +02:00
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2007-05-24 20:07:19 +02:00
|
|
|
}
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
|
|
|
spl_rename(const char *utf8from, const char *utf8to, GError **error_r)
|
2009-01-01 19:17:44 +01:00
|
|
|
{
|
2011-09-11 07:41:25 +02:00
|
|
|
if (spl_map(error_r) == NULL)
|
|
|
|
return false;
|
2009-12-08 08:17:35 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
char *from_path_fs = spl_map_to_fs(utf8from, error_r);
|
|
|
|
if (from_path_fs == NULL)
|
|
|
|
return false;
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
char *to_path_fs = spl_map_to_fs(utf8to, error_r);
|
|
|
|
if (to_path_fs == NULL) {
|
|
|
|
g_free(from_path_fs);
|
|
|
|
return false;
|
|
|
|
}
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool success = spl_rename_internal(from_path_fs, to_path_fs, error_r);
|
2009-01-01 19:17:44 +01:00
|
|
|
|
|
|
|
g_free(from_path_fs);
|
|
|
|
g_free(to_path_fs);
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
return success;
|
2009-01-01 19:17:44 +01:00
|
|
|
}
|