libgnomevfs2-mythtv/modules/mythtv-method.c
author rosfran
Wed Apr 25 01:07:56 2007 +0100 (2007-04-25)
branchtrunk
changeset 593 95263ab433f1
parent 507 178207a9cd61
child 606 45798efca6ef
permissions -rwxr-xr-x
[svn r599] Automated test scripts in Python (it will runs over gcov, and generate reports on GMyth library running).
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>
leo_sobral@441
    25
#include <glib/gprintf.h>
leo_sobral@441
    26
#include <glib/gstdio.h>
melunko@38
    27
#include <math.h>
melunko@38
    28
melunko@38
    29
#include <libgnomevfs/gnome-vfs-module.h>
melunko@38
    30
#include <libgnomevfs/gnome-vfs-utils.h>
melunko@38
    31
rosfran@547
    32
#include <gmyth/gmyth_file.h>
rosfran@277
    33
#include <gmyth/gmyth_file_transfer.h>
rosfran@547
    34
#include <gmyth/gmyth_file_local.h>
rosfran@277
    35
#include <gmyth/gmyth_livetv.h>
rosfran@277
    36
#include <gmyth/gmyth_uri.h>
rosfran@277
    37
#include <gmyth/gmyth_recorder.h>
rosfran@277
    38
#include <gmyth/gmyth_backendinfo.h>
rosfran@277
    39
#include <gmyth/gmyth_util.h>
rosfran@332
    40
#include <gmyth/gmyth_remote_util.h>
rosfran@332
    41
#include <gmyth/gmyth_tvchain.h>
rosfran@357
    42
#include <gmyth/gmyth_programinfo.h>
melunko@38
    43
melunko@38
    44
#define GST_MYTHTV_ID_NUM               1
melunko@38
    45
#define MYTHTV_VERSION_DEFAULT          30
rosfran@277
    46
#define MYTHTV_TRANSFER_MAX_WAITS       100
melunko@38
    47
rosfran@361
    48
/* internal GnomeVFS plug-in buffer size ( 120 Kbytes ) */
leo_sobral@441
    49
#define MYTHTV_BUFFER_SIZE                          80*1024
rosfran@361
    50
/* internally sized GnomeVFS plug-in buffer ( 4 Kbytes ) */
leo_sobral@441
    51
#define MYTHTV_MAX_VFS_BUFFER_SIZE                  4096
rosfran@361
    52
/* maximum number of bytes to be requested to the MythTV backend ( 64 Kbytes ) */
leo_sobral@441
    53
#define MYTHTV_MAX_REQUEST_SIZE                     64*1024
melunko@111
    54
renatofilho@456
    55
typedef struct {
rosfran@547
    56
	GMythFile *file;
renatofilho@456
    57
	GMythLiveTV *livetv;
renatofilho@456
    58
    GMythBackendInfo *backend_info;
renatofilho@456
    59
    GMythURI *gmyth_uri;
renatofilho@456
    60
    GMythRecorder *live_recorder;
renatofilho@502
    61
    gboolean started;
renatofilho@456
    62
    gint64 offset;
renatofilho@456
    63
renatofilho@456
    64
	gchar *channel_name;
renatofilho@456
    65
renatofilho@456
    66
	gint mythtv_version;
renatofilho@456
    67
	gboolean configured;
renatofilho@456
    68
} MythtvHandle;
renatofilho@456
    69
renatofilho@456
    70
renatofilho@367
    71
static GnomeVFSResult do_read (GnomeVFSMethod * method,
renatofilho@367
    72
			       GnomeVFSMethodHandle * method_handle,
renatofilho@367
    73
			       gpointer buffer,
renatofilho@367
    74
			       GnomeVFSFileSize num_bytes,
renatofilho@367
    75
			       GnomeVFSFileSize * bytes_read,
renatofilho@367
    76
			       GnomeVFSContext * context);
melunko@38
    77
renatofilho@456
    78
static GnomeVFSResult   myth_connection_start   (MythtvHandle * method_handle);
renatofilho@456
    79
static void             myth_destroy_handle     (MythtvHandle * method_handle);
renatofilho@456
    80
static GnomeVFSResult   myth_handle_new         (GnomeVFSURI * uri,
renatofilho@456
    81
                                                 MythtvHandle ** method_handle);
renatofilho@456
    82
static GnomeVFSResult   myth_get_file_info      (MythtvHandle * myth_handle,
renatofilho@456
    83
                                                 GnomeVFSURI * uri,
renatofilho@456
    84
                                                 GnomeVFSFileInfo * info);
melunko@111
    85
renatofilho@456
    86
static GnomeVFSResult 
renatofilho@456
    87
myth_handle_new (GnomeVFSURI * uri,
renatofilho@456
    88
                 MythtvHandle ** method_handle)
