]> mj.ucw.cz Git - ursary.git/blob - ursaryd.c
Better client matching logic
[ursary.git] / ursaryd.c
1 #define LOCAL_DEBUG
2
3 #include <ucw/lib.h>
4 #include <ucw/clists.h>
5 #include <ucw/mainloop.h>
6 #include <ucw/stkstring.h>
7
8 #include <stdio.h>
9 #include <string.h>
10 #include <stdlib.h>
11
12 #include <pulse/pulseaudio.h>
13
14 #include "ursaryd.h"
15
16 /*** Interface to PulseAudio ***/
17
18 static pa_context *pulse_ctx;
19 static struct main_timer pulse_connect_timer;
20
21 static void pulse_dump(void);
22
23 enum pulse_state {
24   PS_OFFLINE,
25   PS_SUBSCRIBE,
26   PS_GET_CLIENTS,
27   PS_GET_SINKS,
28   PS_GET_SINK_INPUTS,
29   PS_ONLINE,
30 };
31
32 static enum pulse_state pulse_state;
33 #define PULSE_STATE(s) do { pulse_state = s; DBG("Pulse: " #s); } while (0)
34
35 // Tracking of currently running asynchronous operations
36 struct pulse_op {
37   cnode n;
38   pa_operation *o;
39   bool is_init;
40 };
41
42 static clist pulse_op_list;
43
44 static struct pulse_op *pulse_op_new(void)
45 {
46   struct pulse_op *op = xmalloc_zero(sizeof(*op));
47   clist_add_tail(&pulse_op_list, &op->n);
48   return op;
49 }
50
51 static void pulse_op_done(struct pulse_op *op)
52 {
53   if (op->o)
54     pa_operation_unref(op->o);
55   clist_remove(&op->n);
56   xfree(op);
57 }
58
59 static void pulse_op_cancel_all(void)
60 {
61   struct pulse_op *op;
62   while (op = (struct pulse_op *) clist_head(&pulse_op_list))
63     {
64       DBG("Pulse: Cancelling pending operation");
65       pa_operation_cancel(op->o);
66       pulse_op_done(op);
67     }
68 }
69
70 #define PULSE_ASYNC_RUN(name, ...) do { struct pulse_op *_op = pulse_op_new(); _op->o = name(__VA_ARGS__, _op); } while (0)
71 #define PULSE_ASYNC_INIT_RUN(name, ...) do { struct pulse_op *_op = pulse_op_new(); _op->is_init = 1; _op->o = name(__VA_ARGS__, _op); } while (0)
72
73 static void pulse_success_cb(pa_context *ctx UNUSED, int success, void *userdata)
74 {
75   if (!success)
76     msg(L_ERROR, "Pulse: Failure reported");
77   pulse_op_done(userdata);
78 }
79
80 static void pulse_dump_proplist(pa_proplist *pl UNUSED)
81 {
82 #if 0
83   void *iterator = NULL;
84   const char *key;
85
86   while (key = pa_proplist_iterate(pl, &iterator))
87     {
88       const char *val = pa_proplist_gets(pl, key);
89       DBG("   %s = %s", key, val);
90     }
91 #endif
92 }
93
94 struct pulse_sink_input {
95   int idx;
96   char *name;
97   int client_idx;
98   int sink_idx;
99   uns channels;
100   uns volume;
101   uns mute;
102   int noct_client_idx;          // Used by the high-level logic below
103 };
104
105 #define HASH_NODE struct pulse_sink_input
106 #define HASH_PREFIX(x) pulse_sink_input_##x
107 #define HASH_KEY_ATOMIC idx
108 #define HASH_WANT_CLEANUP
109 #define HASH_WANT_LOOKUP
110 #define HASH_WANT_REMOVE
111 #define HASH_ZERO_FILL
112 #include <ucw/hashtable.h>
113
114 #define SET_STRING(_field, _val) do { if (!_field || strcmp(_field, _val)) { xfree(_field); _field = xstrdup(_val); } } while (0)
115
116 static void pulse_sink_input_cb(pa_context *ctx UNUSED, const pa_sink_input_info *i, int eol, void *userdata)
117 {
118   struct pulse_op *op = userdata;
119
120   if (eol)
121     {
122       if (op->is_init)
123         {
124           PULSE_STATE(PS_ONLINE);
125           schedule_update();
126         }
127       pulse_op_done(op);
128       return;
129     }
130
131   DBG("Pulse: SINK INPUT #%u: %s client=%d sink=%d chans=%d has_vol=%d vol_rw=%d volume=%u mute=%d",
132     i->index, i->name, i->client, i->sink, i->channel_map.channels, i->has_volume, i->volume_writable, i->volume.values[0], i->mute);
133   pulse_dump_proplist(i->proplist);
134
135   struct pulse_sink_input *s = pulse_sink_input_lookup(i->index);
136   SET_STRING(s->name, i->name);
137   s->client_idx = i->client;
138   s->sink_idx = i->sink;
139   s->channels = i->channel_map.channels;
140   s->volume = pa_cvolume_avg(&i->volume);
141   s->mute = i->mute;
142   schedule_update();
143 }
144
145 static void pulse_sink_input_gone(int idx)
146 {
147   DBG("Pulse: REMOVE SINK INPUT #%d", idx);
148   struct pulse_sink_input *s = pulse_sink_input_lookup(idx);
149   pulse_sink_input_remove(s);
150   schedule_update();
151 }
152
153 struct pulse_sink {
154   int idx;
155   char *name;
156   uns channels;
157   uns volume;
158   uns base_volume;
159   int mute;
160 };
161
162 #define HASH_NODE struct pulse_sink
163 #define HASH_PREFIX(x) pulse_sink_##x
164 #define HASH_KEY_ATOMIC idx
165 #define HASH_WANT_CLEANUP
166 #define HASH_WANT_LOOKUP
167 #define HASH_WANT_REMOVE
168 #define HASH_ZERO_FILL
169 #include <ucw/hashtable.h>
170
171 static void pulse_sink_cb(pa_context *ctx, const pa_sink_info *i, int eol, void *userdata)
172 {
173   struct pulse_op *op = userdata;
174
175   if (eol)
176     {
177       if (op->is_init)
178         {
179           PULSE_STATE(PS_GET_SINK_INPUTS);
180           PULSE_ASYNC_INIT_RUN(pa_context_get_sink_input_info_list, ctx, pulse_sink_input_cb);
181         }
182       pulse_op_done(op);
183       return;
184     }
185
186   DBG("Pulse: SINK #%u: %s (%s) flags=%08x channels=%u volume=%u mute=%d base_vol=%u state=%u",
187     i->index, i->name, i->description, i->flags, i->channel_map.channels, i->volume.values[0], i->mute, i->base_volume, i->state);
188   pulse_dump_proplist(i->proplist);
189
190   struct pulse_sink *s = pulse_sink_lookup(i->index);
191   SET_STRING(s->name, i->name);
192   s->channels = i->channel_map.channels;
193   s->volume = pa_cvolume_avg(&i->volume);
194   s->base_volume = i->base_volume;
195   s->mute = i->mute;
196   schedule_update();
197 }
198
199 static void pulse_sink_gone(int idx)
200 {
201   DBG("Pulse: REMOVE SINK #%d", idx);
202   struct pulse_sink *s = pulse_sink_lookup(idx);
203   pulse_sink_remove(s);
204   schedule_update();
205 }
206
207 static struct pulse_sink *pulse_sink_by_name(const char *name)
208 {
209   HASH_FOR_ALL(pulse_sink, s)
210     {
211       if (!strcmp(s->name, name))
212         return s;
213     }
214   HASH_END_FOR;
215   return NULL;
216 }
217
218 struct pulse_client {
219   int idx;
220   char *name;
221   char *host;
222 };
223
224 #define HASH_NODE struct pulse_client
225 #define HASH_PREFIX(x) pulse_client_##x
226 #define HASH_KEY_ATOMIC idx
227 #define HASH_WANT_CLEANUP
228 #define HASH_WANT_LOOKUP
229 #define HASH_WANT_REMOVE
230 #define HASH_ZERO_FILL
231 #include <ucw/hashtable.h>
232
233 static void pulse_client_cb(pa_context *ctx, const pa_client_info *i, int eol, void *userdata)
234 {
235   struct pulse_op *op = userdata;
236
237   if (eol)
238     {
239       if (op->is_init)
240         {
241           PULSE_STATE(PS_GET_SINKS);
242           PULSE_ASYNC_INIT_RUN(pa_context_get_sink_info_list, ctx, pulse_sink_cb);
243         }
244       pulse_op_done(op);
245       return;
246     }
247
248   char *host = stk_strdup(pa_proplist_gets(i->proplist, "application.process.host") ? : "?");
249   DBG("Pulse: CLIENT #%u: %s mod=%u drv=%s host=%s",
250     i->index, i->name, i->owner_module, i->driver, host);
251   pulse_dump_proplist(i->proplist);
252
253   struct pulse_client *c = pulse_client_lookup(i->index);
254   SET_STRING(c->name, i->name);
255   SET_STRING(c->host, host);
256   schedule_update();
257 }
258
259 static void pulse_client_gone(int idx)
260 {
261   DBG("Pulse: REMOVE CLIENT #%d", idx);
262   struct pulse_client *c = pulse_client_lookup(idx);
263   pulse_client_remove(c);
264   schedule_update();
265 }
266
267 static void pulse_shutdown(void)
268 {
269   DBG("Pulse: Shutting down");
270   pulse_client_cleanup();
271   pulse_sink_cleanup();
272   pulse_sink_input_cleanup();
273 }
274
275 static void pulse_subscribe_done_cb(pa_context *ctx, int success, void *userdata)
276 {
277   pulse_op_done(userdata);
278
279   if (!success)
280     msg(L_ERROR, "pa_context_subscribe failed: success=%d", success);
281
282   PULSE_STATE(PS_GET_CLIENTS);
283   PULSE_ASYNC_INIT_RUN(pa_context_get_client_info_list, ctx, pulse_client_cb);
284 }
285
286 static void pulse_event_cb(pa_context *ctx, pa_subscription_event_type_t type, uint32_t idx, void *userdata UNUSED)
287 {
288   DBG("Pulse: SUBSCRIBE EVENT type=%08x idx=%u", type, idx);
289
290   uns object = type & PA_SUBSCRIPTION_EVENT_FACILITY_MASK;
291   uns action = type & PA_SUBSCRIPTION_EVENT_TYPE_MASK;
292   switch (object)
293     {
294     case PA_SUBSCRIPTION_EVENT_CLIENT:
295       if (action == PA_SUBSCRIPTION_EVENT_NEW || action == PA_SUBSCRIPTION_EVENT_CHANGE)
296         PULSE_ASYNC_RUN(pa_context_get_client_info, ctx, idx, pulse_client_cb);
297       else if (action == PA_SUBSCRIPTION_EVENT_REMOVE)
298         pulse_client_gone(idx);
299       break;
300     case PA_SUBSCRIPTION_EVENT_SINK:
301       if (action == PA_SUBSCRIPTION_EVENT_NEW || action == PA_SUBSCRIPTION_EVENT_CHANGE)
302         PULSE_ASYNC_RUN(pa_context_get_sink_info_by_index, ctx, idx, pulse_sink_cb);
303       else if (action == PA_SUBSCRIPTION_EVENT_REMOVE)
304         pulse_sink_gone(idx);
305       break;
306     case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
307       if (action == PA_SUBSCRIPTION_EVENT_NEW || action == PA_SUBSCRIPTION_EVENT_CHANGE)
308         PULSE_ASYNC_RUN(pa_context_get_sink_input_info, ctx, idx, pulse_sink_input_cb);
309       else if (action == PA_SUBSCRIPTION_EVENT_REMOVE)
310         pulse_sink_input_gone(idx);
311       break;
312     }
313 }
314
315 static void pulse_state_cb(pa_context *ctx, void *userdata UNUSED)
316 {
317   int state = pa_context_get_state(ctx);
318   DBG("Pulse: State callback, new state = %d", state);
319   if (state == PA_CONTEXT_READY)
320     {
321       if (pulse_state == PS_OFFLINE)
322         {
323           PULSE_STATE(PS_SUBSCRIBE);
324           pa_context_set_subscribe_callback(ctx, pulse_event_cb, NULL);
325           PULSE_ASYNC_INIT_RUN(pa_context_subscribe, ctx, PA_SUBSCRIPTION_MASK_ALL, pulse_subscribe_done_cb);
326         }
327     }
328   else
329     {
330       if (pulse_state != PS_OFFLINE)
331         {
332           PULSE_STATE(PS_OFFLINE);
333           pulse_op_cancel_all();
334           pulse_shutdown();
335           schedule_update();
336         }
337       if (state == PA_CONTEXT_FAILED && !timer_is_active(&pulse_connect_timer))
338         timer_add_rel(&pulse_connect_timer, 2000);
339     }
340 }
341
342 static void pulse_dump(void)
343 {
344   HASH_FOR_ALL(pulse_client, c)
345     {
346       DBG("## Client #%d: %s host=%s", c->idx, c->name, c->host);
347     }
348   HASH_END_FOR;
349
350   HASH_FOR_ALL(pulse_sink, s)
351     {
352       DBG("## Sink #%d: %s channels=%u volume=%u base_vol=%u mute=%u",
353         s->idx, s->name, s->channels, s->volume, s->base_volume, s->mute);
354     }
355   HASH_END_FOR;
356
357   HASH_FOR_ALL(pulse_sink_input, s)
358     {
359       DBG("## Sink input #%d: %s client=%d sink=%d channels=%u volume=%u mute=%u",
360         s->idx, s->name, s->client_idx, s->sink_idx, s->channels, s->volume, s->mute);
361     }
362   HASH_END_FOR;
363 }
364
365 static void pulse_connect(struct main_timer *t)
366 {
367   DBG("Pulse: Connecting");
368   timer_del(t);
369
370   clist_init(&pulse_op_list);
371   pulse_client_init();
372   pulse_sink_init();
373   pulse_sink_input_init();
374
375   if (pulse_ctx)
376     pa_context_unref(pulse_ctx);
377   pulse_ctx = pa_context_new(&pmain_api, "ursaryd");
378
379   pa_context_set_state_callback(pulse_ctx, pulse_state_cb, NULL);
380   pa_context_connect(pulse_ctx, NULL, PA_CONTEXT_NOAUTOSPAWN, NULL);
381 }
382
383 static void pulse_init(void)
384 {
385   pmain_init();
386
387   pulse_connect_timer.handler = pulse_connect;
388   timer_add_rel(&pulse_connect_timer, 0);
389 }
390
391 /*** High-level logic ***/
392
393 static struct main_timer update_timer;
394
395 static void update_ring_from_sink(int ring, const char *sink_name)
396 {
397   struct pulse_sink *s = pulse_sink_by_name(sink_name);
398   if (!s)
399     {
400       noct_set_ring(ring, RING_MODE_SINGLE_ON, 0x7f);
401       noct_set_button(ring, 0);
402       return;
403     }
404
405   if (s->mute)
406     {
407       noct_set_ring(ring, RING_MODE_SINGLE_ON, 0x7f);
408       noct_set_button(ring, 1);
409       return;
410     }
411
412   double vol = pa_sw_volume_to_linear(s->volume);
413   vol = CLAMP(vol, 0, 1);
414   int val = 0x7f * vol;
415   val = CLAMP(val, 12, 0x7f);
416   noct_set_ring(ring, RING_MODE_LEFT, val);
417   noct_set_button(ring, 0);
418 }
419
420 struct client_map {
421   int rotary;
422   const char *client;
423   const char *host;
424   double range;
425 };
426
427 static struct client_map client_map[] = {
428   { 4, "Music Player Daemon",   "albireo",      1 },
429   { 5, "MPlayer",               NULL,           1 },
430   { 6, NULL,                    "ogion",        1 },
431 };
432
433 #define NUM_CLIENTS ARRAY_SIZE(client_map)
434
435 struct client_state {
436   double volume;
437   bool have_muted[2];
438 };
439
440 static struct client_state client_state[NUM_CLIENTS];
441
442 static int find_client_by_rotary(int rotary)
443 {
444   uns i;
445   for (i=0; i < NUM_CLIENTS; i++)
446     if (client_map[i].rotary == rotary)
447       return i;
448   return -1;
449 }
450
451 static void calc_clients(void)
452 {
453   bzero(client_state, sizeof(client_state));
454
455   HASH_FOR_ALL(pulse_sink_input, s)
456     {
457       s->noct_client_idx = -1;
458
459       if (s->client_idx < 0 || s->sink_idx < 0)
460         continue;
461
462       struct pulse_client *c = pulse_client_lookup(s->client_idx);
463       if (!c)
464         continue;
465
466       for (uns i=0; i < NUM_CLIENTS; i++)
467         {
468           struct client_map *cm = &client_map[i];
469           struct client_state *cs = &client_state[i];
470           if ((!cm->client || !strcmp(cm->client, c->name)) &&
471               (!cm->host || !strcmp(cm->host, c->host)))
472             {
473               // DBG("@@ Client #%d, sink input #%d -> rotary %d", s->client_idx, s->idx, cm->rotary);
474               s->noct_client_idx = i;
475               cs->volume = MAX(cs->volume, s->volume);
476               cs->have_muted[!!s->mute] = 1;
477               break;
478             }
479         }
480     }
481   HASH_END_FOR;
482 }
483
484 static void update_clients(void)
485 {
486   calc_clients();
487
488   for (uns i=0; i < NUM_CLIENTS; i++)
489     {
490       struct client_map *cm = &client_map[i];
491       struct client_state *cs = &client_state[i];
492       if (!cs->have_muted[0] && !cs->have_muted[1])
493         {
494           noct_set_ring(cm->rotary, RING_MODE_LEFT, 0);
495           noct_set_button(cm->rotary, 0);
496         }
497       else if (!cs->have_muted[0])
498         {
499           noct_set_ring(cm->rotary, RING_MODE_SINGLE_ON, 0x7f);
500           noct_set_button(cm->rotary, 1);
501         }
502       else
503         {
504           double vol = pa_sw_volume_to_linear(cs->volume);
505           vol = CLAMP(vol, 0, cm->range);
506           int val = 0x7f * vol / cm->range;
507           val = CLAMP(val, 12, 0x7f);
508           noct_set_ring(cm->rotary, RING_MODE_LEFT, val);
509           noct_set_button(cm->rotary, 0);
510         }
511     }
512 }
513
514 static void do_update(struct main_timer *t)
515 {
516   timer_del(t);
517   if (!noct_is_ready())
518     {
519       DBG("## UPDATE: Nocturn is not ready");
520       return;
521     }
522
523   static bool dead;
524   if (pulse_state != PS_ONLINE)
525     {
526       DBG("## UPDATE: Pulse is not online");
527       for (int i=0; i<=8; i++)
528         noct_set_ring(i, RING_MODE_LEFT, 0);
529       for (int i=0; i<8; i++)
530         {
531           noct_set_button(i, 1);
532           noct_set_button(i+8, 0);
533         }
534       dead = 1;
535       return;
536     }
537   if (dead)
538     {
539       DBG("## UPDATE: Waking up from the dead");
540       for (int i=0; i<=8; i++)
541         noct_set_ring(i, RING_MODE_LEFT, 0);
542       for (int i=0; i<16; i++)
543         noct_set_button(i, 0);
544       dead = 0;
545     }
546
547   DBG("## UPDATE");
548   pulse_dump();
549
550   update_ring_from_sink(0, "ursarium");
551   update_ring_from_sink(1, "catarium");
552   update_clients();
553 }
554
555 void schedule_update(void)
556 {
557   timer_add_rel(&update_timer, 10);
558 }
559
560 static void update_sink_from_rotary(int delta, const char *sink_name)
561 {
562   struct pulse_sink *s = pulse_sink_by_name(sink_name);
563   if (!s)
564     return;
565
566   double vol = pa_sw_volume_to_linear(s->volume);
567   vol += delta * 0.02;
568   vol = CLAMP(vol, 0, 1);
569   pa_volume_t pavol = pa_sw_volume_from_linear(vol);
570   if (pavol == s->volume)
571     return;
572   pa_cvolume cvol;
573   pa_cvolume_set(&cvol, s->channels, pavol);
574
575   DBG("## Setting volume of sink %s to %d", s->name, cvol.values[0]);
576   PULSE_ASYNC_RUN(pa_context_set_sink_volume_by_index, pulse_ctx, s->idx, &cvol, pulse_success_cb);
577 }
578
579 static void update_client_from_rotary(int rotary, int delta)
580 {
581   int i = find_client_by_rotary(rotary);
582   if (i < 0)
583     return;
584   struct client_map *cm = &client_map[i];
585   struct client_state *cs = &client_state[i];
586
587   calc_clients();
588   double vol = pa_sw_volume_to_linear(cs->volume);
589   vol += delta * 0.02;
590   vol = CLAMP(vol, 0, cm->range);
591   pa_volume_t pavol = pa_sw_volume_from_linear(vol);
592
593   HASH_FOR_ALL(pulse_sink_input, s)
594     {
595       if (s->noct_client_idx == i && s->volume != pavol)
596         {
597           DBG("@@ Client #%d, sink input #%d: setting volume=%u", s->client_idx, s->idx, pavol);
598           pa_cvolume cvol;
599           pa_cvolume_set(&cvol, s->channels, pavol);
600           PULSE_ASYNC_RUN(pa_context_set_sink_input_volume, pulse_ctx, s->idx, &cvol, pulse_success_cb);
601         }
602     }
603   HASH_END_FOR;
604 }
605
606 void notify_rotary(int rotary, int delta)
607 {
608   if (pulse_state != PS_ONLINE)
609     {
610       DBG("## NOTIFY: Pulse is not online");
611       return;
612     }
613
614   switch (rotary)
615     {
616     case 0:
617       update_sink_from_rotary(delta, "ursarium");
618       break;
619     case 1:
620       update_sink_from_rotary(delta, "catarium");
621       break;
622     case 8:
623       update_sink_from_rotary(delta, "ursarium");
624       update_sink_from_rotary(delta, "catarium");
625       break;
626     default:
627       update_client_from_rotary(rotary, delta);
628     }
629 }
630
631 static void update_sink_mute_from_button(int on, const char *sink_name)
632 {
633   if (!on)
634     return;
635
636   struct pulse_sink *s = pulse_sink_by_name(sink_name);
637   if (!s)
638     return;
639
640   DBG("## Setting mute of sink %s to %d", s->name, !s->mute);
641   PULSE_ASYNC_RUN(pa_context_set_sink_mute_by_index, pulse_ctx, s->idx, !s->mute, pulse_success_cb);
642 }
643
644 static void update_client_from_button(int button, int on)
645 {
646   if (button >= 8 || !on)
647     return;
648
649   int i = find_client_by_rotary(button);
650   if (i < 0)
651     return;
652   struct client_state *cs = &client_state[i];
653
654   calc_clients();
655   if (!cs->have_muted[0] && !cs->have_muted[1])
656     return;
657   uns mute = !cs->have_muted[1];
658
659   HASH_FOR_ALL(pulse_sink_input, s)
660     {
661       if (s->noct_client_idx == i)
662         {
663           DBG("@@ Client #%d, sink input #%d: setting mute=%u", s->client_idx, s->idx, mute);
664           PULSE_ASYNC_RUN(pa_context_set_sink_input_mute, pulse_ctx, s->idx, mute, pulse_success_cb);
665         }
666     }
667   HASH_END_FOR;
668 }
669
670 void notify_button(int button, int on)
671 {
672   if (pulse_state != PS_ONLINE)
673     {
674       DBG("## NOTIFY: Pulse is not online");
675       return;
676     }
677
678   switch (button)
679     {
680     case 0:
681       update_sink_mute_from_button(on, "ursarium");
682       break;
683     case 1:
684       update_sink_mute_from_button(on, "catarium");
685       break;
686     default:
687       update_client_from_button(button, on);
688     }
689 }
690
691 int main(int argc UNUSED, char **argv)
692 {
693   log_init(argv[0]);
694   main_init();
695   update_timer.handler = do_update;
696
697   noct_init();
698
699   msg(L_INFO, "Initializing PulseAudio");
700   pulse_init();
701
702   msg(L_INFO, "Entering main loop");
703   main_loop();
704
705   return 0;
706 }