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