Mercurial > audlegacy
annotate src/audacious/input.c @ 3492:1f250eb90dfe trunk
Merge.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 03 Sep 2007 10:41:19 +0300 |
parents | 602ec8c40d0d 820c2db12041 |
children | 95d6cbf21614 |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
2 * Copyright (C) 2005-2007 Audacious development team |
2313 | 3 * |
4 * Based on BMP: | |
5 * Copyright (C) 2003-2004 BMP development team | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3110
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
2313 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3110
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
2313 | 24 */ |
25 | |
26 #ifdef HAVE_CONFIG_H | |
27 # include "config.h" | |
28 #endif | |
29 | |
30 #include <glib.h> | |
31 #include <glib/gi18n.h> | |
32 #include <gtk/gtk.h> | |
33 #include <string.h> | |
34 | |
35 #include "fft.h" | |
36 #include "input.h" | |
37 #include "main.h" | |
38 #include "output.h" | |
39 #include "playback.h" | |
40 #include "pluginenum.h" | |
2420 | 41 #include "strings.h" |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
42 #include "tuple.h" |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
43 #include "tuple_formatter.h" |
2420 | 44 #include "ui_main.h" |
45 #include "util.h" | |
46 #include "visualization.h" | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
47 #include "ui_skinned_playstatus.h" |
2505 | 48 #include "hook.h" |
2313 | 49 |
2347
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
50 #include "vfs.h" |
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
51 #include "vfs_buffer.h" |
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
52 #include "vfs_buffered_file.h" |
74bbc3e18cba
[svn] - fix W:input.c(422) [input_check_file]:Implicit declaration
nenolod
parents:
2344
diff
changeset
|
53 |
2313 | 54 G_LOCK_DEFINE_STATIC(vis_mutex); |
55 | |
56 struct _VisNode { | |
57 gint time; | |
58 gint nch; | |
59 gint length; /* number of samples per channel */ | |
60 gint16 data[2][512]; | |
61 }; | |
62 | |
63 typedef struct _VisNode VisNode; | |
64 | |
65 | |
66 InputPluginData ip_data = { | |
67 NULL, | |
68 NULL, | |
69 FALSE, | |
70 FALSE, | |
71 FALSE, | |
72 FALSE, | |
73 NULL | |
74 }; | |
75 | |
76 static GList *vis_list = NULL; | |
77 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
78 InputPlayback * |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
79 get_current_input_playback(void) |
2313 | 80 { |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
81 return ip_data.current_input_playback; |
2313 | 82 } |
83 | |
84 void | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
85 set_current_input_playback(InputPlayback * ip) |
2313 | 86 { |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
87 ip_data.current_input_playback = ip; |
2313 | 88 } |
89 | |
90 GList * | |
91 get_input_list(void) | |
92 { | |
93 return ip_data.input_list; | |
94 } | |
95 | |
96 | |
97 gboolean | |
98 input_is_enabled(const gchar * filename) | |
99 { | |
100 gchar *basename = g_path_get_basename(filename); | |
101 gint enabled; | |
102 | |
103 enabled = GPOINTER_TO_INT(g_hash_table_lookup(plugin_matrix, basename)); | |
104 g_free(basename); | |
105 | |
106 return enabled; | |
107 } | |
108 | |
109 static void | |
110 disabled_iplugins_foreach_func(const gchar * name, | |
111 gboolean enabled, | |
112 GString * list) | |
113 { | |
114 g_return_if_fail(list != NULL); | |
115 | |
116 if (enabled) | |
117 return; | |
118 | |
119 if (list->len > 0) | |
120 g_string_append(list, ":"); | |
121 | |
122 g_string_append(list, name); | |
123 } | |
124 | |
125 gchar * | |
126 input_stringify_disabled_list(void) | |
127 { | |
128 GString *disabled_list; | |
129 | |
130 disabled_list = g_string_new(""); | |
131 g_hash_table_foreach(plugin_matrix, | |
132 (GHFunc) disabled_iplugins_foreach_func, | |
133 disabled_list); | |
134 | |
135 return g_string_free(disabled_list, FALSE); | |
136 } | |
137 | |
138 void | |
139 free_vis_data(void) | |
140 { | |
141 G_LOCK(vis_mutex); | |
142 g_list_foreach(vis_list, (GFunc) g_free, NULL); | |
143 g_list_free(vis_list); | |
144 vis_list = NULL; | |
145 G_UNLOCK(vis_mutex); | |
146 } | |
147 | |
148 static void | |
149 convert_to_s16_ne(AFormat fmt, gpointer ptr, gint16 * left, | |
150 gint16 * right, gint nch, gint max) | |
151 { | |
152 gint16 *ptr16; | |
153 guint16 *ptru16; | |
154 guint8 *ptru8; | |
155 gint i; | |
156 | |
157 switch (fmt) { | |
158 case FMT_U8: | |
159 ptru8 = ptr; | |
160 if (nch == 1) | |
161 for (i = 0; i < max; i++) | |
162 left[i] = ((*ptru8++) ^ 128) << 8; | |
163 else | |
164 for (i = 0; i < max; i++) { | |
165 left[i] = ((*ptru8++) ^ 128) << 8; | |
166 right[i] = ((*ptru8++) ^ 128) << 8; | |
167 } | |
168 break; | |
169 case FMT_S8: | |
170 ptru8 = ptr; | |
171 if (nch == 1) | |
172 for (i = 0; i < max; i++) | |
173 left[i] = (*ptru8++) << 8; | |
174 else | |
175 for (i = 0; i < max; i++) { | |
176 left[i] = (*ptru8++) << 8; | |
177 right[i] = (*ptru8++) << 8; | |
178 } | |
179 break; | |
180 case FMT_U16_LE: | |
181 ptru16 = ptr; | |
182 if (nch == 1) | |
183 for (i = 0; i < max; i++, ptru16++) | |
184 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
185 else | |
186 for (i = 0; i < max; i++) { | |
187 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
188 ptru16++; | |
189 right[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
190 ptru16++; | |
191 } | |
192 break; | |
193 case FMT_U16_BE: | |
194 ptru16 = ptr; | |
195 if (nch == 1) | |
196 for (i = 0; i < max; i++, ptru16++) | |
197 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
198 else | |
199 for (i = 0; i < max; i++) { | |
200 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
201 ptru16++; | |
202 right[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
203 ptru16++; | |
204 } | |
205 break; | |
206 case FMT_U16_NE: | |
207 ptru16 = ptr; | |
208 if (nch == 1) | |
209 for (i = 0; i < max; i++) | |
210 left[i] = (*ptru16++) ^ 32768; | |
211 else | |
212 for (i = 0; i < max; i++) { | |
213 left[i] = (*ptru16++) ^ 32768; | |
214 right[i] = (*ptru16++) ^ 32768; | |
215 } | |
216 break; | |
217 case FMT_S16_LE: | |
218 ptr16 = ptr; | |
219 if (nch == 1) | |
220 for (i = 0; i < max; i++, ptr16++) | |
221 left[i] = GINT16_FROM_LE(*ptr16); | |
222 else | |
223 for (i = 0; i < max; i++) { | |
224 left[i] = GINT16_FROM_LE(*ptr16); | |
225 ptr16++; | |
226 right[i] = GINT16_FROM_LE(*ptr16); | |
227 ptr16++; | |
228 } | |
229 break; | |
230 case FMT_S16_BE: | |
231 ptr16 = ptr; | |
232 if (nch == 1) | |
233 for (i = 0; i < max; i++, ptr16++) | |
234 left[i] = GINT16_FROM_BE(*ptr16); | |
235 else | |
236 for (i = 0; i < max; i++) { | |
237 left[i] = GINT16_FROM_BE(*ptr16); | |
238 ptr16++; | |
239 right[i] = GINT16_FROM_BE(*ptr16); | |
240 ptr16++; | |
241 } | |
242 break; | |
243 case FMT_S16_NE: | |
244 ptr16 = ptr; | |
245 if (nch == 1) | |
246 for (i = 0; i < max; i++) | |
247 left[i] = (*ptr16++); | |
248 else | |
249 for (i = 0; i < max; i++) { | |
250 left[i] = (*ptr16++); | |
251 right[i] = (*ptr16++); | |
252 } | |
253 break; | |
254 } | |
255 } | |
256 | |
257 InputVisType | |
258 input_get_vis_type() | |
259 { | |
260 return INPUT_VIS_OFF; | |
261 } | |
262 | |
263 void | |
264 input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, gpointer ptr) | |
265 { | |
266 VisNode *vis_node; | |
267 gint max; | |
268 | |
269 max = length / nch; | |
270 if (fmt == FMT_U16_LE || fmt == FMT_U16_BE || fmt == FMT_U16_NE || | |
271 fmt == FMT_S16_LE || fmt == FMT_S16_BE || fmt == FMT_S16_NE) | |
272 max /= 2; | |
273 max = CLAMP(max, 0, 512); | |
274 | |
275 vis_node = g_new0(VisNode, 1); | |
276 vis_node->time = time; | |
277 vis_node->nch = nch; | |
278 vis_node->length = max; | |
279 convert_to_s16_ne(fmt, ptr, vis_node->data[0], vis_node->data[1], nch, | |
280 max); | |
281 | |
282 G_LOCK(vis_mutex); | |
283 vis_list = g_list_append(vis_list, vis_node); | |
284 G_UNLOCK(vis_mutex); | |
285 } | |
286 | |
287 void | |
288 input_dont_show_warning(GtkObject * object, gpointer user_data) | |
289 { | |
290 *((gboolean *) user_data) = | |
291 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object)); | |
292 } | |
293 | |
3133
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
294 static time_t |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
295 input_get_mtime(const gchar *filename) |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
296 { |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
297 struct stat buf; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
298 gint rv; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
299 gchar *realfn = NULL; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
300 |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
301 /* stat() does not accept file:// --yaz */ |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
302 realfn = g_filename_from_uri(filename, NULL, NULL); |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
303 rv = stat(realfn ? realfn : filename, &buf); |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
304 g_free(realfn); realfn = NULL; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
305 |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
306 if (rv == 0) { |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
307 return buf.st_mtime; |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
308 } else { |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
309 return 0; //error |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
310 } |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
311 } |
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
312 |
2313 | 313 /* |
314 * input_check_file() | |
315 * | |
316 * Inputs: | |
317 * filename to check recursively against input plugins | |
318 * whether or not to show an error | |
319 * | |
320 * Outputs: | |
321 * pointer to input plugin which can handle this file | |
322 * otherwise, NULL | |
323 * | |
324 * (the previous code returned a boolean of whether or not we can | |
325 * play the file... even WORSE for performance) | |
326 * | |
327 * Side Effects: | |
328 * various input plugins open the file and probe it | |
329 * -- this can have very ugly effects performance wise on streams | |
330 * | |
331 * --nenolod, Dec 31 2005 | |
332 * | |
333 * Rewritten to use NewVFS probing, semantics are still basically the same. | |
334 * | |
335 * --nenolod, Dec 5 2006 | |
336 * | |
337 * Adapted to use the NewVFS extension probing system if enabled. | |
338 * | |
339 * --nenolod, Dec 12 2006 | |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
340 * |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
341 * Adapted to use the mimetype system. |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
342 * |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
343 * --nenolod, Jul 9 2007 |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
344 * |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
345 * Adapted to return ProbeResult structure. |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
346 * |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
347 * --nenolod, Jul 20 2007 |
2313 | 348 */ |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
349 ProbeResult * |
2313 | 350 input_check_file(const gchar * filename, gboolean show_warning) |
351 { | |
352 VFSFile *fd; | |
353 GList *node; | |
354 InputPlugin *ip; | |
355 gchar *filename_proxy; | |
356 gint ret = 1; | |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
357 gchar *ext, *tmp, *tmp_uri; |
2313 | 358 gboolean use_ext_filter; |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
359 gchar *mimetype; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
360 ProbeResult *pr = NULL; |
2313 | 361 |
362 filename_proxy = g_strdup(filename); | |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
363 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
364 /* Some URIs will end in ?<subsong> to determine the subsong requested. */ |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
365 tmp_uri = g_strdup(filename); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
366 |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
367 tmp = strrchr(tmp_uri, '?'); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
368 |
3144
2812140dba3f
Backed out changeset 4673533d7cc3
Cristi Magherusan <majeru@atheme-project.org>
parents:
3143
diff
changeset
|
369 if (tmp != NULL && g_ascii_isdigit(*(tmp + 1))) |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
370 *tmp = '\0'; |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
371 |
3341
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
372 /* Check for plugins with custom URI:// strings */ |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
373 /* cue:// cdda:// tone:// tact:// */ |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
374 if ((ip = uri_get_plugin(filename)) != NULL && |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
375 input_is_enabled(ip->filename) == TRUE) |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
376 { |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
377 if (ip->is_our_file != NULL) |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
378 ret = ip->is_our_file(filename_proxy); |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
379 else |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
380 ret = 0; |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
381 if (ret > 0) |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
382 { |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
383 g_free(filename_proxy); |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
384 pr = g_new0(ProbeResult, 1); |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
385 pr->ip = ip; |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
386 return pr; |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
387 } |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
388 g_free(filename_proxy); |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
389 return NULL; |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
390 } |
3da640de0e99
Check for registered URI://s defined by uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents:
3334
diff
changeset
|
391 |
3145
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
392 /* CD-Audio uses cdda:// dummy paths, no filedescriptor handling for it */ |
3162
5161ced1bce2
exclude cue:// from regular scheme check. it is temporal too.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3145
diff
changeset
|
393 /* also cuesheet uses cue:// */ |
3343
f5a413804217
cue:// should get accepted before. Contact me if it breaks cue:// support somehow.
Christian Birchinger <joker@netswarm.net>
parents:
3342
diff
changeset
|
394 /* |
3342
5d50b9604ddc
Remove hardcoded test because uri_get_plugin should take care of it now
Christian Birchinger <joker@netswarm.net>
parents:
3341
diff
changeset
|
395 if (!g_strncasecmp(filename, "cue://", 6)) { |
3145
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
396 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
397 { |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
398 ip = INPUT_PLUGIN(node->data); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
399 if (!ip || !input_is_enabled(ip->filename)) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
400 continue; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
401 if (ip->is_our_file != NULL) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
402 ret = ip->is_our_file(filename_proxy); |
3169
b1964057a1a0
Hardcoded a dummy path to use with cdaudio-ng plugin
Calin Crisan ccrisan@gmail.com
parents:
3166
diff
changeset
|
403 else |
b1964057a1a0
Hardcoded a dummy path to use with cdaudio-ng plugin
Calin Crisan ccrisan@gmail.com
parents:
3166
diff
changeset
|
404 ret = 0; |
3145
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
405 if (ret > 0) |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
406 { |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
407 g_free(filename_proxy); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
408 pr = g_new0(ProbeResult, 1); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
409 pr->ip = ip; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
410 return pr; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
411 } |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
412 } |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
413 g_free(filename_proxy); |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
414 return NULL; |
0aaad77951c7
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
Tony Vroon <chainsaw@gentoo.org>
parents:
3144
diff
changeset
|
415 } |
3343
f5a413804217
cue:// should get accepted before. Contact me if it breaks cue:// support somehow.
Christian Birchinger <joker@netswarm.net>
parents:
3342
diff
changeset
|
416 */ |
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
417 fd = vfs_buffered_file_new_from_uri(tmp_uri); |
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
418 g_free(tmp_uri); |
2313 | 419 |
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
420 if (!fd) { |
3125 | 421 printf("Unable to read from %s, giving up.\n", filename_proxy); |
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
422 g_free(filename_proxy); |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
423 return NULL; |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
424 } |
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
425 |
2313 | 426 ext = strrchr(filename_proxy, '.') + 1; |
427 | |
2569 | 428 use_ext_filter = |
429 (fd != NULL && (!g_strncasecmp(filename, "/", 1) || | |
430 !g_strncasecmp(filename, "file://", 7))) ? TRUE : FALSE; | |
2313 | 431 |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
432 mimetype = vfs_get_metadata(fd, "content-type"); |
3200
95cfda3878da
oops, using a C0X extension (break-from-if) probably isn't cool here.
William Pitcock <nenolod@atheme-project.org>
parents:
3198
diff
changeset
|
433 if ((ip = mime_get_plugin(mimetype)) != NULL && |
95cfda3878da
oops, using a C0X extension (break-from-if) probably isn't cool here.
William Pitcock <nenolod@atheme-project.org>
parents:
3198
diff
changeset
|
434 input_is_enabled(ip->filename) == TRUE) |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
435 { |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
436 if (ip->probe_for_tuple != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
437 { |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
438 Tuple *tuple = ip->probe_for_tuple(filename_proxy, fd); |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
439 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
440 if (tuple != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
441 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
442 g_free(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
443 vfs_fclose(fd); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
444 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
445 pr = g_new0(ProbeResult, 1); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
446 pr->ip = ip; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
447 pr->tuple = tuple; |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
448 tuple_associate_int(pr->tuple, FIELD_MTIME, NULL, input_get_mtime(filename_proxy)); |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
449 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
450 return pr; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
451 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
452 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
453 else if (fd && ip->is_our_file_from_vfs != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
454 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
455 ret = ip->is_our_file_from_vfs(filename_proxy, fd); |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
456 |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
457 if (ret > 0) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
458 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
459 g_free(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
460 vfs_fclose(fd); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
461 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
462 pr = g_new0(ProbeResult, 1); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
463 pr->ip = ip; |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
464 |
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
465 return pr; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
466 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
467 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
468 else if (ip->is_our_file != NULL) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
469 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
470 ret = ip->is_our_file(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
471 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
472 if (ret > 0) |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
473 { |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
474 g_free(filename_proxy); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
475 vfs_fclose(fd); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
476 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
477 pr = g_new0(ProbeResult, 1); |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
478 pr->ip = ip; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
479 |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
480 return pr; |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
481 } |
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
482 } |
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
483 } |
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
484 |
2313 | 485 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
486 { | |
487 ip = INPUT_PLUGIN(node->data); | |
488 | |
489 if (!ip || !input_is_enabled(ip->filename)) | |
490 continue; | |
491 | |
2342
f140d0a27093
[svn] - use vfs_rewind() instead of vfs_fseek(fd, 0, seek_set) which was wrong
nenolod
parents:
2331
diff
changeset
|
492 vfs_rewind(fd); |
2313 | 493 |
2569 | 494 if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL && |
495 ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE) | |
2313 | 496 { |
497 gint i; | |
498 gboolean is_our_ext = FALSE; | |
499 | |
500 for (i = 0; ip->vfs_extensions[i] != NULL; i++) | |
501 { | |
502 if (str_has_prefix_nocase(ext, ip->vfs_extensions[i])) | |
2331 | 503 { |
504 is_our_ext = TRUE; | |
505 break; | |
506 } | |
2313 | 507 } |
508 | |
509 /* not a plugin that supports this extension */ | |
510 if (is_our_ext == FALSE) | |
511 continue; | |
512 } | |
513 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
514 if (fd && ip->probe_for_tuple != NULL) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
515 { |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
516 Tuple *tuple = ip->probe_for_tuple(filename_proxy, fd); |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
517 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
518 if (tuple != NULL) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
519 { |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
520 g_free(filename_proxy); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
521 vfs_fclose(fd); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
522 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
523 pr = g_new0(ProbeResult, 1); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
524 pr->ip = ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
525 pr->tuple = tuple; |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
526 tuple_associate_int(pr->tuple, FIELD_MTIME, NULL, input_get_mtime(filename_proxy)); |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
527 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
528 return pr; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
529 } |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
530 } |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
531 else if (fd && ip->is_our_file_from_vfs != NULL) |
2313 | 532 { |
533 ret = ip->is_our_file_from_vfs(filename_proxy, fd); | |
534 | |
535 if (ret > 0) | |
536 { | |
537 g_free(filename_proxy); | |
538 vfs_fclose(fd); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
539 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
540 pr = g_new0(ProbeResult, 1); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
541 pr->ip = ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
542 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
543 return pr; |
2313 | 544 } |
545 } | |
546 else if (ip->is_our_file != NULL) | |
547 { | |
548 ret = ip->is_our_file(filename_proxy); | |
549 | |
550 if (ret > 0) | |
551 { | |
552 g_free(filename_proxy); | |
553 vfs_fclose(fd); | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
554 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
555 pr = g_new0(ProbeResult, 1); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
556 pr->ip = ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
557 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
558 return pr; |
2313 | 559 } |
560 } | |
561 | |
2331 | 562 if (ret <= -1) |
563 break; | |
2313 | 564 } |
565 | |
566 g_free(filename_proxy); | |
567 | |
568 vfs_fclose(fd); | |
569 | |
570 return NULL; | |
571 } | |
572 | |
573 | |
574 void | |
575 input_set_eq(gint on, gfloat preamp, gfloat * bands) | |
576 { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
577 InputPlayback *playback; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
578 |
2313 | 579 if (!ip_data.playing) |
580 return; | |
581 | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
582 if ((playback = get_current_input_playback()) == NULL) |
2313 | 583 return; |
584 | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
585 if (playback->plugin->set_eq) |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
586 playback->plugin->set_eq(on, preamp, bands); |
2313 | 587 } |
588 | |
589 | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
590 Tuple * |
2313 | 591 input_get_song_tuple(const gchar * filename) |
592 { | |
593 InputPlugin *ip = NULL; | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
594 Tuple *input; |
2394
e2aaa7dca389
[svn] - tuple->file_name coming from input plugins have a string with filename + extension, but tuple->file_name coming from input plugins without a get_song_tuple have a string with filename without extension; fix this incongruency, always pass tuple->filename with a string containing filename + extension
giacomo
parents:
2373
diff
changeset
|
595 gchar *ext = NULL; |
2313 | 596 gchar *filename_proxy; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
597 ProbeResult *pr; |
2313 | 598 |
599 if (filename == NULL) | |
2331 | 600 return NULL; |
2313 | 601 |
602 filename_proxy = g_strdup(filename); | |
603 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
604 pr = input_check_file(filename_proxy, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
605 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
606 if (!pr) |
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
607 return NULL; |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
608 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
609 ip = pr->ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
610 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
611 g_free(pr); |
2313 | 612 |
2331 | 613 if (ip && ip->get_song_tuple) |
2313 | 614 input = ip->get_song_tuple(filename_proxy); |
2331 | 615 else |
616 { | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
617 gchar *tmp; |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
618 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
619 input = tuple_new(); |
2313 | 620 |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
621 tmp = g_strdup(filename); |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
622 if ((ext = strrchr(tmp, '.'))) |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
623 *ext = '\0'; |
2313 | 624 |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
625 tuple_associate_string(input, FIELD_FILE_NAME, NULL, g_path_get_basename(tmp)); |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
626 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
627 if (ext) |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
628 tuple_associate_string(input, FIELD_FILE_EXT, NULL, ext + 1); |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
629 |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
630 tuple_associate_string(input, FIELD_FILE_PATH, NULL, g_path_get_dirname(tmp)); |
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
631 tuple_associate_int(input, FIELD_LENGTH, NULL, -1); |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
632 |
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
633 g_free(tmp); |
2313 | 634 } |
635 | |
2569 | 636 g_free(filename_proxy); |
2313 | 637 return input; |
638 } | |
639 | |
640 static void | |
641 input_general_file_info_box(const gchar * filename, InputPlugin * ip) | |
642 { | |
643 GtkWidget *window, *vbox; | |
644 GtkWidget *label, *filename_hbox, *filename_entry; | |
645 GtkWidget *bbox, *cancel; | |
646 | |
647 gchar *title, *fileinfo, *basename, *iplugin; | |
648 gchar *filename_utf8; | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
649 gchar *realfn = NULL; |
2313 | 650 |
651 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
652 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
653 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); | |
654 | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
655 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:
3072
diff
changeset
|
656 basename = g_path_get_basename(realfn ? realfn : filename); |
2313 | 657 fileinfo = filename_to_utf8(basename); |
658 title = g_strdup_printf(_("audacious: %s"), fileinfo); | |
659 | |
660 gtk_window_set_title(GTK_WINDOW(window), title); | |
661 | |
662 g_free(title); | |
663 g_free(fileinfo); | |
664 g_free(basename); | |
665 | |
666 gtk_container_set_border_width(GTK_CONTAINER(window), 10); | |
667 | |
668 vbox = gtk_vbox_new(FALSE, 10); | |
669 gtk_container_add(GTK_CONTAINER(window), vbox); | |
670 | |
671 filename_hbox = gtk_hbox_new(FALSE, 5); | |
672 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0); | |
673 | |
674 label = gtk_label_new(_("Filename:")); | |
675 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0); | |
676 | |
677 filename_entry = gtk_entry_new(); | |
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
678 filename_utf8 = filename_to_utf8(realfn ? realfn : filename); |
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
679 g_free(realfn); realfn = NULL; |
2313 | 680 |
681 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8); | |
682 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE); | |
683 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0); | |
684 | |
685 g_free(filename_utf8); | |
686 | |
687 if (ip) | |
688 if (ip->description) | |
689 iplugin = ip->description; | |
690 else | |
691 iplugin = ip->filename; | |
692 else | |
693 iplugin = _("No input plugin recognized this file"); | |
694 | |
695 title = g_strdup_printf(_("Input plugin: %s"), iplugin); | |
696 | |
697 label = gtk_label_new(title); | |
698 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
699 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
700 g_free(title); | |
701 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0); | |
702 | |
703 bbox = gtk_hbutton_box_new(); | |
704 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
705 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
706 | |
707 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
708 g_signal_connect_swapped(G_OBJECT(cancel), "clicked", | |
709 GTK_SIGNAL_FUNC(gtk_widget_destroy), | |
710 GTK_OBJECT(window)); | |
711 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
712 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
713 | |
714 gtk_widget_show_all(window); | |
715 } | |
716 | |
717 void | |
718 input_file_info_box(const gchar * filename) | |
719 { | |
720 InputPlugin *ip; | |
721 gchar *filename_proxy; | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
722 ProbeResult *pr; |
2313 | 723 |
724 filename_proxy = g_strdup(filename); | |
725 | |
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
726 pr = input_check_file(filename_proxy, FALSE); |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
727 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
728 if (!pr) |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
729 return; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
730 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
731 ip = pr->ip; |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
732 |
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
733 g_free(pr); |
2313 | 734 |
735 if (ip->file_info_box) | |
736 ip->file_info_box(filename_proxy); | |
737 else | |
738 input_general_file_info_box(filename, ip); | |
739 | |
740 input_general_file_info_box(filename, NULL); | |
741 g_free(filename_proxy); | |
742 } | |
743 | |
744 GList * | |
745 input_scan_dir(const gchar * path) | |
746 { | |
747 GList *node, *result = NULL; | |
748 InputPlugin *ip; | |
749 gchar *path_proxy; | |
750 | |
751 g_return_val_if_fail(path != NULL, NULL); | |
752 | |
753 if (*path == '/') | |
754 while (path[1] == '/') | |
755 path++; | |
756 | |
757 path_proxy = g_strdup(path); | |
758 | |
759 for (node = get_input_list(); node; node = g_list_next(node)) { | |
760 ip = INPUT_PLUGIN(node->data); | |
761 | |
762 if (!ip) | |
763 continue; | |
764 | |
765 if (!ip->scan_dir) | |
766 continue; | |
767 | |
768 if (!input_is_enabled(ip->filename)) | |
769 continue; | |
770 | |
771 if ((result = ip->scan_dir(path_proxy))) | |
772 break; | |
773 } | |
774 | |
775 g_free(path_proxy); | |
776 | |
777 return result; | |
778 } | |
779 | |
780 void | |
781 input_get_volume(gint * l, gint * r) | |
782 { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
783 InputPlayback *playback; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
784 |
2313 | 785 *l = -1; |
786 *r = -1; | |
787 if (playback_get_playing()) { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
788 if ((playback = get_current_input_playback()) != NULL && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
789 playback->plugin->get_volume && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
790 playback->plugin->get_volume(l, r)) |
2313 | 791 return; |
792 } | |
793 output_get_volume(l, r); | |
794 } | |
795 | |
796 void | |
797 input_set_volume(gint l, gint r) | |
798 { | |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
799 InputPlayback *playback; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
800 |
2505 | 801 gint h_vol[2]; |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
802 |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
803 h_vol[0] = l; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
804 h_vol[1] = r; |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
805 hook_call("volume set", h_vol); |
2505 | 806 |
2569 | 807 if (playback_get_playing() && |
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
808 (playback = get_current_input_playback()) != NULL && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
809 playback->plugin->set_volume && |
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
810 playback->plugin->set_volume(l, r)) |
2569 | 811 return; |
812 | |
2313 | 813 output_set_volume(l, r); |
814 } | |
815 | |
816 void | |
817 input_update_vis(gint time) | |
818 { | |
819 GList *node; | |
820 VisNode *vis = NULL, *visnext = NULL; | |
821 gboolean found = FALSE; | |
822 | |
823 G_LOCK(vis_mutex); | |
824 node = vis_list; | |
825 while (g_list_next(node) && !found) { | |
826 visnext = g_list_next(node)->data; | |
827 vis = node->data; | |
828 | |
829 if (vis->time >= time) | |
830 break; | |
831 | |
832 vis_list = g_list_delete_link(vis_list, node); | |
833 | |
834 if (visnext->time >= time) { | |
835 found = TRUE; | |
836 break; | |
837 } | |
838 g_free(vis); | |
839 node = vis_list; | |
840 } | |
841 G_UNLOCK(vis_mutex); | |
842 | |
843 if (found) { | |
844 vis_send_data(vis->data, vis->nch, vis->length); | |
845 g_free(vis); | |
846 } | |
847 else | |
848 vis_send_data(NULL, 0, 0); | |
849 } | |
850 | |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
851 /* FIXME: move this somewhere else */ |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
852 void |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
853 input_set_info_text(gchar *text) |
2313 | 854 { |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
855 gchar *title = g_strdup(text); |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
856 event_queue("title change", title); |
2313 | 857 } |
858 | |
859 void | |
860 input_set_status_buffering(gboolean status) | |
861 { | |
862 if (!playback_get_playing()) | |
863 return; | |
864 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
865 if (!get_current_input_playback()) |
2313 | 866 return; |
867 | |
868 ip_data.buffering = status; | |
869 | |
870 g_return_if_fail(mainwin_playstatus != NULL); | |
871 | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
872 if (ip_data.buffering == TRUE && mainwin_playstatus != NULL && UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status == STATUS_STOP) |
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
873 UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status = STATUS_PLAY; |
2313 | 874 |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
875 ui_skinned_playstatus_set_buffering(mainwin_playstatus, ip_data.buffering); |
2313 | 876 } |
877 | |
878 void | |
879 input_about(gint index) | |
880 { | |
881 InputPlugin *ip; | |
882 | |
883 ip = g_list_nth(ip_data.input_list, index)->data; | |
884 if (ip && ip->about) | |
885 ip->about(); | |
886 } | |
887 | |
888 void | |
889 input_configure(gint index) | |
890 { | |
891 InputPlugin *ip; | |
892 | |
893 ip = g_list_nth(ip_data.input_list, index)->data; | |
894 if (ip && ip->configure) | |
895 ip->configure(); | |
896 } |