gst-plugins-mythtv/src/gstmythtvsrc.c
author rosfran
Sat Dec 02 03:37:23 2006 +0000 (2006-12-02)
branchtrunk
changeset 174 49f0333ad361
parent 159 2db0e1da044a
child 185 1b4e66e09d43
permissions -rwxr-xr-x
[svn r175] Do changes in some API modifications function calls on FileTransfer.
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@124
    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@70
    45
#define GST_GMYTHTV_CHANNEL_NUM			1000
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@102
    51
#define GMYTHTV_TRANSFER_MAX_RESENDS	5
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@71
   228
       0, 99999, GST_GMYTHTV_CHANNEL_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@70
   281
  this->channel_num = 0;
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
rosfran@81
   305
  if ( this->th_read_ahead != NULL ) {
rosfran@114
   306
    gst_task_stop( this->th_read_ahead );
rosfran@114
   307
    this->th_read_ahead = NULL;
rosfran@81
   308
  }
leo_sobral@2
   309
leo_sobral@2
   310
  if (this->mythtv_caps) {
leo_sobral@2
   311
    gst_caps_unref (this->mythtv_caps);
leo_sobral@2
   312
    this->mythtv_caps = NULL;
leo_sobral@2
   313
  }
leo_sobral@2
   314
leo_sobral@2
   315
  if (this->file_transfer) {
leo_sobral@2
   316
    g_object_unref (this->file_transfer);
leo_sobral@2
   317
    this->file_transfer = NULL;
leo_sobral@2
   318
  }
leo_sobral@2
   319
rosfran@114
   320
  if (this->spawn_livetv) {
rosfran@70
   321
    g_object_unref (this->spawn_livetv);
rosfran@52
   322
    this->spawn_livetv = NULL;
rosfran@52
   323
  }
rosfran@118
   324
  
rosfran@118
   325
  if (this->backend_info) {
rosfran@118
   326
    g_object_unref (this->backend_info);
rosfran@118
   327
    this->backend_info = NULL;
rosfran@118
   328
  }
rosfran@52
   329
leo_sobral@2
   330
  if (this->uri_name) {
leo_sobral@2
   331
    g_free (this->uri_name);
leo_sobral@2
   332
  }
leo_sobral@2
   333
leo_sobral@2
   334
  if (this->user_agent) {
leo_sobral@2
   335
    g_free (this->user_agent);
leo_sobral@2
   336
  }
rosfran@114
   337
rosfran@100
   338
  if ( this->bytes_queue ) {
rosfran@114
   339
    g_byte_array_free( this->bytes_queue, TRUE );
rosfran@114
   340
    this->bytes_queue = NULL;
rosfran@100
   341
  }
leo_sobral@2
   342
leo_sobral@2
   343
  G_OBJECT_CLASS (parent_class)->finalize (gobject);
leo_sobral@2
   344
}
leo_sobral@2
   345
rosfran@37
   346
static gint
rosfran@102
   347
do_read_request_response (GstMythtvSrc * src, guint size, GByteArray *data_ptr)
leo_sobral@2
   348
{
rosfran@37
   349
  gint read = 0;
rosfran@52
   350
  guint sizetoread = size;
rosfran@142
   351
  gint max_iters = GMYTHTV_TRANSFER_MAX_RESENDS;
rosfran@102
   352
  
rosfran@106
   353
  GST_LOG_OBJECT( src, "Starting: [%s] Reading %d bytes...\n", __FUNCTION__, sizetoread ); 
leo_sobral@2
   354
rosfran@30
   355
  /* Loop sending the Myth File Transfer request:
leo_sobral@2
   356
   * Retry whilst authentication fails and we supply it. */
rosfran@37
   357
  gint len = 0;
rosfran@70
   358
  
rosfran@102
   359
  while ( sizetoread == size && --max_iters > 0) {
rosfran@61
   360
rosfran@61
   361
    len = gmyth_file_transfer_read( src->file_transfer,
rosfran@102
   362
				data_ptr, sizetoread, TRUE );
leo_sobral@2
   363
leo_sobral@2
   364
    if ( len > 0 ) {
rosfran@81
   365
      read += len;
leo_sobral@2
   366
      sizetoread -= len;
rosfran@52
   367
    } 
rosfran@90
   368
    else if ( len < 0 )
rosfran@52
   369
    {
rosfran@90
   370
      read = -1;
rosfran@61
   371
rosfran@52
   372
      if ( src->live_tv == FALSE ) 
rosfran@52
   373
      {
rosfran@90
   374
	goto eos;
rosfran@52
   375
      } 
rosfran@52
   376
      else  
rosfran@52
   377
      {
rosfran@90
   378
	if ( len == GMYTHTV_FILE_TRANSFER_READ_ERROR ) { /* -314 */
rosfran@90
   379
	  src->update_prog_chain = TRUE;
rosfran@90
   380
	  goto done;	  	
rosfran@100
   381
	} 
rosfran@90
   382
	goto done;
rosfran@90
   383
      }
rosfran@30
   384
rosfran@142
   385
    } else if ( len == 0 )
rosfran@142
   386
    	goto done;
rosfran@61
   387
rosfran@30
   388
    if ( read == sizetoread )
rosfran@90
   389
      goto done;
rosfran@100
   390
  }
rosfran@61
   391
rosfran@102
   392
  if ( ( read < 0 && !src->live_tv ) || max_iters == 0 )
rosfran@61
   393
    goto eos;
rosfran@61
   394
rosfran@30
   395
  goto done;
leo_sobral@2
   396
leo_sobral@2
   397
eos:
leo_sobral@2
   398
  src->eos = TRUE;
rosfran@61
   399
leo_sobral@2
   400
done:
leo_sobral@2
   401
  return read;
leo_sobral@2
   402
}
leo_sobral@2
   403
rosfran@30
   404
static GstFlowReturn
rosfran@81
   405
gst_mythtv_src_create ( GstPushSrc* psrc, GstBuffer** outbuf )
rosfran@81
   406
{
rosfran@81
   407
  GstMythtvSrc *src;
rosfran@81
   408
  GstFlowReturn ret = GST_FLOW_OK;
rosfran@81
   409
  gint read = -1;
rosfran@90
   410
rosfran@81
   411
  src = GST_MYTHTV_SRC ( psrc );
rosfran@90
   412
rosfran@81
   413
  /* The caller should know the number of bytes and not read beyond EOS. */
rosfran@81
   414
  if (G_UNLIKELY (src->eos))
rosfran@81
   415
    goto eos;
rosfran@81
   416
  if ( G_UNLIKELY (src->update_prog_chain) )
rosfran@81
   417
    goto change_progchain;
rosfran@95
   418
rosfran@90
   419
  //g_static_rec_mutex_lock( &th_mutex );
rosfran@106
   420
  GST_DEBUG_OBJECT( src, "[%s] offset = %llu, size = %d...\n", __FUNCTION__, 
rosfran@100
   421
  		src->read_offset, MAX_READ_SIZE );
rosfran@95
   422
rosfran@118
   423
  GST_DEBUG_OBJECT ( src, "[%s]\t\tCreate: buffer_remain: %d, buffer_size = %d.\n", __FUNCTION__, 
rosfran@118
   424
      (gint) src->buffer_remain, src->bytes_queue->len );
rosfran@95
   425
rosfran@100
   426
  /* just get from the byte array, no network effort... */
rosfran@174
   427
  if ( ( src->buffer_remain = src->bytes_queue->len ) < MAX_READ_SIZE ) { 
rosfran@124
   428
  			//( ( INTERNAL_BUFFER_SIZE - src->buffer_remain )  >=  REQUEST_MAX_SIZE ) ) {
rosfran@124
   429
  	GByteArray *buffer = NULL;
rosfran@142
   430
  	guint buffer_size_inter = ( INTERNAL_BUFFER_SIZE - src->buffer_remain );
rosfran@142
   431
  	if ( buffer_size_inter > REQUEST_MAX_SIZE )
rosfran@142
   432
  		buffer_size_inter = REQUEST_MAX_SIZE;
rosfran@124
   433
  		
rosfran@142
   434
  	buffer = g_byte_array_new();
rosfran@95
   435
rosfran@142
   436
    read = do_read_request_response( src, buffer_size_inter, buffer );
rosfran@142
   437
rosfran@142
   438
    if (G_UNLIKELY (read < 0)) {
rosfran@142
   439
      if ( src->live_tv )
rosfran@142
   440
	goto change_progchain;
rosfran@142
   441
      else
rosfran@142
   442
	goto read_error;
rosfran@174
   443
    } else if (G_UNLIKELY (read == 0))
rosfran@174
   444
    {
rosfran@174
   445
	    if (!src->live_tv )
rosfran@174
   446
	    	goto eos;
rosfran@174
   447
	    else
rosfran@174
   448
	    	goto done;
rosfran@174
   449
    }
rosfran@142
   450
rosfran@142
   451
    if ( G_UNLIKELY (src->update_prog_chain) )
rosfran@142
   452
      goto change_progchain;
rosfran@142
   453
    
rosfran@151
   454
    src->bytes_queue = g_byte_array_append( src->bytes_queue, buffer->data, read );
rosfran@142
   455
    if ( read > buffer_size_inter )
rosfran@142
   456
    	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
   457
    			__FUNCTION__, abs( read - buffer_size_inter ) );
rosfran@142
   458
rosfran@142
   459
    src->buffer_remain += read;
rosfran@142
   460
rosfran@142
   461
    if ( buffer != NULL ) {
rosfran@142
   462
    	g_byte_array_free( buffer, TRUE );
rosfran@142
   463
    	buffer = NULL;    	
rosfran@142
   464
    }
rosfran@124
   465
	
rosfran@124
   466
	    GST_DEBUG_OBJECT( src, "[%s]\tBYTES READ (actual) = %d, BYTES READ (cumulative) = %llu, "\
rosfran@124
   467
		"OFFSET = %llu, CONTENT SIZE = %llu.\n", __FUNCTION__, read, src->bytes_read, 
rosfran@124
   468
		src->read_offset, src->content_size );
rosfran@100
   469
	
rosfran@81
   470
  }
