libgnomevfs2-mythtv/modules/mythtv-method.c
author rosfran
Thu Feb 08 14:30:36 2007 +0000 (2007-02-08)
branchtrunk
changeset 335 aedcbbf818b7
parent 333 f9d778bb88a2
child 338 6d9f4e8468b3
permissions -rwxr-xr-x
[svn r337] Changed the g_object_unref's in the do_get_file_info.
     1 /*
     2  * @author Hallyson Melo <hallyson.melo@indt.org.br>
     3  *
     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.
     8  *
     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.
    13  *
    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
    17  */
    18 
    19 #ifdef HAVE_CONFIG_H
    20 #include <config.h>
    21 #endif
    22 
    23 #include <string.h>
    24 #include <glib.h>
    25 #include <math.h>
    26 
    27 #include <libgnomevfs/gnome-vfs-module.h>
    28 #include <libgnomevfs/gnome-vfs-utils.h>
    29 
    30 #include <gmyth/gmyth_file_transfer.h>
    31 #include <gmyth/gmyth_livetv.h>
    32 #include <gmyth/gmyth_uri.h>
    33 #include <gmyth/gmyth_recorder.h>
    34 #include <gmyth/gmyth_backendinfo.h>
    35 #include <gmyth/gmyth_util.h>
    36 #include <gmyth/gmyth_remote_util.h>
    37 #include <gmyth/gmyth_tvchain.h>
    38 
    39 #define GST_MYTHTV_ID_NUM               1
    40 #define MYTHTV_VERSION_DEFAULT          30
    41 #define MYTHTV_TRANSFER_MAX_WAITS       100
    42 
    43 #define MYTHTV_BUFFER_SIZE							1024*64
    44 
    45 static GnomeVFSResult do_read (GnomeVFSMethod *method,
    46                                GnomeVFSMethodHandle *method_handle,
    47                                gpointer buffer,
    48                                GnomeVFSFileSize num_bytes,
    49                                GnomeVFSFileSize *bytes_read,
    50                                GnomeVFSContext *context);
    51 
    52 typedef struct {
    53     GMythFileTransfer *file_transfer;
    54     GMythLiveTV 			*livetv;
    55     gchar 						*channel_name;
    56     
    57     gint mythtv_version;
    58     gint64 content_size;
    59     guint64 bytes_read;
    60 
    61     GByteArray *buffer;
    62     gsize buffer_remain;
    63 } MythtvHandle;
    64 
    65 static GnomeVFSResult
    66 do_open (GnomeVFSMethod *method,
    67          GnomeVFSMethodHandle **method_handle,
    68          GnomeVFSURI *uri,
    69          GnomeVFSOpenMode mode,
    70          GnomeVFSContext *context)
    71 {
    72     MythtvHandle *myth_handle;
    73     GMythBackendInfo *backend_info;
    74     GMythURI *gmyth_uri = NULL;
    75     gboolean ret = TRUE;
    76     gboolean is_livetv = FALSE;
    77 
    78     _GNOME_VFS_METHOD_PARAM_CHECK (method_handle != NULL);
    79     _GNOME_VFS_METHOD_PARAM_CHECK (uri != NULL);
    80 
    81     myth_handle = g_new0 (MythtvHandle, 1);
    82 
    83     if (mode & GNOME_VFS_OPEN_WRITE) {
    84         return GNOME_VFS_ERROR_NOT_PERMITTED;
    85     }
    86 
    87     if (gnome_vfs_uri_get_host_name (uri) == NULL) {
    88     	return GNOME_VFS_ERROR_INVALID_HOST_NAME;
    89     }
    90 
    91     /* Initialize mythtv handler*/
    92     myth_handle->file_transfer = NULL;
    93     myth_handle->livetv = NULL;
    94     myth_handle->mythtv_version = MYTHTV_VERSION_DEFAULT;
    95     myth_handle->bytes_read = 0;
    96     myth_handle->content_size = (GnomeVFSFileSize) - 1;
    97 
    98     /* Creates and fills out the backend info structure */    
    99 	  backend_info = gmyth_backend_info_new_with_uri ( 
   100 	  			gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
   101 	  
   102 	  /* creates an instance of  */  
   103 	  gmyth_uri = gmyth_uri_new_with_value( 
   104 	  		gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
   105 
   106 	  is_livetv = gmyth_uri_is_livetv( gmyth_uri );
   107 
   108 	  /* Connect to the backend */	  
   109 	  if ( gmyth_uri != NULL && is_livetv == TRUE ) {
   110 	    myth_handle->livetv = gmyth_livetv_new ();
   111 	    
   112 	    myth_handle->channel_name = gmyth_uri_get_channel_name( gmyth_uri );
   113 	    
   114 	    g_print( "[%s] Channel name = %s", __FUNCTION__, myth_handle->channel_name );
   115 	
   116 	    if ( myth_handle->channel_name != NULL ) {
   117 	      if (gmyth_livetv_channel_name_setup (myth_handle->livetv, myth_handle->channel_name,
   118 	              backend_info) == FALSE) {
   119 	        g_object_unref( gmyth_uri );
   120 	        ret = FALSE;
   121 	      }
   122 	    } else {
   123 	      if ( gmyth_livetv_setup (myth_handle->livetv, backend_info) == FALSE ) {
   124 	      	g_object_unref( gmyth_uri );
   125 	        ret = FALSE;
   126 	      }
   127 	    }
   128 	
   129 	    myth_handle->file_transfer = gmyth_livetv_create_file_transfer (myth_handle->livetv);
   130 	
   131 	    if (NULL == myth_handle->file_transfer) {
   132 	      ret = FALSE;
   133 		    g_warning ("MythTV FileTransfer is NULL!\n");
   134 		    return GNOME_VFS_ERROR_NOT_OPEN;
   135 	    }
   136 	    
   137   		if ( !gmyth_file_transfer_open( myth_handle->file_transfer, myth_handle->livetv->uri != NULL ? 
   138 								gmyth_uri_get_path(myth_handle->livetv->uri) : 
   139 								myth_handle->livetv->proginfo->pathname->str ) )
   140 			{
   141 				g_object_unref( myth_handle->file_transfer );
   142 				myth_handle->file_transfer = NULL;
   143 				ret = FALSE;
   144 			}
   145 	    
   146 	  } else {
   147 	
   148 	    myth_handle->file_transfer = gmyth_file_transfer_new (backend_info);
   149 	    
   150 	    /* Verifies if the file exists */
   151 	    if (!gmyth_util_file_exists (backend_info, gmyth_uri_get_path (gmyth_uri))) {
   152 	        g_object_unref (backend_info);
   153 					ret = FALSE;
   154 	    }
   155 	    
   156 	    /* sets the Playback monitor connection */
   157 	    ret = gmyth_file_transfer_open ( myth_handle->file_transfer, 
   158 	    		gmyth_uri_get_path (gmyth_uri) );
   159 		
   160 	  } /* if - LiveTV or not? */
   161 	  
   162     if (ret == FALSE) {
   163 	    g_warning ("MythTV FileTransfer open error.\n");
   164 	    return GNOME_VFS_ERROR_NOT_OPEN;
   165 	  }
   166 
   167     g_object_unref (backend_info);
   168     
   169 	  //if ( gmyth_uri != NULL )
   170 	  //	g_object_unref( gmyth_uri );
   171 	  
   172 	  g_return_val_if_fail (myth_handle->file_transfer != NULL, GNOME_VFS_ERROR_NOT_OPEN);
   173 	  
   174 	  if ( myth_handle->file_transfer->filesize < 0 && is_livetv ) {
   175 	  	myth_handle->content_size = (GnomeVFSFileSize) 0;
   176 			myth_handle->content_size = gmyth_recorder_get_file_position( myth_handle->livetv->recorder );
   177 	  } else		
   178     	myth_handle->content_size = myth_handle->file_transfer->filesize;
   179     
   180     myth_handle->buffer = g_byte_array_sized_new (MYTHTV_BUFFER_SIZE);
   181     myth_handle->buffer_remain = 0;
   182 
   183     *method_handle = (GnomeVFSMethodHandle *) myth_handle;
   184 
   185     return GNOME_VFS_OK;
   186 }
   187 
   188 static GnomeVFSResult
   189 do_read (GnomeVFSMethod *method,
   190          GnomeVFSMethodHandle *method_handle,
   191          gpointer buffer,
   192          GnomeVFSFileSize num_bytes,
   193          GnomeVFSFileSize *bytes_read,
   194          GnomeVFSContext *context)
   195 {
   196   MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
   197   GnomeVFSFileSize bytes_to_read;
   198 
   199   *bytes_read = 0;
   200 
   201   if (myth_handle->bytes_read >= myth_handle->content_size)
   202       return GNOME_VFS_ERROR_EOF;
   203 
   204   // fixme: change this to min math function
   205   if (myth_handle->content_size > 0 && num_bytes > ( myth_handle->content_size - myth_handle->bytes_read ))
   206     bytes_to_read = myth_handle->content_size - myth_handle->bytes_read;
   207   else
   208     bytes_to_read = num_bytes;
   209 
   210   /* Loop sending the Myth File Transfer request:
   211   * Retry whilst authentication fails and we supply it. */
   212   //if (myth_handle->buffer_remain  < MYTHTV_BUFFER_SIZE) {
   213   if ( ( myth_handle->buffer_remain = myth_handle->buffer->len ) < MYTHTV_BUFFER_SIZE ) {
   214   	GByteArray *tmp_buffer = g_byte_array_new();
   215 
   216 		printf ("XXXXXXXXXXXXXX Pedindo %d %d\n", MYTHTV_BUFFER_SIZE, myth_handle->buffer_remain);
   217 
   218     gint len = gmyth_file_transfer_read (myth_handle->file_transfer,
   219           tmp_buffer, MYTHTV_BUFFER_SIZE - myth_handle->buffer_remain, TRUE);
   220 
   221 		if (len < 0) {
   222 	    g_byte_array_free (tmp_buffer, TRUE);
   223 	    g_print ("Fail to read bytes");
   224 	    return GNOME_VFS_ERROR_IO;
   225 	  } /*else if (len == 0) {
   226 		    g_byte_array_free (tmp_buffer, TRUE);
   227 		    g_warning ("End of file probably achieved");
   228 		    return GNOME_VFS_ERROR_EOF;
   229 		}*/
   230 	
   231 	    myth_handle->buffer = g_byte_array_append (myth_handle->buffer,
   232 	    		tmp_buffer->data, len);
   233 	
   234 			myth_handle->buffer_remain += len;
   235 
   236       g_byte_array_free (tmp_buffer, TRUE);
   237     	tmp_buffer = NULL;
   238     }
   239     
   240     bytes_to_read = (bytes_to_read > myth_handle->buffer_remain) ? myth_handle->buffer_remain : bytes_to_read;
   241     /* gets the first buffer_size bytes from the byte array buffer variable */ 
   242 
   243     g_memmove (buffer, myth_handle->buffer->data, bytes_to_read);
   244 
   245     myth_handle->bytes_read += bytes_to_read;
   246     myth_handle->buffer_remain -= bytes_to_read;    
   247 
   248   	/* flushs the newly buffer got from byte array */
   249   	myth_handle->buffer = g_byte_array_remove_range (myth_handle->buffer, 0, bytes_to_read);
   250     *bytes_read = bytes_to_read;
   251   
   252     return GNOME_VFS_OK;
   253 }
   254 
   255 static GnomeVFSResult
   256 do_close (GnomeVFSMethod *method,
   257           GnomeVFSMethodHandle *method_handle,
   258           GnomeVFSContext *context)
   259 {
   260 
   261     MythtvHandle *myth_handle = (MythtvHandle *) method_handle;
   262 
   263     if (myth_handle->file_transfer) {
   264 	    gmyth_file_transfer_close (myth_handle->file_transfer);
   265         g_object_unref (myth_handle->file_transfer);
   266     	myth_handle->file_transfer = NULL;
   267     }
   268     
   269     if (myth_handle->livetv) {
   270       g_object_unref (myth_handle->livetv);
   271     	myth_handle->livetv = NULL;
   272     }
   273     
   274     if (myth_handle->buffer) {
   275 		g_byte_array_free (myth_handle->buffer, TRUE);
   276 		myth_handle->buffer = NULL;
   277     }
   278 
   279     g_free (myth_handle);
   280 
   281     return GNOME_VFS_OK;
   282 }
   283 
   284 static GnomeVFSResult
   285 do_get_file_info (GnomeVFSMethod *method,
   286                   GnomeVFSURI *uri,
   287                   GnomeVFSFileInfo *file_info,
   288                   GnomeVFSFileInfoOptions options,
   289                   GnomeVFSContext *context)
   290 {
   291     GMythFileTransfer *file_transfer = NULL;
   292     GMythRecorder			*recorder 		 = NULL;
   293     GMythTVChain			*tvchain	 		 = NULL;
   294     GMythBackendInfo  *backend_info  = NULL;
   295     GMythURI					*gmyth_uri		 = NULL;
   296 		GMythSocket 			*socket 			 = NULL;		 
   297     gboolean 					is_livetv 		 = FALSE;
   298     gboolean					ret						 = TRUE;
   299     
   300     /* Creates and fills out the backend info structure */    
   301 	  backend_info = gmyth_backend_info_new_with_uri ( 
   302 	  			gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
   303 	  
   304 	  /* creates an instance of */  
   305 	  gmyth_uri = gmyth_uri_new_with_value( 
   306 	  		gnome_vfs_unescape_string( gnome_vfs_uri_to_string( uri, GNOME_VFS_URI_HIDE_NONE ), "" ) );
   307 
   308 	  is_livetv = gmyth_uri_is_livetv( gmyth_uri );
   309 
   310     file_info->valid_fields = file_info->valid_fields
   311         | GNOME_VFS_FILE_INFO_FIELDS_TYPE
   312         | GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE
   313         | GNOME_VFS_FILE_INFO_FIELDS_PERMISSIONS;
   314     file_info->type = GNOME_VFS_FILE_TYPE_REGULAR;
   315     /* fixme: get from file extension? */
   316     file_info->mime_type = g_strdup ("video/x-nuv");
   317     file_info->permissions =
   318         GNOME_VFS_PERM_USER_READ |
   319         GNOME_VFS_PERM_OTHER_READ |
   320         GNOME_VFS_PERM_GROUP_READ;
   321         
   322     g_print( "gnome_vfs_uri == %s | gmyth_uri == %s.\n",
   323     				gnome_vfs_uri_get_path (uri),
   324     				gmyth_uri_get_path (gmyth_uri) );
   325 
   326 	  /* Connect to the backend */
   327 	  if ( gmyth_uri != NULL && is_livetv == TRUE ) {
   328 	  	
   329 	  	gboolean res = TRUE;
   330 	  	
   331 	  	/* start to get file info from LiveTV remote encoder */
   332 	  	
   333 			socket = gmyth_socket_new ();
   334 			
   335 			/* FIME: Implement this at gmyth_socket */
   336 			res = gmyth_socket_connect_to_backend (socket, backend_info->hostname,
   337 					backend_info->port, TRUE);
   338 			if (!res) {
   339 				g_print ("[%s] LiveTV can not connect to backend", __FUNCTION__);	
   340 				res = FALSE;
   341 				goto error;
   342 			}
   343 
   344 			if ( gmyth_remote_util_get_free_recorder_count (socket) <= 0 ) {
   345 				g_print ("No free remote encoder available.");
   346 				res = FALSE;
   347 				goto error;
   348 			}
   349 		
   350 			/* Gets the recorder num */
   351 			recorder = remote_request_next_free_recorder (socket, -1);
   352 			
   353 			if ( socket != NULL )
   354 				g_object_unref (socket);
   355 		
   356 			if ( recorder == NULL ) {
   357 				g_print ("[%s] None remote encoder available", __FUNCTION__);
   358 				res = FALSE;
   359 				goto error;
   360 			}
   361 			
   362 			/* Init remote encoder. Opens its control socket. */
   363 			res = gmyth_recorder_setup(recorder);
   364 			if ( !res ) {
   365 				g_print ("[%s] Fail while setting remote encoder\n", __FUNCTION__);
   366 				res = FALSE;
   367 				goto error;
   368 			}
   369 			
   370 			/* Creates livetv chain handler */
   371 			tvchain = gmyth_tvchain_new();
   372 			gmyth_tvchain_initialize ( tvchain, backend_info );
   373 		
   374 			if ( tvchain == NULL || tvchain->tvchain_id == NULL ) {
   375 				g_print ("[%s] TVChain couldn't be initialized.\n", __FUNCTION__);
   376 				res = FALSE;
   377 				goto error;
   378 			}
   379 			
   380 			// Spawn live tv. Uses the socket to send mythprotocol data to start livetv in the backend (remotelly)
   381 			res = gmyth_recorder_spawntv ( recorder,
   382 					gmyth_tvchain_get_id(tvchain) );
   383 			if (!res) {
   384 				g_print ("[%s] Fail while spawn tv\n", __FUNCTION__);
   385 				res = FALSE;
   386 				goto error;
   387 			}
   388 			
   389 		  gchar* channel_name = gmyth_uri_get_channel_name( gmyth_uri );
   390 		    
   391 		  if ( res == TRUE ) {
   392 		    /* loop finished, set the max tries variable to zero again... */
   393 		    gint wait_to_transfer = 0;
   394 		
   395 		    while ( wait_to_transfer++ < MYTHTV_TRANSFER_MAX_WAITS &&
   396 		        (gmyth_recorder_is_recording (recorder) == FALSE) )
   397 		      g_usleep (500);
   398 		
   399 		    /* IS_RECORDING again, just like the MythTV backend does... */
   400 		    gmyth_recorder_is_recording (recorder);
   401 		    
   402 				if ( channel_name != NULL ) 
   403 				{
   404 					/* Pauses remote encoder. */
   405 					res = gmyth_recorder_pause_recording(recorder);
   406 					if ( !res ) {
   407 						g_print ("[%s] Fail while pausing remote encoder\n", __FUNCTION__);
   408 						res = FALSE;
   409 						goto error;
   410 					}
   411 			
   412 			  	if ( gmyth_recorder_check_channel_name( recorder, channel_name ) )
   413 			  	{
   414 				  	if ( !gmyth_recorder_set_channel_name( recorder, channel_name ) )
   415 				  	{
   416 				  		g_warning( "Channel will not changes to: [%s].\n", channel_name );
   417 				  	}
   418 			  	}
   419 			
   420 				} /* if - changes the channel number */
   421 				
   422 				sleep( 1 );
   423 				
   424 		  }
   425 		  
   426 		  /* DEBUG message */  
   427 			GMythProgramInfo* prog_info = gmyth_recorder_get_current_program_info( recorder );
   428 			//gmyth_debug( "New ProgramInfo...\n" );
   429 			gmyth_program_info_print( prog_info );
   430 			
   431 			if ( prog_info != NULL )
   432 			{
   433   
   434 		    g_print( "path = %s",  prog_info->pathname->str );
   435 		    
   436 		    file_info->name = g_strdup ( g_strrstr( prog_info->pathname->str, "/" ) );
   437 		    
   438 	  		gint64 size = 0;
   439 	  		size = gmyth_recorder_get_file_position( recorder );
   440 	  		if( size < 0 )
   441 	  		{
   442 	  			//GMythProgramInfo *prog_info = gmyth_recorder_get_current_program_info ( recorder );
   443 	  			file_info->size = prog_info->filesize;
   444 	  		}
   445 				else
   446 					file_info->size = size; 
   447 		    
   448 			} else {
   449 				file_info->size = gmyth_recorder_get_file_position( recorder );
   450 			}
   451 			
   452 	    if ( tvchain != NULL)
   453 	    	g_object_unref (tvchain);
   454 				
   455 	    if ( recorder != NULL )
   456 	    	gmyth_recorder_close (recorder);
   457 	    
   458 	    if ( prog_info != NULL )
   459 	    	g_object_unref( prog_info );
   460 
   461 	  } else {
   462 	  	
   463 	  	/* start to get file info from remote file encoder */	
   464 	    file_transfer = gmyth_file_transfer_new (backend_info);
   465 	    
   466 	    /* Verifies if the file exists */
   467 	    if (!gmyth_util_file_exists (backend_info, gmyth_uri_get_path (gmyth_uri))) {
   468 	        g_object_unref (backend_info);
   469 					return GNOME_VFS_ERROR_NOT_FOUND;
   470 	    }
   471 	    
   472 	    /* sets the Playback monitor connection */
   473 	    ret = gmyth_file_transfer_open ( file_transfer, gmyth_uri_get_path (gmyth_uri) );
   474 	    
   475 	    file_info->name = g_strdup ( gnome_vfs_uri_get_path (uri) );	    
   476 	        
   477 		
   478 	  } /* if - LiveTV or not? */	  
   479 	  
   480     if (ret == FALSE) {
   481 	    g_debug ("MythTV FileTransfer open error\n");
   482 	    return GNOME_VFS_ERROR_NOT_OPEN;
   483 	  }
   484 	  
   485 		if ( ret == TRUE  && file_transfer != NULL ) {
   486     	file_info->size = gmyth_file_transfer_get_filesize (file_transfer);
   487 	    if ( file_transfer )
   488 	    	gmyth_file_transfer_close (file_transfer);
   489    	}
   490  	
   491     file_info->block_count = GNOME_VFS_FILE_INFO_FIELDS_BLOCK_COUNT;
   492 	  file_info->io_block_size = GNOME_VFS_FILE_INFO_FIELDS_IO_BLOCK_SIZE;
   493 	  
   494 error:
   495     if (backend_info)
   496    		g_object_unref (backend_info);
   497 
   498     return GNOME_VFS_OK;
   499 }
   500 
   501 static gboolean
   502 do_is_local (GnomeVFSMethod *method,
   503              const GnomeVFSURI *uri)
   504 {
   505 	return FALSE;
   506 }
   507 
   508 static GnomeVFSMethod method = {
   509 	sizeof (GnomeVFSMethod),
   510 	do_open,
   511 	NULL,
   512 	do_close,
   513 	do_read,
   514 	NULL,
   515 	NULL,
   516 	NULL,
   517 	NULL,
   518 	NULL,
   519 	NULL,
   520 	NULL,
   521 	do_get_file_info,
   522 	NULL,
   523 	do_is_local,
   524 	NULL,
   525 	NULL,
   526 	NULL,
   527 	NULL,
   528 	NULL,
   529 	NULL,
   530 	NULL,
   531 	NULL,
   532 	NULL,
   533 	NULL,
   534 	NULL,
   535 	NULL,
   536 };
   537 
   538 
   539 GnomeVFSMethod *
   540 vfs_module_init (const char *method_name, const char *args)
   541 {
   542 	return &method;
   543 }
   544 
   545 void
   546 vfs_module_shutdown (GnomeVFSMethod *method)
   547 {
   548 }