aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_mpris_dbus.c
blob: 19f7594a197f58ba0b3939df7ec5301c947380be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/* $Id: plugin_mpris_dbus.c 870 2009-04-09 14:55:23Z abbaskosan $
 * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/plugin_mpris_dbus.c $
 *
 * plugin mpris dbus
 *
 * Copyright (C) 2009 Abbas Kosan <abbaskosan@gmail.com>
 * Copyright (C) 2004, 2005, 2006, 2007, 2008 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * LCD4Linux is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

/* 
 * exported functions:
 *
 * int plugin_init_mpris_dbus (void)
 *  adds various functions
 *
 */

#include "config.h"

#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>

#include <stdio.h>

// TODO: dbus-1 folder should be added to include path 
#include <dbus/dbus.h>

/* these should always be included */
#include "debug.h"
#include "plugin.h"
#include "hash.h"

#ifdef WITH_DMALLOC
#include <dmalloc.h>
#endif

static HASH DBUS;

// D-Bus variables
static DBusMessage *msg;
static DBusMessageIter args;
static DBusConnection *conn;
static DBusError err;
static DBusPendingCall *pending;

static void read_MetaData()
{
    // put pairs to hash table
    int current_type;
    // TODO: check size of char arrays
    char str_key[255];
    char str_value[2048];
    DBusMessageIter subiter1;

    dbus_message_iter_recurse(&args, &subiter1);
    while ((current_type = dbus_message_iter_get_arg_type(&subiter1)) != DBUS_TYPE_INVALID) {
	DBusMessageIter subiter2;
	DBusMessageIter subiter3;

	strcpy(str_key, "");
	strcpy(str_value, "");
	dbus_message_iter_recurse(&subiter1, &subiter2);
	current_type = dbus_message_iter_get_arg_type(&subiter2);

	if (current_type == DBUS_TYPE_INVALID)
	    break;
	if (current_type == DBUS_TYPE_STRING) {
	    void *str_tmp1;
	    void *str_tmp2;
	    dbus_message_iter_get_basic(&subiter2, &str_tmp1);
	    strcpy(str_key, str_tmp1);
	    dbus_message_iter_next(&subiter2);
	    dbus_message_iter_recurse(&subiter2, &subiter3);
	    current_type = dbus_message_iter_get_arg_type(&subiter3);
	    switch (current_type) {
	    case DBUS_TYPE_STRING:
		{
		    dbus_message_iter_get_basic(&subiter3, &str_tmp2);
		    strcpy(str_value, str_tmp2);
		    break;
		}
	    case DBUS_TYPE_INT32:
		{
		    dbus_int32_t val;
		    dbus_message_iter_get_basic(&subiter3, &val);
		    sprintf(str_value, "%d", val);
		    break;
		}
	    case DBUS_TYPE_INT64:
		{
		    dbus_int64_t val;
		    dbus_message_iter_get_basic(&subiter3, &val);
		    sprintf(str_value, "%jd", (intmax_t) val);
		    break;
		}
	    default:
		// unexpected type
		//printf (" (2-dbus-monitor too dumb to decipher arg type '%c')\n", current_type);
		break;
	    }
	    // add key-value pair to hash
	    hash_put(&DBUS, str_key, str_value);
	    //printf("Key: %s , Value: %s\t",str_key,str_value);
	}
	//else
	// unexpected type
	//printf (" (2-dbus-monitor too dumb to decipher arg type '%c')\n", current_type);                                                              
	dbus_message_iter_next(&subiter1);
    }
}

static int listen_TrackChange(void)
{
    // non blocking read of the next available message
    dbus_connection_read_write(conn, 0);
    msg = dbus_connection_pop_message(conn);

    // nothing to do if we haven't read a message
    if (NULL == msg)
	return 0;

    // check if the message is a signal from the correct interface and with the correct name
    if (dbus_message_is_signal(msg, "org.freedesktop.MediaPlayer", "TrackChange")) {
	// read the parameters
	// TrackChange signal returns an array of string-variant pairs
	if (!dbus_message_iter_init(msg, &args)) {
	    // No parameter !
	    //fprintf(stderr, "Message Has No Parameters\n");
	    return 0;
	} else if (DBUS_TYPE_ARRAY != dbus_message_iter_get_arg_type(&args)) {
	    // Argument is not array
	    //fprintf(stderr, "Argument is not array!\n");
	    return 0;
	} else
	    read_MetaData();
	//printf("Got Signal\n");
    }
    // free message
    dbus_message_unref(msg);
    return 1;
}

