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