gmyth-dbus/src/gmyth-dbus-server.c
author renatofilho
Mon Nov 19 17:57:40 2007 +0000 (2007-11-19)
branchtrunk
changeset 881 c5a9d9583e64
parent 879 16c33370755e
child 891 0cc42675b88d
permissions -rw-r--r--
[svn r887] fixed disconnect signal
renatofilho@870
     1
/**
renatofilho@870
     2
 * GMyth Library
renatofilho@870
     3
 *
renatofilho@870
     4
 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
renatofilho@870
     5
 * @author Renato Filho  <renato.filho@indt.org.br>
renatofilho@870
     6
 *
renatofilho@870
     7
 *
renatofilho@870
     8
 * This program is free software; you can redistribute it and/or modify
renatofilho@870
     9
 * it under the terms of the GNU Lesser General Public License as published by
renatofilho@870
    10
 * the Free Software Foundation; either version 2 of the License, or
renatofilho@870
    11
 * (at your option) any later version.
renatofilho@870
    12
 *
renatofilho@870
    13
 * This program is distributed in the hope that it will be useful,
renatofilho@870
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@870
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
renatofilho@870
    16
 * GNU General Public License for more details.
renatofilho@870
    17
 *
renatofilho@870
    18
 * You should have received a copy of the GNU Lesser General Public License
renatofilho@870
    19
 * along with this program; if not, write to the Free Software
renatofilho@870
    20
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
renatofilho@870
    21
 */
renatofilho@870
    22
renatofilho@870
    23
renatofilho@870
    24
#ifdef HAVE_CONFIG_H
renatofilho@870
    25
#include "config.h"
renatofilho@870
    26
#endif
renatofilho@870
    27
renatofilho@870
    28
renatofilho@877
    29
#include <glib/gi18n.h>
renatofilho@870
    30
#include <gmyth/gmyth.h>
renatofilho@870
    31
#include <dbus/dbus-glib-bindings.h>
renatofilho@870
    32
renatofilho@870
    33
#include "gmyth-dbus-common.h"
renatofilho@870
    34
#include "gmyth-dbus-server.h"
renatofilho@870
    35
renatofilho@870
    36
#define MYTH_DEFAULT_DB             "mythconverg"
renatofilho@870
    37
renatofilho@877
    38
enum
renatofilho@877
    39
{
renatofilho@881
    40
    SHUTDOWN,
renatofilho@878
    41
    LAST_SIGNAL
renatofilho@878
    42
};
renatofilho@878
    43
renatofilho@878
    44
enum
renatofilho@878
    45
{
renatofilho@877
    46
    GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
    47
    GMYTH_DBUS_ERROR_CONNECTION,
renatofilho@877
    48
    GMYTH_DBUS_ERROR_EPG,
renatofilho@877
    49
    GMYTH_DBUS_ERROR_SCHEDULE
renatofilho@877
    50
};
renatofilho@877
    51
renatofilho@877
    52
#define GMYTH_DBUS_ERROR gmyth_dbus_error_quark ()
renatofilho@877
    53
renatofilho@877
    54
GQuark
renatofilho@877
    55
gmyth_dbus_error_quark (void)
renatofilho@877
    56
{
renatofilho@877
    57
      return g_quark_from_static_string ("gmyth-dbus-error-quark");
renatofilho@877
    58
}
renatofilho@877
    59
renatofilho@870
    60
typedef struct _GMythDbusServerPrivate GMythDbusServerPrivate;
renatofilho@870
    61
renatofilho@870
    62
struct _GMythDbusServerPrivate
renatofilho@870
    63
{
renatofilho@870
    64
    GMythBackendInfo *myth_backend;
renatofilho@874
    65
    gboolean         connected;
renatofilho@870
    66
    GMythEPG         *myth_epg;
renatofilho@870
    67
    GMythScheduler   *myth_scheduler;
renatofilho@881
    68
renatofilho@881
    69
    guint            shutdown_cb_id;
renatofilho@870
    70
};
renatofilho@870
    71
renatofilho@870
    72
#define GMYTH_DBUS_SERVER_GET_PRIVATE(o) \
renatofilho@870
    73
    (G_TYPE_INSTANCE_GET_PRIVATE ((o), GMYTH_DBUS_SERVER_TYPE, GMythDbusServerPrivate))
renatofilho@870
    74
renatofilho@881
    75
static void gmyth_dbus_server_class_init        (GMythDbusServerClass *klass);
renatofilho@881
    76
static void gmyth_dbus_server_init              (GMythDbusServer *self);
renatofilho@881
    77
static void gmyth_dbus_server_dispose           (GObject *object);
renatofilho@881
    78
static void gmyth_dbus_server_finalize          (GObject *object);
renatofilho@881
    79
static void gmyth_dbus_server_cancel_shutdown   (GMythDbusServer *self);
renatofilho@881
    80
static gboolean gmyth_dbus_server_shutdown_cb   (GMythDbusServer *self);
renatofilho@870
    81
renatofilho@870
    82
/* Dbus */
renatofilho@870
    83
static gboolean gmyth_dbus_server_connect           (GObject *obj,
renatofilho@870
    84
                                                     const gchar *host,
renatofilho@870
    85
                                                     guint port,
renatofilho@870
    86
                                                     const gchar *user,
renatofilho@870
    87
                                                     const gchar *password,
renatofilho@870
    88
                                                     GError **error);
renatofilho@870
    89
static gboolean gmyth_dbus_server_get_channel_list  (GObject *obj,
renatofilho@870
    90
                                                     GPtrArray **channels,
renatofilho@870
    91
                                                     GError **error);
renatofilho@870
    92
static gboolean gmyth_dbus_server_get_channel_info  (GObject *obj,
renatofilho@870
    93
                                                     gint channel_id,
renatofilho@870
    94
                                                     GValueArray **info,
renatofilho@870
    95
                                                     GError **error);
renatofilho@870
    96
static gboolean gmyth_dbus_server_file_exists       (GObject *obj,
renatofilho@870
    97
                                                     const gchar *file_name,
renatofilho@870
    98
                                                     gboolean *exists,
renatofilho@870
    99
                                                     GError **error);
renatofilho@870
   100
static gboolean gmyth_dbus_server_get_recorded_list (GObject *obj,
renatofilho@870
   101
                                                     GPtrArray **channels,
renatofilho@870
   102
                                                     GError **error);
renatofilho@870
   103
static gboolean gmyth_dbus_server_get_recorded_info (GObject *obj,
renatofilho@870
   104
                                                     const gchar *basename,
renatofilho@870
   105
                                                     GValueArray **info,
renatofilho@870
   106
                                                     GError **error);
renatofilho@870
   107
static gboolean gmyth_dbus_server_get_program_list  (GObject *obj,
renatofilho@870
   108
                                                     gint channel_id,
renatofilho@870
   109
                                                     const gchar *start_time,
renatofilho@870
   110
                                                     const gchar *end_time,
renatofilho@877
   111
                                                     GPtrArray **program_list,
renatofilho@877
   112
                                                     GError **error);
renatofilho@870
   113
static gboolean gmyth_dbus_server_get_schedule_list (GObject *obj,
renatofilho@877
   114
                                                     GPtrArray **schedule_list,
renatofilho@877
   115
                                                     GError **error);
renatofilho@870
   116
static gboolean gmyth_dbus_server_connected         (GObject *obj,
renatofilho@870
   117
                                                     gboolean *status,
renatofilho@870
   118
                                                     GError **error);
renatofilho@870
   119
static gboolean gmyth_dbus_server_disconnect        (GObject *obj,
renatofilho@870
   120
                                                     GError **error);
renatofilho@878
   121
static void     gmyth_dbus_server_internal_disconnect
renatofilho@878
   122
                                                    (GObject *obj,
renatofilho@878
   123
                                                     GError **error);
renatofilho@870
   124
static gboolean gmyth_dbus_server_get_server_info   (GObject *obj,
renatofilho@870
   125
                                                     guint64 *total_space,
renatofilho@870
   126
                                                     guint64 *used_space,
renatofilho@870
   127
                                                     guint64 *free_space,
renatofilho@870
   128
                                                     GError **error);
renatofilho@870
   129
static gboolean gmyth_dbus_server_get_thumbnail     (GObject *obj,
renatofilho@870
   130
                                                     const gchar *uri,
renatofilho@870
   131
                                                     GByteArray **image,
renatofilho@870
   132
                                                     GError **error);
renatofilho@870
   133
