Mercurial > audlegacy
annotate src/audacious/playlist.h @ 4063:069d37422964
Automated merge with ssh://hg.atheme.org//hg/audacious
author | Eugene Zagidullin <e.asphyx@gmail.com> |
---|---|
date | Tue, 04 Dec 2007 03:34:41 +0300 |
parents | e9fd46b0893b |
children | 206378f34610 |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 William Pitcock, Tony Vroon, George Averill, | |
3 * Giacomo Lozito, Derek Pomery and Yoshiki Yazawa. | |
4 * | |
5 * XMMS - Cross-platform multimedia player | |
6 * Copyright (C) 1998-2003 Peter Alm, Mikael Alm, Olle Hallnas, | |
7 * Thomas Nilsson and 4Front Technologies | |
8 * Copyright (C) 1999-2003 Haavard Kvaalen | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2680
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
2313 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2680
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
2313 | 24 */ |
3740 | 25 #ifndef _AUDACIOUS_PLAYLIST_H |
26 #define _AUDACIOUS_PLAYLIST_H | |
2313 | 27 |
2634 | 28 /* XXX: Allow pre-0.2 libmowgli to build audacious. */ |
29 #ifdef TRUE | |
30 # undef TRUE | |
31 #endif | |
32 | |
33 #ifdef FALSE | |
34 # undef FALSE | |
35 #endif | |
36 | |
2633
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2548
diff
changeset
|
37 #include <mowgli.h> |
2313 | 38 #include <glib.h> |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
39 #include "audacious/tuple.h" |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
40 #include "audacious/tuple_formatter.h" |
2313 | 41 |
3738
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
42 typedef struct _PlaylistEntry PlaylistEntry; |
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
43 typedef struct _Playlist Playlist; |
2313 | 44 |
45 typedef enum { | |
46 PLAYLIST_SORT_PATH, | |
47 PLAYLIST_SORT_FILENAME, | |
48 PLAYLIST_SORT_TITLE, | |
49 PLAYLIST_SORT_ARTIST, | |
50 PLAYLIST_SORT_DATE, | |
51 PLAYLIST_SORT_TRACK, | |
52 PLAYLIST_SORT_PLAYLIST | |
53 } PlaylistSortType; | |
54 | |
55 typedef enum { | |
56 PLAYLIST_DUPS_PATH, | |
57 PLAYLIST_DUPS_FILENAME, | |
58 PLAYLIST_DUPS_TITLE | |
59 } PlaylistDupsType; | |
60 | |
3738
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
61 #include "audacious/plugin.h" |
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
62 |
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
63 G_BEGIN_DECLS |
2313 | 64 |
65 #define PLAYLIST_ENTRY(x) ((PlaylistEntry*)(x)) | |
3738
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
66 struct _PlaylistEntry { |
2313 | 67 gchar *filename; |
68 gchar *title; | |
69 gint length; | |
70 gboolean selected; | |
71 InputPlugin *decoder; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
72 Tuple *tuple; /* cached entry tuple, if available */ |
3738
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
73 }; |
2313 | 74 |
75 #define PLAYLIST(x) ((Playlist *)(x)) | |
2636 | 76 |
77 typedef enum { | |
78 PLAYLIST_PLAIN = 0, | |
79 PLAYLIST_STATIC = 1, | |
3841
f5b8463b18a2
remove a comma from the last item of enumerator list.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3740
diff
changeset
|
80 PLAYLIST_USE_RELATIVE = 1 << 1 |
2636 | 81 } PlaylistAttribute; |
82 | |
3738
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
83 struct _Playlist { |
2313 | 84 gchar *title; |
85 gchar *filename; | |
86 gint length; | |
87 GList *entries; | |
88 GList *queue; | |
89 GList *shuffle; | |
90 PlaylistEntry *position; /* bleah */ | |
91 gulong pl_total_time; | |
92 gulong pl_selection_time; | |
93 gboolean pl_total_more; | |
94 gboolean pl_selection_more; | |
95 gboolean loading_playlist; | |
96 GMutex *mutex; /* this is required for multiple playlist */ | |
3920
c2b2828186ba
- serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3841
diff
changeset
|
97 GList *tail; /* marker for the last element in playlist->entries */ |
2636 | 98 gint attribute; /* PlaylistAttribute */ |
3920
c2b2828186ba
- serial number has been added to playlist structure so that changes of the current playlist can be notified.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3841
diff
changeset
|
99 gulong serial; /* serial number */ |
3738
48a596a86459
export Playlist API, remove old crap that isn't there anymore
William Pitcock <nenolod@atheme.org>
parents:
3737
diff
changeset
|
100 }; |
2313 | 101 |
102 typedef enum { | |
103 PLAYLIST_ASSOC_LINEAR, | |
104 PLAYLIST_ASSOC_QUEUE, | |
105 PLAYLIST_ASSOC_SHUFFLE | |
106 } PlaylistAssociation; | |
107 | |
108 PlaylistEntry *playlist_entry_new(const gchar * filename, | |
109 const gchar * title, const gint len, | |
110 InputPlugin * dec); | |
111 void playlist_entry_free(PlaylistEntry * entry); | |
112 | |
113 void playlist_entry_associate(Playlist * playlist, PlaylistEntry * entry, | |
114 PlaylistAssociation assoc); | |
115 | |
116 void playlist_entry_associate_pos(Playlist * playlist, PlaylistEntry * entry, | |
117 PlaylistAssociation assoc, gint pos); | |
118 | |
119 void playlist_init(void); | |
120 void playlist_add_playlist(Playlist *); | |
121 void playlist_remove_playlist(Playlist *); | |
122 void playlist_select_playlist(Playlist *); | |
123 void playlist_select_next(void); | |
124 void playlist_select_prev(void); | |
125 GList * playlist_get_playlists(void); | |
126 | |
3460
0fcff78c0c2c
Make the shutdown procedure more sane and improve playlist clearing
Matti Hamalainen <ccr@tnsp.org>
parents:
3298
diff
changeset
|
127 void playlist_clear_only(Playlist *playlist); |
2313 | 128 void playlist_clear(Playlist *playlist); |
129 void playlist_delete(Playlist *playlist, gboolean crop); | |
130 | |
131 gboolean playlist_add(Playlist *playlist, const gchar * filename); | |
132 gboolean playlist_ins(Playlist *playlist, const gchar * filename, gint pos); | |
133 guint playlist_add_dir(Playlist *playlist, const gchar * dir); | |
134 guint playlist_ins_dir(Playlist *playlist, const gchar * dir, gint pos, gboolean background); | |
135 guint playlist_add_url(Playlist *playlist, const gchar * url); | |
136 guint playlist_ins_url(Playlist *playlist, const gchar * string, gint pos); | |
137 | |
138 void playlist_set_info(Playlist *playlist, const gchar * title, gint length, gint rate, | |
139 gint freq, gint nch); | |
140 void playlist_set_info_old_abi(const gchar * title, gint length, gint rate, | |
141 gint freq, gint nch); | |
142 void playlist_check_pos_current(Playlist *playlist); | |
143 void playlist_next(Playlist *playlist); | |
144 void playlist_prev(Playlist *playlist); | |
145 void playlist_queue(Playlist *playlist); | |
146 void playlist_queue_position(Playlist *playlist, guint pos); | |
147 void playlist_queue_remove(Playlist *playlist, guint pos); | |
148 gint playlist_queue_get_length(Playlist *playlist); | |
149 gboolean playlist_is_position_queued(Playlist *playlist, guint pos); | |
150 void playlist_clear_queue(Playlist *playlist); | |
151 gint playlist_get_queue_position(Playlist *playlist, PlaylistEntry * entry); | |
152 gint playlist_get_queue_position_number(Playlist *playlist, guint pos); | |
153 gint playlist_get_queue_qposition_number(Playlist *playlist, guint pos); | |
154 void playlist_eof_reached(Playlist *playlist); | |
155 void playlist_set_position(Playlist *playlist, guint pos); | |
156 gint playlist_get_length(Playlist *playlist); | |
157 gint playlist_get_position(Playlist *playlist); | |
158 gint playlist_get_position_nolock(Playlist *playlist); | |
159 gchar *playlist_get_info_text(Playlist *playlist); | |
160 gint playlist_get_current_length(Playlist *playlist); | |
161 | |
162 gboolean playlist_save(Playlist *playlist, const gchar * filename); | |
163 gboolean playlist_load(Playlist *playlist, const gchar * filename); | |
164 | |
165 void playlist_start_get_info_thread(void); | |
166 void playlist_stop_get_info_thread(); | |
167 void playlist_start_get_info_scan(void); | |
168 | |
169 void playlist_sort(Playlist *playlist, PlaylistSortType type); | |
170 void playlist_sort_selected(Playlist *playlist, PlaylistSortType type); | |
171 | |
172 void playlist_reverse(Playlist *playlist); | |
173 void playlist_random(Playlist *playlist); | |
174 void playlist_remove_duplicates(Playlist *playlist, PlaylistDupsType); | |
175 void playlist_remove_dead_files(Playlist *playlist); | |
176 | |
177 void playlist_fileinfo_current(Playlist *playlist); | |
178 void playlist_fileinfo(Playlist *playlist, guint pos); | |
179 | |
180 void playlist_delete_index(Playlist *playlist, guint pos); | |
181 void playlist_delete_filenames(Playlist *playlist, GList * filenames); | |
182 | |
183 PlaylistEntry *playlist_get_entry_to_play(Playlist *playlist); | |
184 | |
185 /* XXX this is for reverse compatibility --nenolod */ | |
186 const gchar *playlist_get_filename_to_play(Playlist *playlist); | |
187 | |
188 gchar *playlist_get_filename(Playlist *playlist, guint pos); | |
189 gchar *playlist_get_songtitle(Playlist *playlist, guint pos); | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
190 Tuple *playlist_get_tuple(Playlist *playlist, guint pos); |
2313 | 191 gint playlist_get_songtime(Playlist *playlist, guint pos); |
192 | |
193 GList *playlist_get_selected(Playlist *playlist); | |
194 int playlist_get_num_selected(Playlist *playlist); | |
195 | |
196 void playlist_get_total_time(Playlist *playlist, gulong * total_time, gulong * selection_time, | |
197 gboolean * total_more, | |
198 gboolean * selection_more); | |
199 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
200 gint playlist_select_search(Playlist *playlist, Tuple *tuple, gint action); |
2313 | 201 void playlist_select_all(Playlist *playlist, gboolean set); |
202 void playlist_select_range(Playlist *playlist, gint min, gint max, gboolean sel); | |
203 void playlist_select_invert_all(Playlist *playlist); | |
204 gboolean playlist_select_invert(Playlist *playlist, guint pos); | |
205 | |
206 gboolean playlist_read_info_selection(Playlist *playlist); | |
207 void playlist_read_info(Playlist *playlist, guint pos); | |
208 | |
209 void playlist_set_shuffle(gboolean shuffle); | |
210 | |
211 void playlist_clear_selected(Playlist *playlist); | |
212 | |
213 GList *get_playlist_nth(Playlist *playlist, guint); | |
3477
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3474
diff
changeset
|
214 |
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3474
diff
changeset
|
215 gboolean playlist_set_current_name(Playlist *playlist, const gchar * title); |
2313 | 216 const gchar *playlist_get_current_name(Playlist *playlist); |
3477
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3474
diff
changeset
|
217 |
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3474
diff
changeset
|
218 gboolean playlist_filename_set(Playlist *playlist, const gchar * filename); |
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3474
diff
changeset
|
219 gchar *playlist_filename_get(Playlist *playlist); |
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3474
diff
changeset
|
220 |
2313 | 221 Playlist *playlist_new(void); |
222 void playlist_free(Playlist *playlist); | |
223 Playlist *playlist_new_from_selected(void); | |
224 | |
225 gboolean is_playlist_name(const gchar * filename); | |
226 | |
3923
e9fd46b0893b
- redefine playlist_incr_serial as a macro.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3920
diff
changeset
|
227 #define PLAYLIST_LOCK(pl) g_mutex_lock((pl)->mutex) |
e9fd46b0893b
- redefine playlist_incr_serial as a macro.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3920
diff
changeset
|
228 #define PLAYLIST_UNLOCK(pl) g_mutex_unlock((pl)->mutex) |
e9fd46b0893b
- redefine playlist_incr_serial as a macro.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3920
diff
changeset
|
229 #define PLAYLIST_INCR_SERIAL(pl) (pl)->serial++ |
2313 | 230 |
231 G_LOCK_EXTERN(playlists); | |
232 | |
233 extern void playlist_load_ins_file(Playlist *playlist, const gchar * filename, | |
234 const gchar * playlist_name, gint pos, | |
235 const gchar * title, gint len); | |
236 | |
237 extern void playlist_load_ins_file_tuple(Playlist *playlist, const gchar * filename_p, | |
238 const gchar * playlist_name, gint pos, | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
239 Tuple *tuple); |
2313 | 240 |
241 Playlist *playlist_get_active(void); | |
242 | |
3474
adc785ee517b
Add playlist_playlists_equal for comparing entire playlists
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3298
diff
changeset
|
243 gboolean playlist_playlists_equal(Playlist *p1, Playlist *p2); |
adc785ee517b
Add playlist_playlists_equal for comparing entire playlists
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3298
diff
changeset
|
244 |
3737 | 245 extern const gchar *get_gentitle_format(void); |
246 | |
2313 | 247 G_END_DECLS |
248 | |
249 #endif |