gst-plugins-mythtv/src/gstmythtvsrc.c
author rosfran
Wed Jan 10 20:35:17 2007 +0000 (2007-01-10)
branchtrunk
changeset 253 ef26dbeb7a5b
parent 238 cc9e9f03a0a6
child 289 fdac5773d2a6
permissions -rwxr-xr-x
[svn r254] Added these 2 mandatory directories (m4 and common).
leo_sobral@2
     1
/* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2 -*- */
leo_sobral@2
     2
/* GStreamer MythTV Plug-in
leo_sobral@2
     3
 * Copyright (C) <2006> Rosfran Borges <rosfran.borges@indt.org.br>
leo_sobral@2
     4
 *
leo_sobral@2
     5
 * This library is free software; you can redistribute it and/or
rosfran@30
     6
 * modify it under the terms of the GNU Library Lesser General 
rosfran@30
     7
 * Public License as published by the Free Software Foundation; either
leo_sobral@2
     8
 * version 2 of the License, or (at your option) any later version.
leo_sobral@2
     9
 *
leo_sobral@2
    10
 * This library is distributed in the hope that it will be useful,
leo_sobral@2
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
leo_sobral@2
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
leo_sobral@2
    13
 * Library General Public License for more 
leo_sobral@2
    14
 */
rosfran@124
    15
 /**
rosfran@124
    16
  * When using the LiveTV content, put the location URI in the following
rosfran@124
    17
  * format:
rosfran@124
    18
  * 
rosfran@239
    19
  * 	myth://mythtv:mythtv@xxx.xxx.xxx.xxx:6543/?mythconverg
rosfran@124
    20
  * 
rosfran@124
    21
  * Where the first field is the protocol (myth), the second and third are user 
rosfran@124
    22
  * name (mythtv) and password (mythtv), then backend host name and port number, 
rosfran@124
    23
  * and the last field is the database name (mythconverg).
rosfran@124
    24
  */
leo_sobral@2
    25
leo_sobral@2
    26
#ifdef HAVE_CONFIG_H
leo_sobral@2
    27
#include "config.h"
leo_sobral@2
    28
#endif
leo_sobral@2
    29
leo_sobral@2
    30
#include "gstmythtvsrc.h"
rosfran@52
    31
#include <gmyth/gmyth_file_transfer.h>
rosfran@52
    32
#include <gmyth/gmyth_livetv.h>
leo_sobral@2
    33
leo_sobral@2
    34
#include <gmyth/gmyth_socket.h>
leo_sobral@2
    35
#include <gmyth/gmyth_tvchain.h>
leo_sobral@2
    36
leo_sobral@2
    37
#include <string.h>
leo_sobral@2
    38
#include <unistd.h>
leo_sobral@2
    39
leo_sobral@2
    40
GST_DEBUG_CATEGORY_STATIC (mythtvsrc_debug);
leo_sobral@2
    41
#define GST_CAT_DEFAULT mythtvsrc_debug
leo_sobral@2
    42
rosfran@95
    43
#define GST_GMYTHTV_ID_NUM			1
rosfran@70
    44
rosfran@236
    45
#define GST_GMYTHTV_CHANNEL_DEFAULT_NUM			-1
leo_sobral@2
    46
rosfran@52
    47
#define GMYTHTV_VERSION_DEFAULT			30
rosfran@61
    48
 
rosfran@90
    49
#define GMYTHTV_TRANSFER_MAX_WAITS		100
leo_sobral@2
    50
rosfran@217
    51
#define GMYTHTV_TRANSFER_MAX_RESENDS	2
rosfran@102
    52
rosfran@90
    53
#define GMYTHTV_TRANSFER_MAX_BUFFER		128*1024
rosfran@30
    54
//( 32*1024  )
leo_sobral@2
    55
leo_sobral@2
    56
/* 4*1024 ??? */
rosfran@98
    57
#define MAX_READ_SIZE              		4*1024
rosfran@30
    58
//( 32*1024 )
leo_sobral@2
    59
rosfran@98
    60
#define GST_FLOW_ERROR_NO_DATA  			-101
rosfran@70
    61
rosfran@124
    62
#define REQUEST_MAX_SIZE							64*1024
rosfran@124
    63
rosfran@142
    64
#define INTERNAL_BUFFER_SIZE					90*1024
rosfran@90
    65
leo_sobral@2
    66
/* stablish a maximum iteration value to the IS_RECORDING message */
leo_sobral@2
    67
static guint wait_to_transfer = 0;
leo_sobral@2
    68
leo_sobral@2
    69
static const GstElementDetails gst_mythtv_src_details =
rosfran@30
    70
GST_ELEMENT_DETAILS ( "MythTV client source",
leo_sobral@2
    71
    "Source/Network",
leo_sobral@2
    72
    "Control and receive data as a client over the network via raw socket connections using the MythTV protocol",
rosfran@30
    73
    "Rosfran Borges <rosfran.borges@indt.org.br>" );
leo_sobral@2
    74
rosfran@81
    75
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ( "src",
leo_sobral@2
    76
    GST_PAD_SRC,
leo_sobral@2
    77
    GST_PAD_ALWAYS,
rosfran@30
    78
    GST_STATIC_CAPS ("video/x-nuv") );
rosfran@81
    79
    
leo_sobral@2
    80
enum
leo_sobral@2
    81
{
leo_sobral@2
    82
  PROP_0,
leo_sobral@2
    83
  PROP_LOCATION,
leo_sobral@2
    84
  PROP_URI,
leo_sobral@2
    85
#ifndef GST_DISABLE_GST_DEBUG
rosfran@40
    86
  PROP_GMYTHTV_DBG,
leo_sobral@2
    87
#endif
rosfran@40
    88
  PROP_GMYTHTV_VERSION,
rosfran@40
    89
  PROP_GMYTHTV_LIVE,
rosfran@40
    90
  PROP_GMYTHTV_LIVEID,
rosfran@52
    91
  PROP_GMYTHTV_LIVE_CHAINID,
rosfran@70
    92
  PROP_GMYTHTV_ENABLE_TIMING_POSITION,
rosfran@70
    93
  PROP_GMYTHTV_CHANNEL_NUM
leo_sobral@2
    94
};
leo_sobral@2
    95
leo_sobral@2
    96
static void gst_mythtv_src_finalize (GObject * gobject);
leo_sobral@2
    97
rosfran@100
    98
static GstFlowReturn gst_mythtv_src_create ( GstPushSrc* psrc, GstBuffer** outbuf );
rosfran@52
    99
leo_sobral@2
   100
static gboolean gst_mythtv_src_start (GstBaseSrc * bsrc);
leo_sobral@2
   101
static gboolean gst_mythtv_src_stop (GstBaseSrc * bsrc);
leo_sobral@2
   102
static gboolean gst_mythtv_src_get_size (GstBaseSrc * bsrc, guint64 * size);
rosfran@87
   103
static gboolean gst_mythtv_src_is_seekable( GstBaseSrc *push_src );
rosfran@87
   104
rosfran@106
   105
/*
rosfran@106
   106
static void gst_mythtv_src_get_times (GstBaseSrc * src, GstBuffer * buffer,
rosfran@106
   107
   GstClockTime * start, GstClockTime * end);
rosfran@106
   108
*/
rosfran@98
   109
rosfran@100
   110
static gboolean gst_mythtv_src_do_seek( GstBaseSrc *base, GstSegment *segment );
rosfran@52
   111
rosfran@52
   112
static gboolean gst_mythtv_src_next_program_chain ( GstMythtvSrc *src );
rosfran@52
   113
rosfran@52
   114
static GstStateChangeReturn
rosfran@52
   115
gst_mythtv_src_change_state (GstElement * element, GstStateChange transition);
leo_sobral@2
   116
leo_sobral@2
   117
static void gst_mythtv_src_set_property (GObject * object, guint prop_id,
leo_sobral@2
   118
    const GValue * value, GParamSpec * pspec);
leo_sobral@2
   119
static void gst_mythtv_src_get_property (GObject * object, guint prop_id,
leo_sobral@2
   120
    GValue * value, GParamSpec * pspec);
leo_sobral@2
   121
rosfran@30
   122
static void gst_mythtv_src_uri_handler_init (gpointer g_iface, gpointer iface_data);
rosfran@30
   123
rosfran@87
   124
static gboolean gst_mythtv_src_handle_query (GstPad * pad, GstQuery * query);
rosfran@87
   125
rosfran@90
   126
static gboolean gst_mythtv_src_handle_event (GstPad * pad, GstEvent * event);
rosfran@30
   127
rosfran@102
   128
static gint do_read_request_response (GstMythtvSrc * src, guint size, GByteArray *data_ptr);
rosfran@90
   129
rosfran@90
   130
GStaticRecMutex th_mutex = G_STATIC_REC_MUTEX_INIT;
leo_sobral@2
   131
rosfran@52
   132
static void
leo_sobral@2
   133
_urihandler_init (GType type)
leo_sobral@2
   134
{
leo_sobral@2
   135
  static const GInterfaceInfo urihandler_info = {
leo_sobral@2
   136
    gst_mythtv_src_uri_handler_init,
leo_sobral@2
   137
    NULL,
leo_sobral@2
   138
    NULL
leo_sobral@2
   139
  };
leo_sobral@2
   140
leo_sobral@2
   141
  g_type_add_interface_static (type, GST_TYPE_URI_HANDLER, &urihandler_info);
leo_sobral@2
   142
leo_sobral@2
   143
  GST_DEBUG_CATEGORY_INIT (mythtvsrc_debug, "mythtvsrc", 0,
leo_sobral@2
   144
      "MythTV src");
leo_sobral@2
   145
}
leo_sobral@2
   146
rosfran@100
   147
GST_BOILERPLATE_FULL (GstMythtvSrc, gst_mythtv_src, GstPushSrc,
rosfran@100
   148
    GST_TYPE_PUSH_SRC, _urihandler_init)
rosfran@30
   149
    
rosfran@87
   150
static void
leo_sobral@2
   151
gst_mythtv_src_base_init (gpointer g_class)
leo_sobral@2
   152
{
leo_sobral@2
   153
  GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
leo_sobral@2
   154
leo_sobral@2
   155
  gst_element_class_add_pad_template (element_class,
leo_sobral@2
   156
      gst_static_pad_template_get (&srctemplate));
rosfran@81
   157
      
leo_sobral@2
   158
  gst_element_class_set_details (element_class, &gst_mythtv_src_details);
rosfran@52
   159
  
rosfran@52
   160
  element_class->change_state = gst_mythtv_src_change_state;
rosfran@81
   161
  
leo_sobral@2
   162
}
leo_sobral@2
   163