static gboolean gmyth_dbus_server_get_channel_icon  (GObject *obj,
renatofilho@870
   134
                                                     guint channel_id,
renatofilho@870
   135
                                                     GByteArray **icon,
renatofilho@870
   136
                                                     GError **error);
renatofilho@870
   137
static gboolean gmyth_dbus_server_stop_recording    (GObject *obj,
renatofilho@870
   138
                                                     guint channel_id,
renatofilho@870
   139
                                                     gboolean *result,
renatofilho@870
   140
                                                     GError **error);
renatofilho@870
   141
static gboolean gmyth_dbus_server_add_schedule      (GObject *obj,
renatofilho@870
   142
                                                     guint channel_id,
renatofilho@870
   143
                                                     guint program_id,
renatofilho@870
   144
                                                     const gchar *start_time,
renatofilho@870
   145
                                                     const gchar *end_time,
renatofilho@870
   146
                                                     gboolean recurring,
renatofilho@870
   147
                                                     const gchar *description,
renatofilho@870
   148
                                                     guint *schedule_id,
renatofilho@870
   149
                                                     GError **error);
renatofilho@870
   150
static gboolean gmyth_dbus_server_add_exception     (GObject *obj,
renatofilho@870
   151
                                                     guint schedule_id,
renatofilho@870
   152
                                                     guint channel_id,
renatofilho@870
   153
                                                     guint program_id,
renatofilho@870
   154
                                                     const gchar *start_time,
renatofilho@870
   155
                                                     const gchar *end_time,
renatofilho@870
   156
                                                     const gchar *description,
renatofilho@870
   157
                                                     GError **error);
renatofilho@870
   158
static gboolean gmyth_dbus_server_remove_schedule   (GObject *obj,
renatofilho@870
   159
                                                     guint schedule_id,
renatofilho@870
   160
                                                     GError **error);
renatofilho@870
   161
renatofilho@870
   162
renatofilho@870
   163
#include "gmyth-dbus-server-glue.h"
renatofilho@870
   164
renatofilho@870
   165
renatofilho@878
   166
static guint  signals[LAST_SIGNAL] = { 0 };
renatofilho@878
   167
renatofilho@870
   168
G_DEFINE_TYPE (GMythDbusServer, gmyth_dbus_server, G_TYPE_OBJECT);
renatofilho@870
   169
renatofilho@870
   170
static void
renatofilho@870
   171
gmyth_dbus_server_class_init (GMythDbusServerClass *klass)
renatofilho@870
   172
{
renatofilho@870
   173
    GObjectClass *object_class = G_OBJECT_CLASS (klass);
renatofilho@870
   174
renatofilho@870
   175
    g_type_class_add_private (klass, sizeof (GMythDbusServerPrivate));
renatofilho@870
   176
renatofilho@870
   177
    object_class->dispose = gmyth_dbus_server_dispose;
renatofilho@870
   178
    object_class->finalize = gmyth_dbus_server_finalize;
renatofilho@870
   179
renatofilho@881
   180
    signals[SHUTDOWN] = 
renatofilho@881
   181
            g_signal_new ("shutdown",
renatofilho@878
   182
                          G_OBJECT_CLASS_TYPE (object_class),
renatofilho@878
   183
                          G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
renatofilho@878
   184
                          0,
renatofilho@878
   185
                          NULL, NULL,
renatofilho@878
   186
                          g_cclosure_marshal_VOID__VOID,
renatofilho@878
   187
                          G_TYPE_NONE, 0, G_TYPE_NONE);
renatofilho@878
   188
renatofilho@870
   189
    dbus_g_object_type_install_info (GMYTH_DBUS_SERVER_TYPE,
renatofilho@870
   190
                                     &dbus_glib_gmyth_dbus_server_object_info);
renatofilho@870
   191
}
renatofilho@870
   192
renatofilho@870
   193
static void
renatofilho@870
   194
gmyth_dbus_server_init (GMythDbusServer *self)
renatofilho@870
   195
{
renatofilho@870
   196
}
renatofilho@870
   197
renatofilho@870
   198
static void
renatofilho@870
   199
gmyth_dbus_server_dispose (GObject *object)
renatofilho@870
   200
{
renatofilho@870
   201
    G_OBJECT_CLASS (gmyth_dbus_server_parent_class)->dispose (object);
renatofilho@870
   202
}
renatofilho@870
   203
renatofilho@870
   204
static void
renatofilho@870
   205
gmyth_dbus_server_finalize (GObject *object)
renatofilho@870
   206
{
renatofilho@870
   207
    G_OBJECT_CLASS (gmyth_dbus_server_parent_class)->finalize (object);
renatofilho@870
   208
}
renatofilho@870
   209
renatofilho@870
   210
static gboolean
renatofilho@877
   211
gmyth_dbus_server_connect_epg (GMythDbusServer *server, GError **error)
renatofilho@870
   212
{
renatofilho@870
   213
    GMythDbusServerPrivate *priv;
renatofilho@870
   214
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (server);
renatofilho@870
   215
renatofilho@874
   216
    if (!priv->connected)
renatofilho@877
   217
    {
renatofilho@877
   218
        g_set_error (error,
renatofilho@877
   219
                     GMYTH_DBUS_ERROR,
renatofilho@877
   220
                     GMYTH_DBUS_ERROR_CONNECTION,
renatofilho@877
   221
                     _("Not connected"));
renatofilho@877
   222
renatofilho@874
   223
        return FALSE;
renatofilho@877
   224
    }
renatofilho@874
   225
renatofilho@870
   226
    if (!priv->myth_epg)
renatofilho@870
   227
    {
renatofilho@870
   228
        priv->myth_epg = gmyth_epg_new();
renatofilho@870
   229
        if (!gmyth_epg_connect (priv->myth_epg, priv->myth_backend))
renatofilho@870
   230
        {
renatofilho@870
   231
            g_object_unref (priv->myth_epg);
renatofilho@870
   232
            priv->myth_epg = NULL;
renatofilho@877
   233
renatofilho@877
   234
            g_set_error (error,
renatofilho@877
   235
                         GMYTH_DBUS_ERROR,
renatofilho@877
   236
                         GMYTH_DBUS_ERROR_EPG,
renatofilho@877
   237
                         _("Fail to connect with EPG"));
renatofilho@877
   238
renatofilho@870
   239
            return FALSE;
renatofilho@879
   240
renatofilho@870
   241
        }
renatofilho@870
   242
    }
renatofilho@870
   243
renatofilho@870
   244
    return TRUE;
renatofilho@870
   245
}
renatofilho@870
   246
renatofilho@870
   247
static gboolean
renatofilho@877
   248
gmyth_dbus_server_connect_scheduler (GMythDbusServer *server,
renatofilho@877
   249
                                     GError **error)
renatofilho@870
   250
{
renatofilho@870
   251
    GMythDbusServerPrivate *priv;
renatofilho@870
   252
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (server);
renatofilho@870
   253
renatofilho@874
   254
    if (!priv->connected)
renatofilho@877
   255
    {
renatofilho@877
   256
        g_set_error (error,
renatofilho@877
   257
                     GMYTH_DBUS_ERROR,
renatofilho@877
   258
                     GMYTH_DBUS_ERROR_CONNECTION,
renatofilho@877
   259
                     _("Not connected"));
renatofilho@877
   260
renatofilho@874
   261
        return FALSE;
renatofilho@877
   262
    }
renatofilho@874
   263
renatofilho@870
   264
    if (!priv->myth_scheduler)
renatofilho@870
   265
    {
renatofilho@870
   266
        priv->myth_scheduler = gmyth_scheduler_new ();
renatofilho@870
   267
        if (!gmyth_scheduler_connect (priv->myth_scheduler,
renatofilho@870
   268
                                      priv->myth_backend))
renatofilho@870
   269
        {
renatofilho@870
   270
            g_object_unref (priv->myth_scheduler);
renatofilho@870
   271
            priv->myth_scheduler = NULL;
renatofilho@877
   272
renatofilho@877
   273
            g_set_error (error,
renatofilho@877
   274
                         GMYTH_DBUS_ERROR,
renatofilho@877
   275
                         GMYTH_DBUS_ERROR_SCHEDULE,
renatofilho@877
   276
                         _("Fail to connect with Schedule"));
renatofilho@877
   277
renatofilho@870
   278
            return FALSE;
renatofilho@870
   279
        }
renatofilho@870
   280
    }
renatofilho@870
   281
renatofilho@870
   282
    return TRUE;
renatofilho@870
   283
}
renatofilho@870
   284
