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