]> git.lizzy.rs Git - bspwm.git/blob - subscribe.c
New setting: merge_overlapping_monitors
[bspwm.git] / subscribe.c
1 /* Copyright (c) 2012-2014, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  * The views and conclusions contained in the software and documentation are those
25  * of the authors and should not be interpreted as representing official policies,
26  * either expressed or implied, of the FreeBSD Project.
27  */
28
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <ctype.h>
32 #include "bspwm.h"
33 #include "tree.h"
34 #include "settings.h"
35 #include "subscribe.h"
36
37 subscriber_list_t *make_subscriber_list(FILE *stream)
38 {
39         subscriber_list_t *sb = malloc(sizeof(subscriber_list_t));
40         sb->prev = sb->next = NULL;
41         sb->stream = stream;
42         return sb;
43 }
44
45 void remove_subscriber(subscriber_list_t *sb)
46 {
47         if (sb == NULL)
48                 return;
49         subscriber_list_t *a = sb->prev;
50         subscriber_list_t *b = sb->next;
51         if (a != NULL)
52                 a->next = b;
53         if (b != NULL)
54                 b->prev = a;
55         if (sb == subscribe_head)
56                 subscribe_head = b;
57         if (sb == subscribe_tail)
58                 subscribe_tail = a;
59         fclose(sb->stream);
60         free(sb);
61 }
62
63 void add_subscriber(FILE *stream)
64 {
65         subscriber_list_t *sb = make_subscriber_list(stream);
66         if (subscribe_head == NULL) {
67                 subscribe_head = subscribe_tail = sb;
68         } else {
69                 subscribe_tail->next = sb;
70                 sb->prev = subscribe_tail;
71                 subscribe_tail = sb;
72         }
73         print_status(sb->stream);
74 }
75
76 int print_status(FILE *stream)
77 {
78         fprintf(stream, "%s", status_prefix);
79         bool urgent = false;
80         for (monitor_t *m = mon_head; m != NULL; m = m->next) {
81                 fprintf(stream, "%c%s:", (mon == m ? 'M' : 'm'), m->name);
82                 for (desktop_t *d = m->desk_head; d != NULL; d = d->next, urgent = false) {
83                         for (node_t *n = first_extrema(d->root); n != NULL && !urgent; n = next_leaf(n, d->root))
84                                 urgent |= n->client->urgent;
85                         char c = (urgent ? 'u' : (d->root == NULL ? 'f' : 'o'));
86                         if (m->desk == d)
87                                 c = toupper(c);
88                         fprintf(stream, "%c%s:", c, d->name);
89                 }
90         }
91         if (mon != NULL && mon->desk != NULL)
92                 fprintf(stream, "L%s", (mon->desk->layout == LAYOUT_TILED ? "tiled" : "monocle"));
93         fprintf(stream, "%s", "\n");
94         return fflush(stream);
95 }