gst-gmyth/mythsrc/gstmythtvsrc.c
author morphbr
Thu May 17 22:44:17 2007 +0100 (2007-05-17)
branchtrunk
changeset 688 951db7024071
parent 674 2af89a257a86
child 692 d9c6cce2b167
permissions -rwxr-xr-x
[svn r694] * GMyth-Streamer
- Bug fix regarding avi extension
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@679
   335
  g_debug ("CLEAR");
renatofilho@679
   336
renatofilho@608
   337
  if (mythtv_src->spawn_livetv) {
renatofilho@608
   338
    g_object_unref (mythtv_src->spawn_livetv);
renatofilho@608
   339
    mythtv_src->spawn_livetv = NULL;
renatofilho@608
   340
  }
renatofilho@608
   341
renatofilho@608
   342
  if (mythtv_src->file) {
renatofilho@608
   343
    g_object_unref (mythtv_src->file);
renatofilho@608
   344
    mythtv_src->file = NULL;
renatofilho@608
   345
  }
renatofilho@608
   346
renatofilho@608
   347
  if (mythtv_src->backend_info) {
renatofilho@608
   348
    g_object_unref (mythtv_src->backend_info);
renatofilho@608
   349
    mythtv_src->backend_info = NULL;
renatofilho@608
   350
  }
renatofilho@608
   351
renatofilho@608
   352
  if (mythtv_src->bytes_queue) {
renatofilho@608
   353
    g_byte_array_free (mythtv_src->bytes_queue, TRUE);
renatofilho@608
   354
    mythtv_src->bytes_queue = NULL;
renatofilho@608
   355
  }
renatofilho@679
   356
renatofilho@679
   357
renatofilho@679
   358
  g_debug ("CLEAR END");
renatofilho@608
   359
  
renatofilho@608
   360
}
renatofilho@608
   361
renatofilho@608
   362
static void
renatofilho@608
   363
gst_mythtv_src_finalize (GObject * gobject)
renatofilho@608
   364
{
renatofilho@608
   365
  GstMythtvSrc *this = GST_MYTHTV_SRC (gobject);
renatofilho@608
   366
renatofilho@608
   367
  gst_mythtv_src_clear (this);
renatofilho@608
   368
renatofilho@608
   369
  if (this->uri_name) {
renatofilho@608
   370
    g_free (this->uri_name);
renatofilho@608
   371
    this->uri_name = NULL;
renatofilho@608
   372
  }
renatofilho@608
   373
renatofilho@608
   374
  if (this->user_agent) {
renatofilho@608
   375
    g_free (this->user_agent);
renatofilho@608
   376
    this->user_agent = NULL;
renatofilho@608
   377
  }
renatofilho@608
   378
renatofilho@608
   379
  G_OBJECT_CLASS (parent_class)->finalize (gobject);
renatofilho@608
   380
}
renatofilho@608
   381
renatofilho@608
   382
static GMythFileReadResult
renatofilho@608
   383
do_read_request_response (GstMythtvSrc * src, guint size, GByteArray *data_ptr)
renatofilho@608
   384
{
renatofilho@608
   385
  gint read = 0;
renatofilho@608
   386
  guint sizetoread = size;
renatofilho@608
   387
  gint max_iters = GMYTHTV_TRANSFER_MAX_RESENDS;
renatofilho@608
   388
  GMythFileReadResult result;
renatofilho@608
   389
renatofilho@608
   390
  GST_LOG_OBJECT (src, "Starting: Reading %d bytes...", sizetoread);
renatofilho@608
   391
renatofilho@608
   392
  /* Loop sending the Myth File Transfer request:
renatofilho@608
   393
   * Retry whilst authentication fails and we supply it. */
renatofilho@608
   394
renatofilho@608
   395
  while (sizetoread == size && --max_iters > 0) {
renatofilho@608
   396
    /* if ( gmyth_backend_info_is_local_file(src->backend_info) ) */
renatofilho@608
   397
    if ( IS_GMYTH_FILE_LOCAL(src->file) )
renatofilho@608
   398
      result = gmyth_file_local_read ( GMYTH_FILE_LOCAL(src->file),
renatofilho@608
   399
          data_ptr, sizetoread, src->live_tv);      
renatofilho@608
   400
    else if ( IS_GMYTH_FILE_TRANSFER(src->file) )
renatofilho@608
   401
      result = gmyth_file_transfer_read ( GMYTH_FILE_TRANSFER(src->file),
renatofilho@608
   402
          data_ptr, sizetoread, src->live_tv);
renatofilho@608
   403
renatofilho@608
   404
    if (data_ptr->len > 0) {
renatofilho@608
   405
      read += data_ptr->len;
renatofilho@608
   406
      sizetoread -= data_ptr->len;
renatofilho@608
   407
    } else if (data_ptr->len < 0) {
renatofilho@608
   408
      if (src->live_tv == FALSE) {
renatofilho@608
   409
        result = GMYTH_FILE_READ_EOF;
renatofilho@608
   410
        goto eos;
renatofilho@608
   411
      } else {
renatofilho@608
   412
        if (result == GMYTH_FILE_READ_ERROR) {  /* -314 */
renatofilho@608
   413
          GST_INFO_OBJECT (src, "[LiveTV] FileTransfer READ_ERROR!");
renatofilho@608
   414
          goto done;
renatofilho@608
   415
        } else if (result == GMYTH_FILE_READ_NEXT_PROG_CHAIN) {      /* -315 */
renatofilho@608
   416
          GST_INFO_OBJECT (src,
renatofilho@608
   417
              "[LiveTV] FileTransfer - Go to the next program chain!");
renatofilho@608
   418
          continue;
renatofilho@608
   419
        }
renatofilho@608
   420
        goto done;
renatofilho@608
   421
      }
renatofilho@608
   422
renatofilho@608
   423
    } else if (data_ptr->len == 0)
renatofilho@608
   424
      goto done;
renatofilho@608
   425
renatofilho@608
   426
    if (read == sizetoread)
renatofilho@608
   427
      goto done;
renatofilho@608
   428
  }
renatofilho@608
   429
renatofilho@608
   430
  if ((read < 0 && !src->live_tv) || max_iters == 0){
renatofilho@608
   431
    result = GMYTH_FILE_READ_EOF;
renatofilho@608
   432
    goto eos;
renatofilho@608
   433
  }
renatofilho@608
   434
renatofilho@608
   435
  goto done;
renatofilho@608
   436
renatofilho@608
   437
eos:
renatofilho@608
   438
  src->eos = TRUE;
renatofilho@608
   439
renatofilho@608
   440
done:
renatofilho@608
   441
  return result;
renatofilho@608
   442
}
renatofilho@608
   443
renatofilho@608
   444
static GstFlowReturn
renatofilho@608
   445
