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