rosfran@30
   164
static void
leo_sobral@2
   165
gst_mythtv_src_class_init (GstMythtvSrcClass * klass)
leo_sobral@2
   166
{
rosfran@63
   167
  GObjectClass *gobject_class; 
rosfran@100
   168
  GstPushSrcClass *gstpushsrc_class;
leo_sobral@2
   169
  GstBaseSrcClass *gstbasesrc_class;
leo_sobral@2
   170
leo_sobral@2
   171
  gobject_class = (GObjectClass *) klass;
leo_sobral@2
   172
  gstbasesrc_class = (GstBaseSrcClass *) klass;
rosfran@100
   173
  gstpushsrc_class = (GstPushSrcClass *) klass;
leo_sobral@2
   174
leo_sobral@2
   175
  gobject_class->set_property = gst_mythtv_src_set_property;
leo_sobral@2
   176
  gobject_class->get_property = gst_mythtv_src_get_property;
leo_sobral@2
   177
  gobject_class->finalize = gst_mythtv_src_finalize;
leo_sobral@2
   178
leo_sobral@2
   179
  g_object_class_install_property
leo_sobral@2
   180
    (gobject_class, PROP_LOCATION,
leo_sobral@2
   181
     g_param_spec_string ("location", "Location",
leo_sobral@2
   182
       "The location. In the form:"
leo_sobral@2
   183
       "\n\t\t\tmyth://a.com/file.nuv"
leo_sobral@2
   184
       "\n\t\t\tmyth://a.com:23223/file.nuv "
leo_sobral@2
   185
       "\n\t\t\ta.com/file.nuv - default scheme 'myth'",
leo_sobral@2
   186
       "", G_PARAM_READWRITE));
leo_sobral@2
   187
leo_sobral@2
   188
  g_object_class_install_property
leo_sobral@2
   189
    (gobject_class, PROP_URI,
leo_sobral@2
   190
     g_param_spec_string ("uri", "Uri",
leo_sobral@2
   191
       "The location in form of a URI (deprecated; use location)",
leo_sobral@2
   192
       "", G_PARAM_READWRITE));
leo_sobral@2
   193
leo_sobral@2
   194
  g_object_class_install_property
rosfran@40
   195
    (gobject_class, PROP_GMYTHTV_VERSION,
leo_sobral@2
   196
     g_param_spec_int ("mythtv-version", "mythtv-version",
rosfran@70
   197
       "Change MythTV version",
leo_sobral@2
   198
       26, 30, 26, G_PARAM_READWRITE));
leo_sobral@2
   199
leo_sobral@2
   200
  g_object_class_install_property
rosfran@40
   201
    (gobject_class, PROP_GMYTHTV_LIVEID,
leo_sobral@2
   202
     g_param_spec_int ("mythtv-live-id", "mythtv-live-id",
rosfran@70
   203
       "Change MythTV version",
rosfran@40
   204
       0, 200, GST_GMYTHTV_ID_NUM, G_PARAM_READWRITE));
leo_sobral@2
   205
leo_sobral@2
   206
  g_object_class_install_property
rosfran@40
   207
    (gobject_class, PROP_GMYTHTV_LIVE_CHAINID,
leo_sobral@2
   208
     g_param_spec_string ("mythtv-live-chainid", "mythtv-live-chainid",
rosfran@70
   209
       "Sets the MythTV chain ID (from TV Chain)",
leo_sobral@2
   210
       "", G_PARAM_READWRITE));
leo_sobral@2
   211
leo_sobral@2
   212
  g_object_class_install_property
rosfran@40
   213
    (gobject_class, PROP_GMYTHTV_LIVE,
leo_sobral@2
   214
     g_param_spec_boolean ("mythtv-live", "mythtv-live",
leo_sobral@2
   215
       "Enable MythTV Live TV content streaming",
leo_sobral@2
   216
       FALSE, G_PARAM_READWRITE));
leo_sobral@2
   217
rosfran@52
   218
  g_object_class_install_property
rosfran@52
   219
    (gobject_class, PROP_GMYTHTV_ENABLE_TIMING_POSITION,
rosfran@52
   220
     g_param_spec_boolean ("mythtv-enable-timing-position", "mythtv-enable-timing-position",
rosfran@52
   221
       "Enable MythTV Live TV content size continuous updating",
rosfran@52
   222
       FALSE, G_PARAM_READWRITE));
rosfran@70
   223
       
rosfran@70
   224
  g_object_class_install_property
rosfran@70
   225
    (gobject_class, PROP_GMYTHTV_CHANNEL_NUM,
rosfran@70
   226
     g_param_spec_int ("mythtv-channel", "mythtv-channel",
rosfran@70
   227
       "Change MythTV channel number",
rosfran@239
   228
       -1, 99999, GST_GMYTHTV_CHANNEL_DEFAULT_NUM, G_PARAM_READWRITE));
rosfran@52
   229
leo_sobral@2
   230
#ifndef GST_DISABLE_GST_DEBUG
leo_sobral@2
   231
  g_object_class_install_property
rosfran@40
   232
    (gobject_class, PROP_GMYTHTV_DBG,
leo_sobral@2
   233
     g_param_spec_boolean ("mythtv-debug", "mythtv-debug",
leo_sobral@2
   234
       "Enable MythTV debug messages",
leo_sobral@2
   235
       FALSE, G_PARAM_READWRITE));
leo_sobral@2
   236
#endif
leo_sobral@2
   237
leo_sobral@2
   238
  gstbasesrc_class->start = gst_mythtv_src_start;
leo_sobral@2
   239
  gstbasesrc_class->stop = gst_mythtv_src_stop;
leo_sobral@2
   240
  gstbasesrc_class->get_size = gst_mythtv_src_get_size;
rosfran@87
   241
  gstbasesrc_class->is_seekable = gst_mythtv_src_is_seekable;
rosfran@81
   242
  
rosfran@98
   243
  //gstbasesrc_class->get_times = gst_mythtv_src_get_times;
rosfran@98
   244
  
rosfran@100
   245
  gstbasesrc_class->do_seek = gst_mythtv_src_do_seek;
rosfran@100
   246
  gstpushsrc_class->create = gst_mythtv_src_create;
rosfran@52
   247
    
leo_sobral@2
   248
  GST_DEBUG_CATEGORY_INIT (mythtvsrc_debug, "mythtvsrc", 0,
leo_sobral@2
   249
      "MythTV Client Source");
leo_sobral@2
   250
}
leo_sobral@2
   251
rosfran@30
   252
static void
leo_sobral@2
   253
gst_mythtv_src_init (GstMythtvSrc * this, GstMythtvSrcClass * g_class)
leo_sobral@2
   254
{
leo_sobral@2
   255
  this->file_transfer = NULL;
leo_sobral@2
   256
leo_sobral@2
   257
  this->unique_setup = FALSE;
leo_sobral@2
   258
rosfran@40
   259
  this->mythtv_version = GMYTHTV_VERSION_DEFAULT;
rosfran@70
   260
  
rosfran@70
   261
  this->state = GST_MYTHTV_SRC_FILE_TRANSFER;
leo_sobral@2
   262
leo_sobral@2
   263
  this->bytes_read = 0;
rosfran@63
   264
  
rosfran@63
   265
  this->prev_content_size = 0;
leo_sobral@2
   266
rosfran@52
   267
  this->content_size = 0;
leo_sobral@2
   268
  this->read_offset = 0;
leo_sobral@2
   269
rosfran@61
   270
  this->content_size_last = 0;
rosfran@61
   271
leo_sobral@2
   272
  this->live_tv = FALSE;
rosfran@52
   273
  
rosfran@52
   274
  this->enable_timing_position = FALSE;
rosfran@52
   275
  this->update_prog_chain = FALSE;    
leo_sobral@2
   276
leo_sobral@2
   277
  this->user_agent = g_strdup ("mythtvsrc");
rosfran@52
   278
  this->mythtv_caps = NULL;
rosfran@52
   279
  this->update_prog_chain = FALSE;
rosfran@52
   280
  
rosfran@236
   281
  this->channel_num = GST_GMYTHTV_CHANNEL_DEFAULT_NUM;
rosfran@70
   282
  
rosfran@52
   283
  this->eos = FALSE;
rosfran@30
   284
  
rosfran@98
   285
  this->bytes_queue = NULL;
rosfran@70
   286
  
rosfran@81
   287
  this->th_mutex = NULL;
rosfran@81
   288
  
rosfran@87
   289
  gst_base_src_set_format( GST_BASE_SRC( this ), GST_FORMAT_BYTES );  
leo_sobral@2
   290
rosfran@106
   291
  /* gst_base_src_set_live ( GST_BASE_SRC( this ), TRUE ); */
rosfran@81
   292
  
rosfran@90
   293
  gst_pad_set_event_function ( GST_BASE_SRC_PAD(GST_BASE_SRC(this)),
rosfran@90
   294
      gst_mythtv_src_handle_event );
rosfran@87
   295
  gst_pad_set_query_function ( GST_BASE_SRC_PAD(GST_BASE_SRC(this)),
rosfran@87
   296
     gst_mythtv_src_handle_query );
rosfran@30
   297
leo_sobral@2
   298
}
leo_sobral@2
   299
rosfran@30
   300
static void
leo_sobral@2
   301
gst_mythtv_src_finalize (GObject * gobject)
leo_sobral@2
   302
{
leo_sobral@2
   303
  GstMythtvSrc *this = GST_MYTHTV_SRC (gobject);
rosfran@114
   304
leo_sobral@2
   305
  if (this->mythtv_caps) {
leo_sobral@2
   306
    gst_caps_unref (this->mythtv_caps);
leo_sobral@2
   307
    this->mythtv_caps = NULL;
leo_sobral@2
   308
  }
leo_sobral@2
   309
leo_sobral@2
   310
  if (this->file_transfer) {
leo_sobral@2
   311
    g_object_unref (this->file_transfer);
leo_sobral@2
   312
    this->file_transfer = NULL;
leo_sobral@2
   313
  }
leo_sobral@2
   314
rosfran@114
   315
  if (this->spawn_livetv) {
rosfran@70
   316
    g_object_unref (this->spawn_livetv);
rosfran@52
   317
    this->spawn_livetv = NULL;
rosfran@52
   318
  }
rosfran@118
   319
  
rosfran@118
   320
  if (this->backend_info) {
rosfran@118
   321
    g_object_unref (this->backend_info);
rosfran@118
   322
    this->backend_info = NULL;
rosfran@118
   323
  }
rosfran@52
   324
leo_sobral@2
   325
  if (this->uri_name) {
leo_sobral@2
   326
    g_free (this->uri_name);
leo_sobral@2
   327
  }
leo_sobral@2
   328
leo_sobral@2
   329
  if (this->user_agent) {
leo_sobral@2
   330
    g_free (this->user_agent);
leo_sobral@2
   331
  }
rosfran@114
   332
rosfran@100
   333
  if ( this->bytes_queue ) {
rosfran@114
   334
    g_byte_array_free( this->bytes_queue, TRUE );
rosfran@114
   335
    this->bytes_queue = NULL;
rosfran@100
   336
  }
leo_sobral@2
   337
leo_sobral@2
   338
  G_OBJECT_CLASS (parent_class)->finalize (gobject);
leo_sobral@2
   339
}
leo_sobral@2
   340