rosfran@98
   471
  
rosfran@100
   472
  guint buffer_size = ( src->buffer_remain < MAX_READ_SIZE) ? src->buffer_remain : MAX_READ_SIZE;
rosfran@100
   473
  
rosfran@100
   474
  /* Create the buffer. */
rosfran@100
   475
  ret = gst_pad_alloc_buffer ( GST_BASE_SRC_PAD (GST_BASE_SRC (psrc)),
rosfran@152
   476
      GST_BUFFER_OFFSET_NONE, buffer_size,
rosfran@100
   477
      GST_PAD_CAPS (GST_BASE_SRC_PAD (GST_BASE_SRC (psrc))), outbuf );    
rosfran@81
   478
rosfran@100
   479
  if (G_UNLIKELY (ret != GST_FLOW_OK)) {
rosfran@100
   480
    if ( src->live_tv )
rosfran@100
   481
      goto change_progchain;
rosfran@100
   482
    else
rosfran@100
   483
      goto done;
rosfran@100
   484
  }
rosfran@152
   485
  //*outbuf = gst_buffer_new_and_alloc( buffer_size );
rosfran@100
   486
  
rosfran@100
   487
  /* gets the first buffer_size bytes from the byte array buffer variable */ 
rosfran@151
   488
  //guint8 *buf = g_memdup( src->bytes_queue->data, buffer_size );
rosfran@95
   489
rosfran@106
   490
  GST_DEBUG_OBJECT( src, "[%s] read from network? %s!, buffer_remain = %d\n", __FUNCTION__, 
rosfran@100
   491
  	read == -1 ? "NO, got from buffer" : "YES, go see the backend's log file", src->buffer_remain );
rosfran@95
   492
rosfran@100
   493
  GST_BUFFER_SIZE (*outbuf) = buffer_size;
rosfran@174
   494
  GST_BUFFER_MALLOCDATA( *outbuf ) = g_malloc0( GST_BUFFER_SIZE (*outbuf) );
rosfran@174
   495
  GST_BUFFER_DATA( *outbuf ) = GST_BUFFER_MALLOCDATA( *outbuf );
rosfran@151
   496
  g_memmove( GST_BUFFER_DATA( (*outbuf) ), src->bytes_queue->data, GST_BUFFER_SIZE(*outbuf) );
rosfran@95
   497
  GST_BUFFER_OFFSET (*outbuf) = src->read_offset;
rosfran@95
   498
  GST_BUFFER_OFFSET_END (*outbuf) = src->read_offset + GST_BUFFER_SIZE (*outbuf);
rosfran@95
   499
rosfran@95
   500
  src->buffer_remain -= GST_BUFFER_SIZE (*outbuf);
rosfran@95
   501
rosfran@95
   502
  src->read_offset += GST_BUFFER_SIZE (*outbuf);
rosfran@95
   503
  src->bytes_read += GST_BUFFER_SIZE (*outbuf);
rosfran@106
   504
  GST_DEBUG_OBJECT( src, "[%s]\t\tBuffer output with size: %d\n", __FUNCTION__, GST_BUFFER_SIZE (*outbuf) );
rosfran@100
   505
  
rosfran@100
   506
  /* flushs the newly buffer got from byte array */
rosfran@100
   507
  src->bytes_queue = g_byte_array_remove_range( src->bytes_queue, 0, buffer_size );
rosfran@95
   508
rosfran@106
   509
  GST_DEBUG_OBJECT( src, "Got buffer: [%s]\t\tBUFFER --->SIZE = %d, OFFSET = %llu, "\
rosfran@95
   510
      "OFFSET_END = %llu.\n\n", __FUNCTION__, GST_BUFFER_SIZE (*outbuf), 
rosfran@95
   511
      GST_BUFFER_OFFSET (*outbuf), GST_BUFFER_OFFSET_END (*outbuf) );
rosfran@95
   512
rosfran@142
   513
  GST_DEBUG_OBJECT( src, "[%s]\tCONTENT_SIZE = %llu, BYTES_READ = %llu.\n", __FUNCTION__, 
rosfran@142
   514
  		src->content_size, src->bytes_read );
rosfran@142
   515
      
rosfran@142
   516
  if ( G_UNLIKELY (src->eos) || ( !src->live_tv && ( src->bytes_read >= src->content_size ) ) )
rosfran@142
   517
   goto eos;
rosfran@90
   518
rosfran@81
   519
done:
rosfran@90
   520
  {
rosfran@81
   521
    const gchar *reason = gst_flow_get_name (ret);
rosfran@81
   522
rosfran@81
   523
    GST_DEBUG_OBJECT (src, "DONE task, reason %s", reason);
rosfran@90
   524
    return ret;
rosfran@90
   525
  }
rosfran@81
   526
eos:
rosfran@81
   527
  {
rosfran@81
   528
    const gchar *reason = gst_flow_get_name (ret);
rosfran@81
   529
rosfran@81
   530
    GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
rosfran@81
   531
    return GST_FLOW_UNEXPECTED;
rosfran@81
   532
  }
rosfran@81
   533
  /* ERRORS */
rosfran@81
   534
read_error:
rosfran@81
   535
  {
rosfran@81
   536
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@81
   537
	(NULL), ("Could not read any bytes (%i, %s)", read,
rosfran@90
   538
		 src->uri_name));
rosfran@81
   539
    return GST_FLOW_ERROR;
rosfran@81
   540
  }
rosfran@81
   541
change_progchain:
rosfran@81
   542
  {
rosfran@81
   543
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@90
   544
	(NULL), ("Seek failed, go to the next program info... (%i, %s)", read,
rosfran@90
   545
		 src->uri_name));
rosfran@90
   546
rosfran@90
   547
    gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (psrc)),
rosfran@90
   548
	gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@90
   549
    // go to the next program chain
rosfran@90
   550
    src->unique_setup = FALSE;
rosfran@90
   551
    src->update_prog_chain = TRUE;