gst_mythtv_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
renatofilho@608
   446
{
renatofilho@608
   447
  GstMythtvSrc *src;
renatofilho@608
   448
  GstFlowReturn ret = GST_FLOW_OK;
renatofilho@608
   449
  guint buffer_size_inter = 0;
renatofilho@608
   450
renatofilho@608
   451
  src = GST_MYTHTV_SRC (psrc);
renatofilho@608
   452
renatofilho@608
   453
  /* The caller should know the number of bytes and not read beyond EOS. */
renatofilho@608
   454
  if (G_UNLIKELY (src->eos))
renatofilho@608
   455
    goto eos;
renatofilho@608
   456
  if (G_UNLIKELY (src->update_prog_chain))
renatofilho@608
   457
    goto change_progchain;
renatofilho@608
   458
renatofilho@674
   459
  /*
renatofilho@608
   460
  GST_DEBUG_OBJECT (src, "offset = %" G_GUINT64_FORMAT ", size = %d...",
renatofilho@608
   461
      src->read_offset, MAX_READ_SIZE);
renatofilho@608
   462
renatofilho@608
   463
  GST_DEBUG_OBJECT (src, "Create: buffer_remain: %d, buffer_size = %d.",
renatofilho@608
   464
      (gint) src->buffer_remain, src->bytes_queue->len);
renatofilho@674
   465
  */	  
renatofilho@608
   466
renatofilho@608
   467
program_chain_changed:
renatofilho@608
   468
  /* just get from the byte array, no network effort... */
renatofilho@608
   469
  if ((src->buffer_remain = src->bytes_queue->len) < MAX_READ_SIZE) {
renatofilho@608
   470
  	GByteArray *buffer;
renatofilho@608
   471
    GMythFileReadResult result = GMYTH_FILE_READ_OK;
renatofilho@608
   472
  	
renatofilho@608
   473
    buffer = NULL;
renatofilho@608
   474
    buffer_size_inter = (INTERNAL_BUFFER_SIZE - src->buffer_remain);
renatofilho@608
   475
renatofilho@608
   476
    if (buffer_size_inter > REQUEST_MAX_SIZE)
renatofilho@608
   477
      buffer_size_inter = REQUEST_MAX_SIZE;
renatofilho@608
   478
renatofilho@608
   479
    buffer = g_byte_array_new ();
renatofilho@608
   480
renatofilho@608
   481
    result = do_read_request_response (src, buffer_size_inter, buffer);
renatofilho@608
   482
renatofilho@608
   483
    if (G_UNLIKELY (buffer->len < 0)) {
renatofilho@608
   484
    	
renatofilho@608
   485
    	if (buffer != NULL) {
renatofilho@608
   486
	      g_byte_array_free (buffer, TRUE);
renatofilho@608
   487
	      buffer = NULL;
renatofilho@608
   488
	    }
renatofilho@608
   489
	    
renatofilho@608
   490
      if (src->live_tv || ( result == GMYTH_FILE_READ_NEXT_PROG_CHAIN ))
renatofilho@608
   491
        goto change_progchain;
renatofilho@608
   492
      else
renatofilho@608
   493
        goto read_error;
renatofilho@608
   494
    } else if (G_UNLIKELY (read == 0)) {
renatofilho@608
   495
    	
renatofilho@608
   496
    	if (buffer != NULL) {
renatofilho@608
   497
	      g_byte_array_free (buffer, TRUE);
renatofilho@608
   498
	      buffer = NULL;
renatofilho@608
   499
	    }
renatofilho@608
   500
	    
renatofilho@608
   501
      if (!src->live_tv)
renatofilho@608
   502
        goto done;
renatofilho@608
   503
      else
renatofilho@608
   504
        goto program_chain_changed;
renatofilho@608
   505
    }
renatofilho@608
   506
renatofilho@608
   507
    if (G_UNLIKELY (src->update_prog_chain))
renatofilho@608
   508
    {
renatofilho@608
   509
    	if (buffer != NULL) {
renatofilho@608
   510
	      g_byte_array_free (buffer, TRUE);
renatofilho@608
   511
	      buffer = NULL;
renatofilho@608
   512
	    }
renatofilho@608
   513
      goto change_progchain;      
renatofilho@608
   514
    }
renatofilho@608
   515
renatofilho@608
   516
    src->bytes_queue =
renatofilho@608
   517
        g_byte_array_append (src->bytes_queue, buffer->data, buffer->len);
renatofilho@608
   518
    if (buffer->len > buffer_size_inter)
renatofilho@608
   519
      GST_WARNING_OBJECT (src,
renatofilho@608
   520
          "INCREASED buffer size! Backend sent more than we ask him... (%d)",
renatofilho@608
   521
          abs (buffer->len - buffer_size_inter));
renatofilho@608
   522
renatofilho@608
   523
    src->buffer_remain += buffer->len;
renatofilho@608
   524
renatofilho@608
   525
    if (buffer != NULL) {
renatofilho@608
   526
      g_byte_array_free (buffer, TRUE);
renatofilho@608
   527
      buffer = NULL;
renatofilho@608
   528
    }
renatofilho@608
   529
renatofilho@674
   530
	/*
renatofilho@608
   531
    GST_DEBUG_OBJECT (src,
renatofilho@608
   532
        "BYTES READ (actual) = %d, BYTES READ (cumulative) = %llu, "
renatofilho@608
   533
        "OFFSET = %llu, CONTENT SIZE = %llu.", read,
renatofilho@608
   534
        src->bytes_read, src->read_offset, src->content_size);
renatofilho@674
   535
	*/		
renatofilho@608
   536
renatofilho@608
   537
  }
renatofilho@608
   538
renatofilho@608
   539
  guint buffer_size =
renatofilho@608
   540
      (src->buffer_remain < MAX_READ_SIZE) ? src->buffer_remain : MAX_READ_SIZE;
renatofilho@608
   541
renatofilho@608
   542
  *outbuf = gst_buffer_new ();
renatofilho@608
   543
renatofilho@608
   544
  /* gets the first buffer_size bytes from the byte array buffer variable */
renatofilho@608
   545
  /* guint8 *buf = g_memdup( src->bytes_queue->data, buffer_size ); */
renatofilho@608
   546
renatofilho@674
   547
  /*
renatofilho@608
   548
  GST_DEBUG_OBJECT (src, "read from network? %s!, buffer_remain = %d",
renatofilho@608
   549
      (buffer_size_inter ==
renatofilho@608
   550
          0) ? "NO, got from buffer" : "YES, go see the backend's log file",
renatofilho@608
   551
      src->buffer_remain);
renatofilho@674
   552
	  */
renatofilho@608
   553
renatofilho@608
   554
  GST_BUFFER_SIZE (*outbuf) = buffer_size;
renatofilho@608
   555
  GST_BUFFER_MALLOCDATA (*outbuf) = g_malloc0 (GST_BUFFER_SIZE (*outbuf));
renatofilho@608
   556
  GST_BUFFER_DATA (*outbuf) = GST_BUFFER_MALLOCDATA (*outbuf);
renatofilho@608
   557
  g_memmove (GST_BUFFER_DATA ((*outbuf)), src->bytes_queue->data,
renatofilho@608
   558
      GST_BUFFER_SIZE (*outbuf));
renatofilho@608
   559
  GST_BUFFER_OFFSET (*outbuf) = src->read_offset;
renatofilho@608
   560
  GST_BUFFER_OFFSET_END (*outbuf) =
renatofilho@608
   561
      src->read_offset + GST_BUFFER_SIZE (*outbuf);
renatofilho@608
   562
renatofilho@608
   563
  src->buffer_remain -= GST_BUFFER_SIZE (*outbuf);
renatofilho@608
   564
renatofilho@608
   565
  src->read_offset += GST_BUFFER_SIZE (*outbuf);
renatofilho@608
   566
  src->bytes_read += GST_BUFFER_SIZE (*outbuf);
renatofilho@674
   567
  //GST_DEBUG_OBJECT (src, "Buffer output with size: %d",
renatofilho@674
   568
  //    GST_BUFFER_SIZE (*outbuf));
renatofilho@608
   569
renatofilho@608
   570
  /* flushs the newly buffer got from byte array */
renatofilho@608
   571
  src->bytes_queue =
renatofilho@608
   572
      g_byte_array_remove_range (src->bytes_queue, 0, buffer_size);
renatofilho@608
   573
renatofilho@608
   574
  if ( G_UNLIKELY (src->eos) || ( !src->live_tv
renatofilho@608
   575
          && ( src->bytes_read >= src->content_size ) ) )
renatofilho@608
   576
    goto eos;
renatofilho@608
   577
renatofilho@608
   578
done:
renatofilho@608
   579
  {
renatofilho@608
   580
    const gchar *reason = gst_flow_get_name (ret);
renatofilho@608
   581
    return ret;
renatofilho@608
   582
  }
renatofilho@608
   583
eos:
renatofilho@608
   584
  {
renatofilho@608
   585
    const gchar *reason = gst_flow_get_name (ret);
renatofilho@608
   586
renatofilho@608
   587
    GST_DEBUG_OBJECT (src, "pausing task, reason %s", reason);
renatofilho@608
   588
    return GST_FLOW_UNEXPECTED;
renatofilho@608
   589
  }
renatofilho@608
   590
  /* ERRORS */
renatofilho@608
   591
read_error:
renatofilho@608
   592
  {
renatofilho@608
   593
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
renatofilho@608
   594
        (NULL), ("Could not read any bytes (%i, %s)", read, src->uri_name));
renatofilho@608
   595
    return GST_FLOW_ERROR;
renatofilho@608
   596
  }
