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