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