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