rosfran@37
   341
static gint
rosfran@102
   342
do_read_request_response (GstMythtvSrc * src, guint size, GByteArray *data_ptr)
leo_sobral@2
   343
{
rosfran@37
   344
  gint read = 0;
rosfran@52
   345
  guint sizetoread = size;
rosfran@142
   346
  gint max_iters = GMYTHTV_TRANSFER_MAX_RESENDS;
rosfran@102
   347
  
rosfran@106
   348
  GST_LOG_OBJECT( src, "Starting: [%s] Reading %d bytes...\n", __FUNCTION__, sizetoread ); 
leo_sobral@2
   349
rosfran@30
   350
  /* Loop sending the Myth File Transfer request:
leo_sobral@2
   351
   * Retry whilst authentication fails and we supply it. */
rosfran@37
   352
  gint len = 0;
rosfran@70
   353
  
rosfran@102
   354
  while ( sizetoread == size && --max_iters > 0) {
rosfran@61
   355
rosfran@61
   356
    len = gmyth_file_transfer_read( src->file_transfer,
rosfran@102
   357
				data_ptr, sizetoread, TRUE );
leo_sobral@2
   358
leo_sobral@2
   359
    if ( len > 0 ) {
rosfran@81
   360
      read += len;
leo_sobral@2
   361
      sizetoread -= len;
rosfran@52
   362
    } 
rosfran@90
   363
    else if ( len < 0 )
rosfran@235
   364
    {      
rosfran@61
   365
rosfran@52
   366
      if ( src->live_tv == FALSE ) 
rosfran@52
   367
      {
rosfran@235
   368
      	read = -1;
rosfran@235
   369
				goto eos;
rosfran@52
   370
      } 
rosfran@52
   371
      else  
rosfran@52
   372
      {
rosfran@90
   373
	if ( len == GMYTHTV_FILE_TRANSFER_READ_ERROR ) { /* -314 */
rosfran@235
   374
		GST_INFO_OBJECT( src, "[%s] [LiveTV] FileTransfer READ_ERROR!\n", __FUNCTION__ );
rosfran@90
   375
	  goto done;	  	
rosfran@217
   376
	} else if ( len == GMYTHTV_FILE_TRANSFER_NEXT_PROG_CHAIN ) { /* -315 */
rosfran@235
   377
		GST_INFO_OBJECT( src, "[%s] [LiveTV] FileTransfer - Go to the next program chain!\n", __FUNCTION__ );
rosfran@217
   378
	  continue;	  	
rosfran@217
   379
	}
rosfran@90
   380
	goto done;
rosfran@90
   381
      }
rosfran@30
   382
rosfran@142
   383
    } else if ( len == 0 )
rosfran@142
   384
    	goto done;
rosfran@61
   385
rosfran@30
   386
    if ( read == sizetoread )
rosfran@90
   387
      goto done;
rosfran@100
   388
  }
rosfran@61
   389
rosfran@102
   390
  if ( ( read < 0 && !src->live_tv ) || max_iters == 0 )
rosfran@61
   391
    goto eos;
rosfran@61
   392
rosfran@30
   393
  goto done;
leo_sobral@2
   394
leo_sobral@2
   395
eos:
leo_sobral@2
   396
  src->eos = TRUE;
rosfran@61
   397
leo_sobral@2
   398
done:
leo_sobral@2
   399
  return read;
leo_sobral@2
   400
}
leo_sobral@2
   401
rosfran@30
   402
static GstFlowReturn
rosfran@81
   403
gst_mythtv_src_create ( GstPushSrc* psrc, GstBuffer** outbuf )
rosfran@81
   404
{
rosfran@81
   405
  GstMythtvSrc *src;
rosfran@81
   406
  GstFlowReturn ret = GST_FLOW_OK;
rosfran@81
   407
  gint read = -1;
rosfran@90
   408
rosfran@81
   409
  src = GST_MYTHTV_SRC ( psrc );
rosfran@90
   410
rosfran@81
   411
  /* The caller should know the number of bytes and not read beyond EOS. */
rosfran@224
   412
  if ( G_UNLIKELY (src->eos) )
rosfran@81
   413
    goto eos;
rosfran@81
   414
  if ( G_UNLIKELY (src->update_prog_chain) )
rosfran@81
   415
    goto change_progchain;
rosfran@95
   416
rosfran@90
   417
  //g_static_rec_mutex_lock( &th_mutex );
rosfran@106
   418
  GST_DEBUG_OBJECT( src, "[%s] offset = %llu, size = %d...\n", __FUNCTION__, 
rosfran@100
   419
  		src->read_offset, MAX_READ_SIZE );
rosfran@95
   420
rosfran@118
   421
  GST_DEBUG_OBJECT ( src, "[%s]\t\tCreate: buffer_remain: %d, buffer_size = %d.\n", __FUNCTION__, 
rosfran@118
   422
      (gint) src->buffer_remain, src->bytes_queue->len );
rosfran@95
   423
rosfran@100
   424
  /* just get from the byte array, no network effort... */
rosfran@174
   425
  if ( ( src->buffer_remain = src->bytes_queue->len ) < MAX_READ_SIZE ) { 
rosfran@124
   426
  			//( ( INTERNAL_BUFFER_SIZE - src->buffer_remain )  >=  REQUEST_MAX_SIZE ) ) {
rosfran@124
   427
  	GByteArray *buffer = NULL;
rosfran@142
   428
  	guint buffer_size_inter = ( INTERNAL_BUFFER_SIZE - src->buffer_remain );
rosfran@142
   429
  	if ( buffer_size_inter > REQUEST_MAX_SIZE )
rosfran@142
   430
  		buffer_size_inter = REQUEST_MAX_SIZE;
rosfran@124
   431
  		
rosfran@142
   432
  	buffer = g_byte_array_new();
rosfran@95
   433
rosfran@142
   434
    read = do_read_request_response( src, buffer_size_inter, buffer );
rosfran@142
   435
rosfran@142
   436
    if (G_UNLIKELY (read < 0)) {
rosfran@142
   437
      if ( src->live_tv )
rosfran@142
   438
	goto change_progchain;
rosfran@142
   439
      else
rosfran@142
   440
	goto read_error;
rosfran@174
   441
    } else if (G_UNLIKELY (read == 0))
rosfran@174
   442
    {
rosfran@174
   443
	    if (!src->live_tv )
rosfran@174
   444
	    	goto eos;
rosfran@174
   445
	    else
rosfran@174
   446
	    	goto done;
rosfran@174
   447
    }
rosfran@142
   448
rosfran@142
   449
    if ( G_UNLIKELY (src->update_prog_chain) )
rosfran@142
   450
      goto change_progchain;
rosfran@142
   451
    
rosfran@151
   452
    src->bytes_queue = g_byte_array_append( src->bytes_queue, buffer->data, read );
rosfran@142
   453
    if ( read > buffer_size_inter )
rosfran@142
   454
    	GST_WARNING_OBJECT( src, "\n\n\n[%s]\t\tINCREASED buffer size! Backend sent more than we ask him... (%d)\n\n\n", 
rosfran@142
   455
    			__FUNCTION__, abs( read - buffer_size_inter ) );
rosfran@142
   456
rosfran@142
   457
    src->buffer_remain += read;
rosfran@142
   458
rosfran@142
   459
    if ( buffer != NULL ) {
rosfran@142
   460
    	g_byte_array_free( buffer, TRUE );
rosfran@142
   461
    	buffer = NULL;    	
rosfran@142
   462
    }
rosfran@124
   463
	
rosfran@124
   464
	    GST_DEBUG_OBJECT( src, "[%s]\tBYTES READ (actual) = %d, BYTES READ (cumulative) = %llu, "\
rosfran@124
   465
		"OFFSET = %llu, CONTENT SIZE = %llu.\n", __FUNCTION__, read, src->bytes_read, 
rosfran@124
   466
		src->read_offset, src->content_size );
rosfran@100
   467
	
rosfran@81
   468
  }
rosfran@98
   469
  
rosfran@100
   470
  guint buffer_size = ( src->buffer_remain < MAX_READ_SIZE) ? src->buffer_remain : MAX_READ_SIZE;
rosfran@100
   471
  
rosfran@227
   472
  *outbuf = gst_buffer_new( );
rosfran@100
   473
  
rosfran@100
   474
  /* gets the first buffer_size bytes from the byte array buffer variable */ 
rosfran@235
   475
  /* guint8 *buf = g_memdup( src->bytes_queue->data, buffer_size ); */
rosfran@95
   476
rosfran@106
   477
  GST_DEBUG_OBJECT( src, "[%s] read from network? %s!, buffer_remain = %d\n", __FUNCTION__, 
rosfran@100
   478
  	read == -1 ? "NO, got from buffer" : "YES, go see the backend's log file", src->buffer_remain );
rosfran@95
   479
rosfran@100
   480
  GST_BUFFER_SIZE (*outbuf) = buffer_size;
rosfran@174
   481
  GST_BUFFER_MALLOCDATA( *outbuf ) = g_malloc0( GST_BUFFER_SIZE (*outbuf) );
rosfran@174
   482
  GST_BUFFER_DATA( *outbuf ) = GST_BUFFER_MALLOCDATA( *outbuf );
rosfran@151
   483
  g_memmove( GST_BUFFER_DATA( (*outbuf) ), src->bytes_queue->data, GST_BUFFER_SIZE(*outbuf) );
rosfran@95
   484
  GST_BUFFER_OFFSET (*outbuf) = src->read_offset;
rosfran@95
   485
  GST_BUFFER_OFFSET_END (*outbuf) = src->read_offset + GST_BUFFER_SIZE (*outbuf);
rosfran@95
   486
rosfran@95
   487
  src->buffer_remain -= GST_BUFFER_SIZE (*outbuf);
rosfran@95
   488
rosfran@95
   489
  src->read_offset += GST_BUFFER_SIZE (*outbuf);
rosfran@95
   490
  src->bytes_read += GST_BUFFER_SIZE (*outbuf);
rosfran@106
   491
  GST_DEBUG_OBJECT( src, "[%s]\t\tBuffer output with size: %d\n", __FUNCTION__, GST_BUFFER_SIZE (*outbuf) );
rosfran@100
   492
  
rosfran@100
   493
  /* flushs the newly buffer got from byte array */
rosfran@100
   494
  src->bytes_queue = g_byte_array_remove_range( src->bytes_queue, 0, buffer_size );
rosfran@95
   495
rosfran@106
   496
  GST_DEBUG_OBJECT( src, "Got buffer: [%s]\t\tBUFFER --->SIZE = %d, OFFSET = %llu, "\
rosfran@95
   497
      "OFFSET_END = %llu.\n\n", __FUNCTION__, GST_BUFFER_SIZE (*outbuf), 
rosfran@95
   498
      GST_BUFFER_OFFSET (*outbuf), GST_BUFFER_OFFSET_END (*outbuf) );
rosfran@95
   499
rosfran@142
   500
  GST_DEBUG_OBJECT( src, "[%s]\tCONTENT_SIZE = %llu, BYTES_READ = %llu.\n", __FUNCTION__, 
rosfran@142
   501
  		src->content_size, src->bytes_read );
rosfran@142
   502
      
rosfran@142
   503
  if ( G_UNLIKELY (src->eos) || ( !src->live_tv && ( src->bytes_read >= src->content_size ) ) )
rosfran@142
   504
   goto eos;
rosfran@90
   505
rosfran@81
   506
done:
rosfran@90
   507
  {
rosfran@81
   508
    const gchar *reason = gst_flow_get_name (ret);
rosfran@81
   509
rosfran@81
   510
    GST_DEBUG_OBJECT (src, "DONE task, reason %s", reason);
rosfran@90
   511
    return ret;
rosfran@90
   512
  }
rosfran@81
   513
eos:
rosfran@81
   514
  {
rosfran@81
   515
    const gchar *reason = gst_flow_get_name (ret);
rosfran@81
   516
rosfran@81
   517
    GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
rosfran@81
   518
    return GST_FLOW_UNEXPECTED;
rosfran@81
   519
  }
rosfran@81
   520
  /* ERRORS */
rosfran@81
   521
read_error:
rosfran@81
   522
  {
rosfran@81
   523
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@81
   524
	(NULL), ("Could not read any bytes (%i, %s)", read,
rosfran@90
   525
		 src->uri_name));
rosfran@81
   526
    return GST_FLOW_ERROR;
rosfran@81
   527
  }