static unsigned long int call_PositionGet(char *target)
{
    unsigned long int value = 0;

    // create a new method call and check for errors
    msg = dbus_message_new_method_call(target,	//target for the method call e.g "org.kde.amarok"
				       "/Player",	// object to call on
				       "org.freedesktop.MediaPlayer",	// interface to call on
				       "PositionGet");	// method name
    if (NULL == msg) {
	//fprintf(stderr, "Message Null\n");
	return 0;
    }
    // send message and get a handle for a reply
    if (!dbus_connection_send_with_reply(conn, msg, &pending, -1)) {	// -1 is default timeout
	//fprintf(stderr, "Out Of Memory!\n");
	return 0;
    }
    if (NULL == pending) {
	//fprintf(stderr, "Pending Call Null\n");
	return 0;
    }
    dbus_connection_flush(conn);

    //printf("Request Sent\n");

    // free message
    dbus_message_unref(msg);

    // block until we recieve a reply
    dbus_pending_call_block(pending);

    // get the reply message
    msg = dbus_pending_call_steal_reply(pending);
    if (NULL == msg) {
	//fprintf(stderr, "Reply Null\n");
	return 0;
    }
    // free the pending message handle
    dbus_pending_call_unref(pending);

    // read the parameters
    if (!dbus_message_iter_init(msg, &args)) {
	//fprintf(stderr, "Message has no arguments!\n");
	return 0;
    }
    if (DBUS_TYPE_INT32 != dbus_message_iter_get_arg_type(&args)) {
	//fprintf(stderr, "Argument is not INT32!\n");
	return 0;
    } else
	dbus_message_iter_get_basic(&args, &value);
    //printf("\nGot Reply: %d", value);

    // free message
    dbus_message_unref(msg);

    return value;
}

static void signal_TrackChange(RESULT * result, RESULT * arg1)
{
    char *str_tmp;
    /*
       if (listen_TrackChange() < 0) {
       SetResult(&result, R_STRING, "");
       return;
       }
     */
    listen_TrackChange();
    str_tmp = hash_get(&DBUS, R2S(arg1), NULL);
    if (str_tmp == NULL)
	str_tmp = "";

    SetResult(&result, R_STRING, str_tmp);
}

static void method_PositionGet(RESULT * result, RESULT * arg1)
{
    unsigned long int mtime = 0;
    unsigned long int value = 0;
    double ratio = 0;
    char *str_tmp;

    value = call_PositionGet(R2S(arg1));
    //printf("\ncalled :call_PositionGet %d",value);


    str_tmp = hash_get(&DBUS, "mtime", NULL);
    if (str_tmp != NULL)
	mtime = atoi(str_tmp);
    if (mtime > 0)
	ratio = (double) (((float) value / mtime) * 100);

    //printf("\nvalue:%d mtime:%d ratio:%f",value,mtime,ratio);
    // return actual position as percentage of total length 
    SetResult(&result, R_NUMBER, &ratio);
}

/* plugin initialization */
/* MUST NOT be declared 'static'! */
int plugin_init_mpris_dbus(void)
{
    hash_create(&DBUS);

    int ret;

    //printf("Listening for signals\n");

    // initialise the errors
    dbus_error_init(&err);

    // connect to the bus and check for errors
    conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
    /*
       if (dbus_error_is_set(&err)) {
       fprintf(stderr, "Connection Error (%s)\n", err.message);
       dbus_error_free(&err);
       }
     */
    if (NULL == conn)
	return 0;

    // request our name on the bus and check for errors
    ret = dbus_bus_request_name(conn, "org.lcd4linux.mpris_dbus", DBUS_NAME_FLAG_REPLACE_EXISTING, &err);
    /*
       if (dbus_error_is_set(&err)) {
       fprintf(stderr, "Name Error (%s)\n", err.message);
       dbus_error_free(&err);
       }
     */
    if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret)
	return 0;

    // add a rule for which messages we want to see
    dbus_bus_add_match(conn, "type='signal',interface='org.freedesktop.MediaPlayer'", &err);	// see signals from the given interface
    dbus_connection_flush(conn);
    /*
       if (dbus_error_is_set(&err)) {
       fprintf(stderr, "Match Error (%s)\n", err.message);
       return 0;
       }
     */
    //printf("Match rule sent\n");


    /* register all our cool functions */
    /* the second parameter is the number of arguments */
    /* -1 stands for variable argument list */
    AddFunction("mpris_dbus::signal_TrackChange", 1, signal_TrackChange);
    AddFunction("mpris_dbus::method_PositionGet", 1, method_PositionGet);

    return 0;
}

void plugin_exit_mpris_dbus(void)
{
    /* free any allocated memory */
    /* close filedescriptors */
    hash_destroy(&DBUS);

    if (NULL != msg)
	dbus_message_unref(msg);
    dbus_error_free(&err);
}