libgnomevfs2-mythtv/modules/mythtv-method.c
author rosfran
Mon Nov 27 22:18:27 2006 +0000 (2006-11-27)
branchtrunk
changeset 120 ee3d9b05e4f2
parent 111 dfa72795bd32
child 127 a7237ce91c3b
permissions -rwxr-xr-x
[svn r121] Some changes to the BackendInfo.
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
melunko@48
    30
#include "gmyth_file_transfer.h"
melunko@38
    31
melunko@38
    32
#define GST_MYTHTV_ID_NUM               1
melunko@38
    33
#define MYTHTV_VERSION_DEFAULT          30
melunko@38
    34
melunko@111
    35
#define MYTHTV_BUFFER_SIZE		1024*64
melunko@111
    36
melunko@38
    37
static GnomeVFSResult do_read (GnomeVFSMethod *method,
melunko@38
    38
                               GnomeVFSMethodHandle *method_handle,
melunko@38
    39
                               gpointer buffer,
melunko@38
    40
                               GnomeVFSFileSize num_bytes,
melunko@38
    41
                               GnomeVFSFileSize *bytes_read,
melunko@38
    42
                               GnomeVFSContext *context);
melunko@38
    43
melunko@38
    44
typedef struct {
melunko@48
    45
    GMythFileTransfer *file_transfer;
melunko@38
    46
    
melunko@38
    47
    gint mythtv_version;
melunko@38
    48
    guint64 content_size;
melunko@38
    49
    guint64 bytes_read;
melunko@111
    50
rosfran@116
    51
    GByteArray *buffer;
melunko@111
    52
    gsize buffer_remain;
melunko@38
    53
} MythtvHandle;
melunko@38
    54
melunko@38
    55
melunko@38
    56
melunko@38
    57
static GnomeVFSResult
melunko@38
    58
do_open (GnomeVFSMethod *method,
melunko@38
    59
         GnomeVFSMethodHandle **method_handle,
melunko@38
    60
         GnomeVFSURI *uri,
melunko@38
    61
         GnomeVFSOpenMode mode,
melunko@38
    62
         GnomeVFSContext *context)
melunko@38
    63
{
melunko@38
    64
melunko@38
    65
    const gchar *user, *password, *host, *transfer_uri;
melunko@111
    66
    MythtvHandle *myth_handle;
melunko@111
    67
melunko@111
    68
    GString *uri_str;
melunko@38
    69
    guint port;
melunko@38
    70
    gchar *path;
melunko@38
    71
    gboolean ret;
melunko@38
    72
melunko@38
    73
    _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
melunko@38
    74
    _GNOME_VFS_METHOD_PARAM_CHECK (uri != NULL);
melunko@38
    75
melunko@111
    76
    g_debug ("[%s] Calling do_open function", __FUNCTION__);
melunko@111
    77
	    
melunko@111
    78
    myth_handle = g_new0 (MythtvHandle, 1);
melunko@111
    79
melunko@38
    80
    if (mode & GNOME_VFS_OPEN_WRITE) {
melunko@38
    81
        return GNOME_VFS_ERROR_NOT_PERMITTED;
melunko@38
    82
    }
melunko@38
    83
melunko@38
    84
    if ((host = gnome_vfs_uri_get_host_name (uri)) == NULL) {
melunko@38
    85
	return GNOME_VFS_ERROR_INVALID_HOST_NAME;
melunko@38
    86
    }
melunko@38
    87
melunko@38
    88
    /* Parse URI */
melunko@38
    89
    path = gnome_vfs_unescape_string (uri->text, NULL);
melunko@38
    90
    port = gnome_vfs_uri_get_host_port (uri);
melunko@38
    91
    user = gnome_vfs_uri_get_user_name (uri);
melunko@38
    92
    password = gnome_vfs_uri_get_password (uri);
melunko@38
    93
melunko@38
    94
    transfer_uri = gnome_vfs_uri_to_string (uri, 
melunko@38
    95
		    GNOME_VFS_URI_HIDE_USER_NAME | GNOME_VFS_URI_HIDE_PASSWORD);
melunko@38
    96
   
melunko@38
    97
    /* Initialize mythtv handler*/
melunko@38
    98
    myth_handle->file_transfer = NULL;
melunko@38
    99
    myth_handle->mythtv_version = MYTHTV_VERSION_DEFAULT;
melunko@38
   100
    myth_handle->bytes_read = 0;
melunko@38
   101
    myth_handle->content_size = -1;
melunko@38
   102
melunko@38
   103
    /* Connect to the backend */
melunko@111
   104
    myth_handle->file_transfer = gmyth_file_transfer_new ();
melunko@38
   105
melunko@111
   106
    g_return_val_if_fail (myth_handle->file_transfer != NULL, GNOME_VFS_ERROR_NOT_OPEN);
melunko@38
   107
melunko@38
   108
    /* sets the Playback monitor connection */
melunko@111
   109
    uri_str = g_string_new (transfer_uri);
melunko@111
   110
    ret = gmyth_file_transfer_open (myth_handle->file_transfer, uri_str);
melunko@38
   111
    if (ret == FALSE) {
melunko@111
   112
        g_printerr ("Mythtv FileTransfer open error\n");
melunko@111
   113
        return GNOME_VFS_ERROR_NOT_OPEN;
melunko@38
   114
    }
melunko@111
   115
    g_string_free (uri_str, TRUE);
melunko@38
   116
melunko@38
   117
    // TODO: Verify if file exists in the backend
melunko@38
   118
melunko@38
   119
    myth_handle->content_size = myth_handle->file_transfer->filesize;
melunko@111
   120
    
rosfran@116
   121
    myth_handle->buffer = g_byte_array_sized_new (MYTHTV_BUFFER_SIZE);
melunko@111
   122
    myth_handle->buffer_remain = 0;
melunko@38
   123
melunko@38
   124
    *method_handle = (GnomeVFSMethodHandle *) myth_handle;
melunko@38
   125
melunko@38
   126
    return GNOME_VFS_OK;
melunko@38
   127
}
melunko@38
   128
