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