renatofilho@608
   597
change_progchain:
renatofilho@608
   598
  {
renatofilho@608
   599
    GST_ELEMENT_ERROR (src, RESOURCE, READ,
renatofilho@608
   600
        (NULL), ("Seek failed, go to the next program info... (%i, %s)", read,
renatofilho@608
   601
            src->uri_name));
renatofilho@608
   602
renatofilho@608
   603
/*
renatofilho@608
   604
    TODO: need to send a new segment event to NUVDemux? 
renatofilho@608
   605
    gst_pad_push_event (GST_BASE_SRC_PAD (GST_BASE_SRC (psrc)),
renatofilho@608
   606
        gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0, -1, 0));
renatofilho@608
   607
*/
renatofilho@608
   608
renatofilho@608
   609
    goto program_chain_changed;
renatofilho@608
   610
  }
renatofilho@608
   611
renatofilho@608
   612
}
renatofilho@608
   613
renatofilho@608
   614
gint64
renatofilho@608
   615
gst_mythtv_src_get_position (GstMythtvSrc * src)
renatofilho@608
   616
{
renatofilho@608
   617
renatofilho@608
   618
  gint64 size_tmp = 0;
renatofilho@608
   619
  guint max_tries = 2;
renatofilho@608
   620
renatofilho@608
   621
  if (src->live_tv == TRUE && (abs (src->content_size - src->bytes_read) <
renatofilho@608
   622
          GMYTHTV_TRANSFER_MAX_BUFFER)) {
renatofilho@608
   623
renatofilho@608
   624
  get_file_pos:
renatofilho@608
   625
    g_usleep (10);
renatofilho@608
   626
    size_tmp = gmyth_recorder_get_file_position (src->spawn_livetv->recorder);
renatofilho@608
   627
    if (size_tmp > (src->content_size + GMYTHTV_TRANSFER_MAX_BUFFER))
renatofilho@608
   628
      src->content_size = size_tmp;
renatofilho@608
   629
    else if (size_tmp > 0 && --max_tries > 0)
renatofilho@608
   630
      goto get_file_pos;
renatofilho@608
   631
    GST_LOG_OBJECT (src, "GET_POSITION: file_position = %lld", size_tmp);
renatofilho@608
   632
    /* sets the last content size amount before it can be updated */
renatofilho@608
   633
    src->prev_content_size = src->content_size;
renatofilho@608
   634
  }
renatofilho@608
   635
renatofilho@608
   636
  return src->content_size;
renatofilho@608
   637
renatofilho@608
   638
}
renatofilho@608
   639
renatofilho@608
   640
static gboolean
renatofilho@608
   641
gst_mythtv_src_do_seek (GstBaseSrc * base, GstSegment * segment)
renatofilho@608
   642
{
renatofilho@608
   643
  GstMythtvSrc *src = GST_MYTHTV_SRC (base);
renatofilho@608
   644
  gint64 new_offset = -1;
renatofilho@608
   645
  gint64 actual_seek = segment->start;
renatofilho@608
   646
  gboolean ret = TRUE;
renatofilho@608
   647
renatofilho@608
   648
  GST_LOG_OBJECT (src, "seek, segment: %" GST_SEGMENT_FORMAT, segment);
renatofilho@608
   649
renatofilho@608
   650
  if (segment->format == GST_FORMAT_TIME) {
renatofilho@608
   651
    goto done;
renatofilho@608
   652
  }
renatofilho@608
   653
  GST_LOG_OBJECT (src,
renatofilho@608
   654
      "Trying to seek at the value (actual_seek = %lld, read_offset = %lld)",
renatofilho@608
   655
      actual_seek, src->read_offset);
renatofilho@608
   656
  /* verify if it needs to seek */
renatofilho@608
   657
  if (src->read_offset != actual_seek) {
renatofilho@608
   658
    
renatofilho@608
   659
    /* if ( gmyth_backend_info_is_local_file(src->backend_info) ) */
renatofilho@608
   660
    if ( IS_GMYTH_FILE_LOCAL(src->file) )
renatofilho@608
   661
      new_offset =
renatofilho@608
   662
          gmyth_file_local_seek ( GMYTH_FILE_LOCAL(src->file), segment->start, G_SEEK_SET);
renatofilho@608
   663
    else if ( IS_GMYTH_FILE_TRANSFER(src->file) )
renatofilho@608
   664
      new_offset =
renatofilho@608
   665
          gmyth_file_transfer_seek ( GMYTH_FILE_TRANSFER(src->file), segment->start, SEEK_SET);
renatofilho@608
   666
renatofilho@608
   667
    GST_LOG_OBJECT (src,
renatofilho@608
   668
        "Segment offset start = %lld, SRC Offset = %lld, NEW actual backend SEEK Offset = %lld.",
renatofilho@608
   669
        segment->start, src->read_offset, new_offset);
renatofilho@608
   670
    if (G_UNLIKELY (new_offset < 0)) {
renatofilho@608
   671
      ret = FALSE;
renatofilho@608
   672
      if (!src->live_tv)
renatofilho@608
   673
        goto eos;
renatofilho@608
   674
    }
renatofilho@608
   675
renatofilho@608
   676
    src->read_offset = new_offset;
renatofilho@608
   677
renatofilho@608
   678
    if (ret == FALSE) {
renatofilho@608
   679
      GST_INFO_OBJECT (src, "Failed to set the SEEK on segment!");
renatofilho@608
   680
    }
renatofilho@608
   681
renatofilho@608
   682
  }
renatofilho@608
   683
renatofilho@608
   684
done:
renatofilho@608
   685
  return ret;
renatofilho@608
   686
renatofilho@608
   687
eos:
renatofilho@608
   688
  {
renatofilho@608
   689
    GST_DEBUG_OBJECT (src, "EOS found on seeking!!!");
renatofilho@608
   690
    return FALSE;
renatofilho@608
   691
  }
renatofilho@608
   692
renatofilho@608
   693
}
renatofilho@608
   694
