playlist.h 6.41 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20 21
#ifndef MPD_PLAYLIST_H
#define MPD_PLAYLIST_H
Warren Dukes's avatar
Warren Dukes committed
22

23
#include "queue.h"
24
#include "playlist_error.h"
Warren Dukes's avatar
Warren Dukes committed
25

26
#include <stdbool.h>
27

28 29
struct player_control;

30
struct playlist {
31 32 33
	/**
	 * The song queue - it contains the "real" playlist.
	 */
34 35
	struct queue queue;

36 37 38 39 40 41
	/**
	 * This value is true if the player is currently playing (or
	 * should be playing).
	 */
	bool playing;

42 43 44 45 46 47 48 49 50 51 52 53 54 55
	/**
	 * If true, then any error is fatal; if false, MPD will
	 * attempt to play the next song on non-fatal errors.  During
	 * seeking, this flag is set.
	 */
	bool stop_on_error;

	/**
	 * Number of errors since playback was started.  If this
	 * number exceeds the length of the playlist, MPD gives up,
	 * because all songs have been tried.
	 */
	unsigned error_count;

56 57 58 59 60
	/**
	 * The "current song pointer".  This is the song which is
	 * played when we get the "play" command.  It is also the song
	 * which is currently being played.
	 */
61
	int current;
62 63 64

	/**
	 * The "next" song to be played, when the current one
65 66 67 68
	 * finishes.  The decoder thread may start decoding and
	 * buffering it, while the "current" song is still playing.
	 *
	 * This variable is only valid if #playing is true.
69
	 */
70
	int queued;
71
};
72

73 74 75
/** the global playlist object */
extern struct playlist g_playlist;

Max Kellermann's avatar
Max Kellermann committed
76 77
void
playlist_global_init(void);
Warren Dukes's avatar
Warren Dukes committed
78

Max Kellermann's avatar
Max Kellermann committed
79 80
void
playlist_global_finish(void);
Warren Dukes's avatar
Warren Dukes committed
81

82 83 84 85 86 87 88 89 90
void
playlist_init(struct playlist *playlist);

void
playlist_finish(struct playlist *playlist);

void
playlist_tag_changed(struct playlist *playlist);

91 92 93
/**
 * Returns the "queue" object of the global playlist instance.
 */
94 95 96 97 98
static inline const struct queue *
playlist_get_queue(const struct playlist *playlist)
{
	return &playlist->queue;
}
99

100
void
101
playlist_clear(struct playlist *playlist, struct player_control *pc);
Warren Dukes's avatar
Warren Dukes committed
102

103
#ifndef WIN32
104 105 106 107 108
/**
 * Appends a local file (outside the music database) to the playlist,
 * but only if the file's owner is equal to the specified uid.
 */
enum playlist_result
109 110
playlist_append_file(struct playlist *playlist, struct player_control *pc,
		     const char *path, int uid, unsigned *added_id);
111
#endif
112

113
enum playlist_result
114 115
playlist_append_uri(struct playlist *playlist, struct player_control *pc,
		    const char *file, unsigned *added_id);
Warren Dukes's avatar
Warren Dukes committed
116

117
enum playlist_result
118
playlist_append_song(struct playlist *playlist, struct player_control *pc,
119
		  struct song *song, unsigned *added_id);
Warren Dukes's avatar
Warren Dukes committed
120

121
enum playlist_result
122 123
playlist_delete(struct playlist *playlist, struct player_control *pc,
		unsigned song);
Warren Dukes's avatar
Warren Dukes committed
124

125 126 127 128 129 130 131
/**
 * Deletes a range of songs from the playlist.
 *
 * @param start the position of the first song to delete
 * @param end the position after the last song to delete
 */
enum playlist_result
132 133
playlist_delete_range(struct playlist *playlist, struct player_control *pc,
		      unsigned start, unsigned end);
134

135
enum playlist_result
136 137
playlist_delete_id(struct playlist *playlist, struct player_control *pc,
		   unsigned song);
138

139
void
140
playlist_stop(struct playlist *playlist, struct player_control *pc);
Warren Dukes's avatar
Warren Dukes committed
141

142
enum playlist_result
143 144
playlist_play(struct playlist *playlist, struct player_control *pc,
	      int song);