melunko@38
   129
static GnomeVFSResult
melunko@38
   130
do_read (GnomeVFSMethod *method,
melunko@38
   131
         GnomeVFSMethodHandle *method_handle,
melunko@38
   132
         gpointer buffer,
melunko@38
   133
         GnomeVFSFileSize num_bytes,
melunko@38
   134
         GnomeVFSFileSize *bytes_read,
melunko@38
   135
         GnomeVFSContext *context)
melunko@38
   136
{
melunko@38
   137
    MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
melunko@38
   138
    GnomeVFSFileSize bytes_to_read;
melunko@38
   139
rosfran@116
   140
    g_debug ("do_read(): file size: %llu, already read: %llu, requested: %llu, buffer_remain: %du", 
melunko@111
   141
		    myth_handle->content_size, myth_handle->bytes_read, num_bytes, 
rosfran@116
   142
				myth_handle->buffer_remain);
melunko@38
   143
melunko@38
   144
    *bytes_read = 0;
melunko@38
   145
melunko@38
   146
    if (myth_handle->bytes_read >= myth_handle->content_size)
melunko@38
   147
        return GNOME_VFS_ERROR_EOF;
melunko@38
   148
melunko@38
   149
    // fixme: change this to min math function
melunko@38
   150
    if (num_bytes > myth_handle->content_size - myth_handle->bytes_read)
melunko@38
   151
	    bytes_to_read = myth_handle->content_size - myth_handle->bytes_read;
melunko@38
   152
    else
melunko@38
   153
	    bytes_to_read = num_bytes;
melunko@38
   154
melunko@38
   155
    /* Loop sending the Myth File Transfer request:
melunko@38
   156
    * Retry whilst authentication fails and we supply it. */
rosfran@116
   157
  
rosfran@116
   158
  if ( bytes_to_read > myth_handle->buffer_remain ) {
rosfran@116
   159
  	GByteArray *tmp_buffer = g_byte_array_new();
melunko@38
   160
rosfran@116
   161
    gint len = gmyth_file_transfer_read( myth_handle->file_transfer,
rosfran@116
   162
          tmp_buffer, MYTHTV_BUFFER_SIZE - myth_handle->buffer_remain, TRUE );
melunko@38
   163
rosfran@116
   164
		if (len < 0)
rosfran@116
   165
		    return GNOME_VFS_ERROR_IO;
melunko@111
   166
rosfran@116
   167
    myth_handle->buffer = g_byte_array_append( myth_handle->buffer, 
rosfran@116
   168
    				g_memdup( tmp_buffer->data, len ), len );
rosfran@116
   169
rosfran@116
   170
		myth_handle->buffer_remain += len;
rosfran@116
   171
rosfran@116
   172
		g_debug ( "Reading %d data from backend", MYTHTV_BUFFER_SIZE - myth_handle->buffer_remain );
melunko@111
   173
	
rosfran@116
   174
    if ( tmp_buffer != NULL ) {
rosfran@116
   175
    	g_byte_array_free( tmp_buffer, TRUE );
rosfran@116
   176
    	tmp_buffer = NULL;    	
rosfran@116
   177
    }
melunko@111
   178
rosfran@116
   179
  }
melunko@38
   180
    
melunko@111
   181
    bytes_to_read = (bytes_to_read > myth_handle->buffer_remain) ? myth_handle->buffer_remain : bytes_to_read;
melunko@111
   182
rosfran@116
   183
    g_debug ("Returning %du bytes to gnomevfs", (gint) bytes_to_read);
rosfran@116
   184
	  /* gets the first buffer_size bytes from the byte array buffer variable */ 
rosfran@116
   185
rosfran@116
   186
	  g_memmove( buffer, myth_handle->buffer->data, bytes_to_read );
rosfran@116
   187
melunko@111
   188
    myth_handle->bytes_read += bytes_to_read;
rosfran@116
   189
    myth_handle->buffer_remain -= bytes_to_read;    
rosfran@116
   190
rosfran@116
   191
  	/* flushs the newly buffer got from byte array */
rosfran@116
   192
  	myth_handle->buffer = g_byte_array_remove_range( myth_handle->buffer, 0, bytes_to_read );
melunko@111
   193
    *bytes_read = bytes_to_read;
melunko@38
   194
  
melunko@38
   195
    return GNOME_VFS_OK;
melunko@38
   196
}
melunko@38
   197