renatofilho@456
    89
{   
renatofilho@456
    90
    gchar *tmp_str1;
renatofilho@456
    91
    gchar *tmp_str2;
renatofilho@456
    92
renatofilho@456
    93
    _GNOME_VFS_METHOD_PARAM_CHECK (*method_handle == NULL);
renatofilho@456
    94
    
renatofilho@456
    95
	if (gnome_vfs_uri_get_host_name (uri) == NULL) {
renatofilho@456
    96
		return GNOME_VFS_ERROR_INVALID_HOST_NAME;
renatofilho@456
    97
	}
renatofilho@456
    98
renatofilho@456
    99
    *method_handle = g_new0 (MythtvHandle, 1);
renatofilho@456
   100
    (*method_handle)->mythtv_version = MYTHTV_VERSION_DEFAULT;
renatofilho@456
   101
        
renatofilho@456
   102
    tmp_str1 = gnome_vfs_uri_to_string (uri, GNOME_VFS_URI_HIDE_NONE);
renatofilho@456
   103
    tmp_str2 = gnome_vfs_unescape_string (tmp_str1, "");
renatofilho@456
   104
renatofilho@456
   105
    (*method_handle)->backend_info = gmyth_backend_info_new_with_uri (tmp_str2);
renatofilho@456
   106
    (*method_handle)->gmyth_uri = gmyth_uri_new_with_value (tmp_str2);
renatofilho@456
   107
    g_free (tmp_str1);
renatofilho@456
   108
    g_free (tmp_str2);
renatofilho@456
   109
renatofilho@456
   110
    return GNOME_VFS_OK;
renatofilho@456
   111
}   
renatofilho@456
   112
renatofilho@456
   113
static void
renatofilho@456
   114
myth_destroy_handle (MythtvHandle * method_handle)
renatofilho@456
   115
{
renatofilho@456
   116
    //TODO: abort if in tranfer state
renatofilho@456
   117
    
renatofilho@456
   118
    if (method_handle->backend_info != NULL) {
renatofilho@456
   119
        g_object_unref (method_handle->backend_info);
renatofilho@456
   120
        method_handle->backend_info = NULL;
renatofilho@456
   121
    }
renatofilho@456
   122
    
renatofilho@456
   123
    if (method_handle->channel_name != NULL) {
renatofilho@456
   124
        g_free (method_handle->channel_name);
renatofilho@456
   125
        method_handle->channel_name = NULL;
renatofilho@456
   126
    }
renatofilho@456
   127
renatofilho@456
   128
    if (method_handle->livetv != NULL) {
renatofilho@456
   129
        g_object_unref (method_handle->livetv);
renatofilho@456
   130
        method_handle->livetv = NULL;
renatofilho@456
   131
    }
renatofilho@456
   132
rosfran@547
   133
    if (method_handle->file != NULL) {
rosfran@547
   134
        g_object_unref (method_handle->file);
rosfran@547
   135
        method_handle->file = NULL;
renatofilho@456
   136
    }
renatofilho@456
   137
renatofilho@456
   138
    if (method_handle->gmyth_uri != NULL) {
renatofilho@456
   139
        g_object_unref (method_handle->gmyth_uri);
renatofilho@456
   140
        method_handle->gmyth_uri = NULL;
renatofilho@456
   141
    }
renatofilho@456
   142
renatofilho@456
   143
    g_free (method_handle);
renatofilho@456
   144
}
renatofilho@456
   145
renatofilho@456
   146
static GnomeVFSResult
renatofilho@456
   147
myth_get_file_info (MythtvHandle * myth_handle,
renatofilho@456
   148
                    GnomeVFSURI * uri,
renatofilho@456
   149
                    GnomeVFSFileInfo * info)
