2007-05-16 14:02:10 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2007 by Warren Dukes (warren.dukes@gmail.com)
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "storedPlaylist.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "playlist.h"
|
|
|
|
#include "ack.h"
|
|
|
|
#include "command.h"
|
2007-05-26 16:09:09 +02:00
|
|
|
#include "ls.h"
|
|
|
|
#include "directory.h"
|
2007-05-16 14:02:10 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
static unsigned int lengthOfStoredPlaylist(StoredPlaylist *sp)
|
|
|
|
{
|
|
|
|
return sp->list->numberOfNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ListNode *nodeOfStoredPlaylist(StoredPlaylist *sp, int index)
|
|
|
|
{
|
|
|
|
int forward;
|
|
|
|
ListNode *node;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (index >= lengthOfStoredPlaylist(sp) || index < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (index > lengthOfStoredPlaylist(sp)/2) {
|
|
|
|
forward = 0;
|
|
|
|
node = sp->list->lastNode;
|
|
|
|
i = lengthOfStoredPlaylist(sp) - 1;
|
|
|
|
} else {
|
|
|
|
forward = 1;
|
|
|
|
node = sp->list->firstNode;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (node != NULL) {
|
|
|
|
if (i == index)
|
|
|
|
return node;
|
|
|
|
|
|
|
|
if (forward) {
|
|
|
|
i++;
|
|
|
|
node = node->nextNode;
|
|
|
|
} else {
|
|
|
|
i--;
|
|
|
|
node = node->prevNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-26 16:09:09 +02:00
|
|
|
static void appendSongToStoredPlaylist(StoredPlaylist *sp, Song *song)
|
|
|
|
{
|
2007-12-28 03:56:25 +01:00
|
|
|
char path_max_tmp[MPD_PATH_MAX];
|
|
|
|
|
|
|
|
get_song_url(path_max_tmp, song);
|
|
|
|
insertInListWithoutKey(sp->list, xstrdup(path_max_tmp));
|
2007-05-26 16:09:09 +02:00
|
|
|
}
|
|
|
|
|
2007-05-16 14:02:10 +02:00
|
|
|
StoredPlaylist *newStoredPlaylist(const char *utf8name, int fd, int ignoreExisting)
|
|
|
|
{
|
|
|
|
struct stat buf;
|
2008-01-01 04:01:24 +01:00
|
|
|
char filename[MPD_PATH_MAX];
|
|
|
|
StoredPlaylist *sp;
|
|
|
|
|
|
|
|
if (!valid_playlist_name(fd, utf8name))
|
2007-05-16 14:02:10 +02:00
|
|
|
return NULL;
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
utf8_to_fs_playlist_path(filename, utf8name);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
if (stat(filename, &buf) == 0 && ! ignoreExisting) {
|
|
|
|
commandError(fd, ACK_ERROR_EXIST,
|
|
|
|
"a file or directory already exists with "
|
|
|
|
"the name \"%s\"", utf8name);
|
|
|
|
return NULL;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
2008-01-01 04:01:24 +01:00
|
|
|
if (!(sp = malloc(sizeof(*sp))))
|
|
|
|
return NULL;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
|
|
|
sp->list = makeList(DEFAULT_FREE_DATA_FUNC, 0);
|
|
|
|
sp->fd = fd;
|
2008-01-01 04:01:24 +01:00
|
|
|
sp->fspath = xstrdup(filename);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
/* FIXME - this function is gross */
|
2007-05-16 14:02:10 +02:00
|
|
|
StoredPlaylist *loadStoredPlaylist(const char *utf8path, int fd)
|
|
|
|
{
|
|
|
|
StoredPlaylist *sp;
|
|
|
|
FILE *file;
|
2007-12-28 03:56:25 +01:00
|
|
|
char s[MPD_PATH_MAX];
|
|
|
|
char path_max_tmp[MPD_PATH_MAX];
|
|
|
|
char path_max_tmp2[MPD_PATH_MAX]; /* TODO: cleanup */
|
|
|
|
char path_max_tmp3[MPD_PATH_MAX]; /* TODO: cleanup */
|
2007-05-16 14:02:10 +02:00
|
|
|
int slength = 0;
|
2008-01-01 04:01:24 +01:00
|
|
|
char *temp;
|
|
|
|
char *parent;
|
|
|
|
int parentlen;
|
2007-05-16 14:02:10 +02:00
|
|
|
int tempInt;
|
|
|
|
int commentCharFound = 0;
|
2007-05-26 16:09:09 +02:00
|
|
|
Song *song;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
if (!valid_playlist_name(fd, utf8path))
|
2007-05-16 14:02:10 +02:00
|
|
|
return NULL;
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
utf8_to_fs_playlist_path(path_max_tmp, utf8path);
|
|
|
|
|
|
|
|
while (!(file = fopen(path_max_tmp, "r")) && errno == EINTR);
|
2007-05-16 14:02:10 +02:00
|
|
|
if (file == NULL) {
|
2007-05-26 02:48:53 +02:00
|
|
|
commandError(fd, ACK_ERROR_NO_EXIST, "could not open file "
|
2008-01-01 04:01:24 +01:00
|
|
|
"\"%s\": %s", path_max_tmp, strerror(errno));
|
2007-05-16 14:02:10 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp = newStoredPlaylist(utf8path, fd, 1);
|
2007-05-26 02:48:53 +02:00
|
|
|
if (!sp)
|
2007-05-16 14:02:10 +02:00
|
|
|
goto out;
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
temp = utf8_to_fs_charset(path_max_tmp2, (char *)utf8path);
|
|
|
|
parent = parent_path(path_max_tmp3, temp);
|
|
|
|
parentlen = strlen(parent);
|
|
|
|
|
2007-05-16 14:02:10 +02:00
|
|
|
while ((tempInt = fgetc(file)) != EOF) {
|
|
|
|
s[slength] = tempInt;
|
|
|
|
if (s[slength] == '\n' || s[slength] == '\0') {
|
|
|
|
commentCharFound = 0;
|
|
|
|
s[slength] = '\0';
|
2007-05-26 02:48:53 +02:00
|
|
|
if (s[0] == PLAYLIST_COMMENT)
|
2007-05-16 14:02:10 +02:00
|
|
|
commentCharFound = 1;
|
2007-12-28 03:56:25 +01:00
|
|
|
if (!strncmp(s, musicDir, strlen(musicDir)) &&
|
|
|
|
s[strlen(musicDir)] == '/') {
|
|
|
|
memmove(s, &(s[strlen(musicDir) + 1]),
|
|
|
|
strlen(&(s[strlen(musicDir) + 1])) + 1);
|
2007-05-16 14:02:10 +02:00
|
|
|
} else if (parentlen) {
|
|
|
|
temp = xstrdup(s);
|
|
|
|
strcpy(s, parent);
|
2007-12-28 03:56:25 +01:00
|
|
|
strncat(s, "/", MPD_PATH_MAX - parentlen);
|
|
|
|
strncat(s, temp, MPD_PATH_MAX - parentlen - 1);
|
|
|
|
if (strlen(s) >= MPD_PATH_MAX) {
|
2007-05-26 02:48:53 +02:00
|
|
|
commandError(sp->fd,
|
|
|
|
ACK_ERROR_PLAYLIST_LOAD,
|
|
|
|
"\"%s\" is too long", temp);
|
2007-05-16 14:02:10 +02:00
|
|
|
free(temp);
|
2007-05-16 22:35:13 +02:00
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
sp = NULL;
|
2007-05-16 14:02:10 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
free(temp);
|
|
|
|
}
|
|
|
|
slength = 0;
|
2007-12-28 03:56:25 +01:00
|
|
|
temp = fs_charset_to_utf8(path_max_tmp, s);
|
2007-05-26 16:09:09 +02:00
|
|
|
if (temp && !commentCharFound) {
|
|
|
|
song = getSongFromDB(temp);
|
|
|
|
if (song) {
|
|
|
|
appendSongToStoredPlaylist(sp, song);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isValidRemoteUtf8Url(temp))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
song = newSong(temp, SONG_TYPE_URL, NULL);
|
|
|
|
if (song) {
|
|
|
|
appendSongToStoredPlaylist(sp, song);
|
|
|
|
freeJustSong(song);
|
|
|
|
}
|
|
|
|
}
|
2007-12-28 03:56:25 +01:00
|
|
|
} else if (slength == (MPD_PATH_MAX - 1)) {
|
2007-05-16 14:02:10 +02:00
|
|
|
s[slength] = '\0';
|
2007-05-26 02:48:53 +02:00
|
|
|
commandError(sp->fd, ACK_ERROR_PLAYLIST_LOAD,
|
|
|
|
"line \"%s\" in playlist \"%s\" "
|
|
|
|
"is too long", s, utf8path);
|
2007-05-16 22:35:13 +02:00
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
sp = NULL;
|
2007-05-16 14:02:10 +02:00
|
|
|
goto out;
|
2007-05-26 02:48:53 +02:00
|
|
|
} else if (s[slength] != '\r') {
|
2007-05-16 14:02:10 +02:00
|
|
|
slength++;
|
2007-05-26 02:48:53 +02:00
|
|
|
}
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
while (fclose(file) && errno == EINTR);
|
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void freeStoredPlaylist(StoredPlaylist *sp)
|
|
|
|
{
|
|
|
|
if (sp->list)
|
|
|
|
freeList(sp->list);
|
|
|
|
if (sp->fspath)
|
|
|
|
free(sp->fspath);
|
|
|
|
|
|
|
|
free(sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int moveSongInStoredPlaylist(int fd, StoredPlaylist *sp, int src, int dest)
|
|
|
|
{
|
|
|
|
ListNode *srcNode, *destNode;
|
|
|
|
|
|
|
|
if (src >= lengthOfStoredPlaylist(sp) || dest >= lengthOfStoredPlaylist(sp) || src < 0 || dest < 0 || src == dest) {
|
2007-05-24 19:25:21 +02:00
|
|
|
commandError(fd, ACK_ERROR_ARG, "argument out of range");
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
srcNode = nodeOfStoredPlaylist(sp, src);
|
|
|
|
if (!srcNode)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
destNode = nodeOfStoredPlaylist(sp, dest);
|
|
|
|
|
|
|
|
/* remove src */
|
|
|
|
if (srcNode->prevNode)
|
|
|
|
srcNode->prevNode->nextNode = srcNode->nextNode;
|
|
|
|
else
|
|
|
|
sp->list->firstNode = srcNode->nextNode;
|
|
|
|
|
|
|
|
if (srcNode->nextNode)
|
|
|
|
srcNode->nextNode->prevNode = srcNode->prevNode;
|
|
|
|
else
|
|
|
|
sp->list->lastNode = srcNode->prevNode;
|
|
|
|
|
|
|
|
/* this is all a bit complicated - but I tried to
|
|
|
|
* maintain the same order stuff is moved as in the
|
|
|
|
* real playlist */
|
|
|
|
if (dest == 0) {
|
|
|
|
sp->list->firstNode->prevNode = srcNode;
|
|
|
|
srcNode->nextNode = sp->list->firstNode;
|
|
|
|
srcNode->prevNode = NULL;
|
|
|
|
sp->list->firstNode = srcNode;
|
|
|
|
} else if ((dest + 1) == lengthOfStoredPlaylist(sp)) {
|
|
|
|
sp->list->lastNode->nextNode = srcNode;
|
|
|
|
srcNode->nextNode = NULL;
|
|
|
|
srcNode->prevNode = sp->list->lastNode;
|
|
|
|
sp->list->lastNode = srcNode;
|
|
|
|
} else {
|
|
|
|
if (destNode == NULL) {
|
|
|
|
/* this shouldn't be happening. */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (src > dest) {
|
|
|
|
destNode->prevNode->nextNode = srcNode;
|
|
|
|
srcNode->prevNode = destNode->prevNode;
|
|
|
|
srcNode->nextNode = destNode;
|
|
|
|
destNode->prevNode = srcNode;
|
|
|
|
} else {
|
|
|
|
destNode->nextNode->prevNode = srcNode;
|
|
|
|
srcNode->prevNode = destNode;
|
|
|
|
srcNode->nextNode = destNode->nextNode;
|
|
|
|
destNode->nextNode = srcNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int moveSongInStoredPlaylistByPath(int fd, const char *utf8path, int src, int dest)
|
|
|
|
{
|
|
|
|
StoredPlaylist *sp = loadStoredPlaylist(utf8path, fd);
|
|
|
|
if (!sp) {
|
2007-05-24 19:25:21 +02:00
|
|
|
commandError(fd, ACK_ERROR_UNKNOWN, "could not open playlist");
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (moveSongInStoredPlaylist(fd, sp, src, dest) != 0) {
|
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writeStoredPlaylist(sp) != 0) {
|
2007-05-24 19:25:21 +02:00
|
|
|
commandError(fd, ACK_ERROR_UNKNOWN, "failed to save playlist");
|
2007-05-16 14:02:10 +02:00
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int removeAllFromStoredPlaylistByPath(int fd, const char *utf8path)
|
|
|
|
{
|
2008-01-01 04:01:24 +01:00
|
|
|
char filename[MPD_PATH_MAX];
|
2007-05-16 14:02:10 +02:00
|
|
|
FILE *file;
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
if (!valid_playlist_name(fd, utf8path))
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
2008-01-01 04:01:24 +01:00
|
|
|
utf8_to_fs_playlist_path(filename, utf8path);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
|
|
|
while (!(file = fopen(filename, "w")) && errno == EINTR);
|
|
|
|
if (file == NULL) {
|
2007-05-25 22:25:11 +02:00
|
|
|
commandError(fd, ACK_ERROR_NO_EXIST, "could not open file "
|
|
|
|
"\"%s\": %s", filename, strerror(errno));
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (fclose(file) != 0 && errno == EINTR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int removeOneSongFromStoredPlaylist(int fd, StoredPlaylist *sp, int pos)
|
|
|
|
{
|
|
|
|
ListNode *node = nodeOfStoredPlaylist(sp, pos);
|
|
|
|
if (!node) {
|
2007-05-25 22:25:11 +02:00
|
|
|
commandError(fd, ACK_ERROR_ARG,
|
|
|
|
"could not find song at position");
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteNodeFromList(sp->list, node);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int removeOneSongFromStoredPlaylistByPath(int fd, const char *utf8path, int pos)
|
|
|
|
{
|
|
|
|
StoredPlaylist *sp = loadStoredPlaylist(utf8path, fd);
|
|
|
|
if (!sp) {
|
2007-05-24 19:25:21 +02:00
|
|
|
commandError(fd, ACK_ERROR_UNKNOWN, "could not open playlist");
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (removeOneSongFromStoredPlaylist(fd, sp, pos) != 0) {
|
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writeStoredPlaylist(sp) != 0) {
|
2007-05-24 19:25:21 +02:00
|
|
|
commandError(fd, ACK_ERROR_UNKNOWN, "failed to save playlist");
|
2007-05-16 14:02:10 +02:00
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
freeStoredPlaylist(sp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int writeStoredPlaylistToPath(StoredPlaylist *sp, const char *fspath)
|
|
|
|
{
|
|
|
|
ListNode *node;
|
2007-05-26 16:09:09 +02:00
|
|
|
FILE *file;
|
|
|
|
char *s;
|
2007-05-16 14:02:10 +02:00
|
|
|
|
|
|
|
if (fspath == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while (!(file = fopen(fspath, "w")) && errno == EINTR);
|
|
|
|
if (file == NULL) {
|
2007-05-26 02:48:53 +02:00
|
|
|
commandError(sp->fd, ACK_ERROR_NO_EXIST, "could not open file "
|
|
|
|
"\"%s\": %s", fspath, strerror(errno));
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = sp->list->firstNode;
|
|
|
|
while (node != NULL) {
|
2007-12-28 03:56:25 +01:00
|
|
|
char path_max_tmp[MPD_PATH_MAX];
|
|
|
|
|
|
|
|
s = utf8_to_fs_charset(path_max_tmp, (char *)node->data);
|
|
|
|
if (playlist_saveAbsolutePaths && !isValidRemoteUtf8Url(s))
|
|
|
|
s = rmp2amp_r(path_max_tmp, s);
|
2007-05-26 16:09:09 +02:00
|
|
|
fprintf(file, "%s\n", s);
|
2007-05-16 14:02:10 +02:00
|
|
|
node = node->nextNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (fclose(file) != 0 && errno == EINTR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int writeStoredPlaylist(StoredPlaylist *sp)
|
|
|
|
{
|
|
|
|
return writeStoredPlaylistToPath(sp, sp->fspath);
|
|
|
|
}
|
|
|
|
|
|
|
|
int appendSongToStoredPlaylistByPath(int fd, const char *utf8path, Song *song)
|
|
|
|
{
|
|
|
|
FILE *file;
|
2007-05-26 16:09:09 +02:00
|
|
|
char *s;
|
2007-12-28 03:56:25 +01:00
|
|
|
char path_max_tmp[MPD_PATH_MAX];
|
|
|
|
char path_max_tmp2[MPD_PATH_MAX];
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
if (!valid_playlist_name(fd, utf8path))
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
2008-01-01 04:01:24 +01:00
|
|
|
utf8_to_fs_playlist_path(path_max_tmp, utf8path);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
while (!(file = fopen(path_max_tmp, "a")) && errno == EINTR);
|
2007-05-16 14:02:10 +02:00
|
|
|
if (file == NULL) {
|
2007-05-25 22:25:11 +02:00
|
|
|
commandError(fd, ACK_ERROR_NO_EXIST, "could not open file "
|
2008-01-01 04:01:24 +01:00
|
|
|
"\"%s\": %s", path_max_tmp, strerror(errno));
|
2007-05-16 14:02:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-12-28 03:56:25 +01:00
|
|
|
s = utf8_to_fs_charset(path_max_tmp2, get_song_url(path_max_tmp, song));
|
|
|
|
|
2007-05-25 22:25:11 +02:00
|
|
|
if (playlist_saveAbsolutePaths && song->type == SONG_TYPE_FILE)
|
2007-12-28 03:56:25 +01:00
|
|
|
s = rmp2amp_r(path_max_tmp, s);
|
2007-05-26 16:09:09 +02:00
|
|
|
|
|
|
|
fprintf(file, "%s\n", s);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
|
|
|
while (fclose(file) != 0 && errno == EINTR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void appendPlaylistToStoredPlaylist(StoredPlaylist *sp, Playlist *playlist)
|
|
|
|
{
|
|
|
|
int i;
|
2007-05-25 22:25:11 +02:00
|
|
|
for (i = 0; i < playlist->length; i++)
|
2007-05-16 14:02:10 +02:00
|
|
|
appendSongToStoredPlaylist(sp, playlist->songs[i]);
|
|
|
|
}
|
2007-05-24 20:07:19 +02:00
|
|
|
|
|
|
|
int renameStoredPlaylist(int fd, const char *utf8from, const char *utf8to)
|
|
|
|
{
|
|
|
|
struct stat st;
|
2008-01-01 04:01:24 +01:00
|
|
|
char from[MPD_PATH_MAX];
|
|
|
|
char to[MPD_PATH_MAX];
|
2007-05-24 20:07:19 +02:00
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
if (!valid_playlist_name(fd, utf8from) ||
|
|
|
|
!valid_playlist_name(fd, utf8to))
|
2007-05-24 20:07:19 +02:00
|
|
|
return -1;
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
utf8_to_fs_playlist_path(from, utf8from);
|
|
|
|
utf8_to_fs_playlist_path(to, utf8to);
|
2007-05-24 20:07:19 +02:00
|
|
|
|
|
|
|
if (stat(from, &st) != 0) {
|
2007-05-25 22:25:11 +02:00
|
|
|
commandError(fd, ACK_ERROR_NO_EXIST,
|
|
|
|
"no playlist named \"%s\"", utf8from);
|
2008-01-01 04:01:24 +01:00
|
|
|
return -1;
|
2007-05-24 20:07:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (stat(to, &st) == 0) {
|
2007-05-25 22:25:11 +02:00
|
|
|
commandError(fd, ACK_ERROR_EXIST, "a file or directory "
|
|
|
|
"already exists with the name \"%s\"", utf8to);
|
2008-01-01 04:01:24 +01:00
|
|
|
return -1;
|
2007-05-24 20:07:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rename(from, to) < 0) {
|
2007-05-25 22:25:11 +02:00
|
|
|
commandError(fd, ACK_ERROR_UNKNOWN,
|
|
|
|
"could not rename playlist \"%s\" to \"%s\": %s",
|
|
|
|
utf8from, utf8to, strerror(errno));
|
2008-01-01 04:01:24 +01:00
|
|
|
return -1;
|
2007-05-24 20:07:19 +02:00
|
|
|
}
|
|
|
|
|
2008-01-01 04:01:24 +01:00
|
|
|
return 0;
|
2007-05-24 20:07:19 +02:00
|
|
|
}
|