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