Mercurial > audlegacy
annotate src/audacious/playlist.c @ 3408:aea3349e2c62 trunk
oops, missed an untranslated string in last.fm GUI
author | mf0102 <0102@gmx.at> |
---|---|
date | Thu, 30 Aug 2007 17:41:40 +0200 |
parents | ae30eb582a66 |
children | 0fcff78c0c2c 3b26640f9fd6 602ec8c40d0d |
rev | line source |
---|---|
2313 | 1 /* Audacious |
2 * Copyright (C) 2005-2007 Audacious team. | |
3 * | |
4 * BMP (C) GPL 2003 $top_src_dir/AUTHORS | |
5 * | |
6 * based on: | |
7 * | |
8 * XMMS - Cross-platform multimedia player | |
9 * Copyright (C) 1998-2003 Peter Alm, Mikael Alm, Olle Hallnas, | |
10 * Thomas Nilsson and 4Front Technologies | |
11 * Copyright (C) 1999-2003 Haavard Kvaalen | |
12 * | |
13 * This program is free software; you can redistribute it and/or modify | |
14 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3097
diff
changeset
|
15 * the Free Software Foundation; under version 3 of the License. |
2313 | 16 * |
17 * This program is distributed in the hope that it will be useful, | |
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 * GNU General Public License for more details. | |
21 * | |
22 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3097
diff
changeset
|
23 * 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
|
24 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
25 * 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
|
26 * Audacious or using our public API to be a derived work. |
2313 | 27 */ |
28 | |
29 #ifdef HAVE_CONFIG_H | |
30 # include "config.h" | |
31 #endif | |
32 | |
33 #include "playlist.h" | |
34 | |
2633
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
35 #include <mowgli.h> |
2313 | 36 #include <glib.h> |
37 #include <glib/gprintf.h> | |
38 #include <stdlib.h> | |
39 #include <string.h> | |
40 #include <time.h> | |
41 | |
42 #include <unistd.h> | |
43 #include <sys/types.h> | |
44 #include <sys/stat.h> | |
45 #include <sys/errno.h> | |
46 | |
47 #if defined(USE_REGEX_ONIGURUMA) | |
48 #include <onigposix.h> | |
49 #elif defined(USE_REGEX_PCRE) | |
50 #include <pcreposix.h> | |
51 #else | |
52 #include <regex.h> | |
53 #endif | |
54 | |
55 #include "input.h" | |
56 #include "main.h" | |
57 #include "ui_main.h" | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2408
diff
changeset
|
58 #include "util.h" |
2717 | 59 #include "configdb.h" |
2313 | 60 #include "vfs.h" |
61 #include "ui_equalizer.h" | |
62 #include "playback.h" | |
63 #include "playlist.h" | |
64 #include "playlist_container.h" | |
2499
15a1f5ee4d1c
[svn] - playlist_manager -> ui_playlist_manager, since it's a UI component.
nenolod
parents:
2493
diff
changeset
|
65 #include "ui_playlist_manager.h" |
2313 | 66 #include "ui_playlist.h" |
2373
ad1d7687814c
[svn] made strings.h for existing strings.c, cleanups
mf0102
parents:
2328
diff
changeset
|
67 #include "strings.h" |
2313 | 68 #include "ui_fileinfo.h" |
69 | |
70 #include "debug.h" | |
71 | |
2407
1dc1d36d0347
[svn] - add hooks: playback begin, playback end, playlist reached end
nenolod
parents:
2380
diff
changeset
|
72 #include "hook.h" |
1dc1d36d0347
[svn] - add hooks: playback begin, playback end, playlist reached end
nenolod
parents:
2380
diff
changeset
|
73 |
3159
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
74 #include "playlist_evmessages.h" |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
75 #include "playlist_evlisteners.h" |
3217 | 76 #include "ui_skinned_playlist.h" |
3159
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
77 |
2313 | 78 typedef gint (*PlaylistCompareFunc) (PlaylistEntry * a, PlaylistEntry * b); |
79 typedef void (*PlaylistSaveFunc) (FILE * file); | |
80 | |
81 /* If we manually change the song, p_p_b_j will show us where to go back to */ | |
82 PlaylistEntry *playlist_position_before_jump = NULL; | |
83 | |
84 static GList *playlists = NULL; | |
85 static GList *playlists_iter; | |
86 | |
87 /* If this is set to TRUE, we do not probe upon playlist add. | |
88 * | |
89 * Under Audacious 0.1.x, this was not a big deal because we used | |
90 * file extension introspection instead of looking for file format magic | |
91 * strings. | |
92 * | |
93 * Because we use file magic strings, we have to fstat a file being added | |
94 * to a playlist up to 1 * <number of input plugins installed> times. | |
95 * | |
96 * This can get really slow now that we're looking for files to add to a | |
97 * playlist. (Up to 5 minutes for 5000 songs, etcetera.) | |
98 * | |
99 * So, we obviously don't want to probe while opening a large playlist | |
100 * up. Hince the boolean below. | |
101 * | |
102 * January 7, 2006, William Pitcock <nenolod@nenolod.net> | |
103 */ | |
104 | |
105 G_LOCK_DEFINE(playlist_get_info_going); | |
106 | |
2328 | 107 //static gchar *playlist_current_name = NULL; |
2313 | 108 |
109 static gboolean playlist_get_info_scan_active = FALSE; | |
110 static gboolean playlist_get_info_going = FALSE; | |
111 static GThread *playlist_get_info_thread; | |
112 | |
113 static gint path_compare(const gchar * a, const gchar * b); | |
114 static gint playlist_compare_path(PlaylistEntry * a, PlaylistEntry * b); | |
115 static gint playlist_compare_filename(PlaylistEntry * a, PlaylistEntry * b); | |
116 static gint playlist_compare_title(PlaylistEntry * a, PlaylistEntry * b); | |
117 static gint playlist_compare_artist(PlaylistEntry * a, PlaylistEntry * b); | |
118 static time_t playlist_get_mtime(const gchar *filename); | |
119 static gint playlist_compare_date(PlaylistEntry * a, PlaylistEntry * b); | |
120 static gint playlist_compare_track(PlaylistEntry * a, PlaylistEntry * b); | |
121 static gint playlist_compare_playlist(PlaylistEntry * a, PlaylistEntry * b); | |
122 | |
123 static gint playlist_dupscmp_path(PlaylistEntry * a, PlaylistEntry * b); | |
124 static gint playlist_dupscmp_filename(PlaylistEntry * a, PlaylistEntry * b); | |
125 static gint playlist_dupscmp_title(PlaylistEntry * a, PlaylistEntry * b); | |
126 | |
127 static PlaylistCompareFunc playlist_compare_func_table[] = { | |
128 playlist_compare_path, | |
129 playlist_compare_filename, | |
130 playlist_compare_title, | |
131 playlist_compare_artist, | |
132 playlist_compare_date, | |
133 playlist_compare_track, | |
134 playlist_compare_playlist | |
135 }; | |
136 | |
137 static guint playlist_load_ins(Playlist * playlist, const gchar * filename, gint pos); | |
138 | |
139 static void playlist_generate_shuffle_list(Playlist *); | |
140 static void playlist_generate_shuffle_list_nolock(Playlist *); | |
141 | |
142 static void playlist_recalc_total_time_nolock(Playlist *); | |
143 static void playlist_recalc_total_time(Playlist *); | |
144 static gboolean playlist_entry_get_info(PlaylistEntry * entry); | |
145 | |
2633
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
146 static mowgli_heap_t *playlist_entry_heap = NULL; |
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
147 |
2313 | 148 /* *********************** playlist entry code ********************** */ |
149 | |
150 PlaylistEntry * | |
151 playlist_entry_new(const gchar * filename, | |
152 const gchar * title, | |
153 const gint length, | |
154 InputPlugin * dec) | |
155 { | |
156 PlaylistEntry *entry; | |
157 | |
2633
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
158 entry = mowgli_heap_alloc(playlist_entry_heap); |
2313 | 159 entry->filename = g_strdup(filename); |
160 entry->title = str_to_utf8(title); | |
161 entry->length = length; | |
162 entry->selected = FALSE; | |
163 entry->decoder = dec; | |
164 | |
165 /* only do this if we have a decoder, otherwise it just takes too long */ | |
166 if (entry->decoder) | |
167 playlist_entry_get_info(entry); | |
168 | |
169 return entry; | |
170 } | |
171 | |
172 void | |
173 playlist_entry_free(PlaylistEntry * entry) | |
174 { | |
175 if (!entry) | |
176 return; | |
177 | |
178 if (entry->tuple != NULL) { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
179 mowgli_object_unref(entry->tuple); |
2313 | 180 entry->tuple = NULL; |
181 } | |
182 | |
183 if (entry->filename != NULL) | |
184 g_free(entry->filename); | |
185 | |
186 if (entry->title != NULL) | |
187 g_free(entry->title); | |
188 | |
2633
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
189 mowgli_heap_free(playlist_entry_heap, entry); |
2313 | 190 } |
191 | |
192 static gboolean | |
193 playlist_entry_get_info(PlaylistEntry * entry) | |
194 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
195 Tuple *tuple = NULL; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
196 ProbeResult *pr = NULL; |
2313 | 197 time_t modtime; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
198 const gchar *formatter; |
2313 | 199 |
200 g_return_val_if_fail(entry != NULL, FALSE); | |
201 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
202 if (entry->tuple == NULL || tuple_get_int(entry->tuple, "mtime") > 0 || tuple_get_int(entry->tuple, "mtime") == -1) |
2636 | 203 modtime = playlist_get_mtime(entry->filename); |
2313 | 204 else |
2636 | 205 modtime = 0; /* URI -nenolod */ |
2313 | 206 |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
207 if (str_has_prefix_nocase(entry->filename, "http:") && |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
208 g_thread_self() != playlist_get_info_thread) |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
209 return FALSE; |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
210 |
2313 | 211 if (entry->decoder == NULL) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
212 { |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
213 pr = input_check_file(entry->filename, FALSE); |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
214 if (pr) |
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
215 entry->decoder = pr->ip; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
216 } |
2313 | 217 |
218 /* renew tuple if file mtime is newer than tuple mtime. */ | |
219 if(entry->tuple){ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
220 if(tuple_get_int(entry->tuple, "mtime") == modtime) |
2313 | 221 return TRUE; |
222 else { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
223 mowgli_object_unref(entry->tuple); |
2313 | 224 entry->tuple = NULL; |
225 } | |
226 } | |
227 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
228 if (pr != NULL && pr->tuple != NULL) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
229 tuple = pr->tuple; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
230 else if (entry->decoder != NULL && entry->decoder->get_song_tuple != NULL) |
2313 | 231 tuple = entry->decoder->get_song_tuple(entry->filename); |
232 | |
233 if (tuple == NULL) | |
234 return FALSE; | |
235 | |
236 /* attach mtime */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
237 tuple_associate_int(tuple, "mtime", modtime); |
2313 | 238 |
239 /* entry is still around */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
240 formatter = tuple_get_string(tuple, "formatter"); |
3349
01a241d35146
add tuple_formatter_make_title_string(). it is a wrapper function to tuple_formatter_process_construct() to make title string. it falls back to the file name if the formatted string is blank or unavailable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3348
diff
changeset
|
241 entry->title = tuple_formatter_make_title_string(tuple, formatter ? |
3334
ea806daf3ef0
rename xmms_get_gentitle_format() to get_gentitle_format().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3327
diff
changeset
|
242 formatter : get_gentitle_format()); |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
243 entry->length = tuple_get_int(tuple, "length"); |
2313 | 244 entry->tuple = tuple; |
245 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
246 g_free(pr); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
247 |
2313 | 248 return TRUE; |
249 } | |
250 | |
251 /* *********************** playlist selector code ************************* */ | |
252 | |
253 void | |
254 playlist_init(void) | |
255 { | |
256 Playlist *initial_pl; | |
257 | |
2633
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
258 /* create a heap with 1024 playlist entry nodes preallocated. --nenolod */ |
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
259 playlist_entry_heap = mowgli_heap_create(sizeof(PlaylistEntry), 1024, |
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
260 BH_NOW); |
c079e507869a
[svn] - use a managed heap for playlist entry node allocation.
nenolod
parents:
2614
diff
changeset
|
261 |
2313 | 262 /* FIXME: is this really necessary? REQUIRE_STATIC_LOCK(playlists); */ |
263 | |
264 initial_pl = playlist_new(); | |
265 | |
266 playlist_add_playlist(initial_pl); | |
3159
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
267 |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
268 playlist_evlistener_init(); |
2313 | 269 } |
270 | |
271 void | |
272 playlist_add_playlist(Playlist *playlist) | |
273 { | |
274 playlists = g_list_append(playlists, playlist); | |
275 | |
276 if (playlists_iter == NULL) | |
277 playlists_iter = playlists; | |
278 | |
279 playlist_manager_update(); | |
280 } | |
281 | |
282 void | |
283 playlist_remove_playlist(Playlist *playlist) | |
284 { | |
2820 | 285 /* users suppose playback will be stopped on removing playlist */ |
286 if (playback_get_playing()) { | |
287 ip_data.stop = TRUE; | |
288 playback_stop(); | |
289 ip_data.stop = FALSE; | |
290 mainwin_clear_song_info(); | |
291 } | |
292 | |
2313 | 293 /* trying to free the last playlist simply clears and resets it */ |
294 if (g_list_length(playlists) < 2) { | |
295 playlist_clear(playlist); | |
296 playlist_set_current_name(playlist, NULL); | |
297 return; | |
298 } | |
299 | |
300 if (playlist == playlist_get_active()) | |
301 playlist_select_next(); | |
302 | |
303 /* upon removal, a playlist should be cleared and freed */ | |
304 playlists = g_list_remove(playlists, playlist); | |
305 playlist_clear(playlist); | |
306 playlist_free(playlist); | |
307 | |
308 if (playlists_iter == NULL) | |
309 playlists_iter = playlists; | |
310 | |
311 playlist_manager_update(); | |
312 } | |
313 | |
314 GList * | |
315 playlist_get_playlists(void) | |
316 { | |
317 return playlists; | |
318 } | |
319 | |
320 void | |
321 playlist_select_next(void) | |
322 { | |
323 if (playlists_iter == NULL) | |
324 playlists_iter = playlists; | |
325 | |
326 playlists_iter = g_list_next(playlists_iter); | |
327 | |
328 if (playlists_iter == NULL) | |
329 playlists_iter = playlists; | |
330 | |
331 playlistwin_update_list(playlist_get_active()); | |
332 } | |
333 | |
334 void | |
335 playlist_select_prev(void) | |
336 { | |
337 if (playlists_iter == NULL) | |
338 playlists_iter = playlists; | |
339 | |
340 playlists_iter = g_list_previous(playlists_iter); | |
341 | |
342 if (playlists_iter == NULL) | |
343 playlists_iter = playlists; | |
344 | |
345 playlistwin_update_list(playlist_get_active()); | |
346 } | |
347 | |
348 void | |
349 playlist_select_playlist(Playlist *playlist) | |
350 { | |
351 playlists_iter = g_list_find(playlists, playlist); | |
352 | |
353 if (playlists_iter == NULL) | |
354 playlists_iter = playlists; | |
355 | |
356 playlistwin_update_list(playlist); | |
357 } | |
358 | |
359 /* *********************** playlist code ********************** */ | |
360 | |
361 const gchar * | |
362 playlist_get_current_name(Playlist *playlist) | |
363 { | |
364 return playlist->title; | |
365 } | |
366 | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
367 /* filename is real filename here. --yaz */ |
2313 | 368 gboolean |
369 playlist_set_current_name(Playlist *playlist, const gchar * filename) | |
370 { | |
371 if (playlist->title) | |
372 g_free(playlist->title); | |
373 | |
374 if (!filename) { | |
375 playlist->title = NULL; | |
376 return FALSE; | |
377 } | |
378 | |
2504
fcf730269639
[svn] - convert filename string to utf8 for playlist->title (closes bug #789)
giacomo
parents:
2499
diff
changeset
|
379 playlist->title = filename_to_utf8(filename); |
2313 | 380 return TRUE; |
381 } | |
382 | |
383 static GList * | |
384 find_playlist_position_list(Playlist *playlist) | |
385 { | |
386 REQUIRE_LOCK(playlist->mutex); | |
387 | |
388 if (!playlist->position) { | |
389 if (cfg.shuffle) | |
390 return playlist->shuffle; | |
391 else | |
392 return playlist->entries; | |
393 } | |
394 | |
395 if (cfg.shuffle) | |
396 return g_list_find(playlist->shuffle, playlist->position); | |
397 else | |
398 return g_list_find(playlist->entries, playlist->position); | |
399 } | |
400 | |
401 static void | |
402 play_queued(Playlist *playlist) | |
403 { | |
404 GList *tmp = playlist->queue; | |
405 | |
406 REQUIRE_LOCK( playlist->mutex ); | |
407 | |
408 playlist->position = playlist->queue->data; | |
409 playlist->queue = g_list_remove_link(playlist->queue, playlist->queue); | |
410 g_list_free_1(tmp); | |
411 } | |
412 | |
413 void | |
414 playlist_clear(Playlist *playlist) | |
415 { | |
416 if (!playlist) | |
417 return; | |
418 | |
419 PLAYLIST_LOCK( playlist->mutex ); | |
420 | |
421 g_list_foreach(playlist->entries, (GFunc) playlist_entry_free, NULL); | |
422 g_list_free(playlist->entries); | |
423 playlist->position = NULL; | |
424 playlist->entries = NULL; | |
2549
ef59b072a5d2
[svn] - update playlist->tail when an entry has been removed.
yaz
parents:
2548
diff
changeset
|
425 playlist->tail = NULL; |
2637
420ce282920d
[svn] - clear playlist attribute when playlist_clear() is called.
yaz
parents:
2636
diff
changeset
|
426 playlist->attribute = PLAYLIST_PLAIN; |
2313 | 427 |
428 PLAYLIST_UNLOCK( playlist->mutex ); | |
429 | |
430 playlist_generate_shuffle_list(playlist); | |
431 playlistwin_update_list(playlist); | |
432 playlist_recalc_total_time(playlist); | |
433 playlist_manager_update(); | |
434 } | |
435 | |
436 static void | |
437 playlist_delete_node(Playlist * playlist, GList * node, gboolean * set_info_text, | |
438 gboolean * restart_playing) | |
439 { | |
440 PlaylistEntry *entry; | |
441 GList *playing_song = NULL; | |
442 | |
443 REQUIRE_LOCK(playlist->mutex); | |
444 | |
445 /* We call g_list_find manually here because we don't want an item | |
446 * in the shuffle_list */ | |
447 | |
448 if (playlist->position) | |
449 playing_song = g_list_find(playlist->entries, playlist->position); | |
450 | |
451 entry = PLAYLIST_ENTRY(node->data); | |
452 | |
453 if (playing_song == node) { | |
454 *set_info_text = TRUE; | |
455 | |
456 if (playback_get_playing()) { | |
457 PLAYLIST_UNLOCK(playlist->mutex); | |
458 ip_data.stop = TRUE; | |
459 playback_stop(); | |
460 ip_data.stop = FALSE; | |
461 PLAYLIST_LOCK(playlist->mutex); | |
462 *restart_playing = TRUE; | |
463 } | |
464 | |
465 playing_song = find_playlist_position_list(playlist); | |
466 | |
467 if (g_list_next(playing_song)) | |
468 playlist->position = g_list_next(playing_song)->data; | |
469 else if (g_list_previous(playing_song)) | |
470 playlist->position = g_list_previous(playing_song)->data; | |
471 else | |
472 playlist->position = NULL; | |
473 | |
474 /* Make sure the entry did not disappear under us */ | |
475 if (g_list_index(playlist->entries, entry) == -1) | |
476 return; | |
477 | |
478 } | |
479 else if (g_list_position(playlist->entries, playing_song) > | |
480 g_list_position(playlist->entries, node)) { | |
481 *set_info_text = TRUE; | |
482 } | |
483 | |
484 playlist->shuffle = g_list_remove(playlist->shuffle, entry); | |
485 playlist->queue = g_list_remove(playlist->queue, entry); | |
486 playlist->entries = g_list_remove_link(playlist->entries, node); | |
2549
ef59b072a5d2
[svn] - update playlist->tail when an entry has been removed.
yaz
parents:
2548
diff
changeset
|
487 playlist->tail = g_list_last(playlist->entries); |
2313 | 488 playlist_entry_free(entry); |
489 g_list_free_1(node); | |
490 | |
491 playlist_recalc_total_time_nolock(playlist); | |
492 } | |
493 | |
494 void | |
495 playlist_delete_index(Playlist *playlist, guint pos) | |
496 { | |
497 gboolean restart_playing = FALSE, set_info_text = FALSE; | |
498 GList *node; | |
499 | |
500 if (!playlist) | |
501 return; | |
502 | |
503 PLAYLIST_LOCK(playlist->mutex); | |
504 | |
505 node = g_list_nth(playlist->entries, pos); | |
506 | |
507 if (!node) { | |
508 PLAYLIST_UNLOCK(playlist->mutex); | |
509 return; | |
510 } | |
511 | |
512 playlist_delete_node(playlist, node, &set_info_text, &restart_playing); | |
513 | |
514 PLAYLIST_UNLOCK(playlist->mutex); | |
515 | |
516 playlist_recalc_total_time(playlist); | |
517 | |
518 playlistwin_update_list(playlist); | |
519 if (restart_playing) { | |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
520 if (playlist->position) |
2313 | 521 playback_initiate(); |
522 else { | |
523 mainwin_clear_song_info(); | |
524 } | |
525 } | |
526 | |
527 playlist_manager_update(); | |
528 } | |
529 | |
530 void | |
531 playlist_delete_filenames(Playlist * playlist, GList * filenames) | |
532 { | |
533 GList *node, *fnode; | |
534 gboolean set_info_text = FALSE, restart_playing = FALSE; | |
535 | |
536 PLAYLIST_LOCK(playlist->mutex); | |
537 | |
538 for (fnode = filenames; fnode; fnode = g_list_next(fnode)) { | |
539 node = playlist->entries; | |
540 | |
541 while (node) { | |
542 GList *next = g_list_next(node); | |
543 PlaylistEntry *entry = node->data; | |
544 | |
545 if (!strcmp(entry->filename, fnode->data)) | |
546 playlist_delete_node(playlist, node, &set_info_text, &restart_playing); | |
547 | |
548 node = next; | |
549 } | |
550 } | |
551 | |
2792
790bb0954b93
[svn] - move playlist_recalc_total_time() out of the giant playlist lock in playlist_delete_filenames(). reported by dotzen, closes #908.
nenolod
parents:
2776
diff
changeset
|
552 PLAYLIST_UNLOCK(playlist->mutex); |
790bb0954b93
[svn] - move playlist_recalc_total_time() out of the giant playlist lock in playlist_delete_filenames(). reported by dotzen, closes #908.
nenolod
parents:
2776
diff
changeset
|
553 |
2313 | 554 playlist_recalc_total_time(playlist); |
555 playlistwin_update_list(playlist); | |
556 | |
557 if (restart_playing) { | |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
558 if (playlist->position) |
2313 | 559 playback_initiate(); |
560 else { | |
561 mainwin_clear_song_info(); | |
562 } | |
563 } | |
564 | |
565 playlist_manager_update(); | |
566 } | |
567 | |
568 void | |
569 playlist_delete(Playlist * playlist, gboolean crop) | |
570 { | |
571 gboolean restart_playing = FALSE, set_info_text = FALSE; | |
572 GList *node, *next_node; | |
573 PlaylistEntry *entry; | |
574 | |
575 g_return_if_fail(playlist != NULL); | |
576 | |
577 PLAYLIST_LOCK(playlist->mutex); | |
578 | |
579 node = playlist->entries; | |
580 | |
581 while (node) { | |
582 entry = PLAYLIST_ENTRY(node->data); | |
583 | |
584 next_node = g_list_next(node); | |
585 | |
586 if ((entry->selected && !crop) || (!entry->selected && crop)) { | |
587 playlist_delete_node(playlist, node, &set_info_text, &restart_playing); | |
588 } | |
589 | |
590 node = next_node; | |
591 } | |
592 | |
593 PLAYLIST_UNLOCK(playlist->mutex); | |
594 | |
595 playlist_recalc_total_time(playlist); | |
596 | |
597 if (restart_playing) { | |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
598 if (playlist->position) |
2313 | 599 playback_initiate(); |
600 else { | |
601 mainwin_clear_song_info(); | |
602 } | |
603 } | |
604 | |
605 playlistwin_update_list(playlist); | |
606 playlist_manager_update(); | |
607 } | |
608 | |
609 static void | |
610 __playlist_ins_with_info(Playlist * playlist, | |
2545
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
611 const gchar * filename, |
2313 | 612 gint pos, |
613 const gchar * title, | |
614 gint len, | |
2545
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
615 InputPlugin * dec) |
2313 | 616 { |
617 g_return_if_fail(filename != NULL); | |
618 | |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
619 PLAYLIST_LOCK( playlist->mutex ); |
2313 | 620 playlist->entries = g_list_insert(playlist->entries, |
621 playlist_entry_new(filename, title, len, dec), | |
622 pos); | |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
623 PLAYLIST_UNLOCK( playlist->mutex ); |
2313 | 624 |
625 g_mutex_lock(mutex_scan); | |
626 playlist_get_info_scan_active = TRUE; | |
627 g_mutex_unlock(mutex_scan); | |
628 g_cond_signal(cond_scan); | |
629 } | |
630 | |
631 static void | |
632 __playlist_ins_with_info_tuple(Playlist * playlist, | |
633 const gchar * filename, | |
634 gint pos, | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
635 Tuple *tuple, |
2313 | 636 InputPlugin * dec) |
637 { | |
638 PlaylistEntry *entry; | |
639 | |
640 g_return_if_fail(playlist != NULL); | |
641 g_return_if_fail(filename != NULL); | |
642 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
643 entry = playlist_entry_new(filename, tuple ? tuple_get_string(tuple, "title") : NULL, tuple ? tuple_get_int(tuple, "length") : -1, dec); |
2548
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
644 if(!playlist->tail) |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
645 playlist->tail = g_list_last(playlist->entries); |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
646 |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
647 PLAYLIST_LOCK( playlist->mutex ); |
2548
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
648 if(pos == -1) { // the common case |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
649 GList *element; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
650 element = g_list_alloc(); |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
651 element->data = entry; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
652 element->prev = playlist->tail; // NULL is allowed here. |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
653 element->next = NULL; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
654 |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
655 if(!playlist->entries) { // this is the first element |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
656 playlist->entries = element; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
657 playlist->tail = element; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
658 } |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
659 else { // the rests |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
660 g_return_if_fail(playlist->tail != NULL); |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
661 playlist->tail->next = element; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
662 playlist->tail = element; |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
663 } |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
664 } |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
665 else { |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
666 playlist->entries = g_list_insert(playlist->entries, entry, pos); |
68d1e9761cc5
[svn] - highly experimental code to speed up loading huge playlist. let me know if it breaks something.
yaz
parents:
2545
diff
changeset
|
667 } |
2313 | 668 |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
669 PLAYLIST_UNLOCK( playlist->mutex ); |
2313 | 670 if (tuple != NULL) { |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
671 const gchar *formatter = tuple_get_string(tuple, "formatter"); |
3349
01a241d35146
add tuple_formatter_make_title_string(). it is a wrapper function to tuple_formatter_process_construct() to make title string. it falls back to the file name if the formatted string is blank or unavailable.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3348
diff
changeset
|
672 entry->title = tuple_formatter_make_title_string(tuple, formatter ? |
3334
ea806daf3ef0
rename xmms_get_gentitle_format() to get_gentitle_format().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3327
diff
changeset
|
673 formatter : get_gentitle_format()); |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
674 entry->length = tuple_get_int(tuple, "length"); |
2313 | 675 entry->tuple = tuple; |
676 } | |
677 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
678 if(tuple != NULL && tuple_get_int(tuple, "mtime") == -1) { // kick the scanner thread only if mtime = -1 (uninitialized). |
2545
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
679 g_mutex_lock(mutex_scan); |
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
680 playlist_get_info_scan_active = TRUE; |
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
681 g_mutex_unlock(mutex_scan); |
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
682 g_cond_signal(cond_scan); |
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
683 } |
2313 | 684 } |
685 | |
686 gboolean | |
687 playlist_ins(Playlist * playlist, const gchar * filename, gint pos) | |
688 { | |
689 gchar buf[64], *p; | |
690 gint r; | |
691 VFSFile *file; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
692 ProbeResult *pr = NULL; |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
693 InputPlugin *dec = NULL; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
694 Tuple *tuple = NULL; |
2313 | 695 |
696 g_return_val_if_fail(playlist != NULL, FALSE); | |
697 g_return_val_if_fail(filename != NULL, FALSE); | |
698 | |
699 if (is_playlist_name(filename)) { | |
700 playlist->loading_playlist = TRUE; | |
701 playlist_load_ins(playlist, filename, pos); | |
702 playlist->loading_playlist = FALSE; | |
703 return TRUE; | |
704 } | |
705 | |
706 if (playlist->loading_playlist == TRUE || cfg.playlist_detect == TRUE) | |
707 dec = NULL; | |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
708 else if (!str_has_prefix_nocase(filename, "http://") && |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
709 !str_has_prefix_nocase(filename, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
710 { |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
711 pr = input_check_file(filename, TRUE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
712 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
713 if (pr) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
714 { |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
715 dec = pr->ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
716 tuple = pr->tuple; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
717 } |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
718 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
719 g_free(pr); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
720 } |
2313 | 721 |
2701
906caaf4737d
[svn] - fix cuesheet bug in a better way (e.g. unbreak http:// streams)
nenolod
parents:
2690
diff
changeset
|
722 if (cfg.playlist_detect == TRUE || playlist->loading_playlist == TRUE || (playlist->loading_playlist == FALSE && dec != NULL) || (playlist->loading_playlist == FALSE && !is_playlist_name(filename) && str_has_prefix_nocase(filename, "http"))) |
2313 | 723 { |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
724 __playlist_ins_with_info_tuple(playlist, filename, pos, tuple, dec); |
2545
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
725 playlist_generate_shuffle_list(playlist); |
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
726 playlistwin_update_list(playlist); |
2313 | 727 return TRUE; |
728 } | |
729 | |
730 /* Some files (typically produced by some cgi-scripts) don't have | |
731 * the correct extension. Try to recognize these files by looking | |
732 * at their content. We only check for http entries since it does | |
733 * not make sense to have file entries in a playlist fetched from | |
734 * the net. */ | |
735 | |
736 /* Some strange people put fifo's with the .mp3 extension, so we | |
737 * need to make sure it's a real file (otherwise fread() may block | |
738 * and stall the entire program) */ | |
739 | |
740 /* FIXME: bah, FIFOs actually pass this regular file test */ | |
741 if (!vfs_file_test(filename, G_FILE_TEST_IS_REGULAR)) | |
742 return FALSE; | |
743 | |
744 if (!(file = vfs_fopen(filename, "rb"))) | |
745 return FALSE; | |
746 | |
747 r = vfs_fread(buf, 1, sizeof(buf), file); | |
748 vfs_fclose(file); | |
749 | |
750 for (p = buf; r-- > 0 && (*p == '\r' || *p == '\n'); p++); | |
751 | |
752 if (r > 5 && str_has_prefix_nocase(p, "http:")) { | |
753 playlist_load_ins(playlist, filename, pos); | |
754 return TRUE; | |
755 } | |
756 | |
2493
b7f48f00a342
[svn] - patch from Mark Glines to ad https:// URI support to playlists.
nenolod
parents:
2489
diff
changeset
|
757 if (r > 6 && str_has_prefix_nocase(p, "https:")) { |
b7f48f00a342
[svn] - patch from Mark Glines to ad https:// URI support to playlists.
nenolod
parents:
2489
diff
changeset
|
758 playlist_load_ins(playlist, filename, pos); |
b7f48f00a342
[svn] - patch from Mark Glines to ad https:// URI support to playlists.
nenolod
parents:
2489
diff
changeset
|
759 return TRUE; |
b7f48f00a342
[svn] - patch from Mark Glines to ad https:// URI support to playlists.
nenolod
parents:
2489
diff
changeset
|
760 } |
b7f48f00a342
[svn] - patch from Mark Glines to ad https:// URI support to playlists.
nenolod
parents:
2489
diff
changeset
|
761 |
2313 | 762 return FALSE; |
763 } | |
764 | |
765 /* FIXME: The next few functions are specific to Unix | |
766 * filesystems. Either abstract it away, or don't even bother checking | |
767 * at such low level */ | |
768 | |
769 typedef struct { | |
770 dev_t dev; | |
771 ino_t ino; | |
772 } DeviceInode; | |
773 | |
774 static DeviceInode * | |
775 devino_new(dev_t device, | |
776 ino_t inode) | |
777 { | |
778 DeviceInode *devino = g_new0(DeviceInode, 1); | |
779 | |
780 if (devino) | |
781 { | |
782 devino->dev = device; | |
783 devino->ino = inode; | |
784 } | |
785 | |
786 return devino; | |
787 } | |
788 | |
789 static guint | |
790 devino_hash(gconstpointer key) | |
791 { | |
792 const DeviceInode *d = key; | |
793 return d->ino; | |
794 } | |
795 | |
796 static gint | |
797 devino_compare(gconstpointer a, | |
798 gconstpointer b) | |
799 { | |
800 const DeviceInode *da = a, *db = b; | |
801 return (da->dev == db->dev && da->ino == db->ino); | |
802 } | |
803 | |
804 static gboolean | |
805 devino_destroy(gpointer key, | |
806 gpointer value, | |
807 gpointer data) | |
808 { | |
809 g_free(key); | |
810 return TRUE; | |
811 } | |
812 | |
813 static gboolean | |
814 file_is_hidden(const gchar * filename) | |
815 { | |
816 g_return_val_if_fail(filename != NULL, FALSE); | |
2570 | 817 return (g_basename(filename)[0] == '.'); |
2313 | 818 } |
819 | |
820 static GList * | |
821 playlist_dir_find_files(const gchar * path, | |
822 gboolean background, | |
823 GHashTable * htab) | |
824 { | |
825 GDir *dir; | |
826 GList *list = NULL, *ilist; | |
827 const gchar *dir_entry; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
828 ProbeResult *pr = NULL; |
2313 | 829 |
830 struct stat statbuf; | |
831 DeviceInode *devino; | |
832 | |
3079
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
833 if (!path) |
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
834 return NULL; |
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
835 |
2993
83727fbfec54
Use vfs_file_test() where appropriate.
William Pitcock <nenolod@atheme-project.org>
parents:
2978
diff
changeset
|
836 if (!vfs_file_test(path, G_FILE_TEST_IS_DIR)) |
2313 | 837 return NULL; |
838 | |
839 stat(path, &statbuf); | |
840 devino = devino_new(statbuf.st_dev, statbuf.st_ino); | |
841 | |
842 if (g_hash_table_lookup(htab, devino)) { | |
843 g_free(devino); | |
844 return NULL; | |
845 } | |
846 | |
847 g_hash_table_insert(htab, devino, GINT_TO_POINTER(1)); | |
848 | |
2994
750c530b1bf5
playlist_dir_find_files(): Return list of URIs.
William Pitcock <nenolod@atheme-project.org>
parents:
2993
diff
changeset
|
849 /* XXX: what the hell is this for? --nenolod */ |
2313 | 850 if ((ilist = input_scan_dir(path))) { |
851 GList *node; | |
852 for (node = ilist; node; node = g_list_next(node)) { | |
853 gchar *name = g_build_filename(path, node->data, NULL); | |
854 list = g_list_prepend(list, name); | |
855 g_free(node->data); | |
856 } | |
857 g_list_free(ilist); | |
858 return list; | |
859 } | |
860 | |
3079
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
861 /* g_dir_open does not handle URI, so path should come here not-urified. --giacomo */ |
2313 | 862 if (!(dir = g_dir_open(path, 0, NULL))) |
863 return NULL; | |
864 | |
865 while ((dir_entry = g_dir_read_name(dir))) { | |
2994
750c530b1bf5
playlist_dir_find_files(): Return list of URIs.
William Pitcock <nenolod@atheme-project.org>
parents:
2993
diff
changeset
|
866 gchar *filename, *tmp; |
2313 | 867 |
868 if (file_is_hidden(dir_entry)) | |
869 continue; | |
870 | |
2994
750c530b1bf5
playlist_dir_find_files(): Return list of URIs.
William Pitcock <nenolod@atheme-project.org>
parents:
2993
diff
changeset
|
871 tmp = g_build_filename(path, dir_entry, NULL); |
750c530b1bf5
playlist_dir_find_files(): Return list of URIs.
William Pitcock <nenolod@atheme-project.org>
parents:
2993
diff
changeset
|
872 filename = g_filename_to_uri(tmp, NULL, NULL); |
750c530b1bf5
playlist_dir_find_files(): Return list of URIs.
William Pitcock <nenolod@atheme-project.org>
parents:
2993
diff
changeset
|
873 g_free(tmp); |
2313 | 874 |
2993
83727fbfec54
Use vfs_file_test() where appropriate.
William Pitcock <nenolod@atheme-project.org>
parents:
2978
diff
changeset
|
875 if (vfs_file_test(filename, G_FILE_TEST_IS_DIR)) { |
2313 | 876 GList *sub; |
3079
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
877 gchar *dirfilename = g_filename_from_uri(filename, NULL, NULL); |
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
878 sub = playlist_dir_find_files(dirfilename, background, htab); |
72766f2e8713
recursive directory scan for add file dialog works again
Giacomo Lozito <james@develia.org>
parents:
2994
diff
changeset
|
879 g_free(dirfilename); |
2313 | 880 g_free(filename); |
881 list = g_list_concat(list, sub); | |
882 } | |
883 else if (cfg.playlist_detect == TRUE) | |
884 list = g_list_prepend(list, filename); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
885 else if ((pr = input_check_file(filename, TRUE)) != NULL) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
886 { |
2313 | 887 list = g_list_prepend(list, filename); |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
888 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
889 g_free(pr); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
890 pr = NULL; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
891 } |
2313 | 892 else |
893 g_free(filename); | |
894 | |
895 while (background && gtk_events_pending()) | |
896 gtk_main_iteration(); | |
897 } | |
898 g_dir_close(dir); | |
899 | |
900 return list; | |
901 } | |
902 | |
903 gboolean | |
904 playlist_add(Playlist * playlist, const gchar * filename) | |
905 { | |
906 return playlist_ins(playlist, filename, -1); | |
907 } | |
908 | |
909 guint | |
910 playlist_add_dir(Playlist * playlist, const gchar * directory) | |
911 { | |
912 return playlist_ins_dir(playlist, directory, -1, TRUE); | |
913 } | |
914 | |
915 guint | |
916 playlist_add_url(Playlist * playlist, const gchar * url) | |
917 { | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
918 guint entries; |
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
919 entries = playlist_ins_url(playlist, url, -1); |
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
920 // printf("playlist_add_url: entries = %d\n", entries); |
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
921 return entries; |
2313 | 922 } |
923 | |
924 guint | |
925 playlist_ins_dir(Playlist * playlist, const gchar * path, | |
926 gint pos, | |
927 gboolean background) | |
928 { | |
929 guint entries = 0; | |
930 GList *list, *node; | |
931 GHashTable *htab; | |
2978
f4971c7d6384
Remove inlined urldecoding functions and use g_filename_from_uri() instead where appropriate.
William Pitcock <nenolod@atheme-project.org>
parents:
2976
diff
changeset
|
932 gchar *path2 = g_filename_from_uri(path, NULL, NULL); |
2313 | 933 |
2580
48288757d7c7
[svn] - fix a regression introduced by the DnD fix.
nenolod
parents:
2579
diff
changeset
|
934 if (path2 == NULL) |
48288757d7c7
[svn] - fix a regression introduced by the DnD fix.
nenolod
parents:
2579
diff
changeset
|
935 path2 = g_strdup(path); |
48288757d7c7
[svn] - fix a regression introduced by the DnD fix.
nenolod
parents:
2579
diff
changeset
|
936 |
2313 | 937 htab = g_hash_table_new(devino_hash, devino_compare); |
938 | |
2579 | 939 list = playlist_dir_find_files(path2, background, htab); |
2313 | 940 list = g_list_sort(list, (GCompareFunc) path_compare); |
941 | |
942 g_hash_table_foreach_remove(htab, devino_destroy, NULL); | |
943 | |
944 for (node = list; node; node = g_list_next(node)) { | |
3129
f416657ee9b7
Call playlist_ins() instead of __playlist_ins().
William Pitcock <nenolod@atheme-project.org>
parents:
3128
diff
changeset
|
945 playlist_ins(playlist, node->data, pos); |
2313 | 946 g_free(node->data); |
947 entries++; | |
948 if (pos >= 0) | |
949 pos++; | |
950 } | |
951 | |
952 g_list_free(list); | |
2579 | 953 g_free(path2); |
2313 | 954 |
955 playlist_recalc_total_time(playlist); | |
956 playlist_generate_shuffle_list(playlist); | |
957 playlistwin_update_list(playlist); | |
958 playlist_manager_update(); | |
959 return entries; | |
960 } | |
961 | |
962 guint | |
963 playlist_ins_url(Playlist * playlist, const gchar * string, | |
964 gint pos) | |
965 { | |
966 gchar *tmp; | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
967 gint entries = 0; |
2313 | 968 gchar *decoded = NULL; |
969 | |
970 g_return_val_if_fail(playlist != NULL, 0); | |
971 g_return_val_if_fail(string != NULL, 0); | |
972 | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
973 // playlistwin_update_list(playlist); // is this necessary? --yaz |
2313 | 974 |
975 while (*string) { | |
976 GList *node; | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
977 guint i = 0; |
2313 | 978 tmp = strchr(string, '\n'); |
979 if (tmp) { | |
980 if (*(tmp - 1) == '\r') | |
981 *(tmp - 1) = '\0'; | |
982 *tmp = '\0'; | |
983 } | |
984 | |
985 decoded = g_strdup(string); | |
986 | |
2575 | 987 if (vfs_file_test(decoded, G_FILE_TEST_IS_DIR)) { |
2313 | 988 i = playlist_ins_dir(playlist, decoded, pos, FALSE); |
989 } | |
990 else { | |
991 if (is_playlist_name(decoded)) { | |
992 i = playlist_load_ins(playlist, decoded, pos); | |
993 } | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
994 else if (playlist_ins(playlist, decoded, pos)) { |
2313 | 995 i = 1; |
996 } | |
997 } | |
998 | |
999 g_free(decoded); | |
1000 | |
1001 PLAYLIST_LOCK(playlist->mutex); | |
1002 node = g_list_nth(playlist->entries, pos); | |
1003 PLAYLIST_UNLOCK(playlist->mutex); | |
1004 | |
1005 entries += i; | |
1006 | |
1007 if (pos >= 0) | |
1008 pos += i; | |
1009 if (!tmp) | |
1010 break; | |
1011 | |
1012 string = tmp + 1; | |
1013 } | |
1014 | |
1015 playlist_recalc_total_time(playlist); | |
1016 playlist_generate_shuffle_list(playlist); | |
1017 playlistwin_update_list(playlist); | |
1018 | |
1019 playlist_manager_update(); | |
1020 | |
1021 return entries; | |
1022 } | |
1023 | |
1024 void | |
1025 playlist_set_info_old_abi(const gchar * title, gint length, gint rate, | |
1026 gint freq, gint nch) | |
1027 { | |
1028 Playlist *playlist = playlist_get_active(); | |
3159
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1029 PlaylistEventInfoChange *msg; |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3159
diff
changeset
|
1030 gchar *text; |
2313 | 1031 |
3197
5dd8bc77a590
now "hide seekbar on streaming" uses message passing.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3165
diff
changeset
|
1032 if(length == -1) { |
5dd8bc77a590
now "hide seekbar on streaming" uses message passing.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3165
diff
changeset
|
1033 event_queue("hide seekbar", (gpointer)0xdeadbeef); // event_queue hates NULL --yaz |
5dd8bc77a590
now "hide seekbar on streaming" uses message passing.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3165
diff
changeset
|
1034 } |
5dd8bc77a590
now "hide seekbar on streaming" uses message passing.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3165
diff
changeset
|
1035 |
2313 | 1036 g_return_if_fail(playlist != NULL); |
1037 | |
1038 if (playlist->position) { | |
1039 g_free(playlist->position->title); | |
1040 playlist->position->title = g_strdup(title); | |
1041 playlist->position->length = length; | |
2488
c5075a79f1aa
[svn] make input->set_info overwrite tuple->track_name. it allows input
yaz
parents:
2480
diff
changeset
|
1042 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1043 // overwrite tuple::title, mainly for streaming. it may incur side effects. --yaz |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1044 if(playlist->position->tuple && tuple_get_int(playlist->position->tuple, "length") == -1){ |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1045 tuple_disassociate(playlist->position->tuple, "title"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1046 tuple_associate_string(playlist->position->tuple, "title", title); |
2488
c5075a79f1aa
[svn] make input->set_info overwrite tuple->track_name. it allows input
yaz
parents:
2480
diff
changeset
|
1047 } |
2313 | 1048 } |
1049 | |
1050 playlist_recalc_total_time(playlist); | |
1051 | |
3159
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1052 /* broadcast a PlaylistEventInfoChange message. */ |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1053 msg = g_new0(PlaylistEventInfoChange, 1); |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1054 msg->bitrate = rate; |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1055 msg->samplerate = freq; |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1056 msg->channels = nch; |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1057 |
a2d552ea48f0
Use message passing to make sure the UI is updated in the main thread.
William Pitcock <nenolod@atheme-project.org>
parents:
3132
diff
changeset
|
1058 event_queue("playlist info change", msg); |
2460 | 1059 |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3159
diff
changeset
|
1060 text = playlist_get_info_text(playlist); |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3159
diff
changeset
|
1061 event_queue("title change", text); |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3159
diff
changeset
|
1062 |
2460 | 1063 if ( playlist->position ) |
1064 hook_call( "playlist set info" , playlist->position ); | |
2313 | 1065 } |
1066 | |
1067 void | |
1068 playlist_set_info(Playlist * playlist, const gchar * title, gint length, gint rate, | |
1069 gint freq, gint nch) | |
1070 { | |
1071 g_return_if_fail(playlist != NULL); | |
1072 | |
1073 if (playlist->position) { | |
1074 g_free(playlist->position->title); | |
1075 playlist->position->title = g_strdup(title); | |
1076 playlist->position->length = length; | |
1077 } | |
1078 | |
1079 playlist_recalc_total_time(playlist); | |
1080 | |
1081 mainwin_set_song_info(rate, freq, nch); | |
2460 | 1082 |
1083 if ( playlist->position ) | |
1084 hook_call( "playlist set info" , playlist->position ); | |
2313 | 1085 } |
1086 | |
1087 void | |
1088 playlist_check_pos_current(Playlist *playlist) | |
1089 { | |
1090 gint pos, row, bottom; | |
1091 | |
1092 if (!playlist) | |
1093 return; | |
1094 | |
1095 PLAYLIST_LOCK(playlist->mutex); | |
1096 if (!playlist->position || !playlistwin_list) { | |
1097 PLAYLIST_UNLOCK(playlist->mutex); | |
1098 return; | |
1099 } | |
1100 | |
1101 pos = g_list_index(playlist->entries, playlist->position); | |
1102 | |
1103 if (playlistwin_item_visible(pos)) { | |
1104 PLAYLIST_UNLOCK(playlist->mutex); | |
1105 return; | |
1106 } | |
1107 | |
2671
e9b379528fbc
[svn] - playlist_get_length_nolock() -> playlist_get_length(), no need for
nenolod
parents:
2670
diff
changeset
|
1108 bottom = MAX(0, playlist_get_length(playlist) - |
3217 | 1109 UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible); |
1110 row = CLAMP(pos - UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible / 2, 0, bottom); | |
2313 | 1111 PLAYLIST_UNLOCK(playlist->mutex); |
1112 playlistwin_set_toprow(row); | |
1113 g_cond_signal(cond_scan); | |
1114 } | |
1115 | |
1116 void | |
1117 playlist_next(Playlist *playlist) | |
1118 { | |
1119 GList *plist_pos_list; | |
1120 gboolean restart_playing = FALSE; | |
2480
bb2f191895ce
[svn] - fixed crash when skipping to next song with an empty playlist
marvin
parents:
2460
diff
changeset
|
1121 if (!playlist_get_length(playlist)) |
2313 | 1122 return; |
1123 | |
1124 PLAYLIST_LOCK(playlist->mutex); | |
1125 | |
1126 if ((playlist_position_before_jump != NULL) && playlist->queue == NULL) | |
1127 { | |
1128 playlist->position = playlist_position_before_jump; | |
1129 playlist_position_before_jump = NULL; | |
1130 } | |
1131 | |
1132 plist_pos_list = find_playlist_position_list(playlist); | |
1133 | |
1134 if (!cfg.repeat && !g_list_next(plist_pos_list) && playlist->queue == NULL) { | |
1135 PLAYLIST_UNLOCK(playlist->mutex); | |
1136 return; | |
1137 } | |
1138 | |
1139 if (playback_get_playing()) { | |
1140 /* We need to stop before changing playlist_position */ | |
1141 PLAYLIST_UNLOCK(playlist->mutex); | |
1142 ip_data.stop = TRUE; | |
1143 playback_stop(); | |
1144 ip_data.stop = FALSE; | |
1145 PLAYLIST_LOCK(playlist->mutex); | |
1146 restart_playing = TRUE; | |
1147 } | |
1148 | |
1149 plist_pos_list = find_playlist_position_list(playlist); | |
1150 if (playlist->queue != NULL) | |
1151 play_queued(playlist); | |
1152 else if (g_list_next(plist_pos_list)) | |
1153 playlist->position = g_list_next(plist_pos_list)->data; | |
1154 else if (cfg.repeat) { | |
1155 playlist->position = NULL; | |
1156 playlist_generate_shuffle_list_nolock(playlist); | |
1157 if (cfg.shuffle) | |
1158 playlist->position = playlist->shuffle->data; | |
1159 else | |
1160 playlist->position = playlist->entries->data; | |
1161 } | |
1162 PLAYLIST_UNLOCK(playlist->mutex); | |
1163 playlist_check_pos_current(playlist); | |
1164 | |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
1165 if (restart_playing) |
2313 | 1166 playback_initiate(); |
3246
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3217
diff
changeset
|
1167 |
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3217
diff
changeset
|
1168 playlistwin_update_list(playlist); |
2313 | 1169 } |
1170 | |
1171 void | |
1172 playlist_prev(Playlist *playlist) | |
1173 { | |
1174 GList *plist_pos_list; | |
1175 gboolean restart_playing = FALSE; | |
1176 | |
2480
bb2f191895ce
[svn] - fixed crash when skipping to next song with an empty playlist
marvin
parents:
2460
diff
changeset
|
1177 if (!playlist_get_length(playlist)) |
2313 | 1178 return; |
1179 | |
1180 PLAYLIST_LOCK(playlist->mutex); | |
1181 | |
1182 if ((playlist_position_before_jump != NULL) && playlist->queue == NULL) | |
1183 { | |
1184 playlist->position = playlist_position_before_jump; | |
1185 playlist_position_before_jump = NULL; | |
1186 } | |
1187 | |
1188 plist_pos_list = find_playlist_position_list(playlist); | |
1189 | |
1190 if (!cfg.repeat && !g_list_previous(plist_pos_list)) { | |
1191 PLAYLIST_UNLOCK(playlist->mutex); | |
1192 return; | |
1193 } | |
1194 | |
1195 if (playback_get_playing()) { | |
1196 /* We need to stop before changing playlist_position */ | |
1197 PLAYLIST_UNLOCK(playlist->mutex); | |
1198 ip_data.stop = TRUE; | |
1199 playback_stop(); | |
1200 ip_data.stop = FALSE; | |
1201 PLAYLIST_LOCK(playlist->mutex); | |
1202 restart_playing = TRUE; | |
1203 } | |
1204 | |
1205 plist_pos_list = find_playlist_position_list(playlist); | |
1206 if (g_list_previous(plist_pos_list)) { | |
1207 playlist->position = g_list_previous(plist_pos_list)->data; | |
1208 } | |
1209 else if (cfg.repeat) { | |
1210 GList *node; | |
1211 playlist->position = NULL; | |
1212 playlist_generate_shuffle_list_nolock(playlist); | |
1213 if (cfg.shuffle) | |
1214 node = g_list_last(playlist->shuffle); | |
1215 else | |
1216 node = g_list_last(playlist->entries); | |
1217 if (node) | |
1218 playlist->position = node->data; | |
1219 } | |
1220 | |
1221 PLAYLIST_UNLOCK(playlist->mutex); | |
1222 | |
1223 playlist_check_pos_current(playlist); | |
1224 | |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
1225 if (restart_playing) |
2313 | 1226 playback_initiate(); |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
1227 else |
2313 | 1228 playlistwin_update_list(playlist); |
1229 } | |
1230 | |
1231 void | |
1232 playlist_queue(Playlist *playlist) | |
1233 { | |
1234 GList *list = playlist_get_selected(playlist); | |
1235 GList *it = list; | |
1236 | |
1237 PLAYLIST_LOCK(playlist->mutex); | |
1238 | |
1239 if ((cfg.shuffle) && (playlist_position_before_jump == NULL)) | |
1240 { | |
1241 /* Shuffling and this is our first manual jump. */ | |
1242 playlist_position_before_jump = playlist->position; | |
1243 } | |
1244 | |
1245 while (it) { | |
1246 GList *next = g_list_next(it); | |
1247 GList *tmp; | |
1248 | |
1249 /* XXX: WTF? --nenolod */ | |
1250 it->data = g_list_nth_data(playlist->entries, GPOINTER_TO_INT(it->data)); | |
1251 if ((tmp = g_list_find(playlist->queue, it->data))) { | |
1252 playlist->queue = g_list_remove_link(playlist->queue, tmp); | |
1253 g_list_free_1(tmp); | |
1254 list = g_list_remove_link(list, it); | |
1255 g_list_free_1(it); | |
1256 } | |
1257 | |
1258 it = next; | |
1259 } | |
1260 | |
1261 playlist->queue = g_list_concat(playlist->queue, list); | |
1262 | |
1263 PLAYLIST_UNLOCK(playlist->mutex); | |
1264 | |
1265 playlist_recalc_total_time(playlist); | |
1266 playlistwin_update_list(playlist); | |
1267 } | |
1268 | |
1269 void | |
1270 playlist_queue_position(Playlist *playlist, guint pos) | |
1271 { | |
1272 GList *tmp; | |
1273 PlaylistEntry *entry; | |
1274 | |
1275 PLAYLIST_LOCK(playlist->mutex); | |
1276 | |
1277 if ((cfg.shuffle) && (playlist_position_before_jump == NULL)) | |
1278 { | |
1279 /* Shuffling and this is our first manual jump. */ | |
1280 playlist_position_before_jump = playlist->position; | |
1281 } | |
1282 | |
1283 entry = g_list_nth_data(playlist->entries, pos); | |
1284 if ((tmp = g_list_find(playlist->queue, entry))) { | |
1285 playlist->queue = g_list_remove_link(playlist->queue, tmp); | |
1286 g_list_free_1(tmp); | |
1287 } | |
1288 else | |
1289 playlist->queue = g_list_append(playlist->queue, entry); | |
1290 PLAYLIST_UNLOCK(playlist->mutex); | |
1291 | |
1292 playlist_recalc_total_time(playlist); | |
1293 playlistwin_update_list(playlist); | |
1294 } | |
1295 | |
1296 gboolean | |
1297 playlist_is_position_queued(Playlist *playlist, guint pos) | |
1298 { | |
1299 PlaylistEntry *entry; | |
1300 GList *tmp; | |
1301 | |
1302 PLAYLIST_LOCK(playlist->mutex); | |
1303 entry = g_list_nth_data(playlist->entries, pos); | |
1304 tmp = g_list_find(playlist->queue, entry); | |
1305 PLAYLIST_UNLOCK(playlist->mutex); | |
1306 | |
1307 return tmp != NULL; | |
1308 } | |
1309 | |
1310 gint | |
1311 playlist_get_queue_position_number(Playlist *playlist, guint pos) | |
1312 { | |
1313 PlaylistEntry *entry; | |
1314 gint tmp; | |
1315 | |
1316 PLAYLIST_LOCK(playlist->mutex); | |
1317 entry = g_list_nth_data(playlist->entries, pos); | |
1318 tmp = g_list_index(playlist->queue, entry); | |
1319 PLAYLIST_UNLOCK(playlist->mutex); | |
1320 | |
1321 return tmp; | |
1322 } | |
1323 | |
1324 gint | |
1325 playlist_get_queue_qposition_number(Playlist *playlist, guint pos) | |
1326 { | |
1327 PlaylistEntry *entry; | |
1328 gint tmp; | |
1329 | |
1330 PLAYLIST_LOCK(playlist->mutex); | |
1331 entry = g_list_nth_data(playlist->queue, pos); | |
1332 tmp = g_list_index(playlist->entries, entry); | |
1333 PLAYLIST_UNLOCK(playlist->mutex); | |
1334 | |
1335 return tmp; | |
1336 } | |
1337 | |
1338 void | |
1339 playlist_clear_queue(Playlist *playlist) | |
1340 { | |
1341 PLAYLIST_LOCK(playlist->mutex); | |
1342 g_list_free(playlist->queue); | |
1343 playlist->queue = NULL; | |
1344 PLAYLIST_UNLOCK(playlist->mutex); | |
1345 | |
1346 playlist_recalc_total_time(playlist); | |
1347 playlistwin_update_list(playlist); | |
1348 } | |
1349 | |
1350 void | |
1351 playlist_queue_remove(Playlist *playlist, guint pos) | |
1352 { | |
1353 void *entry; | |
1354 | |
1355 PLAYLIST_LOCK(playlist->mutex); | |
1356 entry = g_list_nth_data(playlist->entries, pos); | |
1357 playlist->queue = g_list_remove(playlist->queue, entry); | |
1358 PLAYLIST_UNLOCK(playlist->mutex); | |
1359 | |
1360 playlistwin_update_list(playlist); | |
1361 } | |
1362 | |
1363 gint | |
1364 playlist_get_queue_position(Playlist *playlist, PlaylistEntry * entry) | |
1365 { | |
1366 return g_list_index(playlist->queue, entry); | |
1367 } | |
1368 | |
1369 void | |
1370 playlist_set_position(Playlist *playlist, guint pos) | |
1371 { | |
1372 GList *node; | |
1373 gboolean restart_playing = FALSE; | |
1374 | |
1375 if (!playlist) | |
1376 return; | |
1377 | |
1378 PLAYLIST_LOCK(playlist->mutex); | |
1379 | |
1380 node = g_list_nth(playlist->entries, pos); | |
1381 if (!node) { | |
1382 PLAYLIST_UNLOCK(playlist->mutex); | |
1383 return; | |
1384 } | |
1385 | |
1386 if (playback_get_playing()) { | |
1387 /* We need to stop before changing playlist_position */ | |
1388 PLAYLIST_UNLOCK(playlist->mutex); | |
1389 ip_data.stop = TRUE; | |
1390 playback_stop(); | |
1391 ip_data.stop = FALSE; | |
1392 PLAYLIST_LOCK(playlist->mutex); | |
1393 restart_playing = TRUE; | |
1394 } | |
1395 | |
1396 if ((cfg.shuffle) && (playlist_position_before_jump == NULL)) | |
1397 { | |
1398 /* Shuffling and this is our first manual jump. */ | |
1399 playlist_position_before_jump = playlist->position; | |
1400 } | |
3246
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3217
diff
changeset
|
1401 |
2313 | 1402 playlist->position = node->data; |
1403 PLAYLIST_UNLOCK(playlist->mutex); | |
1404 playlist_check_pos_current(playlist); | |
1405 | |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
1406 if (restart_playing) |
2313 | 1407 playback_initiate(); |
3348
2a081105513c
-Set the track "title" in metadata instead of "name"
Ben Tucker <ben.tucker@gmail.com>
parents:
3346
diff
changeset
|
1408 else |
2313 | 1409 playlistwin_update_list(playlist); |
1410 } | |
1411 | |
1412 void | |
1413 playlist_eof_reached(Playlist *playlist) | |
1414 { | |
1415 GList *plist_pos_list; | |
1416 | |
1417 if ((cfg.no_playlist_advance && !cfg.repeat) || cfg.stopaftersong) | |
1418 ip_data.stop = TRUE; | |
1419 playback_stop(); | |
1420 if ((cfg.no_playlist_advance && !cfg.repeat) || cfg.stopaftersong) | |
1421 ip_data.stop = FALSE; | |
1422 | |
2408
b380e84148bb
[svn] - rename some hooks so that they are more logical
nenolod
parents:
2407
diff
changeset
|
1423 hook_call("playback end", playlist->position); |
2407
1dc1d36d0347
[svn] - add hooks: playback begin, playback end, playlist reached end
nenolod
parents:
2380
diff
changeset
|
1424 |
2313 | 1425 PLAYLIST_LOCK(playlist->mutex); |
1426 | |
1427 if ((playlist_position_before_jump != NULL) && playlist->queue == NULL) | |
1428 { | |
1429 playlist->position = playlist_position_before_jump; | |
1430 playlist_position_before_jump = NULL; | |
1431 } | |
3246
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3217
diff
changeset
|
1432 |
2313 | 1433 plist_pos_list = find_playlist_position_list(playlist); |
1434 | |
1435 if (cfg.no_playlist_advance) { | |
1436 PLAYLIST_UNLOCK(playlist->mutex); | |
1437 mainwin_clear_song_info(); | |
1438 if (cfg.repeat) | |
1439 playback_initiate(); | |
1440 return; | |
1441 } | |
1442 | |
1443 if (cfg.stopaftersong) { | |
1444 PLAYLIST_UNLOCK(playlist->mutex); | |
1445 mainwin_clear_song_info(); | |
1446 mainwin_set_stopaftersong(FALSE); | |
1447 return; | |
1448 } | |
1449 | |
1450 if (playlist->queue != NULL) { | |
1451 play_queued(playlist); | |
1452 } | |
1453 else if (!g_list_next(plist_pos_list)) { | |
1454 if (cfg.shuffle) { | |
1455 playlist->position = NULL; | |
1456 playlist_generate_shuffle_list_nolock(playlist); | |
1457 } | |
2380 | 1458 else if (playlist->entries != NULL) |
2313 | 1459 playlist->position = playlist->entries->data; |
1460 | |
1461 if (!cfg.repeat) { | |
1462 PLAYLIST_UNLOCK(playlist->mutex); | |
2408
b380e84148bb
[svn] - rename some hooks so that they are more logical
nenolod
parents:
2407
diff
changeset
|
1463 hook_call("playlist end reached", playlist->position); |
2313 | 1464 mainwin_clear_song_info(); |
1465 return; | |
1466 } | |
1467 } | |
1468 else | |
1469 playlist->position = g_list_next(plist_pos_list)->data; | |
1470 | |
1471 PLAYLIST_UNLOCK(playlist->mutex); | |
1472 | |
1473 playlist_check_pos_current(playlist); | |
1474 playback_initiate(); | |
1475 playlistwin_update_list(playlist); | |
1476 } | |
1477 | |
1478 gint | |
1479 playlist_queue_get_length(Playlist *playlist) | |
1480 { | |
1481 gint length; | |
1482 | |
1483 PLAYLIST_LOCK(playlist->mutex); | |
1484 length = g_list_length(playlist->queue); | |
1485 PLAYLIST_UNLOCK(playlist->mutex); | |
1486 | |
1487 return length; | |
1488 } | |
1489 | |
1490 gint | |
2671
e9b379528fbc
[svn] - playlist_get_length_nolock() -> playlist_get_length(), no need for
nenolod
parents:
2670
diff
changeset
|
1491 playlist_get_length(Playlist *playlist) |
2313 | 1492 { |
1493 return g_list_length(playlist->entries); | |
1494 } | |
1495 | |
1496 gchar * | |
1497 playlist_get_info_text(Playlist *playlist) | |
1498 { | |
1499 gchar *text, *title, *numbers, *length; | |
1500 | |
1501 g_return_val_if_fail(playlist != NULL, NULL); | |
1502 | |
1503 PLAYLIST_LOCK(playlist->mutex); | |
1504 if (!playlist->position) { | |
1505 PLAYLIST_UNLOCK(playlist->mutex); | |
1506 return NULL; | |
1507 } | |
1508 | |
1509 /* FIXME: there should not be a need to do additional conversion, | |
1510 * if playlist is properly maintained */ | |
1511 if (playlist->position->title) { | |
1512 title = str_to_utf8(playlist->position->title); | |
1513 } | |
1514 else { | |
3097
bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3087
diff
changeset
|
1515 gchar *realfn = NULL; |
bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3087
diff
changeset
|
1516 gchar *basename = NULL; |
bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3087
diff
changeset
|
1517 realfn = g_filename_from_uri(playlist->position->filename, NULL, NULL); |
bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3087
diff
changeset
|
1518 basename = g_path_get_basename(realfn ? realfn : playlist->position->filename); |
2313 | 1519 title = filename_to_utf8(basename); |
3097
bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3087
diff
changeset
|
1520 g_free(realfn); realfn = NULL; |
bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3087
diff
changeset
|
1521 g_free(basename); basename = NULL; |
2313 | 1522 } |
1523 | |
1524 /* | |
1525 * If the user don't want numbers in the playlist, don't | |
1526 * display them in other parts of XMMS | |
1527 */ | |
1528 | |
1529 if (cfg.show_numbers_in_pl) | |
1530 numbers = g_strdup_printf("%d. ", playlist_get_position_nolock(playlist) + 1); | |
1531 else | |
1532 numbers = g_strdup(""); | |
1533 | |
1534 if (playlist->position->length != -1) | |
1535 length = g_strdup_printf(" (%d:%-2.2d)", | |
1536 playlist->position->length / 60000, | |
1537 (playlist->position->length / 1000) % 60); | |
1538 else | |
1539 length = g_strdup(""); | |
1540 | |
1541 PLAYLIST_UNLOCK(playlist->mutex); | |
1542 | |
1543 text = convert_title_text(g_strconcat(numbers, title, length, NULL)); | |
1544 | |
1545 g_free(numbers); | |
1546 g_free(title); | |
1547 g_free(length); | |
1548 | |
1549 return text; | |
1550 } | |
1551 | |
1552 gint | |
1553 playlist_get_current_length(Playlist * playlist) | |
1554 { | |
1555 gint len = 0; | |
1556 | |
1557 if (!playlist) | |
1558 return 0; | |
1559 | |
1560 if (playlist->position) | |
1561 len = playlist->position->length; | |
1562 | |
1563 return len; | |
1564 } | |
1565 | |
1566 gboolean | |
1567 playlist_save(Playlist * playlist, const gchar * filename) | |
1568 { | |
1569 PlaylistContainer *plc = NULL; | |
1570 gchar *ext; | |
1571 | |
1572 g_return_val_if_fail(playlist != NULL, FALSE); | |
1573 g_return_val_if_fail(filename != NULL, FALSE); | |
1574 | |
1575 ext = strrchr(filename, '.') + 1; | |
1576 | |
3401
ae30eb582a66
Only set playlist name to filename if it didn't already have a name
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3383
diff
changeset
|
1577 if (!playlist->title || !playlist->title[0]) |
ae30eb582a66
Only set playlist name to filename if it didn't already have a name
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3383
diff
changeset
|
1578 playlist_set_current_name(playlist, filename); |
2313 | 1579 |
1580 if ((plc = playlist_container_find(ext)) == NULL) | |
1581 return FALSE; | |
1582 | |
1583 if (plc->plc_write == NULL) | |
1584 return FALSE; | |
1585 | |
1586 plc->plc_write(filename, 0); | |
1587 | |
1588 return TRUE; | |
1589 } | |
1590 | |
1591 gboolean | |
1592 playlist_load(Playlist * playlist, const gchar * filename) | |
1593 { | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1594 guint ret = 0; |
2313 | 1595 g_return_val_if_fail(playlist != NULL, FALSE); |
1596 | |
1597 playlist->loading_playlist = TRUE; | |
1598 ret = playlist_load_ins(playlist, filename, -1); | |
1599 playlist->loading_playlist = FALSE; | |
1600 | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1601 return ret ? TRUE : FALSE; |
2313 | 1602 } |
1603 | |
1604 void | |
1605 playlist_load_ins_file(Playlist *playlist, | |
1606 const gchar * filename_p, | |
1607 const gchar * playlist_name, gint pos, | |
1608 const gchar * title, gint len) | |
1609 { | |
1610 gchar *filename; | |
1611 gchar *tmp, *path; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1612 ProbeResult *pr = NULL; |
2313 | 1613 |
1614 g_return_if_fail(filename_p != NULL); | |
1615 g_return_if_fail(playlist != NULL); | |
1616 g_return_if_fail(playlist_name != NULL); | |
1617 | |
1618 filename = g_strchug(g_strdup(filename_p)); | |
1619 | |
1620 if(cfg.convert_slash) | |
3087
030b956c73b2
Fix a bug in backslash to slash conversion. Closes #1006.
William Pitcock <nenolod@atheme-project.org>
parents:
3081
diff
changeset
|
1621 while ((tmp = strchr(filename, '\\')) != NULL) |
030b956c73b2
Fix a bug in backslash to slash conversion. Closes #1006.
William Pitcock <nenolod@atheme-project.org>
parents:
3081
diff
changeset
|
1622 *tmp = '/'; |
2313 | 1623 |
1624 if (filename[0] != '/' && !strstr(filename, "://")) { | |
1625 path = g_strdup(playlist_name); | |
1626 if ((tmp = strrchr(path, '/'))) | |
1627 *tmp = '\0'; | |
1628 else { | |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1629 if ((playlist->loading_playlist == TRUE || |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1630 cfg.playlist_detect == TRUE)) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1631 pr = NULL; |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1632 else if (!str_has_prefix_nocase(filename, "http://") && |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1633 !str_has_prefix_nocase(filename, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1634 pr = input_check_file(filename, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1635 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1636 __playlist_ins_with_info(playlist, filename, pos, title, len, pr ? pr->ip : NULL); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1637 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1638 g_free(pr); |
2313 | 1639 return; |
1640 } | |
1641 tmp = g_build_filename(path, filename, NULL); | |
1642 | |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
1643 if (playlist->loading_playlist == TRUE && cfg.playlist_detect == TRUE) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1644 pr = NULL; |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
1645 else if (!str_has_prefix_nocase(tmp, "http://") && |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
1646 !str_has_prefix_nocase(tmp, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1647 pr = input_check_file(tmp, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1648 |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
1649 __playlist_ins_with_info(playlist, tmp, pos, title, len, pr ? pr->ip : NULL); |
2313 | 1650 g_free(tmp); |
1651 g_free(path); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1652 g_free(pr); |
2313 | 1653 } |
1654 else | |
1655 { | |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1656 if ((playlist->loading_playlist == TRUE || |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1657 cfg.playlist_detect == TRUE)) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1658 pr = NULL; |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1659 else if (!str_has_prefix_nocase(filename, "http://") && |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1660 !str_has_prefix_nocase(filename, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1661 pr = input_check_file(filename, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1662 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1663 __playlist_ins_with_info(playlist, filename, pos, title, len, pr ? pr->ip : NULL); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1664 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1665 g_free(pr); |
2313 | 1666 } |
1667 | |
1668 g_free(filename); | |
1669 } | |
1670 | |
1671 void | |
1672 playlist_load_ins_file_tuple(Playlist * playlist, | |
1673 const gchar * filename_p, | |
1674 const gchar * playlist_name, | |
1675 gint pos, | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1676 Tuple *tuple) |
2313 | 1677 { |
1678 gchar *filename; | |
1679 gchar *tmp, *path; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1680 ProbeResult *pr = NULL; /* for decoder cache */ |
2313 | 1681 |
1682 g_return_if_fail(filename_p != NULL); | |
1683 g_return_if_fail(playlist_name != NULL); | |
1684 g_return_if_fail(playlist != NULL); | |
1685 | |
1686 filename = g_strchug(g_strdup(filename_p)); | |
1687 | |
3087
030b956c73b2
Fix a bug in backslash to slash conversion. Closes #1006.
William Pitcock <nenolod@atheme-project.org>
parents:
3081
diff
changeset
|
1688 if(cfg.convert_slash) |
030b956c73b2
Fix a bug in backslash to slash conversion. Closes #1006.
William Pitcock <nenolod@atheme-project.org>
parents:
3081
diff
changeset
|
1689 while ((tmp = strchr(filename, '\\')) != NULL) |
030b956c73b2
Fix a bug in backslash to slash conversion. Closes #1006.
William Pitcock <nenolod@atheme-project.org>
parents:
3081
diff
changeset
|
1690 *tmp = '/'; |
2313 | 1691 |
1692 if (filename[0] != '/' && !strstr(filename, "://")) { | |
1693 path = g_strdup(playlist_name); | |
1694 if ((tmp = strrchr(path, '/'))) | |
1695 *tmp = '\0'; | |
1696 else { | |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1697 if ((playlist->loading_playlist == TRUE || |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1698 cfg.playlist_detect == TRUE)) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1699 pr = NULL; |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1700 else if (!str_has_prefix_nocase(filename, "http://") && |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1701 !str_has_prefix_nocase(filename, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1702 pr = input_check_file(filename, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1703 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1704 __playlist_ins_with_info_tuple(playlist, filename, pos, tuple, pr ? pr->ip : NULL); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1705 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1706 g_free(pr); |
2313 | 1707 return; |
1708 } | |
1709 tmp = g_build_filename(path, filename, NULL); | |
1710 | |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1711 if ((playlist->loading_playlist == TRUE || |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1712 cfg.playlist_detect == TRUE)) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1713 pr = NULL; |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1714 else if (!str_has_prefix_nocase(filename, "http://") && |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1715 !str_has_prefix_nocase(filename, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1716 pr = input_check_file(filename, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1717 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1718 __playlist_ins_with_info_tuple(playlist, tmp, pos, tuple, pr ? pr->ip : NULL); |
2313 | 1719 g_free(tmp); |
1720 g_free(path); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1721 g_free(pr); |
2313 | 1722 } |
1723 else | |
1724 { | |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1725 if ((playlist->loading_playlist == TRUE || |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1726 cfg.playlist_detect == TRUE)) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1727 pr = NULL; |
2667
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1728 else if (!str_has_prefix_nocase(filename, "http://") && |
8c56926de2ad
[svn] - probe remote sources (hardcoded to http://, https://) in the background.
nenolod
parents:
2637
diff
changeset
|
1729 !str_has_prefix_nocase(filename, "https://")) |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1730 pr = input_check_file(filename, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1731 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1732 __playlist_ins_with_info_tuple(playlist, filename, pos, tuple, pr ? pr->ip : NULL); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
1733 g_free(pr); |
2313 | 1734 } |
1735 | |
1736 g_free(filename); | |
1737 } | |
1738 | |
1739 static guint | |
1740 playlist_load_ins(Playlist * playlist, const gchar * filename, gint pos) | |
1741 { | |
1742 PlaylistContainer *plc; | |
3383
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1743 GList *old_iter; |
2313 | 1744 gchar *ext; |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1745 gint old_len, new_len; |
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1746 |
2313 | 1747 g_return_val_if_fail(playlist != NULL, 0); |
1748 g_return_val_if_fail(filename != NULL, 0); | |
1749 | |
1750 ext = strrchr(filename, '.') + 1; | |
1751 plc = playlist_container_find(ext); | |
1752 | |
1753 g_return_val_if_fail(plc != NULL, 0); | |
1754 g_return_val_if_fail(plc->plc_read != NULL, 0); | |
1755 | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1756 old_len = playlist_get_length(playlist); |
3383
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1757 /* make sure it adds files to the right playlist */ |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1758 if (playlist != playlist_get_active()) { |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1759 old_iter = playlists_iter; |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1760 playlists_iter = g_list_find(playlists, playlist); |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1761 if (!playlists_iter) playlists_iter = playlists; |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1762 plc->plc_read(filename, pos); |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1763 playlists_iter = old_iter; |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1764 } else { |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1765 plc->plc_read(filename, pos); |
e2e875f3d02b
Make playlist_load_ins handle the case when playlist is not the currently active one
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3382
diff
changeset
|
1766 } |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1767 new_len = playlist_get_length(playlist); |
2313 | 1768 |
1769 playlist_generate_shuffle_list(playlist); | |
1770 playlistwin_update_list(playlist); | |
1771 | |
3337
99f34db2c3fc
- fix a bug that playlist_ins_url() always returns 1 even if no url has been added. now playlist_ins_url() returns number of new entries which actually added to the playlist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3334
diff
changeset
|
1772 return new_len - old_len; |
2313 | 1773 } |
1774 | |
1775 GList * | |
1776 get_playlist_nth(Playlist *playlist, guint nth) | |
1777 { | |
1778 g_warning("deprecated function get_playlist_nth() was called"); | |
1779 REQUIRE_LOCK(playlist->mutex); | |
1780 return g_list_nth(playlist->entries, nth); | |
1781 } | |
1782 | |
1783 gint | |
1784 playlist_get_position_nolock(Playlist *playlist) | |
1785 { | |
1786 if (playlist && playlist->position) | |
1787 return g_list_index(playlist->entries, playlist->position); | |
1788 return 0; | |
1789 } | |
1790 | |
1791 gint | |
1792 playlist_get_position(Playlist *playlist) | |
1793 { | |
1794 gint pos; | |
1795 | |
1796 PLAYLIST_LOCK(playlist->mutex); | |
1797 pos = playlist_get_position_nolock(playlist); | |
1798 PLAYLIST_UNLOCK(playlist->mutex); | |
1799 | |
1800 return pos; | |
1801 } | |
1802 | |
1803 gchar * | |
1804 playlist_get_filename(Playlist *playlist, guint pos) | |
1805 { | |
1806 gchar *filename; | |
1807 PlaylistEntry *entry; | |
1808 GList *node; | |
1809 | |
1810 if (!playlist) | |
1811 return NULL; | |
1812 | |
1813 PLAYLIST_LOCK(playlist->mutex); | |
1814 node = g_list_nth(playlist->entries, pos); | |
1815 if (!node) { | |
1816 PLAYLIST_UNLOCK(playlist->mutex); | |
1817 return NULL; | |
1818 } | |
1819 entry = node->data; | |
1820 | |
1821 filename = g_strdup(entry->filename); | |
1822 PLAYLIST_UNLOCK(playlist->mutex); | |
1823 | |
1824 return filename; | |
1825 } | |
1826 | |
1827 gchar * | |
1828 playlist_get_songtitle(Playlist *playlist, guint pos) | |
1829 { | |
1830 gchar *title = NULL; | |
1831 PlaylistEntry *entry; | |
1832 GList *node; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1833 time_t mtime; |
2313 | 1834 |
1835 if (!playlist) | |
1836 return NULL; | |
1837 | |
1838 PLAYLIST_LOCK(playlist->mutex); | |
1839 | |
1840 if (!(node = g_list_nth(playlist->entries, pos))) { | |
1841 PLAYLIST_UNLOCK(playlist->mutex); | |
1842 return NULL; | |
1843 } | |
1844 | |
1845 entry = node->data; | |
1846 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1847 if (entry->tuple) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1848 mtime = tuple_get_int(entry->tuple, "mtime"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1849 else |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1850 mtime = 0; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1851 |
2313 | 1852 /* FIXME: simplify this logic */ |
1853 if ((entry->title == NULL && entry->length == -1) || | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1854 (entry->tuple && mtime != 0 && (mtime == -1 || mtime != playlist_get_mtime(entry->filename)))) |
2313 | 1855 { |
1856 if (playlist_entry_get_info(entry)) | |
1857 title = entry->title; | |
1858 } | |
1859 else { | |
1860 title = entry->title; | |
1861 } | |
1862 | |
1863 PLAYLIST_UNLOCK(playlist->mutex); | |
1864 | |
1865 if (!title) { | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
1866 gchar *realfn = NULL; |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
1867 realfn = g_filename_from_uri(entry->filename, NULL, NULL); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
1868 title = g_path_get_basename(realfn ? realfn : entry->filename); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
1869 g_free(realfn); realfn = NULL; |
2313 | 1870 return str_replace(title, filename_to_utf8(title)); |
1871 } | |
1872 | |
1873 return str_to_utf8(title); | |
1874 } | |
1875 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1876 Tuple * |
2313 | 1877 playlist_get_tuple(Playlist *playlist, guint pos) |
1878 { | |
1879 PlaylistEntry *entry; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1880 Tuple *tuple = NULL; |
2313 | 1881 GList *node; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1882 time_t mtime; |
2313 | 1883 |
1884 if (!playlist) | |
1885 return NULL; | |
1886 | |
1887 if (!(node = g_list_nth(playlist->entries, pos))) { | |
1888 return NULL; | |
1889 } | |
1890 | |
1891 entry = (PlaylistEntry *) node->data; | |
1892 | |
1893 tuple = entry->tuple; | |
1894 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1895 if (tuple) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1896 mtime = tuple_get_int(tuple, "mtime"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1897 else |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1898 mtime = 0; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1899 |
2313 | 1900 // if no tuple or tuple with old mtime, get new one. |
1901 if (tuple == NULL || | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1902 (entry->tuple && mtime != 0 && (mtime == -1 || mtime != playlist_get_mtime(entry->filename)))) |
2313 | 1903 { |
1904 playlist_entry_get_info(entry); | |
1905 tuple = entry->tuple; | |
1906 } | |
1907 | |
1908 return tuple; | |
1909 } | |
1910 | |
1911 gint | |
1912 playlist_get_songtime(Playlist *playlist, guint pos) | |
1913 { | |
1914 gint song_time = -1; | |
1915 PlaylistEntry *entry; | |
1916 GList *node; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1917 time_t mtime; |
2313 | 1918 |
1919 if (!playlist) | |
1920 return -1; | |
1921 | |
1922 if (!(node = g_list_nth(playlist->entries, pos))) { | |
1923 return -1; | |
1924 } | |
1925 | |
1926 entry = node->data; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1927 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1928 if (entry->tuple) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1929 mtime = tuple_get_int(entry->tuple, "mtime"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1930 else |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1931 mtime = 0; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1932 |
2313 | 1933 if (entry->tuple == NULL || |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1934 (mtime != 0 && (mtime == -1 || mtime != playlist_get_mtime(entry->filename)))) { |
2313 | 1935 |
1936 if (playlist_entry_get_info(entry)) | |
1937 song_time = entry->length; | |
1938 } | |
1939 else { | |
1940 song_time = entry->length; | |
1941 } | |
1942 | |
1943 return song_time; | |
1944 } | |
1945 | |
1946 static gint | |
1947 playlist_compare_track(PlaylistEntry * a, | |
1948 PlaylistEntry * b) | |
1949 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1950 gint tracknumber_a; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1951 gint tracknumber_b; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1952 |
2313 | 1953 g_return_val_if_fail(a != NULL, 0); |
1954 g_return_val_if_fail(b != NULL, 0); | |
1955 | |
2614
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
1956 if(!a->tuple) |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
1957 playlist_entry_get_info(a); |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
1958 if(!b->tuple) |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
1959 playlist_entry_get_info(b); |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
1960 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1961 if (a->tuple == NULL) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1962 return 0; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1963 if (b->tuple == NULL) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1964 return 0; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1965 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1966 tracknumber_a = tuple_get_int(a->tuple, "track-number"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1967 tracknumber_b = tuple_get_int(b->tuple, "track-number"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1968 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1969 return (tracknumber_a && tracknumber_b ? |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
1970 tracknumber_a - tracknumber_b : 0); |
2313 | 1971 } |
1972 | |
1973 static gint | |
1974 playlist_compare_playlist(PlaylistEntry * a, | |
1975 PlaylistEntry * b) | |
1976 { | |
1977 const gchar *a_title = NULL, *b_title = NULL; | |
1978 | |
1979 g_return_val_if_fail(a != NULL, 0); | |
1980 g_return_val_if_fail(b != NULL, 0); | |
1981 | |
1982 if (a->title != NULL) | |
1983 a_title = a->title; | |
1984 else { | |
1985 if (strrchr(a->filename, '/')) | |
1986 a_title = strrchr(a->filename, '/') + 1; | |
1987 else | |
1988 a_title = a->filename; | |
1989 } | |
1990 | |
1991 if (b->title != NULL) | |
1992 b_title = b->title; | |
1993 else { | |
1994 if (strrchr(a->filename, '/')) | |
1995 b_title = strrchr(b->filename, '/') + 1; | |
1996 else | |
1997 b_title = b->filename; | |
1998 } | |
1999 | |
2000 return strcasecmp(a_title, b_title); | |
2001 } | |
2002 | |
2003 static gint | |
2004 playlist_compare_title(PlaylistEntry * a, | |
2005 PlaylistEntry * b) | |
2006 { | |
2007 const gchar *a_title = NULL, *b_title = NULL; | |
2008 | |
2009 g_return_val_if_fail(a != NULL, 0); | |
2010 g_return_val_if_fail(b != NULL, 0); | |
2011 | |
2614
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
2012 if(!a->tuple) |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
2013 playlist_entry_get_info(a); |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
2014 if(!b->tuple) |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
2015 playlist_entry_get_info(b); |
deb09bfd716b
[svn] - now sort by track number and sort by title work even if on display metadata loading is specified.
yaz
parents:
2580
diff
changeset
|
2016 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2017 if (a->tuple != NULL) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2018 a_title = tuple_get_string(a->tuple, "title"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2019 if (b->tuple != NULL) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2020 b_title = tuple_get_string(b->tuple, "title"); |
2313 | 2021 |
2022 if (a_title != NULL && b_title != NULL) | |
2023 return strcasecmp(a_title, b_title); | |
2024 | |
2025 if (a->title != NULL) | |
2026 a_title = a->title; | |
2027 else { | |
2028 if (strrchr(a->filename, '/')) | |
2029 a_title = strrchr(a->filename, '/') + 1; | |
2030 else | |
2031 a_title = a->filename; | |
2032 } | |
2033 | |
2034 if (b->title != NULL) | |
2035 b_title = b->title; | |
2036 else { | |
2037 if (strrchr(a->filename, '/')) | |
2038 b_title = strrchr(b->filename, '/') + 1; | |
2039 else | |
2040 b_title = b->filename; | |
2041 } | |
2042 | |
2043 return strcasecmp(a_title, b_title); | |
2044 } | |
2045 | |
2046 static gint | |
2047 playlist_compare_artist(PlaylistEntry * a, | |
2048 PlaylistEntry * b) | |
2049 { | |
2050 const gchar *a_artist = NULL, *b_artist = NULL; | |
2051 | |
2052 g_return_val_if_fail(a != NULL, 0); | |
2053 g_return_val_if_fail(b != NULL, 0); | |
2054 | |
2055 if (a->tuple != NULL) | |
2056 playlist_entry_get_info(a); | |
2057 | |
2058 if (b->tuple != NULL) | |
2059 playlist_entry_get_info(b); | |
2060 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2061 if (a->tuple != NULL) { |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2062 a_artist = tuple_get_string(a->tuple, "artist"); |
2683
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2063 if (str_has_prefix_nocase(a_artist, "the ")) |
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2064 a_artist += 4; |
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2065 } |
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2066 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2067 if (b->tuple != NULL) { |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2068 b_artist = tuple_get_string(b->tuple, "artist"); |
2683
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2069 if (str_has_prefix_nocase(b_artist, "the ")) |
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2070 b_artist += 4; |
d2ffabee3ced
[svn] Modified playlist_compare_artist so that a leading "the" in an artist's
magma
parents:
2671
diff
changeset
|
2071 } |
2313 | 2072 |
2073 if (a_artist != NULL && b_artist != NULL) | |
2074 return strcasecmp(a_artist, b_artist); | |
2075 | |
2076 return 0; | |
2077 } | |
2078 | |
2079 static gint | |
2080 playlist_compare_filename(PlaylistEntry * a, | |
2081 PlaylistEntry * b) | |
2082 { | |
2083 gchar *a_filename, *b_filename; | |
2084 | |
2085 g_return_val_if_fail(a != NULL, 0); | |
2086 g_return_val_if_fail(b != NULL, 0); | |
2087 | |
2088 if (strrchr(a->filename, '/')) | |
2089 a_filename = strrchr(a->filename, '/') + 1; | |
2090 else | |
2091 a_filename = a->filename; | |
2092 | |
2093 if (strrchr(b->filename, '/')) | |
2094 b_filename = strrchr(b->filename, '/') + 1; | |
2095 else | |
2096 b_filename = b->filename; | |
2097 | |
2098 | |
2099 return strcasecmp(a_filename, b_filename); | |
2100 } | |
2101 | |
2102 static gint | |
2103 path_compare(const gchar * a, const gchar * b) | |
2104 { | |
2105 gchar *posa, *posb; | |
2106 gint len, ret; | |
2107 | |
2108 posa = strrchr(a, '/'); | |
2109 posb = strrchr(b, '/'); | |
2110 | |
2111 /* | |
2112 * Sort directories before files | |
2113 */ | |
2114 if (posa && posb && (posa - a != posb - b)) { | |
2115 if (posa - a > posb - b) { | |
2116 len = posb - b; | |
2117 ret = -1; | |
2118 } | |
2119 else { | |
2120 len = posa - a; | |
2121 ret = 1; | |
2122 } | |
2123 if (!strncasecmp(a, b, len)) | |
2124 return ret; | |
2125 } | |
2126 return strcasecmp(a, b); | |
2127 } | |
2128 | |
2129 static gint | |
2130 playlist_compare_path(PlaylistEntry * a, | |
2131 PlaylistEntry * b) | |
2132 { | |
2133 return path_compare(a->filename, b->filename); | |
2134 } | |
2135 | |
2136 | |
2137 static time_t | |
2138 playlist_get_mtime(const gchar *filename) | |
2139 { | |
2140 struct stat buf; | |
2141 gint rv; | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
2142 gchar *realfn = NULL; |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
2143 |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
2144 /* stat() does not accept file:// --yaz */ |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
2145 realfn = g_filename_from_uri(filename, NULL, NULL); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
2146 rv = stat(realfn ? realfn : filename, &buf); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3079
diff
changeset
|
2147 g_free(realfn); realfn = NULL; |
2313 | 2148 |
2149 if (rv == 0) { | |
2150 return buf.st_mtime; | |
2151 } else { | |
2152 return 0; //error | |
2153 } | |
2154 } | |
2155 | |
2156 | |
2157 static gint | |
2158 playlist_compare_date(PlaylistEntry * a, | |
2159 PlaylistEntry * b) | |
2160 { | |
2161 struct stat buf; | |
2162 time_t modtime; | |
2163 | |
2164 gint rv; | |
2165 | |
2166 | |
2167 rv = stat(a->filename, &buf); | |
2168 | |
2169 if (rv == 0) { | |
2170 modtime = buf.st_mtime; | |
2171 rv = stat(b->filename, &buf); | |
2172 | |
2173 if (stat(b->filename, &buf) == 0) { | |
2174 if (buf.st_mtime == modtime) | |
2175 return 0; | |
2176 else | |
2177 return (buf.st_mtime - modtime) > 0 ? -1 : 1; | |
2178 } | |
2179 else | |
2180 return -1; | |
2181 } | |
2182 else if (!lstat(b->filename, &buf)) | |
2183 return 1; | |
2184 else | |
2185 return playlist_compare_filename(a, b); | |
2186 } | |
2187 | |
2188 | |
2189 void | |
2190 playlist_sort(Playlist *playlist, PlaylistSortType type) | |
2191 { | |
2192 playlist_remove_dead_files(playlist); | |
2193 PLAYLIST_LOCK(playlist->mutex); | |
2194 playlist->entries = | |
2195 g_list_sort(playlist->entries, | |
2196 (GCompareFunc) playlist_compare_func_table[type]); | |
2197 PLAYLIST_UNLOCK(playlist->mutex); | |
2198 } | |
2199 | |
2200 static GList * | |
2201 playlist_sort_selected_generic(GList * list, GCompareFunc cmpfunc) | |
2202 { | |
2203 GList *list1, *list2; | |
2204 GList *tmp_list = NULL; | |
2205 GList *index_list = NULL; | |
2206 | |
2207 /* | |
2208 * We take all the selected entries out of the playlist, | |
2209 * sorts them, and then put them back in again. | |
2210 */ | |
2211 | |
2212 list1 = g_list_last(list); | |
2213 | |
2214 while (list1) { | |
2215 list2 = g_list_previous(list1); | |
2216 if (PLAYLIST_ENTRY(list1->data)->selected) { | |
2217 gpointer idx; | |
2218 idx = GINT_TO_POINTER(g_list_position(list, list1)); | |
2219 index_list = g_list_prepend(index_list, idx); | |
2220 list = g_list_remove_link(list, list1); | |
2221 tmp_list = g_list_concat(list1, tmp_list); | |
2222 } | |
2223 list1 = list2; | |
2224 } | |
2225 | |
2226 tmp_list = g_list_sort(tmp_list, cmpfunc); | |
2227 list1 = tmp_list; | |
2228 list2 = index_list; | |
2229 | |
2230 while (list2) { | |
2231 if (!list1) { | |
2232 g_critical(G_STRLOC ": Error during list sorting. " | |
2233 "Possibly dropped some playlist-entries."); | |
2234 break; | |
2235 } | |
2236 | |
2237 list = g_list_insert(list, list1->data, GPOINTER_TO_INT(list2->data)); | |
2238 | |
2239 list2 = g_list_next(list2); | |
2240 list1 = g_list_next(list1); | |
2241 } | |
2242 | |
2243 g_list_free(index_list); | |
2244 g_list_free(tmp_list); | |
2245 | |
2246 return list; | |
2247 } | |
2248 | |
2249 void | |
2250 playlist_sort_selected(Playlist *playlist, PlaylistSortType type) | |
2251 { | |
2252 PLAYLIST_LOCK(playlist->mutex); | |
2253 playlist->entries = playlist_sort_selected_generic(playlist->entries, (GCompareFunc) | |
2254 playlist_compare_func_table | |
2255 [type]); | |
2256 PLAYLIST_UNLOCK(playlist->mutex); | |
2257 } | |
2258 | |
2259 void | |
2260 playlist_reverse(Playlist *playlist) | |
2261 { | |
2262 PLAYLIST_LOCK(playlist->mutex); | |
2263 playlist->entries = g_list_reverse(playlist->entries); | |
2264 PLAYLIST_UNLOCK(playlist->mutex); | |
2265 } | |
2266 | |
2267 static GList * | |
2268 playlist_shuffle_list(Playlist *playlist, GList * list) | |
2269 { | |
2270 /* | |
2271 * Note that this doesn't make a copy of the original list. | |
2272 * The pointer to the original list is not valid after this | |
2273 * fuction is run. | |
2274 */ | |
2275 gint len = g_list_length(list); | |
2276 gint i, j; | |
2277 GList *node, **ptrs; | |
2278 | |
2279 if (!playlist) | |
2280 return NULL; | |
2281 | |
2282 REQUIRE_LOCK(playlist->mutex); | |
2283 | |
2284 if (!len) | |
2285 return NULL; | |
2286 | |
2287 ptrs = g_new(GList *, len); | |
2288 | |
2289 for (node = list, i = 0; i < len; node = g_list_next(node), i++) | |
2290 ptrs[i] = node; | |
2291 | |
2292 j = g_random_int_range(0, len); | |
2293 list = ptrs[j]; | |
2294 ptrs[j]->next = NULL; | |
2295 ptrs[j] = ptrs[0]; | |
2296 | |
2297 for (i = 1; i < len; i++) { | |
2298 j = g_random_int_range(0, len - i); | |
2299 list->prev = ptrs[i + j]; | |
2300 ptrs[i + j]->next = list; | |
2301 list = ptrs[i + j]; | |
2302 ptrs[i + j] = ptrs[i]; | |
2303 } | |
2304 list->prev = NULL; | |
2305 | |
2306 g_free(ptrs); | |
2307 | |
2308 return list; | |
2309 } | |
2310 | |
2311 void | |
2312 playlist_random(Playlist *playlist) | |
2313 { | |
2314 PLAYLIST_LOCK(playlist->mutex); | |
2315 playlist->entries = playlist_shuffle_list(playlist, playlist->entries); | |
2316 PLAYLIST_UNLOCK(playlist->mutex); | |
2317 } | |
2318 | |
2319 GList * | |
2320 playlist_get_selected(Playlist *playlist) | |
2321 { | |
2322 GList *node, *list = NULL; | |
2323 gint i = 0; | |
2324 | |
2325 PLAYLIST_LOCK(playlist->mutex); | |
2326 for (node = playlist->entries; node; node = g_list_next(node), i++) { | |
2327 PlaylistEntry *entry = node->data; | |
2328 if (entry->selected) | |
2329 list = g_list_prepend(list, GINT_TO_POINTER(i)); | |
2330 } | |
2331 PLAYLIST_UNLOCK(playlist->mutex); | |
2332 return g_list_reverse(list); | |
2333 } | |
2334 | |
2335 void | |
2336 playlist_clear_selected(Playlist *playlist) | |
2337 { | |
2338 GList *node = NULL; | |
2339 gint i = 0; | |
2340 | |
2341 PLAYLIST_LOCK(playlist->mutex); | |
2342 for (node = playlist->entries; node; node = g_list_next(node), i++) { | |
2343 PLAYLIST_ENTRY(node->data)->selected = FALSE; | |
2344 } | |
2345 PLAYLIST_UNLOCK(playlist->mutex); | |
2346 playlist_recalc_total_time(playlist); | |
2347 playlist_manager_update(); | |
2348 } | |
2349 | |
2350 gint | |
2351 playlist_get_num_selected(Playlist *playlist) | |
2352 { | |
2353 GList *node; | |
2354 gint num = 0; | |
2355 | |
2356 PLAYLIST_LOCK(playlist->mutex); | |
2357 for (node = playlist->entries; node; node = g_list_next(node)) { | |
2358 PlaylistEntry *entry = node->data; | |
2359 if (entry->selected) | |
2360 num++; | |
2361 } | |
2362 PLAYLIST_UNLOCK(playlist->mutex); | |
2363 return num; | |
2364 } | |
2365 | |
2366 | |
2367 static void | |
2368 playlist_generate_shuffle_list(Playlist *playlist) | |
2369 { | |
2370 PLAYLIST_LOCK(playlist->mutex); | |
2371 playlist_generate_shuffle_list_nolock(playlist); | |
2372 PLAYLIST_UNLOCK(playlist->mutex); | |
2373 } | |
2374 | |
2375 static void | |
2376 playlist_generate_shuffle_list_nolock(Playlist *playlist) | |
2377 { | |
2378 GList *node; | |
2379 gint numsongs; | |
2380 | |
2381 if (!cfg.shuffle || !playlist) | |
2382 return; | |
2383 | |
2384 REQUIRE_LOCK(playlist->mutex); | |
2385 | |
2386 if (playlist->shuffle) { | |
2387 g_list_free(playlist->shuffle); | |
2388 playlist->shuffle = NULL; | |
2389 } | |
2390 | |
2391 playlist->shuffle = playlist_shuffle_list(playlist, g_list_copy(playlist->entries)); | |
2392 numsongs = g_list_length(playlist->shuffle); | |
2393 | |
2394 if (playlist->position) { | |
2395 gint i = g_list_index(playlist->shuffle, playlist->position); | |
2396 node = g_list_nth(playlist->shuffle, i); | |
2397 playlist->shuffle = g_list_remove_link(playlist->shuffle, node); | |
2398 playlist->shuffle = g_list_prepend(playlist->shuffle, node->data); | |
2399 } | |
2400 } | |
2401 | |
2402 void | |
2403 playlist_fileinfo(Playlist *playlist, guint pos) | |
2404 { | |
2405 gchar *path = NULL; | |
2406 GList *node; | |
2407 PlaylistEntry *entry = NULL; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2408 Tuple *tuple = NULL; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2409 ProbeResult *pr = NULL; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2410 time_t mtime; |
2313 | 2411 |
2412 PLAYLIST_LOCK(playlist->mutex); | |
2413 | |
2414 if ((node = g_list_nth(playlist->entries, pos))) | |
2415 { | |
2416 entry = node->data; | |
2417 tuple = entry->tuple; | |
2418 path = g_strdup(entry->filename); | |
2419 } | |
2420 | |
2421 PLAYLIST_UNLOCK(playlist->mutex); | |
2422 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2423 if (entry->tuple) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2424 mtime = tuple_get_int(entry->tuple, "mtime"); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2425 else |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2426 mtime = 0; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2427 |
2313 | 2428 /* No tuple? Try to set this entry up properly. --nenolod */ |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2429 if (entry->tuple == NULL || mtime == -1 || |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2430 mtime == 0 || mtime != playlist_get_mtime(entry->filename)) |
2313 | 2431 { |
2432 playlist_entry_get_info(entry); | |
2433 tuple = entry->tuple; | |
2434 } | |
2435 | |
2436 if (tuple != NULL) | |
2437 { | |
2438 if (entry->decoder == NULL) | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2439 { |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2440 pr = input_check_file(entry->filename, FALSE); /* try to find a decoder */ |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2441 entry->decoder = pr ? pr->ip : NULL; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2442 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2443 g_free(pr); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
2444 } |
2313 | 2445 |
2446 if (entry->decoder != NULL && entry->decoder->file_info_box == NULL) | |
2447 fileinfo_show_for_tuple(tuple); | |
2448 else if (entry->decoder != NULL && entry->decoder->file_info_box != NULL) | |
2449 entry->decoder->file_info_box(path); | |
2450 else | |
2451 fileinfo_show_for_path(path); | |
2452 g_free(path); | |
2453 } | |
2454 else if (path != NULL) | |
2455 { | |
2456 if (entry != NULL && entry->decoder != NULL && entry->decoder->file_info_box != NULL) | |
2457 entry->decoder->file_info_box(path); | |
2458 else | |
2459 fileinfo_show_for_path(path); | |
2460 g_free(path); | |
2461 } | |
2462 } | |
2463 | |
2464 void | |
2465 playlist_fileinfo_current(Playlist *playlist) | |
2466 { | |
2467 gchar *path = NULL; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2468 Tuple *tuple = NULL; |
2313 | 2469 |
2470 PLAYLIST_LOCK(playlist->mutex); | |
2471 | |
2472 if (playlist->entries && playlist->position) | |
2473 { | |
2474 path = g_strdup(playlist->position->filename); | |
2475 if (( playlist->position->tuple == NULL ) || ( playlist->position->decoder == NULL )) | |
2476 playlist_entry_get_info(playlist->position); | |
2477 tuple = playlist->position->tuple; | |
2478 } | |
2479 | |
2480 PLAYLIST_UNLOCK(playlist->mutex); | |
2481 | |
2482 if (tuple != NULL) | |
2483 { | |
2484 if (playlist->position->decoder != NULL && playlist->position->decoder->file_info_box == NULL) | |
2485 fileinfo_show_for_tuple(tuple); | |
2486 else if (playlist->position->decoder != NULL && playlist->position->decoder->file_info_box != NULL) | |
2487 playlist->position->decoder->file_info_box(path); | |
2488 else | |
2489 fileinfo_show_for_path(path); | |
2490 g_free(path); | |
2491 } | |
2492 else if (path != NULL) | |
2493 { | |
2494 if (playlist->position != NULL && playlist->position->decoder != NULL && playlist->position->decoder->file_info_box != NULL) | |
2495 playlist->position->decoder->file_info_box(path); | |
2496 else | |
2497 fileinfo_show_for_path(path); | |
2498 g_free(path); | |
2499 } | |
2500 } | |
2501 | |
2502 | |
2503 static gboolean | |
2504 playlist_get_info_is_going(void) | |
2505 { | |
2506 gboolean result; | |
2507 | |
2508 G_LOCK(playlist_get_info_going); | |
2509 result = playlist_get_info_going; | |
2510 G_UNLOCK(playlist_get_info_going); | |
2511 | |
2512 return result; | |
2513 } | |
2514 | |
3360
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2515 static gboolean |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2516 playlist_request_win_update(gpointer unused) |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2517 { |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2518 Playlist *playlist = playlist_get_active(); |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2519 playlistwin_update_list(playlist); |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2520 return FALSE; /* to be called only once */ |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2521 } |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2522 |
2313 | 2523 static gpointer |
2524 playlist_get_info_func(gpointer arg) | |
2525 { | |
2526 GList *node; | |
2527 gboolean update_playlistwin = FALSE; | |
2528 | |
2529 while (playlist_get_info_is_going()) { | |
2530 PlaylistEntry *entry; | |
2531 Playlist *playlist = playlist_get_active(); | |
2532 | |
2533 // on_load | |
2534 if (cfg.use_pl_metadata && | |
2535 cfg.get_info_on_load && | |
2536 playlist_get_info_scan_active) { | |
2537 | |
2538 for (node = playlist->entries; node; node = g_list_next(node)) { | |
2539 entry = node->data; | |
2540 | |
2636 | 2541 if(playlist->attribute & PLAYLIST_STATIC || |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2542 (entry->tuple && tuple_get_int(entry->tuple, "length") > -1 && tuple_get_int(entry->tuple, "mtime") != -1)) { |
2313 | 2543 update_playlistwin = TRUE; |
2544 continue; | |
2545 } | |
2546 | |
2547 if (!playlist_entry_get_info(entry)) { | |
2548 if (g_list_index(playlist->entries, entry) == -1) | |
2549 /* Entry disappeared while we looked it up. | |
2550 Restart. */ | |
2551 node = playlist->entries; | |
2552 } | |
2553 else if ((entry->tuple != NULL || entry->title != NULL) && entry->length != -1) { | |
2554 update_playlistwin = TRUE; | |
2555 break; | |
2556 } | |
2557 } | |
2558 | |
2559 if (!node) { | |
2560 g_mutex_lock(mutex_scan); | |
2561 playlist_get_info_scan_active = FALSE; | |
2562 g_mutex_unlock(mutex_scan); | |
2563 } | |
2564 } // on_load | |
2565 | |
2566 // on_demand | |
2567 else if (!cfg.get_info_on_load && | |
2568 cfg.get_info_on_demand && | |
2569 cfg.playlist_visible && | |
2570 !cfg.playlist_shaded && | |
2571 cfg.use_pl_metadata) { | |
2572 | |
2573 g_mutex_lock(mutex_scan); | |
2574 playlist_get_info_scan_active = FALSE; | |
2575 g_mutex_unlock(mutex_scan); | |
2576 | |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2577 for (node = g_list_nth(playlist->entries, playlistwin_get_toprow()); |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2578 node && playlistwin_item_visible(g_list_position(playlist->entries, node)); |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2579 node = g_list_next(node)) { |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2580 |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2581 entry = node->data; |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2582 |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2583 if(playlist->attribute & PLAYLIST_STATIC || |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2584 (entry->tuple && tuple_get_int(entry->tuple, "length") > -1 && tuple_get_int(entry->tuple, "mtime") != -1)) { |
2668
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2585 update_playlistwin = TRUE; |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2586 continue; |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2587 } |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2588 |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2589 if (!playlist_entry_get_info(entry)) { |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2590 if (g_list_index(playlist->entries, entry) == -1) |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2591 /* Entry disapeared while we |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2592 looked it up. Restart. */ |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2593 node = g_list_nth(playlist->entries, |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2594 playlistwin_get_toprow()); |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2595 } |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2596 else if ((entry->tuple != NULL || entry->title != NULL) && entry->length != -1) { |
d5da5d37ec8b
[svn] - unlock many playlist operations that do not really need locking
nenolod
parents:
2667
diff
changeset
|
2597 update_playlistwin = TRUE; |
2545
610d85b8a22b
[svn] - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1.
yaz
parents:
2504
diff
changeset
|
2598 // no need for break here since this iteration is very short. |
2313 | 2599 } |
2600 } | |
2601 } // on_demand | |
2602 else if (cfg.get_info_on_demand && | |
2603 (!cfg.playlist_visible || cfg.playlist_shaded | |
2604 || !cfg.use_pl_metadata)) | |
2605 { | |
2606 g_mutex_lock(mutex_scan); | |
2607 playlist_get_info_scan_active = FALSE; | |
2608 g_mutex_unlock(mutex_scan); | |
2609 } | |
2610 else /* not on_demand and not on_load... | |
2611 NOTE: this shouldn't happen anymore, sanity check in bmp_config_load now */ | |
2612 { | |
2613 g_mutex_lock(mutex_scan); | |
2614 playlist_get_info_scan_active = FALSE; | |
2615 g_mutex_unlock(mutex_scan); | |
2616 } | |
2617 | |
2618 if (update_playlistwin) { | |
3360
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2619 /* we are in a different thread, so we can't do UI updates directly; |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2620 instead, schedule a playlist update in the main loop --giacomo */ |
8430c3911856
playlist_get_info_func works in a different thread, so trying to do UI updates from it eventually leads to UI freeze; fixed to schedule those updates in the main loop instead of doing them directly
Giacomo Lozito <james@develia.org>
parents:
3349
diff
changeset
|
2621 g_idle_add_full(G_PRIORITY_HIGH_IDLE, playlist_request_win_update, NULL, NULL); |
2313 | 2622 update_playlistwin = FALSE; |
2623 } | |
2624 | |
2625 if (playlist_get_info_scan_active) { | |
2626 continue; | |
2627 } | |
2628 | |
2629 g_mutex_lock(mutex_scan); | |
2630 g_cond_wait(cond_scan, mutex_scan); | |
2631 g_mutex_unlock(mutex_scan); | |
2632 | |
2633 } // while | |
2634 | |
2635 g_thread_exit(NULL); | |
2636 return NULL; | |
2637 } | |
2638 | |
2639 void | |
2640 playlist_start_get_info_thread(void) | |
2641 { | |
2642 G_LOCK(playlist_get_info_going); | |
2643 playlist_get_info_going = TRUE; | |
2644 G_UNLOCK(playlist_get_info_going); | |
2645 | |
2646 playlist_get_info_thread = g_thread_create(playlist_get_info_func, | |
2647 NULL, TRUE, NULL); | |
2648 } | |
2649 | |
2650 void | |
2651 playlist_stop_get_info_thread(void) | |
2652 { | |
2653 G_LOCK(playlist_get_info_going); | |
2654 playlist_get_info_going = FALSE; | |
2655 G_UNLOCK(playlist_get_info_going); | |
2656 | |
2657 g_cond_broadcast(cond_scan); | |
2658 g_thread_join(playlist_get_info_thread); | |
2659 } | |
2660 | |
2661 void | |
2662 playlist_start_get_info_scan(void) | |
2663 { | |
2664 g_mutex_lock(mutex_scan); | |
2665 playlist_get_info_scan_active = TRUE; | |
2666 g_mutex_unlock(mutex_scan); | |
2667 g_cond_signal(cond_scan); | |
2668 } | |
2669 | |
2670 void | |
2671 playlist_remove_dead_files(Playlist *playlist) | |
2672 { | |
2673 GList *node, *next_node; | |
2674 | |
2675 PLAYLIST_LOCK(playlist->mutex); | |
2676 | |
2677 for (node = playlist->entries; node; node = next_node) { | |
2678 PlaylistEntry *entry = PLAYLIST_ENTRY(node->data); | |
2679 next_node = g_list_next(node); | |
2680 | |
2681 if (!entry || !entry->filename) { | |
2682 g_message(G_STRLOC ": Playlist entry is invalid!"); | |
2683 continue; | |
2684 } | |
2685 | |
2686 /* FIXME: What about 'file:///'? */ | |
2687 /* Don't kill URLs */ | |
2688 if (strstr(entry->filename, "://")) | |
2689 continue; | |
2690 | |
2691 /* FIXME: Should test for readability */ | |
2692 if (vfs_file_test(entry->filename, G_FILE_TEST_EXISTS)) | |
2693 continue; | |
2694 | |
2695 if (entry == playlist->position) { | |
2696 /* Don't remove the currently playing song */ | |
2697 if (playback_get_playing()) | |
2698 continue; | |
2699 | |
2700 if (next_node) | |
2701 playlist->position = PLAYLIST_ENTRY(next_node->data); | |
2702 else | |
2703 playlist->position = NULL; | |
2704 } | |
2705 | |
2706 playlist_entry_free(entry); | |
2707 playlist->entries = g_list_delete_link(playlist->entries, node); | |
2708 } | |
2709 | |
2710 PLAYLIST_UNLOCK(playlist->mutex); | |
2711 | |
2712 playlist_generate_shuffle_list(playlist); | |
2713 playlistwin_update_list(playlist); | |
2714 playlist_recalc_total_time(playlist); | |
2715 playlist_manager_update(); | |
2716 } | |
2717 | |
2718 | |
2719 static gint | |
2720 playlist_dupscmp_title(PlaylistEntry * a, | |
2721 PlaylistEntry * b) | |
2722 { | |
2723 const gchar *a_title, *b_title; | |
2724 | |
2725 g_return_val_if_fail(a != NULL, 0); | |
2726 g_return_val_if_fail(b != NULL, 0); | |
2727 | |
2728 if (a->title) | |
2729 a_title = a->title; | |
2730 else { | |
2731 if (strrchr(a->filename, '/')) | |
2732 a_title = strrchr(a->filename, '/') + 1; | |
2733 else | |
2734 a_title = a->filename; | |
2735 } | |
2736 | |
2737 if (b->title) | |
2738 b_title = b->title; | |
2739 else { | |
2740 if (strrchr(a->filename, '/')) | |
2741 b_title = strrchr(b->filename, '/') + 1; | |
2742 else | |
2743 b_title = b->filename; | |
2744 } | |
2745 | |
2746 return strcmp(a_title, b_title); | |
2747 } | |
2748 | |
2749 static gint | |
2750 playlist_dupscmp_filename(PlaylistEntry * a, | |
2751 PlaylistEntry * b ) | |
2752 { | |
2753 gchar *a_filename, *b_filename; | |
2754 | |
2755 g_return_val_if_fail(a != NULL, 0); | |
2756 g_return_val_if_fail(b != NULL, 0); | |
2757 | |
2758 if (strrchr(a->filename, '/')) | |
2759 a_filename = strrchr(a->filename, '/') + 1; | |
2760 else | |
2761 a_filename = a->filename; | |
2762 | |
2763 if (strrchr(b->filename, '/')) | |
2764 b_filename = strrchr(b->filename, '/') + 1; | |
2765 else | |
2766 b_filename = b->filename; | |
2767 | |
2768 return strcmp(a_filename, b_filename); | |
2769 } | |
2770 | |
2771 static gint | |
2772 playlist_dupscmp_path(PlaylistEntry * a, | |
2773 PlaylistEntry * b) | |
2774 { | |
2775 /* simply compare the entire filename string */ | |
2776 return strcmp(a->filename, b->filename); | |
2777 } | |
2778 | |
2779 void | |
2780 playlist_remove_duplicates(Playlist *playlist, PlaylistDupsType type) | |
2781 { | |
2782 GList *node, *next_node; | |
2783 GList *node_cmp, *next_node_cmp; | |
2784 gint (*dups_compare_func)(PlaylistEntry * , PlaylistEntry *); | |
2785 | |
2786 switch ( type ) | |
2787 { | |
2788 case PLAYLIST_DUPS_TITLE: | |
2789 dups_compare_func = playlist_dupscmp_title; | |
2790 break; | |
2791 case PLAYLIST_DUPS_PATH: | |
2792 dups_compare_func = playlist_dupscmp_path; | |
2793 break; | |
2794 case PLAYLIST_DUPS_FILENAME: | |
2795 default: | |
2796 dups_compare_func = playlist_dupscmp_filename; | |
2797 break; | |
2798 } | |
2799 | |
2800 PLAYLIST_LOCK(playlist->mutex); | |
2801 | |
2802 for (node = playlist->entries; node; node = next_node) { | |
2803 PlaylistEntry *entry = PLAYLIST_ENTRY(node->data); | |
2804 next_node = g_list_next(node); | |
2805 | |
2806 if (!entry || !entry->filename) { | |
2807 g_message(G_STRLOC ": Playlist entry is invalid!"); | |
2808 continue; | |
2809 } | |
2810 | |
2811 for (node_cmp = next_node; node_cmp; node_cmp = next_node_cmp) { | |
2812 PlaylistEntry *entry_cmp = PLAYLIST_ENTRY(node_cmp->data); | |
2813 next_node_cmp = g_list_next(node_cmp); | |
2814 | |
2815 if (!entry_cmp || !entry_cmp->filename) { | |
2816 g_message(G_STRLOC ": Playlist entry is invalid!"); | |
2817 continue; | |
2818 } | |
2819 | |
2820 /* compare using the chosen dups_compare_func */ | |
2821 if ( !dups_compare_func( entry , entry_cmp ) ) { | |
2822 | |
2823 if (entry_cmp == playlist->position) { | |
2824 /* Don't remove the currently playing song */ | |
2825 if (playback_get_playing()) | |
2826 continue; | |
2827 | |
2828 if (next_node_cmp) | |
2829 playlist->position = PLAYLIST_ENTRY(next_node_cmp->data); | |
2830 else | |
2831 playlist->position = NULL; | |
2832 } | |
2833 | |
2834 /* check if this was the next item of the external | |
2835 loop; if true, replace it with the next of the next*/ | |
2836 if ( node_cmp == next_node ) | |
2837 next_node = g_list_next(next_node); | |
2838 | |
2839 playlist_entry_free(entry_cmp); | |
2840 playlist->entries = g_list_delete_link(playlist->entries, node_cmp); | |
2841 } | |
2842 } | |
2843 } | |
2844 | |
2845 PLAYLIST_UNLOCK(playlist->mutex); | |
2846 | |
2847 playlistwin_update_list(playlist); | |
2848 playlist_recalc_total_time(playlist); | |
2849 | |
2850 playlist_manager_update(); | |
2851 } | |
2852 | |
2853 void | |
2854 playlist_get_total_time(Playlist * playlist, | |
2855 gulong * total_time, | |
2856 gulong * selection_time, | |
2857 gboolean * total_more, | |
2858 gboolean * selection_more) | |
2859 { | |
2860 PLAYLIST_LOCK(playlist->mutex); | |
2861 *total_time = playlist->pl_total_time; | |
2862 *selection_time = playlist->pl_selection_time; | |
2863 *total_more = playlist->pl_total_more; | |
2864 *selection_more = playlist->pl_selection_more; | |
2865 PLAYLIST_UNLOCK(playlist->mutex); | |
2866 } | |
2867 | |
2868 | |
2869 static void | |
2870 playlist_recalc_total_time_nolock(Playlist *playlist) | |
2871 { | |
2872 GList *list; | |
2873 PlaylistEntry *entry; | |
2874 | |
2875 REQUIRE_LOCK(playlist->mutex); | |
2876 | |
2877 playlist->pl_total_time = 0; | |
2878 playlist->pl_selection_time = 0; | |
2879 playlist->pl_total_more = FALSE; | |
2880 playlist->pl_selection_more = FALSE; | |
2881 | |
2882 for (list = playlist->entries; list; list = g_list_next(list)) { | |
2883 entry = list->data; | |
2884 | |
2885 if (entry->length != -1) | |
2886 playlist->pl_total_time += entry->length / 1000; | |
2887 else | |
2888 playlist->pl_total_more = TRUE; | |
2889 | |
2890 if (entry->selected) { | |
2891 if (entry->length != -1) | |
2892 playlist->pl_selection_time += entry->length / 1000; | |
2893 else | |
2894 playlist->pl_selection_more = TRUE; | |
2895 } | |
2896 } | |
2897 } | |
2898 | |
2899 static void | |
2900 playlist_recalc_total_time(Playlist *playlist) | |
2901 { | |
2902 PLAYLIST_LOCK(playlist->mutex); | |
2903 playlist_recalc_total_time_nolock(playlist); | |
2904 PLAYLIST_UNLOCK(playlist->mutex); | |
2905 } | |
2906 | |
2907 gint | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2908 playlist_select_search( Playlist *playlist , Tuple *tuple , gint action ) |
2313 | 2909 { |
2910 GList *entry_list = NULL, *found_list = NULL, *sel_list = NULL; | |
2911 gboolean is_first_search = TRUE; | |
2912 gint num_of_entries_found = 0; | |
2913 | |
2914 #if defined(USE_REGEX_ONIGURUMA) | |
2915 /* set encoding for Oniguruma regex to UTF-8 */ | |
2916 reg_set_encoding( REG_POSIX_ENCODING_UTF8 ); | |
2917 onig_set_default_syntax( ONIG_SYNTAX_POSIX_BASIC ); | |
2918 #endif | |
2919 | |
2920 PLAYLIST_LOCK(playlist->mutex); | |
2921 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2922 if ( tuple_get_string(tuple, "title") != NULL ) |
2313 | 2923 { |
2924 /* match by track_name */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2925 const gchar *regex_pattern = tuple_get_string(tuple, "title"); |
2313 | 2926 regex_t regex; |
2927 #if defined(USE_REGEX_PCRE) | |
2928 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 ) | |
2929 #else | |
2930 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE ) == 0 ) | |
2931 #endif | |
2932 { | |
2933 GList *tfound_list = NULL; | |
2934 if ( is_first_search == TRUE ) entry_list = playlist->entries; | |
2935 else entry_list = found_list; /* use found_list */ | |
2936 for ( ; entry_list ; entry_list = g_list_next(entry_list) ) | |
2937 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2938 const gchar *track_name = tuple_get_string( tuple, "title" ); |
2313 | 2939 PlaylistEntry *entry = entry_list->data; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2940 if ( ( entry->tuple != NULL ) && ( track_name != NULL ) && |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2941 ( regexec( ®ex , track_name , 0 , NULL , 0 ) == 0 ) ) |
2313 | 2942 { |
2943 tfound_list = g_list_append( tfound_list , entry ); | |
2944 } | |
2945 } | |
2946 g_list_free( found_list ); /* wipe old found_list */ | |
2947 found_list = tfound_list; /* move tfound_list in found_list */ | |
2948 regfree( ®ex ); | |
2949 } | |
2950 is_first_search = FALSE; | |
2951 } | |
2952 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2953 if ( tuple_get_string(tuple, "album") != NULL ) |
2313 | 2954 { |
2955 /* match by album_name */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2956 const gchar *regex_pattern = tuple_get_string(tuple, "album"); |
2313 | 2957 regex_t regex; |
2958 #if defined(USE_REGEX_PCRE) | |
2959 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 ) | |
2960 #else | |
2961 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE ) == 0 ) | |
2962 #endif | |
2963 { | |
2964 GList *tfound_list = NULL; | |
2965 if ( is_first_search == TRUE ) entry_list = playlist->entries; | |
2966 else entry_list = found_list; /* use found_list */ | |
2967 for ( ; entry_list ; entry_list = g_list_next(entry_list) ) | |
2968 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2969 const gchar *album_name = tuple_get_string( tuple, "album" ); |
2313 | 2970 PlaylistEntry *entry = entry_list->data; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2971 if ( ( entry->tuple != NULL ) && ( album_name != NULL ) && |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2972 ( regexec( ®ex , album_name , 0 , NULL , 0 ) == 0 ) ) |
2313 | 2973 { |
2974 tfound_list = g_list_append( tfound_list , entry ); | |
2975 } | |
2976 } | |
2977 g_list_free( found_list ); /* wipe old found_list */ | |
2978 found_list = tfound_list; /* move tfound_list in found_list */ | |
2979 regfree( ®ex ); | |
2980 } | |
2981 is_first_search = FALSE; | |
2982 } | |
2983 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2984 if ( tuple_get_string(tuple, "artist") != NULL ) |
2313 | 2985 { |
2986 /* match by performer */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
2987 const gchar *regex_pattern = tuple_get_string(tuple, "artist"); |
2313 | 2988 regex_t regex; |
2989 #if defined(USE_REGEX_PCRE) | |
2990 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 ) | |
2991 #else | |
2992 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE ) == 0 ) | |
2993 #endif | |
2994 { | |
2995 GList *tfound_list = NULL; | |
2996 if ( is_first_search == TRUE ) entry_list = playlist->entries; | |
2997 else entry_list = found_list; /* use found_list */ | |
2998 for ( ; entry_list ; entry_list = g_list_next(entry_list) ) | |
2999 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3000 const gchar *performer = tuple_get_string( tuple, "performer" ); |
2313 | 3001 PlaylistEntry *entry = entry_list->data; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3002 if ( ( entry->tuple != NULL ) && ( performer != NULL ) && |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3003 ( regexec( ®ex , performer , 0 , NULL , 0 ) == 0 ) ) |
2313 | 3004 { |
3005 tfound_list = g_list_append( tfound_list , entry ); | |
3006 } | |
3007 } | |
3008 g_list_free( found_list ); /* wipe old found_list */ | |
3009 found_list = tfound_list; /* move tfound_list in found_list */ | |
3010 regfree( ®ex ); | |
3011 } | |
3012 is_first_search = FALSE; | |
3013 } | |
3014 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3015 if ( tuple_get_string(tuple, "file-name") != NULL ) |
2313 | 3016 { |
3017 /* match by file_name */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3018 const gchar *regex_pattern = tuple_get_string(tuple, "file-name"); |
2313 | 3019 regex_t regex; |
3020 #if defined(USE_REGEX_PCRE) | |
3021 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE | REG_UTF8 ) == 0 ) | |
3022 #else | |
3023 if ( regcomp( ®ex , regex_pattern , REG_NOSUB | REG_ICASE ) == 0 ) | |
3024 #endif | |
3025 { | |
3026 GList *tfound_list = NULL; | |
3027 if ( is_first_search == TRUE ) entry_list = playlist->entries; | |
3028 else entry_list = found_list; /* use found_list */ | |
3029 for ( ; entry_list ; entry_list = g_list_next(entry_list) ) | |
3030 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3031 const gchar *file_name = tuple_get_string( tuple, "file-name" ); |
2313 | 3032 PlaylistEntry *entry = entry_list->data; |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3033 if ( ( entry->tuple != NULL ) && ( file_name != NULL ) && |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3034 ( regexec( ®ex , file_name , 0 , NULL , 0 ) == 0 ) ) |
2313 | 3035 { |
3036 tfound_list = g_list_append( tfound_list , entry ); | |
3037 } | |
3038 } | |
3039 g_list_free( found_list ); /* wipe old found_list */ | |
3040 found_list = tfound_list; /* move tfound_list in found_list */ | |
3041 regfree( ®ex ); | |
3042 } | |
3043 is_first_search = FALSE; | |
3044 } | |
3045 | |
3046 /* NOTE: action = 0 -> default behaviour, select all matching entries */ | |
3047 /* if some entries are still in found_list, those | |
3048 are what the user is searching for; select them */ | |
3049 for ( sel_list = found_list ; sel_list ; sel_list = g_list_next(sel_list) ) | |
3050 { | |
3051 PlaylistEntry *entry = sel_list->data; | |
3052 entry->selected = TRUE; | |
3053 num_of_entries_found++; | |
3054 } | |
3055 | |
3056 g_list_free( found_list ); | |
3057 | |
3058 PLAYLIST_UNLOCK(playlist->mutex); | |
3059 playlist_recalc_total_time(playlist); | |
3060 | |
3061 return num_of_entries_found; | |
3062 } | |
3063 | |
3064 void | |
3065 playlist_select_all(Playlist *playlist, gboolean set) | |
3066 { | |
3067 GList *list; | |
3068 | |
3069 PLAYLIST_LOCK(playlist->mutex); | |
3070 | |
3071 for (list = playlist->entries; list; list = g_list_next(list)) { | |
3072 PlaylistEntry *entry = list->data; | |
3073 entry->selected = set; | |
3074 } | |
3075 | |
3076 PLAYLIST_UNLOCK(playlist->mutex); | |
3077 playlist_recalc_total_time(playlist); | |
3078 } | |
3079 | |
3080 void | |
3081 playlist_select_invert_all(Playlist *playlist) | |
3082 { | |
3083 GList *list; | |
3084 | |
3085 PLAYLIST_LOCK(playlist->mutex); | |
3086 | |
3087 for (list = playlist->entries; list; list = g_list_next(list)) { | |
3088 PlaylistEntry *entry = list->data; | |
3089 entry->selected = !entry->selected; | |
3090 } | |
3091 | |
3092 PLAYLIST_UNLOCK(playlist->mutex); | |
3093 playlist_recalc_total_time(playlist); | |
3094 } | |
3095 | |
3096 gboolean | |
3097 playlist_select_invert(Playlist *playlist, guint pos) | |
3098 { | |
3099 GList *list; | |
3100 gboolean invert_ok = FALSE; | |
3101 | |
3102 PLAYLIST_LOCK(playlist->mutex); | |
3103 | |
3104 if ((list = g_list_nth(playlist->entries, pos))) { | |
3105 PlaylistEntry *entry = list->data; | |
3106 entry->selected = !entry->selected; | |
3107 invert_ok = TRUE; | |
3108 } | |
3109 | |
3110 PLAYLIST_UNLOCK(playlist->mutex); | |
3111 playlist_recalc_total_time(playlist); | |
3112 | |
3113 return invert_ok; | |
3114 } | |
3115 | |
3116 | |
3117 void | |
3118 playlist_select_range(Playlist *playlist, gint min_pos, gint max_pos, gboolean select) | |
3119 { | |
3120 GList *list; | |
3121 gint i; | |
3122 | |
3123 if (min_pos > max_pos) | |
3124 SWAP(min_pos, max_pos); | |
3125 | |
3126 PLAYLIST_LOCK(playlist->mutex); | |
3127 | |
3128 list = g_list_nth(playlist->entries, min_pos); | |
3129 for (i = min_pos; i <= max_pos && list; i++) { | |
3130 PlaylistEntry *entry = list->data; | |
3131 entry->selected = select; | |
3132 list = g_list_next(list); | |
3133 } | |
3134 | |
3135 PLAYLIST_UNLOCK(playlist->mutex); | |
3136 | |
3137 playlist_recalc_total_time(playlist); | |
3138 } | |
3139 | |
3140 gboolean | |
3141 playlist_read_info_selection(Playlist *playlist) | |
3142 { | |
3143 GList *node; | |
3144 gboolean retval = FALSE; | |
3145 | |
3146 PLAYLIST_LOCK(playlist->mutex); | |
3147 | |
3148 for (node = playlist->entries; node; node = g_list_next(node)) { | |
3149 PlaylistEntry *entry = node->data; | |
3150 if (!entry->selected) | |
3151 continue; | |
3152 | |
3153 retval = TRUE; | |
3154 | |
3155 str_replace_in(&entry->title, NULL); | |
3156 entry->length = -1; | |
3157 | |
3158 /* invalidate mtime to reread */ | |
3159 if (entry->tuple != NULL) | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3246
diff
changeset
|
3160 tuple_associate_int(entry->tuple, "mtime", -1); /* -1 denotes "non-initialized". now 0 is for stream etc. yaz */ |
2313 | 3161 |
3162 if (!playlist_entry_get_info(entry)) { | |
3163 if (g_list_index(playlist->entries, entry) == -1) | |
3164 /* Entry disappeared while we looked it up. Restart. */ | |
3165 node = playlist->entries; | |
3166 } | |
3167 } | |
3168 | |
3169 PLAYLIST_UNLOCK(playlist->mutex); | |
3170 | |
3171 playlistwin_update_list(playlist); | |
3172 playlist_recalc_total_time(playlist); | |
3173 | |
3174 return retval; | |
3175 } | |
3176 | |
3177 void | |
3178 playlist_read_info(Playlist *playlist, guint pos) | |
3179 { | |
3180 GList *node; | |
3181 | |
3182 PLAYLIST_LOCK(playlist->mutex); | |
3183 | |
3184 if ((node = g_list_nth(playlist->entries, pos))) { | |
3185 PlaylistEntry *entry = node->data; | |
3186 str_replace_in(&entry->title, NULL); | |
3187 entry->length = -1; | |
3188 playlist_entry_get_info(entry); | |
3189 } | |
3190 | |
3191 PLAYLIST_UNLOCK(playlist->mutex); | |
3192 | |
3193 playlistwin_update_list(playlist); | |
3194 playlist_recalc_total_time(playlist); | |
3195 } | |
3196 | |
3197 Playlist * | |
3198 playlist_get_active(void) | |
3199 { | |
3200 if (playlists_iter != NULL) | |
3201 return (Playlist *) playlists_iter->data; | |
3202 | |
2736 | 3203 if (playlists) |
3204 return (Playlist *) playlists->data; | |
3205 | |
3206 return NULL; | |
2313 | 3207 } |
3208 | |
3209 void | |
3210 playlist_set_shuffle(gboolean shuffle) | |
3211 { | |
3212 Playlist *playlist = playlist_get_active(); | |
3213 if (!playlist) | |
3214 return; | |
3215 | |
3216 PLAYLIST_LOCK(playlist->mutex); | |
3217 | |
3218 playlist_position_before_jump = NULL; | |
3219 | |
3220 cfg.shuffle = shuffle; | |
3221 playlist_generate_shuffle_list_nolock(playlist); | |
3222 | |
3223 PLAYLIST_UNLOCK(playlist->mutex); | |
3224 } | |
3225 | |
3226 Playlist * | |
3227 playlist_new(void) | |
3228 { | |
3229 Playlist *playlist = g_new0(Playlist, 1); | |
3230 playlist->mutex = g_mutex_new(); | |
3231 playlist->loading_playlist = FALSE; | |
3232 | |
3233 playlist_set_current_name(playlist, NULL); | |
3234 playlist_clear(playlist); | |
3235 | |
3236 return playlist; | |
3237 } | |
3238 | |
3239 void | |
3240 playlist_free(Playlist *playlist) | |
3241 { | |
3242 g_mutex_free( playlist->mutex ); | |
3243 g_free( playlist ); | |
3244 return; | |
3245 } | |
3246 | |
3247 Playlist * | |
3248 playlist_new_from_selected(void) | |
3249 { | |
3250 Playlist *newpl = playlist_new(); | |
3251 Playlist *playlist = playlist_get_active(); | |
3252 GList *list = playlist_get_selected(playlist); | |
3253 | |
3254 playlist_add_playlist( newpl ); | |
3255 | |
3256 PLAYLIST_LOCK(playlist->mutex); | |
3257 | |
3258 while ( list != NULL ) | |
3259 { | |
3260 PlaylistEntry *entry = g_list_nth_data(playlist->entries, GPOINTER_TO_INT(list->data)); | |
3261 if ( entry->filename != NULL ) /* paranoid? oh well... */ | |
3262 playlist_add( newpl , entry->filename ); | |
3263 list = g_list_next(list); | |
3264 } | |
3265 | |
3266 PLAYLIST_UNLOCK(playlist->mutex); | |
3267 | |
3268 playlist_recalc_total_time(newpl); | |
3269 playlistwin_update_list(playlist); | |
3270 | |
3271 return newpl; | |
3272 } | |
3273 | |
3274 const gchar * | |
3275 playlist_get_filename_to_play(Playlist *playlist) | |
3276 { | |
3277 const gchar *filename = NULL; | |
3278 | |
3279 if (!playlist) | |
3280 return NULL; | |
3281 | |
3282 PLAYLIST_LOCK(playlist->mutex); | |
3283 | |
3284 if (!playlist->position) { | |
3285 if (cfg.shuffle) | |
3286 playlist->position = playlist->shuffle->data; | |
3287 else | |
3288 playlist->position = playlist->entries->data; | |
3289 } | |
3290 | |
3291 filename = playlist->position->filename; | |
3292 | |
3293 PLAYLIST_UNLOCK(playlist->mutex); | |
3294 | |
3295 return filename; | |
3296 } | |
3297 | |
3298 PlaylistEntry * | |
3299 playlist_get_entry_to_play(Playlist *playlist) | |
3300 { | |
3301 if (!playlist) | |
3302 return NULL; | |
3303 | |
3304 PLAYLIST_LOCK(playlist->mutex); | |
3305 | |
3306 if (!playlist->position) { | |
3307 if (cfg.shuffle) | |
3308 playlist->position = playlist->shuffle->data; | |
3309 else | |
3310 playlist->position = playlist->entries->data; | |
3311 } | |
3312 | |
3313 PLAYLIST_UNLOCK(playlist->mutex); | |
3314 | |
3315 return playlist->position; | |
3316 } |