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