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