rosfran@81
   528
change_progchain:
rosfran@81
   529
  {
rosfran@81
   530
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@90
   531
	(NULL), ("Seek failed, go to the next program info... (%i, %s)", read,
rosfran@90
   532
		 src->uri_name));
rosfran@90
   533
rosfran@90
   534
    gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (psrc)),
rosfran@90
   535
	gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@235
   536
    /* go to the next program chain */
rosfran@90
   537
    src->unique_setup = FALSE;
rosfran@90
   538
    src->update_prog_chain = TRUE;
rosfran@90
   539
rosfran@90
   540
    gst_mythtv_src_next_program_chain( src );
rosfran@90
   541
rosfran@70
   542
    return GST_FLOW_ERROR_NO_DATA;
rosfran@37
   543
  }
rosfran@30
   544
leo_sobral@2
   545
}
rosfran@98
   546
rosfran@52
   547
gint64
rosfran@30
   548
gst_mythtv_src_get_position ( GstMythtvSrc* src ) 
leo_sobral@2
   549
{
rosfran@30
   550
rosfran@52
   551
  gint64 size_tmp = 0;
rosfran@71
   552
  guint max_tries = 2;
rosfran@71
   553
  if (src->live_tv == TRUE && ( abs( src->content_size - src->bytes_read ) < 
rosfran@71
   554
		GMYTHTV_TRANSFER_MAX_BUFFER ) ) {
rosfran@71
   555
rosfran@30
   556
get_file_pos:
rosfran@61
   557
    g_usleep( 10 );
rosfran@114
   558
    size_tmp = gmyth_recorder_get_file_position( src->spawn_livetv->recorder );
rosfran@52
   559
    if ( size_tmp > ( src->content_size + GMYTHTV_TRANSFER_MAX_BUFFER ) )
rosfran@61
   560
      src->content_size = size_tmp;
rosfran@61
   561
    else if ( size_tmp > 0 && --max_tries > 0 )
rosfran@61
   562
      goto get_file_pos;
rosfran@106
   563
    GST_LOG_OBJECT( src, "\t[%s]\tGET_POSITION: file_position = %lld\n",
rosfran@61
   564
	__FUNCTION__, size_tmp );
rosfran@71
   565
    /* sets the last content size amount before it can be updated */
rosfran@71
   566
    src->prev_content_size = src->content_size;
rosfran@30
   567
  }
rosfran@52
   568
rosfran@30
   569
  return src->content_size;	
rosfran@30
   570
leo_sobral@2
   571
}
leo_sobral@2
   572
rosfran@87
   573
static gboolean
rosfran@87
   574
gst_mythtv_src_do_seek( GstBaseSrc *base, GstSegment *segment )
rosfran@87
   575
{
rosfran@87
   576
  GstMythtvSrc *src = GST_MYTHTV_SRC( base );
rosfran@90
   577
  gint64 new_offset = -1;
rosfran@90
   578
  gint64 actual_seek = segment->start;
rosfran@87
   579
  gboolean ret = TRUE;
rosfran@87
   580
rosfran@106
   581
  GST_LOG_OBJECT( src, "[%s]DO Seek called! (start = %lld, stop = %lld)\n", __FUNCTION__, 
rosfran@106
   582
  		segment->start, segment->stop );
rosfran@90
   583
rosfran@90
   584
  if ( segment->format == GST_FORMAT_TIME ) 
rosfran@90
   585
  {
rosfran@90
   586
    goto done; 
rosfran@90
   587
    //actual_seek = ( ( segment->start / 1000 ) * 28 ) * 4000;
rosfran@90
   588
  }
rosfran@106
   589
  GST_LOG_OBJECT( src, "[%s]Trying to seek at the value (actual_seek = %lld, read_offset = %lld)\n", __FUNCTION__, actual_seek, src->read_offset );
rosfran@87
   590
  /* verify if it needs to seek */
rosfran@90
   591
  if ( src->read_offset != actual_seek )
rosfran@87
   592
  {
rosfran@87
   593
rosfran@87
   594
    new_offset = gmyth_file_transfer_seek( src->file_transfer, segment->start, SEEK_SET );
rosfran@87
   595
rosfran@106
   596
    GST_LOG_OBJECT( src, "[%s] Segment offset start = %lld, SRC Offset = %lld, NEW actual backend SEEK Offset = %lld.\n",
rosfran@106
   597
			__FUNCTION__, segment->start, src->read_offset, new_offset );
rosfran@87
   598
    if ( G_UNLIKELY (new_offset < 0 ) )
rosfran@87
   599
    {
rosfran@87
   600
      ret = FALSE;
rosfran@87
   601
      if ( src->live_tv )
rosfran@87
   602
	goto change_progchain;
rosfran@87
   603
      else
rosfran@87
   604
	goto eos;
rosfran@87
   605
    }
rosfran@87
   606
rosfran@87
   607
    src->read_offset = new_offset;
rosfran@87
   608
rosfran@90
   609
    if ( ret == FALSE ) {
rosfran@106
   610
      GST_INFO_OBJECT( src, "[%s] Failed to set the SEEK on segment!\n", __FUNCTION__ );
rosfran@90
   611
    }
rosfran@90
   612
rosfran@87
   613
  }
rosfran@90
   614
rosfran@90
   615
done:
rosfran@87
   616
   return ret;
rosfran@87
   617
rosfran@87
   618
eos:
rosfran@87
   619
  {
rosfran@87
   620
rosfran@87
   621
    GST_DEBUG_OBJECT (src, "EOS found on seeking!!!");
rosfran@87
   622
    return FALSE;
rosfran@87
   623
  }
rosfran@87
   624
change_progchain:
rosfran@87
   625
  {
rosfran@87
   626
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@87
   627
	(NULL), ("Seek failed, go to the next program info... (%i, %s)", read,
rosfran@87
   628
		 src->uri_name));
rosfran@87
   629
rosfran@87
   630
    gst_pad_push_event ( GST_BASE_SRC_PAD (base),
rosfran@87
   631
	gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@87
   632
    /* go to the next program chain */
rosfran@87
   633
    src->unique_setup = FALSE;
rosfran@87
   634
    src->update_prog_chain = TRUE;
rosfran@87
   635
rosfran@87
   636
    gst_mythtv_src_next_program_chain( src );
rosfran@87
   637
rosfran@87
   638
    return TRUE;
rosfran@87
   639
  }
rosfran@87
   640
rosfran@87
   641
}
rosfran@87
   642
leo_sobral@2
   643
/* create a socket for connecting to remote server */
rosfran@30
   644
static gboolean
leo_sobral@2
   645