renatofilho@608
   695
/* create a socket for connecting to remote server */
renatofilho@608
   696
static gboolean
renatofilho@608
   697
gst_mythtv_src_start (GstBaseSrc * bsrc)
renatofilho@608
   698
{
renatofilho@608
   699
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
renatofilho@608
   700
renatofilho@608
   701
  GString *chain_id_local = NULL;  
renatofilho@608
   702
  GMythURI *gmyth_uri = NULL;
renatofilho@608
   703
  gboolean ret = TRUE;
renatofilho@674
   704
  GstMessage *msg;
renatofilho@608
   705
renatofilho@608
   706
  if (src->unique_setup == FALSE) {
renatofilho@608
   707
    src->unique_setup = TRUE;
renatofilho@608
   708
  } else {
renatofilho@608
   709
    goto done;
renatofilho@608
   710
  }
renatofilho@608
   711
  
renatofilho@608
   712
  gmyth_uri = gmyth_uri_new_with_value (src->uri_name);
renatofilho@608
   713
  src->backend_info = gmyth_backend_info_new_with_uri (src->uri_name);
renatofilho@608
   714
  src->live_tv = gmyth_uri_is_livetv( gmyth_uri );
renatofilho@608
   715
  /* testing UPnP... */
renatofilho@608
   716
  /* gmyth_backend_info_set_hostname( src->backend_info, NULL ); */
renatofilho@608
   717
  if ( src->live_tv ) {
renatofilho@608
   718
    src->spawn_livetv = gmyth_livetv_new (src->backend_info);
renatofilho@608
   719
    
renatofilho@608
   720
    gchar* ch = gmyth_uri_get_channel_name( gmyth_uri );
renatofilho@608
   721
    if ( ch != NULL )
renatofilho@608
   722
    	src->channel_name = ch;
renatofilho@608
   723
    	
renatofilho@608
   724
    if (src->channel_name != NULL) {
renatofilho@679
   725
      gint try = 0;
renatofilho@679
   726
	  gboolean result;
renatofilho@679
   727
renatofilho@679
   728
      while (try < 100) {	  
renatofilho@679
   729
		result = gmyth_livetv_channel_name_setup (src->spawn_livetv, src->channel_name);
renatofilho@679
   730
		if (result == TRUE) {
renatofilho@679
   731
		  g_debug ("LIVE STARTED");				
renatofilho@679
   732
		  break;
renatofilho@679
   733
		}
renatofilho@679
   734
renatofilho@679
   735
		g_debug ("FAIL TO START LIVE");
renatofilho@679
   736
		g_usleep (0.5 * G_USEC_PER_SEC);
renatofilho@679
   737
		try++;		
renatofilho@608
   738
      }
renatofilho@679
   739
renatofilho@679
   740
	  if (result == FALSE) {
renatofilho@679
   741
	     GST_INFO_OBJECT (src, "LiveTV setup felt down on error");
renatofilho@679
   742
	   	 ret = FALSE;
renatofilho@679
   743
	  	 goto init_failed;
renatofilho@679
   744
	  }
renatofilho@679
   745
renatofilho@608
   746
    } else {
renatofilho@608
   747
      if (gmyth_livetv_setup (src->spawn_livetv) == FALSE) {
renatofilho@608
   748
        GST_INFO_OBJECT (src, "LiveTV setup felt down on error");
renatofilho@608
   749
        ret = FALSE;
renatofilho@608
   750
        goto init_failed;
renatofilho@608
   751
      }
renatofilho@608
   752
    }
renatofilho@608
   753
renatofilho@608
   754
    /* testing change channel... */
renatofilho@608
   755
    /* gmyth_recorder_change_channel( src->spawn_livetv->recorder, CHANNEL_DIRECTION_UP ); */
renatofilho@608
   756
renatofilho@608
   757
    src->file = GMYTH_FILE( gmyth_livetv_create_file_transfer (src->spawn_livetv) );
renatofilho@608
   758
renatofilho@608
   759
    if (NULL == src->file) {
renatofilho@608
   760
      GST_INFO_OBJECT (src, "[LiveTV] FileTransfer equals to NULL");
renatofilho@608
   761
      ret = FALSE;
renatofilho@608
   762
      goto init_failed;
renatofilho@608
   763
    }
renatofilho@608
   764
    
renatofilho@608
   765
    /* Check if the file is local to this specific client renderer */
renatofilho@608
   766
    if ( gmyth_uri_is_local_file(gmyth_uri) )
renatofilho@608
   767
      ret = gmyth_file_local_open( GMYTH_FILE_LOCAL(src->file) );
renatofilho@608
   768
    else
renatofilho@608
   769
      ret = gmyth_file_transfer_open( GMYTH_FILE_TRANSFER(src->file), src->spawn_livetv->uri != NULL ? 
renatofilho@608
   770
                gmyth_uri_get_path(src->spawn_livetv->uri) : 
renatofilho@608
   771
                src->spawn_livetv->proginfo->pathname->str );
renatofilho@608
   772
    
renatofilho@608
   773
    /* sets the mythtvsrc "location" property */
renatofilho@608
   774
    g_object_set (src, "location", gmyth_file_get_uri (src->file), NULL);
renatofilho@608
   775
renatofilho@608
   776
		if ( !ret )
renatofilho@608
   777
		{
renatofilho@608
   778
			GST_INFO_OBJECT (src, "Error: couldn't open the FileTransfer from LiveTV source!" );
renatofilho@608
   779
			g_object_unref( src->file );
renatofilho@608
   780
			src->file = NULL;
renatofilho@608
   781
			goto init_failed;
renatofilho@608
   782
		}
renatofilho@608
   783
  } else {
renatofilho@608
   784
    
renatofilho@608
   785
    /* Check if the file is local to this specific client renderer, and tries to open
renatofilho@608
   786
     * a local connection
renatofilho@608
   787
     */
renatofilho@608
   788
    if ( gmyth_uri_is_local_file(gmyth_uri) )
renatofilho@608
   789
    {
renatofilho@608
   790
      src->file = GMYTH_FILE(gmyth_file_local_new(src->backend_info));
renatofilho@608
   791
      ret = gmyth_file_local_open ( GMYTH_FILE_LOCAL( src->file ) );
renatofilho@608
   792
    } else {
renatofilho@608
   793
      src->file = GMYTH_FILE(gmyth_file_transfer_new(src->backend_info));
renatofilho@608
   794
      ret = gmyth_file_transfer_open ( GMYTH_FILE_TRANSFER(src->file), src->uri_name );
renatofilho@608
   795
    }
renatofilho@608
   796
renatofilho@608
   797
  } /* if (else) - recorded FileTransfer */
renatofilho@608
   798
renatofilho@608
   799
  if (NULL == src->file) {
renatofilho@608
   800
    GST_INFO_OBJECT (src, "FileTransfer is NULL");
renatofilho@608
   801
    goto init_failed;
renatofilho@608
   802
  }
renatofilho@608
   803
  /*GST_INFO_OBJECT( src, "uri = %s", src->spawn_livetv->file); */
renatofilho@608
   804
renatofilho@608
   805
  if (ret == FALSE) {
renatofilho@608
   806
#ifndef GST_DISABLE_GST_DEBUG
renatofilho@608
   807
    if (src->mythtv_msgs_dbg)
renatofilho@608
   808
      GST_INFO_OBJECT (src,
renatofilho@608
   809
          "MythTV FileTransfer request failed when setting up socket connection!");
renatofilho@608
   810
#endif
renatofilho@608
   811
    goto begin_req_failed;
renatofilho@608
   812
  }
renatofilho@608
   813
renatofilho@608
   814
  GST_INFO_OBJECT (src,
renatofilho@608
   815
      "MythTV FileTransfer filesize = %lld, content_size = %lld!",
renatofilho@608
   816
      gmyth_file_get_filesize( src->file ), src->content_size);
renatofilho@608
   817
renatofilho@608
   818
  src->content_size = gmyth_file_get_filesize (src->file);
renatofilho@608
   819
renatofilho@674
   820
  msg = gst_message_new_duration (GST_OBJECT (src), GST_FORMAT_BYTES, src->content_size);
renatofilho@674
   821
  gst_element_post_message (GST_ELEMENT (src), msg);
renatofilho@674
   822
renatofilho@674
   823
renatofilho@608
   824
  src->do_start = FALSE;
renatofilho@608
   825
renatofilho@608
   826
  /* this is used for the buffer cache */
renatofilho@608
   827
  src->bytes_queue = g_byte_array_sized_new (INTERNAL_BUFFER_SIZE);
renatofilho@608
   828
  src->buffer_remain = 0;
renatofilho@608
   829
  
renatofilho@608
   830
  gst_pad_push_event (GST_BASE_SRC_PAD (GST_BASE_SRC (src)),
renatofilho@608
   831
      gst_event_new_new_segment (TRUE, 1.0, GST_FORMAT_TIME, 0,
renatofilho@608
   832
          src->content_size, 0));
renatofilho@608
   833
renatofilho@608
   834
done:
renatofilho@608
   835
	if (gmyth_uri != NULL)
renatofilho@608
   836
	{
renatofilho@608
   837
  	    g_object_unref (gmyth_uri);
renatofilho@608
   838
      	gmyth_uri = NULL;
renatofilho@608
   839
	}
renatofilho@608
   840
renatofilho@608
   841
    if (chain_id_local != NULL) {
renatofilho@608
   842
        g_string_free (chain_id_local, TRUE);
renatofilho@608
   843
        chain_id_local = NULL;
renatofilho@608
   844
    }
renatofilho@608
   845
renatofilho@608
   846
    return TRUE;
renatofilho@608
   847
renatofilho@608
   848
    /* ERRORS */
renatofilho@608
   849
init_failed:
renatofilho@608
   850
	if (gmyth_uri != NULL)
renatofilho@608
   851
	{
renatofilho@608
   852
  	    g_object_unref (gmyth_uri);
renatofilho@608
   853
      	gmyth_uri = NULL;
renatofilho@608
   854
	}
renatofilho@608
   855
renatofilho@608
   856
    if (src->spawn_livetv != NULL) {
renatofilho@608
   857
        g_object_unref (src->spawn_livetv);
renatofilho@608
   858
        src->spawn_livetv = NULL;
renatofilho@608
   859
    }
renatofilho@608
   860
    
renatofilho@608
   861
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
renatofilho@608
   862
            (NULL), ("Could not initialize MythTV library (%i, %s)", ret,
renatofilho@608
   863
            src->uri_name));
