PlaylistPrint.hxx 3.05 KB
Newer Older
1

2
/*
3
 * Copyright (C) 2003-2013 The Music Player Daemon Project
4 5 6 7 8 9 10 11 12 13 14
 * 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.
15 16 17 18
 *
 * 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.
19 20
 */

21 22
#ifndef MPD_PLAYLIST_PRINT_HXX
#define MPD_PLAYLIST_PRINT_HXX
23

24
#include <stdint.h>
25

26
struct playlist;
27
class SongFilter;
28
class Client;
29
class Error;
30 31 32 33 34

/**
 * Sends the whole playlist to the client, song URIs only.
 */
void
35
playlist_print_uris(Client &client, const playlist &playlist);
36 37 38 39 40 41 42 43

/**
 * 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
44
playlist_print_info(Client &client, const playlist &playlist,
45 46 47 48 49 50 51 52
		    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
53
playlist_print_id(Client &client, const playlist &playlist,
54 55 56 57 58 59 60 61
		  unsigned id);

/**
 * Sends the current song to the client.
 *
 * @return true on success, false if there is no current song
 */
bool
62
playlist_print_current(Client &client, const playlist &playlist);
63 64 65 66 67

/**
 * Find songs in the playlist.
 */
void
68
playlist_print_find(Client &client, const playlist &playlist,
69
		    const SongFilter &filter);
70 71 72 73 74

/**
 * Print detailed changes since the specified playlist version.
 */
void
75 76
playlist_print_changes_info(Client &client,
			    const playlist &playlist,
77 78 79 80 81 82
			    uint32_t version);

/**
 * Print changes since the specified playlist version, position only.
 */
void
83 84
playlist_print_changes_position(Client &client,
				const playlist &playlist,
85
				uint32_t version);
86

87 88 89 90 91 92 93 94
/**
 * 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
 */
95
bool
96
spl_print(Client &client, const char *name_utf8, bool detail,
97
	  Error &error);
98

99 100 101 102 103 104 105 106 107
/**
 * Send the playlist file to the client.
 *
 * @param client the client which requested the playlist
 * @param uri the URI of the playlist file in UTF-8 encoding
 * @param detail true if all details should be printed
 * @return true on success, false if the playlist does not exist
 */
bool
108
playlist_file_print(Client &client, const char *uri, bool detail);
109

110
#endif