renatofilho@456
   150
{
renatofilho@456
   151
    GMythURI *gmyth_uri;
renatofilho@456
   152
    GMythBackendInfo *backend_info;
renatofilho@456
   153
    
renatofilho@456
   154
    _GNOME_VFS_METHOD_PARAM_CHECK (info != NULL);
renatofilho@461
   155
    
renatofilho@456
   156
renatofilho@456
   157
    if (myth_handle == NULL) {
renatofilho@456
   158
        gchar *tmp_str1;
renatofilho@456
   159
        gchar *tmp_str2;
renatofilho@456
   160
        
renatofilho@456
   161
        tmp_str1 = gnome_vfs_uri_to_string (uri, GNOME_VFS_URI_HIDE_NONE);
renatofilho@456
   162
        tmp_str2 = gnome_vfs_unescape_string (tmp_str1, "");
renatofilho@456
   163
renatofilho@456
   164
        backend_info = gmyth_backend_info_new_with_uri (tmp_str2);
renatofilho@456
   165
        gmyth_uri = gmyth_uri_new_with_value (tmp_str2);
renatofilho@456
   166
        
renatofilho@456
   167
        g_free (tmp_str1);
renatofilho@456
   168
        g_free (tmp_str2);
renatofilho@456
   169
    } else {
renatofilho@456
   170
        backend_info = g_object_ref (myth_handle->backend_info);
renatofilho@456
   171
        gmyth_uri = g_object_ref (myth_handle->gmyth_uri);
renatofilho@456
   172
    }
renatofilho@456
   173
renatofilho@456
   174
    info->valid_fields = 0;
renatofilho@456
   175
	info->valid_fields = GNOME_VFS_FILE_INFO_FIELDS_TYPE | 
renatofilho@456
   176
        GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE | 
renatofilho@456
   177
        GNOME_VFS_FILE_INFO_FIELDS_PERMISSIONS;
renatofilho@456
   178
    
renatofilho@456
   179
	info->type = GNOME_VFS_FILE_TYPE_REGULAR;
renatofilho@456
   180
    
renatofilho@456
   181
	/* fixme: get from file extension? */
renatofilho@456
   182
	info->mime_type = g_strdup ("video/x-nuv");
renatofilho@456
   183
	info->permissions = GNOME_VFS_PERM_USER_READ | 
renatofilho@456
   184
        GNOME_VFS_PERM_OTHER_READ | 
renatofilho@456
   185
        GNOME_VFS_PERM_GROUP_READ;
renatofilho@456
   186
renatofilho@456
   187
   
renatofilho@456
   188
	info->name = g_strdup (gmyth_uri_get_path (gmyth_uri));
renatofilho@456
   189
renatofilho@456
   190
    /* file size for remote files */
renatofilho@456
   191
    if (gmyth_uri_is_livetv (gmyth_uri) == FALSE) {
rosfran@547
   192
        GMythFile *file = NULL;
rosfran@547
   193
        gboolean ret = FALSE;
rosfran@547
   194
renatofilho@456
   195
        /* Verifies if the file exists */
renatofilho@456
   196
        if (!gmyth_util_file_exists (backend_info, 
renatofilho@456
   197
                    gmyth_uri_get_path (gmyth_uri))) {
rosfran@547
   198
            g_object_unref (file);
renatofilho@456
   199
            g_object_unref (backend_info);
renatofilho@456
   200
            g_debug ("NOT FOUND %s/%d", __FUNCTION__, __LINE__);
renatofilho@456
   201
            return GNOME_VFS_ERROR_NOT_FOUND;
renatofilho@456
   202
		}
renatofilho@461
   203
rosfran@547
   204
        if ( gmyth_uri_is_local_file(gmyth_uri) )
rosfran@547
   205
        {
rosfran@547
   206
          file = GMYTH_FILE( gmyth_file_local_new(backend_info) );
rosfran@547
   207
          ret = gmyth_file_local_open ( GMYTH_FILE_LOCAL( file ) );
rosfran@547
   208
        } else {
rosfran@547
   209
          file = GMYTH_FILE( gmyth_file_transfer_new(backend_info) );
rosfran@547
   210
          ret = gmyth_file_transfer_open ( GMYTH_FILE_TRANSFER(file), gmyth_uri_get_path (gmyth_uri));
rosfran@547
   211
        }
rosfran@547
   212
rosfran@547
   213
        if (!ret) {
rosfran@547
   214
            g_object_unref (file);
renatofilho@461
   215
            g_object_unref (backend_info);
renatofilho@461
   216
            g_debug ("NOT FOUND %s/%d", __FUNCTION__, __LINE__);
renatofilho@461
   217
            return GNOME_VFS_ERROR_NOT_FOUND;
renatofilho@461
   218
        }
renatofilho@456
   219
	
rosfran@547
   220
		info->size = gmyth_file_get_filesize (file);
renatofilho@456
   221
        info->valid_fields |= GNOME_VFS_FILE_INFO_FIELDS_SIZE;
rosfran@547
   222
		g_object_unref (file);
renatofilho@456
   223
	}
renatofilho@456
   224
renatofilho@456
   225
    g_object_unref (backend_info);
renatofilho@456
   226
    g_object_unref (gmyth_uri);
renatofilho@456
   227
    
renatofilho@456
   228
    return GNOME_VFS_OK;
renatofilho@456
   229
}
renatofilho@456
   230
renatofilho@456
   231
static GnomeVFSResult
renatofilho@456
   232
