]> git.sur5r.net Git - i3/i3/blob - i3bar/src/config.c
i3bar: implement the tray_output option
[i3/i3] / i3bar / src / config.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  *
6  * © 2010-2011 Axel Wagner and contributors
7  *
8  * See file LICENSE for license information
9  *
10  * src/outputs.c: Maintaining the output-list
11  *
12  */
13 #include <string.h>
14 #include <stdlib.h>
15 #include <stdio.h>
16 #include <errno.h>
17 #include <i3/ipc.h>
18 #include <yajl/yajl_parse.h>
19 #include <yajl/yajl_version.h>
20
21 #include "common.h"
22
23 static char *cur_key;
24
25 /*
26  * Parse a key.
27  *
28  * Essentially we just save it in cur_key.
29  *
30  */
31 #if YAJL_MAJOR >= 2
32 static int config_map_key_cb(void *params_, const unsigned char *keyVal, size_t keyLen) {
33 #else
34 static int config_map_key_cb(void *params_, const unsigned char *keyVal, unsigned keyLen) {
35 #endif
36     FREE(cur_key);
37
38     cur_key = smalloc(sizeof(unsigned char) * (keyLen + 1));
39     strncpy(cur_key, (const char*) keyVal, keyLen);
40     cur_key[keyLen] = '\0';
41
42     return 1;
43 }
44
45 /*
46  * Parse a string
47  *
48  */
49 #if YAJL_MAJOR >= 2
50 static int config_string_cb(void *params_, const unsigned char *val, size_t len) {
51 #else
52 static int config_string_cb(void *params_, const unsigned char *val, unsigned int len) {
53 #endif
54     /* The id is ignored, we already have it in config.bar_id */
55     if (!strcmp(cur_key, "id"))
56         return 1;
57
58     if (!strcmp(cur_key, "mode")) {
59         DLOG("mode = %.*s, len = %d\n", len, val, len);
60         config.hide_on_modifier = (len == 4 && !strncmp((const char*)val, "hide", strlen("hide")));
61         return 1;
62     }
63
64     if (!strcmp(cur_key, "position")) {
65         DLOG("position = %.*s\n", len, val);
66         config.dockpos = (len == 3 && !strncmp((const char*)val, "top", strlen("top")) ? DOCKPOS_TOP : DOCKPOS_BOT);
67         return 1;
68     }
69
70     if (!strcmp(cur_key, "status_command")) {
71         /* We cannot directly start the child here, because start_child() also
72          * needs to be run when no command was specified (to setup stdin).
73          * Therefore we save the command in 'config' and access it later in
74          * got_bar_config() */
75         DLOG("command = %.*s\n", len, val);
76         asprintf(&config.command, "%.*s", len, val);
77         return 1;
78     }
79
80     if (!strcmp(cur_key, "font")) {
81         DLOG("font = %.*s\n", len, val);
82         asprintf(&config.fontname, "%.*s", len, val);
83         return 1;
84     }
85
86     if (!strcmp(cur_key, "outputs")) {
87         printf("+output %.*s\n", len, val);
88         /* XXX: these are not implemented yet */
89         return 1;
90     }
91
92     if (!strcmp(cur_key, "tray_output")) {
93         DLOG("tray_output %.*s\n", len, val);
94         FREE(config.tray_output);
95         asprintf(&config.tray_output, "%.*s", len, val);
96         return 1;
97     }
98
99 #define COLOR(json_name, struct_name) \
100     do { \
101         if (!strcmp(cur_key, #json_name)) { \
102             DLOG(#json_name " = " #struct_name " = %.*s\n", len, val); \
103             asprintf(&(config.colors.struct_name), "%.*s", len, val); \
104             return 1; \
105         } \
106     } while (0)
107
108     COLOR(statusline, bar_fg);
109     COLOR(background, bar_bg);
110     COLOR(focused_workspace_text, focus_ws_fg);
111     COLOR(focused_workspace_bg, focus_ws_bg);
112     COLOR(active_workspace_text, active_ws_fg);
113     COLOR(active_workspace_bg, active_ws_bg);
114     COLOR(inactive_workspace_text, inactive_ws_fg);
115     COLOR(inactive_workspace_bg, inactive_ws_bg);
116     COLOR(urgent_workspace_text, urgent_ws_fg);
117     COLOR(urgent_workspace_bg, urgent_ws_bg);
118
119     printf("got unexpected string %.*s for cur_key = %s\n", len, val, cur_key);
120
121     return 0;
122 }
123
124 /*
125  * Parse a boolean value
126  *
127  */
128 static int config_boolean_cb(void *params_, int val) {
129     if (!strcmp(cur_key, "workspace_buttons")) {
130         DLOG("workspace_buttons = %d\n", val);
131         config.disable_ws = !val;
132         return 1;
133     }
134
135     if (!strcmp(cur_key, "verbose")) {
136         DLOG("verbose = %d\n", val);
137         config.verbose = val;
138         return 1;
139     }
140
141     return 0;
142 }
143
144 /* A datastructure to pass all these callbacks to yajl */
145 static yajl_callbacks outputs_callbacks = {
146     NULL,
147     &config_boolean_cb,
148     NULL,
149     NULL,
150     NULL,
151     &config_string_cb,
152     NULL,
153     &config_map_key_cb,
154     NULL,
155     NULL,
156     NULL
157 };
158
159 /*
160  * Start parsing the received bar configuration json-string
161  *
162  */
163 void parse_config_json(char *json) {
164     yajl_handle handle;
165     yajl_status state;
166 #if YAJL_MAJOR < 2
167     yajl_parser_config parse_conf = { 0, 0 };
168
169     handle = yajl_alloc(&outputs_callbacks, &parse_conf, NULL, NULL);
170 #else
171     handle = yajl_alloc(&outputs_callbacks, NULL, NULL);
172 #endif
173
174     state = yajl_parse(handle, (const unsigned char*) json, strlen(json));
175
176     /* FIXME: Proper errorhandling for JSON-parsing */
177     switch (state) {
178         case yajl_status_ok:
179             break;
180         case yajl_status_client_canceled:
181 #if YAJL_MAJOR < 2
182         case yajl_status_insufficient_data:
183 #endif
184         case yajl_status_error:
185             ELOG("Could not parse config-reply!\n");
186             exit(EXIT_FAILURE);
187             break;
188     }
189
190     yajl_free(handle);
191 }
192
193 /*
194  * free()s the color strings as soon as they are not needed anymore.
195  *
196  */
197 void free_colors(struct xcb_color_strings_t *colors) {
198 #define FREE_COLOR(x) \
199     do { \
200         if (colors->x) \
201             free(colors->x); \
202     } while (0)
203     FREE_COLOR(bar_fg);
204     FREE_COLOR(bar_bg);
205     FREE_COLOR(active_ws_fg);
206     FREE_COLOR(active_ws_bg);
207     FREE_COLOR(inactive_ws_fg);
208     FREE_COLOR(inactive_ws_bg);
209     FREE_COLOR(urgent_ws_fg);
210     FREE_COLOR(urgent_ws_bg);
211     FREE_COLOR(focus_ws_fg);
212     FREE_COLOR(focus_ws_bg);
213 #undef FREE_COLOR
214 }
215