rosfran@90
   552
rosfran@90
   553
    gst_mythtv_src_next_program_chain( src );
rosfran@90
   554
rosfran@70
   555
    return GST_FLOW_ERROR_NO_DATA;
rosfran@37
   556
  }
rosfran@30
   557
leo_sobral@2
   558
}
rosfran@98
   559
rosfran@52
   560
gint64
rosfran@30
   561
gst_mythtv_src_get_position ( GstMythtvSrc* src ) 
leo_sobral@2
   562
{
rosfran@30
   563
rosfran@52
   564
  gint64 size_tmp = 0;
rosfran@71
   565
  guint max_tries = 2;
rosfran@71
   566
  if (src->live_tv == TRUE && ( abs( src->content_size - src->bytes_read ) < 
rosfran@71
   567
		GMYTHTV_TRANSFER_MAX_BUFFER ) ) {
rosfran@71
   568
rosfran@30
   569
get_file_pos:
rosfran@61
   570
    g_usleep( 10 );
rosfran@114
   571
    size_tmp = gmyth_recorder_get_file_position( src->spawn_livetv->recorder );
rosfran@52
   572
    if ( size_tmp > ( src->content_size + GMYTHTV_TRANSFER_MAX_BUFFER ) )
rosfran@61
   573
      src->content_size = size_tmp;
rosfran@61
   574
    else if ( size_tmp > 0 && --max_tries > 0 )
rosfran@61
   575
      goto get_file_pos;
rosfran@106
   576
    GST_LOG_OBJECT( src, "\t[%s]\tGET_POSITION: file_position = %lld\n",
rosfran@61
   577
	__FUNCTION__, size_tmp );
rosfran@71
   578
    /* sets the last content size amount before it can be updated */
rosfran@71
   579
    src->prev_content_size = src->content_size;
rosfran@30
   580
  }
rosfran@52
   581
rosfran@30
   582
  return src->content_size;	
rosfran@30
   583
leo_sobral@2
   584
}
leo_sobral@2
   585
rosfran@87
   586
static gboolean
rosfran@87
   587
gst_mythtv_src_do_seek( GstBaseSrc *base, GstSegment *segment )
rosfran@87
   588
{
rosfran@87
   589
  GstMythtvSrc *src = GST_MYTHTV_SRC( base );
rosfran@90
   590
  gint64 new_offset = -1;
rosfran@90
   591
  gint64 actual_seek = segment->start;
rosfran@87
   592
  gboolean ret = TRUE;
rosfran@87
   593
rosfran@106
   594
  GST_LOG_OBJECT( src, "[%s]DO Seek called! (start = %lld, stop = %lld)\n", __FUNCTION__, 
rosfran@106
   595
  		segment->start, segment->stop );
rosfran@90
   596
rosfran@90
   597
  if ( segment->format == GST_FORMAT_TIME ) 
rosfran@90
   598
  {
rosfran@90
   599
    goto done; 
rosfran@90
   600
    //actual_seek = ( ( segment->start / 1000 ) * 28 ) * 4000;
rosfran@90
   601
  }
rosfran@106
   602
  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
   603
  /* verify if it needs to seek */
rosfran@90
   604
  if ( src->read_offset != actual_seek )
rosfran@87
   605
  {
rosfran@87
   606
rosfran@87
   607
    new_offset = gmyth_file_transfer_seek( src->file_transfer, segment->start, SEEK_SET );
rosfran@87
   608
rosfran@106
   609
    GST_LOG_OBJECT( src, "[%s] Segment offset start = %lld, SRC Offset = %lld, NEW actual backend SEEK Offset = %lld.\n",
rosfran@106
   610
			__FUNCTION__, segment->start, src->read_offset, new_offset );
rosfran@87
   611
    if ( G_UNLIKELY (new_offset < 0 ) )
rosfran@87
   612
    {
rosfran@87
   613
      ret = FALSE;
rosfran@87
   614
      if ( src->live_tv )
rosfran@87
   615
	goto change_progchain;
rosfran@87
   616
      else
rosfran@87
   617
	goto eos;
rosfran@87
   618
    }
rosfran@87
   619
rosfran@87
   620
    src->read_offset = new_offset;
rosfran@87
   621
rosfran@90
   622
    if ( ret == FALSE ) {
rosfran@106
   623
      GST_INFO_OBJECT( src, "[%s] Failed to set the SEEK on segment!\n", __FUNCTION__ );
rosfran@90
   624
    }
rosfran@90
   625
rosfran@87
   626
  }
rosfran@90
   627
rosfran@90
   628
done:
rosfran@87
   629
   return ret;
rosfran@87
   630
rosfran@87
   631
eos:
rosfran@87
   632
  {
rosfran@87
   633
rosfran@87
   634
    GST_DEBUG_OBJECT (src, "EOS found on seeking!!!");
rosfran@87
   635
    return FALSE;
rosfran@87
   636
  }
rosfran@87
   637
change_progchain:
rosfran@87
   638
  {
rosfran@87
   639
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@87
   640
	(NULL), ("Seek failed, go to the next program info... (%i, %s)", read,
rosfran@87
   641
		 src->uri_name));
rosfran@87
   642
rosfran@87
   643
    gst_pad_push_event ( GST_BASE_SRC_PAD (base),
rosfran@87
   644
	gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@87
   645
    /* go to the next program chain */
rosfran@87
   646
    src->unique_setup = FALSE;
rosfran@87
   647
    src->update_prog_chain = TRUE;
rosfran@87
   648
rosfran@87
   649
    gst_mythtv_src_next_program_chain( src );
rosfran@87
   650
rosfran@87
   651
    return TRUE;
rosfran@87
   652
  }
rosfran@87
   653
rosfran@87
   654
}
rosfran@87
   655
leo_sobral@2
   656
/* create a socket for connecting to remote server */
rosfran@30
   657
static gboolean
leo_sobral@2
   658
