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