renatofilho@870
   285
static gboolean
renatofilho@870
   286
gmyth_dbus_server_connect  (GObject *obj,
renatofilho@870
   287
                            const gchar *host,
renatofilho@870
   288
                            guint port,
renatofilho@870
   289
                            const gchar *user,
renatofilho@870
   290
                            const gchar *password,
renatofilho@870
   291
                            GError **error)
renatofilho@870
   292
{
renatofilho@874
   293
    GMythSocket *s;
renatofilho@870
   294
    GMythDbusServerPrivate *priv;
renatofilho@873
   295
renatofilho@873
   296
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@873
   297
renatofilho@870
   298
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   299
renatofilho@877
   300
    if (priv->connected)
renatofilho@876
   301
    {
renatofilho@879
   302
        gmyth_dbus_server_internal_disconnect (obj, NULL);
renatofilho@876
   303
    }
renatofilho@870
   304
renatofilho@881
   305
    gmyth_dbus_server_cancel_shutdown (GMYTH_DBUS_SERVER (obj));
renatofilho@881
   306
renatofilho@870
   307
    priv->myth_backend = gmyth_backend_info_new_full (host,
renatofilho@870
   308
                                                      user,
renatofilho@870
   309
                                                      password,
renatofilho@870
   310
                                                      MYTH_DEFAULT_DB,
renatofilho@870
   311
                                                      port);
renatofilho@874
   312
renatofilho@874
   313
    s = gmyth_backend_info_get_connected_socket (priv->myth_backend);
renatofilho@874
   314
    if (s)
renatofilho@874
   315
    {
renatofilho@879
   316
        priv->connected = TRUE;
renatofilho@874
   317
        g_object_unref (s);
renatofilho@874
   318
    }
renatofilho@874
   319
    else
renatofilho@874
   320
    {
renatofilho@879
   321
        priv->connected = FALSE;
renatofilho@874
   322
        g_object_unref (priv->myth_backend);
renatofilho@874
   323
        priv->myth_backend = NULL;
renatofilho@877
   324
renatofilho@877
   325
        g_set_error (error,
renatofilho@877
   326
                     GMYTH_DBUS_ERROR,
renatofilho@877
   327
                     GMYTH_DBUS_ERROR_CONNECTION,
renatofilho@877
   328
                     _("Fail to connect with backend"));
renatofilho@874
   329
    }
renatofilho@874
   330
renatofilho@879
   331
    return priv->connected;
renatofilho@870
   332
}
renatofilho@870
   333
renatofilho@870
   334
static gboolean
renatofilho@870
   335
gmyth_dbus_server_connected (GObject *obj,
renatofilho@870
   336
                             gboolean *status,
renatofilho@870
   337
                             GError **error)
renatofilho@870
   338
{
renatofilho@870
   339
    GMythDbusServerPrivate *priv;
renatofilho@873
   340
renatofilho@873
   341
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@873
   342
renatofilho@870
   343
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   344
renatofilho@870
   345
    if (priv->myth_backend)
renatofilho@870
   346
        *status = TRUE;
renatofilho@870
   347
    else
renatofilho@870
   348
        *status = FALSE;
renatofilho@870
   349
    return TRUE;
renatofilho@870
   350
}
renatofilho@870
   351
renatofilho@870
   352
static gboolean
renatofilho@870
   353
gmyth_dbus_server_disconnect (GObject *obj,
renatofilho@870
   354
                              GError **error)
renatofilho@870
   355
{
renatofilho@879
   356
    GMythDbusServerPrivate *priv;
renatofilho@878
   357
renatofilho@879
   358
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@879
   359
    if (priv->connected)
renatofilho@879
   360
    {
renatofilho@879
   361
        gmyth_dbus_server_internal_disconnect (obj, error);
renatofilho@881
   362
        priv->shutdown_cb_id = g_timeout_add (60000,
renatofilho@881
   363
                (GSourceFunc) gmyth_dbus_server_shutdown_cb, obj);
renatofilho@879
   364
    }
renatofilho@878
   365
renatofilho@878
   366
    return TRUE;
renatofilho@878
   367
}
renatofilho@878
   368
renatofilho@878
   369
static void
renatofilho@878
   370
gmyth_dbus_server_internal_disconnect (GObject *obj,
renatofilho@878
   371
                                       GError **error)
renatofilho@878
   372
{
renatofilho@870
   373
    GMythDbusServerPrivate *priv;
renatofilho@873
   374
renatofilho@873
   375
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@873
   376
renatofilho@870
   377
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   378
renatofilho@870
   379
    if (priv->myth_epg)
renatofilho@870
   380
    {
renatofilho@870
   381
        g_object_unref (priv->myth_epg);
renatofilho@870
   382
        priv->myth_epg = NULL;
renatofilho@870
   383
    }
renatofilho@870
   384
renatofilho@870
   385
renatofilho@870
   386
    if (priv->myth_backend)
renatofilho@870
   387
    {
renatofilho@870
   388
        g_object_unref (priv->myth_backend);
renatofilho@870
   389
        priv->myth_backend = NULL;
renatofilho@870
   390
    }
renatofilho@870
   391
renatofilho@870
   392
    if (priv->myth_scheduler)
renatofilho@870
   393
    {
renatofilho@870
   394
        g_object_unref (priv->myth_scheduler);
renatofilho@870
   395
        priv->myth_scheduler = NULL;
renatofilho@870
   396
    }
renatofilho@879
   397
renatofilho@879
   398
    priv->connected = FALSE;
renatofilho@870
   399
}
renatofilho@870
   400
renatofilho@870
   401
static gboolean
renatofilho@870
   402
gmyth_dbus_server_get_server_info (GObject *obj,
renatofilho@870
   403
                                   guint64 *total_space,
renatofilho@870
   404
                                   guint64 *used_space,
renatofilho@870
   405
                                   guint64 *free_space,
renatofilho@870
   406
                                   GError **error)
renatofilho@870
   407
{
renatofilho@870
   408
    GMythBackendDetails *details;
renatofilho@870
   409
    GMythDbusServerPrivate *priv;
renatofilho@870
   410
    gboolean ret = FALSE;
renatofilho@870
   411
    GMythSocket *socket;
renatofilho@870
   412
renatofilho@870
   413
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   414
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   415
renatofilho@870
   416
    g_return_val_if_fail (priv->myth_backend != NULL, FALSE);
renatofilho@870
   417
renatofilho@870
   418
    socket = gmyth_backend_info_get_connected_socket (priv->myth_backend);
renatofilho@870
   419
renatofilho@877
   420
    if (!socket)
renatofilho@877
   421
    {
renatofilho@877
   422
        g_set_error (error,
renatofilho@877
   423
                     GMYTH_DBUS_ERROR,
renatofilho@877
   424
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   425
                     _("MythTv not avaliable"));
renatofilho@877
   426
        return FALSE;
renatofilho@877
   427
renatofilho@877
   428
    }
renatofilho@877
   429
renatofilho@870
   430
    details = NULL;
renatofilho@870
   431
    gmyth_util_get_backend_details (socket,
renatofilho@870
   432
                                    &details);
renatofilho@870
   433
    if (details)
renatofilho@870
   434
    {
renatofilho@870
   435
        *total_space = details->total_space;
renatofilho@870
   436
        *used_space = details->used_space;
renatofilho@870
   437
        *free_space = *total_space - *used_space;
renatofilho@870
   438
        gmyth_util_backend_details_free (details);
renatofilho@870
   439
renatofilho@870
   440
        ret = TRUE;
renatofilho@870
   441
    }
renatofilho@877
   442
    else
renatofilho@877
   443
    {
renatofilho@877
   444
        g_set_error (error,
renatofilho@877
   445
                     GMYTH_DBUS_ERROR,
renatofilho@877
   446
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   447
                     _("Fail to get MythTv details"));
renatofilho@879
   448
}
renatofilho@870
   449
renatofilho@870
   450
    g_object_unref (socket);
renatofilho@870
   451
renatofilho@870
   452
    return ret;
renatofilho@870
   453
}
renatofilho@870
   454
renatofilho@870
   455
renatofilho@870
   456
static void
renatofilho@870
   457
gmyth_dbus_server_parse_channel_info (GMythChannelInfo *info,
renatofilho@870
   458
                                      GValue *val)
