2009-01-23 16:34:27 +01:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 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
|
|
|
*/
|
|
|
|
|
2012-08-29 20:17:13 +02:00
|
|
|
#ifndef MPD_PLAYLIST_PRINT_HXX
|
|
|
|
#define MPD_PLAYLIST_PRINT_HXX
|
2009-01-23 16:34:27 +01:00
|
|
|
|
2009-02-04 22:09:04 +01:00
|
|
|
#include <stdint.h>
|
2009-02-04 21:04:30 +01:00
|
|
|
|
2009-02-04 22:09:04 +01:00
|
|
|
struct playlist;
|
2012-08-29 19:27:03 +02:00
|
|
|
class SongFilter;
|
2013-01-03 17:27:26 +01:00
|
|
|
class Client;
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
2009-02-04 22:09:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends the whole playlist to the client, song URIs only.
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a range of the playlist to the client, including all known
|
|
|
|
* information about the songs. The "end" offset is decreased
|
|
|
|
* automatically if it is too large; passing UINT_MAX is allowed.
|
|
|
|
* This function however fails when the start offset is invalid.
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends the song with the specified id to the client.
|
|
|
|
*
|
|
|
|
* @return true on suite, false if there is no such song
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends the current song to the client.
|
|
|
|
*
|
|
|
|
* @return true on success, false if there is no current song
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Find songs in the playlist.
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Print detailed changes since the specified playlist version.
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print changes since the specified playlist version, position only.
|
|
|
|
*/
|
|
|
|
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);
|
2009-01-23 16:34:27 +01:00
|
|
|
|
2009-02-04 21:09:37 +01:00
|
|
|
/**
|
|
|
|
* Send the stored playlist to the client.
|
|
|
|
*
|
|
|
|
* @param client the client which requested the playlist
|
|
|
|
* @param name_utf8 the name of the stored playlist in UTF-8 encoding
|
|
|
|
* @param detail true if all details should be printed
|
|
|
|
* @return true on success, false if the playlist does not exist
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
#endif
|