melunko@38
|
1 |
/*
|
melunko@38
|
2 |
* @author Hallyson Melo <hallyson.melo@indt.org.br>
|
melunko@38
|
3 |
*
|
melunko@38
|
4 |
* This program is free software; you can redistribute it and/or modify
|
melunko@38
|
5 |
* it under the terms of the GNU Lesser General Public License as published by
|
melunko@38
|
6 |
* the Free Software Foundation; either version 2 of the License, or
|
melunko@38
|
7 |
* (at your option) any later version.
|
melunko@38
|
8 |
*
|
melunko@38
|
9 |
* This program is distributed in the hope that it will be useful,
|
melunko@38
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
melunko@38
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
melunko@38
|
12 |
* GNU General Public License for more details.
|
melunko@38
|
13 |
*
|
melunko@38
|
14 |
* You should have received a copy of the GNU Lesser General Public License
|
melunko@38
|
15 |
* along with this program; if not, write to the Free Software
|
melunko@38
|
16 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
melunko@38
|
17 |
*/
|
melunko@38
|
18 |
|
melunko@38
|
19 |
#ifdef HAVE_CONFIG_H
|
melunko@38
|
20 |
#include <config.h>
|
melunko@38
|
21 |
#endif
|
melunko@38
|
22 |
|
melunko@38
|
23 |
#include <string.h>
|
melunko@38
|
24 |
#include <glib.h>
|
melunko@38
|
25 |
#include <math.h>
|
melunko@38
|
26 |
|
melunko@38
|
27 |
#include <libgnomevfs/gnome-vfs-module.h>
|
melunko@38
|
28 |
#include <libgnomevfs/gnome-vfs-utils.h>
|
melunko@38
|
29 |
|
rosfran@277
|
30 |
#include <gmyth/gmyth_file_transfer.h>
|
rosfran@277
|
31 |
#include <gmyth/gmyth_livetv.h>
|
rosfran@277
|
32 |
#include <gmyth/gmyth_uri.h>
|
rosfran@277
|
33 |
#include <gmyth/gmyth_recorder.h>
|
rosfran@277
|
34 |
#include <gmyth/gmyth_backendinfo.h>
|
rosfran@277
|
35 |
#include <gmyth/gmyth_util.h>
|
melunko@38
|
36 |
|
melunko@38
|
37 |
#define GST_MYTHTV_ID_NUM 1
|
melunko@38
|
38 |
#define MYTHTV_VERSION_DEFAULT 30
|
rosfran@277
|
39 |
#define MYTHTV_TRANSFER_MAX_WAITS 100
|
melunko@38
|
40 |
|
melunko@111
|
41 |
#define MYTHTV_BUFFER_SIZE 1024*64
|
melunko@111
|
42 |
|
melunko@38
|
43 |
static GnomeVFSResult do_read (GnomeVFSMethod *method,
|
melunko@38
|
44 |
GnomeVFSMethodHandle *method_handle,
|
melunko@38
|
45 |
gpointer buffer,
|
melunko@38
|
46 |
GnomeVFSFileSize num_bytes,
|
melunko@38
|
47 |
GnomeVFSFileSize *bytes_read,
|
melunko@38
|
48 |
GnomeVFSContext *context);
|
melunko@38
|
49 |
|
melunko@38
|
50 |
typedef struct {
|
melunko@48
|
51 |
GMythFileTransfer *file_transfer;
|
rosfran@277
|
52 |
GMythLiveTV *livetv;
|
rosfran@277
|
53 |
gint channel_num;
|
melunko@38
|
54 |
|
melunko@38
|
55 |
gint mythtv_version;
|
rosfran@297
|
56 |
gint64 content_size;
|
melunko@38
|
57 |
guint64 bytes_read;
|
melunko@111
|
58 |
|
rosfran@116
|
59 |
GByteArray *buffer;
|
melunko@111
|
60 |
gsize buffer_remain;
|
melunko@38
|
61 |
} MythtvHandle;
|
melunko@38
|
62 |
|
melunko@38
|
63 |
static GnomeVFSResult
|
melunko@38
|
64 |
do_open (GnomeVFSMethod *method,
|
melunko@38
|
65 |
GnomeVFSMethodHandle **method_handle,
|
melunko@38
|
66 |
GnomeVFSURI *uri,
|
melunko@38
|
67 |
GnomeVFSOpenMode mode,
|
melunko@38
|
68 |
GnomeVFSContext *context)
|
melunko@38
|
69 |
{
|
melunko@111
|
70 |
MythtvHandle *myth_handle;
|
melunko@160
|
71 |
GMythBackendInfo *backend_info;
|
rosfran@277
|
72 |
GMythURI *gmyth_uri = NULL;
|
rosfran@277
|
73 |
gboolean ret = TRUE;
|
rosfran@277
|
74 |
gboolean is_livetv = FALSE;
|
melunko@38
|
75 |
|
melunko@38
|
76 |
_GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
|
melunko@38
|
77 |
_GNOME_VFS_METHOD_PARAM_CHECK (uri != NULL);
|
melunko@38
|
78 |
|
melunko@111
|
79 |
myth_handle = g_new0 (MythtvHandle, 1);
|
melunko@111
|
80 |
|
melunko@38
|
81 |
if (mode & GNOME_VFS_OPEN_WRITE) {
|
melunko@38
|
82 |
return GNOME_VFS_ERROR_NOT_PERMITTED;
|
melunko@38
|
83 |
}
|
melunko@38
|
84 |
|
renatofilho@149
|
85 |
if (gnome_vfs_uri_get_host_name (uri) == NULL) {
|
renatofilho@149
|
86 |
return GNOME_VFS_ERROR_INVALID_HOST_NAME;
|
melunko@38
|
87 |
}
|
melunko@38
|
88 |
|
melunko@38
|
89 |
/* Initialize mythtv handler*/
|
melunko@38
|
90 |
myth_handle->file_transfer = NULL;
|
rosfran@277
|
91 |
myth_handle->livetv = NULL;
|
melunko@38
|
92 |
myth_handle->mythtv_version = MYTHTV_VERSION_DEFAULT;
|
melunko@38
|
93 |
myth_handle->bytes_read = 0;
|
rosfran@297
|
94 |
myth_handle->content_size = 0;
|
melunko@38
|
95 |
|
rosfran@277
|
96 |
/* Creates and fills out the backend info structure */
|
rosfran@281
|
97 |
backend_info = gmyth_backend_info_new_with_uri (
|
rosfran@281
|
98 |
gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
|
rosfran@277
|
99 |
|
rosfran@277
|
100 |
/* creates an instance of */
|
rosfran@281
|
101 |
gmyth_uri = gmyth_uri_new_with_value(
|
rosfran@281
|
102 |
gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
|
rosfran@297
|
103 |
|
rosfran@297
|
104 |
is_livetv = gmyth_uri_is_livetv( gmyth_uri );
|
rosfran@297
|
105 |
|
rosfran@277
|
106 |
/* Connect to the backend */
|
rosfran@297
|
107 |
if ( gmyth_uri != NULL && is_livetv == TRUE ) {
|
rosfran@277
|
108 |
myth_handle->livetv = gmyth_livetv_new ();
|
rosfran@180
|
109 |
|
rosfran@277
|
110 |
myth_handle->channel_num = gmyth_uri_get_channel_num( gmyth_uri );
|
rosfran@277
|
111 |
|
rosfran@277
|
112 |
if ( myth_handle->channel_num != -1 ) {
|
rosfran@277
|
113 |
if (gmyth_livetv_channel_setup (myth_handle->livetv, myth_handle->channel_num,
|
rosfran@277
|
114 |
backend_info) == FALSE) {
|
rosfran@277
|
115 |
g_object_unref( gmyth_uri );
|
rosfran@277
|
116 |
ret = FALSE;
|
rosfran@277
|
117 |
}
|
rosfran@277
|
118 |
} else {
|
rosfran@277
|
119 |
if ( gmyth_livetv_setup (myth_handle->livetv, backend_info) == FALSE ) {
|
rosfran@277
|
120 |
g_object_unref( gmyth_uri );
|
rosfran@277
|
121 |
ret = FALSE;
|
rosfran@277
|
122 |
}
|
rosfran@277
|
123 |
}
|
rosfran@277
|
124 |
|
rosfran@277
|
125 |
myth_handle->file_transfer = gmyth_livetv_create_file_transfer (myth_handle->livetv);
|
rosfran@277
|
126 |
|
rosfran@277
|
127 |
if (NULL == myth_handle->file_transfer) {
|
rosfran@277
|
128 |
ret = FALSE;
|
rosfran@277
|
129 |
}
|
rosfran@277
|
130 |
|
rosfran@277
|
131 |
} else {
|
rosfran@277
|
132 |
|
rosfran@277
|
133 |
myth_handle->file_transfer = gmyth_file_transfer_new (backend_info);
|
rosfran@277
|
134 |
|
rosfran@277
|
135 |
/* Verifies if the file exists */
|
rosfran@297
|
136 |
if (!gmyth_util_file_exists (backend_info, gmyth_uri_get_path (gmyth_uri))) {
|
rosfran@277
|
137 |
g_object_unref (backend_info);
|
rosfran@277
|
138 |
return GNOME_VFS_ERROR_NOT_FOUND;
|
rosfran@277
|
139 |
}
|
rosfran@277
|
140 |
|
rosfran@277
|
141 |
/* sets the Playback monitor connection */
|
rosfran@297
|
142 |
ret = gmyth_file_transfer_open ( myth_handle->file_transfer, gmyth_uri_get_path (gmyth_uri) );
|
rosfran@277
|
143 |
|
rosfran@277
|
144 |
} /* if - LiveTV or not? */
|
rosfran@277
|
145 |
|
rosfran@277
|
146 |
if (ret == FALSE) {
|
rosfran@277
|
147 |
g_warning ("MythTV FileTransfer open error\n");
|
rosfran@277
|
148 |
return GNOME_VFS_ERROR_NOT_OPEN;
|
rosfran@277
|
149 |
}
|
melunko@251
|
150 |
|
renatofilho@188
|
151 |
g_object_unref (backend_info);
|
rosfran@297
|
152 |
|
rosfran@297
|
153 |
//if ( gmyth_uri != NULL )
|
rosfran@297
|
154 |
// g_object_unref( gmyth_uri );
|
rosfran@297
|
155 |
|
rosfran@297
|
156 |
g_return_val_if_fail (myth_handle->file_transfer != NULL, GNOME_VFS_ERROR_NOT_OPEN);
|
melunko@38
|
157 |
|
melunko@38
|
158 |
myth_handle->content_size = myth_handle->file_transfer->filesize;
|
melunko@111
|
159 |
|
rosfran@116
|
160 |
myth_handle->buffer = g_byte_array_sized_new (MYTHTV_BUFFER_SIZE);
|
melunko@111
|
161 |
myth_handle->buffer_remain = 0;
|
melunko@38
|
162 |
|
melunko@38
|
163 |
*method_handle = (GnomeVFSMethodHandle *) myth_handle;
|
melunko@38
|
164 |
|
melunko@38
|
165 |
return GNOME_VFS_OK;
|
melunko@38
|
166 |
}
|
melunko@38
|
167 |
|
melunko@38
|
168 |
static GnomeVFSResult
|
melunko@38
|
169 |
do_read (GnomeVFSMethod *method,
|
melunko@38
|
170 |
GnomeVFSMethodHandle *method_handle,
|
melunko@38
|
171 |
gpointer buffer,
|
melunko@38
|
172 |
GnomeVFSFileSize num_bytes,
|
melunko@38
|
173 |
GnomeVFSFileSize *bytes_read,
|
melunko@38
|
174 |
GnomeVFSContext *context)
|
melunko@38
|
175 |
{
|
melunko@38
|
176 |
MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
|
melunko@38
|
177 |
GnomeVFSFileSize bytes_to_read;
|
melunko@38
|
178 |
|
melunko@38
|
179 |
*bytes_read = 0;
|
melunko@38
|
180 |
|
melunko@38
|
181 |
if (myth_handle->bytes_read >= myth_handle->content_size)
|
melunko@38
|
182 |
return GNOME_VFS_ERROR_EOF;
|
melunko@38
|
183 |
|
melunko@38
|
184 |
// fixme: change this to min math function
|
melunko@38
|
185 |
if (num_bytes > myth_handle->content_size - myth_handle->bytes_read)
|
melunko@38
|
186 |
bytes_to_read = myth_handle->content_size - myth_handle->bytes_read;
|
melunko@38
|
187 |
else
|
melunko@38
|
188 |
bytes_to_read = num_bytes;
|
melunko@38
|
189 |
|
melunko@38
|
190 |
/* Loop sending the Myth File Transfer request:
|
melunko@38
|
191 |
* Retry whilst authentication fails and we supply it. */
|
rosfran@290
|
192 |
if ((myth_handle->buffer_remain = myth_handle->buffer->len) < MYTHTV_BUFFER_SIZE) {
|
rosfran@290
|
193 |
//if ( bytes_to_read > myth_handle->buffer_remain ) {
|
renatofilho@149
|
194 |
GByteArray *tmp_buffer = g_byte_array_new();
|
melunko@38
|
195 |
|
renatofilho@149
|
196 |
gint len = gmyth_file_transfer_read (myth_handle->file_transfer,
|
renatofilho@149
|
197 |
tmp_buffer, MYTHTV_BUFFER_SIZE - myth_handle->buffer_remain, TRUE);
|
melunko@38
|
198 |
|
melunko@251
|
199 |
if (len < 0) {
|
renatofilho@149
|
200 |
g_byte_array_free (tmp_buffer, TRUE);
|
renatofilho@164
|
201 |
g_warning ("Fail to read bytes");
|
melunko@251
|
202 |
return GNOME_VFS_ERROR_IO;
|
rosfran@290
|
203 |
} /*else if (len == 0) {
|
melunko@251
|
204 |
g_byte_array_free (tmp_buffer, TRUE);
|
melunko@251
|
205 |
g_warning ("End of file probably achieved");
|
melunko@251
|
206 |
return GNOME_VFS_ERROR_EOF;
|
rosfran@290
|
207 |
}*/
|
melunko@111
|
208 |
|
renatofilho@149
|
209 |
myth_handle->buffer = g_byte_array_append (myth_handle->buffer,
|
renatofilho@149
|
210 |
tmp_buffer->data, len);
|
rosfran@116
|
211 |
|
rosfran@116
|
212 |
myth_handle->buffer_remain += len;
|
rosfran@116
|
213 |
|
renatofilho@169
|
214 |
g_byte_array_free (tmp_buffer, TRUE);
|
rosfran@116
|
215 |
tmp_buffer = NULL;
|
rosfran@116
|
216 |
}
|
melunko@38
|
217 |
|
melunko@111
|
218 |
bytes_to_read = (bytes_to_read > myth_handle->buffer_remain) ? myth_handle->buffer_remain : bytes_to_read;
|
renatofilho@164
|
219 |
/* gets the first buffer_size bytes from the byte array buffer variable */
|
rosfran@116
|
220 |
|
renatofilho@149
|
221 |
g_memmove (buffer, myth_handle->buffer->data, bytes_to_read);
|
rosfran@116
|
222 |
|
melunko@111
|
223 |
myth_handle->bytes_read += bytes_to_read;
|
rosfran@116
|
224 |
myth_handle->buffer_remain -= bytes_to_read;
|
rosfran@116
|
225 |
|
rosfran@116
|
226 |
/* flushs the newly buffer got from byte array */
|
renatofilho@149
|
227 |
myth_handle->buffer = g_byte_array_remove_range (myth_handle->buffer, 0, bytes_to_read);
|
melunko@111
|
228 |
*bytes_read = bytes_to_read;
|
melunko@38
|
229 |
|
melunko@38
|
230 |
return GNOME_VFS_OK;
|
melunko@38
|
231 |
}
|
melunko@38
|
232 |
|
melunko@38
|
233 |
static GnomeVFSResult
|
melunko@38
|
234 |
do_close (GnomeVFSMethod *method,
|
melunko@38
|
235 |
GnomeVFSMethodHandle *method_handle,
|
melunko@38
|
236 |
GnomeVFSContext *context)
|
melunko@38
|
237 |
{
|
melunko@111
|
238 |
|
melunko@38
|
239 |
MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
|
melunko@38
|
240 |
|
melunko@111
|
241 |
if (myth_handle->file_transfer) {
|
renatofilho@164
|
242 |
gmyth_file_transfer_close (myth_handle->file_transfer);
|
melunko@38
|
243 |
g_object_unref (myth_handle->file_transfer);
|
renatofilho@164
|
244 |
myth_handle->file_transfer = NULL;
|
melunko@111
|
245 |
}
|
rosfran@127
|
246 |
|
rosfran@277
|
247 |
if (myth_handle->livetv) {
|
rosfran@297
|
248 |
gmyth_livetv_stop_playing(myth_handle->livetv);
|
rosfran@277
|
249 |
g_object_unref (myth_handle->livetv);
|
rosfran@277
|
250 |
myth_handle->livetv = NULL;
|
rosfran@277
|
251 |
}
|
rosfran@277
|
252 |
|
rosfran@127
|
253 |
if (myth_handle->buffer) {
|
renatofilho@164
|
254 |
g_byte_array_free (myth_handle->buffer, TRUE);
|
renatofilho@164
|
255 |
myth_handle->buffer = NULL;
|
rosfran@127
|
256 |
}
|
melunko@38
|
257 |
|
melunko@38
|
258 |
g_free (myth_handle);
|
melunko@38
|
259 |
|
melunko@38
|
260 |
return GNOME_VFS_OK;
|
melunko@38
|
261 |
}
|
melunko@38
|
262 |
|
melunko@38
|
263 |
static GnomeVFSResult
|
melunko@38
|
264 |
do_get_file_info (GnomeVFSMethod *method,
|
melunko@38
|
265 |
GnomeVFSURI *uri,
|
melunko@38
|
266 |
GnomeVFSFileInfo *file_info,
|
melunko@38
|
267 |
GnomeVFSFileInfoOptions options,
|
melunko@38
|
268 |
GnomeVFSContext *context)
|
melunko@38
|
269 |
{
|
renatofilho@188
|
270 |
GMythFileTransfer *file_transfer = NULL;
|
rosfran@297
|
271 |
GMythLiveTV *livetv = NULL;
|
rosfran@297
|
272 |
GMythBackendInfo *backend_info = NULL;
|
rosfran@297
|
273 |
GMythURI *gmyth_uri = NULL;
|
rosfran@297
|
274 |
gboolean is_livetv = FALSE;
|
rosfran@297
|
275 |
gboolean ret = FALSE;
|
rosfran@297
|
276 |
|
rosfran@297
|
277 |
/* Creates and fills out the backend info structure */
|
rosfran@297
|
278 |
backend_info = gmyth_backend_info_new_with_uri (
|
rosfran@297
|
279 |
gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
|
rosfran@297
|
280 |
|
rosfran@297
|
281 |
/* creates an instance of */
|
rosfran@297
|
282 |
gmyth_uri = gmyth_uri_new_with_value(
|
rosfran@297
|
283 |
gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
|
renatofilho@188
|
284 |
|
rosfran@297
|
285 |
is_livetv = gmyth_uri_is_livetv( gmyth_uri );
|
rosfran@297
|
286 |
|
rosfran@297
|
287 |
file_info->name = g_strdup (gmyth_uri_get_path (gmyth_uri));
|
melunko@38
|
288 |
file_info->valid_fields = file_info->valid_fields
|
melunko@38
|
289 |
| GNOME_VFS_FILE_INFO_FIELDS_TYPE
|
melunko@38
|
290 |
| GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE
|
melunko@38
|
291 |
| GNOME_VFS_FILE_INFO_FIELDS_PERMISSIONS;
|
melunko@38
|
292 |
file_info->type = GNOME_VFS_FILE_TYPE_REGULAR;
|
rosfran@297
|
293 |
/* fixme: get from file extension? */
|
melunko@111
|
294 |
file_info->mime_type = g_strdup ("video/x-nuv");
|
melunko@38
|
295 |
file_info->permissions =
|
melunko@38
|
296 |
GNOME_VFS_PERM_USER_READ |
|
melunko@38
|
297 |
GNOME_VFS_PERM_OTHER_READ |
|
melunko@38
|
298 |
GNOME_VFS_PERM_GROUP_READ;
|
melunko@38
|
299 |
|
rosfran@297
|
300 |
/* Connect to the backend */
|
rosfran@297
|
301 |
if ( gmyth_uri != NULL && is_livetv == TRUE ) {
|
rosfran@297
|
302 |
livetv = gmyth_livetv_new ();
|
rosfran@297
|
303 |
|
rosfran@297
|
304 |
gint channel_num = gmyth_uri_get_channel_num( gmyth_uri );
|
rosfran@297
|
305 |
|
rosfran@297
|
306 |
if ( channel_num != -1 ) {
|
rosfran@297
|
307 |
if (gmyth_livetv_channel_setup (livetv, channel_num,
|
rosfran@297
|
308 |
backend_info) == FALSE) {
|
rosfran@297
|
309 |
g_object_unref( gmyth_uri );
|
rosfran@297
|
310 |
ret = FALSE;
|
rosfran@297
|
311 |
}
|
rosfran@297
|
312 |
} else {
|
rosfran@297
|
313 |
if ( gmyth_livetv_setup (livetv, backend_info) == FALSE ) {
|
rosfran@297
|
314 |
g_object_unref( gmyth_uri );
|
rosfran@297
|
315 |
ret = FALSE;
|
rosfran@297
|
316 |
}
|
rosfran@297
|
317 |
}
|
rosfran@297
|
318 |
|
rosfran@297
|
319 |
file_transfer = gmyth_livetv_create_file_transfer (livetv);
|
rosfran@297
|
320 |
|
rosfran@297
|
321 |
if (NULL == file_transfer) {
|
rosfran@297
|
322 |
ret = FALSE;
|
rosfran@297
|
323 |
}
|
rosfran@297
|
324 |
|
rosfran@297
|
325 |
} else {
|
rosfran@297
|
326 |
|
rosfran@297
|
327 |
file_transfer = gmyth_file_transfer_new (backend_info);
|
rosfran@297
|
328 |
|
rosfran@297
|
329 |
/* Verifies if the file exists */
|
rosfran@297
|
330 |
if (!gmyth_util_file_exists (backend_info, gmyth_uri_get_path (gmyth_uri))) {
|
rosfran@297
|
331 |
g_object_unref (backend_info);
|
rosfran@297
|
332 |
return GNOME_VFS_ERROR_NOT_FOUND;
|
rosfran@297
|
333 |
}
|
rosfran@297
|
334 |
|
rosfran@297
|
335 |
/* sets the Playback monitor connection */
|
rosfran@297
|
336 |
ret = gmyth_file_transfer_open ( file_transfer, gmyth_uri_get_path (gmyth_uri) );
|
rosfran@297
|
337 |
|
rosfran@297
|
338 |
} /* if - LiveTV or not? */
|
rosfran@297
|
339 |
|
rosfran@297
|
340 |
if (ret == FALSE) {
|
rosfran@297
|
341 |
g_warning ("MythTV FileTransfer open error\n");
|
rosfran@297
|
342 |
return GNOME_VFS_ERROR_NOT_OPEN;
|
rosfran@297
|
343 |
}
|
renatofilho@188
|
344 |
|
rosfran@297
|
345 |
file_info->size = gmyth_file_transfer_get_filesize (file_transfer);
|
rosfran@297
|
346 |
file_info->block_count = GNOME_VFS_FILE_INFO_FIELDS_BLOCK_COUNT;
|
rosfran@297
|
347 |
file_info->io_block_size = GNOME_VFS_FILE_INFO_FIELDS_IO_BLOCK_SIZE;
|
rosfran@297
|
348 |
|
renatofilho@188
|
349 |
g_object_unref (file_transfer);
|
rosfran@297
|
350 |
g_object_unref (livetv);
|
renatofilho@188
|
351 |
g_object_unref (backend_info);
|
melunko@38
|
352 |
return GNOME_VFS_OK;
|
melunko@38
|
353 |
}
|
melunko@38
|
354 |
|
melunko@38
|
355 |
static gboolean
|
melunko@38
|
356 |
do_is_local (GnomeVFSMethod *method,
|
melunko@38
|
357 |
const GnomeVFSURI *uri)
|
melunko@38
|
358 |
{
|
melunko@38
|
359 |
return FALSE;
|
melunko@38
|
360 |
}
|
melunko@38
|
361 |
|
melunko@38
|
362 |
static GnomeVFSMethod method = {
|
melunko@38
|
363 |
sizeof (GnomeVFSMethod),
|
melunko@38
|
364 |
do_open,
|
melunko@38
|
365 |
NULL,
|
melunko@38
|
366 |
do_close,
|
melunko@38
|
367 |
do_read,
|
melunko@38
|
368 |
NULL,
|
melunko@38
|
369 |
NULL,
|
melunko@38
|
370 |
NULL,
|
melunko@38
|
371 |
NULL,
|
melunko@38
|
372 |
NULL,
|
melunko@38
|
373 |
NULL,
|
melunko@38
|
374 |
NULL,
|
melunko@38
|
375 |
do_get_file_info,
|
melunko@38
|
376 |
NULL,
|
melunko@38
|
377 |
do_is_local,
|
melunko@38
|
378 |
NULL,
|
melunko@38
|
379 |
NULL,
|
melunko@38
|
380 |
NULL,
|
melunko@38
|
381 |
NULL,
|
melunko@38
|
382 |
NULL,
|
melunko@38
|
383 |
NULL,
|
melunko@38
|
384 |
NULL,
|
melunko@38
|
385 |
NULL,
|
melunko@38
|
386 |
NULL,
|
melunko@38
|
387 |
NULL,
|
melunko@38
|
388 |
NULL,
|
melunko@38
|
389 |
NULL,
|
melunko@38
|
390 |
};
|
melunko@38
|
391 |
|
melunko@38
|
392 |
|
melunko@38
|
393 |
GnomeVFSMethod *
|
melunko@38
|
394 |
vfs_module_init (const char *method_name, const char *args)
|
melunko@38
|
395 |
{
|
melunko@38
|
396 |
return &method;
|
melunko@38
|
397 |
}
|
melunko@38
|
398 |
|
melunko@38
|
399 |
void
|
melunko@38
|
400 |
vfs_module_shutdown (GnomeVFSMethod *method)
|
melunko@38
|
401 |
{
|
melunko@38
|
402 |
}
|