Mercurial > audlegacy
annotate src/audacious/input.c @ 3516:0970c745a497 trunk
Use GSlice for VisNode structs.
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Tue, 11 Sep 2007 20:33:30 -0500 |
| parents | b413aa0c939c |
| children | b747ad540903 |
| 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); |
|
3516
0970c745a497
Use GSlice for VisNode structs.
William Pitcock <nenolod@atheme.org>
parents:
3502
diff
changeset
|
379 pr = g_slice_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 |
|
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
|
387 /* 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
|
388 /* 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
|
389 /* |
|
3342
5d50b9604ddc
Remove hardcoded test because uri_get_plugin should take care of it now
Christian Birchinger <joker@netswarm.net>
parents:
3341
diff
changeset
|
390 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
|
391 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
|
392 { |
|
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
|
393 ip = INPUT_PLUGIN(node->data); |
|
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
|
394 if (!ip || !ip->enabled) |
|
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
|
395 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
|
396 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
|
397 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
|
398 else |
|
b1964057a1a0
Hardcoded a dummy path to use with cdaudio-ng plugin
Calin Crisan ccrisan@gmail.com
parents:
3166
diff
changeset
|
399 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
|
400 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
|
401 { |
|
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 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
|
403 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
|
404 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
|
405 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
|
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 } |
|
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 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
|
409 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
|
410 } |
|
3343
f5a413804217
cue:// should get accepted before. Contact me if it breaks cue:// support somehow.
Christian Birchinger <joker@netswarm.net>
parents:
3342
diff
changeset
|
411 */ |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
412 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
|
413 g_free(tmp_uri); |
| 2313 | 414 |
|
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
415 if (!fd) { |
| 3125 | 416 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
|
417 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
|
418 return NULL; |
|
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
419 } |
|
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
420 |
| 2313 | 421 ext = strrchr(filename_proxy, '.') + 1; |
| 422 | |
| 2569 | 423 use_ext_filter = |
| 424 (fd != NULL && (!g_strncasecmp(filename, "/", 1) || | |
| 425 !g_strncasecmp(filename, "file://", 7))) ? TRUE : FALSE; | |
| 2313 | 426 |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
427 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
|
428 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
|
429 { |
|
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
430 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
|
431 { |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
432 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
|
433 |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
434 if (tuple != NULL) |
|
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 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
|
437 vfs_fclose(fd); |
|
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 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
|
440 pr->ip = ip; |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
441 pr->tuple = tuple; |
|
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
442 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
|
443 |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
444 return pr; |
|
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 } |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
447 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
|
448 { |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
449 ret = ip->is_our_file_from_vfs(filename_proxy, fd); |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
450 |
|
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
451 if (ret > 0) |
|
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 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
|
454 vfs_fclose(fd); |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
455 |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
456 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
|
457 pr->ip = ip; |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
458 |
|
3198
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
459 return pr; |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
460 } |
|
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 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
|
463 { |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
464 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
|
465 |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
466 if (ret > 0) |
|
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 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
|
469 vfs_fclose(fd); |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
470 |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
471 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
|
472 pr->ip = ip; |
|
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 return pr; |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
475 } |
|
7628b2b7a688
Don't explicitly trust the mimetype, still do a probe.
William Pitcock <nenolod@atheme-project.org>
parents:
3171
diff
changeset
|
476 } |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
477 } |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
478 |
| 2313 | 479 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
| 480 { | |
| 481 ip = INPUT_PLUGIN(node->data); | |
| 482 | |
|
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
|
483 if (!ip || !ip->enabled) |
| 2313 | 484 continue; |
| 485 | |
|
2342
f140d0a27093
[svn] - use vfs_rewind() instead of vfs_fseek(fd, 0, seek_set) which was wrong
nenolod
parents:
2331
diff
changeset
|
486 vfs_rewind(fd); |
| 2313 | 487 |
| 2569 | 488 if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL && |
| 489 ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE) | |
| 2313 | 490 { |
| 491 gint i; | |
| 492 gboolean is_our_ext = FALSE; | |
| 493 | |
| 494 for (i = 0; ip->vfs_extensions[i] != NULL; i++) | |
| 495 { | |
| 496 if (str_has_prefix_nocase(ext, ip->vfs_extensions[i])) | |
| 2331 | 497 { |
| 498 is_our_ext = TRUE; | |
| 499 break; | |
| 500 } | |
| 2313 | 501 } |
| 502 | |
| 503 /* not a plugin that supports this extension */ | |
| 504 if (is_our_ext == FALSE) | |
| 505 continue; | |
| 506 } | |
| 507 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
508 if (fd && ip->probe_for_tuple != NULL) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
509 { |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
510 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
|
511 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
512 if (tuple != NULL) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
513 { |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
514 g_free(filename_proxy); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
515 vfs_fclose(fd); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
516 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
517 pr = g_new0(ProbeResult, 1); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
518 pr->ip = ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
519 pr->tuple = tuple; |
|
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
520 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
|
521 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
522 return pr; |
|
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 } |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
525 else if (fd && ip->is_our_file_from_vfs != NULL) |
| 2313 | 526 { |
| 527 ret = ip->is_our_file_from_vfs(filename_proxy, fd); | |
| 528 | |
| 529 if (ret > 0) | |
| 530 { | |
| 531 g_free(filename_proxy); | |
| 532 vfs_fclose(fd); | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
533 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
534 pr = g_new0(ProbeResult, 1); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
535 pr->ip = ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
536 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
537 return pr; |
| 2313 | 538 } |
| 539 } | |
| 540 else if (ip->is_our_file != NULL) | |
| 541 { | |
| 542 ret = ip->is_our_file(filename_proxy); | |
| 543 | |
| 544 if (ret > 0) | |
| 545 { | |
| 546 g_free(filename_proxy); | |
| 547 vfs_fclose(fd); | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
548 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
549 pr = g_new0(ProbeResult, 1); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
550 pr->ip = ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
551 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
552 return pr; |
| 2313 | 553 } |
| 554 } | |
| 555 | |
| 2331 | 556 if (ret <= -1) |
| 557 break; | |
| 2313 | 558 } |
| 559 | |
| 560 g_free(filename_proxy); | |
| 561 | |
| 562 vfs_fclose(fd); | |
| 563 | |
| 564 return NULL; | |
| 565 } | |
| 566 | |
| 567 | |
| 568 void | |
| 569 input_set_eq(gint on, gfloat preamp, gfloat * bands) | |
| 570 { | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
571 InputPlayback *playback; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
572 |
| 2313 | 573 if (!ip_data.playing) |
| 574 return; | |
| 575 | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
576 if ((playback = get_current_input_playback()) == NULL) |
| 2313 | 577 return; |
| 578 | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
579 if (playback->plugin->set_eq) |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
580 playback->plugin->set_eq(on, preamp, bands); |
| 2313 | 581 } |
| 582 | |
| 583 | |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
584 Tuple * |
| 2313 | 585 input_get_song_tuple(const gchar * filename) |
| 586 { | |
| 587 InputPlugin *ip = NULL; | |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
588 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
|
589 gchar *ext = NULL; |
| 2313 | 590 gchar *filename_proxy; |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
591 ProbeResult *pr; |
| 2313 | 592 |
| 593 if (filename == NULL) | |
| 2331 | 594 return NULL; |
| 2313 | 595 |
| 596 filename_proxy = g_strdup(filename); | |
| 597 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
598 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
599 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
600 if (!pr) |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
601 return NULL; |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
602 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
603 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
604 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
605 g_free(pr); |
| 2313 | 606 |
| 2331 | 607 if (ip && ip->get_song_tuple) |
| 2313 | 608 input = ip->get_song_tuple(filename_proxy); |
| 2331 | 609 else |
| 610 { | |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
611 gchar *tmp; |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
612 |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
613 input = tuple_new(); |
| 2313 | 614 |
|
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
615 tmp = g_strdup(filename); |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
616 if ((ext = strrchr(tmp, '.'))) |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
617 *ext = '\0'; |
| 2313 | 618 |
|
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
619 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
|
620 |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
621 if (ext) |
|
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
622 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
|
623 |
|
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3343
diff
changeset
|
624 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
|
625 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
|
626 |
|
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3251
diff
changeset
|
627 g_free(tmp); |
| 2313 | 628 } |
| 629 | |
| 2569 | 630 g_free(filename_proxy); |
| 2313 | 631 return input; |
| 632 } | |
| 633 | |
| 634 static void | |
| 635 input_general_file_info_box(const gchar * filename, InputPlugin * ip) | |
| 636 { | |
| 637 GtkWidget *window, *vbox; | |
| 638 GtkWidget *label, *filename_hbox, *filename_entry; | |
| 639 GtkWidget *bbox, *cancel; | |
| 640 | |
| 641 gchar *title, *fileinfo, *basename, *iplugin; | |
| 642 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
|
643 gchar *realfn = NULL; |
| 2313 | 644 |
| 645 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 646 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
| 647 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); | |
| 648 | |
|
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
649 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
|
650 basename = g_path_get_basename(realfn ? realfn : filename); |
| 2313 | 651 fileinfo = filename_to_utf8(basename); |
| 652 title = g_strdup_printf(_("audacious: %s"), fileinfo); | |
| 653 | |
| 654 gtk_window_set_title(GTK_WINDOW(window), title); | |
| 655 | |
| 656 g_free(title); | |
| 657 g_free(fileinfo); | |
| 658 g_free(basename); | |
| 659 | |
| 660 gtk_container_set_border_width(GTK_CONTAINER(window), 10); | |
| 661 | |
| 662 vbox = gtk_vbox_new(FALSE, 10); | |
| 663 gtk_container_add(GTK_CONTAINER(window), vbox); | |
| 664 | |
| 665 filename_hbox = gtk_hbox_new(FALSE, 5); | |
| 666 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0); | |
| 667 | |
| 668 label = gtk_label_new(_("Filename:")); | |
| 669 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0); | |
| 670 | |
| 671 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
|
672 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
|
673 g_free(realfn); realfn = NULL; |
| 2313 | 674 |
| 675 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8); | |
| 676 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE); | |
| 677 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0); | |
| 678 | |
| 679 g_free(filename_utf8); | |
| 680 | |
| 681 if (ip) | |
| 682 if (ip->description) | |
| 683 iplugin = ip->description; | |
| 684 else | |
| 685 iplugin = ip->filename; | |
| 686 else | |
| 687 iplugin = _("No input plugin recognized this file"); | |
| 688 | |
| 689 title = g_strdup_printf(_("Input plugin: %s"), iplugin); | |
| 690 | |
| 691 label = gtk_label_new(title); | |
| 692 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 693 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
| 694 g_free(title); | |
| 695 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0); | |
| 696 | |
| 697 bbox = gtk_hbutton_box_new(); | |
| 698 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
| 699 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
| 700 | |
| 701 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
| 702 g_signal_connect_swapped(G_OBJECT(cancel), "clicked", | |
| 703 GTK_SIGNAL_FUNC(gtk_widget_destroy), | |
| 704 GTK_OBJECT(window)); | |
| 705 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
| 706 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
| 707 | |
| 708 gtk_widget_show_all(window); | |
| 709 } | |
| 710 | |
| 711 void | |
| 712 input_file_info_box(const gchar * filename) | |
| 713 { | |
| 714 InputPlugin *ip; | |
| 715 gchar *filename_proxy; | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
716 ProbeResult *pr; |
| 2313 | 717 |
| 718 filename_proxy = g_strdup(filename); | |
| 719 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
720 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
721 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
722 if (!pr) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
723 return; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
724 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
725 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
726 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
727 g_free(pr); |
| 2313 | 728 |
| 729 if (ip->file_info_box) | |
| 730 ip->file_info_box(filename_proxy); | |
| 731 else | |
| 732 input_general_file_info_box(filename, ip); | |
| 733 | |
| 734 input_general_file_info_box(filename, NULL); | |
| 735 g_free(filename_proxy); | |
| 736 } | |
| 737 | |
| 738 GList * | |
| 739 input_scan_dir(const gchar * path) | |
| 740 { | |
| 741 GList *node, *result = NULL; | |
| 742 InputPlugin *ip; | |
| 743 gchar *path_proxy; | |
| 744 | |
| 745 g_return_val_if_fail(path != NULL, NULL); | |
| 746 | |
| 747 if (*path == '/') | |
| 748 while (path[1] == '/') | |
| 749 path++; | |
| 750 | |
| 751 path_proxy = g_strdup(path); | |
| 752 | |
| 753 for (node = get_input_list(); node; node = g_list_next(node)) { | |
| 754 ip = INPUT_PLUGIN(node->data); | |
| 755 | |
| 756 if (!ip) | |
| 757 continue; | |
| 758 | |
| 759 if (!ip->scan_dir) | |
| 760 continue; | |
| 761 | |
|
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
|
762 if (!ip->enabled) |
| 2313 | 763 continue; |
| 764 | |
| 765 if ((result = ip->scan_dir(path_proxy))) | |
| 766 break; | |
| 767 } | |
| 768 | |
| 769 g_free(path_proxy); | |
| 770 | |
| 771 return result; | |
| 772 } | |
| 773 | |
| 774 void | |
| 775 input_get_volume(gint * l, gint * r) | |
| 776 { | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
777 InputPlayback *playback; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
778 |
| 2313 | 779 *l = -1; |
| 780 *r = -1; | |
| 781 if (playback_get_playing()) { | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
782 if ((playback = get_current_input_playback()) != NULL && |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
783 playback->plugin->get_volume && |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
784 playback->plugin->get_volume(l, r)) |
| 2313 | 785 return; |
| 786 } | |
| 787 output_get_volume(l, r); | |
| 788 } | |
| 789 | |
| 790 void | |
| 791 input_set_volume(gint l, gint r) | |
| 792 { | |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
793 InputPlayback *playback; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
794 |
| 2505 | 795 gint h_vol[2]; |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
796 |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
797 h_vol[0] = l; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
798 h_vol[1] = r; |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
799 hook_call("volume set", h_vol); |
| 2505 | 800 |
| 2569 | 801 if (playback_get_playing() && |
|
3170
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
802 (playback = get_current_input_playback()) != NULL && |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
803 playback->plugin->set_volume && |
|
603577228518
get_current_input_playback() cleanups.
William Pitcock <nenolod@atheme-project.org>
parents:
3166
diff
changeset
|
804 playback->plugin->set_volume(l, r)) |
| 2569 | 805 return; |
| 806 | |
| 2313 | 807 output_set_volume(l, r); |
| 808 } | |
| 809 | |
| 810 void | |
| 811 input_update_vis(gint time) | |
| 812 { | |
| 813 GList *node; | |
| 814 VisNode *vis = NULL, *visnext = NULL; | |
| 815 gboolean found = FALSE; | |
| 816 | |
| 817 G_LOCK(vis_mutex); | |
| 818 node = vis_list; | |
| 819 while (g_list_next(node) && !found) { | |
| 820 visnext = g_list_next(node)->data; | |
| 821 vis = node->data; | |
| 822 | |
| 823 if (vis->time >= time) | |
| 824 break; | |
| 825 | |
| 826 vis_list = g_list_delete_link(vis_list, node); | |
| 827 | |
| 828 if (visnext->time >= time) { | |
| 829 found = TRUE; | |
| 830 break; | |
| 831 } | |
| 832 g_free(vis); | |
| 833 node = vis_list; | |
| 834 } | |
| 835 G_UNLOCK(vis_mutex); | |
| 836 | |
| 837 if (found) { | |
| 838 vis_send_data(vis->data, vis->nch, vis->length); | |
| 839 g_free(vis); | |
| 840 } | |
| 841 else | |
| 842 vis_send_data(NULL, 0, 0); | |
| 843 } | |
| 844 | |
|
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
845 /* 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
|
846 void |
|
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
847 input_set_info_text(gchar *text) |
| 2313 | 848 { |
|
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3145
diff
changeset
|
849 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
|
850 event_queue("title change", title); |
| 2313 | 851 } |
| 852 | |
| 853 void | |
| 854 input_set_status_buffering(gboolean status) | |
| 855 { | |
| 856 if (!playback_get_playing()) | |
| 857 return; | |
| 858 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
859 if (!get_current_input_playback()) |
| 2313 | 860 return; |
| 861 | |
| 862 ip_data.buffering = status; | |
| 863 | |
| 864 g_return_if_fail(mainwin_playstatus != NULL); | |
| 865 | |
|
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
866 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
|
867 UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status = STATUS_PLAY; |
| 2313 | 868 |
|
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
869 ui_skinned_playstatus_set_buffering(mainwin_playstatus, ip_data.buffering); |
| 2313 | 870 } |