renatofilho@870
   459
{
renatofilho@870
   460
    dbus_g_type_struct_set (val,
renatofilho@870
   461
                            0, info->channel_ID,
renatofilho@870
   462
                            1, info->channel_num->str,
renatofilho@870
   463
                            2, info->channel_name->str,
renatofilho@870
   464
                            3, info->channel_icon->str,
renatofilho@870
   465
                            G_MAXUINT);
renatofilho@870
   466
}
renatofilho@870
   467
renatofilho@870
   468
static gboolean 
renatofilho@870
   469
gmyth_dbus_server_get_channel_info  (GObject *obj,
renatofilho@870
   470
                                     gint channel_id,
renatofilho@870
   471
                                     GValueArray **info,
renatofilho@870
   472
                                     GError **error)
renatofilho@870
   473
{
renatofilho@870
   474
    GType ch_type;
renatofilho@870
   475
    GMythChannelInfo *ch_info;
renatofilho@870
   476
    GMythDbusServerPrivate *priv;
renatofilho@870
   477
renatofilho@870
   478
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   479
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   480
renatofilho@870
   481
    g_return_val_if_fail (priv->myth_backend != NULL, FALSE);
renatofilho@873
   482
renatofilho@877
   483
    if (!gmyth_dbus_server_connect_epg (GMYTH_DBUS_SERVER (obj), error))
renatofilho@877
   484
    {
renatofilho@873
   485
        return FALSE;
renatofilho@877
   486
    }
renatofilho@870
   487
renatofilho@870
   488
    ch_type = GMYTH_DBUS_CHANNEL_G_TYPE;
renatofilho@870
   489
renatofilho@870
   490
    ch_info = gmyth_epg_get_channel_info (priv->myth_epg, channel_id);
renatofilho@870
   491
    if (ch_info)
renatofilho@870
   492
    {
renatofilho@870
   493
        GValue v = { 0, };
renatofilho@870
   494
        g_value_init (&v, ch_type);
renatofilho@870
   495
        g_value_take_boxed (&v, dbus_g_type_specialized_construct (ch_type));
renatofilho@870
   496
        gmyth_dbus_server_parse_channel_info (ch_info, &v);
renatofilho@870
   497
renatofilho@870
   498
        *info = g_value_get_boxed (&v);
renatofilho@870
   499
        return TRUE;
renatofilho@870
   500
    }
renatofilho@877
   501
    else
renatofilho@877
   502
    {
renatofilho@877
   503
        g_set_error (error,
renatofilho@877
   504
                     GMYTH_DBUS_ERROR,
renatofilho@877
   505
                     GMYTH_DBUS_ERROR_EPG,
renatofilho@877
   506
                     _("no channel info avaliable"));
renatofilho@877
   507
    }
renatofilho@870
   508
renatofilho@870
   509
    return FALSE;
renatofilho@870
   510
}
renatofilho@870
   511
renatofilho@870
   512
renatofilho@870
   513
static gboolean
renatofilho@870
   514
gmyth_dbus_server_get_channel_list (GObject *obj,
renatofilho@870
   515
                                    GPtrArray **channels,
renatofilho@870
   516
                                    GError **error)
