2009-01-23 16:34:27 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-01-23 16:34:27 +01: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.
|
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.
|
2009-01-23 16:34:27 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2012-08-29 20:17:13 +02:00
|
|
|
#include "PlaylistPrint.hxx"
|
2012-09-28 00:40:00 +02:00
|
|
|
#include "PlaylistFile.hxx"
|
2013-01-02 18:38:32 +01:00
|
|
|
#include "PlaylistAny.hxx"
|
|
|
|
#include "PlaylistSong.hxx"
|
2013-01-04 20:50:00 +01:00
|
|
|
#include "Playlist.hxx"
|
2012-08-29 19:27:03 +02:00
|
|
|
#include "QueuePrint.hxx"
|
2013-09-05 09:37:54 +02:00
|
|
|
#include "SongEnumerator.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "SongPrint.hxx"
|
2013-01-03 00:30:15 +01:00
|
|
|
#include "DatabaseGlue.hxx"
|
|
|
|
#include "DatabasePlugin.hxx"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "Client.hxx"
|
2013-09-05 00:06:31 +02:00
|
|
|
#include "InputStream.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2013-10-21 10:26:53 +02:00
|
|
|
#include "fs/Traits.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 10:06:31 +02:00
|
|
|
#include "thread/Cond.hxx"
|
2009-01-23 16:34:27 +01:00
|
|
|
|
2009-02-04 22:09:04 +01:00
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_uris(Client &client, const playlist &playlist)
|
2009-02-04 22:09:04 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
const queue &queue = playlist.queue;
|
2009-02-04 22:09:04 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_print_uris(client, queue, 0, queue.GetLength());
|
2009-02-04 22:09:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_info(Client &client, const playlist &playlist,
|
2009-02-04 22:09:04 +01:00
|
|
|
unsigned start, unsigned end)
|
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
const queue &queue = playlist.queue;
|
2009-02-04 22:09:04 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (end > queue.GetLength())
|
2009-02-04 22:09:04 +01:00
|
|
|
/* correct the "end" offset */
|
2013-10-19 18:48:38 +02:00
|
|
|
end = queue.GetLength();
|
2009-02-04 22:09:04 +01:00
|
|
|
|
|
|
|
if (start > end)
|
|
|
|
/* an invalid "start" offset is fatal */
|
|
|
|
return false;
|
|
|
|
|
|
|
|
queue_print_info(client, queue, start, end);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_id(Client &client, const playlist &playlist,
|
2009-02-04 22:09:04 +01:00
|
|
|
unsigned id)
|
|
|
|
{
|
|
|
|
int position;
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
position = playlist.queue.IdToPosition(id);
|
2009-02-04 22:09:04 +01:00
|
|
|
if (position < 0)
|
|
|
|
/* no such song */
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return playlist_print_info(client, playlist, position, position + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_current(Client &client, const playlist &playlist)
|
2009-02-04 22:09:04 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
int current_position = playlist.GetCurrentPosition();
|
2009-02-04 22:09:04 +01:00
|
|
|
if (current_position < 0)
|
|
|
|
return false;
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_print_info(client, playlist.queue,
|
2009-02-04 22:09:04 +01:00
|
|
|
current_position, current_position + 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_find(Client &client, const playlist &playlist,
|
2012-08-29 19:27:03 +02:00
|
|
|
const SongFilter &filter)
|
2009-02-04 22:09:04 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_find(client, playlist.queue, filter);
|
2009-02-04 22:09:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_changes_info(Client &client,
|
|
|
|
const playlist &playlist,
|
2009-02-04 22:09:04 +01:00
|
|
|
uint32_t version)
|
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_print_changes_info(client, playlist.queue, version);
|
2009-02-04 22:09:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_print_changes_position(Client &client,
|
|
|
|
const playlist &playlist,
|
2009-02-04 22:09:04 +01:00
|
|
|
uint32_t version)
|
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_print_changes_position(client, playlist.queue, version);
|
2009-02-04 22:09:04 +01:00
|
|
|
}
|
|
|
|
|
2013-01-03 00:30:15 +01:00
|
|
|
static bool
|
2013-10-19 18:48:38 +02:00
|
|
|
PrintSongDetails(Client &client, const char *uri_utf8)
|
2013-01-03 00:30:15 +01:00
|
|
|
{
|
2013-10-22 00:46:02 +02:00
|
|
|
const Database *db = GetDatabase();
|
2013-01-03 00:30:15 +01:00
|
|
|
if (db == nullptr)
|
|
|
|
return false;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Song *song = db->GetSong(uri_utf8, IgnoreError());
|
2013-01-03 00:30:15 +01:00
|
|
|
if (song == nullptr)
|
|
|
|
return false;
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
song_print_info(client, *song);
|
2013-01-03 00:30:15 +01:00
|
|
|
db->ReturnSong(song);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-04 21:04:30 +01:00
|
|
|
bool
|
2013-10-19 18:48:38 +02:00
|
|
|
spl_print(Client &client, const char *name_utf8, bool detail,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2009-01-23 16:34:27 +01:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
PlaylistFileContents contents = LoadPlaylistFile(name_utf8, error);
|
|
|
|
if (contents.empty() && error.IsDefined())
|
2009-02-04 21:04:30 +01:00
|
|
|
return false;
|
2009-01-23 16:34:27 +01:00
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
for (const auto &uri_utf8 : contents) {
|
2013-01-03 00:30:15 +01:00
|
|
|
if (!detail || !PrintSongDetails(client, uri_utf8.c_str()))
|
2012-09-27 23:48:29 +02:00
|
|
|
client_printf(client, SONG_FILE "%s\n",
|
|
|
|
uri_utf8.c_str());
|
2009-01-23 16:34:27 +01:00
|
|
|
}
|
|
|
|
|
2009-02-04 21:04:30 +01:00
|
|
|
return true;
|
2009-01-23 16:34:27 +01:00
|
|
|
}
|
2010-02-08 10:19:43 +01:00
|
|
|
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_provider_print(Client &client, const char *uri,
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator &e, bool detail)
|
2010-02-08 10:19:43 +01:00
|
|
|
{
|
2013-10-21 10:26:53 +02:00
|
|
|
const std::string base_uri = uri != nullptr
|
2013-12-04 22:53:43 +01:00
|
|
|
? PathTraitsUTF8::GetParent(uri)
|
2013-10-21 10:26:53 +02:00
|
|
|
: std::string(".");
|
2010-02-08 10:19:43 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
DetachedSong *song;
|
2013-09-05 09:37:54 +02:00
|
|
|
while ((song = e.NextSong()) != nullptr) {
|
2013-10-21 10:26:53 +02:00
|
|
|
song = playlist_check_translate_song(song, base_uri.c_str(),
|
|
|
|
false);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (song == nullptr)
|
2010-02-08 10:19:43 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (detail)
|
2013-10-19 18:48:38 +02:00
|
|
|
song_print_info(client, *song);
|
2010-02-08 10:19:43 +01:00
|
|
|
else
|
2013-10-19 18:48:38 +02:00
|
|
|
song_print_uri(client, *song);
|
2012-08-15 23:59:52 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
delete song;
|
2010-02-08 10:19:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-19 18:48:38 +02:00
|
|
|
playlist_file_print(Client &client, const char *uri, bool detail)
|
2010-02-08 10:19:43 +01:00
|
|
|
{
|
2013-01-27 17:20:50 +01:00
|
|
|
Mutex mutex;
|
|
|
|
Cond cond;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
InputStream *is;
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *playlist = playlist_open_any(uri, mutex, cond, &is);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist == nullptr)
|
2010-02-08 10:19:43 +01:00
|
|
|
return false;
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
playlist_provider_print(client, uri, *playlist, detail);
|
|
|
|
delete playlist;
|
2010-06-01 09:10:58 +02:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
if (is != nullptr)
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Close();
|
2010-06-01 09:10:58 +02:00
|
|
|
|
2010-02-08 10:19:43 +01:00
|
|
|
return true;
|
|
|
|
}
|