melunko@38
   198
static GnomeVFSResult
melunko@38
   199
do_close (GnomeVFSMethod *method,
melunko@38
   200
          GnomeVFSMethodHandle *method_handle,
melunko@38
   201
          GnomeVFSContext *context)
melunko@38
   202
{
melunko@111
   203
melunko@38
   204
    MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
melunko@38
   205
melunko@111
   206
    if (myth_handle->file_transfer) {
melunko@111
   207
	gmyth_file_transfer_close (myth_handle->file_transfer);
melunko@38
   208
        g_object_unref (myth_handle->file_transfer);
melunko@111
   209
	myth_handle->file_transfer = NULL;
melunko@111
   210
    }
melunko@38
   211
melunko@38
   212
    g_free (myth_handle);
melunko@38
   213
melunko@38
   214
    return GNOME_VFS_OK;
melunko@38
   215
}
melunko@38
   216
melunko@38
   217
static GnomeVFSResult
melunko@38
   218
do_get_file_info (GnomeVFSMethod *method,
melunko@38
   219
                  GnomeVFSURI *uri,
melunko@38
   220
                  GnomeVFSFileInfo *file_info,
melunko@38
   221
                  GnomeVFSFileInfoOptions options,
melunko@38
   222
                  GnomeVFSContext *context)
melunko@38
   223
{
melunko@111
   224
    file_info->name = g_strdup ("fixme.txt");
melunko@38
   225
    file_info->valid_fields = file_info->valid_fields
melunko@38
   226
        | GNOME_VFS_FILE_INFO_FIELDS_TYPE
melunko@38
   227
        | GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE
melunko@38
   228
        | GNOME_VFS_FILE_INFO_FIELDS_PERMISSIONS;
melunko@38
   229
    file_info->type = GNOME_VFS_FILE_TYPE_REGULAR;
melunko@111
   230
    // fixme: get from file extension?
melunko@111
   231
    file_info->mime_type = g_strdup ("video/x-nuv");
melunko@38
   232
    file_info->permissions =
melunko@38
   233
        GNOME_VFS_PERM_USER_READ |
melunko@38
   234
        GNOME_VFS_PERM_OTHER_READ |
melunko@38
   235
        GNOME_VFS_PERM_GROUP_READ;
melunko@38
   236
melunko@38
   237
    return GNOME_VFS_OK;
melunko@38
   238
}
melunko@38
   239
melunko@38
   240
static gboolean
melunko@38
   241
do_is_local (GnomeVFSMethod *method,
melunko@38
   242
             const GnomeVFSURI *uri)
melunko@38
   243
{
melunko@38
   244
	return FALSE;
melunko@38
   245
}
melunko@38
   246
melunko@38
   247
static GnomeVFSMethod method = {
melunko@38
   248
	sizeof (GnomeVFSMethod),
melunko@38
   249
	do_open,
melunko@38
   250
	NULL,
melunko@38
   251
	do_close,
melunko@38
   252
	do_read,
melunko@38
   253
	NULL,
melunko@38
   254
	NULL,
melunko@38
   255
	NULL,
melunko@38
   256
	NULL,
melunko@38
   257
	NULL,
melunko@38
   258
	NULL,
melunko@38
   259
	NULL,
melunko@38
   260
	do_get_file_info,
melunko@38
   261
	NULL,
melunko@38
   262
	do_is_local,
melunko@38
   263
	NULL,
melunko@38
   264
	NULL,
melunko@38
   265
	NULL,
melunko@38
   266
	NULL,
melunko@38
   267
	NULL,
melunko@38
   268
	NULL,
melunko@38
   269
	NULL,
melunko@38
   270
	NULL,
melunko@38
   271
	NULL,
melunko@38
   272
	NULL,
melunko@38
   273
	NULL,
melunko@38
   274
	NULL,
melunko@38
   275
};
melunko@38
   276
melunko@38
   277
melunko@38
   278
GnomeVFSMethod *
melunko@38
   279
vfs_module_init (const char *method_name, const char *args)
melunko@38
   280
{
melunko@38
   281
	return &method;
melunko@38
   282
}
melunko@38
   283
melunko@38
   284
void
melunko@38
   285
vfs_module_shutdown (GnomeVFSMethod *method)
melunko@38
   286
{
melunko@38
   287
}