gst_mythtv_src_start ( GstBaseSrc * bsrc )
leo_sobral@2
   659
{
leo_sobral@2
   660
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
leo_sobral@2
   661
leo_sobral@2
   662
  GString *chain_id_local = NULL;
rosfran@174
   663
leo_sobral@2
   664
  gboolean ret = TRUE;
rosfran@90
   665
rosfran@71
   666
  if ( G_UNLIKELY (src->update_prog_chain) )
rosfran@71
   667
    goto change_progchain;
rosfran@30
   668
leo_sobral@2
   669
  if (src->unique_setup == FALSE) {
leo_sobral@2
   670
    src->unique_setup = TRUE;
leo_sobral@2
   671
  } else {
leo_sobral@2
   672
    goto done;
leo_sobral@2
   673
  }
rosfran@174
   674
  
melunko@159
   675
  src->backend_info = gmyth_backend_info_new_with_uri( src->uri_name );
rosfran@174
   676
  if ( src->live_tv ) {  	
rosfran@40
   677
    src->spawn_livetv = gmyth_livetv_new( );
rosfran@118
   678
    if ( gmyth_livetv_setup( src->spawn_livetv, src->backend_info ) == FALSE ) {
rosfran@30
   679
      ret = FALSE;
rosfran@30
   680
      goto init_failed;
rosfran@70
   681
    }    
rosfran@52
   682
leo_sobral@2
   683
    /* set up the uri variable */
leo_sobral@2
   684
    src->uri_name = g_strdup( src->spawn_livetv->proginfo->pathname->str );
leo_sobral@2
   685
    chain_id_local = gmyth_tvchain_get_id( src->spawn_livetv->tvchain );
leo_sobral@2
   686
    if ( chain_id_local != NULL ) {
leo_sobral@2
   687
      src->live_chain_id = g_strdup( chain_id_local->str );
rosfran@114
   688
      GST_INFO_OBJECT( src, "\t[%s]\tLocal chain ID = %s.\n", __FUNCTION__, src->live_chain_id );      
leo_sobral@2
   689
    }
rosfran@174
   690
    //if ( src->uri_name == NULL || strlen( src->uri_name ) <= 0 )
rosfran@174
   691
    //	gmyth_context_initialize();
rosfran@114
   692
    	
rosfran@70
   693
    src->live_tv_id = src->spawn_livetv->recorder->recorder_num;
rosfran@106
   694
    GST_LOG_OBJECT( src, "[%s] LiveTV id = %d, URI path = %s.\n", __FUNCTION__, src->live_tv_id, src->uri_name ); 
leo_sobral@2
   695
  }
leo_sobral@2
   696
rosfran@174
   697
  //src->file_transfer = gmyth_file_transfer_new( src->live_tv_id, 
rosfran@174
   698
  //    g_string_new( src->uri_name ), -1, src->mythtv_version );
rosfran@174
   699
	src->file_transfer = gmyth_file_transfer_new(src->backend_info);
leo_sobral@2
   700
leo_sobral@2
   701
  if ( src->file_transfer == NULL ) {
leo_sobral@2
   702
    goto init_failed;
leo_sobral@2
   703
  }
rosfran@124
   704
  GST_INFO_OBJECT( src, "[%s] uri = %s.\n", __FUNCTION__, src->uri_name );
rosfran@174
   705
rosfran@174
   706
	ret = gmyth_file_transfer_open( src->file_transfer );
rosfran@174
   707
rosfran@174
   708
  /* sets the Playback monitor connection */
rosfran@174
   709
  //ret = gmyth_file_transfer_playback_setup( &(src->file_transfer), src->live_tv );
leo_sobral@2
   710
leo_sobral@2
   711
  if ( src->live_tv == TRUE && ret == TRUE ) {
leo_sobral@2
   712
    /* loop finished, set the max tries variable to zero again... */
leo_sobral@2
   713
    wait_to_transfer = 0;
leo_sobral@2
   714
rosfran@70
   715
    while ( wait_to_transfer++ < GMYTHTV_TRANSFER_MAX_WAITS &&
rosfran@108
   716
				( gmyth_livetv_is_recording( src->spawn_livetv ) == FALSE ) )
rosfran@110
   717
      g_usleep( 500 );
rosfran@110
   718
      
rosfran@110
   719
    /* IS_RECORDING again, just like the MythTV backend does... */
rosfran@110
   720
	  gmyth_livetv_is_recording( src->spawn_livetv );
rosfran@110
   721
	  
rosfran@124
   722
	  sleep( 3 );  
rosfran@110
   723
leo_sobral@2
   724
  }
leo_sobral@2
   725
  /* sets the FileTransfer instance connection (video/audio download) */
rosfran@114
   726
  //ret = gmyth_file_transfer_setup( &(src->file_transfer), src->live_tv );
leo_sobral@2
   727
leo_sobral@2
   728
  if ( ret == FALSE ) {
leo_sobral@2
   729
#ifndef GST_DISABLE_GST_DEBUG  
leo_sobral@2
   730
    if ( src->mythtv_msgs_dbg )
rosfran@106
   731
      GST_INFO_OBJECT( src, "MythTV FileTransfer request failed when setting up socket connection!\n" );  	  
leo_sobral@2
   732
#endif
leo_sobral@2
   733
    goto begin_req_failed;
leo_sobral@2
   734
  }
leo_sobral@2
   735
leo_sobral@2
   736
  src->content_size = src->file_transfer->filesize;
leo_sobral@2
   737
rosfran@71
   738
  src->do_start = FALSE;
rosfran@114
   739
  
rosfran@114
   740
  /* this is used for the buffer cache */
rosfran@100
   741
  src->bytes_queue = g_byte_array_sized_new( INTERNAL_BUFFER_SIZE );
rosfran@90
   742
  src->buffer_remain = 0;
rosfran@114
   743
  
rosfran@124
   744
  gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@124
   745
		gst_event_new_new_segment ( TRUE, 1.0, GST_FORMAT_TIME, 0, src->content_size, 0 ) );
rosfran@90
   746
rosfran@30
   747
done:
rosfran@30
   748
  return TRUE;
rosfran@30
   749
rosfran@30
   750
  /* ERRORS */
rosfran@30
   751
init_failed:
rosfran@30
   752
  {
rosfran@30
   753
    if (src->spawn_livetv != NULL )
rosfran@30
   754
      g_object_unref( src->spawn_livetv );
rosfran@30
   755
rosfran@30
   756
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@30
   757
	(NULL), ("Could not initialize MythTV library (%i, %s)", ret, src->uri_name));
rosfran@30
   758
    return FALSE;
rosfran@30
   759
  }
rosfran@30
   760
begin_req_failed:
rosfran@30
   761
  {
rosfran@30
   762
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@30
   763
	(NULL), ("Could not begin request sent to MythTV server (%i, %s)", ret, src->uri_name));
rosfran@30
   764
    return FALSE;
rosfran@30
   765
  }
rosfran@71
   766
change_progchain:
rosfran@71
   767
  {
rosfran@71
   768
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
rosfran@90
   769
	(NULL), ("Seek failed, go to the next program info... (%s)",
rosfran@90
   770
		 src->uri_name));
rosfran@90
   771
rosfran@90
   772
    gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@90
   773
	gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@90
   774
rosfran@90
   775
    // go to the next program chain
rosfran@90
   776
    src->unique_setup = FALSE;
rosfran@90
   777
    src->update_prog_chain = TRUE;
rosfran@90
   778
rosfran@90
   779
    gst_mythtv_src_next_program_chain( src );
rosfran@90
   780
rosfran@71
   781
    return TRUE;
rosfran@71
   782
  }
rosfran@30
   783
}
leo_sobral@2
   784
rosfran@52
   785
/* create a new socket for connecting to the next program chain */
rosfran@52
   786
static gboolean
rosfran@52
   787
