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