gst_mythtv_src_start ( GstBaseSrc * bsrc )
leo_sobral@2
   646
{
leo_sobral@2
   647
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
leo_sobral@2
   648
leo_sobral@2
   649
  GString *chain_id_local = NULL;
rosfran@174
   650
leo_sobral@2
   651
  gboolean ret = TRUE;
rosfran@90
   652
rosfran@71
   653
  if ( G_UNLIKELY (src->update_prog_chain) )
rosfran@71
   654
    goto change_progchain;
rosfran@30
   655
leo_sobral@2
   656
  if (src->unique_setup == FALSE) {
leo_sobral@2
   657
    src->unique_setup = TRUE;
leo_sobral@2
   658
  } else {
leo_sobral@2
   659
    goto done;
leo_sobral@2
   660
  }
rosfran@174
   661
  
melunko@159
   662
  src->backend_info = gmyth_backend_info_new_with_uri( src->uri_name );
rosfran@174
   663
  if ( src->live_tv ) {  	
rosfran@40
   664
    src->spawn_livetv = gmyth_livetv_new( );
rosfran@236
   665
    
rosfran@236
   666
    if ( src->channel_num != GST_GMYTHTV_CHANNEL_DEFAULT_NUM )
rosfran@236
   667
    { 
rosfran@236
   668
	    if ( gmyth_livetv_channel_setup( src->spawn_livetv, src->channel_num, src->backend_info ) == FALSE ) {
rosfran@236
   669
	    	GST_INFO_OBJECT( src, "[%s] LiveTV setup felt down on error!!\n", __FUNCTION__ );
rosfran@236
   670
	      ret = FALSE;
rosfran@236
   671
	      goto init_failed;
rosfran@236
   672
	    }    
rosfran@236
   673
    } else {
rosfran@236
   674
			if ( gmyth_livetv_setup( src->spawn_livetv, src->backend_info ) == FALSE ) {
rosfran@236
   675
	    	GST_INFO_OBJECT( src, "[%s] LiveTV setup felt down on error!!\n", __FUNCTION__ );
rosfran@236
   676
	      ret = FALSE;
rosfran@236
   677
	      goto init_failed;
rosfran@236
   678
	    }
rosfran@236
   679
    }
rosfran@52
   680
rosfran@217
   681
    src->file_transfer = gmyth_livetv_create_file_transfer(src->spawn_livetv);
rosfran@217
   682
    
rosfran@217
   683
    if (NULL == src->file_transfer ) 
rosfran@217
   684
	  {
rosfran@235
   685
	  	GST_INFO_OBJECT( src, "[%s] [LiveTV] FileTransfer equals to NULL!!!\n", __FUNCTION__ );
rosfran@217
   686
	  	ret = FALSE;
rosfran@217
   687
	    goto init_failed;
rosfran@217
   688
	  }
rosfran@217
   689
		/*
leo_sobral@2
   690
    chain_id_local = gmyth_tvchain_get_id( src->spawn_livetv->tvchain );
leo_sobral@2
   691
    if ( chain_id_local != NULL ) {
leo_sobral@2
   692
      src->live_chain_id = g_strdup( chain_id_local->str );
rosfran@114
   693
      GST_INFO_OBJECT( src, "\t[%s]\tLocal chain ID = %s.\n", __FUNCTION__, src->live_chain_id );      
leo_sobral@2
   694
    }
rosfran@114
   695
    	
rosfran@70
   696
    src->live_tv_id = src->spawn_livetv->recorder->recorder_num;
rosfran@217
   697
    GST_LOG_OBJECT( src, "[%s] LiveTV id = %d, URI path = %s.\n", __FUNCTION__, src->live_tv_id, src->uri_name );
rosfran@217
   698
    */ 
rosfran@217
   699
  } else {
rosfran@217
   700
  	
rosfran@217
   701
  	src->file_transfer = gmyth_file_transfer_new( src->backend_info );
rosfran@217
   702
rosfran@217
   703
		ret = gmyth_file_transfer_open( src->file_transfer, src->uri_name );
rosfran@217
   704
		
leo_sobral@2
   705
  }
leo_sobral@2
   706
rosfran@210
   707
  if ( NULL == src->file_transfer ) 
rosfran@210
   708
  {
rosfran@235
   709
  	GST_INFO_OBJECT( src, "[%s] FileTransfer equals to NULL!!!\n", __FUNCTION__ );
leo_sobral@2
   710
    goto init_failed;
leo_sobral@2
   711
  }
rosfran@217
   712
  /*GST_INFO_OBJECT( src, "[%s] uri = %s.\n", __FUNCTION__, src->spawn_livetv->file_transfer );*/
rosfran@174
   713
leo_sobral@2
   714
  if ( src->live_tv == TRUE && ret == TRUE ) {
leo_sobral@2
   715
    /* loop finished, set the max tries variable to zero again... */
leo_sobral@2
   716
    wait_to_transfer = 0;
leo_sobral@2
   717
rosfran@70
   718
    while ( wait_to_transfer++ < GMYTHTV_TRANSFER_MAX_WAITS &&
rosfran@108
   719
				( gmyth_livetv_is_recording( src->spawn_livetv ) == FALSE ) )
rosfran@110
   720
      g_usleep( 500 );
rosfran@110
   721
      
rosfran@110
   722
    /* IS_RECORDING again, just like the MythTV backend does... */
rosfran@110
   723
	  gmyth_livetv_is_recording( src->spawn_livetv );
rosfran@110
   724
	  
rosfran@238
   725
	  sleep( 9 );  
rosfran@110
   726
leo_sobral@2
   727
  }
leo_sobral@2
   728
leo_sobral@2
   729
  if ( ret == FALSE ) {
leo_sobral@2
   730
#ifndef GST_DISABLE_GST_DEBUG  
leo_sobral@2
   731
    if ( src->mythtv_msgs_dbg )
rosfran@106
   732
      GST_INFO_OBJECT( src, "MythTV FileTransfer request failed when setting up socket connection!\n" );  	  
leo_sobral@2
   733
#endif
leo_sobral@2
   734
    goto begin_req_failed;
leo_sobral@2
   735
  }
rosfran@210
   736
  
rosfran@210
   737
  GST_INFO_OBJECT( src, "MythTV FileTransfer filesize = %lld, content_size = %lld!\n", 
rosfran@210
   738
  			src->file_transfer->filesize, src->content_size );
leo_sobral@2
   739
leo_sobral@2
   740
  src->content_size = src->file_transfer->filesize;
leo_sobral@2
   741
rosfran@71
   742
  src->do_start = FALSE;
rosfran@114
   743
  
rosfran@114
   744
  /* this is used for the buffer cache */
rosfran@100
   745
  src->bytes_queue = g_byte_array_sized_new( INTERNAL_BUFFER_SIZE );
rosfran@90
   746
  src->buffer_remain = 0;
rosfran@114
   747
  
rosfran@210
   748
  gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@210
   749
		gst_event_new_new_segment ( TRUE, 1.0, GST_FORMAT_TIME, 0, src->content_size, 0 ) );
rosfran@90
   750
rosfran@30
   751
done:
rosfran@210
   752
rosfran@210
   753
	if ( chain_id_local != NULL )
rosfran@210
   754
	{
rosfran@210
   755
		g_string_free( chain_id_local, TRUE );
rosfran@210
   756
		chain_id_local = NULL;
rosfran@210
   757
	}
rosfran@210
   758
		
rosfran@30
   759
  return TRUE;
rosfran@30
   760
rosfran@30
   761
  /* ERRORS */
rosfran@30
   762
init_failed:
rosfran@30
   763
  {
rosfran@30
   764
    if (src->spawn_livetv != NULL )
rosfran@30
   765
      g_object_unref( src->spawn_livetv );
rosfran@30
   766
rosfran@30
   767
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@30
   768
	(NULL), ("Could not initialize MythTV library (%i, %s)", ret, src->uri_name));
rosfran@30
   769
    return FALSE;
rosfran@30
   770
  }
rosfran@30
   771
begin_req_failed:
rosfran@30
   772
  {
rosfran@30
   773
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@30
   774
	(NULL), ("Could not begin request sent to MythTV server (%i, %s)", ret, src->uri_name));
rosfran@30
   775
    return FALSE;
rosfran@30
   776
  }
rosfran@71
   777
change_progchain:
rosfran@71
   778
  {
rosfran@71
   779
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@90
   780
	(NULL), ("Seek failed, go to the next program info... (%s)",
rosfran@90
   781
		 src->uri_name));
rosfran@90
   782
rosfran@90
   783
    gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@90
   784
	gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@90
   785
rosfran@90
   786
    // go to the next program chain
rosfran@90
   787
    src->unique_setup = FALSE;
rosfran@90
   788
    src->update_prog_chain = TRUE;
rosfran@90
   789
rosfran@90
   790
    gst_mythtv_src_next_program_chain( src );
rosfran@90
   791
rosfran@71
   792
    return TRUE;
rosfran@71
   793
  }
rosfran@30
   794
}
leo_sobral@2
   795
rosfran@52
   796
/* create a new socket for connecting to the next program chain */
rosfran@52
   797
static gboolean
rosfran@52
   798
