PlaylistPrint.hxx 2.57 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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
struct Partition;
27
class SongFilter;
28
class Response;
29 30 31 32 33

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

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

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

/**
 * Sends the current song to the client.
 *
 * @return true on success, false if there is no current song
 */
bool
65 66
playlist_print_current(Response &r, Partition &partition,
		       const playlist &playlist);
67 68 69 70 71

/**
 * Find songs in the playlist.
 */
void
72 73
playlist_print_find(Response &r, Partition &partition,
		    const playlist &playlist,
74
		    const SongFilter &filter);
75 76 77 78 79

/**
 * Print detailed changes since the specified playlist version.
 */
void
80
playlist_print_changes_info(Response &r, Partition &partition,
81
			    const playlist &playlist,
82 83
			    uint32_t version,
			    unsigned start, unsigned end);
84 85 86 87 88

/**
 * Print changes since the specified playlist version, position only.
 */
void
89
playlist_print_changes_position(Response &r,
90
				const playlist &playlist,
91 92
				uint32_t version,
				unsigned start, unsigned end);
93 94

#endif