Warren Dukes's avatar
Warren Dukes committed
145

146
enum playlist_result
147 148
playlist_play_id(struct playlist *playlist, struct player_control *pc,
		 int song);
149

150
void
151
playlist_next(struct playlist *playlist, struct player_control *pc);
Warren Dukes's avatar
Warren Dukes committed
152

153
void
154
playlist_sync(struct playlist *playlist, struct player_control *pc);
Warren Dukes's avatar
Warren Dukes committed
155

156
void
157
playlist_previous(struct playlist *playlist, struct player_control *pc);
Warren Dukes's avatar
Warren Dukes committed
158

Max Kellermann's avatar
Max Kellermann committed
159
void
160 161
playlist_shuffle(struct playlist *playlist, struct player_control *pc,
		 unsigned start, unsigned end);
Warren Dukes's avatar
Warren Dukes committed
162

163
void
164 165
playlist_delete_song(struct playlist *playlist, struct player_control *pc,
		     const struct song *song);
Warren Dukes's avatar
Warren Dukes committed
166

167
enum playlist_result
168 169
playlist_move_range(struct playlist *playlist, struct player_control *pc,
		    unsigned start, unsigned end, int to);
Warren Dukes's avatar
Warren Dukes committed
170

171
enum playlist_result
172 173
playlist_move_id(struct playlist *playlist, struct player_control *pc,
		 unsigned id, int to);
174

175
enum playlist_result
176 177
playlist_swap_songs(struct playlist *playlist, struct player_control *pc,
		    unsigned song1, unsigned song2);
Warren Dukes's avatar
Warren Dukes committed
178

179
enum playlist_result
180 181
playlist_swap_songs_id(struct playlist *playlist, struct player_control *pc,
		       unsigned id1, unsigned id2);
182

183 184 185 186 187 188 189 190 191
enum playlist_result
playlist_set_priority(struct playlist *playlist, struct player_control *pc,
		      unsigned start_position, unsigned end_position,
		      uint8_t priority);

enum playlist_result
playlist_set_priority_id(struct playlist *playlist, struct player_control *pc,
			 unsigned song_id, uint8_t priority);

192
bool
193
playlist_get_repeat(const struct playlist *playlist);
Warren Dukes's avatar
Warren Dukes committed
194

195
void
196 197
playlist_set_repeat(struct playlist *playlist, struct player_control *pc,
		    bool status);
Warren Dukes's avatar
Warren Dukes committed
198

199
bool
200
playlist_get_random(const struct playlist *playlist);
Warren Dukes's avatar
Warren Dukes committed
201

202
void
203 204
playlist_set_random(struct playlist *playlist, struct player_control *pc,
		    bool status);
Warren Dukes's avatar
Warren Dukes committed
205

206
bool
207
playlist_get_single(const struct playlist *playlist);
208

209
void
210 211
playlist_set_single(struct playlist *playlist, struct player_control *pc,
		    bool status);
212

213
bool
214
playlist_get_consume(const struct playlist *playlist);
215

216 217
void
playlist_set_consume(struct playlist *playlist, bool status);
218

219 220
int
playlist_get_current_song(const struct playlist *playlist);
Warren Dukes's avatar
Warren Dukes committed
221

222 223
int
playlist_get_next_song(const struct playlist *playlist);
224

225
unsigned
226
playlist_get_song_id(const struct playlist *playlist, unsigned song);
227

228 229
int
playlist_get_length(const struct playlist *playlist);
Warren Dukes's avatar
Warren Dukes committed
230

231
unsigned long
232
playlist_get_version(const struct playlist *playlist);
Warren Dukes's avatar
Warren Dukes committed
233

234
enum playlist_result
235 236
playlist_seek_song(struct playlist *playlist, struct player_control *pc,
		   unsigned song, float seek_time);
Warren Dukes's avatar
Warren Dukes committed
237

238
enum playlist_result
239
playlist_seek_song_id(struct playlist *playlist, struct player_control *pc,
240
		       unsigned id, float seek_time);
241

242 243
void
playlist_increment_version_all(struct playlist *playlist);
244

Warren Dukes's avatar
Warren Dukes committed
245
#endif