Mercurial > audlegacy
annotate src/audacious/playlist.h @ 3212:59b84ca1b09c trunk
Added my g15composer-based Python script for displaying Now Playing info on the LCD of the Logitech G15 Gaming Keyboard.
author | ssokolow@localhost.localdomain |
---|---|
date | Wed, 01 Aug 2007 22:04:59 -0400 |
parents | f1c756f39e6c |
children | f985357757e0 |
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 */ |
25 #ifndef PLAYLIST_H | |
26 #define PLAYLIST_H | |
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> |
39 #include "audacious/titlestring.h" | |
40 #include "input.h" | |
41 | |
42 G_BEGIN_DECLS | |
43 | |
44 typedef enum { | |
45 PLAYLIST_SORT_PATH, | |
46 PLAYLIST_SORT_FILENAME, | |
47 PLAYLIST_SORT_TITLE, | |
48 PLAYLIST_SORT_ARTIST, | |
49 PLAYLIST_SORT_DATE, | |
50 PLAYLIST_SORT_TRACK, | |
51 PLAYLIST_SORT_PLAYLIST | |
52 } PlaylistSortType; | |
53 | |
54 typedef enum { | |
55 PLAYLIST_DUPS_PATH, | |
56 PLAYLIST_DUPS_FILENAME, | |
57 PLAYLIST_DUPS_TITLE | |
58 } PlaylistDupsType; | |
59 | |
60 typedef enum { | |
61 PLAYLIST_FORMAT_UNKNOWN = -1, | |
62 PLAYLIST_FORMAT_M3U, | |
63 PLAYLIST_FORMAT_PLS, | |
64 PLAYLIST_FORMAT_COUNT | |
65 } PlaylistFormat; | |
66 | |
67 #define PLAYLIST_ENTRY(x) ((PlaylistEntry*)(x)) | |
68 typedef struct _PlaylistEntry { | |
69 gchar *filename; | |
70 gchar *title; | |
71 gint length; | |
72 gboolean selected; | |
73 InputPlugin *decoder; | |
74 TitleInput *tuple; /* cached entry tuple, if available */ | |
75 } PlaylistEntry; | |
76 | |
77 #define PLAYLIST(x) ((Playlist *)(x)) | |
2636 | 78 |
79 typedef enum { | |
80 PLAYLIST_PLAIN = 0, | |
81 PLAYLIST_STATIC = 1, | |
2641 | 82 PLAYLIST_USE_RELATIVE = 1 << 1, |
2636 | 83 } PlaylistAttribute; |
84 | |
2313 | 85 typedef struct _Playlist { |
86 gchar *title; | |
87 gchar *filename; | |
88 gint length; | |
89 GList *entries; | |
90 GList *queue; | |
91 GList *shuffle; | |
92 PlaylistEntry *position; /* bleah */ | |
93 gulong pl_total_time; | |
94 gulong pl_selection_time; | |
95 gboolean pl_total_more; | |
96 gboolean pl_selection_more; | |
97 gboolean loading_playlist; | |
98 GMutex *mutex; /* this is required for multiple playlist */ | |
2548
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2313
diff
changeset
|
99 GList *tail; /* marker for the last element in playlist->entries */ |
2636 | 100 gint attribute; /* PlaylistAttribute */ |
2313 | 101 } Playlist; |
102 | |
103 typedef enum { | |
104 PLAYLIST_ASSOC_LINEAR, | |
105 PLAYLIST_ASSOC_QUEUE, | |
106 PLAYLIST_ASSOC_SHUFFLE | |
107 } PlaylistAssociation; | |
108 | |
109 PlaylistEntry *playlist_entry_new(const gchar * filename, | |
110 const gchar * title, const gint len, | |
111 InputPlugin * dec); | |
112 void playlist_entry_free(PlaylistEntry * entry); | |
113 | |
114 void playlist_entry_associate(Playlist * playlist, PlaylistEntry * entry, | |
115 PlaylistAssociation assoc); | |
116 | |
117 void playlist_entry_associate_pos(Playlist * playlist, PlaylistEntry * entry, | |
118 PlaylistAssociation assoc, gint pos); | |
119 | |
120 void playlist_init(void); | |
121 void playlist_add_playlist(Playlist *); | |
122 void playlist_remove_playlist(Playlist *); | |
123 void playlist_select_playlist(Playlist *); | |
124 void playlist_select_next(void); | |
125 void playlist_select_prev(void); | |
126 GList * playlist_get_playlists(void); | |
127 | |
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); | |
190 TitleInput *playlist_get_tuple(Playlist *playlist, guint pos); | |
191 gint playlist_get_songtime(Playlist *playlist, guint pos); | |
192 | |
193 GList *playlist_get_selected(Playlist *playlist); | |
194 GList *playlist_get_selected_list(Playlist *playlist); | |
195 int playlist_get_num_selected(Playlist *playlist); | |
196 | |
197 void playlist_get_total_time(Playlist *playlist, gulong * total_time, gulong * selection_time, | |
198 gboolean * total_more, | |
199 gboolean * selection_more); | |
200 | |
201 gint playlist_select_search(Playlist *playlist, TitleInput *tuple, gint action); | |
202 void playlist_select_all(Playlist *playlist, gboolean set); | |
203 void playlist_select_range(Playlist *playlist, gint min, gint max, gboolean sel); | |
204 void playlist_select_invert_all(Playlist *playlist); | |
205 gboolean playlist_select_invert(Playlist *playlist, guint pos); | |
206 | |
207 gboolean playlist_read_info_selection(Playlist *playlist); | |
208 void playlist_read_info(Playlist *playlist, guint pos); | |
209 | |
210 void playlist_set_shuffle(gboolean shuffle); | |
211 | |
212 void playlist_clear_selected(Playlist *playlist); | |
213 | |
214 GList *get_playlist_nth(Playlist *playlist, guint); | |
215 gboolean playlist_set_current_name(Playlist *playlist, const gchar * filename); | |
216 const gchar *playlist_get_current_name(Playlist *playlist); | |
217 Playlist *playlist_new(void); | |
218 void playlist_free(Playlist *playlist); | |
219 Playlist *playlist_new_from_selected(void); | |
220 | |
221 PlaylistFormat playlist_format_get_from_name(const gchar * filename); | |
222 gboolean is_playlist_name(const gchar * filename); | |
223 | |
2680 | 224 #define PLAYLIST_LOCK(m) g_mutex_lock(m) |
225 #define PLAYLIST_UNLOCK(m) g_mutex_unlock(m) | |
2313 | 226 |
227 G_LOCK_EXTERN(playlists); | |
228 | |
229 extern void playlist_load_ins_file(Playlist *playlist, const gchar * filename, | |
230 const gchar * playlist_name, gint pos, | |
231 const gchar * title, gint len); | |
232 | |
233 extern void playlist_load_ins_file_tuple(Playlist *playlist, const gchar * filename_p, | |
234 const gchar * playlist_name, gint pos, | |
235 TitleInput *tuple); | |
236 | |
237 Playlist *playlist_get_active(void); | |
238 | |
239 G_END_DECLS | |
240 | |
241 #endif |