myth_connection_start (MythtvHandle * method_handle)
renatofilho@456
   233
{
renatofilho@456
   234
    GnomeVFSResult result = GNOME_VFS_OK;
renatofilho@456
   235
renatofilho@456
   236
    _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
renatofilho@456
   237
    _GNOME_VFS_METHOD_PARAM_CHECK (method_handle->backend_info != NULL);
renatofilho@456
   238
renatofilho@456
   239
	/* Connect to the backend */
renatofilho@456
   240
	if (gmyth_uri_is_livetv (method_handle->gmyth_uri) == TRUE) {
renatofilho@456
   241
		method_handle->livetv = gmyth_livetv_new (method_handle->backend_info);
renatofilho@456
   242
		method_handle->channel_name = gmyth_uri_get_channel_name (method_handle->gmyth_uri);
renatofilho@456
   243
        
renatofilho@456
   244
		if (method_handle->channel_name != NULL) {
renatofilho@456
   245
		    if (gmyth_livetv_channel_name_setup (method_handle->livetv, 
renatofilho@456
   246
                    method_handle->channel_name) == FALSE) {
renatofilho@456
   247
                result = GNOME_VFS_ERROR_INVALID_URI;
renatofilho@456
   248
    			goto error;
renatofilho@456
   249
			}
renatofilho@456
   250
		} else if (gmyth_livetv_setup (method_handle->livetv) == FALSE) {
renatofilho@456
   251
                result = GNOME_VFS_ERROR_INVALID_URI;
renatofilho@456
   252
                goto error;
renatofilho@456
   253
		}
renatofilho@456
   254
        
renatofilho@456
   255
rosfran@547
   256
    	method_handle->file = 
rosfran@547
   257
            GMYTH_FILE( gmyth_livetv_create_file_transfer (method_handle->livetv) );
renatofilho@456
   258
rosfran@547
   259
        if (method_handle->file == NULL) {
renatofilho@456
   260
            result = GNOME_VFS_ERROR_INVALID_URI;
renatofilho@456
   261
    		g_debug ("MythTV FileTransfer is NULL!\n");
renatofilho@456
   262
            goto error;
renatofilho@456
   263
        }
renatofilho@456
   264
rosfran@547
   265
	    if (!gmyth_file_transfer_open ( GMYTH_FILE_TRANSFER(method_handle->file),
renatofilho@456
   266
                                        method_handle->livetv->uri != NULL ? 
renatofilho@456
   267
                                        gmyth_uri_get_path (method_handle->livetv->uri) :
renatofilho@456
   268
                                        method_handle->livetv->proginfo->pathname->str)) {
renatofilho@456
   269
        
renatofilho@456
   270
            g_debug ("Couldn't open MythTV FileTransfer is NULL!\n");
renatofilho@456
   271
            result = GNOME_VFS_ERROR_NOT_OPEN;
renatofilho@456
   272
            goto error;
renatofilho@456
   273
        }
renatofilho@456
   274
    }
renatofilho@456
   275
    else {
rosfran@547
   276
        gboolean ret = TRUE;
renatofilho@456
   277
		/* Verifies if the file exists */
renatofilho@456
   278
		if (!gmyth_util_file_exists (method_handle->backend_info, 
renatofilho@456
   279
                    gmyth_uri_get_path (method_handle->gmyth_uri))) {
renatofilho@456
   280
renatofilho@456
   281
            g_debug ("NOT FOUND %s/%d", __FUNCTION__, __LINE__);
renatofilho@456
   282
            goto error;
renatofilho@456
   283
		}
rosfran@547
   284
        
rosfran@547
   285
        if ( gmyth_uri_is_local_file(method_handle->gmyth_uri) )
rosfran@547
   286
        {
rosfran@547
   287
          method_handle->file = GMYTH_FILE( gmyth_file_local_new(method_handle->backend_info) );
rosfran@547
   288
          ret = gmyth_file_local_open ( GMYTH_FILE_LOCAL( method_handle->file ) );
rosfran@547
   289
        } else {
rosfran@547
   290
          method_handle->file = GMYTH_FILE( gmyth_file_transfer_new(method_handle->backend_info) );
rosfran@547
   291
          ret = gmyth_file_transfer_open ( GMYTH_FILE_TRANSFER(method_handle->file), 
rosfran@547
   292
                  gmyth_uri_get_path (method_handle->gmyth_uri));
rosfran@547
   293
        }
renatofilho@456
   294
renatofilho@456
   295
		/* sets the Playback monitor connection */
rosfran@547
   296
		if (!ret) {
renatofilho@461
   297
renatofilho@461
   298
            g_debug ("NOT FOUND %s/%d", __FUNCTION__, __LINE__);
renatofilho@461
   299
		    result = GNOME_VFS_ERROR_NOT_FOUND;
renatofilho@461
   300
            goto error;
renatofilho@461
   301
        }
renatofilho@456
   302
	} /* if - LiveTV or not? */
renatofilho@456
   303
renatofilho@456
   304
	method_handle->configured = TRUE;    
renatofilho@456
   305
rosfran@547
   306
    if (method_handle->file == NULL) {
renatofilho@456
   307
        result = GNOME_VFS_ERROR_NOT_OPEN;
renatofilho@456
   308
    }
renatofilho@456
   309
renatofilho@456
   310
error:
renatofilho@456
   311
    
renatofilho@456
   312
    return result; 
renatofilho@456
   313
}
renatofilho@456
   314
melunko@38
   315
static GnomeVFSResult
renatofilho@367
   316
do_open (GnomeVFSMethod * method,
renatofilho@367
   317
	 GnomeVFSMethodHandle ** method_handle,
renatofilho@367
   318
	 GnomeVFSURI * uri,
renatofilho@367
   319
	 GnomeVFSOpenMode mode, GnomeVFSContext * context)
