Mercurial > audlegacy
annotate src/audacious/input.c @ 3145:0aaad77951c7 trunk
Treating cdda:// as a regular file is bad, hmmkay? This is just a hack and nenolod will improve on it later.
| author | Tony Vroon <chainsaw@gentoo.org> |
|---|---|
| date | Mon, 23 Jul 2007 01:01:43 +0100 |
| parents | 2812140dba3f |
| children | 5161ced1bce2 8775dfc57ead |
| rev | line source |
|---|---|
| 2313 | 1 /* Audacious - Cross-platform multimedia player |
| 2 * Copyright (C) 2005-2006 Audacious development team | |
| 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" |
| 2313 | 42 #include "titlestring.h" |
| 2420 | 43 #include "ui_main.h" |
| 44 #include "util.h" | |
| 45 #include "visualization.h" | |
| 46 #include "widgets/widgetcore.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 | |
| 78 gchar *input_info_text = 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 | |
| 98 | |
| 99 gboolean | |
| 100 input_is_enabled(const gchar * filename) | |
| 101 { | |
| 102 gchar *basename = g_path_get_basename(filename); | |
| 103 gint enabled; | |
| 104 | |
| 105 enabled = GPOINTER_TO_INT(g_hash_table_lookup(plugin_matrix, basename)); | |
| 106 g_free(basename); | |
| 107 | |
| 108 return enabled; | |
| 109 } | |
| 110 | |
| 111 static void | |
| 112 disabled_iplugins_foreach_func(const gchar * name, | |
| 113 gboolean enabled, | |
| 114 GString * list) | |
| 115 { | |
| 116 g_return_if_fail(list != NULL); | |
| 117 | |
| 118 if (enabled) | |
| 119 return; | |
| 120 | |
| 121 if (list->len > 0) | |
| 122 g_string_append(list, ":"); | |
| 123 | |
| 124 g_string_append(list, name); | |
| 125 } | |
| 126 | |
| 127 gchar * | |
| 128 input_stringify_disabled_list(void) | |
| 129 { | |
| 130 GString *disabled_list; | |
| 131 | |
| 132 disabled_list = g_string_new(""); | |
| 133 g_hash_table_foreach(plugin_matrix, | |
| 134 (GHFunc) disabled_iplugins_foreach_func, | |
| 135 disabled_list); | |
| 136 | |
| 137 return g_string_free(disabled_list, FALSE); | |
| 138 } | |
| 139 | |
| 140 void | |
| 141 free_vis_data(void) | |
| 142 { | |
| 143 G_LOCK(vis_mutex); | |
| 144 g_list_foreach(vis_list, (GFunc) g_free, NULL); | |
| 145 g_list_free(vis_list); | |
| 146 vis_list = NULL; | |
| 147 G_UNLOCK(vis_mutex); | |
| 148 } | |
| 149 | |
| 150 static void | |
| 151 convert_to_s16_ne(AFormat fmt, gpointer ptr, gint16 * left, | |
| 152 gint16 * right, gint nch, gint max) | |
| 153 { | |
| 154 gint16 *ptr16; | |
| 155 guint16 *ptru16; | |
| 156 guint8 *ptru8; | |
| 157 gint i; | |
| 158 | |
| 159 switch (fmt) { | |
| 160 case FMT_U8: | |
| 161 ptru8 = ptr; | |
| 162 if (nch == 1) | |
| 163 for (i = 0; i < max; i++) | |
| 164 left[i] = ((*ptru8++) ^ 128) << 8; | |
| 165 else | |
| 166 for (i = 0; i < max; i++) { | |
| 167 left[i] = ((*ptru8++) ^ 128) << 8; | |
| 168 right[i] = ((*ptru8++) ^ 128) << 8; | |
| 169 } | |
| 170 break; | |
| 171 case FMT_S8: | |
| 172 ptru8 = ptr; | |
| 173 if (nch == 1) | |
| 174 for (i = 0; i < max; i++) | |
| 175 left[i] = (*ptru8++) << 8; | |
| 176 else | |
| 177 for (i = 0; i < max; i++) { | |
| 178 left[i] = (*ptru8++) << 8; | |
| 179 right[i] = (*ptru8++) << 8; | |
| 180 } | |
| 181 break; | |
| 182 case FMT_U16_LE: | |
| 183 ptru16 = ptr; | |
| 184 if (nch == 1) | |
| 185 for (i = 0; i < max; i++, ptru16++) | |
| 186 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
| 187 else | |
| 188 for (i = 0; i < max; i++) { | |
| 189 left[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
| 190 ptru16++; | |
| 191 right[i] = GUINT16_FROM_LE(*ptru16) ^ 32768; | |
| 192 ptru16++; | |
| 193 } | |
| 194 break; | |
| 195 case FMT_U16_BE: | |
| 196 ptru16 = ptr; | |
| 197 if (nch == 1) | |
| 198 for (i = 0; i < max; i++, ptru16++) | |
| 199 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
| 200 else | |
| 201 for (i = 0; i < max; i++) { | |
| 202 left[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
| 203 ptru16++; | |
| 204 right[i] = GUINT16_FROM_BE(*ptru16) ^ 32768; | |
| 205 ptru16++; | |
| 206 } | |
| 207 break; | |
| 208 case FMT_U16_NE: | |
| 209 ptru16 = ptr; | |
| 210 if (nch == 1) | |
| 211 for (i = 0; i < max; i++) | |
| 212 left[i] = (*ptru16++) ^ 32768; | |
| 213 else | |
| 214 for (i = 0; i < max; i++) { | |
| 215 left[i] = (*ptru16++) ^ 32768; | |
| 216 right[i] = (*ptru16++) ^ 32768; | |
| 217 } | |
| 218 break; | |
| 219 case FMT_S16_LE: | |
| 220 ptr16 = ptr; | |
| 221 if (nch == 1) | |
| 222 for (i = 0; i < max; i++, ptr16++) | |
| 223 left[i] = GINT16_FROM_LE(*ptr16); | |
| 224 else | |
| 225 for (i = 0; i < max; i++) { | |
| 226 left[i] = GINT16_FROM_LE(*ptr16); | |
| 227 ptr16++; | |
| 228 right[i] = GINT16_FROM_LE(*ptr16); | |
| 229 ptr16++; | |
| 230 } | |
| 231 break; | |
| 232 case FMT_S16_BE: | |
| 233 ptr16 = ptr; | |
| 234 if (nch == 1) | |
| 235 for (i = 0; i < max; i++, ptr16++) | |
| 236 left[i] = GINT16_FROM_BE(*ptr16); | |
| 237 else | |
| 238 for (i = 0; i < max; i++) { | |
| 239 left[i] = GINT16_FROM_BE(*ptr16); | |
| 240 ptr16++; | |
| 241 right[i] = GINT16_FROM_BE(*ptr16); | |
| 242 ptr16++; | |
| 243 } | |
| 244 break; | |
| 245 case FMT_S16_NE: | |
| 246 ptr16 = ptr; | |
| 247 if (nch == 1) | |
| 248 for (i = 0; i < max; i++) | |
| 249 left[i] = (*ptr16++); | |
| 250 else | |
| 251 for (i = 0; i < max; i++) { | |
| 252 left[i] = (*ptr16++); | |
| 253 right[i] = (*ptr16++); | |
| 254 } | |
| 255 break; | |
| 256 } | |
| 257 } | |
| 258 | |
| 259 InputVisType | |
| 260 input_get_vis_type() | |
| 261 { | |
| 262 return INPUT_VIS_OFF; | |
| 263 } | |
| 264 | |
| 265 void | |
| 266 input_add_vis_pcm(gint time, AFormat fmt, gint nch, gint length, gpointer ptr) | |
| 267 { | |
| 268 VisNode *vis_node; | |
| 269 gint max; | |
| 270 | |
| 271 max = length / nch; | |
| 272 if (fmt == FMT_U16_LE || fmt == FMT_U16_BE || fmt == FMT_U16_NE || | |
| 273 fmt == FMT_S16_LE || fmt == FMT_S16_BE || fmt == FMT_S16_NE) | |
| 274 max /= 2; | |
| 275 max = CLAMP(max, 0, 512); | |
| 276 | |
| 277 vis_node = g_new0(VisNode, 1); | |
| 278 vis_node->time = time; | |
| 279 vis_node->nch = nch; | |
| 280 vis_node->length = max; | |
| 281 convert_to_s16_ne(fmt, ptr, vis_node->data[0], vis_node->data[1], nch, | |
| 282 max); | |
| 283 | |
| 284 G_LOCK(vis_mutex); | |
| 285 vis_list = g_list_append(vis_list, vis_node); | |
| 286 G_UNLOCK(vis_mutex); | |
| 287 } | |
| 288 | |
| 289 void | |
| 290 input_dont_show_warning(GtkObject * object, gpointer user_data) | |
| 291 { | |
| 292 *((gboolean *) user_data) = | |
| 293 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object)); | |
| 294 } | |
| 295 | |
|
3133
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
296 static time_t |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
297 input_get_mtime(const gchar *filename) |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
298 { |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
299 struct stat buf; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
300 gint rv; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
301 gchar *realfn = NULL; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
302 |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
303 /* stat() does not accept file:// --yaz */ |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
304 realfn = g_filename_from_uri(filename, NULL, NULL); |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
305 rv = stat(realfn ? realfn : filename, &buf); |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
306 g_free(realfn); realfn = NULL; |
|
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 if (rv == 0) { |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
309 return buf.st_mtime; |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
310 } else { |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
311 return 0; //error |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
312 } |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
313 } |
|
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
314 |
| 2313 | 315 /* |
| 316 * input_check_file() | |
| 317 * | |
| 318 * Inputs: | |
| 319 * filename to check recursively against input plugins | |
| 320 * whether or not to show an error | |
| 321 * | |
| 322 * Outputs: | |
| 323 * pointer to input plugin which can handle this file | |
| 324 * otherwise, NULL | |
| 325 * | |
| 326 * (the previous code returned a boolean of whether or not we can | |
| 327 * play the file... even WORSE for performance) | |
| 328 * | |
| 329 * Side Effects: | |
| 330 * various input plugins open the file and probe it | |
| 331 * -- this can have very ugly effects performance wise on streams | |
| 332 * | |
| 333 * --nenolod, Dec 31 2005 | |
| 334 * | |
| 335 * Rewritten to use NewVFS probing, semantics are still basically the same. | |
| 336 * | |
| 337 * --nenolod, Dec 5 2006 | |
| 338 * | |
| 339 * Adapted to use the NewVFS extension probing system if enabled. | |
| 340 * | |
| 341 * --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
|
342 * |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
343 * 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
|
344 * |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
345 * --nenolod, Jul 9 2007 |
|
3127
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 * Adapted to return ProbeResult structure. |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
348 * |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
349 * --nenolod, Jul 20 2007 |
| 2313 | 350 */ |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
351 ProbeResult * |
| 2313 | 352 input_check_file(const gchar * filename, gboolean show_warning) |
| 353 { | |
| 354 VFSFile *fd; | |
| 355 GList *node; | |
| 356 InputPlugin *ip; | |
| 357 gchar *filename_proxy; | |
| 358 gint ret = 1; | |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
359 gchar *ext, *tmp, *tmp_uri; |
| 2313 | 360 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
|
361 gchar *mimetype; |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
362 ProbeResult *pr = NULL; |
| 2313 | 363 |
| 364 filename_proxy = g_strdup(filename); | |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
365 |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
366 /* 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
|
367 tmp_uri = g_strdup(filename); |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
368 |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
369 tmp = strrchr(tmp_uri, '?'); |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
370 |
|
3144
2812140dba3f
Backed out changeset 4673533d7cc3
Cristi Magherusan <majeru@atheme-project.org>
parents:
3143
diff
changeset
|
371 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
|
372 *tmp = '\0'; |
|
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
373 |
|
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
|
374 /* CD-Audio uses cdda:// dummy paths, no filedescriptor handling for it */ |
|
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
|
375 if (!g_strncasecmp(filename, "cdda://", 7)) { |
|
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
|
376 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
|
377 { |
|
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
|
378 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
|
379 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
|
380 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
|
381 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
|
382 ret = ip->is_our_file(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
|
383 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
|
384 { |
|
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
|
385 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
|
386 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
|
387 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
|
388 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
|
389 } |
|
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
|
390 } |
|
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 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
|
392 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
|
393 } |
|
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
|
394 |
|
2430
4e2fc64d95ef
[svn] - make vfs_buffered_file_new_from_uri declaration const
nenolod
parents:
2427
diff
changeset
|
395 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
|
396 g_free(tmp_uri); |
| 2313 | 397 |
|
3110
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
398 if (!fd) { |
| 3125 | 399 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
|
400 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
|
401 return NULL; |
|
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
402 } |
|
35e560fa183f
Added a fd NULL check to avoid probing on none-existing fds
Christian Birchinger <joker@netswarm.net>
parents:
3081
diff
changeset
|
403 |
| 2313 | 404 ext = strrchr(filename_proxy, '.') + 1; |
| 405 | |
| 2569 | 406 use_ext_filter = |
| 407 (fd != NULL && (!g_strncasecmp(filename, "/", 1) || | |
| 408 !g_strncasecmp(filename, "file://", 7))) ? TRUE : FALSE; | |
| 2313 | 409 |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
410 mimetype = vfs_get_metadata(fd, "content-type"); |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
411 if ((ip = mime_get_plugin(mimetype)) != NULL) |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
412 { |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
413 g_free(filename_proxy); |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
414 vfs_fclose(fd); |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
415 |
|
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
416 pr = g_new0(ProbeResult, 1); |
|
3141
a2f1d831065f
when mime match succeed, pr->ip should be obtained ip.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3133
diff
changeset
|
417 pr->ip = ip; |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
418 |
|
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
419 return pr; |
|
3013
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
420 } |
|
a5f606b01038
Use mimetype system to accelerate detection of network streams.
William Pitcock <nenolod@atheme-project.org>
parents:
2707
diff
changeset
|
421 |
| 2313 | 422 for (node = get_input_list(); node != NULL; node = g_list_next(node)) |
| 423 { | |
| 424 ip = INPUT_PLUGIN(node->data); | |
| 425 | |
| 426 if (!ip || !input_is_enabled(ip->filename)) | |
| 427 continue; | |
| 428 | |
|
2342
f140d0a27093
[svn] - use vfs_rewind() instead of vfs_fseek(fd, 0, seek_set) which was wrong
nenolod
parents:
2331
diff
changeset
|
429 vfs_rewind(fd); |
| 2313 | 430 |
| 2569 | 431 if (cfg.use_extension_probing == TRUE && ip->vfs_extensions != NULL && |
| 432 ext != NULL && ext != (gpointer) 0x1 && use_ext_filter == TRUE) | |
| 2313 | 433 { |
| 434 gint i; | |
| 435 gboolean is_our_ext = FALSE; | |
| 436 | |
| 437 for (i = 0; ip->vfs_extensions[i] != NULL; i++) | |
| 438 { | |
| 439 if (str_has_prefix_nocase(ext, ip->vfs_extensions[i])) | |
| 2331 | 440 { |
| 441 is_our_ext = TRUE; | |
| 442 break; | |
| 443 } | |
| 2313 | 444 } |
| 445 | |
| 446 /* not a plugin that supports this extension */ | |
| 447 if (is_our_ext == FALSE) | |
| 448 continue; | |
| 449 } | |
| 450 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
451 if (fd && ip->probe_for_tuple != NULL) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
452 { |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
453 TitleInput *tuple = ip->probe_for_tuple(filename_proxy, fd); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
454 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
455 if (tuple != NULL) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
456 { |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
457 g_free(filename_proxy); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
458 vfs_fclose(fd); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
459 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
460 pr = g_new0(ProbeResult, 1); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
461 pr->ip = ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
462 pr->tuple = tuple; |
|
3133
25f92bfd50c4
Initialize tuple.mtime.
William Pitcock <nenolod@atheme-project.org>
parents:
3131
diff
changeset
|
463 pr->tuple->mtime = input_get_mtime(filename_proxy); |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
464 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
465 return pr; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
466 } |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
467 } |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
468 else if (fd && ip->is_our_file_from_vfs != NULL) |
| 2313 | 469 { |
| 470 ret = ip->is_our_file_from_vfs(filename_proxy, fd); | |
| 471 | |
| 472 if (ret > 0) | |
| 473 { | |
| 474 g_free(filename_proxy); | |
| 475 vfs_fclose(fd); | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
476 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
477 pr = g_new0(ProbeResult, 1); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
478 pr->ip = ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
479 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
480 return pr; |
| 2313 | 481 } |
| 482 } | |
| 483 else if (ip->is_our_file != NULL) | |
| 484 { | |
| 485 ret = ip->is_our_file(filename_proxy); | |
| 486 | |
| 487 if (ret > 0) | |
| 488 { | |
| 489 g_free(filename_proxy); | |
| 490 vfs_fclose(fd); | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
491 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
492 pr = g_new0(ProbeResult, 1); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
493 pr->ip = ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
494 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
495 return pr; |
| 2313 | 496 } |
| 497 } | |
| 498 | |
| 2331 | 499 if (ret <= -1) |
| 500 break; | |
| 2313 | 501 } |
| 502 | |
| 503 g_free(filename_proxy); | |
| 504 | |
| 505 vfs_fclose(fd); | |
| 506 | |
| 507 return NULL; | |
| 508 } | |
| 509 | |
| 510 | |
| 511 void | |
| 512 input_set_eq(gint on, gfloat preamp, gfloat * bands) | |
| 513 { | |
| 514 if (!ip_data.playing) | |
| 515 return; | |
| 516 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
517 if (!get_current_input_playback()) |
| 2313 | 518 return; |
| 519 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
520 if (get_current_input_playback()->plugin->set_eq) |
|
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
521 get_current_input_playback()->plugin->set_eq(on, preamp, bands); |
| 2313 | 522 } |
| 523 | |
| 524 void | |
| 525 input_get_song_info(const gchar * filename, gchar ** title, gint * length) | |
| 526 { | |
| 527 InputPlugin *ip = NULL; | |
| 528 BmpTitleInput *input; | |
| 529 gchar *tmp = NULL, *ext; | |
| 530 gchar *filename_proxy; | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
531 ProbeResult *pr; |
| 2313 | 532 |
| 533 g_return_if_fail(filename != NULL); | |
| 534 g_return_if_fail(title != NULL); | |
| 535 g_return_if_fail(length != NULL); | |
| 536 | |
| 537 filename_proxy = g_strdup(filename); | |
| 538 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
539 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
540 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
541 if (!pr) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
542 return; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
543 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
544 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
545 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
546 g_free(pr); |
| 2313 | 547 |
| 2331 | 548 if (ip && ip->get_song_info) { |
| 2313 | 549 ip->get_song_info(filename_proxy, &tmp, length); |
| 550 *title = str_to_utf8(tmp); | |
| 551 g_free(tmp); | |
| 552 } | |
| 553 else { | |
| 554 input = bmp_title_input_new(); | |
| 555 | |
| 556 tmp = g_strdup(filename); | |
| 557 if ((ext = strrchr(tmp, '.'))) | |
| 558 *ext = '\0'; | |
| 559 | |
| 560 input->file_name = g_path_get_basename(tmp); | |
| 561 input->file_ext = ext ? ext + 1 : NULL; | |
| 562 input->file_path = g_path_get_dirname(tmp); | |
| 563 | |
| 564 if ((tmp = xmms_get_titlestring(xmms_get_gentitle_format(), input))) { | |
| 565 (*title) = str_to_utf8(tmp); | |
| 566 g_free(tmp); | |
| 567 } | |
| 568 else { | |
| 569 (*title) = filename_to_utf8(input->file_name); | |
| 570 } | |
| 571 | |
| 572 (*length) = -1; | |
| 573 | |
| 574 bmp_title_input_free(input); | |
| 575 input = NULL; | |
| 576 } | |
| 577 | |
| 578 g_free(filename_proxy); | |
| 579 } | |
| 580 | |
| 581 TitleInput * | |
| 582 input_get_song_tuple(const gchar * filename) | |
| 583 { | |
| 584 InputPlugin *ip = NULL; | |
| 585 TitleInput *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
|
586 gchar *ext = NULL; |
| 2313 | 587 gchar *filename_proxy; |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
588 ProbeResult *pr; |
| 2313 | 589 |
| 590 if (filename == NULL) | |
| 2331 | 591 return NULL; |
| 2313 | 592 |
| 593 filename_proxy = g_strdup(filename); | |
| 594 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
595 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
596 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
597 if (!pr) |
|
3128
343504d43afc
Fix warnings.
William Pitcock <nenolod@atheme-project.org>
parents:
3127
diff
changeset
|
598 return NULL; |
|
3127
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 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
601 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
602 g_free(pr); |
| 2313 | 603 |
| 2331 | 604 if (ip && ip->get_song_tuple) |
| 2313 | 605 input = ip->get_song_tuple(filename_proxy); |
| 2331 | 606 else |
| 607 { | |
| 2313 | 608 input = bmp_title_input_new(); |
| 609 | |
|
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
|
610 ext = strrchr(filename, '.'); |
| 2313 | 611 |
| 2331 | 612 input->track_name = NULL; |
| 613 input->length = -1; | |
| 614 input_get_song_info(filename, &input->track_name, &input->length); | |
|
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
|
615 input->file_name = g_path_get_basename(filename); |
|
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
|
616 input->file_ext = ( ( ext != NULL ) ? g_strdup(ext + 1) : NULL ); |
|
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
|
617 input->file_path = g_path_get_dirname(filename); |
| 2313 | 618 } |
| 619 | |
| 2569 | 620 g_free(filename_proxy); |
| 2313 | 621 return input; |
| 622 } | |
| 623 | |
| 624 static void | |
| 625 input_general_file_info_box(const gchar * filename, InputPlugin * ip) | |
| 626 { | |
| 627 GtkWidget *window, *vbox; | |
| 628 GtkWidget *label, *filename_hbox, *filename_entry; | |
| 629 GtkWidget *bbox, *cancel; | |
| 630 | |
| 631 gchar *title, *fileinfo, *basename, *iplugin; | |
| 632 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
|
633 gchar *realfn = NULL; |
| 2313 | 634 |
| 635 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 636 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
| 637 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); | |
| 638 | |
|
3081
ba2143c1c6f5
unescape url encoded filename where real filename is needed.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3072
diff
changeset
|
639 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
|
640 basename = g_path_get_basename(realfn ? realfn : filename); |
| 2313 | 641 fileinfo = filename_to_utf8(basename); |
| 642 title = g_strdup_printf(_("audacious: %s"), fileinfo); | |
| 643 | |
| 644 gtk_window_set_title(GTK_WINDOW(window), title); | |
| 645 | |
| 646 g_free(title); | |
| 647 g_free(fileinfo); | |
| 648 g_free(basename); | |
| 649 | |
| 650 gtk_container_set_border_width(GTK_CONTAINER(window), 10); | |
| 651 | |
| 652 vbox = gtk_vbox_new(FALSE, 10); | |
| 653 gtk_container_add(GTK_CONTAINER(window), vbox); | |
| 654 | |
| 655 filename_hbox = gtk_hbox_new(FALSE, 5); | |
| 656 gtk_box_pack_start(GTK_BOX(vbox), filename_hbox, FALSE, TRUE, 0); | |
| 657 | |
| 658 label = gtk_label_new(_("Filename:")); | |
| 659 gtk_box_pack_start(GTK_BOX(filename_hbox), label, FALSE, TRUE, 0); | |
| 660 | |
| 661 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
|
662 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
|
663 g_free(realfn); realfn = NULL; |
| 2313 | 664 |
| 665 gtk_entry_set_text(GTK_ENTRY(filename_entry), filename_utf8); | |
| 666 gtk_editable_set_editable(GTK_EDITABLE(filename_entry), FALSE); | |
| 667 gtk_box_pack_start(GTK_BOX(filename_hbox), filename_entry, TRUE, TRUE, 0); | |
| 668 | |
| 669 g_free(filename_utf8); | |
| 670 | |
| 671 if (ip) | |
| 672 if (ip->description) | |
| 673 iplugin = ip->description; | |
| 674 else | |
| 675 iplugin = ip->filename; | |
| 676 else | |
| 677 iplugin = _("No input plugin recognized this file"); | |
| 678 | |
| 679 title = g_strdup_printf(_("Input plugin: %s"), iplugin); | |
| 680 | |
| 681 label = gtk_label_new(title); | |
| 682 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 683 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); | |
| 684 g_free(title); | |
| 685 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 0); | |
| 686 | |
| 687 bbox = gtk_hbutton_box_new(); | |
| 688 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
| 689 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
| 690 | |
| 691 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
| 692 g_signal_connect_swapped(G_OBJECT(cancel), "clicked", | |
| 693 GTK_SIGNAL_FUNC(gtk_widget_destroy), | |
| 694 GTK_OBJECT(window)); | |
| 695 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
| 696 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
| 697 | |
| 698 gtk_widget_show_all(window); | |
| 699 } | |
| 700 | |
| 701 void | |
| 702 input_file_info_box(const gchar * filename) | |
| 703 { | |
| 704 InputPlugin *ip; | |
| 705 gchar *filename_proxy; | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
706 ProbeResult *pr; |
| 2313 | 707 |
| 708 filename_proxy = g_strdup(filename); | |
| 709 | |
|
3127
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
710 pr = input_check_file(filename_proxy, FALSE); |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
711 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
712 if (!pr) |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
713 return; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
714 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
715 ip = pr->ip; |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
716 |
|
c92070f10148
Use ProbeResult (try 1)
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
717 g_free(pr); |
| 2313 | 718 |
| 719 if (ip->file_info_box) | |
| 720 ip->file_info_box(filename_proxy); | |
| 721 else | |
| 722 input_general_file_info_box(filename, ip); | |
| 723 | |
| 724 input_general_file_info_box(filename, NULL); | |
| 725 g_free(filename_proxy); | |
| 726 } | |
| 727 | |
| 728 GList * | |
| 729 input_scan_dir(const gchar * path) | |
| 730 { | |
| 731 GList *node, *result = NULL; | |
| 732 InputPlugin *ip; | |
| 733 gchar *path_proxy; | |
| 734 | |
| 735 g_return_val_if_fail(path != NULL, NULL); | |
| 736 | |
| 737 if (*path == '/') | |
| 738 while (path[1] == '/') | |
| 739 path++; | |
| 740 | |
| 741 path_proxy = g_strdup(path); | |
| 742 | |
| 743 for (node = get_input_list(); node; node = g_list_next(node)) { | |
| 744 ip = INPUT_PLUGIN(node->data); | |
| 745 | |
| 746 if (!ip) | |
| 747 continue; | |
| 748 | |
| 749 if (!ip->scan_dir) | |
| 750 continue; | |
| 751 | |
| 752 if (!input_is_enabled(ip->filename)) | |
| 753 continue; | |
| 754 | |
| 755 if ((result = ip->scan_dir(path_proxy))) | |
| 756 break; | |
| 757 } | |
| 758 | |
| 759 g_free(path_proxy); | |
| 760 | |
| 761 return result; | |
| 762 } | |
| 763 | |
| 764 void | |
| 765 input_get_volume(gint * l, gint * r) | |
| 766 { | |
| 767 *l = -1; | |
| 768 *r = -1; | |
| 769 if (playback_get_playing()) { | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
770 if (get_current_input_playback() && |
|
2439
f2b3d6428b67
[svn] Allow input plugin that implements get_volume to punt to the output plugin.
iabervon
parents:
2437
diff
changeset
|
771 get_current_input_playback()->plugin->get_volume && |
|
f2b3d6428b67
[svn] Allow input plugin that implements get_volume to punt to the output plugin.
iabervon
parents:
2437
diff
changeset
|
772 get_current_input_playback()->plugin->get_volume(l, r)) { |
| 2313 | 773 return; |
| 774 } | |
| 775 } | |
| 776 output_get_volume(l, r); | |
| 777 } | |
| 778 | |
| 779 void | |
| 780 input_set_volume(gint l, gint r) | |
| 781 { | |
| 2505 | 782 gint h_vol[2]; |
| 783 | |
| 2569 | 784 if (playback_get_playing() && |
| 785 get_current_input_playback() && | |
| 786 get_current_input_playback()->plugin->set_volume && | |
| 787 get_current_input_playback()->plugin->set_volume(l, r)) | |
| 788 return; | |
| 789 | |
| 2313 | 790 output_set_volume(l, r); |
| 2505 | 791 |
| 792 h_vol[0] = l; | |
| 793 h_vol[1] = r; | |
| 794 hook_call("volume set", h_vol); | |
| 2313 | 795 } |
| 796 | |
| 797 void | |
| 798 input_update_vis(gint time) | |
| 799 { | |
| 800 GList *node; | |
| 801 VisNode *vis = NULL, *visnext = NULL; | |
| 802 gboolean found = FALSE; | |
| 803 | |
| 804 G_LOCK(vis_mutex); | |
| 805 node = vis_list; | |
| 806 while (g_list_next(node) && !found) { | |
| 807 visnext = g_list_next(node)->data; | |
| 808 vis = node->data; | |
| 809 | |
| 810 if (vis->time >= time) | |
| 811 break; | |
| 812 | |
| 813 vis_list = g_list_delete_link(vis_list, node); | |
| 814 | |
| 815 if (visnext->time >= time) { | |
| 816 found = TRUE; | |
| 817 break; | |
| 818 } | |
| 819 g_free(vis); | |
| 820 node = vis_list; | |
| 821 } | |
| 822 G_UNLOCK(vis_mutex); | |
| 823 | |
| 824 if (found) { | |
| 825 vis_send_data(vis->data, vis->nch, vis->length); | |
| 826 g_free(vis); | |
| 827 } | |
| 828 else | |
| 829 vis_send_data(NULL, 0, 0); | |
| 830 } | |
| 831 | |
| 832 | |
| 833 gchar * | |
| 834 input_get_info_text(void) | |
| 835 { | |
| 836 return g_strdup(input_info_text); | |
| 837 } | |
| 838 | |
| 839 void | |
| 840 input_set_info_text(const gchar * text) | |
| 841 { | |
| 842 g_free(input_info_text); | |
| 843 input_info_text = g_strdup(text); | |
| 844 mainwin_set_info_text(); | |
| 845 } | |
| 846 | |
| 847 void | |
| 848 input_set_status_buffering(gboolean status) | |
| 849 { | |
| 850 if (!playback_get_playing()) | |
| 851 return; | |
| 852 | |
|
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2430
diff
changeset
|
853 if (!get_current_input_playback()) |
| 2313 | 854 return; |
| 855 | |
| 856 ip_data.buffering = status; | |
| 857 | |
| 858 g_return_if_fail(mainwin_playstatus != NULL); | |
| 859 | |
|
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
860 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
|
861 UI_SKINNED_PLAYSTATUS(mainwin_playstatus)->status = STATUS_PLAY; |
| 2313 | 862 |
|
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3013
diff
changeset
|
863 ui_skinned_playstatus_set_buffering(mainwin_playstatus, ip_data.buffering); |
| 2313 | 864 } |
| 865 | |
| 866 void | |
| 867 input_about(gint index) | |
| 868 { | |
| 869 InputPlugin *ip; | |
| 870 | |
| 871 ip = g_list_nth(ip_data.input_list, index)->data; | |
| 872 if (ip && ip->about) | |
| 873 ip->about(); | |
| 874 } | |
| 875 | |
| 876 void | |
| 877 input_configure(gint index) | |
| 878 { | |
| 879 InputPlugin *ip; | |
| 880 | |
| 881 ip = g_list_nth(ip_data.input_list, index)->data; | |
| 882 if (ip && ip->configure) | |
| 883 ip->configure(); | |
| 884 } |
