Mercurial > audlegacy
annotate src/audacious/vfs.c @ 3113:2520e8b6cf5e trunk
branch merge
author | William Pitcock <nenolod@atheme-project.org> |
---|---|
date | Thu, 19 Jul 2007 19:59:49 -0500 |
parents | 7d3beedf1db8 7f17c37db82b |
children | 3b6d316f8b09 |
rev | line source |
---|---|
2313 | 1 /* Audacious |
2 * Copyright (c) 2006-2007 William Pitcock | |
3 * | |
4 * This program is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; under version 2 of the License. | |
7 * | |
8 * This program is distributed in the hope that it will be useful, | |
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 * GNU General Public License for more details. | |
12 * | |
13 * You should have received a copy of the GNU General Public License | |
14 * along with this program; if not, write to the Free Software | |
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
16 */ | |
17 | |
18 #include "vfs.h" | |
2579 | 19 #include "strings.h" |
2313 | 20 #include <stdio.h> |
21 | |
22 #include <unistd.h> | |
23 #include <sys/stat.h> | |
24 #include <sys/types.h> | |
25 | |
2336 | 26 #include <string.h> |
27 | |
2623 | 28 GList *vfs_transports = NULL; /* temporary. -nenolod */ |
2313 | 29 |
30 #ifdef VFS_DEBUG | |
31 # define DBG(x, args...) g_print(x, ## args); | |
32 #else | |
33 # define DBG(x, args...) | |
34 #endif | |
35 | |
36 /** | |
37 * vfs_register_transport: | |
38 * @vtable: The #VFSConstructor vtable to register. | |
39 * | |
40 * Registers a #VFSConstructor vtable with the VFS system. | |
41 * | |
42 * Return value: TRUE on success, FALSE on failure. | |
43 **/ | |
44 gboolean | |
45 vfs_register_transport(VFSConstructor *vtable) | |
46 { | |
47 vfs_transports = g_list_append(vfs_transports, vtable); | |
48 | |
49 return TRUE; | |
50 } | |
51 | |
52 /** | |
53 * vfs_fopen: | |
54 * @path: The path or URI to open. | |
55 * @mode: The preferred access privileges (not guaranteed). | |
56 * | |
57 * Opens a stream from a VFS transport using a #VFSConstructor. | |
58 * | |
59 * Return value: On success, a #VFSFile object representing the stream. | |
60 **/ | |
61 VFSFile * | |
62 vfs_fopen(const gchar * path, | |
63 const gchar * mode) | |
64 { | |
65 VFSFile *file; | |
66 VFSConstructor *vtable = NULL; | |
67 GList *node; | |
68 gchar *decpath; | |
69 | |
70 if (!path || !mode) | |
71 return NULL; | |
72 | |
2381
d49913587458
[svn] - changes to the nature of URI handling in the VFS subsystem, will be
nenolod
parents:
2376
diff
changeset
|
73 decpath = g_strdup(path); |
2313 | 74 |
2335
e80c9dfc93aa
[svn] - g_strsplit() wraps strsplit(3), and thus has different results on
nenolod
parents:
2313
diff
changeset
|
75 for (node = vfs_transports; node != NULL; node = g_list_next(node)) |
2313 | 76 { |
2534 | 77 VFSConstructor *vtptr = (VFSConstructor *) node->data; |
2313 | 78 |
2533
ab335d4391df
[svn] - don't return a bogus vtable for an unregistered URI scheme
nenolod
parents:
2416
diff
changeset
|
79 if (!strncasecmp(decpath, vtptr->uri_id, strlen(vtptr->uri_id))) |
ab335d4391df
[svn] - don't return a bogus vtable for an unregistered URI scheme
nenolod
parents:
2416
diff
changeset
|
80 { |
ab335d4391df
[svn] - don't return a bogus vtable for an unregistered URI scheme
nenolod
parents:
2416
diff
changeset
|
81 vtable = vtptr; |
2335
e80c9dfc93aa
[svn] - g_strsplit() wraps strsplit(3), and thus has different results on
nenolod
parents:
2313
diff
changeset
|
82 break; |
2533
ab335d4391df
[svn] - don't return a bogus vtable for an unregistered URI scheme
nenolod
parents:
2416
diff
changeset
|
83 } |
2313 | 84 } |
85 | |
86 /* no transport vtable has been registered, bail. */ | |
87 if (vtable == NULL) | |
2987
7f17c37db82b
Log a warning if an adequate transport was not found.
William Pitcock <nenolod@atheme-project.org>
parents:
2978
diff
changeset
|
88 { |
7f17c37db82b
Log a warning if an adequate transport was not found.
William Pitcock <nenolod@atheme-project.org>
parents:
2978
diff
changeset
|
89 g_warning("could not open '%s', no transport plugin available", decpath); |
2313 | 90 return NULL; |
2987
7f17c37db82b
Log a warning if an adequate transport was not found.
William Pitcock <nenolod@atheme-project.org>
parents:
2978
diff
changeset
|
91 } |
2313 | 92 |
2381
d49913587458
[svn] - changes to the nature of URI handling in the VFS subsystem, will be
nenolod
parents:
2376
diff
changeset
|
93 file = vtable->vfs_fopen_impl(decpath, mode); |
2313 | 94 |
95 if (file == NULL) | |
96 return NULL; | |
97 | |
98 file->uri = g_strdup(path); | |
99 file->base = vtable; | |
2562
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
100 file->ref = 1; |
2313 | 101 |
102 g_free(decpath); | |
103 | |
104 return file; | |
105 } | |
106 | |
107 /** | |
108 * vfs_fclose: | |
109 * @file: A #VFSFile object to destroy. | |
110 * | |
111 * Closes a VFS stream and destroys a #VFSFile object. | |
112 * | |
113 * Return value: -1 on failure, 0 on success. | |
114 **/ | |
115 gint | |
116 vfs_fclose(VFSFile * file) | |
117 { | |
118 gint ret = 0; | |
119 | |
120 if (file == NULL) | |
121 return -1; | |
122 | |
2562
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
123 if (--file->ref > 0) |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
124 return -1; |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
125 |
2313 | 126 if (file->base->vfs_fclose_impl(file) != 0) |
127 ret = -1; | |
128 | |
129 if (file->uri != NULL) | |
130 g_free(file->uri); | |
131 | |
132 g_free(file); | |
133 | |
134 return ret; | |
135 } | |
136 | |
137 /** | |
138 * vfs_fread: | |
139 * @ptr: A pointer to the destination buffer. | |
140 * @size: The size of each element to read. | |
141 * @nmemb: The number of elements to read. | |
142 * @file: #VFSFile object that represents the VFS stream. | |
143 * | |
144 * Reads from a VFS stream. | |
145 * | |
146 * Return value: The amount of elements succesfully read. | |
147 **/ | |
148 size_t | |
149 vfs_fread(gpointer ptr, | |
150 size_t size, | |
151 size_t nmemb, | |
152 VFSFile * file) | |
153 { | |
154 if (file == NULL) | |
155 return 0; | |
156 | |
157 return file->base->vfs_fread_impl(ptr, size, nmemb, file); | |
158 } | |
159 | |
160 /** | |
161 * vfs_fwrite: | |
162 * @ptr: A const pointer to the source buffer. | |
163 * @size: The size of each element to write. | |
164 * @nmemb: The number of elements to write. | |
165 * @file: #VFSFile object that represents the VFS stream. | |
166 * | |
167 * Writes to a VFS stream. | |
168 * | |
169 * Return value: The amount of elements succesfully written. | |
170 **/ | |
171 size_t | |
172 vfs_fwrite(gconstpointer ptr, | |
173 size_t size, | |
174 size_t nmemb, | |
175 VFSFile * file) | |
176 { | |
177 if (file == NULL) | |
178 return 0; | |
179 | |
180 return file->base->vfs_fwrite_impl(ptr, size, nmemb, file); | |
181 } | |
182 | |
183 /** | |
184 * vfs_getc: | |
185 * @stream: #VFSFile object that represents the VFS stream. | |
186 * | |
187 * Reads a character from a VFS stream. | |
188 * | |
189 * Return value: On success, a character. Otherwise, -1. | |
190 **/ | |
191 gint | |
192 vfs_getc(VFSFile *stream) | |
193 { | |
194 if (stream == NULL) | |
195 return -1; | |
196 | |
197 return stream->base->vfs_getc_impl(stream); | |
198 } | |
199 | |
200 /** | |
201 * vfs_ungetc: | |
202 * @c: The character to push back. | |
203 * @stream: #VFSFile object that represents the VFS stream. | |
204 * | |
205 * Pushes a character back to the VFS stream. | |
206 * | |
207 * Return value: On success, 0. Otherwise, -1. | |
208 **/ | |
209 gint | |
210 vfs_ungetc(gint c, VFSFile *stream) | |
211 { | |
212 if (stream == NULL) | |
213 return -1; | |
214 | |
215 return stream->base->vfs_ungetc_impl(c, stream); | |
216 } | |
217 | |
218 /** | |
219 * vfs_fseek: | |
220 * @file: #VFSFile object that represents the VFS stream. | |
221 * @offset: The offset to seek to. | |
222 * @whence: Whether or not the seek is absolute or not. | |
223 * | |
224 * Seeks through a VFS stream. | |
225 * | |
226 * Return value: On success, 1. Otherwise, 0. | |
227 **/ | |
228 gint | |
229 vfs_fseek(VFSFile * file, | |
230 glong offset, | |
231 gint whence) | |
232 { | |
233 if (file == NULL) | |
234 return 0; | |
235 | |
236 return file->base->vfs_fseek_impl(file, offset, whence); | |
237 } | |
238 | |
239 /** | |
240 * vfs_rewind: | |
241 * @file: #VFSFile object that represents the VFS stream. | |
242 * | |
243 * Rewinds a VFS stream. | |
244 **/ | |
245 void | |
246 vfs_rewind(VFSFile * file) | |
247 { | |
248 if (file == NULL) | |
249 return; | |
250 | |
251 file->base->vfs_rewind_impl(file); | |
252 } | |
253 | |
254 /** | |
255 * vfs_ftell: | |
256 * @file: #VFSFile object that represents the VFS stream. | |
257 * | |
258 * Returns the current position in the VFS stream's buffer. | |
259 * | |
260 * Return value: On success, the current position. Otherwise, -1. | |
261 **/ | |
262 glong | |
263 vfs_ftell(VFSFile * file) | |
264 { | |
265 if (file == NULL) | |
266 return -1; | |
267 | |
268 return file->base->vfs_ftell_impl(file); | |
269 } | |
270 | |
271 /** | |
272 * vfs_feof: | |
273 * @file: #VFSFile object that represents the VFS stream. | |
274 * | |
275 * Returns whether or not the VFS stream has reached EOF. | |
276 * | |
277 * Return value: On success, whether or not the VFS stream is at EOF. Otherwise, FALSE. | |
278 **/ | |
279 gboolean | |
280 vfs_feof(VFSFile * file) | |
281 { | |
282 if (file == NULL) | |
283 return FALSE; | |
284 | |
285 return (gboolean) file->base->vfs_feof_impl(file); | |
286 } | |
287 | |
288 /** | |
289 * vfs_truncate: | |
290 * @file: #VFSFile object that represents the VFS stream. | |
291 * @length: The length to truncate at. | |
292 * | |
293 * Truncates a VFS stream to a certain size. | |
294 * | |
295 * Return value: On success, 0. Otherwise, -1. | |
296 **/ | |
297 gint | |
298 vfs_truncate(VFSFile * file, glong length) | |
299 { | |
300 if (file == NULL) | |
301 return -1; | |
302 | |
303 return file->base->vfs_truncate_impl(file, length); | |
304 } | |
305 | |
306 /** | |
2688 | 307 * vfs_fsize: |
308 * @file: #VFSFile object that represents the VFS stream. | |
309 * | |
310 * Returns te size of the file | |
311 * | |
312 * Return value: On success, the size of the file in bytes. | |
313 * Otherwise, -1. | |
314 */ | |
315 off_t | |
316 vfs_fsize(VFSFile * file) | |
317 { | |
318 if (file == NULL) | |
319 return -1; | |
320 | |
321 return file->base->vfs_fsize_impl(file); | |
322 } | |
323 | |
324 /** | |
2376
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
325 * vfs_get_metadata: |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
326 * @file: #VFSFile object that represents the VFS stream. |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
327 * @field: The string constant field name to get. |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
328 * |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
329 * Returns metadata about the stream. |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
330 * |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
331 * Return value: On success, a copy of the value of the |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
332 * field. Otherwise, NULL. |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
333 **/ |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
334 gchar * |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
335 vfs_get_metadata(VFSFile * file, const gchar * field) |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
336 { |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
337 if (file == NULL) |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
338 return NULL; |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
339 |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
340 if (file->base->vfs_get_metadata_impl) |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
341 return file->base->vfs_get_metadata_impl(file, field); |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
342 return NULL; |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
343 } |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
344 |
e1513290ee3c
[svn] Add a VFSFile method for getting metadata associated with the file.
iabervon
parents:
2370
diff
changeset
|
345 /** |
2313 | 346 * vfs_file_test: |
347 * @path: A path to test. | |
348 * @test: A GFileTest to run. | |
349 * | |
350 * Wrapper for g_file_test(). | |
351 * | |
352 * Return value: The result of g_file_test(). | |
353 **/ | |
354 gboolean | |
355 vfs_file_test(const gchar * path, GFileTest test) | |
356 { | |
2575 | 357 gchar *path2; |
358 gboolean ret; | |
359 | |
2978
f4971c7d6384
Remove inlined urldecoding functions and use g_filename_from_uri() instead where appropriate.
William Pitcock <nenolod@atheme-project.org>
parents:
2976
diff
changeset
|
360 path2 = g_filename_from_uri(path, NULL, NULL); |
2575 | 361 |
2580
48288757d7c7
[svn] - fix a regression introduced by the DnD fix.
nenolod
parents:
2579
diff
changeset
|
362 if (path2 == NULL) |
48288757d7c7
[svn] - fix a regression introduced by the DnD fix.
nenolod
parents:
2579
diff
changeset
|
363 path2 = g_strdup(path); |
48288757d7c7
[svn] - fix a regression introduced by the DnD fix.
nenolod
parents:
2579
diff
changeset
|
364 |
2575 | 365 ret = g_file_test(path2, test); |
366 | |
367 g_free(path2); | |
368 | |
369 return ret; | |
2313 | 370 } |
371 | |
372 /** | |
373 * vfs_is_writeable: | |
374 * @path: A path to test. | |
375 * | |
376 * Tests if a file is writeable. | |
377 * | |
378 * Return value: TRUE if the file is writeable, otherwise FALSE. | |
379 **/ | |
380 gboolean | |
381 vfs_is_writeable(const gchar * path) | |
382 { | |
383 struct stat info; | |
384 | |
385 if (stat(path, &info) == -1) | |
386 return FALSE; | |
387 | |
388 return (info.st_mode & S_IWUSR); | |
389 } | |
2562
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
390 |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
391 /** |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
392 * vfs_dup: |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
393 * @in: The VFSFile handle to mark as duplicated. |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
394 * |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
395 * Increments the amount of references that are using this FD. |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
396 * References are removed by calling vfs_fclose on the handle returned |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
397 * from this function. |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
398 * If the amount of references reaches zero, then the file will be |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
399 * closed. |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
400 **/ |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
401 VFSFile * |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
402 vfs_dup(VFSFile *in) |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
403 { |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
404 g_return_val_if_fail(in != NULL, NULL); |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
405 |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
406 in->ref++; |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
407 |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
408 return in; |
07b990906823
[svn] - add reference-counting to VFS and add new function, vfs_dup() to
nenolod
parents:
2534
diff
changeset
|
409 } |