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