renatofilho@679
   864
renatofilho@608
   865
renatofilho@674
   866
    gst_mythtv_src_clear (src);
renatofilho@608
   867
renatofilho@608
   868
    return FALSE;
renatofilho@608
   869
begin_req_failed:
renatofilho@608
   870
	if (gmyth_uri != NULL)
renatofilho@608
   871
	{
renatofilho@608
   872
  	    g_object_unref (gmyth_uri);
renatofilho@608
   873
      	gmyth_uri = NULL;
renatofilho@608
   874
	}
renatofilho@608
   875
renatofilho@608
   876
    GST_ELEMENT_ERROR (src, LIBRARY, INIT,
renatofilho@608
   877
        (NULL), ("Could not begin request sent to MythTV server (%i, %s)", ret,
renatofilho@608
   878
            src->uri_name));
renatofilho@608
   879
    return FALSE;
renatofilho@608
   880
renatofilho@608
   881
}
renatofilho@608
   882
renatofilho@608
   883
static gboolean
renatofilho@608
   884
gst_mythtv_src_get_size (GstBaseSrc * bsrc, guint64 * size)
renatofilho@608
   885
{
renatofilho@608
   886
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
renatofilho@608
   887
  gboolean ret = TRUE;
renatofilho@608
   888
renatofilho@608
   889
  GST_LOG_OBJECT (src, "Differs from previous content size: %d (max.: %d)",
renatofilho@608
   890
      abs (src->content_size - src->prev_content_size),
renatofilho@608
   891
      GMYTHTV_TRANSFER_MAX_BUFFER);
renatofilho@608
   892
renatofilho@608
   893
  if (src->live_tv) {
renatofilho@608
   894
    ret = FALSE;
renatofilho@608
   895
  } else if (src->live_tv && src->enable_timing_position
renatofilho@608
   896
      && (abs (src->content_size - src->bytes_read) <
renatofilho@608
   897
          GMYTHTV_TRANSFER_MAX_BUFFER)) {
renatofilho@608
   898
renatofilho@608
   899
    gint64 new_offset =
renatofilho@608
   900
        gmyth_recorder_get_file_position (src->spawn_livetv->recorder);
renatofilho@608
   901
    if (new_offset > 0 && new_offset > src->content_size) {
renatofilho@608
   902
      src->content_size = new_offset;
renatofilho@608
   903
    } else if (new_offset < src->content_size) {
renatofilho@608
   904
      src->update_prog_chain = TRUE;
renatofilho@608
   905
    }
renatofilho@608
   906
renatofilho@608
   907
  }
renatofilho@608
   908
renatofilho@608
   909
  *size = src->content_size;
renatofilho@608
   910
  GST_LOG_OBJECT (src, "Content size = %lld", src->content_size);
renatofilho@608
   911
renatofilho@608
   912
  return ret;
renatofilho@608
   913
renatofilho@608
   914
}
renatofilho@608
   915
