libmpdclient 2.20
song.h
Go to the documentation of this file.
1/* libmpdclient
2 (c) 2003-2019 The Music Player Daemon Project
3 This project's homepage is: http://www.musicpd.org
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
7 are met:
8
9 - Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
11
12 - Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
15
16 - Neither the name of the Music Player Daemon nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
19
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*/
32
39#ifndef MPD_SONG_H
40#define MPD_SONG_H
41
42#include "tag.h"
43#include "compiler.h"
44
45#include <stdbool.h>
46#include <time.h>
47
48struct mpd_pair;
49struct mpd_connection;
50
58struct mpd_song;
59
60#ifdef __cplusplus
61extern "C" {
62#endif
63
67void mpd_song_free(struct mpd_song *song);
68
74mpd_malloc
75struct mpd_song *
76mpd_song_dup(const struct mpd_song *song);
77
83mpd_pure
84const char *
85mpd_song_get_uri(const struct mpd_song *song);
86
98mpd_pure
99const char *
100mpd_song_get_tag(const struct mpd_song *song,
101 enum mpd_tag_type type, unsigned idx);
102
107mpd_pure
108unsigned
109mpd_song_get_duration(const struct mpd_song *song);
110
117mpd_pure
118unsigned
120
127mpd_pure
128unsigned
129mpd_song_get_start(const struct mpd_song *song);
130
137mpd_pure
138unsigned
139mpd_song_get_end(const struct mpd_song *song);
140
145mpd_pure
146time_t
148
156void
157mpd_song_set_pos(struct mpd_song *song, unsigned pos);
158
163mpd_pure
164unsigned
165mpd_song_get_pos(const struct mpd_song *song);
166
171mpd_pure
172unsigned
173mpd_song_get_id(const struct mpd_song *song);
174
181mpd_pure
182unsigned
183mpd_song_get_prio(const struct mpd_song *song);
184
191mpd_pure
192const struct mpd_audio_format *
194
202mpd_malloc
203struct mpd_song *
204mpd_song_begin(const struct mpd_pair *pair);
205
214bool
215mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair);
216
223mpd_malloc
224struct mpd_song *
225mpd_recv_song(struct mpd_connection *connection);
226
227#ifdef __cplusplus
228}
229#endif
230
231#endif
unsigned mpd_song_get_start(const struct mpd_song *song)
void mpd_song_free(struct mpd_song *song)
struct mpd_song * mpd_recv_song(struct mpd_connection *connection)
unsigned mpd_song_get_duration_ms(const struct mpd_song *song)
time_t mpd_song_get_last_modified(const struct mpd_song *song)
unsigned mpd_song_get_end(const struct mpd_song *song)
unsigned mpd_song_get_duration(const struct mpd_song *song)
void mpd_song_set_pos(struct mpd_song *song, unsigned pos)
const char * mpd_song_get_uri(const struct mpd_song *song)
unsigned mpd_song_get_id(const struct mpd_song *song)
bool mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair)
unsigned mpd_song_get_prio(const struct mpd_song *song)
struct mpd_song * mpd_song_dup(const struct mpd_song *song)
struct mpd_song * mpd_song_begin(const struct mpd_pair *pair)
unsigned mpd_song_get_pos(const struct mpd_song *song)
const char * mpd_song_get_tag(const struct mpd_song *song, enum mpd_tag_type type, unsigned idx)
const struct mpd_audio_format * mpd_song_get_audio_format(const struct mpd_song *song)
Definition: pair.h:41
mpd_tag_type
Definition: tag.h:46