renatofilho@367
   320
{
renatofilho@367
   321
	MythtvHandle *myth_handle = NULL;
renatofilho@456
   322
    GnomeVFSResult result = GNOME_VFS_OK;
renatofilho@456
   323
renatofilho@367
   324
	_GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
renatofilho@367
   325
	_GNOME_VFS_METHOD_PARAM_CHECK (uri != NULL);
melunko@38
   326
renatofilho@367
   327
	if (mode & GNOME_VFS_OPEN_WRITE) {
renatofilho@456
   328
		return GNOME_VFS_ERROR_INVALID_OPEN_MODE;
renatofilho@367
   329
	}
melunko@38
   330
renatofilho@456
   331
    result = myth_handle_new (uri, &myth_handle);
renatofilho@456
   332
    if (result != GNOME_VFS_OK) 
renatofilho@456
   333
        return result;
renatofilho@367
   334
renatofilho@456
   335
    result = myth_connection_start (myth_handle);
renatofilho@456
   336
    if (result != GNOME_VFS_OK) {
renatofilho@456
   337
        myth_destroy_handle (myth_handle);
renatofilho@456
   338
        myth_handle = NULL;
renatofilho@456
   339
        return result;
renatofilho@456
   340
    }
renatofilho@461
   341
renatofilho@456
   342
    *method_handle = (GnomeVFSMethodHandle *) myth_handle;
renatofilho@456
   343
    
renatofilho@456
   344
    return result;
renatofilho@456
   345
}
renatofilho@367
   346
renatofilho@456
   347
static GnomeVFSResult
renatofilho@456
   348
do_create (GnomeVFSMethod	 *method,
renatofilho@456
   349
	   GnomeVFSMethodHandle **method_handle,
renatofilho@456
   350
	   GnomeVFSURI 		 *uri,
renatofilho@456
   351
	   GnomeVFSOpenMode 	  mode,
renatofilho@456
   352
	   gboolean 		  exclusive,
renatofilho@456
   353
	   guint 		  perm,
renatofilho@456
   354
	   GnomeVFSContext 	 *context)
renatofilho@456
   355
{
renatofilho@456
   356
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   357
}
renatofilho@367
   358
renatofilho@456
   359
static GnomeVFSResult
renatofilho@456
   360
do_close (GnomeVFSMethod * method,
renatofilho@456
   361
        GnomeVFSMethodHandle * method_handle, 
renatofilho@456
   362
        GnomeVFSContext * context)
renatofilho@456
   363
{
renatofilho@456
   364
	MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
leo_sobral@447
   365
renatofilho@456
   366
    myth_destroy_handle (myth_handle);
renatofilho@456
   367
    
renatofilho@367
   368
	return GNOME_VFS_OK;
melunko@38
   369
}
melunko@38
   370
renatofilho@456
   371
melunko@38
   372
static GnomeVFSResult
renatofilho@367
   373
do_read (GnomeVFSMethod * method,
renatofilho@367
   374
	 GnomeVFSMethodHandle * method_handle,
renatofilho@367
   375
	 gpointer buffer,
renatofilho@367
   376
	 GnomeVFSFileSize num_bytes,
leo_sobral@441
   377
	 GnomeVFSFileSize * bytes_read, 
renatofilho@456
   378
         GnomeVFSContext * context)
melunko@38
   379
{
renatofilho@502
   380
    GnomeVFSResult retval = GNOME_VFS_OK;
renatofilho@456
   381
    MythtvHandle *myth_handle;
rosfran@547
   382
    GMythFileReadResult result;
renatofilho@456
   383
    GByteArray *myth_buffer = g_byte_array_new ();
melunko@38
   384
renatofilho@456
   385
    _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
melunko@38
   386
renatofilho@456
   387
    myth_handle = (MythtvHandle *) method_handle;
rosfran@547
   388
    if ( gmyth_uri_is_local_file(myth_handle->gmyth_uri) )
rosfran@547
   389
        result = gmyth_file_local_read ( GMYTH_FILE_LOCAL(myth_handle->file),
rosfran@547
   390
                                       myth_buffer,
rosfran@547
   391
                                       num_bytes, gmyth_uri_is_livetv (myth_handle->gmyth_uri));
rosfran@547
   392
    else
rosfran@547
   393
        result = gmyth_file_transfer_read ( GMYTH_FILE_TRANSFER(myth_handle->file),
renatofilho@502
   394
                              		   myth_buffer,
renatofilho@502
   395
                             		   num_bytes, gmyth_uri_is_livetv (myth_handle->gmyth_uri));
melunko@38
   396
renatofilho@367
   397
rosfran@547
   398
    if (result == GMYTH_FILE_READ_ERROR) {
renatofilho@502
   399
        retval = GNOME_VFS_ERROR_IO;
renatofilho@456
   400
    }
renatofilho@367
   401
rosfran@547
   402
    if (result == GMYTH_FILE_READ_EOF) {
renatofilho@502
   403
        retval = GNOME_VFS_ERROR_EOF;
renatofilho@456
   404
    }
renatofilho@367
   405
renatofilho@502
   406
    if (myth_buffer->len > 0) {
renatofilho@502
   407
	    g_memmove (buffer, myth_buffer->data, myth_buffer->len);
renatofilho@502
   408
        *bytes_read = (GnomeVFSFileSize) myth_buffer->len;
renatofilho@502
   409
        myth_handle->offset += myth_buffer->len;
renatofilho@456
   410
        g_byte_array_free (myth_buffer, TRUE);
renatofilho@459
   411
    } 
renatofilho@367
   412
renatofilho@502
   413
	return retval;
melunko@38
   414
}
melunko@38
   415