renatofilho@608
   916
/* close the socket and associated resources
renatofilho@608
   917
 * used both to recover from errors and go to NULL state */
renatofilho@608
   918
static gboolean
renatofilho@608
   919
gst_mythtv_src_stop (GstBaseSrc * bsrc)
renatofilho@608
   920
{
renatofilho@608
   921
  GstMythtvSrc *src = GST_MYTHTV_SRC (bsrc);
renatofilho@608
   922
  
renatofilho@608
   923
  gst_mythtv_src_clear (src);
renatofilho@608
   924
renatofilho@608
   925
  /* src->eos = FALSE; */
renatofilho@608
   926
renatofilho@608
   927
  return TRUE;
renatofilho@608
   928
}
renatofilho@608
   929
renatofilho@608
   930
static gboolean
renatofilho@608
   931
gst_mythtv_src_handle_event (GstPad * pad, GstEvent * event)
renatofilho@608
   932
{
renatofilho@608
   933
  GstMythtvSrc *src = GST_MYTHTV_SRC (GST_PAD_PARENT (pad));
renatofilho@608
   934
  gint64 cont_size = 0;
renatofilho@608
   935
  gboolean ret = FALSE;
renatofilho@608
   936
renatofilho@608
   937
  switch (GST_EVENT_TYPE (event)) {
renatofilho@608
   938
    case GST_EVENT_EOS:
renatofilho@608
   939
      GST_WARNING_OBJECT (src, "Got EOS event");
renatofilho@608
   940
renatofilho@608
   941
      if (src->live_tv) {
renatofilho@608
   942
        cont_size = gst_mythtv_src_get_position (src);
renatofilho@608
   943
        if (cont_size > src->content_size) {
renatofilho@608
   944
          src->content_size = cont_size;
renatofilho@608
   945
          src->eos = FALSE;
renatofilho@608
   946
        } else {
renatofilho@608
   947
          src->eos = TRUE;
renatofilho@608
   948
          gst_element_set_state (GST_ELEMENT (src), GST_STATE_NULL);
renatofilho@608
   949
          gst_element_set_locked_state (GST_ELEMENT (src), FALSE);
renatofilho@608
   950
        }
renatofilho@608
   951
      }
renatofilho@608
   952
      break;
renatofilho@608
   953
    default:
renatofilho@608
   954
      ret = gst_pad_event_default (pad, event);
renatofilho@608
   955
  }
renatofilho@608
   956
renatofilho@608
   957
  return ret;
renatofilho@608
   958
}
renatofilho@608
   959
renatofilho@608
   960
static gboolean
renatofilho@608
   961
gst_mythtv_src_is_seekable (GstBaseSrc * push_src)
renatofilho@608
   962
{
renatofilho@608
   963
  return TRUE;
renatofilho@608
   964
}
renatofilho@608
   965
renatofilho@608
   966
static gboolean
renatofilho@608
   967
gst_mythtv_src_handle_query (GstPad * pad, GstQuery * query)
renatofilho@608
   968
{
renatofilho@608
   969
  gboolean res = FALSE;
renatofilho@608
   970
  GstMythtvSrc *myth = GST_MYTHTV_SRC (gst_pad_get_parent (pad));
renatofilho@608
   971
  GstFormat formt;
renatofilho@608
   972
renatofilho@674
   973
renatofilho@608
   974
  switch (GST_QUERY_TYPE (query)) {
renatofilho@608
   975
    case GST_QUERY_POSITION:
renatofilho@608
   976
    {
renatofilho@608
   977
      gst_query_parse_position (query, &formt, NULL);
renatofilho@608
   978
      if (formt == GST_FORMAT_BYTES) {
renatofilho@608
   979
        gst_query_set_position (query, formt, myth->read_offset);
renatofilho@608
   980
        GST_DEBUG_OBJECT (myth, "POS %" G_GINT64_FORMAT, myth->read_offset);
renatofilho@608
   981
        res = TRUE;
renatofilho@608
   982
      } else if (formt == GST_FORMAT_TIME) {
renatofilho@608
   983
        res = gst_pad_query_default (pad, query);
renatofilho@608
   984
      }
renatofilho@608
   985
      break;
renatofilho@608
   986
    }
renatofilho@608
   987
    case GST_QUERY_DURATION:
renatofilho@608
   988
    {
renatofilho@608
   989
      gst_query_parse_duration (query, &formt, NULL);
renatofilho@608
   990
      if (formt == GST_FORMAT_BYTES) {
renatofilho@674
   991
		gint64 size = myth->content_size;			  
renatofilho@674
   992
        gst_query_set_duration (query, GST_FORMAT_BYTES, 10);
renatofilho@674
   993
        GST_DEBUG_OBJECT (myth, "SIZE %" G_GINT64_FORMAT, size);
renatofilho@608
   994
        res = TRUE;
renatofilho@608
   995
      } else if (formt == GST_FORMAT_TIME) {
renatofilho@608
   996
        res = gst_pad_query_default (pad, query);
renatofilho@608
   997
      }
renatofilho@608
   998
      break;
renatofilho@608
   999
    }
renatofilho@608
  1000
    default:
renatofilho@608
  1001
    {
renatofilho@608
  1002
      res = gst_pad_query_default (pad, query);
renatofilho@608
  1003
      break;
renatofilho@608
  1004
    }
renatofilho@608
  1005
  }
renatofilho@608
  1006
renatofilho@608
  1007
  gst_object_unref (myth);
renatofilho@608
  1008
renatofilho@608
  1009
  return res;
renatofilho@608
  1010
}
renatofilho@608
  1011
renatofilho@608
  1012
static GstStateChangeReturn
renatofilho@608
  1013
