aboutsummaryrefslogtreecommitdiff
path: root/systray/item.c
blob: 8a13181f1e76482b57b1be6c8fc940f5a9f572e4 (plain) (blame)
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#include "item.h"

#include "helpers.h"
#include "icon.h"
#include "watcher.h"

#include <dbus/dbus.h>

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

// IWYU pragma: no_include "dbus/dbus-protocol.h"
// IWYU pragma: no_include "dbus/dbus-shared.h"

#define RULEBSIZE 256
#define MIN(A, B) ((A) < (B) ? (A) : (B))

static const char *match_string =
	"type='signal',"
	"sender='%s',"
	"interface='" SNI_NAME
	"',"
	"member='NewIcon'";

static Watcher *
item_get_watcher(const Item *item)
{
	if (!item)
		return NULL;

	return item->watcher;
}

static DBusConnection *
item_get_connection(const Item *item)
{
	if (!item || !item->watcher)
		return NULL;

	return item->watcher->conn;
}

static const uint8_t *
extract_image(DBusMessageIter *iter, dbus_int32_t *width, dbus_int32_t *height,
              int *size)
{
	DBusMessageIter vals, bytes;
	const uint8_t *buf;

	dbus_message_iter_recurse(iter, &vals);
	if (dbus_message_iter_get_arg_type(&vals) != DBUS_TYPE_INT32)
		goto fail;
	dbus_message_iter_get_basic(&vals, width);

	dbus_message_iter_next(&vals);
	if (dbus_message_iter_get_arg_type(&vals) != DBUS_TYPE_INT32)
		goto fail;
	dbus_message_iter_get_basic(&vals, height);

	dbus_message_iter_next(&vals);
	if (dbus_message_iter_get_arg_type(&vals) != DBUS_TYPE_ARRAY)
		goto fail;
	dbus_message_iter_recurse(&vals, &bytes);
	if (dbus_message_iter_get_arg_type(&bytes) != DBUS_TYPE_BYTE)
		goto fail;
	dbus_message_iter_get_fixed_array(&bytes, &buf, size);
	if (size == 0)
		goto fail;

	return buf;

fail:
	return NULL;
}

static int
select_image(DBusMessageIter *iter, int target_width)
{
	DBusMessageIter vals;
	dbus_int32_t cur_width;
	int i = 0;

	do {
		dbus_message_iter_recurse(iter, &vals);
		if (dbus_message_iter_get_arg_type(&vals) != DBUS_TYPE_INT32)
			return -1;
		dbus_message_iter_get_basic(&vals, &cur_width);
		if (cur_width >= target_width)
			return i;

		i++;
	} while (dbus_message_iter_next(iter));

	/* return last index if desired not found */
	return i--;
}

static void
menupath_ready_handler(DBusPendingCall *pending, void *data)
{
	Item *item = data;

	DBusError err = DBUS_ERROR_INIT;
	DBusMessage *reply = NULL;
	DBusMessageIter iter, opath;
	char *path_dup = NULL;
	const char *path;

	reply = dbus_pending_call_steal_reply(pending);
	if (!reply)
		goto fail;

	if (dbus_set_error_from_message(&err, reply)) {
		fprintf(stderr, "DBus Error: %s - %s: Couldn't get menupath\n",
		        err.name, err.message);
		goto fail;
	}

	dbus_message_iter_init(reply, &iter);
	if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
		goto fail;
	dbus_message_iter_recurse(&iter, &opath);
	if (dbus_message_iter_get_arg_type(&opath) != DBUS_TYPE_OBJECT_PATH)
		goto fail;
	dbus_message_iter_get_basic(&opath, &path);

	path_dup = strdup(path);
	if (!path_dup)
		goto fail;

	item->menu_busobj = path_dup;

	dbus_message_unref(reply);
	dbus_pending_call_unref(pending);
	return;

fail:
	free(path_dup);
	dbus_error_free(&err);
	if (reply)
		dbus_message_unref(reply);
	if (pending)
		dbus_pending_call_unref(pending);
}

/*
 * Gets the Id dbus property, which is the name of the application,
 * most of the time...
 * The initial letter will be used as a fallback icon
 */
static void
id_ready_handler(DBusPendingCall *pending, void *data)
{
	Item *item = data;

	DBusError err = DBUS_ERROR_INIT;
	DBusMessage *reply = NULL;
	DBusMessageIter iter, string;
	Watcher *watcher;
	char *id_dup = NULL;
	const char *id;

	watcher = item_get_watcher(item);

	reply = dbus_pending_call_steal_reply(pending);
	if (!reply)
		goto fail;

	if (dbus_set_error_from_message(&err, reply)) {
		fprintf(stderr, "DBus Error: %s - %s: Couldn't get appid\n",
		        err.name, err.message);
		goto fail;
	}

	dbus_message_iter_init(reply, &iter);
	if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
		goto fail;
	dbus_message_iter_recurse(&iter, &string);
	if (dbus_message_iter_get_arg_type(&string) != DBUS_TYPE_STRING)
		goto fail;
	dbus_message_iter_get_basic(&string, &id);

	id_dup = strdup(id);
	if (!id_dup)
		goto fail;
	item->appid = id_dup;

	/* Don't trigger update if this item already has a real icon */
	if (!item->icon)
		watcher_update_trays(watcher);

	dbus_message_unref(reply);
	dbus_pending_call_unref(pending);
	return;

fail:
	dbus_error_free(&err);
	if (id_dup)
		free(id_dup);
	if (reply)
		dbus_message_unref(reply);
	if (pending)
		dbus_pending_call_unref(pending);
}

