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