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