gst_mythtv_src_next_program_chain ( GstMythtvSrc *src )
rosfran@52
   799
{
rosfran@52
   800
  GString *chain_id_local = NULL;
rosfran@52
   801
rosfran@52
   802
  gboolean ret = TRUE;
rosfran@61
   803
rosfran@52
   804
  if ( !src->live_tv )
rosfran@61
   805
    goto init_failed;
rosfran@70
   806
    
rosfran@70
   807
  if (src->unique_setup == FALSE) {
rosfran@70
   808
    src->unique_setup = TRUE;
rosfran@70
   809
  } else {
rosfran@70
   810
    goto done;
rosfran@70
   811
  }
rosfran@81
   812
  
rosfran@81
   813
	GST_PAD_STREAM_LOCK( GST_BASE_SRC_PAD (GST_BASE_SRC (src)) );
rosfran@61
   814
rosfran@52
   815
  if (src->file_transfer) {
rosfran@52
   816
    g_object_unref (src->file_transfer);
rosfran@52
   817
    src->file_transfer = NULL;
rosfran@52
   818
  }
rosfran@61
   819
rosfran@52
   820
  if (src->uri_name) {
rosfran@52
   821
    g_free (src->uri_name);
rosfran@52
   822
  }
rosfran@174
   823
  
rosfran@174
   824
  if ( src->backend_info == NULL )  
rosfran@174
   825
  	src->backend_info = gmyth_backend_info_new_with_uri( src->uri_name );
rosfran@61
   826
rosfran@52
   827
  if ( src->live_tv ) {
rosfran@61
   828
    if ( gmyth_livetv_next_program_chain( src->spawn_livetv ) == FALSE ) {
rosfran@106
   829
    	GST_INFO_OBJECT( src, "\n\n[%s]\t\tFailed to go to the next program chain!!!\n\n", __FUNCTION__ );
rosfran@61
   830
      ret = FALSE;
rosfran@61
   831
      goto init_failed;
rosfran@52
   832
    }
rosfran@52
   833
    /* set up the uri variable */
rosfran@52
   834
    src->uri_name = g_strdup( src->spawn_livetv->proginfo->pathname->str );
rosfran@52
   835
    chain_id_local = gmyth_tvchain_get_id( src->spawn_livetv->tvchain );
rosfran@52
   836
    if ( chain_id_local != NULL ) {
rosfran@52
   837
      src->live_chain_id = g_strdup( chain_id_local->str );
rosfran@106
   838
      GST_DEBUG_OBJECT( src, "\t[%s]\tLocal chain ID = %s.\n", __FUNCTION__, src->live_chain_id );
rosfran@52
   839
    }
rosfran@70
   840
    src->live_tv_id = src->spawn_livetv->recorder->recorder_num;
rosfran@106
   841
    GST_LOG_OBJECT( src, "[%s] LiveTV id = %d, URI path = %s.\n", __FUNCTION__, src->live_tv_id, src->uri_name );
rosfran@52
   842
  }
rosfran@52
   843
rosfran@174
   844
  src->file_transfer = gmyth_file_transfer_new(src->backend_info);
rosfran@52
   845
rosfran@52
   846
  if ( src->file_transfer == NULL ) {
rosfran@52
   847
    goto init_failed;
rosfran@52
   848
  }
rosfran@114
   849
  
rosfran@185
   850
	ret = gmyth_file_transfer_open( src->file_transfer, src->uri_name );
rosfran@174
   851
rosfran@174
   852
  /* sets the Playback monitor connection */
rosfran@174
   853
  //ret = gmyth_file_transfer_playback_setup( &(src->file_transfer), src->live_tv );
rosfran@52
   854
rosfran@52
   855
  if ( src->live_tv == TRUE && ret == TRUE ) {
rosfran@52
   856
    /* loop finished, set the max tries variable to zero again... */
rosfran@52
   857
    wait_to_transfer = 0;
rosfran@61
   858
rosfran@61
   859
    g_usleep( 200 );
rosfran@52
   860
rosfran@52
   861
    while ( wait_to_transfer++ < GMYTHTV_TRANSFER_MAX_WAITS && 
rosfran@108
   862
				( gmyth_livetv_is_recording( src->spawn_livetv ) == FALSE ) )
rosfran@61
   863
      g_usleep( 1000 );
rosfran@52
   864
  }
rosfran@52
   865
rosfran@174
   866
  /* sets the FileTransfer instance connection (video/audio download) */
rosfran@174
   867
  //ret = gmyth_file_transfer_setup( &(src->file_transfer), src->live_tv );
rosfran@52
   868
rosfran@52
   869
  if ( ret == FALSE ) {
rosfran@52
   870
#ifndef GST_DISABLE_GST_DEBUG  
rosfran@52
   871
    if ( src->mythtv_msgs_dbg )
rosfran@106
   872
      GST_ERROR_OBJECT( src, "MythTV FileTransfer request failed when setting up socket connection!\n" );  	  
rosfran@52
   873
#endif
rosfran@52
   874
    goto begin_req_failed;
rosfran@52
   875
  }
rosfran@61
   876
  src->content_size_last = src->content_size;
rosfran@61
   877
rosfran@61
   878
  src->content_size = src->file_transfer->filesize;
rosfran@87
   879
  if ( src->live_tv ) {
rosfran@87
   880
  	wait_to_transfer = 0;
rosfran@87
   881
	  while ( wait_to_transfer++ < GMYTHTV_TRANSFER_MAX_WAITS && src->content_size < GMYTHTV_TRANSFER_MAX_BUFFER )
rosfran@87
   882
	    src->content_size = gst_mythtv_src_get_position( src );
rosfran@87
   883
  }
rosfran@63
   884
rosfran@81
   885
  src->read_offset = 0;  
rosfran@70
   886
  
rosfran@100
   887
  if ( src->bytes_queue != NULL ) {
rosfran@100
   888
  	g_byte_array_free( src->bytes_queue, TRUE );
rosfran@100
   889
  }
rosfran@100
   890
  
rosfran@100
   891
  src->bytes_queue = g_byte_array_sized_new( INTERNAL_BUFFER_SIZE );
rosfran@100
   892
  
rosfran@114
   893
  //gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@114
   894
	//		gst_event_new_new_segment ( TRUE, 1.0, GST_FORMAT_TIME, 0, src->content_size, 0 ) );
rosfran@114
   895
  
rosfran@70
   896
done:
rosfran@81
   897
	src->update_prog_chain = FALSE;
rosfran@81
   898
	
rosfran@81
   899
	GST_PAD_STREAM_UNLOCK( GST_BASE_SRC_PAD (GST_BASE_SRC (src)) );
rosfran@81
   900
	
rosfran@52
   901
  return TRUE;
rosfran@52
   902
rosfran@52
   903
  /* ERRORS */
rosfran@52
   904
init_failed:
rosfran@52
   905
  {
rosfran@52
   906
    if (src->spawn_livetv != NULL )
rosfran@52
   907
      g_object_unref( src->spawn_livetv );
rosfran@52
   908
rosfran@52
   909
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@52
   910
	(NULL), ("Could not initialize MythTV library (%i, %s)", ret, src->uri_name));
rosfran@52
   911
    return FALSE;
rosfran@52
   912
  }
rosfran@52
   913
begin_req_failed:
rosfran@52
   914
  {
rosfran@52
   915
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@52
   916
	(NULL), ("Could not begin request sent to MythTV server (%i, %s)", ret, src->uri_name));
rosfran@52
   917
    return FALSE;
rosfran@52
   918
  }
rosfran@61
   919
rosfran@52
   920
}
rosfran@52
   921
rosfran@30
   922
static gboolean
leo_sobral@2
   923
gst_mythtv_src_get_size (GstBaseSrc * bsrc, guint64 * size)
leo_sobral@2
   924
{
rosfran@31
   925
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
rosfran@30
   926
  gboolean ret = TRUE;
rosfran@106
   927
  GST_LOG_OBJECT( src, "[%s] Differs from previous content size: %d (max.: %d)\n", __FUNCTION__, 
rosfran@63
   928
  			abs( src->content_size - src->prev_content_size ), GMYTHTV_TRANSFER_MAX_BUFFER );
rosfran@98
   929
  			
rosfran@100
   930
  if ( src->live_tv ) {
rosfran@98
   931
  	ret = FALSE;
rosfran@100
   932
	} else if ( src->live_tv && src->enable_timing_position && ( abs( src->content_size - src->bytes_read ) < 
rosfran@70
   933
				GMYTHTV_TRANSFER_MAX_BUFFER ) ) {
rosfran@70
   934
    
rosfran@114
   935
    gint64 new_offset = gmyth_recorder_get_file_position( src->spawn_livetv->recorder );
rosfran@70
   936
    if ( new_offset > 0 && new_offset > src->content_size ) {
rosfran@70
   937
			src->content_size = new_offset;
rosfran@70
   938
    } else if ( new_offset < src->content_size ) {
rosfran@70
   939
			src->update_prog_chain = TRUE;
rosfran@70
   940
	  }
rosfran@61
   941
leo_sobral@2
   942
  }
leo_sobral@2
   943
leo_sobral@2
   944
  *size = src->content_size;
rosfran@106
   945
  GST_LOG_OBJECT( src, "[%s] Content size = %lld\n", __FUNCTION__, src->content_size );
rosfran@87
   946
  
rosfran@30
   947
  return ret;
rosfran@30
   948
leo_sobral@2
   949
}
leo_sobral@2
   950
leo_sobral@2
   951
/* close the socket and associated resources
leo_sobral@2
   952
 * used both to recover from errors and go to NULL state */
rosfran@52
   953
static gboolean
leo_sobral@2
   954
gst_mythtv_src_stop (GstBaseSrc * bsrc)
leo_sobral@2
   955
{
leo_sobral@2
   956
  GstMythtvSrc *src;
leo_sobral@2
   957
leo_sobral@2
   958
  src = GST_MYTHTV_SRC (bsrc);
leo_sobral@2
   959
leo_sobral@2
   960
  if (src->uri_name) {
leo_sobral@2
   961
    g_free (src->uri_name);
leo_sobral@2
   962
    src->uri_name = NULL;
leo_sobral@2
   963
  }
leo_sobral@2
   964
leo_sobral@2
   965
  if (src->mythtv_caps) {
leo_sobral@2
   966
    gst_caps_unref (src->mythtv_caps);
leo_sobral@2
   967
    src->mythtv_caps = NULL;
leo_sobral@2
   968
  }
leo_sobral@2
   969
leo_sobral@2
   970
  src->eos = FALSE;
leo_sobral@2
   971
leo_sobral@2
   972
  return TRUE;
leo_sobral@2
   973
}
leo_sobral@2
   974
rosfran@30
   975
static gboolean
leo_sobral@2
   976
gst_mythtv_src_handle_event (GstPad * pad, GstEvent * event)
leo_sobral@2
   977
{
leo_sobral@2
   978
  GstMythtvSrc *src = GST_MYTHTV_SRC (GST_PAD_PARENT (pad));
rosfran@52
   979
  gint64 cont_size = 0;
rosfran@90
   980
  gboolean ret = FALSE;
leo_sobral@2
   981
leo_sobral@2
   982
  switch (GST_EVENT_TYPE (event)) {
rosfran@30
   983
    case GST_EVENT_EOS:
rosfran@106
   984
      GST_WARNING_OBJECT( src, "[%s] Got EOS event!!!\n", __FUNCTION__ );
rosfran@61
   985
rosfran@61
   986
      if ( src->live_tv ) {
rosfran@61
   987
	cont_size = gst_mythtv_src_get_position (src);
rosfran@61
   988
	if ( cont_size > src->content_size ) {
rosfran@61
   989
	  src->content_size = cont_size;
rosfran@61
   990
	  src->eos = FALSE;
rosfran@61
   991
	} else {
rosfran@61
   992
	  src->eos = TRUE;
rosfran@61
   993
	  gst_element_set_state ( GST_ELEMENT (src), GST_STATE_NULL );
rosfran@61
   994
	  gst_element_set_locked_state ( GST_ELEMENT (src), FALSE );
rosfran@61
   995
	}
rosfran@114
   996
      }
rosfran@30
   997
      break;
leo_sobral@2
   998
    default:
rosfran@90
   999
      ret = gst_pad_event_default (pad, event);
leo_sobral@2
  1000
  }
leo_sobral@2
  1001
rosfran@90
  1002
  return ret;
leo_sobral@2
  1003
}
leo_sobral@2
  1004
rosfran@30
  1005
static gboolean
rosfran@30
  1006
gst_mythtv_src_is_seekable( GstBaseSrc *push_src )
leo_sobral@2
  1007
{
rosfran@100
  1008
  return TRUE;
leo_sobral@2
  1009
}
rosfran@87
  1010
rosfran@87
  1011
static gboolean
rosfran@87
  1012
