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