melunko@38
   416
static GnomeVFSResult
renatofilho@456
   417
do_write (GnomeVFSMethod 	*method,
renatofilho@456
   418
	  GnomeVFSMethodHandle  *method_handle,
renatofilho@456
   419
	  gconstpointer 	 buffer,
renatofilho@456
   420
	  GnomeVFSFileSize 	 num_bytes,
renatofilho@456
   421
	  GnomeVFSFileSize 	*bytes_written,
renatofilho@456
   422
	  GnomeVFSContext 	*context)
melunko@38
   423
{
renatofilho@456
   424
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   425
}
melunko@111
   426
renatofilho@456
   427
static GnomeVFSResult
renatofilho@456
   428
do_seek (GnomeVFSMethod	      *method,
renatofilho@456
   429
	 GnomeVFSMethodHandle *method_handle,
renatofilho@456
   430
	 GnomeVFSSeekPosition  whence,
renatofilho@456
   431
	 GnomeVFSFileOffset    offset,
renatofilho@456
   432
	 GnomeVFSContext      *context)
renatofilho@456
   433
{
renatofilho@456
   434
	MythtvHandle *myth_handle;
renatofilho@460
   435
    //guint64 whence_p = 0;
renatofilho@460
   436
    //gint64 new_offset =0;
renatofilho@367
   437
renatofilho@456
   438
     _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
renatofilho@367
   439
renatofilho@456
   440
     myth_handle = (MythtvHandle *) method_handle;    
renatofilho@456
   441
    
renatofilho@456
   442
    g_debug ("seek offset%"G_GINT64_FORMAT" whence %d", offset, whence);
renatofilho@367
   443
renatofilho@460
   444
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@460
   445
    /*
renatofilho@456
   446
    if (gmyth_uri_is_livetv (myth_handle->gmyth_uri))
renatofilho@456
   447
    
renatofilho@456
   448
    switch (whence)
renatofilho@456
   449
    {
renatofilho@456
   450
        case GNOME_VFS_SEEK_START:
renatofilho@456
   451
            whence_p = 0;
renatofilho@456
   452
            break;
renatofilho@456
   453
        case GNOME_VFS_SEEK_CURRENT:
renatofilho@456
   454
            whence_p = myth_handle->offset;
renatofilho@456
   455
            break;
renatofilho@456
   456
        case GNOME_VFS_SEEK_END:
renatofilho@456
   457
            return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   458
    }
renatofilho@456
   459
    
rosfran@547
   460
    new_offset = gmyth_file_transfer_seek (myth_handle->file, offset, whence_p);
renatofilho@456
   461
    if (new_offset != 0) {
renatofilho@456
   462
        myth_handle->offset = new_offset;
renatofilho@456
   463
        return GNOME_VFS_OK;
renatofilho@456
   464
    }
renatofilho@367
   465
renatofilho@456
   466
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@460
   467
    */
renatofilho@456
   468
}
renatofilho@367
   469
renatofilho@456
   470
static GnomeVFSResult
renatofilho@456
   471
do_tell (GnomeVFSMethod       *method,
renatofilho@456
   472
	 GnomeVFSMethodHandle *method_handle,
renatofilho@456
   473
	 GnomeVFSFileSize   *offset_return)
renatofilho@456
   474
{
renatofilho@456
   475
	MythtvHandle *myth_handle = NULL;
leo_sobral@441
   476
    
renatofilho@456
   477
     _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
renatofilho@456
   478
     
renatofilho@456
   479
    myth_handle = (MythtvHandle *) method_handle;
renatofilho@456
   480
    *offset_return = myth_handle->offset;
renatofilho@367
   481
renatofilho@456
   482
    return GNOME_VFS_OK;
renatofilho@456
   483
}
renatofilho@367
   484
renatofilho@456
   485
static GnomeVFSResult
renatofilho@456
   486
do_truncate_handle (GnomeVFSMethod *method,
renatofilho@456
   487
		    GnomeVFSMethodHandle *method_handle,
renatofilho@456
   488
		    GnomeVFSFileSize where,
renatofilho@456
   489
		    GnomeVFSContext *context)
renatofilho@456
   490
{
renatofilho@456
   491
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   492
}
renatofilho@367
   493
renatofilho@456
   494
static GnomeVFSResult
renatofilho@456
   495
do_open_directory (GnomeVFSMethod 	    *method,
renatofilho@456
   496
		   GnomeVFSMethodHandle    **method_handle,
renatofilho@456
   497
		   GnomeVFSURI 		    *uri,
renatofilho@456
   498
		   GnomeVFSFileInfoOptions   options,
renatofilho@456
   499
		   GnomeVFSContext 	    *context) 
renatofilho@456
   500
{
renatofilho@456
   501
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
melunko@38
   502
}
melunko@38
   503
melunko@38
   504
static GnomeVFSResult
renatofilho@456
   505