gst_mythtv_src_next_program_chain ( GstMythtvSrc *src )
rosfran@52
   788
{
rosfran@52
   789
  GString *chain_id_local = NULL;
rosfran@52
   790
rosfran@52
   791
  gboolean ret = TRUE;
rosfran@61
   792
rosfran@52
   793
  if ( !src->live_tv )
rosfran@61
   794
    goto init_failed;
rosfran@70
   795
    
rosfran@70
   796
  if (src->unique_setup == FALSE) {
rosfran@70
   797
    src->unique_setup = TRUE;
rosfran@70
   798
  } else {
rosfran@70
   799
    goto done;
rosfran@70
   800
  }
rosfran@81
   801
  
rosfran@81
   802
	GST_PAD_STREAM_LOCK( GST_BASE_SRC_PAD (GST_BASE_SRC (src)) );
rosfran@61
   803
rosfran@52
   804
  if (src->file_transfer) {
rosfran@52
   805
    g_object_unref (src->file_transfer);
rosfran@52
   806
    src->file_transfer = NULL;
rosfran@52
   807
  }
rosfran@61
   808
rosfran@52
   809
  if (src->uri_name) {
rosfran@52
   810
    g_free (src->uri_name);
rosfran@52
   811
  }
rosfran@174
   812
  
rosfran@174
   813
  if ( src->backend_info == NULL )  
rosfran@174
   814
  	src->backend_info = gmyth_backend_info_new_with_uri( src->uri_name );
rosfran@61
   815
rosfran@52
   816
  if ( src->live_tv ) {
rosfran@61
   817
    if ( gmyth_livetv_next_program_chain( src->spawn_livetv ) == FALSE ) {
rosfran@106
   818
    	GST_INFO_OBJECT( src, "\n\n[%s]\t\tFailed to go to the next program chain!!!\n\n", __FUNCTION__ );
rosfran@61
   819
      ret = FALSE;
rosfran@61
   820
      goto init_failed;
rosfran@52
   821
    }
rosfran@52
   822
    /* set up the uri variable */
rosfran@52
   823
    src->uri_name = g_strdup( src->spawn_livetv->proginfo->pathname->str );
rosfran@52
   824
    chain_id_local = gmyth_tvchain_get_id( src->spawn_livetv->tvchain );
rosfran@52
   825
    if ( chain_id_local != NULL ) {
rosfran@52
   826
      src->live_chain_id = g_strdup( chain_id_local->str );
rosfran@106
   827
      GST_DEBUG_OBJECT( src, "\t[%s]\tLocal chain ID = %s.\n", __FUNCTION__, src->live_chain_id );
rosfran@52
   828
    }
rosfran@70
   829
    src->live_tv_id = src->spawn_livetv->recorder->recorder_num;
rosfran@106
   830
    GST_LOG_OBJECT( src, "[%s] LiveTV id = %d, URI path = %s.\n", __FUNCTION__, src->live_tv_id, src->uri_name );
rosfran@52
   831
  }
rosfran@52
   832
rosfran@174
   833
  src->file_transfer = gmyth_file_transfer_new(src->backend_info);
rosfran@52
   834
rosfran@52
   835
  if ( src->file_transfer == NULL ) {
rosfran@52
   836
    goto init_failed;
rosfran@52
   837
  }
rosfran@114
   838
  
rosfran@174
   839
	ret = gmyth_file_transfer_open( src->file_transfer );
rosfran@174
   840
rosfran@174
   841
  /* sets the Playback monitor connection */
rosfran@174
   842
  //ret = gmyth_file_transfer_playback_setup( &(src->file_transfer), src->live_tv );
rosfran@52
   843
rosfran@52
   844
  if ( src->live_tv == TRUE && ret == TRUE ) {
rosfran@52
   845
    /* loop finished, set the max tries variable to zero again... */
rosfran@52
   846
    wait_to_transfer = 0;
rosfran@61
   847
rosfran@61
   848
    g_usleep( 200 );
rosfran@52
   849
rosfran@52
   850
    while ( wait_to_transfer++ < GMYTHTV_TRANSFER_MAX_WAITS && 
rosfran@108
   851
				( gmyth_livetv_is_recording( src->spawn_livetv ) == FALSE ) )
rosfran@61
   852
      g_usleep( 1000 );
rosfran@52
   853
  }
rosfran@52
   854
rosfran@174
   855
  /* sets the FileTransfer instance connection (video/audio download) */
rosfran@174
   856
  //ret = gmyth_file_transfer_setup( &(src->file_transfer), src->live_tv );
rosfran@52
   857
rosfran@52
   858
  if ( ret == FALSE ) {
rosfran@52
   859
#ifndef GST_DISABLE_GST_DEBUG  
rosfran@52
   860
    if ( src->mythtv_msgs_dbg )
rosfran@106
   861
      GST_ERROR_OBJECT( src, "MythTV FileTransfer request failed when setting up socket connection!\n" );  	  
rosfran@52
   862
#endif
rosfran@52
   863
    goto begin_req_failed;
rosfran@52
   864
  }
rosfran@61
   865
  src->content_size_last = src->content_size;
rosfran@61
   866
rosfran@61
   867
  src->content_size = src->file_transfer->filesize;
rosfran@87
   868
  if ( src->live_tv ) {
rosfran@87
   869
  	wait_to_transfer = 0;
rosfran@87
   870
	  while ( wait_to_transfer++ < GMYTHTV_TRANSFER_MAX_WAITS && src->content_size < GMYTHTV_TRANSFER_MAX_BUFFER )
rosfran@87
   871
	    src->content_size = gst_mythtv_src_get_position( src );
rosfran@87
   872
  }
rosfran@63
   873
rosfran@81
   874
  src->read_offset = 0;  
rosfran@70
   875
  
rosfran@100
   876
  if ( src->bytes_queue != NULL ) {
rosfran@100
   877
  	g_byte_array_free( src->bytes_queue, TRUE );
rosfran@100
   878
  }
rosfran@100
   879
  
rosfran@100
   880
  src->bytes_queue = g_byte_array_sized_new( INTERNAL_BUFFER_SIZE );
rosfran@100
   881
  
rosfran@114
   882
  //gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@114
   883
	//		gst_event_new_new_segment ( TRUE, 1.0, GST_FORMAT_TIME, 0, src->content_size, 0 ) );
rosfran@114
   884
  
rosfran@70
   885
done:
rosfran@81
   886
	src->update_prog_chain = FALSE;
rosfran@81
   887
	
rosfran@81
   888
	GST_PAD_STREAM_UNLOCK( GST_BASE_SRC_PAD (GST_BASE_SRC (src)) );
rosfran@81
   889
	
rosfran@52
   890
  return TRUE;
rosfran@52
   891
rosfran@52
   892
  /* ERRORS */
rosfran@52
   893
init_failed:
rosfran@52
   894
  {
rosfran@52
   895
    if (src->spawn_livetv != NULL )
rosfran@52
   896
      g_object_unref( src->spawn_livetv );
rosfran@52
   897
rosfran@52
   898
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@52
   899
	(NULL), ("Could not initialize MythTV library (%i, %s)", ret, src->uri_name));
rosfran@52
   900
    return FALSE;
rosfran@52
   901
  }
rosfran@52
   902
begin_req_failed:
rosfran@52
   903
  {
rosfran@52
   904
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
rosfran@52
   905
	(NULL), ("Could not begin request sent to MythTV server (%i, %s)", ret, src->uri_name));
rosfran@52
   906
    return FALSE;
rosfran@52
   907
  }
rosfran@61
   908
rosfran@52
   909
}
rosfran@52
   910
rosfran@30
   911
static gboolean
leo_sobral@2
   912
gst_mythtv_src_get_size (GstBaseSrc * bsrc, guint64 * size)
leo_sobral@2
   913
{
rosfran@31
   914
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
rosfran@30
   915
  gboolean ret = TRUE;
rosfran@106
   916
  GST_LOG_OBJECT( src, "[%s] Differs from previous content size: %d (max.: %d)\n", __FUNCTION__, 
rosfran@63
   917
  			abs( src->content_size - src->prev_content_size ), GMYTHTV_TRANSFER_MAX_BUFFER );
rosfran@98
   918
  			
rosfran@100
   919
  if ( src->live_tv ) {
rosfran@98
   920
  	ret = FALSE;
rosfran@100
   921
	} else if ( src->live_tv && src->enable_timing_position && ( abs( src->content_size - src->bytes_read ) < 
rosfran@70
   922
				GMYTHTV_TRANSFER_MAX_BUFFER ) ) {
rosfran@70
   923
    
rosfran@114
   924
    gint64 new_offset = gmyth_recorder_get_file_position( src->spawn_livetv->recorder );
rosfran@70
   925
    if ( new_offset > 0 && new_offset > src->content_size ) {
rosfran@70
   926
			src->content_size = new_offset;
rosfran@70
   927
    } else if ( new_offset < src->content_size ) {
rosfran@70
   928
			src->update_prog_chain = TRUE;
rosfran@70
   929
	  }
rosfran@61
   930
leo_sobral@2
   931
  }
leo_sobral@2
   932
leo_sobral@2
   933
  *size = src->content_size;
rosfran@106
   934
  GST_LOG_OBJECT( src, "[%s] Content size = %lld\n", __FUNCTION__, src->content_size );
rosfran@87
   935
  
rosfran@30
   936
  return ret;
rosfran@30
   937
leo_sobral@2
   938
}
leo_sobral@2
   939
leo_sobral@2
   940
/* close the socket and associated resources
leo_sobral@2
   941
 * used both to recover from errors and go to NULL state */
rosfran@52
   942
static gboolean
leo_sobral@2
   943
gst_mythtv_src_stop (GstBaseSrc * bsrc)
leo_sobral@2
   944
{
leo_sobral@2
   945
  GstMythtvSrc *src;
leo_sobral@2
   946
leo_sobral@2
   947
  src = GST_MYTHTV_SRC (bsrc);
leo_sobral@2
   948
leo_sobral@2
   949
  if (src->uri_name) {
leo_sobral@2
   950
    g_free (src->uri_name);
leo_sobral@2
   951
    src->uri_name = NULL;
leo_sobral@2
   952
  }
leo_sobral@2
   953
leo_sobral@2
   954
  if (src->mythtv_caps) {
leo_sobral@2
   955
    gst_caps_unref (src->mythtv_caps);
leo_sobral@2
   956
    src->mythtv_caps = NULL;
leo_sobral@2
   957
  }
leo_sobral@2
   958
leo_sobral@2
   959
  src->eos = FALSE;
leo_sobral@2
   960
leo_sobral@2
   961
  return TRUE;
leo_sobral@2
   962
}
leo_sobral@2
   963
