PlaylistPrint.hxx 2.39 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20 21
#ifndef MPD_PLAYLIST_PRINT_HXX
#define MPD_PLAYLIST_PRINT_HXX
22

23
#include <stdint.h>
24

25
struct playlist;
26
class SongFilter;
27
class Response;
28 29 30 31 32

/**
 * Sends the whole playlist to the client, song URIs only.
 */
void
33
playlist_print_uris(Response &r, const playlist &playlist);
34 35 36 37 38 39

/**
 * 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.
40 41
 *
 * Throws #PlaylistError if the range is invalid.
42
 */
43
void
44
playlist_print_info(Response &r, const playlist &playlist,
45 46 47 48 49
		    unsigned start, unsigned end);

/**
 * Sends the song with the specified id to the client.
 *
50
 * Throws #PlaylistError if the range is invalid.
51
 */
52
void
53
playlist_print_id(Response &r, const playlist &playlist, unsigned id);
54 55 56 57 58 59 60

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

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

/**
 * Print detailed changes since the specified playlist version.
 */
void
74
playlist_print_changes_info(Response &r, const playlist &playlist,
75 76
			    uint32_t version,
			    unsigned start, unsigned end);
77 78 79 80 81

/**
 * Print changes since the specified playlist version, position only.
 */
void
82
playlist_print_changes_position(Response &r,
83
				const playlist &playlist,
84 85
				uint32_t version,
				unsigned start, unsigned end);
86 87

#endif