2011-09-05 23:09:20 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2011-09-05 23:09:20 +02:00
|
|
|
* 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-08-07 23:10:34 +02:00
|
|
|
#include "DatabasePrint.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "Selection.hxx"
|
2012-08-29 19:12:26 +02:00
|
|
|
#include "SongFilter.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "SongPrint.hxx"
|
2017-02-08 09:22:15 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "TimePrint.hxx"
|
2017-02-07 18:31:30 +01:00
|
|
|
#include "TagPrint.hxx"
|
2015-08-06 22:10:25 +02:00
|
|
|
#include "client/Response.hxx"
|
|
|
|
#include "Partition.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2017-02-07 16:57:16 +01:00
|
|
|
#include "tag/Mask.hxx"
|
2014-01-19 10:51:34 +01:00
|
|
|
#include "LightSong.hxx"
|
2014-01-22 22:40:42 +01:00
|
|
|
#include "LightDirectory.hxx"
|
|
|
|
#include "PlaylistInfo.hxx"
|
2014-02-19 22:54:52 +01:00
|
|
|
#include "Interface.hxx"
|
2014-02-28 19:02:23 +01:00
|
|
|
#include "fs/Traits.hxx"
|
2017-02-11 23:09:33 +01:00
|
|
|
#include "util/ChronoUtil.hxx"
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2012-08-02 19:04:07 +02:00
|
|
|
#include <functional>
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2018-01-21 11:32:01 +01:00
|
|
|
gcc_pure
|
2014-02-28 19:02:23 +01:00
|
|
|
static const char *
|
2018-01-21 11:32:01 +01:00
|
|
|
ApplyBaseFlag(const char *uri, bool base) noexcept
|
2014-02-28 19:02:23 +01:00
|
|
|
{
|
|
|
|
if (base)
|
|
|
|
uri = PathTraitsUTF8::GetBase(uri);
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
2014-02-28 08:21:34 +01:00
|
|
|
static void
|
2018-01-21 11:32:01 +01:00
|
|
|
PrintDirectoryURI(Response &r, bool base,
|
|
|
|
const LightDirectory &directory) noexcept
|
2014-02-28 08:21:34 +01:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("directory: %s\n",
|
|
|
|
ApplyBaseFlag(directory.GetPath(), base));
|
2014-02-28 08:21:34 +01:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2018-01-21 11:32:01 +01:00
|
|
|
PrintDirectoryBrief(Response &r, bool base,
|
|
|
|
const LightDirectory &directory) noexcept
|
2011-09-05 23:09:20 +02:00
|
|
|
{
|
2013-01-02 23:06:10 +01:00
|
|
|
if (!directory.IsRoot())
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintDirectoryURI(r, base, directory);
|
2011-09-05 23:09:20 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2018-01-21 11:32:01 +01:00
|
|
|
PrintDirectoryFull(Response &r, bool base,
|
|
|
|
const LightDirectory &directory) noexcept
|
2013-04-27 21:06:22 +02:00
|
|
|
{
|
|
|
|
if (!directory.IsRoot()) {
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintDirectoryURI(r, base, directory);
|
2014-01-22 23:01:24 +01:00
|
|
|
|
2017-02-11 23:08:55 +01:00
|
|
|
if (!IsNegative(directory.mtime))
|
2015-08-06 22:10:25 +02:00
|
|
|
time_print(r, "Last-Modified", directory.mtime);
|
2013-04-27 21:06:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
static void
|
2015-08-06 22:10:25 +02:00
|
|
|
print_playlist_in_directory(Response &r, bool base,
|
2014-01-19 10:51:34 +01:00
|
|
|
const char *directory,
|
2018-01-21 11:32:01 +01:00
|
|
|
const char *name_utf8) noexcept
|
2014-01-19 10:51:34 +01:00
|
|
|
{
|
2014-02-28 19:02:23 +01:00
|
|
|
if (base || directory == nullptr)
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("playlist: %s\n",
|
|
|
|
ApplyBaseFlag(name_utf8, base));
|
2014-01-19 10:51:34 +01:00
|
|
|
else
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("playlist: %s/%s\n",
|
|
|
|
directory, name_utf8);
|
2014-01-19 10:51:34 +01:00
|
|
|
}
|
2013-04-27 21:06:22 +02:00
|
|
|
|
2012-02-12 18:41:25 +01:00
|
|
|
static void
|
2015-08-06 22:10:25 +02:00
|
|
|
print_playlist_in_directory(Response &r, bool base,
|
2014-01-22 22:40:42 +01:00
|
|
|
const LightDirectory *directory,
|
2018-01-21 11:32:01 +01:00
|
|
|
const char *name_utf8) noexcept
|
2012-02-12 18:41:25 +01:00
|
|
|
{
|
2014-02-28 19:02:23 +01:00
|
|
|
if (base || directory == nullptr || directory->IsRoot())
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("playlist: %s\n", name_utf8);
|
2012-02-12 18:41:25 +01:00
|
|
|
else
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("playlist: %s/%s\n",
|
|
|
|
directory->GetPath(), name_utf8);
|
2012-02-12 18:41:25 +01:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2018-01-21 11:32:01 +01:00
|
|
|
PrintSongBrief(Response &r, bool base, const LightSong &song) noexcept
|
2011-09-05 23:09:20 +02:00
|
|
|
{
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_uri(r, song, base);
|
2012-02-12 18:41:25 +01:00
|
|
|
|
2018-07-06 16:43:11 +02:00
|
|
|
if (song.tag.has_playlist)
|
2012-02-12 18:41:25 +01:00
|
|
|
/* this song file has an embedded CUE sheet */
|
2015-08-06 22:10:25 +02:00
|
|
|
print_playlist_in_directory(r, base,
|
2014-02-28 19:02:23 +01:00
|
|
|
song.directory, song.uri);
|
2011-09-05 23:09:20 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2018-01-21 11:32:01 +01:00
|
|
|
PrintSongFull(Response &r, bool base, const LightSong &song) noexcept
|
2011-09-10 19:24:30 +02:00
|
|
|
{
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_info(r, song, base);
|
2011-09-10 19:24:30 +02:00
|
|
|
|
2018-07-06 16:43:11 +02:00
|
|
|
if (song.tag.has_playlist)
|
2012-02-12 18:41:25 +01:00
|
|
|
/* this song file has an embedded CUE sheet */
|
2015-08-06 22:10:25 +02:00
|
|
|
print_playlist_in_directory(r, base,
|
2014-02-28 19:02:23 +01:00
|
|
|
song.directory, song.uri);
|
2011-10-08 14:33:41 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintPlaylistBrief(Response &r, bool base,
|
2013-01-02 22:04:03 +01:00
|
|
|
const PlaylistInfo &playlist,
|
2018-01-21 11:32:01 +01:00
|
|
|
const LightDirectory &directory) noexcept
|
2011-09-13 22:02:37 +02:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
print_playlist_in_directory(r, base,
|
2014-02-28 19:02:23 +01:00
|
|
|
&directory, playlist.name.c_str());
|
2011-09-13 22:02:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintPlaylistFull(Response &r, bool base,
|
2013-01-02 22:04:03 +01:00
|
|
|
const PlaylistInfo &playlist,
|
2018-01-21 11:32:01 +01:00
|
|
|
const LightDirectory &directory) noexcept
|
2011-09-13 22:02:37 +02:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
print_playlist_in_directory(r, base,
|
2014-02-28 19:02:23 +01:00
|
|
|
&directory, playlist.name.c_str());
|
2011-09-13 22:02:37 +02:00
|
|
|
|
2017-02-11 23:09:33 +01:00
|
|
|
if (!IsNegative(playlist.mtime))
|
2015-08-06 22:10:25 +02:00
|
|
|
time_print(r, "Last-Modified", playlist.mtime);
|
2011-09-13 22:02:37 +02:00
|
|
|
}
|
|
|
|
|
2018-01-21 11:32:01 +01:00
|
|
|
gcc_pure
|
2017-02-08 09:22:15 +01:00
|
|
|
static bool
|
2018-01-21 11:32:01 +01:00
|
|
|
CompareNumeric(const char *a, const char *b) noexcept
|
2017-02-08 09:22:15 +01:00
|
|
|
{
|
|
|
|
long a_value = strtol(a, nullptr, 10);
|
|
|
|
long b_value = strtol(b, nullptr, 10);
|
|
|
|
|
|
|
|
return a_value < b_value;
|
|
|
|
}
|
|
|
|
|
2018-01-21 11:32:01 +01:00
|
|
|
gcc_pure
|
2017-02-08 09:22:15 +01:00
|
|
|
static bool
|
2018-01-21 11:32:01 +01:00
|
|
|
CompareTags(TagType type, bool descending, const Tag &a, const Tag &b) noexcept
|
2017-02-08 09:22:15 +01:00
|
|
|
{
|
|
|
|
const char *a_value = a.GetSortValue(type);
|
|
|
|
const char *b_value = b.GetSortValue(type);
|
|
|
|
|
2017-12-18 21:50:14 +01:00
|
|
|
if (descending) {
|
|
|
|
using std::swap;
|
|
|
|
swap(a_value, b_value);
|
|
|
|
}
|
|
|
|
|
2017-02-08 09:22:15 +01:00
|
|
|
switch (type) {
|
|
|
|
case TAG_DISC:
|
|
|
|
case TAG_TRACK:
|
|
|
|
return CompareNumeric(a_value, b_value);
|
|
|
|
|
|
|
|
default:
|
|
|
|
return strcmp(a_value, b_value) < 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
db_selection_print(Response &r, Partition &partition,
|
|
|
|
const DatabaseSelection &selection,
|
2014-11-18 14:31:27 +01:00
|
|
|
bool full, bool base,
|
2017-12-18 21:50:14 +01:00
|
|
|
TagType sort, bool descending,
|
2016-10-29 10:21:57 +02:00
|
|
|
unsigned window_start, unsigned window_end)
|
2011-09-13 21:24:22 +02:00
|
|
|
{
|
2016-10-26 18:47:19 +02:00
|
|
|
const Database &db = partition.GetDatabaseOrThrow();
|
2012-08-22 21:40:20 +02:00
|
|
|
|
2014-11-18 14:31:27 +01:00
|
|
|
unsigned i = 0;
|
|
|
|
|
2012-08-02 19:04:07 +02:00
|
|
|
using namespace std::placeholders;
|
2012-08-29 19:27:03 +02:00
|
|
|
const auto d = selection.filter == nullptr
|
2013-04-27 21:06:22 +02:00
|
|
|
? std::bind(full ? PrintDirectoryFull : PrintDirectoryBrief,
|
2015-08-06 22:10:25 +02:00
|
|
|
std::ref(r), base, _1)
|
2012-08-07 23:22:37 +02:00
|
|
|
: VisitDirectory();
|
2014-11-18 14:31:27 +01:00
|
|
|
VisitSong s = std::bind(full ? PrintSongFull : PrintSongBrief,
|
2017-02-24 13:56:13 +01:00
|
|
|
std::ref(r), base, _1);
|
2012-08-29 19:27:03 +02:00
|
|
|
const auto p = selection.filter == nullptr
|
2012-08-07 23:22:37 +02:00
|
|
|
? std::bind(full ? PrintPlaylistFull : PrintPlaylistBrief,
|
2015-08-06 22:10:25 +02:00
|
|
|
std::ref(r), base, _1, _2)
|
2012-08-07 23:22:37 +02:00
|
|
|
: VisitPlaylist();
|
2012-08-02 19:04:07 +02:00
|
|
|
|
2017-02-08 09:22:15 +01:00
|
|
|
if (sort == TAG_NUM_OF_ITEM_TYPES) {
|
|
|
|
if (window_start > 0 ||
|
|
|
|
window_end < (unsigned)std::numeric_limits<int>::max())
|
|
|
|
s = [s, window_start, window_end, &i](const LightSong &song){
|
|
|
|
const bool in_window = i >= window_start && i < window_end;
|
|
|
|
++i;
|
|
|
|
if (in_window)
|
|
|
|
s(song);
|
|
|
|
};
|
2014-11-18 14:31:27 +01:00
|
|
|
|
2017-02-08 09:22:15 +01:00
|
|
|
db.Visit(selection, d, s, p);
|
|
|
|
} else {
|
|
|
|
// TODO: allow the database plugin to sort internally
|
|
|
|
|
|
|
|
/* the client has asked us to sort the result; this is
|
|
|
|
pretty expensive, because instead of streaming the
|
|
|
|
result to the client, we need to copy it all into
|
|
|
|
this std::vector, and then sort it */
|
|
|
|
std::vector<DetachedSong> songs;
|
|
|
|
|
|
|
|
{
|
|
|
|
auto collect_songs = [&songs](const LightSong &song){
|
|
|
|
songs.emplace_back(song);
|
|
|
|
};
|
|
|
|
|
|
|
|
db.Visit(selection, d, collect_songs, p);
|
|
|
|
}
|
|
|
|
|
2017-12-18 21:36:47 +01:00
|
|
|
if (sort == TagType(SORT_TAG_LAST_MODIFIED))
|
|
|
|
std::stable_sort(songs.begin(), songs.end(),
|
|
|
|
[descending](const DetachedSong &a, const DetachedSong &b){
|
|
|
|
return descending
|
|
|
|
? a.GetLastModified() > b.GetLastModified()
|
|
|
|
: a.GetLastModified() < b.GetLastModified();
|
|
|
|
});
|
|
|
|
else
|
|
|
|
std::stable_sort(songs.begin(), songs.end(),
|
|
|
|
[sort, descending](const DetachedSong &a,
|
|
|
|
const DetachedSong &b){
|
|
|
|
return CompareTags(sort, descending,
|
|
|
|
a.GetTag(),
|
|
|
|
b.GetTag());
|
|
|
|
});
|
2017-02-08 09:22:15 +01:00
|
|
|
|
|
|
|
if (window_end < songs.size())
|
|
|
|
songs.erase(std::next(songs.begin(), window_end),
|
|
|
|
songs.end());
|
|
|
|
|
|
|
|
if (window_start >= songs.size())
|
|
|
|
return;
|
|
|
|
|
|
|
|
songs.erase(songs.begin(),
|
|
|
|
std::next(songs.begin(), window_start));
|
|
|
|
|
|
|
|
for (const auto &song : songs)
|
|
|
|
s((LightSong)song);
|
|
|
|
}
|
2011-09-13 21:24:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
db_selection_print(Response &r, Partition &partition,
|
|
|
|
const DatabaseSelection &selection,
|
2016-10-29 10:21:57 +02:00
|
|
|
bool full, bool base)
|
2014-11-18 14:31:27 +01:00
|
|
|
{
|
2016-10-29 10:21:57 +02:00
|
|
|
db_selection_print(r, partition, selection, full, base,
|
2017-12-18 21:50:14 +01:00
|
|
|
TAG_NUM_OF_ITEM_TYPES, false,
|
2016-10-29 10:21:57 +02:00
|
|
|
0, std::numeric_limits<int>::max());
|
2014-11-18 14:31:27 +01:00
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2018-01-21 11:32:01 +01:00
|
|
|
PrintSongURIVisitor(Response &r, const LightSong &song) noexcept
|
2011-09-05 23:09:20 +02:00
|
|
|
{
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_uri(r, song);
|
2011-09-05 23:09:20 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 11:18:45 +02:00
|
|
|
void
|
|
|
|
PrintSongUris(Response &r, Partition &partition,
|
|
|
|
const SongFilter *filter)
|
|
|
|
{
|
|
|
|
const Database &db = partition.GetDatabaseOrThrow();
|
|
|
|
|
|
|
|
const DatabaseSelection selection("", true, filter);
|
|
|
|
|
|
|
|
using namespace std::placeholders;
|
|
|
|
const auto f = std::bind(PrintSongURIVisitor,
|
|
|
|
std::ref(r), _1);
|
|
|
|
db.Visit(selection, f);
|
|
|
|
}
|
|
|
|
|
2017-01-28 16:12:30 +01:00
|
|
|
static void
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintUniqueTag(Response &r, TagType tag_type,
|
2018-01-21 11:32:01 +01:00
|
|
|
const Tag &tag) noexcept
|
2011-09-05 23:09:20 +02:00
|
|
|
{
|
2014-04-24 10:20:24 +02:00
|
|
|
const char *value = tag.GetValue(tag_type);
|
|
|
|
assert(value != nullptr);
|
2017-02-07 18:31:30 +01:00
|
|
|
tag_print(r, tag_type, value);
|
2014-04-24 10:20:24 +02:00
|
|
|
|
2017-02-07 16:52:59 +01:00
|
|
|
const auto tag_mask = r.GetTagMask();
|
2014-07-12 17:22:39 +02:00
|
|
|
for (const auto &item : tag)
|
2017-02-07 16:52:59 +01:00
|
|
|
if (item.type != tag_type && tag_mask.Test(item.type))
|
2017-02-07 18:31:30 +01:00
|
|
|
tag_print(r, item.type, item.value);
|
2011-09-05 23:09:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 10:21:57 +02:00
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
PrintUniqueTags(Response &r, Partition &partition,
|
2017-02-07 16:57:16 +01:00
|
|
|
unsigned type, TagMask group_mask,
|
2016-10-29 10:21:57 +02:00
|
|
|
const SongFilter *filter)
|
2011-09-05 23:09:20 +02:00
|
|
|
{
|
2018-07-25 11:18:45 +02:00
|
|
|
assert(type < TAG_NUM_OF_ITEM_TYPES);
|
|
|
|
|
2016-10-26 18:47:19 +02:00
|
|
|
const Database &db = partition.GetDatabaseOrThrow();
|
2012-08-22 21:40:20 +02:00
|
|
|
|
2012-08-29 19:27:03 +02:00
|
|
|
const DatabaseSelection selection("", true, filter);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2018-07-25 11:18:45 +02:00
|
|
|
using namespace std::placeholders;
|
|
|
|
const auto f = std::bind(PrintUniqueTag, std::ref(r),
|
|
|
|
(TagType)type, _1);
|
|
|
|
db.VisitUniqueTags(selection, (TagType)type,
|
|
|
|
group_mask, f);
|
2011-09-05 23:09:20 +02:00
|
|
|
}
|