mpd/src/PlaylistFile.cxx

401 lines
9.1 KiB
C++
Raw Normal View History

/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 The Music Player Daemon Project
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
2012-09-28 00:40:00 +02:00
#include "PlaylistFile.hxx"
#include "PlaylistSave.hxx"
#include "PlaylistError.hxx"
2014-01-27 11:05:21 +01:00
#include "db/PlaylistInfo.hxx"
#include "db/PlaylistVector.hxx"
#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"
#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"
#include "fs/Limits.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/Traits.hxx"
#include "fs/FileSystem.hxx"
#include "fs/FileInfo.hxx"
#include "fs/DirectoryReader.hxx"
#include "util/Macros.hxx"
#include "util/StringCompare.hxx"
2013-04-08 23:30:21 +02:00
#include "util/UriUtil.hxx"
#include <memory>
#include <assert.h>
#include <string.h>
2009-01-02 17:22:47 +01:00
#include <errno.h>
static const char PLAYLIST_COMMENT = '#';
static unsigned playlist_max_length;
bool playlist_saveAbsolutePaths = DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS;
void
spl_global_init(void)
{
playlist_max_length =
config_get_positive(ConfigOption::MAX_PLAYLIST_LENGTH,
DEFAULT_PLAYLIST_MAX_LENGTH);
playlist_saveAbsolutePaths =
config_get_bool(ConfigOption::SAVE_ABSOLUTE_PATHS,
DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS);
}
bool
spl_valid_name(const char *name_utf8)
{
if (StringIsEmpty(name_utf8))
/* empty name not allowed */
return false;
/*
* 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;
}
static const AllocatedPath &
spl_map()
{
const AllocatedPath &path_fs = map_spl_path();
2013-01-23 19:38:09 +01:00
if (path_fs.IsNull())
throw PlaylistError(PlaylistResult::DISABLED,
"Stored playlists are disabled");
return path_fs;
}
static void
spl_check_name(const char *name_utf8)
{
if (!spl_valid_name(name_utf8))
throw PlaylistError(PlaylistResult::BAD_NAME,
"Bad playlist name");
}
AllocatedPath
spl_map_to_fs(const char *name_utf8)
{
spl_map();
spl_check_name(name_utf8);
auto path_fs = map_spl_utf8_to_fs(name_utf8);
if (path_fs.IsNull())
throw PlaylistError(PlaylistResult::BAD_NAME,
"Bad playlist name");
return path_fs;
}
static bool
LoadPlaylistFileInfo(PlaylistInfo &info,
const Path parent_path_fs,
const Path name_fs)
{
if (name_fs.HasNewline())
return false;
const auto *const name_fs_str = name_fs.c_str();
const auto *const name_fs_end =
2015-03-05 08:02:07 +01:00
FindStringSuffix(name_fs_str,
PATH_LITERAL(PLAYLIST_FILE_SUFFIX));
if (name_fs_end == nullptr)
return false;
FileInfo fi;
2015-03-02 22:19:47 +01:00
if (!GetFileInfo(AllocatedPath::Build(parent_path_fs, name_fs), fi) ||
!fi.IsRegular())
return false;
const auto name = AllocatedPath::FromFS(name_fs_str, name_fs_end);
std::string name_utf8 = name.ToUTF8();
if (name_utf8.empty())
return false;
info.name = std::move(name_utf8);
info.mtime = fi.GetModificationTime();
return true;
}
PlaylistVector
ListPlaylistFiles()
{
PlaylistVector list;
const auto &parent_path_fs = spl_map();
assert(!parent_path_fs.IsNull());
DirectoryReader reader(parent_path_fs);
PlaylistInfo info;
while (reader.ReadEntry()) {
const auto entry = reader.GetEntry();
if (LoadPlaylistFileInfo(info, parent_path_fs, entry))
list.push_back(std::move(info));
}
return list;
}
static void
SavePlaylistFile(const PlaylistFileContents &contents, const char *utf8path)
{
2013-10-02 08:13:28 +02:00
assert(utf8path != nullptr);
const auto path_fs = spl_map_to_fs(utf8path);
assert(!path_fs.IsNull());
FileOutputStream fos(path_fs);
BufferedOutputStream bos(fos);
for (const auto &uri_utf8 : contents)
playlist_print_uri(bos, uri_utf8.c_str());
bos.Flush();
fos.Commit();
}
PlaylistFileContents
LoadPlaylistFile(const char *utf8path)
try {
PlaylistFileContents contents;
const auto path_fs = spl_map_to_fs(utf8path);
assert(!path_fs.IsNull());
TextFile file(path_fs);
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)
continue;
#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);
#endif
2015-02-28 22:07:01 +01:00
std::string uri_utf8;
if (!uri_has_scheme(s)) {
#ifdef ENABLE_DATABASE
2015-02-28 22:07:01 +01:00
uri_utf8 = map_fs_to_utf8(path);
if (uri_utf8.empty()) {
2015-02-28 22:07:01 +01:00
if (path.IsAbsolute()) {
uri_utf8 = path.ToUTF8();
if (uri_utf8.empty())
continue;
} else
continue;
}
#else
continue;
#endif
2013-10-14 21:40:56 +02:00
} else {
2015-02-28 22:07:01 +01:00
uri_utf8 = path.ToUTF8();
if (uri_utf8.empty())
2013-10-14 21:40:56 +02:00
continue;
}
contents.emplace_back(std::move(uri_utf8));
if (contents.size() >= playlist_max_length)
break;
}
return contents;
} catch (const std::system_error &e) {
if (IsFileNotFound(e))
throw PlaylistError::NoSuchList();
throw;
}
void
spl_move_index(const char *utf8path, unsigned src, unsigned dest)
{
if (src == dest)
/* this doesn't check whether the playlist exists, but
what the hell.. */
return;
auto contents = LoadPlaylistFile(utf8path);
if (src >= contents.size() || dest >= contents.size())
throw PlaylistError(PlaylistResult::BAD_RANGE, "Bad range");
const auto src_i = std::next(contents.begin(), src);
auto value = std::move(*src_i);
contents.erase(src_i);
const auto dest_i = std::next(contents.begin(), dest);
contents.insert(dest_i, std::move(value));
SavePlaylistFile(contents, utf8path);
idle_add(IDLE_STORED_PLAYLIST);
}
void
spl_clear(const char *utf8path)
{
const auto path_fs = spl_map_to_fs(utf8path);
assert(!path_fs.IsNull());
try {
TruncateFile(path_fs);
} catch (const std::system_error &e) {
if (IsFileNotFound(e))
throw PlaylistError(PlaylistResult::NO_SUCH_LIST,
"No such playlist");
else
throw;
}
idle_add(IDLE_STORED_PLAYLIST);
}
void
spl_delete(const char *name_utf8)
{
const auto path_fs = spl_map_to_fs(name_utf8);
assert(!path_fs.IsNull());
try {
RemoveFile(path_fs);
} catch (const std::system_error &e) {
if (IsFileNotFound(e))
throw PlaylistError(PlaylistResult::NO_SUCH_LIST,
"No such playlist");
else
throw;
}
idle_add(IDLE_STORED_PLAYLIST);
}
void
spl_remove_index(const char *utf8path, unsigned pos)
{
auto contents = LoadPlaylistFile(utf8path);
if (pos >= contents.size())
throw PlaylistError(PlaylistResult::BAD_RANGE, "Bad range");
contents.erase(std::next(contents.begin(), pos));
SavePlaylistFile(contents, utf8path);
idle_add(IDLE_STORED_PLAYLIST);
}
void
spl_append_song(const char *utf8path, const DetachedSong &song)
try {
const auto path_fs = spl_map_to_fs(utf8path);
assert(!path_fs.IsNull());
FileOutputStream fos(path_fs, FileOutputStream::Mode::APPEND_EXISTING);
if (fos.Tell() / (MPD_PATH_MAX + 1) >= playlist_max_length)
throw PlaylistError(PlaylistResult::TOO_LARGE,
"Stored playlist is too large");
BufferedOutputStream bos(fos);
playlist_print_song(bos, song);
bos.Flush();
fos.Commit();
idle_add(IDLE_STORED_PLAYLIST);
} catch (const std::system_error &e) {
if (IsFileNotFound(e))
throw PlaylistError::NoSuchList();
throw;
}
void
2014-02-03 23:30:34 +01:00
spl_append_uri(const char *utf8file,
const SongLoader &loader, const char *url)
{
std::unique_ptr<DetachedSong> song(loader.LoadSong(url));
spl_append_song(utf8file, *song);
}
static void
spl_rename_internal(Path from_path_fs, Path to_path_fs)
{
if (!FileExists(from_path_fs))
throw PlaylistError(PlaylistResult::NO_SUCH_LIST,
"No such playlist");
if (FileExists(to_path_fs))
throw PlaylistError(PlaylistResult::LIST_EXISTS,
"Playlist exists already");
try {
RenameFile(from_path_fs, to_path_fs);
} catch (const std::system_error &e) {
if (IsPathNotFound(e))
throw PlaylistError(PlaylistResult::NO_SUCH_LIST,
"No such playlist");
else
throw;
}
idle_add(IDLE_STORED_PLAYLIST);
}
void
spl_rename(const char *utf8from, const char *utf8to)
{
const auto from_path_fs = spl_map_to_fs(utf8from);
assert(!from_path_fs.IsNull());
const auto to_path_fs = spl_map_to_fs(utf8to);
assert(!to_path_fs.IsNull());
spl_rename_internal(from_path_fs, to_path_fs);
}