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