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