rosfran@30
   964
static gboolean
leo_sobral@2
   965
gst_mythtv_src_handle_event (GstPad * pad, GstEvent * event)
leo_sobral@2
   966
{
leo_sobral@2
   967
  GstMythtvSrc *src = GST_MYTHTV_SRC (GST_PAD_PARENT (pad));
rosfran@52
   968
  gint64 cont_size = 0;
rosfran@90
   969
  gboolean ret = FALSE;
leo_sobral@2
   970
leo_sobral@2
   971
  switch (GST_EVENT_TYPE (event)) {
rosfran@30
   972
    case GST_EVENT_EOS:
rosfran@106
   973
      GST_WARNING_OBJECT( src, "[%s] Got EOS event!!!\n", __FUNCTION__ );
rosfran@61
   974
rosfran@61
   975
      if ( src->live_tv ) {
rosfran@61
   976
	cont_size = gst_mythtv_src_get_position (src);
rosfran@61
   977
	if ( cont_size > src->content_size ) {
rosfran@61
   978
	  src->content_size = cont_size;
rosfran@61
   979
	  src->eos = FALSE;
rosfran@61
   980
	} else {
rosfran@61
   981
	  src->eos = TRUE;
rosfran@61
   982
	  gst_element_set_state ( GST_ELEMENT (src), GST_STATE_NULL );
rosfran@61
   983
	  gst_element_set_locked_state ( GST_ELEMENT (src), FALSE );
rosfran@61
   984
	}
rosfran@114
   985
      }
rosfran@30
   986
      break;
leo_sobral@2
   987
    default:
rosfran@90
   988
      ret = gst_pad_event_default (pad, event);
leo_sobral@2
   989
  }
leo_sobral@2
   990
rosfran@90
   991
  return ret;
leo_sobral@2
   992
}
leo_sobral@2
   993
rosfran@30
   994
static gboolean
rosfran@30
   995
gst_mythtv_src_is_seekable( GstBaseSrc *push_src )
leo_sobral@2
   996
{
rosfran@100
   997
  return TRUE;
leo_sobral@2
   998
}
rosfran@87
   999
rosfran@87
  1000
static gboolean
rosfran@87
  1001
gst_mythtv_src_handle_query (GstPad * pad, GstQuery * query)
rosfran@87
  1002
{
rosfran@87
  1003
  gboolean res = FALSE;
rosfran@87
  1004
  GstMythtvSrc *myth = GST_MYTHTV_SRC (gst_pad_get_parent (pad));
rosfran@114
  1005
  GstFormat formt;
rosfran@87
  1006
rosfran@87
  1007
  switch (GST_QUERY_TYPE (query)) {
rosfran@87
  1008
    case GST_QUERY_POSITION:
rosfran@114
  1009
    {
rosfran@114
  1010
    	gint64 pos = -1;
rosfran@114
  1011
      gst_query_parse_position (query, &formt, &pos );
rosfran@87
  1012
      res = TRUE;
rosfran@124
  1013
      if ( formt == GST_FORMAT_BYTES ) {
rosfran@124
  1014
      	gst_query_set_position (query, formt, pos = myth->read_offset );
rosfran@114
  1015
      	GST_DEBUG_OBJECT (myth, "POS %lld (BYTES).\n", pos );
rosfran@124
  1016
      } else if ( formt == GST_FORMAT_TIME ) {
rosfran@114
  1017
      	GST_DEBUG_OBJECT (myth, "POS %lld (TIME).\n", pos );
rosfran@124
  1018
      	res = gst_pad_query_default(pad, query);
rosfran@124
  1019
      }
rosfran@87
  1020
      break;
rosfran@114
  1021
    }
rosfran@87
  1022
    case GST_QUERY_DURATION:
rosfran@114
  1023
    {
rosfran@87
  1024
#if 0
rosfran@87
  1025
      if (myth->duration != 0) {
rosfran@87
  1026
	gint64 total;
rosfran@87
  1027
	gint64 fps;
rosfran@87
  1028
rosfran@87
  1029
	fps = nuv->h->i_fpsn / nuv->h->i_fpsd;
rosfran@87
  1030
	total = gst_util_uint64_scale_int (GST_SECOND, nuv->h->i_video_blocks, fps);
rosfran@114
  1031
      }
rosfran@81
  1032
#endif
rosfran@114
  1033
	gint64 dur = -1;
rosfran@124
  1034
	gst_query_parse_duration ( query, &formt, &dur );	
rosfran@124
  1035
  if ( formt == GST_FORMAT_BYTES ) {
rosfran@124
  1036
  	gst_query_set_duration (query, formt, dur = myth->content_size);
rosfran@114
  1037
  	GST_DEBUG_OBJECT (myth, "DURATION %lld (BYTES).\n", dur );
rosfran@124
  1038
  } else if ( formt == GST_FORMAT_TIME ) {
rosfran@114
  1039
  	GST_DEBUG_OBJECT (myth, "DURATION %lld (TIME).\n", dur );
rosfran@124
  1040
  	gst_query_ref(query);
rosfran@124
  1041
  	res = gst_pad_query_default(pad, query);  	
rosfran@124
  1042
  }
rosfran@114
  1043
	res = TRUE;
rosfran@70
  1044
      break;
rosfran@114
  1045
    }
rosfran@70
  1046
    default:
rosfran@114
  1047
    {
rosfran@124
  1048
      res = gst_pad_query_default(pad, query);
rosfran@87
  1049
      break;
rosfran@114
  1050
    }
rosfran@70
  1051
  }
rosfran@61
  1052
rosfran@87
  1053
  gst_object_unref (myth);
rosfran@61
  1054
rosfran@70
  1055
  return res;
rosfran@61
  1056
}
rosfran@61
  1057
rosfran@52
  1058
static GstStateChangeReturn
rosfran@52
  1059