gst_mythtv_src_change_state (GstElement * element, GstStateChange transition)
renatofilho@608
  1014
{
renatofilho@608
  1015
  GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;
renatofilho@608
  1016
  GstMythtvSrc *src = GST_MYTHTV_SRC (element);
renatofilho@608
  1017
renatofilho@608
  1018
  switch (transition) {
renatofilho@608
  1019
    case GST_STATE_CHANGE_NULL_TO_READY:
renatofilho@608
  1020
      break;
renatofilho@608
  1021
    case GST_STATE_CHANGE_READY_TO_PAUSED:
renatofilho@608
  1022
    case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
renatofilho@608
  1023
      if (src->live_tv) {
renatofilho@608
  1024
        if (!gmyth_recorder_send_frontend_ready_command (src->spawn_livetv->
renatofilho@608
  1025
                recorder))
renatofilho@608
  1026
          GST_WARNING_OBJECT (src,
renatofilho@608
  1027
              "Couldn't send the FRONTEND_READY message to the backend!");
renatofilho@608
  1028
        else
renatofilho@608
  1029
          GST_DEBUG_OBJECT (src, "FRONTEND_READY was sent to the backend");
renatofilho@608
  1030
      }
renatofilho@608
  1031
      break;
renatofilho@608
  1032
    default:
renatofilho@608
  1033
      break;
renatofilho@608
  1034
  }
renatofilho@608
  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@608
  1040
  switch (transition) {
renatofilho@608
  1041
    case GST_STATE_CHANGE_READY_TO_NULL:
renatofilho@679
  1042
	  g_debug ("STAAAAAAAAAAAATTTTTTTTTEEEEEEEEE NULLLLLLLLLLLLLLLL");			
renatofilho@674
  1043
	  gst_mythtv_src_clear (src);			
renatofilho@608
  1044
      break;
renatofilho@608
  1045
    case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
renatofilho@608
  1046
    case GST_STATE_CHANGE_PAUSED_TO_READY:
renatofilho@608
  1047
      break;
renatofilho@608
  1048
    default:
renatofilho@608
  1049
      break;
renatofilho@608
  1050
  }
renatofilho@608
  1051
renatofilho@608
  1052
  return ret;
renatofilho@608
  1053
}
renatofilho@608
  1054
renatofilho@608
  1055
static void
renatofilho@608
  1056
gst_mythtv_src_set_property (GObject * object, guint prop_id,
renatofilho@608
  1057
    const GValue * value, GParamSpec * pspec)
renatofilho@608
  1058
{
renatofilho@608
  1059
  GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC (object);
renatofilho@608
  1060
renatofilho@608
  1061
  GST_OBJECT_LOCK (mythtvsrc);
renatofilho@608
  1062
  switch (prop_id) {
renatofilho@608
  1063
    case PROP_LOCATION:
renatofilho@608
  1064
    {
renatofilho@608
  1065
      if (!g_value_get_string (value)) {
renatofilho@608
  1066
        GST_WARNING ("location property cannot be NULL");
renatofilho@608
  1067
	break;
renatofilho@608
  1068
      }
renatofilho@608
  1069
renatofilho@608
  1070
      if (mythtvsrc->uri_name != NULL) {
renatofilho@608
  1071
        g_free (mythtvsrc->uri_name);
renatofilho@608
  1072
        mythtvsrc->uri_name = NULL;
renatofilho@608
  1073
      }
renatofilho@608
  1074
      mythtvsrc->uri_name = g_value_dup_string (value);
renatofilho@608
  1075
renatofilho@608
  1076
      break;
renatofilho@608
  1077
    }
renatofilho@608
  1078
#ifndef GST_DISABLE_GST_DEBUG
renatofilho@608
  1079
    case PROP_GMYTHTV_DBG:
renatofilho@608
  1080
    {
renatofilho@608
  1081
      mythtvsrc->mythtv_msgs_dbg = g_value_get_boolean (value);
renatofilho@608
  1082
      break;
renatofilho@608
  1083
    }
renatofilho@608
  1084
#endif
renatofilho@608
  1085
    case PROP_GMYTHTV_VERSION:
renatofilho@608
  1086
    {
renatofilho@608
  1087
      mythtvsrc->mythtv_version = g_value_get_int (value);
renatofilho@608
  1088
      break;
renatofilho@608
  1089
    }
renatofilho@608
  1090
    case PROP_GMYTHTV_LIVEID:
renatofilho@608
  1091
    {
renatofilho@608
  1092
      mythtvsrc->live_tv_id = g_value_get_int (value);
renatofilho@608
  1093
      break;
renatofilho@608
  1094
    }
renatofilho@608
  1095
    case PROP_GMYTHTV_LIVE:
renatofilho@608
  1096
    {
renatofilho@608
  1097
      mythtvsrc->live_tv = g_value_get_boolean (value);
renatofilho@608
  1098
      break;
renatofilho@608
  1099
    }
renatofilho@608
  1100
    case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
renatofilho@608
  1101
    {
renatofilho@608
  1102
      mythtvsrc->enable_timing_position = g_value_get_boolean (value);
renatofilho@608
  1103
      break;
renatofilho@608
  1104
    }
renatofilho@608
  1105
    case PROP_GMYTHTV_LIVE_CHAINID:
renatofilho@608
  1106
    {
renatofilho@608
  1107
      if (!g_value_get_string (value)) {
renatofilho@608
  1108
        GST_WARNING ("MythTV Live chainid property cannot be NULL");
renatofilho@608
  1109
	break;
renatofilho@608
  1110
      }
renatofilho@608
  1111
renatofilho@608
  1112
      if (mythtvsrc->live_chain_id != NULL) {
renatofilho@608
  1113
        g_free (mythtvsrc->live_chain_id);
renatofilho@608
  1114
        mythtvsrc->live_chain_id = NULL;
renatofilho@608
  1115
      }
renatofilho@608
  1116
      mythtvsrc->live_chain_id = g_value_dup_string (value);
renatofilho@608
  1117
      break;
renatofilho@608
  1118
    }
renatofilho@608
  1119
    case PROP_GMYTHTV_CHANNEL_NUM:
renatofilho@608
  1120
    {
renatofilho@608
  1121
      mythtvsrc->channel_name = g_value_dup_string (value);
renatofilho@608
  1122
      break;
renatofilho@608
  1123
    }
renatofilho@608
  1124
    case PROP_GMYTHTV_MAX_TRY:
renatofilho@608
  1125
    {
renatofilho@608
  1126
      mythtvsrc->max_try = g_value_get_int (value);
renatofilho@608
  1127
      break;
renatofilho@608
  1128
    }
renatofilho@608
  1129
    default:
renatofilho@608
  1130
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
renatofilho@608
  1131
      break;
renatofilho@608
  1132
  }
renatofilho@608
  1133
renatofilho@608
  1134
  GST_OBJECT_UNLOCK (mythtvsrc);
renatofilho@608
  1135
}
renatofilho@608
  1136
renatofilho@608
  1137
static void
renatofilho@608
  1138
gst_mythtv_src_get_property (GObject * object, guint prop_id,
renatofilho@608
  1139
    GValue * value, GParamSpec * pspec)
