[svn r186] Come back passing URI strings to file transfer openings.
2 * @author Hallyson Melo <hallyson.melo@indt.org.br>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <libgnomevfs/gnome-vfs-module.h>
28 #include <libgnomevfs/gnome-vfs-utils.h>
30 #include "gmyth_file_transfer.h"
31 #include "gmyth_backendinfo.h"
33 #define GST_MYTHTV_ID_NUM 1
34 #define MYTHTV_VERSION_DEFAULT 30
36 #define MYTHTV_BUFFER_SIZE 1024*64
38 static GnomeVFSResult do_read (GnomeVFSMethod *method,
39 GnomeVFSMethodHandle *method_handle,
41 GnomeVFSFileSize num_bytes,
42 GnomeVFSFileSize *bytes_read,
43 GnomeVFSContext *context);
46 GMythFileTransfer *file_transfer;
59 do_open (GnomeVFSMethod *method,
60 GnomeVFSMethodHandle **method_handle,
62 GnomeVFSOpenMode mode,
63 GnomeVFSContext *context)
65 MythtvHandle *myth_handle;
66 GMythBackendInfo *backend_info;
69 _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
70 _GNOME_VFS_METHOD_PARAM_CHECK (uri != NULL);
72 myth_handle = g_new0 (MythtvHandle, 1);
74 if (mode & GNOME_VFS_OPEN_WRITE) {
75 return GNOME_VFS_ERROR_NOT_PERMITTED;
78 if (gnome_vfs_uri_get_host_name (uri) == NULL) {
79 return GNOME_VFS_ERROR_INVALID_HOST_NAME;
82 /* Initialize mythtv handler*/
83 myth_handle->file_transfer = NULL;
84 myth_handle->mythtv_version = MYTHTV_VERSION_DEFAULT;
85 myth_handle->bytes_read = 0;
86 myth_handle->content_size = -1;
88 /* Creates and fills out the backend info structure */
89 backend_info = gmyth_backend_info_new_full (
90 gnome_vfs_uri_get_host_name (uri),
92 gnome_vfs_uri_get_host_port (uri));
94 gmyth_backend_info_set_path ( backend_info, gnome_vfs_uri_get_path (uri) );
96 /* Connect to the backend */
97 myth_handle->file_transfer = gmyth_file_transfer_new (backend_info);
99 g_return_val_if_fail (myth_handle->file_transfer != NULL, GNOME_VFS_ERROR_NOT_OPEN);
101 /* sets the Playback monitor connection */
102 ret = gmyth_file_transfer_open (myth_handle->file_transfer);
104 g_warning ("Mythtv FileTransfer open error\n");
105 return GNOME_VFS_ERROR_NOT_OPEN;
108 // TODO: Verify if file exists in the backend
110 myth_handle->content_size = myth_handle->file_transfer->filesize;
112 myth_handle->buffer = g_byte_array_sized_new (MYTHTV_BUFFER_SIZE);
113 myth_handle->buffer_remain = 0;
115 *method_handle = (GnomeVFSMethodHandle *) myth_handle;
120 static GnomeVFSResult
121 do_read (GnomeVFSMethod *method,
122 GnomeVFSMethodHandle *method_handle,
124 GnomeVFSFileSize num_bytes,
125 GnomeVFSFileSize *bytes_read,
126 GnomeVFSContext *context)
128 MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
129 GnomeVFSFileSize bytes_to_read;
133 if (myth_handle->bytes_read >= myth_handle->content_size)
134 return GNOME_VFS_ERROR_EOF;
136 // fixme: change this to min math function
137 if (num_bytes > myth_handle->content_size - myth_handle->bytes_read)
138 bytes_to_read = myth_handle->content_size - myth_handle->bytes_read;
140 bytes_to_read = num_bytes;
142 /* Loop sending the Myth File Transfer request:
143 * Retry whilst authentication fails and we supply it. */
145 if ( bytes_to_read > myth_handle->buffer_remain ) {
146 GByteArray *tmp_buffer = g_byte_array_new();
148 gint len = gmyth_file_transfer_read (myth_handle->file_transfer,
149 tmp_buffer, MYTHTV_BUFFER_SIZE - myth_handle->buffer_remain, TRUE);
152 g_byte_array_free (tmp_buffer, TRUE);
153 g_warning ("Fail to read bytes");
154 return GNOME_VFS_ERROR_IO;
157 myth_handle->buffer = g_byte_array_append (myth_handle->buffer,
158 tmp_buffer->data, len);
160 myth_handle->buffer_remain += len;
162 g_byte_array_free (tmp_buffer, TRUE);
166 bytes_to_read = (bytes_to_read > myth_handle->buffer_remain) ? myth_handle->buffer_remain : bytes_to_read;
167 /* gets the first buffer_size bytes from the byte array buffer variable */
169 g_memmove (buffer, myth_handle->buffer->data, bytes_to_read);
171 myth_handle->bytes_read += bytes_to_read;
172 myth_handle->buffer_remain -= bytes_to_read;
174 /* flushs the newly buffer got from byte array */
175 myth_handle->buffer = g_byte_array_remove_range (myth_handle->buffer, 0, bytes_to_read);
176 *bytes_read = bytes_to_read;
181 static GnomeVFSResult
182 do_close (GnomeVFSMethod *method,
183 GnomeVFSMethodHandle *method_handle,
184 GnomeVFSContext *context)
187 MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
189 if (myth_handle->file_transfer) {
190 gmyth_file_transfer_close (myth_handle->file_transfer);
191 g_object_unref (myth_handle->file_transfer);
192 myth_handle->file_transfer = NULL;
195 if (myth_handle->buffer) {
196 g_byte_array_free (myth_handle->buffer, TRUE);
197 myth_handle->buffer = NULL;
200 g_free (myth_handle);
205 static GnomeVFSResult
206 do_get_file_info (GnomeVFSMethod *method,
208 GnomeVFSFileInfo *file_info,
209 GnomeVFSFileInfoOptions options,
210 GnomeVFSContext *context)
212 file_info->name = g_strdup ("fixme.txt");
213 file_info->valid_fields = file_info->valid_fields
214 | GNOME_VFS_FILE_INFO_FIELDS_TYPE
215 | GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE
216 | GNOME_VFS_FILE_INFO_FIELDS_PERMISSIONS;
217 file_info->type = GNOME_VFS_FILE_TYPE_REGULAR;
218 // fixme: get from file extension?
219 file_info->mime_type = g_strdup ("video/x-nuv");
220 file_info->permissions =
221 GNOME_VFS_PERM_USER_READ |
222 GNOME_VFS_PERM_OTHER_READ |
223 GNOME_VFS_PERM_GROUP_READ;
229 do_is_local (GnomeVFSMethod *method,
230 const GnomeVFSURI *uri)
235 static GnomeVFSMethod method = {
236 sizeof (GnomeVFSMethod),
267 vfs_module_init (const char *method_name, const char *args)
273 vfs_module_shutdown (GnomeVFSMethod *method)