gst_mythtv_src_change_state (GstElement * element, GstStateChange transition)
rosfran@52
  1060
{
rosfran@87
  1061
  GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;//GST_STATE_CHANGE_NO_PREROLL;
rosfran@52
  1062
  GstMythtvSrc *src = GST_MYTHTV_SRC (element);
rosfran@52
  1063
rosfran@52
  1064
  switch (transition) {
rosfran@52
  1065
    case GST_STATE_CHANGE_NULL_TO_READY:
rosfran@87
  1066
      //src->do_start = TRUE;
rosfran@87
  1067
      //src->unique_setup = FALSE;
rosfran@52
  1068
      break;
rosfran@52
  1069
    case GST_STATE_CHANGE_READY_TO_PAUSED:
rosfran@124
  1070
    	GST_INFO_OBJECT( src, "[%s] READY to PAUSED called!\n", __FUNCTION__ );
rosfran@124
  1071
    	break;
rosfran@52
  1072
    case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
rosfran@124
  1073
    	GST_INFO_OBJECT( src, "[%s] PAUSED to PLAYING called!\n", __FUNCTION__ );
rosfran@124
  1074
      if ( src->live_tv ) {
rosfran@124
  1075
	      if ( !gmyth_recorder_send_frontend_ready_command( src->spawn_livetv->recorder ) )
rosfran@124
  1076
	      	GST_WARNING_OBJECT( src, "[%s] Couldn't send the FRONTEND_READY message to the backend!", __FUNCTION__ );
rosfran@124
  1077
	      else
rosfran@124
  1078
	      	GST_DEBUG_OBJECT( src, "[%s] Message FRONTEND_READY was sent to the backend!", __FUNCTION__ );
rosfran@124
  1079
      }
rosfran@124
  1080
rosfran@52
  1081
      break;
rosfran@52
  1082
    default:
rosfran@52
  1083
      break;
rosfran@52
  1084
  }
rosfran@61
  1085
rosfran@61
  1086
  ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
rosfran@52
  1087
  if (ret == GST_STATE_CHANGE_FAILURE)
rosfran@52
  1088
    return ret;
rosfran@52
  1089
rosfran@52
  1090
  switch (transition) {
rosfran@52
  1091
    case GST_STATE_CHANGE_READY_TO_NULL:
rosfran@106
  1092
      GST_INFO_OBJECT( src, "[%s] READY to NULL called!\n", __FUNCTION__ );
rosfran@52
  1093
      break;
rosfran@61
  1094
    case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
rosfran@106
  1095
      GST_INFO_OBJECT( src, "[%s] PLAYING to PAUSED called!\n", __FUNCTION__ );
rosfran@52
  1096
    case GST_STATE_CHANGE_PAUSED_TO_READY:
rosfran@106
  1097
      GST_INFO_OBJECT( src, "[%s] PAUSED to READY called!\n", __FUNCTION__ );
rosfran@124
  1098
      if ( src->live_tv ) {
rosfran@110
  1099
	      if ( !gmyth_recorder_send_frontend_ready_command( src->spawn_livetv->recorder ) )
rosfran@110
  1100
	      	GST_WARNING_OBJECT( src, "[%s] Couldn't send the FRONTEND_READY message to the backend!", __FUNCTION__ );
rosfran@110
  1101
	      else
rosfran@110
  1102
	      	GST_DEBUG_OBJECT( src, "[%s] Message FRONTEND_READY was sent to the backend!", __FUNCTION__ );
rosfran@81
  1103
      	
rosfran@98
  1104
      /*
rosfran@98
  1105
      	
rosfran@81
  1106
  			gst_pad_push_event ( GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
rosfran@81
  1107
      			gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0 ) );
rosfran@81
  1108
rosfran@70
  1109
				src->read_offset = 0;
rosfran@70
  1110
				src->bytes_read = 0;
rosfran@81
  1111
				src->unique_setup = FALSE;				
rosfran@70
  1112
				gst_mythtv_src_next_program_chain( src );
rosfran@98
  1113
				*/
rosfran@61
  1114
      }
rosfran@98
  1115
      
rosfran@61
  1116
      break;
rosfran@52
  1117
    default:
rosfran@52
  1118
      break;
rosfran@52
  1119
  }
rosfran@52
  1120
rosfran@52
  1121
  return ret;
rosfran@52
  1122
}
rosfran@52
  1123
rosfran@30
  1124
static void
leo_sobral@2
  1125
gst_mythtv_src_set_property (GObject * object, guint prop_id,
leo_sobral@2
  1126
    const GValue * value, GParamSpec * pspec)
leo_sobral@2
  1127
{
leo_sobral@2
  1128
  GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC (object);
leo_sobral@2
  1129
leo_sobral@2
  1130
  GST_OBJECT_LOCK (mythtvsrc);
leo_sobral@2
  1131
  switch (prop_id) {
leo_sobral@2
  1132
    case PROP_URI:
leo_sobral@2
  1133
    case PROP_LOCATION:
leo_sobral@2
  1134
      {
leo_sobral@2
  1135
	if (!g_value_get_string (value)) {
leo_sobral@2
  1136
	  GST_WARNING ("location property cannot be NULL");
leo_sobral@2
  1137
	  goto done;
leo_sobral@2
  1138
	}
leo_sobral@2
  1139
leo_sobral@2
  1140
	if (mythtvsrc->uri_name != NULL) {
leo_sobral@2
  1141
	  g_free (mythtvsrc->uri_name);
leo_sobral@2
  1142
	  mythtvsrc->uri_name = NULL;
leo_sobral@2
  1143
	}
leo_sobral@2
  1144
	mythtvsrc->uri_name = g_value_dup_string (value);
leo_sobral@2
  1145
leo_sobral@2
  1146
	break;
leo_sobral@2
  1147
      }
leo_sobral@2
  1148
#ifndef GST_DISABLE_GST_DEBUG
rosfran@40
  1149
    case PROP_GMYTHTV_DBG:
leo_sobral@2
  1150
      {
leo_sobral@2
  1151
	mythtvsrc->mythtv_msgs_dbg = g_value_get_boolean (value);
leo_sobral@2
  1152
	break;
leo_sobral@2
  1153
      }
leo_sobral@2
  1154
#endif
rosfran@40
  1155
    case PROP_GMYTHTV_VERSION:
leo_sobral@2
  1156
      {
leo_sobral@2
  1157
	mythtvsrc->mythtv_version = g_value_get_int (value);
leo_sobral@2
  1158
	break;
leo_sobral@2
  1159
      }
rosfran@40
  1160
    case PROP_GMYTHTV_LIVEID:
leo_sobral@2
  1161
      {
leo_sobral@2
  1162
	mythtvsrc->live_tv_id = g_value_get_int (value);
leo_sobral@2
  1163
	break;
leo_sobral@2
  1164
      }
rosfran@40
  1165
    case PROP_GMYTHTV_LIVE:
leo_sobral@2
  1166
      {
leo_sobral@2
  1167
	mythtvsrc->live_tv = g_value_get_boolean (value);
leo_sobral@2
  1168
	break;
leo_sobral@2
  1169
      }
rosfran@52
  1170
    case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
rosfran@52
  1171
      {
rosfran@52
  1172
	mythtvsrc->enable_timing_position = g_value_get_boolean (value);
rosfran@52
  1173
	break;
rosfran@52
  1174
      }      
rosfran@40
  1175
    case PROP_GMYTHTV_LIVE_CHAINID:
leo_sobral@2
  1176
      {
leo_sobral@2
  1177
	if (!g_value_get_string (value)) {
leo_sobral@2
  1178
	  GST_WARNING ("MythTV Live chainid property cannot be NULL");
leo_sobral@2
  1179
	  goto done;
leo_sobral@2
  1180
	}
leo_sobral@2
  1181
leo_sobral@2
  1182
	if (mythtvsrc->live_chain_id != NULL) {
leo_sobral@2
  1183
	  g_free (mythtvsrc->live_chain_id);
leo_sobral@2
  1184
	  mythtvsrc->live_chain_id = NULL;
leo_sobral@2
  1185
	}
leo_sobral@2
  1186
	mythtvsrc->live_chain_id = g_value_dup_string (value);
leo_sobral@2
  1187
	break;
leo_sobral@2
  1188
      }
rosfran@70
  1189
    case PROP_GMYTHTV_CHANNEL_NUM:
rosfran@70
  1190
      {
rosfran@70
  1191
	mythtvsrc->channel_num = g_value_get_int (value);
rosfran@70
  1192
	break;
rosfran@70
  1193
      }
leo_sobral@2
  1194
    default:
leo_sobral@2
  1195
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
leo_sobral@2
  1196
      break;
leo_sobral@2
  1197
  }
leo_sobral@2
  1198
  GST_OBJECT_UNLOCK (mythtvsrc);
leo_sobral@2
  1199
done:
leo_sobral@2
  1200
  return;
leo_sobral@2
  1201
}
leo_sobral@2
  1202
rosfran@100
  1203
static void
leo_sobral@2
  1204
gst_mythtv_src_get_property (GObject * object, guint prop_id,
leo_sobral@2
  1205
    GValue * value, GParamSpec * pspec)
