2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-04 20:50:00 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-14 11:10:47 +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:47 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2012-09-27 22:55:57 +02:00
|
|
|
#include "PlaylistSave.hxx"
|
2012-09-28 00:40:00 +02:00
|
|
|
#include "PlaylistFile.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "PlaylistError.hxx"
|
2013-01-04 20:50:00 +01:00
|
|
|
#include "Playlist.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-01-09 08:36:52 +01:00
|
|
|
#include "Idle.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2013-10-17 23:23:25 +02:00
|
|
|
#include "fs/Traits.hxx"
|
2013-01-29 17:23:35 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2014-01-07 23:33:46 +01:00
|
|
|
#include "util/Alloc.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2012-09-27 22:55:57 +02:00
|
|
|
|
2013-10-14 21:40:56 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2008-10-14 11:10:47 +02:00
|
|
|
void
|
2014-01-07 21:39:47 +01:00
|
|
|
playlist_print_song(FILE *file, const DetachedSong &song)
|
2008-10-14 11:10:47 +02:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
if (playlist_saveAbsolutePaths && song.IsInDatabase()) {
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto path = map_song_fs(song);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (!path.IsNull())
|
|
|
|
fprintf(file, "%s\n", path.c_str());
|
2008-10-14 11:10:49 +02:00
|
|
|
} else {
|
2013-10-19 18:48:38 +02:00
|
|
|
const auto uri_utf8 = song.GetURI();
|
2014-01-07 21:39:47 +01:00
|
|
|
const auto uri_fs = AllocatedPath::FromUTF8(uri_utf8);
|
2009-01-04 19:09:34 +01:00
|
|
|
|
2013-01-27 08:26:17 +01:00
|
|
|
if (!uri_fs.IsNull())
|
|
|
|
fprintf(file, "%s\n", uri_fs.c_str());
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
2008-10-14 11:10:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
playlist_print_uri(FILE *file, const char *uri)
|
|
|
|
{
|
2013-10-17 21:59:35 +02:00
|
|
|
auto path = playlist_saveAbsolutePaths && !uri_has_scheme(uri) &&
|
2013-12-04 22:53:43 +01:00
|
|
|
!PathTraitsUTF8::IsAbsolute(uri)
|
2013-01-17 00:56:57 +01:00
|
|
|
? map_uri_fs(uri)
|
2013-10-17 21:59:35 +02:00
|
|
|
: AllocatedPath::FromUTF8(uri);
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
if (!path.IsNull())
|
|
|
|
fprintf(file, "%s\n", path.c_str());
|
2008-10-14 11:10:47 +02:00
|
|
|
}
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult
|
2013-10-19 18:48:38 +02:00
|
|
|
spl_save_queue(const char *name_utf8, const queue &queue)
|
2009-01-25 14:11:47 +01:00
|
|
|
{
|
2013-01-23 19:38:09 +01:00
|
|
|
if (map_spl_path().IsNull())
|
2013-10-19 19:50:54 +02:00
|
|
|
return PlaylistResult::DISABLED;
|
2009-12-08 08:17:35 +01:00
|
|
|
|
2009-01-25 14:19:28 +01:00
|
|
|
if (!spl_valid_name(name_utf8))
|
2013-10-19 19:50:54 +02:00
|
|
|
return PlaylistResult::BAD_NAME;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto path_fs = map_spl_utf8_to_fs(name_utf8);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (path_fs.IsNull())
|
2013-10-19 19:50:54 +02:00
|
|
|
return PlaylistResult::BAD_NAME;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2013-01-29 17:23:35 +01:00
|
|
|
if (FileExists(path_fs))
|
2013-10-19 19:50:54 +02:00
|
|
|
return PlaylistResult::LIST_EXISTS;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2013-02-02 15:21:46 +01:00
|
|
|
FILE *file = FOpen(path_fs, FOpenMode::WriteText);
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
if (file == nullptr)
|
2013-10-19 19:50:54 +02:00
|
|
|
return PlaylistResult::ERRNO;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
for (unsigned i = 0; i < queue.GetLength(); i++)
|
|
|
|
playlist_print_song(file, queue.Get(i));
|
2009-01-25 14:11:47 +01:00
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2013-10-19 19:50:54 +02:00
|
|
|
return PlaylistResult::SUCCESS;
|
2009-01-25 14:11:47 +01:00
|
|
|
}
|
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
PlaylistResult
|
2013-10-19 18:48:38 +02:00
|
|
|
spl_save_playlist(const char *name_utf8, const playlist &playlist)
|
2009-02-04 22:15:37 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
return spl_save_queue(name_utf8, playlist.queue);
|
2009-02-04 22:15:37 +01:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist_load_spl(struct playlist &playlist, PlayerControl &pc,
|
2012-02-09 23:54:31 +01:00
|
|
|
const char *name_utf8,
|
|
|
|
unsigned start_index, unsigned end_index,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2009-01-25 14:11:47 +01:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
PlaylistFileContents contents = LoadPlaylistFile(name_utf8, error);
|
|
|
|
if (contents.empty() && error.IsDefined())
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
if (end_index > contents.size())
|
|
|
|
end_index = contents.size();
|
2012-02-09 23:54:31 +01:00
|
|
|
|
|
|
|
for (unsigned i = start_index; i < end_index; ++i) {
|
2012-09-27 23:48:29 +02:00
|
|
|
const auto &uri_utf8 = contents[i];
|
|
|
|
|
2013-10-14 21:40:56 +02:00
|
|
|
if (memcmp(uri_utf8.c_str(), "file:///", 8) == 0) {
|
|
|
|
const char *path_utf8 = uri_utf8.c_str() + 7;
|
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
if (playlist.AppendFile(pc, path_utf8) != PlaylistResult::SUCCESS)
|
2013-10-17 01:15:54 +02:00
|
|
|
FormatError(playlist_domain,
|
|
|
|
"can't add file \"%s\"", path_utf8);
|
2013-10-14 21:40:56 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
if ((playlist.AppendURI(pc, uri_utf8.c_str())) != PlaylistResult::SUCCESS) {
|
2009-01-25 14:11:47 +01:00
|
|
|
/* for windows compatibility, convert slashes */
|
2014-01-07 23:33:46 +01:00
|
|
|
char *temp2 = xstrdup(uri_utf8.c_str());
|
2009-01-25 14:11:47 +01:00
|
|
|
char *p = temp2;
|
|
|
|
while (*p) {
|
|
|
|
if (*p == '\\')
|
|
|
|
*p = '/';
|
|
|
|
p++;
|
|
|
|
}
|
2013-01-07 10:55:05 +01:00
|
|
|
|
2013-10-19 19:50:54 +02:00
|
|
|
if (playlist.AppendURI(pc, temp2) != PlaylistResult::SUCCESS)
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(playlist_domain,
|
|
|
|
"can't add file \"%s\"", temp2);
|
2013-01-07 10:55:05 +01:00
|
|
|
|
2014-01-07 23:33:46 +01:00
|
|
|
free(temp2);
|
2009-01-25 14:11:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
return true;
|
2009-01-25 14:11:47 +01:00
|
|
|
}
|