static void
pixmap_ready_handler(DBusPendingCall *pending, void *data)
{
	Item *item = data;

	DBusMessage *reply = NULL;
	DBusMessageIter iter, array, select, strct;
	Icon *icon = NULL;
	Watcher *watcher;
	dbus_int32_t width, height;
	int selected_index, size;
	const uint8_t *buf;

	watcher = item_get_watcher(item);

	reply = dbus_pending_call_steal_reply(pending);
	if (!reply || dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR)
		goto fail;
	dbus_message_iter_init(reply, &iter);
	if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
		goto fail;
	dbus_message_iter_recurse(&iter, &array);
	if (dbus_message_iter_get_arg_type(&array) != DBUS_TYPE_ARRAY)
		goto fail;
	dbus_message_iter_recurse(&array, &select);
	if (dbus_message_iter_get_arg_type(&select) != DBUS_TYPE_STRUCT)
		goto fail;
	selected_index = select_image(&select, 22); // Get the 22*22 image
	if (selected_index < 0)
		goto fail;

	dbus_message_iter_recurse(&array, &strct);
	if (dbus_message_iter_get_arg_type(&strct) != DBUS_TYPE_STRUCT)
		goto fail;
	for (int i = 0; i < selected_index; i++)
		dbus_message_iter_next(&strct);
	buf = extract_image(&strct, &width, &height, &size);
	if (!buf)
		goto fail;

	if (!item->icon) {
		/* First icon */
		icon = createicon(buf, width, height, size);
		if (!icon)
			goto fail;
		item->icon = icon;
		watcher_update_trays(watcher);

	} else if (memcmp(item->icon->buf_orig, buf,
	                  MIN(item->icon->size_orig, (size_t)size)) != 0) {
		/* New icon */
		destroyicon(item->icon);
		item->icon = NULL;
		icon = createicon(buf, width, height, size);
		if (!icon)
			goto fail;
		item->icon = icon;
		watcher_update_trays(watcher);

	} else {
		/* Icon didn't change */
	}

	dbus_message_unref(reply);
	dbus_pending_call_unref(pending);
	return;

fail:
	if (icon)
		destroyicon(icon);
	if (reply)
		dbus_message_unref(reply);
	if (pending)
		dbus_pending_call_unref(pending);
}

static DBusHandlerResult
handle_newicon(Item *item, DBusConnection *conn, DBusMessage *msg)
{
	const char *sender = dbus_message_get_sender(msg);

	if (sender && strcmp(sender, item->busname) == 0) {
		request_property(conn, item->busname, item->busobj,
		                 "IconPixmap", SNI_IFACE, pixmap_ready_handler,
		                 item);

		return DBUS_HANDLER_RESULT_HANDLED;

	} else {
		return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
	}
}

static DBusHandlerResult
filter_bus(DBusConnection *conn, DBusMessage *msg, void *data)
{
	Item *item = data;

	if (dbus_message_is_signal(msg, SNI_IFACE, "NewIcon"))
		return handle_newicon(item, conn, msg);
	else
		return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}

Item *
createitem(const char *busname, const char *busobj, Watcher *watcher)
{
	DBusConnection *conn;
	Item *item;
	char *busname_dup = NULL;
	char *busobj_dup = NULL;
	char match_rule[RULEBSIZE];

	item = calloc(1, sizeof(Item));
	busname_dup = strdup(busname);
	busobj_dup = strdup(busobj);
	if (!item || !busname_dup || !busobj_dup)
		goto fail;

	conn = watcher->conn;
	item->busname = busname_dup;
	item->busobj = busobj_dup;
	item->watcher = watcher;

	request_property(conn, busname, busobj, "IconPixmap", SNI_IFACE,
	                 pixmap_ready_handler, item);

	request_property(conn, busname, busobj, "Id", SNI_IFACE,
	                 id_ready_handler, item);

	request_property(conn, busname, busobj, "Menu", SNI_IFACE,
	                 menupath_ready_handler, item);

	if (snprintf(match_rule, sizeof(match_rule), match_string, busname) >=
	    RULEBSIZE) {
		goto fail;
	}

	if (!dbus_connection_add_filter(conn, filter_bus, item, NULL))
		goto fail;
	dbus_bus_add_match(conn, match_rule, NULL);

	return item;

fail:
	free(busname_dup);
	free(busobj_dup);
	return NULL;
}

void
destroyitem(Item *item)
{
	DBusConnection *conn;
	char match_rule[RULEBSIZE];

	conn = item_get_connection(item);

	if (snprintf(match_rule, sizeof(match_rule), match_string,
	             item->busname) < RULEBSIZE) {
		dbus_bus_remove_match(conn, match_rule, NULL);
		dbus_connection_remove_filter(conn, filter_bus, item);
	}
	if (item->icon)
		destroyicon(item->icon);
	free(item->menu_busobj);
	free(item->busname);
	free(item->busobj);
	free(item->appid);
	free(item);
}

void
item_activate(Item *item)
{
	DBusConnection *conn;
	DBusMessage *msg = NULL;
	dbus_int32_t x = 0, y = 0;

	conn = item_get_connection(item);

	if (!(msg = dbus_message_new_method_call(item->busname, item->busobj,
	                                         SNI_IFACE, "Activate")) ||
	    !dbus_message_append_args(msg, DBUS_TYPE_INT32, &x, DBUS_TYPE_INT32,
	                              &y, DBUS_TYPE_INVALID) ||
	    !dbus_connection_send_with_reply(conn, msg, NULL, -1)) {
		goto fail;
	}

	dbus_message_unref(msg);
	return;

fail:
	if (msg)
		dbus_message_unref(msg);
}