renatofilho@608
  1140
{
renatofilho@608
  1141
  GstMythtvSrc *mythtvsrc = GST_MYTHTV_SRC (object);
renatofilho@608
  1142
renatofilho@608
  1143
  GST_OBJECT_LOCK (mythtvsrc);
renatofilho@608
  1144
  switch (prop_id) {
renatofilho@608
  1145
    case PROP_LOCATION:
renatofilho@608
  1146
    {
renatofilho@608
  1147
      g_value_set_string (value, mythtvsrc->uri_name);
renatofilho@608
  1148
      break;
renatofilho@608
  1149
    }
renatofilho@608
  1150
#ifndef GST_DISABLE_GST_DEBUG
renatofilho@608
  1151
    case PROP_GMYTHTV_DBG:
renatofilho@608
  1152
      g_value_set_boolean (value, mythtvsrc->mythtv_msgs_dbg);
renatofilho@608
  1153
      break;
renatofilho@608
  1154
#endif
renatofilho@608
  1155
    case PROP_GMYTHTV_VERSION:
renatofilho@608
  1156
    {
renatofilho@608
  1157
      g_value_set_int (value, mythtvsrc->mythtv_version);
renatofilho@608
  1158
      break;
renatofilho@608
  1159
    }
renatofilho@608
  1160
    case PROP_GMYTHTV_LIVEID:
renatofilho@608
  1161
    {
renatofilho@608
  1162
      g_value_set_int (value, mythtvsrc->live_tv_id);
renatofilho@608
  1163
      break;
renatofilho@608
  1164
    }
renatofilho@608
  1165
    case PROP_GMYTHTV_LIVE:
renatofilho@608
  1166
      g_value_set_boolean (value, mythtvsrc->live_tv);
renatofilho@608
  1167
      break;
renatofilho@608
  1168
    case PROP_GMYTHTV_ENABLE_TIMING_POSITION:
renatofilho@608
  1169
      g_value_set_boolean (value, mythtvsrc->enable_timing_position);
renatofilho@608
  1170
      break;
renatofilho@608
  1171
    case PROP_GMYTHTV_LIVE_CHAINID:
renatofilho@608
  1172
    {
renatofilho@608
  1173
      g_value_set_string (value, mythtvsrc->live_chain_id);
renatofilho@608
  1174
      break;
renatofilho@608
  1175
    }
renatofilho@608
  1176
    case PROP_GMYTHTV_CHANNEL_NUM:
renatofilho@608
  1177
    {
renatofilho@608
  1178
      g_value_set_string (value, mythtvsrc->channel_name);
renatofilho@608
  1179
      break;
renatofilho@608
  1180
    }
renatofilho@608
  1181
    case PROP_GMYTHTV_MAX_TRY:
renatofilho@608
  1182
    {
renatofilho@608
  1183
      g_value_set_int (value, mythtvsrc->max_try);
renatofilho@608
  1184
      break;
renatofilho@608
  1185
    }
renatofilho@608
  1186
renatofilho@608
  1187
    default:
renatofilho@608
  1188
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
renatofilho@608
  1189
      break;
renatofilho@608
  1190
  }
renatofilho@608
  1191
  GST_OBJECT_UNLOCK (mythtvsrc);
renatofilho@608
  1192
}
renatofilho@608
  1193
renatofilho@608
  1194
static gboolean
renatofilho@608
  1195
plugin_init (GstPlugin * plugin)
renatofilho@608
  1196
{
renatofilho@608
  1197
  return gst_element_register (plugin, "mythtvsrc", GST_RANK_NONE,
renatofilho@608
  1198
      GST_TYPE_MYTHTV_SRC);
renatofilho@608
  1199
}
renatofilho@608
  1200
renatofilho@608
  1201
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
renatofilho@608
  1202
    GST_VERSION_MINOR,
renatofilho@608
  1203
    "mythtv",
renatofilho@608
  1204
    "lib MythTV src",
renatofilho@608
  1205
    plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
renatofilho@608
  1206
renatofilho@608
  1207
renatofilho@608
  1208
/*** GSTURIHANDLER INTERFACE *************************************************/
renatofilho@608
  1209
static guint
renatofilho@608
  1210
gst_mythtv_src_uri_get_type (void)
renatofilho@608
  1211
{
renatofilho@608
  1212
  return GST_URI_SRC;
renatofilho@608
  1213
}
renatofilho@608
  1214
renatofilho@608
  1215
static gchar **
renatofilho@608
  1216
gst_mythtv_src_uri_get_protocols (void)
renatofilho@608
  1217
{
renatofilho@608
  1218
  static gchar *protocols[] = { "myth", "myths", NULL };
renatofilho@608
  1219
renatofilho@608
  1220
  return protocols;
renatofilho@608
  1221
}
renatofilho@608
  1222
renatofilho@608
  1223
static const gchar *
renatofilho@608
  1224
gst_mythtv_src_uri_get_uri (GstURIHandler * handler)
renatofilho@608
  1225
{
renatofilho@608
  1226
  GstMythtvSrc *src = GST_MYTHTV_SRC (handler);
renatofilho@608
  1227
renatofilho@608
  1228
  return src->uri_name;
renatofilho@608
  1229
}
renatofilho@608
  1230
renatofilho@608
  1231
static gboolean
renatofilho@608
  1232
gst_mythtv_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
renatofilho@608
  1233
{
renatofilho@608
  1234
  GstMythtvSrc *src = GST_MYTHTV_SRC (handler);
renatofilho@608
  1235
renatofilho@608
  1236
  gchar *protocol;
renatofilho@608
  1237
renatofilho@608
  1238
  protocol = gst_uri_get_protocol (uri);
renatofilho@608
  1239
  if ((strcmp (protocol, "myth") != 0) && (strcmp (protocol, "myths") != 0)) {
renatofilho@608
  1240
    g_free (protocol);
renatofilho@608
  1241
    return FALSE;
renatofilho@608
  1242
  }
renatofilho@608
  1243
  g_free (protocol);
renatofilho@608
  1244
  g_object_set (src, "location", uri, NULL);
renatofilho@608
  1245
renatofilho@608
  1246
  return TRUE;
renatofilho@608
  1247
}
renatofilho@608
  1248
renatofilho@608
  1249
static void
renatofilho@608
  1250
gst_mythtv_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
renatofilho@608
  1251
{
renatofilho@608
  1252
  GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
renatofilho@608
  1253
renatofilho@608
  1254
  iface->get_type = gst_mythtv_src_uri_get_type;
renatofilho@608
  1255
  iface->get_protocols = gst_mythtv_src_uri_get_protocols;
renatofilho@608
  1256
  iface->get_uri = gst_mythtv_src_uri_get_uri;
renatofilho@608
  1257
  iface->set_uri = gst_mythtv_src_uri_set_uri;
renatofilho@608
  1258
}
renatofilho@608
  1259
renatofilho@608
  1260
void
renatofilho@608
  1261
size_header_handler (void *userdata, const char *value)
renatofilho@608
  1262
{
renatofilho@608
  1263
  GstMythtvSrc *src = GST_MYTHTV_SRC (userdata);
renatofilho@608
  1264
renatofilho@608
  1265
  GST_DEBUG_OBJECT (src, "content size = %lld bytes", src->content_size);
renatofilho@608
  1266
}