gst_mythtv_src_handle_query (GstPad * pad, GstQuery * query)
rosfran@87
  1013
{
rosfran@87
  1014
  gboolean res = FALSE;
rosfran@87
  1015
  GstMythtvSrc *myth = GST_MYTHTV_SRC (gst_pad_get_parent (pad));
rosfran@114
  1016
  GstFormat formt;
rosfran@87
  1017
rosfran@87
  1018
  switch (GST_QUERY_TYPE (query)) {
rosfran@87
  1019
    case GST_QUERY_POSITION:
rosfran@114
  1020
    {
rosfran@114
  1021
    	gint64 pos = -1;
rosfran@114
  1022
      gst_query_parse_position (query, &formt, &pos );
rosfran@87
  1023
      res = TRUE;
rosfran@124
  1024
      if ( formt == GST_FORMAT_BYTES ) {
rosfran@124
  1025
      	gst_query_set_position (query, formt, pos = myth->read_offset );
rosfran@114
  1026
      	GST_DEBUG_OBJECT (myth, "POS %lld (BYTES).\n", pos );
rosfran@124
  1027
      } else if ( formt == GST_FORMAT_TIME ) {
rosfran@114
  1028
      	GST_DEBUG_OBJECT (myth, "POS %lld (TIME).\n", pos );
rosfran@124
  1029
      	res = gst_pad_query_default(pad, query);
rosfran@124
  1030
      }
rosfran@87
  1031
      break;
rosfran@114
  1032
    }
rosfran@87
  1033
    case GST_QUERY_DURATION:
rosfran@114
  1034
    {
rosfran@87
  1035
#if 0
rosfran@87
  1036
      if (myth->duration != 0) {
rosfran@87
  1037
	gint64 total;
rosfran@87
  1038
	gint64 fps;
rosfran@87
  1039
rosfran@87
  1040
	fps = nuv->h->i_fpsn / nuv->h->i_fpsd;
rosfran@87
  1041
	total = gst_util_uint64_scale_int (GST_SECOND, nuv->h->i_video_blocks, fps);
rosfran@114
  1042
      }
rosfran@81
  1043
#endif
rosfran@114
  1044
	gint64 dur = -1;
rosfran@124
  1045
	gst_query_parse_duration ( query, &formt, &dur );	
rosfran@124
  1046
  if ( formt == GST_FORMAT_BYTES ) {
rosfran@124
  1047
  	gst_query_set_duration (query, formt, dur = myth->content_size);
rosfran@114
  1048
  	GST_DEBUG_OBJECT (myth, "DURATION %lld (BYTES).\n", dur );
rosfran@124
  1049
  } else if ( formt == GST_FORMAT_TIME ) {
rosfran@114
  1050
  	GST_DEBUG_OBJECT (myth, "DURATION %lld (TIME).\n", dur );
rosfran@124
  1051
  	gst_query_ref(query);
rosfran@124
  1052
  	res = gst_pad_query_default(pad, query);  	
rosfran@124
  1053
  }
rosfran@114
  1054
	res = TRUE;
rosfran@70
  1055
      break;
rosfran@114
  1056
    }
rosfran@70
  1057
    default:
rosfran@114
  1058
    {
rosfran@124
  1059
      res = gst_pad_query_default(pad, query);
rosfran@87
  1060
      break;
rosfran@114
  1061
    }
rosfran@70
  1062
  }
rosfran@61
  1063
rosfran@87
  1064
  gst_object_unref (myth);
rosfran@61
  1065
rosfran@70
  1066
  return res;
rosfran@61
  1067
}
rosfran@61
  1068
rosfran@52
  1069
static GstStateChangeReturn
rosfran@52
  1070
gst_mythtv_src_change_state (GstElement * element, GstStateChange transition)
rosfran@52
  1071
{
rosfran@87
  1072
  GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;//GST_STATE_CHANGE_NO_PREROLL;
rosfran@52
  1073
  GstMythtvSrc *src = GST_MYTHTV_SRC (element);
rosfran@52
  1074
rosfran@52
  1075
  switch (transition) {
rosfran@52
  1076
    case GST_STATE_CHANGE_NULL_TO_READY:
rosfran@87
  1077
      //src->do_start = TRUE;
rosfran@87
  1078
      //src->unique_setup = FALSE;
rosfran@52
  1079
      break;
rosfran@52
  1080
    case GST_STATE_CHANGE_READY_TO_PAUSED:
rosfran@124
  1081
    	GST_INFO_OBJECT( src, "[%s] READY to PAUSED called!\n", __FUNCTION__ );
rosfran@124
  1082
    	break;
rosfran@52
  1083
    case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
rosfran@124
  1084
    	GST_INFO_OBJECT( src, "[%s] PAUSED to PLAYING called!\n", __FUNCTION__ );
rosfran@124
  1085
      if ( src->live_tv ) {
rosfran@124
  1086
	      if ( !gmyth_recorder_send_frontend_ready_command( src->spawn_livetv->recorder ) )
rosfran@124
  1087
	      	GST_WARNING_OBJECT( src, "[%s] Couldn't send the FRONTEND_READY message to the backend!", __FUNCTION__ );
rosfran@124
  1088
	      else
rosfran@124
  1089
	      	GST_DEBUG_OBJECT( src, "[%s] Message FRONTEND_READY was sent to the backend!", __FUNCTION__ );
rosfran@124
  1090
      }
rosfran@124
  1091
rosfran@52
  1092
      break;
rosfran@52
  1093
    default:
rosfran@52
  1094
      break;
rosfran@52
  1095
  }
rosfran@61
  1096
rosfran@61
  1097
  ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
rosfran@52
  1098
  if (ret == GST_STATE_CHANGE_FAILURE)
rosfran@52
  1099
    return ret;
rosfran@52
  1100
rosfran@52
  1101
  switch (transition) {
rosfran@52
  1102
    case GST_STATE_CHANGE_READY_TO_NULL:
rosfran@106
  1103
      GST_INFO_OBJECT( src, "[%s] READY to NULL called!\n", __FUNCTION__ );
rosfran@52
  1104
      break;
rosfran@61
  1105
    case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
rosfran@106
  1106
      GST_INFO_OBJECT( src, "[%s] PLAYING to PAUSED called!\n", __FUNCTION__ );
rosfran@52
  1107
    case GST_STATE_CHANGE_PAUSED_TO_READY:
rosfran@106
  1108
      GST_INFO_OBJECT( src, "[%s] PAUSED to READY called!\n", __FUNCTION__ );
rosfran@124
  1109
      if ( src->live_tv ) {
rosfran@110
  1110
	      if ( !gmyth_recorder_send_frontend_ready_command( src->spawn_livetv->recorder ) )
rosfran@110
  1111
	      	GST_WARNING_OBJECT( src, "[%s] Couldn't send the FRONTEND_READY message to the backend!", __FUNCTION__ );
rosfran@110
  1112
	      else
rosfran@110
  1113
	      	GST_DEBUG_OBJECT( src, "[%s] Message FRONTEND_READY was sent to the backend!", __FUNCTION__ );
rosfran@81
  1114
      	
rosfran@98
  1115
      /*
rosfran@98
  1116
      	
rosfran@81
  1117
  			gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@81
  1118
      			gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@81
  1119
rosfran@70
  1120
				src->read_offset = 0;
rosfran@70
  1121
				src->bytes_read = 0;
rosfran@81
  1122
				src->unique_setup = FALSE;				
rosfran@70
  1123
				gst_mythtv_src_next_program_chain( src );
rosfran@98
  1124
				*/
rosfran@61
  1125
      }
rosfran@98
  1126
      
rosfran@61
  1127
      break;
rosfran@52
  1128
    default:
rosfran@52
  1129
      break;
rosfran@52
  1130
  }
rosfran@52
  1131
rosfran@52
  1132
  return ret;
rosfran@52
  1133
}
rosfran@52
  1134
rosfran@30
  1135
static void
leo_sobral@2
  1136
gst_mythtv_src_set_property (GObject * object, guint prop_id,
leo_sobral@2
  1137
    const GValue * value, GParamSpec * pspec)
leo_sobral@2
  1138
{
leo_sobral@2
  1139
  GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC (object);
leo_sobral@2
  1140
leo_sobral@2
  1141
  GST_OBJECT_LOCK (mythtvsrc);
leo_sobral@2
  1142
  switch (prop_id) {
leo_sobral@2
  1143
    case PROP_URI:
leo_sobral@2
  1144
    case PROP_LOCATION:
leo_sobral@2
  1145
      {
leo_sobral@2
  1146
	if (!g_value_get_string (value)) {
leo_sobral@2
  1147
	  GST_WARNING ("location property cannot be NULL");
leo_sobral@2
  1148
	  goto done;
leo_sobral@2
  1149
	}
leo_sobral@2
  1150
leo_sobral@2
  1151
	if (mythtvsrc->uri_name != NULL) {
leo_sobral@2
  1152
	  g_free (mythtvsrc->uri_name);
leo_sobral@2
  1153
	  mythtvsrc->uri_name = NULL;
leo_sobral@2
  1154
	}
leo_sobral@2
  1155
	mythtvsrc->uri_name = g_value_dup_string (value);
leo_sobral@2
  1156
leo_sobral@2
  1157
	break;
leo_sobral@2
  1158
      }
leo_sobral@2
  1159
#ifndef GST_DISABLE_GST_DEBUG
rosfran@40
  1160
    case PROP_GMYTHTV_DBG:
leo_sobral@2
  1161
      {
leo_sobral@2
  1162
	mythtvsrc->mythtv_msgs_dbg = g_value_get_boolean (value);
leo_sobral@2
  1163
	break;
leo_sobral@2
  1164
      }
leo_sobral@2
  1165
#endif
rosfran@40
  1166
    case PROP_GMYTHTV_VERSION:
leo_sobral@2
  1167
      {
leo_sobral@2
  1168
	mythtvsrc->mythtv_version = g_value_get_int (value);
leo_sobral@2
  1169
	break;
leo_sobral@2
  1170
      }
rosfran@40
  1171
    case PROP_GMYTHTV_LIVEID:
leo_sobral@2
  1172
      {
leo_sobral@2
  1173
	mythtvsrc->live_tv_id = g_value_get_int (value);
leo_sobral@2
  1174
	break;
leo_sobral@2
  1175
      }
rosfran@40
  1176
    case PROP_GMYTHTV_LIVE:
leo_sobral@2
  1177
      {
leo_sobral@2
  1178
	mythtvsrc->live_tv = g_value_get_boolean (value);
leo_sobral@2
  1179
	break;
leo_sobral@2
  1180
      }
rosfran@52
  1181
    case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
rosfran@52
  1182
      {
rosfran@52
  1183
	mythtvsrc->enable_timing_position = g_value_get_boolean (value);
rosfran@52
  1184
	break;
rosfran@52
  1185
      }      
rosfran@40
  1186
    case PROP_GMYTHTV_LIVE_CHAINID:
leo_sobral@2
  1187
      {
leo_sobral@2
  1188
	if (!g_value_get_string (value)) {
leo_sobral@2
  1189
	  GST_WARNING ("MythTV Live chainid property cannot be NULL");
leo_sobral@2
  1190
	  goto done;
leo_sobral@2
  1191
	}
leo_sobral@2
  1192
leo_sobral@2
  1193
	if (mythtvsrc->live_chain_id != NULL) {
leo_sobral@2
  1194
	  g_free (mythtvsrc->live_chain_id);
leo_sobral@2
  1195
	  mythtvsrc->live_chain_id = NULL;
leo_sobral@2
  1196
	}
leo_sobral@2
  1197
	mythtvsrc->live_chain_id = g_value_dup_string (value);
leo_sobral@2
  1198
	break;
leo_sobral@2
  1199
      }
rosfran@70
  1200
    case PROP_GMYTHTV_CHANNEL_NUM:
rosfran@70
  1201
      {
rosfran@70
  1202
	mythtvsrc->channel_num = g_value_get_int (value);
rosfran@70
  1203
	break;
rosfran@70
  1204
      }
leo_sobral@2
  1205
    default:
leo_sobral@2
  1206
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
leo_sobral@2
  1207
      break;
leo_sobral@2
  1208
  }
leo_sobral@2
  1209
  GST_OBJECT_UNLOCK (mythtvsrc);
leo_sobral@2
  1210
done:
leo_sobral@2
  1211
  return;
leo_sobral@2
  1212
}
leo_sobral@2
  1213
