-
Notifications
You must be signed in to change notification settings - Fork 139
/
notification.c
570 lines (496 loc) · 15.3 KB
/
notification.c
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
#include <pango/pangocairo.h>
#include <wayland-client.h>
#include <linux/input-event-codes.h>
#include "config.h"
#include "criteria.h"
#include "dbus.h"
#include "event-loop.h"
#include "mako.h"
#include "notification.h"
#include "icon.h"
#include "string-util.h"
#include "wayland.h"
bool hotspot_at(struct mako_hotspot *hotspot, int32_t x, int32_t y) {
return x >= hotspot->x &&
y >= hotspot->y &&
x < hotspot->x + hotspot->width &&
y < hotspot->y + hotspot->height;
}
void reset_notification(struct mako_notification *notif) {
struct mako_action *action, *tmp;
wl_list_for_each_safe(action, tmp, ¬if->actions, link) {
wl_list_remove(&action->link);
free(action->key);
free(action->title);
free(action);
}
notif->urgency = MAKO_NOTIFICATION_URGENCY_UNKNOWN;
notif->progress = -1;
destroy_timer(notif->timer);
notif->timer = NULL;
free(notif->app_name);
free(notif->app_icon);
free(notif->summary);
free(notif->body);
free(notif->category);
free(notif->desktop_entry);
free(notif->tag);
if (notif->image_data != NULL) {
free(notif->image_data->data);
free(notif->image_data);
}
notif->app_name = strdup("");
notif->app_icon = strdup("");
notif->summary = strdup("");
notif->body = strdup("");
notif->category = strdup("");
notif->desktop_entry = strdup("");
notif->tag = strdup("");
notif->image_data = NULL;
destroy_icon(notif->icon);
notif->icon = NULL;
}
struct mako_notification *create_notification(struct mako_state *state) {
struct mako_notification *notif =
calloc(1, sizeof(struct mako_notification));
if (notif == NULL) {
fprintf(stderr, "allocation failed\n");
return NULL;
}
notif->state = state;
++state->last_id;
notif->id = state->last_id;
wl_list_init(¬if->actions);
wl_list_init(¬if->link);
reset_notification(notif);
// Start ungrouped.
notif->group_index = -1;
return notif;
}
void destroy_notification(struct mako_notification *notif) {
wl_list_remove(¬if->link);
reset_notification(notif);
free(notif->app_name);
free(notif->app_icon);
free(notif->summary);
free(notif->body);
free(notif->category);
free(notif->desktop_entry);
free(notif->tag);
finish_style(¬if->style);
free(notif);
}
void close_notification(struct mako_notification *notif,
enum mako_notification_close_reason reason,
bool add_to_history) {
notify_notification_closed(notif, reason);
wl_list_remove(¬if->link); // Remove so regrouping works...
wl_list_init(¬if->link); // ...but destroy will remove again.
struct mako_criteria *notif_criteria = create_criteria_from_notification(
notif, ¬if->style.group_criteria_spec);
if (notif_criteria) {
group_notifications(notif->state, notif_criteria);
destroy_criteria(notif_criteria);
}
if (!notif->style.history ||
notif->state->config.max_history <= 0) {
destroy_notification(notif);
return;
}
destroy_timer(notif->timer);
notif->timer = NULL;
if (add_to_history) {
wl_list_insert(¬if->state->history, ¬if->link);
while (wl_list_length(¬if->state->history) >
notif->state->config.max_history) {
struct mako_notification *n =
wl_container_of(notif->state->history.prev, n, link);
destroy_notification(n);
}
} else {
destroy_notification(notif);
}
}
struct mako_notification *get_notification(struct mako_state *state,
uint32_t id) {
struct mako_notification *notif;
wl_list_for_each(notif, &state->notifications, link) {
if (notif->id == id) {
return notif;
}
}
return NULL;
}
struct mako_notification *get_tagged_notification(struct mako_state *state,
const char *tag, const char *app_name) {
struct mako_notification *notif;
wl_list_for_each(notif, &state->notifications, link) {
if (notif->tag && strlen(notif->tag) != 0 &&
strcmp(notif->tag, tag) == 0 &&
strcmp(notif->app_name, app_name) == 0) {
return notif;
}
}
return NULL;
}
void close_group_notifications(struct mako_notification *top_notif,
enum mako_notification_close_reason reason) {
struct mako_state *state = top_notif->state;
if (top_notif->style.group_criteria_spec.none) {
// No grouping, just close the notification
close_notification(top_notif, reason, true);
return;
}
struct mako_criteria *notif_criteria = create_criteria_from_notification(
top_notif, &top_notif->style.group_criteria_spec);
struct mako_notification *notif, *tmp;
wl_list_for_each_safe(notif, tmp, &state->notifications, link) {
if (match_criteria(notif_criteria, notif)) {
close_notification(notif, reason, true);
}
}
destroy_criteria(notif_criteria);
}
void close_all_notifications(struct mako_state *state,
enum mako_notification_close_reason reason) {
struct mako_notification *notif, *tmp;
wl_list_for_each_safe(notif, tmp, &state->notifications, link) {
close_notification(notif, reason, true);
}
}
static size_t trim_space(char *dst, const char *src) {
size_t src_len = strlen(src);
const char *start = src;
const char *end = src + src_len;
while (start != end && isspace(start[0])) {
++start;
}
while (end != start && isspace(end[-1])) {
--end;
}
size_t trimmed_len = end - start;
memmove(dst, start, trimmed_len);
dst[trimmed_len] = '\0';
return trimmed_len;
}
static const char *escape_markup_char(char c) {
switch (c) {
case '&': return "&";
case '<': return "<";
case '>': return ">";
case '\'': return "'";
case '"': return """;
}
return NULL;
}
static size_t escape_markup(const char *s, char *buf) {
size_t len = 0;
while (s[0] != '\0') {
const char *replacement = escape_markup_char(s[0]);
if (replacement != NULL) {
size_t replacement_len = strlen(replacement);
if (buf != NULL) {
memcpy(buf + len, replacement, replacement_len);
}
len += replacement_len;
} else {
if (buf != NULL) {
buf[len] = s[0];
}
++len;
}
++s;
}
if (buf != NULL) {
buf[len] = '\0';
}
return len;
}
// Any new format specifiers must also be added to VALID_FORMAT_SPECIFIERS.
char *format_hidden_text(char variable, bool *markup, void *data) {
struct mako_hidden_format_data *format_data = data;
switch (variable) {
case 'h':
return mako_asprintf("%zu", format_data->hidden);
case 't':
return mako_asprintf("%zu", format_data->count);
}
return NULL;
}
char *format_notif_text(char variable, bool *markup, void *data) {
struct mako_notification *notif = data;
switch (variable) {
case 'a':
return strdup(notif->app_name);
case 'i':
return mako_asprintf("%d", notif->id);
case 's':
return strdup(notif->summary);
case 'b':
*markup = notif->style.markup;
return strdup(notif->body);
case 'g':
return mako_asprintf("%d", notif->group_count);
}
return NULL;
}
size_t format_text(const char *format, char *buf, mako_format_func_t format_func, void *data) {
size_t len = 0;
const char *last = format;
while (1) {
char *current = strchr(last, '%');
if (current == NULL || current[1] == '\0') {
size_t tail_len = strlen(last);
if (buf != NULL) {
memcpy(buf + len, last, tail_len + 1);
}
len += tail_len;
break;
}
size_t chunk_len = current - last;
if (buf != NULL) {
memcpy(buf + len, last, chunk_len);
}
len += chunk_len;
char *value = NULL;
bool markup = false;
if (current[1] == '%') {
value = strdup("%");
} else {
value = format_func(current[1], &markup, data);
}
if (value == NULL) {
value = strdup("");
}
size_t value_len;
if (!markup || !pango_parse_markup(value, -1, 0, NULL, NULL, NULL, NULL)) {
char *escaped = NULL;
if (buf != NULL) {
escaped = buf + len;
}
value_len = escape_markup(value, escaped);
} else {
value_len = strlen(value);
if (buf != NULL) {
memcpy(buf + len, value, value_len);
}
}
free(value);
len += value_len;
last = current + 2;
}
if (buf != NULL) {
trim_space(buf, buf);
}
return len;
}
static const struct mako_binding *get_button_binding(struct mako_style *style,
uint32_t button) {
switch (button) {
case BTN_LEFT:
return &style->button_bindings.left;
case BTN_RIGHT:
return &style->button_bindings.right;
case BTN_MIDDLE:
return &style->button_bindings.middle;
}
return NULL;
}
static void try_invoke_action(struct mako_notification *notif,
const char *target_action,
const struct mako_binding_context *ctx) {
struct mako_action *action;
wl_list_for_each(action, ¬if->actions, link) {
if (strcmp(action->key, target_action) == 0) {
char *activation_token = NULL;
if (ctx != NULL) {
activation_token = create_xdg_activation_token(
ctx->surface, ctx->seat, ctx->serial);
}
notify_action_invoked(action, activation_token);
free(activation_token);
break;
}
}
close_notification(notif, MAKO_NOTIFICATION_CLOSE_DISMISSED, true);
}
void notification_execute_binding(struct mako_notification *notif,
const struct mako_binding *binding,
const struct mako_binding_context *ctx) {
switch (binding->action) {
case MAKO_BINDING_NONE:
break;
case MAKO_BINDING_DISMISS:
close_notification(notif, MAKO_NOTIFICATION_CLOSE_DISMISSED, true);
break;
case MAKO_BINDING_DISMISS_NO_HISTORY:
close_notification(notif, MAKO_NOTIFICATION_CLOSE_DISMISSED, false);
break;
case MAKO_BINDING_DISMISS_GROUP:
close_group_notifications(notif, MAKO_NOTIFICATION_CLOSE_DISMISSED);
break;
case MAKO_BINDING_DISMISS_ALL:
close_all_notifications(notif->state, MAKO_NOTIFICATION_CLOSE_DISMISSED);
break;
case MAKO_BINDING_INVOKE_ACTION:
assert(binding->action_name != NULL);
try_invoke_action(notif, binding->action_name, ctx);
break;
case MAKO_BINDING_EXEC:
assert(binding->command != NULL);
pid_t pid = fork();
if (pid < 0) {
perror("fork failed");
break;
} else if (pid == 0) {
// Double-fork to avoid SIGCHLD issues
pid = fork();
if (pid < 0) {
perror("fork failed");
_exit(1);
} else if (pid == 0) {
// We pass variables using additional sh arguments. To convert
// back the arguments to variables, insert a short script
// preamble before the user's command.
const char setup_vars[] = "id=\"$1\"\n";
char *cmd = mako_asprintf("%s%s", setup_vars, binding->command);
char id_str[32];
snprintf(id_str, sizeof(id_str), "%" PRIu32, notif->id);
char *const argv[] = { "sh", "-c", cmd, "sh", id_str, NULL };
execvp("sh", argv);
perror("exec failed");
_exit(1);
}
_exit(0);
}
if (waitpid(pid, NULL, 0) < 0) {
perror("waitpid failed");
}
break;
}
}
void notification_handle_button(struct mako_notification *notif, uint32_t button,
enum wl_pointer_button_state state,
const struct mako_binding_context *ctx) {
if (state != WL_POINTER_BUTTON_STATE_PRESSED) {
return;
}
const struct mako_binding *binding =
get_button_binding(¬if->style, button);
if (binding != NULL) {
notification_execute_binding(notif, binding, ctx);
}
}
void notification_handle_touch(struct mako_notification *notif,
const struct mako_binding_context *ctx) {
notification_execute_binding(notif, ¬if->style.touch_binding, ctx);
}
/*
* Searches through the notifications list and returns the next position at
* which to insert. If no results for the specified urgency are found,
* it will return the closest link searching in the direction specified.
* (-1 for lower, 1 or upper).
*/
static struct wl_list *get_last_notif_by_urgency(struct wl_list *notifications,
enum mako_notification_urgency urgency, int direction) {
enum mako_notification_urgency current = urgency;
if (wl_list_empty(notifications)) {
return notifications;
}
while (current <= MAKO_NOTIFICATION_URGENCY_CRITICAL &&
current >= MAKO_NOTIFICATION_URGENCY_UNKNOWN) {
struct mako_notification *notif;
wl_list_for_each_reverse(notif, notifications, link) {
if (notif->urgency == current) {
return ¬if->link;
}
}
current += direction;
}
return notifications;
}
void insert_notification(struct mako_state *state, struct mako_notification *notif) {
struct mako_config *config = &state->config;
struct wl_list *insert_node;
if (config->sort_criteria == MAKO_SORT_CRITERIA_TIME &&
!(config->sort_asc & MAKO_SORT_CRITERIA_TIME)) {
insert_node = &state->notifications;
} else if (config->sort_criteria == MAKO_SORT_CRITERIA_TIME &&
(config->sort_asc & MAKO_SORT_CRITERIA_TIME)) {
insert_node = state->notifications.prev;
} else if (config->sort_criteria & MAKO_SORT_CRITERIA_URGENCY) {
int direction = (config->sort_asc & MAKO_SORT_CRITERIA_URGENCY) ? -1 : 1;
int offset = 0;
if (!(config->sort_asc & MAKO_SORT_CRITERIA_TIME)) {
offset = direction;
}
insert_node = get_last_notif_by_urgency(&state->notifications,
notif->urgency + offset, direction);
} else {
insert_node = &state->notifications;
}
wl_list_insert(insert_node, ¬if->link);
}
// Iterate through all of the current notifications and group any that share
// the same values for all of the criteria fields in `spec`. Returns the number
// of notifications in the resulting group, or -1 if something goes wrong
// with criteria.
int group_notifications(struct mako_state *state, struct mako_criteria *criteria) {
struct wl_list matches = {0};
wl_list_init(&matches);
// Now we're going to find all of the matching notifications and stick
// them in a different list. Removing the first one from the global list
// is technically unnecessary, since it will go back in the same place, but
// it makes the rest of this logic nicer.
struct wl_list *location = NULL; // The place we're going to reinsert them.
struct mako_notification *notif = NULL, *tmp = NULL;
size_t count = 0;
wl_list_for_each_safe(notif, tmp, &state->notifications, link) {
if (!match_criteria(criteria, notif)) {
continue;
}
if (!location) {
location = notif->link.prev;
}
wl_list_remove(¬if->link);
wl_list_insert(matches.prev, ¬if->link);
notif->group_index = count++;
}
// If count is zero, we don't need to worry about changing anything. The
// notification's style has its grouping criteria set to none.
if (count == 1) {
// If we matched a single notification, it means that it has grouping
// criteria set, but didn't have any others to group with. This makes
// it ungrouped just as if it had no grouping criteria. If this is a
// new notification, its index is already set to -1. However, this also
// happens when a notification had been part of a group and all the
// others have closed, so we need to set it anyway.
// We can't use the current pointer, wl_list_for_each_safe clobbers it.
notif = wl_container_of(matches.prev, notif, link);
notif->group_index = -1;
}
// Now we need to rematch criteria for all of the grouped notifications,
// in case it changes their styles. We also take this opportunity to record
// the total number of notifications in the group, so that it can be used
// in the notifications' format.
// We can't skip this even if there was only a single match, as we may be
// removing the second-to-last notification of a group, and still need to
// potentially change style now that the matched one isn't in a group
// anymore.
wl_list_for_each(notif, &matches, link) {
notif->group_count = count;
}
// Place all of the matches back into the list where the first one was
// originally.
wl_list_insert_list(location, &matches);
// We don't actually re-apply criteria here, that will happen just before
// we render each notification anyway.
return count;
}