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-04 20:50:00 +01:00
|
|
|
#include "Playlist.hxx"
|
2014-01-24 00:17:50 +01:00
|
|
|
#include "queue/QueuePrint.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "SongPrint.hxx"
|
2014-02-01 00:26:34 +01:00
|
|
|
#include "Partition.hxx"
|
|
|
|
#include "Instance.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/DatabasePlugin.hxx"
|
2014-01-24 00:26:53 +01:00
|
|
|
#include "client/Client.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.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
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
#define SONG_FILE "file: "
|
|
|
|
#define SONG_TIME "Time: "
|
|
|
|
|
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
|
|
|
{
|
2014-01-20 08:57:22 +01: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)
|
|
|
|
{
|
2014-01-20 08:57:22 +01: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
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
|
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
|
|
|
{
|
2014-02-01 00:26:34 +01:00
|
|
|
const Database *db = client.partition.instance.database;
|
2013-01-03 00:30:15 +01:00
|
|
|
if (db == nullptr)
|
|
|
|
return false;
|
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
auto *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;
|
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
{
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifndef ENABLE_DATABASE
|
|
|
|
(void)detail;
|
|
|
|
#endif
|
|
|
|
|
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) {
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2013-01-03 00:30:15 +01:00
|
|
|
if (!detail || !PrintSongDetails(client, uri_utf8.c_str()))
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
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
|
|
|
}
|