rosfran@100
  1214
static void
leo_sobral@2
  1215
gst_mythtv_src_get_property (GObject * object, guint prop_id,
leo_sobral@2
  1216
    GValue * value, GParamSpec * pspec)
leo_sobral@2
  1217
{
leo_sobral@2
  1218
  GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC (object);
leo_sobral@2
  1219
leo_sobral@2
  1220
  GST_OBJECT_LOCK (mythtvsrc);
leo_sobral@2
  1221
  switch (prop_id) {
leo_sobral@2
  1222
    case PROP_URI:
leo_sobral@2
  1223
    case PROP_LOCATION:
leo_sobral@2
  1224
      {
leo_sobral@2
  1225
	gchar *str = g_strdup( "" );
leo_sobral@2
  1226
leo_sobral@2
  1227
	if ( mythtvsrc->uri_name == NULL ) {
leo_sobral@2
  1228
	  g_free (mythtvsrc->uri_name);
leo_sobral@2
  1229
	  mythtvsrc->uri_name = NULL;
leo_sobral@2
  1230
	} else {
leo_sobral@2
  1231
	  str = g_strdup( mythtvsrc->uri_name );
leo_sobral@2
  1232
	}
leo_sobral@2
  1233
	g_value_set_string ( value, str );
leo_sobral@2
  1234
	break;
leo_sobral@2
  1235
      }
leo_sobral@2
  1236
#ifndef GST_DISABLE_GST_DEBUG
rosfran@40
  1237
    case PROP_GMYTHTV_DBG:
leo_sobral@2
  1238
      g_value_set_boolean ( value, mythtvsrc->mythtv_msgs_dbg );
leo_sobral@2
  1239
      break;
leo_sobral@2
  1240
#endif
rosfran@40
  1241
    case PROP_GMYTHTV_VERSION:
leo_sobral@2
  1242
      {
leo_sobral@2
  1243
	g_value_set_int ( value, mythtvsrc->mythtv_version );
leo_sobral@2
  1244
	break;
leo_sobral@2
  1245
      }
rosfran@40
  1246
    case PROP_GMYTHTV_LIVEID:
leo_sobral@2
  1247
      {
leo_sobral@2
  1248
	g_value_set_int ( value, mythtvsrc->live_tv_id );
leo_sobral@2
  1249
	break;
leo_sobral@2
  1250
      }
rosfran@40
  1251
    case PROP_GMYTHTV_LIVE:
leo_sobral@2
  1252
      g_value_set_boolean ( value, mythtvsrc->live_tv );
leo_sobral@2
  1253
      break;
rosfran@52
  1254
    case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
rosfran@52
  1255
      g_value_set_boolean ( value, mythtvsrc->enable_timing_position );
rosfran@52
  1256
      break;
rosfran@40
  1257
    case PROP_GMYTHTV_LIVE_CHAINID:
leo_sobral@2
  1258
      {
leo_sobral@2
  1259
	gchar *str = g_strdup( "" );
leo_sobral@2
  1260
leo_sobral@2
  1261
	if ( mythtvsrc->live_chain_id == NULL ) {
leo_sobral@2
  1262
	  g_free (mythtvsrc->live_chain_id);
leo_sobral@2
  1263
	  mythtvsrc->live_chain_id = NULL;
leo_sobral@2
  1264
	} else {
leo_sobral@2
  1265
	  str = g_strdup( mythtvsrc->live_chain_id );
leo_sobral@2
  1266
	}
leo_sobral@2
  1267
	g_value_set_string ( value, str );
leo_sobral@2
  1268
	break;
leo_sobral@2
  1269
      }
rosfran@70
  1270
    case PROP_GMYTHTV_CHANNEL_NUM:
rosfran@70
  1271
      {
rosfran@70
  1272
	g_value_set_int ( value, mythtvsrc->channel_num );
rosfran@70
  1273
	break;
rosfran@70
  1274
      }
leo_sobral@2
  1275
    default:
leo_sobral@2
  1276
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
leo_sobral@2
  1277
      break;
leo_sobral@2
  1278
  }
leo_sobral@2
  1279
  GST_OBJECT_UNLOCK (mythtvsrc);
leo_sobral@2
  1280
}
leo_sobral@2
  1281
leo_sobral@2
  1282
/* entry point to initialize the plug-in
leo_sobral@2
  1283
 * initialize the plug-in itself
leo_sobral@2
  1284
 * register the element factories and pad templates
leo_sobral@2
  1285
 * register the features
leo_sobral@2
  1286
 */
rosfran@40
  1287
static gboolean
leo_sobral@2
  1288
plugin_init (GstPlugin * plugin)
leo_sobral@2
  1289
{
leo_sobral@2
  1290
  return gst_element_register (plugin, "mythtvsrc", GST_RANK_NONE,
leo_sobral@2
  1291
      GST_TYPE_MYTHTV_SRC);
leo_sobral@2
  1292
}
leo_sobral@2
  1293
leo_sobral@2
  1294
/* this is the structure that gst-register looks for
leo_sobral@2
  1295
 * so keep the name plugin_desc, or you cannot get your plug-in registered */
leo_sobral@2
  1296
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
leo_sobral@2
  1297
    GST_VERSION_MINOR,
leo_sobral@2
  1298
    "mythtv",
leo_sobral@2
  1299
    "lib MythTV src",
leo_sobral@2
  1300
    plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
leo_sobral@2
  1301
leo_sobral@2
  1302
leo_sobral@2
  1303
/*** GSTURIHANDLER INTERFACE *************************************************/
leo_sobral@2
  1304
  static guint 
leo_sobral@2
  1305
gst_mythtv_src_uri_get_type (void)
leo_sobral@2
  1306
{
leo_sobral@2
  1307
  return GST_URI_SRC;
leo_sobral@2
  1308
}
leo_sobral@2
  1309
leo_sobral@2
  1310
  static gchar **
leo_sobral@2
  1311
gst_mythtv_src_uri_get_protocols (void)
leo_sobral@2
  1312
{
leo_sobral@2
  1313
  static gchar *protocols[] = { "myth", "myths", NULL };
leo_sobral@2
  1314
leo_sobral@2
  1315
  return protocols;
leo_sobral@2
  1316
}
leo_sobral@2
  1317
leo_sobral@2
  1318
  static const gchar *
leo_sobral@2
  1319
gst_mythtv_src_uri_get_uri (GstURIHandler * handler)
leo_sobral@2
  1320
{
leo_sobral@2
  1321
  GstMythtvSrc *src = GST_MYTHTV_SRC (handler);
leo_sobral@2
  1322
leo_sobral@2
  1323
  return src->uri_name;
leo_sobral@2
  1324
}
leo_sobral@2
  1325
leo_sobral@2
  1326
  static gboolean
leo_sobral@2
  1327
gst_mythtv_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
leo_sobral@2
  1328
{
leo_sobral@2
  1329
  GstMythtvSrc *src = GST_MYTHTV_SRC (handler);
leo_sobral@2
  1330
leo_sobral@2
  1331
  gchar *protocol;
leo_sobral@2
  1332
leo_sobral@2
  1333
  protocol = gst_uri_get_protocol (uri);
leo_sobral@2
  1334
  if ((strcmp (protocol, "myth") != 0) && (strcmp (protocol, "myths") != 0)) {
leo_sobral@2
  1335
    g_free (protocol);
leo_sobral@2
  1336
    return FALSE;
leo_sobral@2
  1337
  }
leo_sobral@2
  1338
  g_free (protocol);
leo_sobral@2
  1339
  g_object_set (src, "location", uri, NULL);
leo_sobral@2
  1340
leo_sobral@2
  1341
  return TRUE;
leo_sobral@2
  1342
}
leo_sobral@2
  1343
rosfran@87
  1344
 static void
leo_sobral@2
  1345
gst_mythtv_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
leo_sobral@2
  1346
{
leo_sobral@2
  1347
  GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
leo_sobral@2
  1348
leo_sobral@2
  1349
  iface->get_type = gst_mythtv_src_uri_get_type;
leo_sobral@2
  1350
  iface->get_protocols = gst_mythtv_src_uri_get_protocols;
leo_sobral@2
  1351
  iface->get_uri = gst_mythtv_src_uri_get_uri;
leo_sobral@2
  1352
  iface->set_uri = gst_mythtv_src_uri_set_uri;
leo_sobral@2
  1353
}
leo_sobral@2
  1354
leo_sobral@2
  1355
  void
leo_sobral@2
  1356
size_header_handler (void *userdata, const char *value)
leo_sobral@2
  1357
{
leo_sobral@2
  1358
  GstMythtvSrc *src = GST_MYTHTV_SRC (userdata);
leo_sobral@2
  1359
leo_sobral@2
  1360
  //src->content_size = g_ascii_strtoull (value, NULL, 10);
leo_sobral@2
  1361
leo_sobral@2
  1362
  GST_DEBUG_OBJECT (src, "content size = %lld bytes", src->content_size);
leo_sobral@2
  1363
}