renatofilho@870
   517
{
renatofilho@870
   518
    GList *lst;
renatofilho@870
   519
    GList *walk;
renatofilho@870
   520
    int len;
renatofilho@870
   521
    GType ch_type;
renatofilho@870
   522
    GMythDbusServerPrivate *priv;
renatofilho@870
   523
renatofilho@870
   524
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   525
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   526
renatofilho@870
   527
    g_return_val_if_fail (priv->myth_backend != NULL, FALSE);
renatofilho@877
   528
    if (!gmyth_dbus_server_connect_epg (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
   529
        return FALSE;
renatofilho@870
   530
renatofilho@870
   531
renatofilho@873
   532
    lst = NULL;
renatofilho@870
   533
    len = gmyth_epg_get_channel_list (priv->myth_epg, &lst);
renatofilho@870
   534
renatofilho@870
   535
    *channels = g_ptr_array_sized_new (len);
renatofilho@870
   536
    ch_type = GMYTH_DBUS_CHANNEL_G_TYPE;
renatofilho@870
   537
renatofilho@870
   538
    for (walk = lst; walk != NULL; walk = walk->next)
renatofilho@870
   539
    {
renatofilho@870
   540
        GValue ch = { 0, };
renatofilho@870
   541
        GMythChannelInfo *data;
renatofilho@870
   542
renatofilho@870
   543
        data = (GMythChannelInfo *) walk->data;
renatofilho@870
   544
renatofilho@870
   545
        g_value_init (&ch, ch_type);
renatofilho@870
   546
        g_value_take_boxed (&ch, dbus_g_type_specialized_construct (ch_type));
renatofilho@870
   547
        gmyth_dbus_server_parse_channel_info (data, &ch);
renatofilho@870
   548
        g_ptr_array_add (*channels, g_value_get_boxed (&ch));
renatofilho@870
   549
    }
renatofilho@870
   550
renatofilho@870
   551
    gmyth_free_channel_list (lst);
renatofilho@870
   552
    return TRUE;
renatofilho@870
   553
}
renatofilho@870
   554
renatofilho@870
   555
static gboolean
renatofilho@870
   556
gmyth_dbus_server_file_exists (GObject *obj,
renatofilho@870
   557
                               const gchar *file_name,
renatofilho@870
   558
                               gboolean *exists,
renatofilho@870
   559
                               GError **error)
renatofilho@870
   560
{
renatofilho@870
   561
    GMythDbusServerPrivate *priv;
renatofilho@870
   562
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   563
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   564
renatofilho@870
   565
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@870
   566
renatofilho@870
   567
    *exists = gmyth_util_file_exists (priv->myth_backend, file_name);
renatofilho@870
   568
renatofilho@870
   569
    return TRUE;
renatofilho@870
   570
}
renatofilho@870
   571
renatofilho@870
   572
static gboolean
renatofilho@870
   573
gmyth_dbus_server_get_program_list (GObject *obj,
renatofilho@870
   574
                                    gint channel_id,
renatofilho@870
   575
                                    const gchar *start_time,
renatofilho@870
   576
                                    const gchar *end_time,
renatofilho@877
   577
                                    GPtrArray **programs,
renatofilho@877
   578
                                    GError **error)
renatofilho@870
   579
{
renatofilho@870
   580
    GList *list;
renatofilho@870
   581
    GList *walk;
renatofilho@870
   582
    gint len;
renatofilho@870
   583
    GType program_type;
renatofilho@870
   584
    GTimeVal start_time_val;
renatofilho@870
   585
    GTimeVal end_time_val;
renatofilho@870
   586
    GMythDbusServerPrivate *priv;
renatofilho@870
   587
renatofilho@870
   588
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   589
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   590
renatofilho@870
   591
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@877
   592
    if (!gmyth_dbus_server_connect_epg (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
   593
        return FALSE;
renatofilho@870
   594
renatofilho@870
   595
    g_time_val_from_iso8601 (start_time, &start_time_val);
renatofilho@870
   596
    g_time_val_from_iso8601 (end_time, &end_time_val);
renatofilho@870
   597
renatofilho@870
   598
    list = NULL;
renatofilho@870
   599
    len = gmyth_epg_get_program_list (priv->myth_epg,
renatofilho@870
   600
                                      &list,
renatofilho@870
   601
                                      channel_id,
renatofilho@870
   602
                                      &start_time_val,
renatofilho@870
   603
                                      &end_time_val);
renatofilho@870
   604
renatofilho@870
   605
    *programs = g_ptr_array_sized_new (len);
renatofilho@870
   606
    program_type = GMYTH_DBUS_PROGRAM_G_TYPE;
renatofilho@870
   607
renatofilho@870
   608
    for (walk = list; walk != NULL; walk = walk->next)
renatofilho@870
   609
    {
renatofilho@870
   610
        GValue program = { 0, };
renatofilho@870
   611
        gchar *start_str;
renatofilho@870
   612
        gchar *end_str;
renatofilho@870
   613
        GMythProgramInfo *data;
renatofilho@870
   614
renatofilho@870
   615
        data = (GMythProgramInfo *) walk->data;
renatofilho@870
   616
renatofilho@870
   617
        if (!data)
renatofilho@870
   618
            continue;
renatofilho@870
   619
renatofilho@870
   620
        g_value_init (&program, program_type);
renatofilho@870
   621
        g_value_take_boxed (&program,
renatofilho@870
   622
                            dbus_g_type_specialized_construct (program_type));
renatofilho@870
   623
renatofilho@870
   624
        start_str = g_time_val_to_iso8601 (data->startts);
renatofilho@870
   625
        end_str = g_time_val_to_iso8601 (data->endts);
renatofilho@870
   626
renatofilho@870
   627
        dbus_g_type_struct_set (&program,
renatofilho@870
   628
                                0, data->chanid->str,
renatofilho@870
   629
                                1, start_str,
renatofilho@870
   630
                                2, end_str,
renatofilho@870
   631
                                3, data->title->str,
renatofilho@870
   632
                                4, data->subtitle->str,
renatofilho@870
   633
                                5, data->description->str,
renatofilho@870
   634
                                6, data->category->str,
renatofilho@870
   635
                                G_MAXUINT);
renatofilho@870
   636
renatofilho@870
   637
        g_ptr_array_add (*programs, g_value_get_boxed (&program));
renatofilho@870
   638
        g_free (start_str);
renatofilho@870
   639
        g_free (end_str);
renatofilho@870
   640
    }
renatofilho@870
   641
renatofilho@870
   642
    if (list)
renatofilho@870
   643
        gmyth_free_program_list (list);
renatofilho@870
   644
renatofilho@870
   645
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   646
    return TRUE;
renatofilho@870
   647
}
renatofilho@870
   648
renatofilho@870
   649
static void
renatofilho@870
   650
gmyth_dbus_server_parse_recorded_info (RecordedInfo *info,
renatofilho@870
   651
                                       GValue *val)
renatofilho@870
   652
{
renatofilho@870
   653
    gchar *start_str;
renatofilho@870
   654
    gchar *end_str;
renatofilho@870
   655
renatofilho@870
   656
    start_str = g_time_val_to_iso8601 (info->start_time);
renatofilho@870
   657
    end_str = g_time_val_to_iso8601 (info->end_time);
renatofilho@870
   658
renatofilho@870
   659
    dbus_g_type_struct_set (val,
renatofilho@870
   660
                            0, info->record_id,
renatofilho@870
   661
                            1, info->program_id,
renatofilho@870
   662
                            2, info->channel_id,
renatofilho@870
   663
                            3, start_str,
renatofilho@870
   664
                            4, end_str,
renatofilho@870
   665
                            5, info->title->str,
renatofilho@870
   666
                            6, info->subtitle->str,
renatofilho@870
   667
                            7, info->description->str,
renatofilho@870
   668
                            8, info->category->str,
renatofilho@870
   669
                            9, info->basename->str,
renatofilho@870
   670
                            10, info->filesize,
renatofilho@870
   671
                            G_MAXUINT);
renatofilho@870
   672
    g_free (start_str);
renatofilho@870
   673
    g_free (end_str);
renatofilho@870
   674
}
renatofilho@870
   675
renatofilho@870
   676
static gboolean
renatofilho@870
   677
gmyth_dbus_server_get_recorded_info (GObject *obj,
renatofilho@870
   678
                                     const gchar *basename,
renatofilho@870
   679
                                     GValueArray **info,
renatofilho@870
   680
                                     GError **error)
renatofilho@870
   681
{
renatofilho@870
   682
    GType record_type;
renatofilho@870
   683
    GMythDbusServerPrivate *priv;
renatofilho@870
   684
    RecordedInfo *record_info;
renatofilho@870
   685
renatofilho@870
   686
renatofilho@870
   687
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   688
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   689
renatofilho@870
   690
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@873
   691
renatofilho@877
   692
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
   693
        return FALSE;
renatofilho@870
   694
renatofilho@870
   695
    record_type = GMYTH_DBUS_RECORD_G_TYPE;
renatofilho@870
   696
renatofilho@870
   697
    record_info = gmyth_scheduler_get_recorded_info (priv->myth_scheduler,
renatofilho@870
   698
                                                     basename);
renatofilho@870
   699
renatofilho@870
   700
    if (record_info)
renatofilho@870
   701
    {
renatofilho@870
   702
        GValue r = { 0, };
renatofilho@870
   703
renatofilho@870
   704
        g_value_init (&r, record_type);
renatofilho@870
   705
        g_value_take_boxed (&r,
renatofilho@870
   706
                            dbus_g_type_specialized_construct (record_type));
renatofilho@870
   707
renatofilho@870
   708
        gmyth_dbus_server_parse_recorded_info (record_info, &r);
renatofilho@870
   709
        gmyth_recorded_info_free (record_info);
renatofilho@870
   710
renatofilho@870
   711
        *info = g_value_get_boxed (&r);
renatofilho@870
   712
renatofilho@870
   713
        return TRUE;
renatofilho@870
   714
    }
renatofilho@877
   715
    else
renatofilho@877
   716
    {
renatofilho@877
   717
        g_set_error (error,
renatofilho@877
   718
                     GMYTH_DBUS_ERROR,
renatofilho@877
   719
                     GMYTH_DBUS_ERROR_EPG,
renatofilho@877
   720
                     _("no record info avaliable"));
renatofilho@877
   721
renatofilho@877
   722
    }
renatofilho@870
   723
renatofilho@870
   724
    return FALSE;
renatofilho@870
   725
}
renatofilho@870
   726
renatofilho@870
   727
renatofilho@870
   728
static gboolean
renatofilho@870
   729
gmyth_dbus_server_get_recorded_list (GObject *obj,
renatofilho@870
   730
                                     GPtrArray **records,
renatofilho@870
   731
                                     GError **error)
renatofilho@870
   732
{
renatofilho@870
   733
    GList *list;
renatofilho@870
   734
    GList *walk;
renatofilho@870
   735
    gint len;
renatofilho@870
   736
    GType record_type;
renatofilho@870
   737
    GMythDbusServerPrivate *priv;
renatofilho@870
   738
renatofilho@870
   739
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   740
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   741
renatofilho@874
   742
    g_return_val_if_fail (priv->myth_backend != NULL, FALSE);
renatofilho@877
   743
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
   744
        return FALSE;
renatofilho@870
   745
renatofilho@870
   746
renatofilho@870
   747
    len = gmyth_scheduler_get_recorded_list (priv->myth_scheduler,
renatofilho@870
   748
                                             &list);
renatofilho@870
   749
renatofilho@870
   750
    record_type = GMYTH_DBUS_RECORD_G_TYPE;
renatofilho@870
   751
    *records = g_ptr_array_sized_new (len);
renatofilho@870
   752
renatofilho@870
   753
    for (walk = list; walk != NULL; walk = walk->next)
renatofilho@870
   754
    {
renatofilho@870
   755
        GValue record = { 0, };
renatofilho@870
   756
        RecordedInfo *data;
renatofilho@870
   757
renatofilho@870
   758
        data = (RecordedInfo *) walk->data;
renatofilho@870
   759
renatofilho@870
   760
        g_value_init (&record, record_type);
renatofilho@870
   761
        g_value_take_boxed (&record,
renatofilho@870
   762
                            dbus_g_type_specialized_construct (record_type));
renatofilho@870
   763
renatofilho@870
   764
        gmyth_dbus_server_parse_recorded_info (data, &record);
renatofilho@870
   765
renatofilho@870
   766
        g_ptr_array_add (*records, g_value_get_boxed (&record));
renatofilho@870
   767
        //g_value_unset (&record);
renatofilho@870
   768
    }
renatofilho@870
   769
renatofilho@870
   770
    gmyth_recorded_info_list_free (list);
renatofilho@870
   771
renatofilho@870
   772
    return TRUE;
renatofilho@870
   773
renatofilho@870
   774
}
renatofilho@870
   775
renatofilho@870
   776
static gboolean
renatofilho@870
   777
gmyth_dbus_server_get_schedule_list (GObject *obj,
renatofilho@877
   778
                                     GPtrArray **schedules,
renatofilho@877
   779
                                     GError **error)
renatofilho@870
   780
{
renatofilho@870
   781
    GList *list;
renatofilho@870
   782
    GList *walk;
renatofilho@870
   783
    gint len;
renatofilho@870
   784
    GType schedule_type;
renatofilho@870
   785
    GMythDbusServerPrivate *priv;
renatofilho@870
   786
renatofilho@870
   787
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   788
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   789
renatofilho@870
   790
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@877
   791
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
   792
        return FALSE;
renatofilho@870
   793
renatofilho@870
   794
renatofilho@870
   795
    len = gmyth_scheduler_get_schedule_list (priv->myth_scheduler,
renatofilho@870
   796
                                             &list);
renatofilho@870
   797
renatofilho@870
   798
    *schedules = g_ptr_array_sized_new (len);
renatofilho@870
   799
    schedule_type = GMYTH_DBUS_SCHEDULE_G_TYPE;
renatofilho@870
   800
renatofilho@870
   801
    for (walk = list; walk != NULL; walk = walk->next)
renatofilho@870
   802
    {
renatofilho@870
   803
        GValue schedule = { 0, };
renatofilho@870
   804
        ScheduleInfo *data;
renatofilho@870
   805
        gchar *start_str_time;
renatofilho@870
   806
        gchar *end_str_time;
renatofilho@870
   807
renatofilho@870
   808
        data = (ScheduleInfo *) walk->data;
renatofilho@870
   809
renatofilho@870
   810
        g_value_init (&schedule, schedule_type);
renatofilho@870
   811
        g_value_take_boxed (&schedule,
renatofilho@870
   812
                            dbus_g_type_specialized_construct (schedule_type));
renatofilho@870
   813
renatofilho@870
   814
        start_str_time = g_time_val_to_iso8601 (data->start_time);
renatofilho@870
   815
        end_str_time = g_time_val_to_iso8601 (data->end_time);
renatofilho@870
   816
renatofilho@870
   817
        dbus_g_type_struct_set (&schedule,
renatofilho@870
   818
                            0, data->schedule_id,
renatofilho@870
   819
                            1, data->program_id,
renatofilho@870
   820
                            2, data->channel_id,
renatofilho@870
   821
                            3, start_str_time,
renatofilho@870
   822
                            4, end_str_time,
renatofilho@870
   823
                            5, data->title->str,
renatofilho@870
   824
                            6, data->subtitle->str,
renatofilho@870
   825
                            7, data->description->str,
renatofilho@870
   826
                            8, data->category->str,
renatofilho@870
   827
                            9, data->type,
renatofilho@870
   828
                            G_MAXUINT);
renatofilho@870
   829
renatofilho@870
   830
        g_ptr_array_add (*schedules, g_value_get_boxed (&schedule));
renatofilho@870
   831
renatofilho@870
   832
        g_free (start_str_time);
renatofilho@870
   833
        g_free (end_str_time);
renatofilho@870
   834
    }
renatofilho@870
   835
renatofilho@870
   836
    gmyth_schedule_info_list_free (list);
renatofilho@870
   837
renatofilho@870
   838
    return TRUE;
renatofilho@870
   839
}
renatofilho@870
   840
renatofilho@870
   841
renatofilho@870
   842
static gboolean
renatofilho@870
   843
gmyth_dbus_server_get_thumbnail (GObject *obj,
renatofilho@870
   844
                                const gchar *uri,
renatofilho@870
   845
                                GByteArray **image,
renatofilho@870
   846
                                GError **error)
renatofilho@870
   847
{
renatofilho@870
   848
    GMythFileTransfer *file_transfer;
renatofilho@870
   849
    glong filesize;
renatofilho@870
   850
    GMythFileReadResult result;
renatofilho@870
   851
    GMythDbusServerPrivate *priv;
renatofilho@870
   852
renatofilho@870
   853
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   854
renatofilho@873
   855
    file_transfer = NULL;
renatofilho@873
   856
renatofilho@870
   857
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@870
   858
renatofilho@870
   859
    if (!gmyth_util_file_exists (priv->myth_backend, uri))
renatofilho@877
   860
    {
renatofilho@877
   861
        g_set_error (error,
renatofilho@877
   862
                     GMYTH_DBUS_ERROR,
renatofilho@877
   863
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   864
                     _("File not exists"));
renatofilho@877
   865
renatofilho@870
   866
        goto fail;
renatofilho@877
   867
    }
renatofilho@870
   868
renatofilho@870
   869
    file_transfer = gmyth_file_transfer_new (priv->myth_backend);
renatofilho@870
   870
renatofilho@870
   871
    if (!gmyth_file_transfer_open (file_transfer, uri))
renatofilho@877
   872
    {
renatofilho@877
   873
        g_set_error (error,
renatofilho@877
   874
                     GMYTH_DBUS_ERROR,
renatofilho@877
   875
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   876
                     _("Fail to open file"));
renatofilho@870
   877
        goto fail;
renatofilho@877
   878
    }
renatofilho@870
   879
renatofilho@870
   880
    filesize = gmyth_file_transfer_get_filesize (file_transfer);
renatofilho@870
   881
    if (filesize <= 0)
renatofilho@870
   882
        goto fail;
renatofilho@870
   883
renatofilho@870
   884
    *image = g_byte_array_new ();
renatofilho@870
   885
    result = gmyth_file_transfer_read (file_transfer, *image, filesize, FALSE);
renatofilho@870
   886
    if (result == GMYTH_FILE_READ_ERROR)
renatofilho@877
   887
    {
renatofilho@877
   888
        g_set_error (error,
renatofilho@877
   889
                     GMYTH_DBUS_ERROR,
renatofilho@877
   890
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   891
                     _("Fail to read file"));
renatofilho@877
   892
renatofilho@870
   893
       goto fail;
renatofilho@877
   894
    }
renatofilho@870
   895
renatofilho@870
   896
    gmyth_file_transfer_close (file_transfer);
renatofilho@870
   897
    g_object_unref (file_transfer);
renatofilho@870
   898
renatofilho@870
   899
    if (filesize > (*image)->len)
renatofilho@877
   900
    {
renatofilho@877
   901
        g_set_error (error,
renatofilho@877
   902
                     GMYTH_DBUS_ERROR,
renatofilho@877
   903
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   904
                     _("Empty file"));
renatofilho@877
   905
renatofilho@870
   906
        goto fail;
renatofilho@877
   907
    }
renatofilho@870
   908
renatofilho@870
   909
    return TRUE;
renatofilho@870
   910
renatofilho@870
   911
fail:
renatofilho@870
   912
    if (*image)
renatofilho@870
   913
        g_byte_array_free (*image, TRUE);
renatofilho@870
   914
    g_object_unref(file_transfer);
renatofilho@870
   915
    return FALSE;
renatofilho@870
   916
}
renatofilho@870
   917
renatofilho@870
   918
static gboolean
renatofilho@870
   919
gmyth_dbus_server_get_channel_icon (GObject *obj,
renatofilho@870
   920
                                    guint channel_id,
renatofilho@870
   921
                                    GByteArray **icon,
renatofilho@870
   922
                                    GError **error)
renatofilho@870
   923
{
renatofilho@870
   924
    GMythChannelInfo *channel = NULL;
renatofilho@870
   925
    guint8 *icon_data;
renatofilho@870
   926
    guint icon_length;
renatofilho@870
   927
    GMythDbusServerPrivate *priv;
renatofilho@870
   928
renatofilho@870
   929
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   930
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   931
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@870
   932
renatofilho@870
   933
    channel = gmyth_epg_get_channel_info (priv->myth_epg,
renatofilho@870
   934
                                         (gint) channel_id);
renatofilho@870
   935
renatofilho@870
   936
    *icon = NULL;
renatofilho@870
   937
renatofilho@870
   938
    if (channel == NULL)
renatofilho@877
   939
    {
renatofilho@877
   940
        g_set_error (error,
renatofilho@877
   941
                     GMYTH_DBUS_ERROR,
renatofilho@877
   942
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   943
                     _("Invalid channel"));
renatofilho@877
   944
renatofilho@870
   945
        return FALSE;
renatofilho@877
   946
    }
renatofilho@870
   947
renatofilho@870
   948
    if (!gmyth_epg_channel_has_icon(priv->myth_epg, channel))
renatofilho@870
   949
    {
renatofilho@870
   950
        gmyth_channel_info_free (channel);
renatofilho@877
   951
        g_set_error (error,
renatofilho@877
   952
                     GMYTH_DBUS_ERROR,
renatofilho@877
   953
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   954
                     _("Channel does not have icon available"));
renatofilho@877
   955
renatofilho@870
   956
        return FALSE;
renatofilho@870
   957
    }
renatofilho@870
   958
renatofilho@870
   959
    icon_data = NULL;
renatofilho@870
   960
    icon_length = 0;
renatofilho@870
   961
    if (!gmyth_epg_channel_get_icon (priv->myth_epg,
renatofilho@870
   962
                                     channel,
renatofilho@870
   963
                                     &icon_data,
renatofilho@870
   964
                                     &icon_length)) 
renatofilho@870
   965
    {
renatofilho@870
   966
        gmyth_channel_info_free (channel);
renatofilho@877
   967
        g_set_error (error,
renatofilho@877
   968
                     GMYTH_DBUS_ERROR,
renatofilho@877
   969
                     GMYTH_DBUS_ERROR_MYTHTV,
renatofilho@877
   970
                     _("Could not get channel icon for channel id = %u"),
renatofilho@877
   971
                     channel_id);
renatofilho@870
   972
        return FALSE;
renatofilho@870
   973
    }
renatofilho@870
   974
renatofilho@870
   975
    *icon = g_byte_array_sized_new (icon_length);
renatofilho@870
   976
    *icon = g_byte_array_append (*icon, icon_data, icon_length);
renatofilho@870
   977
renatofilho@870
   978
    g_free (icon_data);
renatofilho@870
   979
    gmyth_channel_info_free(channel);
renatofilho@870
   980
    return TRUE;
renatofilho@870
   981
}
renatofilho@870
   982
renatofilho@870
   983
renatofilho@870
   984
static gboolean
renatofilho@870
   985
gmyth_dbus_server_stop_recording (GObject *obj,
renatofilho@870
   986
                                  guint channel_id,
renatofilho@870
   987
                                  gboolean *result,
renatofilho@870
   988
                                  GError **error)
renatofilho@870
   989
{
renatofilho@870
   990
    gboolean ret = FALSE;
renatofilho@870
   991
    GMythDbusServerPrivate *priv;
renatofilho@870
   992
renatofilho@870
   993
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
   994
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
   995
renatofilho@870
   996
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@877
   997
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
   998
        return FALSE;
renatofilho@870
   999
renatofilho@870
  1000
    ret = gmyth_scheduler_stop_recording (priv->myth_scheduler,
renatofilho@870
  1001
                                          channel_id);
renatofilho@870
  1002
renatofilho@870
  1003
    return ret;
renatofilho@870
  1004
}
renatofilho@870
  1005
renatofilho@870
  1006
static ScheduleInfo*
renatofilho@870
  1007
gmyth_dbus_server_new_schedule_info (const gchar* description,
renatofilho@870
  1008
                                     guint channel_id,
renatofilho@870
  1009
                                     guint program_id,
renatofilho@870
  1010
                                     GTimeVal *start_vtime,
renatofilho@870
  1011
                                     GTimeVal *end_vtime)
renatofilho@870
  1012
{
renatofilho@870
  1013
    ScheduleInfo   *new_sched_info;
renatofilho@870
  1014
renatofilho@870
  1015
    new_sched_info = g_new0(ScheduleInfo, 1);
renatofilho@870
  1016
renatofilho@870
  1017
    /* record_id == -1 for generating a new id */
renatofilho@870
  1018
    new_sched_info->schedule_id = -1;
renatofilho@870
  1019
renatofilho@870
  1020
    new_sched_info->channel_id = channel_id;
renatofilho@870
  1021
    new_sched_info->program_id = program_id;
renatofilho@870
  1022
    new_sched_info->start_time = g_new0 (GTimeVal, 1);
renatofilho@870
  1023
    *new_sched_info->start_time = *start_vtime;
renatofilho@870
  1024
    new_sched_info->end_time = g_new0 (GTimeVal, 1);
renatofilho@870
  1025
    *new_sched_info->end_time = *end_vtime;
renatofilho@870
  1026
renatofilho@870
  1027
    /* TODO: there is no frequency field */
renatofilho@870
  1028
    /*new_sched_info->frequency = -1;*/
renatofilho@870
  1029
renatofilho@870
  1030
    if (description != NULL) {
renatofilho@870
  1031
        /* FIXME: description parameter is used as title and description */
renatofilho@870
  1032
        new_sched_info->title = g_string_new(description);
renatofilho@870
  1033
        new_sched_info->description = g_string_new(description);
renatofilho@870
  1034
    }
renatofilho@870
  1035
renatofilho@870
  1036
    return new_sched_info;
renatofilho@870
  1037
}
renatofilho@870
  1038
renatofilho@870
  1039
static gboolean
renatofilho@870
  1040
gmyth_dbus_server_add_schedule (GObject *obj,
renatofilho@870
  1041
                                guint channel_id,
renatofilho@870
  1042
                                guint program_id,
renatofilho@870
  1043
                                const gchar *start_time,
renatofilho@870
  1044
                                const gchar *end_time,
renatofilho@870
  1045
                                gboolean recurring,
renatofilho@870
  1046
                                const gchar *description,
renatofilho@870
  1047
                                guint *schedule_id,
renatofilho@870
  1048
                                GError **error)
renatofilho@870
  1049
{
renatofilho@870
  1050
    ScheduleInfo *sch_info;
renatofilho@870
  1051
    GTimeVal start_vtime;
renatofilho@870
  1052
    GTimeVal end_vtime;
renatofilho@870
  1053
    GMythDbusServerPrivate *priv;
renatofilho@870
  1054
renatofilho@870
  1055
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
  1056
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
  1057
renatofilho@870
  1058
    *schedule_id = 0;
renatofilho@870
  1059
renatofilho@870
  1060
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@873
  1061
renatofilho@877
  1062
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
  1063
        return FALSE;
renatofilho@870
  1064
renatofilho@870
  1065
renatofilho@870
  1066
    g_time_val_from_iso8601 (start_time, &start_vtime);
renatofilho@870
  1067
    g_time_val_from_iso8601 (end_time, &end_vtime);
renatofilho@870
  1068
    sch_info = gmyth_dbus_server_new_schedule_info (description,
renatofilho@870
  1069
                                                    channel_id,
renatofilho@870
  1070
                                                    program_id,
renatofilho@870
  1071
                                                    &start_vtime,
renatofilho@870
  1072
                                                    &end_vtime);
renatofilho@870
  1073
    if (sch_info != NULL) {
renatofilho@870
  1074
        GMythScheduleType type;
renatofilho@870
  1075
        GTimeVal t_now;
renatofilho@870
  1076
        gboolean has_record;
renatofilho@870
  1077
renatofilho@870
  1078
        type = (recurring ?
renatofilho@870
  1079
                GMYTH_SCHEDULE_ALL_OCCURRENCES :
renatofilho@870
  1080
                GMYTH_SCHEDULE_ONE_OCCURRENCE);
renatofilho@870
  1081
renatofilho@870
  1082
        g_get_current_time (&t_now);
renatofilho@870
  1083
renatofilho@870
  1084
        has_record = gmyth_scheduler_was_recorded_before (priv->myth_scheduler, 
renatofilho@870
  1085
                                                          channel_id,
renatofilho@870
  1086
                                                          (time_t) start_vtime.tv_sec);
renatofilho@870
  1087
renatofilho@870
  1088
renatofilho@870
  1089
        if ((t_now.tv_sec >= start_vtime.tv_sec)
renatofilho@870
  1090
            && (t_now.tv_sec <= end_vtime.tv_sec) && has_record)
renatofilho@870
  1091
        {
renatofilho@870
  1092
            GMythSocket    *socket;
renatofilho@870
  1093
            gboolean        res = FALSE;
renatofilho@870
  1094
renatofilho@870
  1095
            socket = gmyth_backend_info_get_connected_socket (priv->myth_backend);
renatofilho@870
  1096
            res = gmyth_scheduler_reactivate_schedule(priv->myth_scheduler,
renatofilho@870
  1097
                                                      channel_id,
renatofilho@870
  1098
                                                      (time_t) start_vtime.tv_sec);
renatofilho@870
  1099
            if (res) {
renatofilho@870
  1100
                GMythStringList *slist = gmyth_string_list_new();
renatofilho@870
  1101
renatofilho@870
  1102
                gmyth_string_list_append_char_array(slist, "RESCHEDULE_RECORDINGS 0");
renatofilho@870
  1103
                gmyth_socket_sendreceive_stringlist(socket, slist);
renatofilho@870
  1104
                res = (gmyth_string_list_get_int(slist, 0) == 1);
renatofilho@870
  1105
                g_object_unref(slist);
renatofilho@870
  1106
            }
renatofilho@870
  1107
renatofilho@870
  1108
            g_object_unref(socket);
renatofilho@870
  1109
            return res;
renatofilho@870
  1110
        }
renatofilho@870
  1111
        else
renatofilho@870
  1112
        {
renatofilho@870
  1113
            if (!gmyth_scheduler_add_schedule_full (priv->myth_scheduler,
renatofilho@870
  1114
                                                    sch_info,
renatofilho@870
  1115
                                                    type))
renatofilho@870
  1116
            {
renatofilho@870
  1117
                g_warning("Could not add schedule entry");
renatofilho@870
  1118
                return FALSE;
renatofilho@870
  1119
            }
renatofilho@870
  1120
renatofilho@870
  1121
            (*schedule_id) = sch_info->schedule_id;
renatofilho@870
  1122
            gmyth_schedule_info_free (sch_info);
renatofilho@870
  1123
            return TRUE;
renatofilho@870
  1124
        }
renatofilho@870
  1125
    }
renatofilho@870
  1126
    return FALSE;
renatofilho@870
  1127
}
renatofilho@870
  1128
renatofilho@870
  1129
static gboolean
renatofilho@870
  1130
gmyth_dbus_server_add_exception (GObject *obj,
renatofilho@870
  1131
                                 guint schedule_id,
renatofilho@870
  1132
                                 guint channel_id,
renatofilho@870
  1133
                                 guint program_id,
renatofilho@870
  1134
                                 const gchar *start_time,
renatofilho@870
  1135
                                 const gchar *end_time,
renatofilho@870
  1136
                                 const gchar *description,
renatofilho@870
  1137
                                 GError **error)
renatofilho@870
  1138
{
renatofilho@870
  1139
    ScheduleInfo *sch_info;
renatofilho@870
  1140
    GTimeVal start_vtime;
renatofilho@870
  1141
    GTimeVal end_vtime;
renatofilho@870
  1142
    GMythDbusServerPrivate *priv;
renatofilho@870
  1143
renatofilho@870
  1144
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
  1145
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
  1146
renatofilho@870
  1147
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@873
  1148
renatofilho@877
  1149
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
  1150
        return FALSE;
renatofilho@870
  1151
renatofilho@870
  1152
    g_time_val_from_iso8601 (start_time, &start_vtime);
renatofilho@870
  1153
    g_time_val_from_iso8601 (end_time, &end_vtime);
renatofilho@870
  1154
renatofilho@870
  1155
    sch_info = gmyth_dbus_server_new_schedule_info (description,
renatofilho@870
  1156
                                                   channel_id,
renatofilho@870
  1157
                                                   program_id,
renatofilho@870
  1158
                                                   &start_vtime,
renatofilho@870
  1159
                                                   &end_vtime);
renatofilho@870
  1160
    if (sch_info != NULL)
renatofilho@870
  1161
    {
renatofilho@870
  1162
       if (!gmyth_scheduler_add_exception (priv->myth_scheduler,
renatofilho@870
  1163
                                           schedule_id,
renatofilho@870
  1164
                                           sch_info))
renatofilho@870
  1165
       {
renatofilho@870
  1166
           g_warning ("Could not add schedule exception");
renatofilho@870
  1167
           gmyth_schedule_info_free (sch_info);
renatofilho@870
  1168
           return FALSE;
renatofilho@870
  1169
       }
renatofilho@870
  1170
renatofilho@870
  1171
       gmyth_schedule_info_free (sch_info);
renatofilho@870
  1172
       return TRUE;
renatofilho@870
  1173
    }
renatofilho@870
  1174
    return FALSE;
renatofilho@870
  1175
}
renatofilho@870
  1176
renatofilho@870
  1177
static gboolean
renatofilho@870
  1178
gmyth_dbus_server_remove_schedule (GObject *obj,
renatofilho@870
  1179
                                   guint schedule_id,
renatofilho@870
  1180
                                   GError **error)
renatofilho@870
  1181
{
renatofilho@870
  1182
    GMythDbusServerPrivate *priv;
renatofilho@870
  1183
renatofilho@870
  1184
    g_debug ("%s:%d", __FUNCTION__, __LINE__);
renatofilho@870
  1185
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj);
renatofilho@870
  1186
renatofilho@870
  1187
    g_return_val_if_fail (priv->myth_backend, FALSE);
renatofilho@873
  1188
renatofilho@877
  1189
    if (!gmyth_dbus_server_connect_scheduler (GMYTH_DBUS_SERVER (obj), error))
renatofilho@873
  1190
        return FALSE;
renatofilho@870
  1191
renatofilho@870
  1192
    return gmyth_scheduler_delete_schedule (priv->myth_scheduler, schedule_id);
renatofilho@870
  1193
}
renatofilho@870
  1194
renatofilho@870
  1195
GMythDbusServer*
renatofilho@870
  1196
gmyth_dbus_server_start_dbus_service (void)
renatofilho@870
  1197
{
renatofilho@870
  1198
    GError *error = NULL;
renatofilho@870
  1199
    DBusGProxy *proxy;
renatofilho@870
  1200
    DBusGConnection *bus;
renatofilho@870
  1201
    guint request_ret;
renatofilho@870
  1202
    GMythDbusServer *self;
renatofilho@870
  1203
renatofilho@870
  1204
    self = g_object_new (GMYTH_DBUS_SERVER_TYPE, NULL);
renatofilho@870
  1205
    g_return_val_if_fail (self, FALSE);
renatofilho@870
  1206
renatofilho@870
  1207
    /* TODO: should verify if this service was already started */
renatofilho@870
  1208
renatofilho@870
  1209
    /* connect to session bus */
renatofilho@870
  1210
    bus = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
renatofilho@870
  1211
    if (bus == NULL) 
renatofilho@870
  1212
    {
renatofilho@870
  1213
        g_warning ("Could not connect to dbus: %s", error->message);
renatofilho@870
  1214
        g_error_free (error);
renatofilho@870
  1215
        goto fail;
renatofilho@870
  1216
    }
renatofilho@870
  1217
renatofilho@870
  1218
    /* register dbus object */
renatofilho@870
  1219
    dbus_g_connection_register_g_object (bus,
renatofilho@870
  1220
        GMYTH_DBUS_SERVER_PATH, G_OBJECT (self));
renatofilho@870
  1221
renatofilho@870
  1222
    proxy = dbus_g_proxy_new_for_name (bus, DBUS_SERVICE_DBUS,
renatofilho@870
  1223
                                       DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS);
renatofilho@870
  1224
renatofilho@870
  1225
    /* registering download manager service */
renatofilho@870
  1226
    if (!org_freedesktop_DBus_request_name (proxy, GMYTH_DBUS_SERVER_IFACE,
renatofilho@870
  1227
                                            0, &request_ret, &error)) 
renatofilho@870
  1228
    {
renatofilho@870
  1229
        g_warning ("Unable to register dbus service: %d %s",
renatofilho@870
  1230
                   error->code, error->message);
renatofilho@870
  1231
        g_error_free (error);
renatofilho@870
  1232
        goto fail;
renatofilho@870
  1233
    }
renatofilho@870
  1234
renatofilho@870
  1235
    if (request_ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) 
renatofilho@870
  1236
    {
renatofilho@870
  1237
        g_warning ("Got result code %u from requesting name", request_ret);
renatofilho@870
  1238
        goto fail;
renatofilho@870
  1239
    }
renatofilho@870
  1240
renatofilho@870
  1241
    return self;
renatofilho@870
  1242
renatofilho@870
  1243
fail:
renatofilho@870
  1244
    g_object_unref (self);
renatofilho@870
  1245
    return NULL;
renatofilho@870
  1246
}
renatofilho@870
  1247
renatofilho@881
  1248
renatofilho@881
  1249
static void 
renatofilho@881
  1250
gmyth_dbus_server_cancel_shutdown (GMythDbusServer *self)
renatofilho@881
  1251
{
renatofilho@881
  1252
    GMythDbusServerPrivate *priv;
renatofilho@881
  1253
renatofilho@881
  1254
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (self);
renatofilho@881
  1255
renatofilho@881
  1256
    if (priv->shutdown_cb_id)
renatofilho@881
  1257
    {
renatofilho@881
  1258
        g_source_remove (priv->shutdown_cb_id);
renatofilho@881
  1259
        priv->shutdown_cb_id = 0;
renatofilho@881
  1260
    }
renatofilho@881
  1261
}
renatofilho@881
  1262
renatofilho@881
  1263
static gboolean
renatofilho@881
  1264
gmyth_dbus_server_shutdown_cb (GMythDbusServer *self)
renatofilho@881
  1265
{
renatofilho@881
  1266
    GMythDbusServerPrivate *priv;
renatofilho@881
  1267
renatofilho@881
  1268
    priv = GMYTH_DBUS_SERVER_GET_PRIVATE (self);
renatofilho@881
  1269
renatofilho@881
  1270
    priv->shutdown_cb_id = 0;
renatofilho@881
  1271
    g_signal_emit (self, signals[SHUTDOWN], 0);
renatofilho@881
  1272
    return FALSE;
renatofilho@881
  1273
}
renatofilho@881
  1274