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