do_close_directory (GnomeVFSMethod 	 *method,
renatofilho@456
   506
		    GnomeVFSMethodHandle *method_handle,
renatofilho@456
   507
		    GnomeVFSContext 	 *context) 
renatofilho@456
   508
{
renatofilho@456
   509
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   510
}
renatofilho@456
   511
renatofilho@456
   512
static GnomeVFSResult
renatofilho@456
   513
do_read_directory (GnomeVFSMethod 	*method,
renatofilho@456
   514
       		   GnomeVFSMethodHandle *method_handle,
renatofilho@456
   515
       		   GnomeVFSFileInfo 	*file_info,
renatofilho@456
   516
		   GnomeVFSContext 	*context)
renatofilho@456
   517
{
renatofilho@456
   518
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   519
}
renatofilho@456
   520
renatofilho@456
   521
renatofilho@456
   522
static GnomeVFSResult
renatofilho@367
   523
do_get_file_info (GnomeVFSMethod * method,
renatofilho@367
   524
		  GnomeVFSURI * uri,
renatofilho@367
   525
		  GnomeVFSFileInfo * file_info,
renatofilho@367
   526
		  GnomeVFSFileInfoOptions options,
renatofilho@367
   527
		  GnomeVFSContext * context)
melunko@38
   528
{
renatofilho@456
   529
    return myth_get_file_info (NULL, uri, file_info);
renatofilho@456
   530
}
leo_sobral@447
   531
renatofilho@456
   532
static GnomeVFSResult
renatofilho@456
   533
do_get_file_info_from_handle (GnomeVFSMethod 		*method,
renatofilho@456
   534
            			      GnomeVFSMethodHandle 	*method_handle,
renatofilho@456
   535
			                  GnomeVFSFileInfo 		*file_info,
renatofilho@456
   536
            			      GnomeVFSFileInfoOptions    options,
renatofilho@456
   537
			                  GnomeVFSContext 		*context)
renatofilho@456
   538
{
renatofilho@456
   539
	MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
renatofilho@188
   540
renatofilho@456
   541
    return myth_get_file_info (myth_handle, NULL, file_info);
melunko@38
   542
}
melunko@38
   543
melunko@38
   544
static gboolean
renatofilho@367
   545
do_is_local (GnomeVFSMethod * method, const GnomeVFSURI * uri)
melunko@38
   546
{
melunko@38
   547
	return FALSE;
melunko@38
   548
}
melunko@38
   549
renatofilho@456
   550
static GnomeVFSResult
renatofilho@456
   551
do_make_directory (GnomeVFSMethod  *method, 
renatofilho@456
   552
		            GnomeVFSURI     *uri,
renatofilho@456
   553
                    guint 	    perm, 
renatofilho@456
   554
		            GnomeVFSContext *context) 
renatofilho@456
   555
{
renatofilho@456
   556
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   557
}
renatofilho@456
   558
renatofilho@456
   559
static GnomeVFSResult 
renatofilho@456
   560
do_remove_directory (GnomeVFSMethod  *method, 
renatofilho@456
   561
		             GnomeVFSURI     *uri, 
renatofilho@456
   562
		             GnomeVFSContext *context) 
renatofilho@456
   563
{
renatofilho@456
   564
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   565
}
renatofilho@456
   566
renatofilho@456
   567
static GnomeVFSResult
renatofilho@456
   568
do_move (GnomeVFSMethod  *method,
renatofilho@456
   569
	 GnomeVFSURI 	 *old_uri,
renatofilho@456
   570
	 GnomeVFSURI 	 *new_uri,
renatofilho@456
   571
	 gboolean         force_replace,
renatofilho@456
   572
	 GnomeVFSContext *context)
renatofilho@456
   573
{
renatofilho@456
   574
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   575
}
renatofilho@456
   576
renatofilho@456
   577
static GnomeVFSResult 
renatofilho@456
   578
do_unlink (GnomeVFSMethod  *method,
renatofilho@456
   579
	   GnomeVFSURI 	   *uri,
renatofilho@456
   580
	   GnomeVFSContext *context)
renatofilho@456
   581
{
renatofilho@456
   582
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   583
}
renatofilho@456
   584
renatofilho@456
   585
static GnomeVFSResult 
renatofilho@456
   586
do_check_same_fs (GnomeVFSMethod  *method,
renatofilho@456
   587
		  GnomeVFSURI 	  *a,
renatofilho@456
   588
		  GnomeVFSURI 	  *b,
renatofilho@456
   589
		  gboolean 	  *same_fs_return,
renatofilho@456
   590
		  GnomeVFSContext *context)
renatofilho@456
   591
{
renatofilho@456
   592
    return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   593
}
renatofilho@456
   594
renatofilho@456
   595
static GnomeVFSResult
renatofilho@456
   596
do_set_file_info (GnomeVFSMethod 		*method,
renatofilho@456
   597
		  GnomeVFSURI 			*uri,
renatofilho@456
   598
		  const GnomeVFSFileInfo 	*info,
renatofilho@456
   599
		  GnomeVFSSetFileInfoMask 	 mask,
renatofilho@456
   600
		  GnomeVFSContext 		*context)
