2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 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"
|
2014-02-27 17:12:42 +01:00
|
|
|
#include "queue/Playlist.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2014-02-02 14:37:52 +01:00
|
|
|
#include "SongLoader.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"
|
2015-03-05 09:13:51 +01:00
|
|
|
#include "fs/NarrowPath.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
|
|
|
{
|
2014-02-07 18:33:08 +01:00
|
|
|
const char *uri_utf8 = playlist_saveAbsolutePaths
|
|
|
|
? song.GetRealURI()
|
|
|
|
: song.GetURI();
|
2009-01-04 19:09:34 +01:00
|
|
|
|
2014-02-07 18:33:08 +01:00
|
|
|
const auto uri_fs = AllocatedPath::FromUTF8(uri_utf8);
|
|
|
|
if (!uri_fs.IsNull())
|
2015-03-05 09:13:51 +01:00
|
|
|
fprintf(file, "%s\n", NarrowPath(uri_fs).c_str());
|
2008-10-14 11:10:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
playlist_print_uri(FILE *file, const char *uri)
|
|
|
|
{
|
2014-01-30 20:29:48 +01:00
|
|
|
auto path =
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
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)
|
2014-01-30 20:29:48 +01:00
|
|
|
:
|
|
|
|
#endif
|
|
|
|
AllocatedPath::FromUTF8(uri);
|
2008-10-14 11:10:49 +02:00
|
|
|
|
2013-01-17 00:56:57 +01:00
|
|
|
if (!path.IsNull())
|
2015-03-05 09:13:51 +01:00
|
|
|
fprintf(file, "%s\n", NarrowPath(path).c_str());
|
2008-10-14 11:10:47 +02:00
|
|
|
}
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2015-03-24 20:37:44 +01:00
|
|
|
bool
|
|
|
|
spl_save_queue(const char *name_utf8, const Queue &queue, Error &error)
|
2009-01-25 14:11:47 +01:00
|
|
|
{
|
2015-03-24 20:37:44 +01:00
|
|
|
const auto path_fs = spl_map_to_fs(name_utf8, error);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (path_fs.IsNull())
|
2015-03-24 20:37:44 +01:00
|
|
|
return false;
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2015-03-24 20:37:44 +01:00
|
|
|
if (FileExists(path_fs)) {
|
|
|
|
error.Set(playlist_domain, int(PlaylistResult::LIST_EXISTS),
|
|
|
|
"Playlist already exists");
|
|
|
|
return false;
|
|
|
|
}
|
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
|
|
|
|
2015-03-24 20:37:44 +01:00
|
|
|
if (file == nullptr) {
|
|
|
|
error.FormatErrno("Failed to open %s",
|
|
|
|
path_fs.ToUTF8().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
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);
|
2015-03-24 20:37:44 +01:00
|
|
|
return true;
|
2009-01-25 14:11:47 +01:00
|
|
|
}
|
|
|
|
|
2015-03-24 20:37:44 +01:00
|
|
|
bool
|
|
|
|
spl_save_playlist(const char *name_utf8, const playlist &playlist,
|
|
|
|
Error &error)
|
2009-02-04 22:15:37 +01:00
|
|
|
{
|
2015-03-24 20:37:44 +01:00
|
|
|
return spl_save_queue(name_utf8, playlist.queue, error);
|
2009-02-04 22:15:37 +01:00
|
|
|
}
|