leo_sobral@2
  1206
{
leo_sobral@2
  1207
  GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC (object);
leo_sobral@2
  1208
leo_sobral@2
  1209
  GST_OBJECT_LOCK (mythtvsrc);
leo_sobral@2
  1210
  switch (prop_id) {
leo_sobral@2
  1211
    case PROP_URI:
leo_sobral@2
  1212
    case PROP_LOCATION:
leo_sobral@2
  1213
      {
leo_sobral@2
  1214
	gchar *str = g_strdup( "" );
leo_sobral@2
  1215
leo_sobral@2
  1216
	if ( mythtvsrc->uri_name == NULL ) {
leo_sobral@2
  1217
	  g_free (mythtvsrc->uri_name);
leo_sobral@2
  1218
	  mythtvsrc->uri_name = NULL;
leo_sobral@2
  1219
	} else {
leo_sobral@2
  1220
	  str = g_strdup( mythtvsrc->uri_name );
leo_sobral@2
  1221
	}
leo_sobral@2
  1222
	g_value_set_string ( value, str );
leo_sobral@2
  1223
	break;
leo_sobral@2
  1224
      }
leo_sobral@2
  1225
#ifndef GST_DISABLE_GST_DEBUG
rosfran@40
  1226
    case PROP_GMYTHTV_DBG:
leo_sobral@2
  1227
      g_value_set_boolean ( value, mythtvsrc->mythtv_msgs_dbg );
leo_sobral@2
  1228
      break;
leo_sobral@2
  1229
#endif
rosfran@40
  1230
    case PROP_GMYTHTV_VERSION:
leo_sobral@2
  1231
      {
leo_sobral@2
  1232
	g_value_set_int ( value, mythtvsrc->mythtv_version );
leo_sobral@2
  1233
	break;
leo_sobral@2
  1234
      }
rosfran@40
  1235
    case PROP_GMYTHTV_LIVEID:
leo_sobral@2
  1236
      {
leo_sobral@2
  1237
	g_value_set_int ( value, mythtvsrc->live_tv_id );
leo_sobral@2
  1238
	break;
leo_sobral@2
  1239
      }
rosfran@40
  1240
    case PROP_GMYTHTV_LIVE:
leo_sobral@2
  1241
      g_value_set_boolean ( value, mythtvsrc->live_tv );
leo_sobral@2
  1242
      break;
rosfran@52
  1243
    case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
rosfran@52
  1244
      g_value_set_boolean ( value, mythtvsrc->enable_timing_position );
rosfran@52
  1245
      break;
rosfran@40
  1246
    case PROP_GMYTHTV_LIVE_CHAINID:
leo_sobral@2
  1247
      {
leo_sobral@2
  1248
	gchar *str = g_strdup( "" );
leo_sobral@2
  1249
leo_sobral@2
  1250
	if ( mythtvsrc->live_chain_id == NULL ) {
leo_sobral@2
  1251
	  g_free (mythtvsrc->live_chain_id);
leo_sobral@2
  1252
	  mythtvsrc->live_chain_id = NULL;
leo_sobral@2
  1253
	} else {
leo_sobral@2
  1254
	  str = g_strdup( mythtvsrc->live_chain_id );
leo_sobral@2
  1255
	}
leo_sobral@2
  1256
	g_value_set_string ( value, str );
leo_sobral@2
  1257
	break;
leo_sobral@2
  1258
      }
rosfran@70
  1259
    case PROP_GMYTHTV_CHANNEL_NUM:
rosfran@70
  1260
      {
rosfran@70
  1261
	g_value_set_int ( value, mythtvsrc->channel_num );
rosfran@70
  1262
	break;
rosfran@70
  1263
      }
leo_sobral@2
  1264
    default:
leo_sobral@2
  1265
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
leo_sobral@2
  1266
      break;
leo_sobral@2
  1267
  }
leo_sobral@2
  1268
  GST_OBJECT_UNLOCK (mythtvsrc);
leo_sobral@2
  1269
}
leo_sobral@2
  1270
leo_sobral@2
  1271
/* entry point to initialize the plug-in
leo_sobral@2
  1272
 * initialize the plug-in itself
leo_sobral@2
  1273
 * register the element factories and pad templates
leo_sobral@2
  1274
 * register the features
leo_sobral@2
  1275
 */
rosfran@40
  1276
static gboolean
leo_sobral@2
  1277
plugin_init (GstPlugin * plugin)
leo_sobral@2
  1278
{
leo_sobral@2
  1279
  return gst_element_register (plugin, "mythtvsrc", GST_RANK_NONE,
leo_sobral@2
  1280
      GST_TYPE_MYTHTV_SRC);
leo_sobral@2
  1281
}
leo_sobral@2
  1282
leo_sobral@2
  1283
/* this is the structure that gst-register looks for
leo_sobral@2
  1284
 * so keep the name plugin_desc, or you cannot get your plug-in registered */
leo_sobral@2
  1285
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
leo_sobral@2
  1286
    GST_VERSION_MINOR,
leo_sobral@2
  1287
    "mythtv",
leo_sobral@2
  1288
    "lib MythTV src",
leo_sobral@2
  1289
    plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
leo_sobral@2
  1290
leo_sobral@2
  1291
leo_sobral@2
  1292
/*** GSTURIHANDLER INTERFACE *************************************************/
leo_sobral@2
  1293
  static guint 
leo_sobral@2
  1294
gst_mythtv_src_uri_get_type (void)
leo_sobral@2
  1295
{
leo_sobral@2
  1296
  return GST_URI_SRC;
leo_sobral@2
  1297
}
leo_sobral@2
  1298
leo_sobral@2
  1299
  static gchar **
leo_sobral@2
  1300
gst_mythtv_src_uri_get_protocols (void)
leo_sobral@2
  1301
{
leo_sobral@2
  1302
  static gchar *protocols[] = { "myth", "myths", NULL };
leo_sobral@2
  1303
leo_sobral@2
  1304
  return protocols;
leo_sobral@2
  1305
}
leo_sobral@2
  1306
leo_sobral@2
  1307
  static const gchar *
leo_sobral@2
  1308
gst_mythtv_src_uri_get_uri (GstURIHandler * handler)
leo_sobral@2
  1309
{
leo_sobral@2
  1310
  GstMythtvSrc *src = GST_MYTHTV_SRC (handler);
leo_sobral@2
  1311
leo_sobral@2
  1312
  return src->uri_name;
leo_sobral@2
  1313
}
leo_sobral@2
  1314
leo_sobral@2
  1315
  static gboolean
leo_sobral@2
  1316
gst_mythtv_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
leo_sobral@2
  1317
{
leo_sobral@2
  1318
  GstMythtvSrc *src = GST_MYTHTV_SRC (handler);
leo_sobral@2
  1319
leo_sobral@2
  1320
  gchar *protocol;
leo_sobral@2
  1321
leo_sobral@2
  1322
  protocol = gst_uri_get_protocol (uri);
leo_sobral@2
  1323
  if ((strcmp (protocol, "myth") != 0) && (strcmp (protocol, "myths") != 0)) {
leo_sobral@2
  1324
    g_free (protocol);
leo_sobral@2
  1325
    return FALSE;
leo_sobral@2
  1326
  }
leo_sobral@2
  1327
  g_free (protocol);
leo_sobral@2
  1328
  g_object_set (src, "location", uri, NULL);
leo_sobral@2
  1329
leo_sobral@2
  1330
  return TRUE;
leo_sobral@2
  1331
}
leo_sobral@2
  1332
rosfran@87
  1333
 static void
leo_sobral@2
  1334
gst_mythtv_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
leo_sobral@2
  1335
{
leo_sobral@2
  1336
  GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
leo_sobral@2
  1337
leo_sobral@2
  1338
  iface->get_type = gst_mythtv_src_uri_get_type;
leo_sobral@2
  1339
  iface->get_protocols = gst_mythtv_src_uri_get_protocols;
leo_sobral@2
  1340
  iface->get_uri = gst_mythtv_src_uri_get_uri;
leo_sobral@2
  1341
  iface->set_uri = gst_mythtv_src_uri_set_uri;
leo_sobral@2
  1342
}
leo_sobral@2
  1343
leo_sobral@2
  1344
  void
leo_sobral@2
  1345
size_header_handler (void *userdata, const char *value)
leo_sobral@2
  1346
{
leo_sobral@2
  1347
  GstMythtvSrc *src = GST_MYTHTV_SRC (userdata);
leo_sobral@2
  1348
leo_sobral@2
  1349
  //src->content_size = g_ascii_strtoull (value, NULL, 10);
leo_sobral@2
  1350
leo_sobral@2
  1351
  GST_DEBUG_OBJECT (src, "content size = %lld bytes", src->content_size);
leo_sobral@2
  1352
}