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
|
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"
|
2012-09-28 00:40:00 +02:00
|
|
|
#include "PlaylistFile.hxx"
|
2012-09-27 22:55:57 +02:00
|
|
|
#include "PlaylistSave.hxx"
|
2015-03-24 20:32:23 +01:00
|
|
|
#include "PlaylistError.hxx"
|
2014-01-27 11:05:21 +01:00
|
|
|
#include "db/PlaylistInfo.hxx"
|
|
|
|
#include "db/PlaylistVector.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2014-02-03 23:30:34 +01:00
|
|
|
#include "SongLoader.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2014-08-07 18:35:57 +02:00
|
|
|
#include "fs/io/TextFile.hxx"
|
2015-03-24 20:32:23 +01:00
|
|
|
#include "fs/io/FileOutputStream.hxx"
|
|
|
|
#include "fs/io/BufferedOutputStream.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigGlobal.hxx"
|
|
|
|
#include "config/ConfigOption.hxx"
|
|
|
|
#include "config/ConfigDefaults.hxx"
|
2013-01-09 08:36:52 +01:00
|
|
|
#include "Idle.hxx"
|
2013-10-17 22:00:01 +02:00
|
|
|
#include "fs/Limits.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-10-17 22:13:54 +02:00
|
|
|
#include "fs/Charset.hxx"
|
2013-01-29 17:23:35 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2015-02-28 20:42:50 +01:00
|
|
|
#include "fs/FileInfo.hxx"
|
2013-05-05 12:12:35 +02:00
|
|
|
#include "fs/DirectoryReader.hxx"
|
2015-03-02 21:43:04 +01:00
|
|
|
#include "util/Macros.hxx"
|
2015-11-06 09:09:02 +01:00
|
|
|
#include "util/StringCompare.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"
|
2012-09-27 22:55:57 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/stat.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)
|
|
|
|
{
|
2015-01-21 22:36:13 +01:00
|
|
|
playlist_max_length =
|
|
|
|
config_get_positive(ConfigOption::MAX_PLAYLIST_LENGTH,
|
|
|
|
DEFAULT_PLAYLIST_MAX_LENGTH);
|
2009-01-25 13:53:16 +01:00
|
|
|
|
|
|
|
playlist_saveAbsolutePaths =
|
2015-01-21 22:36:13 +01:00
|
|
|
config_get_bool(ConfigOption::SAVE_ABSOLUTE_PATHS,
|
2009-01-25 13:53:16 +01:00
|
|
|
DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS);
|
|
|
|
}
|
|
|
|
|
2009-01-25 14:19:28 +01:00
|
|
|
bool
|
|
|
|
spl_valid_name(const char *name_utf8)
|
|
|
|
{
|
2015-11-06 09:37:07 +01:00
|
|
|
if (StringIsEmpty(name_utf8))
|
2014-10-31 14:59:27 +01:00
|
|
|
/* empty name not allowed */
|
|
|
|
return false;
|
|
|
|
|
2009-01-25 14:19:28 +01:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
return strchr(name_utf8, '/') == nullptr &&
|
|
|
|
strchr(name_utf8, '\n') == nullptr &&
|
|
|
|
strchr(name_utf8, '\r') == nullptr;
|
2009-01-25 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
static const AllocatedPath &
|
2015-12-26 06:30:25 +01:00
|
|
|
spl_map()
|
2011-09-11 07:41:25 +02:00
|
|
|
{
|
2013-10-17 21:59:35 +02:00
|
|
|
const AllocatedPath &path_fs = map_spl_path();
|
2013-01-23 19:38:09 +01:00
|
|
|
if (path_fs.IsNull())
|
2015-12-26 06:30:25 +01:00
|
|
|
throw PlaylistError(PlaylistResult::DISABLED,
|
|
|
|
"Stored playlists are disabled");
|
|
|
|
|
2013-05-05 12:12:35 +02:00
|
|
|
return path_fs;
|
2011-09-11 07:41:25 +02:00
|
|
|
}
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
static void
|
|
|
|
spl_check_name(const char *name_utf8)
|
2011-09-11 07:41:25 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
if (!spl_valid_name(name_utf8))
|
|
|
|
throw PlaylistError(PlaylistResult::BAD_NAME,
|
2011-09-11 07:41:25 +02:00
|
|
|
"Bad playlist name");
|
|
|
|
}
|
|
|
|
|
2015-03-24 20:40:35 +01:00
|
|
|
AllocatedPath
|
2015-12-26 06:30:25 +01:00
|
|
|
spl_map_to_fs(const char *name_utf8)
|
2011-09-11 07:41:25 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
spl_map();
|
|
|
|
spl_check_name(name_utf8);
|
2011-09-11 07:41:25 +02:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
auto path_fs = map_spl_utf8_to_fs(name_utf8);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (path_fs.IsNull())
|
2015-12-26 06:30:25 +01:00
|
|
|
throw PlaylistError(PlaylistResult::BAD_NAME,
|
|
|
|
"Bad playlist name");
|
2011-09-11 07:41:25 +02:00
|
|
|
|
|
|
|
return path_fs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-08-10 18:02:44 +02:00
|
|
|
* Create an #Error for the current errno.
|
2011-09-11 07:41:25 +02:00
|
|
|
*/
|
|
|
|
static void
|
2013-08-10 18:02:44 +02:00
|
|
|
playlist_errno(Error &error)
|
2011-09-11 07:41:25 +02:00
|
|
|
{
|
|
|
|
switch (errno) {
|
|
|
|
case ENOENT:
|
2013-10-19 19:50:54 +02:00
|
|
|
error.Set(playlist_domain, int(PlaylistResult::NO_SUCH_LIST),
|
2013-08-10 18:02:44 +02:00
|
|
|
"No such playlist");
|
2011-09-11 07:41:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-08-10 18:02:44 +02:00
|
|
|
error.SetErrno();
|
2011-09-11 07:41:25 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
static bool
|
2013-01-04 00:02:09 +01:00
|
|
|
LoadPlaylistFileInfo(PlaylistInfo &info,
|
2014-01-30 22:17:35 +01:00
|
|
|
const Path parent_path_fs,
|
|
|
|
const Path name_fs)
|
2008-10-22 19:15:50 +02:00
|
|
|
{
|
2015-03-02 21:48:37 +01:00
|
|
|
if (name_fs.HasNewline())
|
|
|
|
return false;
|
|
|
|
|
2015-03-02 21:43:04 +01:00
|
|
|
const auto *const name_fs_str = name_fs.c_str();
|
2015-03-02 22:26:46 +01:00
|
|
|
const auto *const name_fs_end =
|
2015-03-05 08:02:07 +01:00
|
|
|
FindStringSuffix(name_fs_str,
|
|
|
|
PATH_LITERAL(PLAYLIST_FILE_SUFFIX));
|
2015-03-02 22:26:46 +01:00
|
|
|
if (name_fs_end == nullptr)
|
2012-09-27 23:48:29 +02:00
|
|
|
return false;
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2015-02-28 20:42:50 +01:00
|
|
|
FileInfo fi;
|
2015-03-02 22:19:47 +01:00
|
|
|
if (!GetFileInfo(AllocatedPath::Build(parent_path_fs, name_fs), fi) ||
|
|
|
|
!fi.IsRegular())
|
2012-09-27 23:48:29 +02:00
|
|
|
return false;
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2015-03-02 22:26:46 +01:00
|
|
|
PathTraitsFS::string name(name_fs_str, name_fs_end);
|
2013-12-04 15:07:45 +01:00
|
|
|
std::string name_utf8 = PathToUTF8(name.c_str());
|
2013-01-23 21:26:38 +01:00
|
|
|
if (name_utf8.empty())
|
2012-09-27 23:48:29 +02:00
|
|
|
return false;
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2013-01-23 21:26:38 +01:00
|
|
|
info.name = std::move(name_utf8);
|
2015-02-28 20:42:50 +01:00
|
|
|
info.mtime = fi.GetModificationTime();
|
2012-09-27 23:48:29 +02:00
|
|
|
return true;
|
2008-10-22 19:15:50 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 00:02:09 +01:00
|
|
|
PlaylistVector
|
2013-08-10 18:02:44 +02:00
|
|
|
ListPlaylistFiles(Error &error)
|
2008-10-22 19:15:50 +02:00
|
|
|
{
|
2013-01-04 00:02:09 +01:00
|
|
|
PlaylistVector list;
|
2012-09-27 23:48:29 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto &parent_path_fs = spl_map();
|
|
|
|
assert(!parent_path_fs.IsNull());
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2013-05-05 12:12:35 +02:00
|
|
|
DirectoryReader reader(parent_path_fs);
|
|
|
|
if (reader.HasFailed()) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.SetErrno();
|
2012-09-27 23:48:29 +02:00
|
|
|
return list;
|
2011-09-11 07:41:25 +02:00
|
|
|
}
|
2008-10-22 19:15:50 +02:00
|
|
|
|
2013-01-04 00:02:09 +01:00
|
|
|
PlaylistInfo info;
|
2013-05-05 12:12:35 +02:00
|
|
|
while (reader.ReadEntry()) {
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto entry = reader.GetEntry();
|
2013-05-05 12:12:35 +02:00
|
|
|
if (LoadPlaylistFileInfo(info, parent_path_fs, entry))
|
2012-09-27 23:48:29 +02:00
|
|
|
list.push_back(std::move(info));
|
2008-10-22 19:15:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
static void
|
|
|
|
SavePlaylistFile(const PlaylistFileContents &contents, const char *utf8path)
|
2008-01-01 11:09:31 +01:00
|
|
|
{
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(utf8path != nullptr);
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto path_fs = spl_map_to_fs(utf8path);
|
|
|
|
assert(!path_fs.IsNull());
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2015-12-15 22:26:26 +01:00
|
|
|
FileOutputStream fos(path_fs);
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2015-03-24 20:32:23 +01:00
|
|
|
BufferedOutputStream bos(fos);
|
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
for (const auto &uri_utf8 : contents)
|
2015-03-24 20:32:23 +01:00
|
|
|
playlist_print_uri(bos, uri_utf8.c_str());
|
2008-01-01 11:09:31 +01:00
|
|
|
|
2015-12-16 10:24:43 +01:00
|
|
|
bos.Flush();
|
2015-12-16 00:24:41 +01:00
|
|
|
|
|
|
|
fos.Commit();
|
2008-01-01 11:09:31 +01:00
|
|
|
}
|
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
PlaylistFileContents
|
2015-12-26 06:30:25 +01:00
|
|
|
LoadPlaylistFile(const char *utf8path)
|
2015-12-28 06:43:41 +01:00
|
|
|
try {
|
2012-09-27 23:48:29 +02:00
|
|
|
PlaylistFileContents contents;
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto path_fs = spl_map_to_fs(utf8path);
|
|
|
|
assert(!path_fs.IsNull());
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2015-12-16 11:05:33 +01:00
|
|
|
TextFile file(path_fs);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2010-12-23 16:22:19 +01:00
|
|
|
char *s;
|
2013-10-02 08:13:28 +02:00
|
|
|
while ((s = file.ReadLine()) != nullptr) {
|
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
|
|
|
|
2015-02-25 16:01:46 +01:00
|
|
|
#ifdef _UNICODE
|
|
|
|
wchar_t buffer[MAX_PATH];
|
|
|
|
auto result = MultiByteToWideChar(CP_ACP, 0, s, -1,
|
|
|
|
buffer, ARRAY_SIZE(buffer));
|
|
|
|
if (result <= 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const Path path = Path::FromFS(buffer);
|
|
|
|
#else
|
2015-02-28 22:07:01 +01:00
|
|
|
const Path path = Path::FromFS(s);
|
2015-02-25 16:01:46 +01:00
|
|
|
#endif
|
2015-02-28 22:07:01 +01:00
|
|
|
|
2013-10-14 21:53:08 +02:00
|
|
|
std::string uri_utf8;
|
|
|
|
|
2013-10-14 22:21:22 +02:00
|
|
|
if (!uri_has_scheme(s)) {
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2015-02-28 22:07:01 +01:00
|
|
|
uri_utf8 = map_fs_to_utf8(path);
|
2013-10-14 22:21:22 +02:00
|
|
|
if (uri_utf8.empty()) {
|
2015-02-28 22:07:01 +01:00
|
|
|
if (path.IsAbsolute()) {
|
2015-03-05 08:36:51 +01:00
|
|
|
uri_utf8 = path.ToUTF8();
|
2013-10-14 22:21:22 +02:00
|
|
|
if (uri_utf8.empty())
|
|
|
|
continue;
|
|
|
|
} else
|
|
|
|
continue;
|
|
|
|
}
|
2014-01-30 20:29:48 +01:00
|
|
|
#else
|
|
|
|
continue;
|
|
|
|
#endif
|
2013-10-14 21:40:56 +02:00
|
|
|
} else {
|
2015-02-28 22:07:01 +01:00
|
|
|
uri_utf8 = path.ToUTF8();
|
2013-10-14 21:53:08 +02:00
|
|
|
if (uri_utf8.empty())
|
2013-10-14 21:40:56 +02:00
|
|
|
continue;
|
|
|
|
}
|
2008-01-26 21:20:59 +01:00
|
|
|
|
2013-10-14 21:53:08 +02:00
|
|
|
contents.emplace_back(std::move(uri_utf8));
|
2012-09-27 23:48:29 +02:00
|
|
|
if (contents.size() >= playlist_max_length)
|
2008-01-26 21:20:59 +01:00
|
|
|
break;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
return contents;
|
2015-12-28 06:43:41 +01:00
|
|
|
} catch (const std::system_error &e) {
|
|
|
|
if (IsFileNotFound(e))
|
|
|
|
throw PlaylistError::NoSuchList();
|
|
|
|
throw;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
void
|
|
|
|
spl_move_index(const char *utf8path, unsigned src, unsigned dest)
|
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.. */
|
2015-12-26 06:30:25 +01:00
|
|
|
return;
|
2008-10-23 09:54:28 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
auto contents = LoadPlaylistFile(utf8path);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
if (src >= contents.size() || dest >= contents.size())
|
|
|
|
throw PlaylistError(PlaylistResult::BAD_RANGE, "Bad range");
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
const auto src_i = std::next(contents.begin(), src);
|
|
|
|
auto value = std::move(*src_i);
|
|
|
|
contents.erase(src_i);
|
2008-10-23 09:54:28 +02:00
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
const auto dest_i = std::next(contents.begin(), dest);
|
|
|
|
contents.insert(dest_i, std::move(value));
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
SavePlaylistFile(contents, utf8path);
|
2008-10-14 22:38:14 +02:00
|
|
|
|
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
spl_clear(const char *utf8path, Error &error)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto path_fs = spl_map_to_fs(utf8path);
|
|
|
|
assert(!path_fs.IsNull());
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2013-02-02 15:21:10 +01:00
|
|
|
FILE *file = FOpen(path_fs, FOpenMode::WriteText);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (file == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
playlist_errno(error);
|
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
|
|
|
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
|
2013-08-10 18:02:44 +02:00
|
|
|
spl_delete(const char *name_utf8, Error &error)
|
2008-10-23 09:54:32 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto path_fs = spl_map_to_fs(name_utf8);
|
|
|
|
assert(!path_fs.IsNull());
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2013-02-02 15:21:10 +01:00
|
|
|
if (!RemoveFile(path_fs)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
playlist_errno(error);
|
2011-09-11 07:41:25 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
void
|
|
|
|
spl_remove_index(const char *utf8path, unsigned pos)
|
2007-05-16 14:02:10 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
auto contents = LoadPlaylistFile(utf8path);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
if (pos >= contents.size())
|
|
|
|
throw PlaylistError(PlaylistResult::BAD_RANGE, "Bad range");
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
contents.erase(std::next(contents.begin(), pos));
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
SavePlaylistFile(contents, utf8path);
|
2008-10-14 22:38:14 +02:00
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
void
|
|
|
|
spl_append_song(const char *utf8path, const DetachedSong &song)
|
2015-12-28 06:43:41 +01:00
|
|
|
try {
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto path_fs = spl_map_to_fs(utf8path);
|
|
|
|
assert(!path_fs.IsNull());
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2015-12-15 22:26:26 +01:00
|
|
|
AppendFileOutputStream fos(path_fs);
|
2008-09-07 13:44:12 +02:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
if (fos.Tell() / (MPD_PATH_MAX + 1) >= playlist_max_length)
|
|
|
|
throw PlaylistError(PlaylistResult::TOO_LARGE,
|
|
|
|
"Stored playlist is too large");
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2015-03-24 20:32:23 +01:00
|
|
|
BufferedOutputStream bos(fos);
|
2007-05-16 14:02:10 +02:00
|
|
|
|
2015-03-24 20:32:23 +01:00
|
|
|
playlist_print_song(bos, song);
|
|
|
|
|
2015-12-16 10:24:43 +01:00
|
|
|
bos.Flush();
|
2015-12-16 00:24:41 +01:00
|
|
|
fos.Commit();
|
|
|
|
|
2008-10-14 22:38:14 +02:00
|
|
|
idle_add(IDLE_STORED_PLAYLIST);
|
2015-12-28 06:43:41 +01:00
|
|
|
} catch (const std::system_error &e) {
|
|
|
|
if (IsFileNotFound(e))
|
|
|
|
throw PlaylistError::NoSuchList();
|
|
|
|
throw;
|
2007-05-16 14:02:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
bool
|
2014-02-03 23:30:34 +01:00
|
|
|
spl_append_uri(const char *utf8file,
|
|
|
|
const SongLoader &loader, const char *url,
|
|
|
|
Error &error)
|
2008-10-22 17:23:11 +02:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
std::unique_ptr<DetachedSong> song(loader.LoadSong(url, error));
|
2014-02-03 23:30:34 +01:00
|
|
|
if (song == nullptr)
|
2014-01-30 20:29:48 +01:00
|
|
|
return false;
|
2014-02-03 23:30:34 +01:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
spl_append_song(utf8file, *song);
|
|
|
|
return true;
|
2008-10-22 17:23:11 +02:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:41:25 +02:00
|
|
|
static bool
|
2013-10-17 21:59:35 +02:00
|
|
|
spl_rename_internal(Path from_path_fs, Path to_path_fs,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2007-05-24 20:07:19 +02:00
|
|
|
{
|
2013-01-29 17:23:35 +01:00
|
|
|
if (!FileExists(from_path_fs)) {
|
2013-10-19 19:50:54 +02:00
|
|
|
error.Set(playlist_domain, int(PlaylistResult::NO_SUCH_LIST),
|
2013-08-10 18:02:44 +02:00
|
|
|
"No such playlist");
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
2007-05-24 20:07:19 +02:00
|
|
|
|
2013-01-29 17:23:35 +01:00
|
|
|
if (FileExists(to_path_fs)) {
|
2013-10-19 19:50:54 +02:00
|
|
|
error.Set(playlist_domain, int(PlaylistResult::LIST_EXISTS),
|
2013-08-10 18:02:44 +02:00
|
|
|
"Playlist exists already");
|
2011-09-11 07:41:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
2007-05-24 20:07:19 +02:00
|
|
|
|
2013-02-02 15:21:10 +01:00
|
|
|
if (!RenameFile(from_path_fs, to_path_fs)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
playlist_errno(error);
|
2011-09-11 07:41:25 +02:00
|
|
|
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
|
2013-08-10 18:02:44 +02:00
|
|
|
spl_rename(const char *utf8from, const char *utf8to, Error &error)
|
2009-01-01 19:17:44 +01:00
|
|
|
{
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto from_path_fs = spl_map_to_fs(utf8from);
|
|
|
|
assert(!from_path_fs.IsNull());
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
const auto to_path_fs = spl_map_to_fs(utf8to);
|
|
|
|
assert(!to_path_fs.IsNull());
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
return spl_rename_internal(from_path_fs, to_path_fs, error);
|
2009-01-01 19:17:44 +01:00
|
|
|
}
|