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