renatofilho@456
   601
{
renatofilho@456
   602
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   603
}
renatofilho@456
   604
renatofilho@456
   605
static GnomeVFSResult
renatofilho@456
   606
do_truncate (GnomeVFSMethod *method,
renatofilho@456
   607
	     GnomeVFSURI *uri,
renatofilho@456
   608
	     GnomeVFSFileSize where,
renatofilho@456
   609
	     GnomeVFSContext *context)
renatofilho@456
   610
{
renatofilho@456
   611
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   612
}
renatofilho@456
   613
renatofilho@456
   614
static GnomeVFSResult
renatofilho@456
   615
do_find_directory (GnomeVFSMethod *method,
renatofilho@456
   616
		   GnomeVFSURI *near_uri,
renatofilho@456
   617
		   GnomeVFSFindDirectoryKind kind,
renatofilho@456
   618
		   GnomeVFSURI **result_uri,
renatofilho@456
   619
		   gboolean create_if_needed,
renatofilho@456
   620
		   gboolean find_if_needed,
renatofilho@456
   621
		   guint permissions,
renatofilho@456
   622
		   GnomeVFSContext *context)
renatofilho@456
   623
{
renatofilho@456
   624
	return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   625
}
renatofilho@456
   626
renatofilho@456
   627
static GnomeVFSResult
renatofilho@456
   628
do_create_symbolic_link (GnomeVFSMethod *method,
renatofilho@456
   629
			 GnomeVFSURI *uri,
renatofilho@456
   630
			 const char *target_reference,
renatofilho@456
   631
			 GnomeVFSContext *context)
renatofilho@456
   632
{
renatofilho@456
   633
    return GNOME_VFS_ERROR_READ_ONLY;
renatofilho@456
   634
}
renatofilho@456
   635
renatofilho@456
   636
static GnomeVFSResult
renatofilho@456
   637
do_monitor_add (GnomeVFSMethod *method,
renatofilho@456
   638
		GnomeVFSMethodHandle **method_handle_return,
renatofilho@456
   639
		GnomeVFSURI *uri,
renatofilho@456
   640
		GnomeVFSMonitorType monitor_type)
renatofilho@456
   641
{
renatofilho@456
   642
	return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   643
}
renatofilho@456
   644
renatofilho@456
   645
static GnomeVFSResult
renatofilho@456
   646
do_monitor_cancel (GnomeVFSMethod *method,
renatofilho@456
   647
		   GnomeVFSMethodHandle *method_handle)
renatofilho@456
   648
{
renatofilho@456
   649
	return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   650
}
renatofilho@456
   651
renatofilho@456
   652
static GnomeVFSResult
renatofilho@456
   653
do_file_control (GnomeVFSMethod *method,
renatofilho@456
   654
		 GnomeVFSMethodHandle *method_handle,
renatofilho@456
   655
		 const char *operation,
renatofilho@456
   656
		 gpointer operation_data,
renatofilho@456
   657
		 GnomeVFSContext *context)
renatofilho@456
   658
{
renatofilho@456
   659
	return GNOME_VFS_ERROR_NOT_SUPPORTED;
renatofilho@456
   660
}
renatofilho@456
   661
melunko@38
   662
static GnomeVFSMethod method = {
melunko@38
   663
	sizeof (GnomeVFSMethod),
renatofilho@456
   664
	do_open, 
renatofilho@456
   665
	do_create,
melunko@38
   666
	do_close,
renatofilho@456
   667
	do_read, 
renatofilho@456
   668
	do_write,
renatofilho@456
   669
	do_seek,
renatofilho@456
   670
	do_tell,
renatofilho@456
   671
	do_truncate_handle, 
renatofilho@456
   672
	do_open_directory,
renatofilho@456
   673
	do_close_directory,
renatofilho@456
   674
	do_read_directory,
melunko@38
   675
	do_get_file_info,
renatofilho@456
   676
	do_get_file_info_from_handle,
renatofilho@456
   677
	do_is_local, 
renatofilho@456
   678
	do_make_directory, 
renatofilho@456
   679
	do_remove_directory,
renatofilho@456
   680
	do_move,
renatofilho@456
   681
	do_unlink,
renatofilho@456
   682
	do_check_same_fs,
renatofilho@456
   683
	do_set_file_info,
renatofilho@456
   684
	do_truncate, 
renatofilho@456
   685
	do_find_directory, 
renatofilho@456
   686
	do_create_symbolic_link,  
renatofilho@456
   687
	do_monitor_add,  
renatofilho@456
   688
	do_monitor_cancel,  
renatofilho@456
   689
	do_file_control 	
melunko@38
   690
};
melunko@38
   691
melunko@38
   692
melunko@38
   693
GnomeVFSMethod *
melunko@38
   694
vfs_module_init (const char *method_name, const char *args)
melunko@38
   695
{
melunko@38
   696
	return &method;
melunko@38
   697
}
melunko@38
   698
melunko@38
   699
void
renatofilho@367
   700
vfs_module_shutdown (GnomeVFSMethod * method)
melunko@38
   701
{
melunko@38
   702
}