]> git.sur5r.net Git - i3/i3/blob - i3bar/src/main.c
8c4cbf6dbe3007b115935b7201641fbefe2db5d2
[i3/i3] / i3bar / src / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010-2012 Axel Wagner and contributors (see also: LICENSE)
6  *
7  */
8 #include <stdio.h>
9 #include <i3/ipc.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include <stdlib.h>
13 #include <errno.h>
14 #include <ev.h>
15 #include <getopt.h>
16 #include <glob.h>
17
18 #include "common.h"
19
20 /*
21  * Having verboselog(), errorlog() and debuglog() is necessary when using libi3.
22  *
23  */
24 void verboselog(char *fmt, ...) {
25     va_list args;
26
27     va_start(args, fmt);
28     vfprintf(stdout, fmt, args);
29     va_end(args);
30 }
31
32 void errorlog(char *fmt, ...) {
33     va_list args;
34
35     va_start(args, fmt);
36     vfprintf(stderr, fmt, args);
37     va_end(args);
38 }
39
40 void debuglog(char *fmt, ...) {
41 }
42
43 /*
44  * Glob path, i.e. expand ~
45  *
46  */
47 char *expand_path(char *path) {
48     static glob_t globbuf;
49     if (glob(path, GLOB_NOCHECK | GLOB_TILDE, NULL, &globbuf) < 0) {
50         ELOG("glob() failed\n");
51         exit(EXIT_FAILURE);
52     }
53     char *result = sstrdup(globbuf.gl_pathc > 0 ? globbuf.gl_pathv[0] : path);
54     globfree(&globbuf);
55     return result;
56 }
57
58 void print_usage(char *elf_name) {
59     printf("Usage: %s -b bar_id [-s sock_path] [-h] [-v]\n", elf_name);
60     printf("\n");
61     printf("-b, --bar_id  <bar_id>\tBar ID for which to get the configuration\n");
62     printf("-s, --socket  <sock_path>\tConnect to i3 via <sock_path>\n");
63     printf("-h, --help    Display this help-message and exit\n");
64     printf("-v, --version Display version number and exit\n");
65     printf("\n");
66     printf(" PLEASE NOTE that i3bar will be automatically started by i3\n"
67            " as soon as there is a 'bar' configuration block in your\n"
68            " config file. You should never need to start it manually.\n");
69     printf("\n");
70 }
71
72 /*
73  * We watch various signals, that are there to make our application stop.
74  * If we get one of those, we ev_unloop() and invoke the cleanup-routines
75  * in main() with that
76  *
77  */
78 void sig_cb(struct ev_loop *loop, ev_signal *watcher, int revents) {
79     switch (watcher->signum) {
80         case SIGTERM:
81             DLOG("Got a SIGTERM, stopping\n");
82             break;
83         case SIGINT:
84             DLOG("Got a SIGINT, stopping\n");
85             break;
86         case SIGHUP:
87             DLOG("Got a SIGHUP, stopping\n");
88     }
89     ev_unloop(main_loop, EVUNLOOP_ALL);
90 }
91
92 int main(int argc, char **argv) {
93     int opt;
94     int option_index = 0;
95     char *socket_path = getenv("I3SOCK");
96     char *i3_default_sock_path = "/tmp/i3-ipc.sock";
97
98     /* Initialize the standard config to use 0 as default */
99     memset(&config, '\0', sizeof(config_t));
100
101     static struct option long_opt[] = {
102         { "socket",               required_argument, 0, 's' },
103         { "bar_id",               required_argument, 0, 'b' },
104         { "help",                 no_argument,       0, 'h' },
105         { "version",              no_argument,       0, 'v' },
106         { NULL,                   0,                 0, 0}
107     };
108
109     while ((opt = getopt_long(argc, argv, "b:s:hv", long_opt, &option_index)) != -1) {
110         switch (opt) {
111             case 's':
112                 socket_path = expand_path(optarg);
113                 break;
114             case 'v':
115                 printf("i3bar version " I3_VERSION " © 2010-2014 Axel Wagner and contributors\n");
116                 exit(EXIT_SUCCESS);
117                 break;
118             case 'b':
119                 config.bar_id = sstrdup(optarg);
120                 break;
121             default:
122                 print_usage(argv[0]);
123                 exit(EXIT_SUCCESS);
124                 break;
125         }
126     }
127
128     if (!config.bar_id) {
129         /* TODO: maybe we want -f which will automatically ask i3 for the first
130          * configured bar (and error out if there are too many)? */
131         ELOG("No bar_id passed. Please let i3 start i3bar or specify --bar_id\n");
132         exit(EXIT_FAILURE);
133     }
134
135     main_loop = ev_default_loop(0);
136
137     char *atom_sock_path = init_xcb_early();
138
139     if (socket_path == NULL) {
140         socket_path = atom_sock_path;
141     }
142
143     if (socket_path == NULL) {
144         ELOG("No Socket Path Specified, default to %s\n", i3_default_sock_path);
145         socket_path = expand_path(i3_default_sock_path);
146     }
147
148     init_outputs();
149     if (init_connection(socket_path)) {
150         /* Request the bar configuration. When it arrives, we fill the config array. */
151         i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG, config.bar_id);
152     }
153
154     /* We listen to SIGTERM/QUIT/INT and try to exit cleanly, by stopping the main-loop.
155      * We only need those watchers on the stack, so putting them on the stack saves us
156      * some calls to free() */
157     ev_signal *sig_term = smalloc(sizeof(ev_signal));
158     ev_signal *sig_int = smalloc(sizeof(ev_signal));
159     ev_signal *sig_hup = smalloc(sizeof(ev_signal));
160
161     ev_signal_init(sig_term, &sig_cb, SIGTERM);
162     ev_signal_init(sig_int, &sig_cb, SIGINT);
163     ev_signal_init(sig_hup, &sig_cb, SIGHUP);
164
165     ev_signal_start(main_loop, sig_term);
166     ev_signal_start(main_loop, sig_int);
167     ev_signal_start(main_loop, sig_hup);
168
169     /* From here on everything should run smooth for itself, just start listening for
170      * events. We stop simply stop the event-loop, when we are finished */
171     ev_loop(main_loop, 0);
172
173     kill_child();
174
175     FREE(statusline_buffer);
176
177     clean_xcb();
178     ev_default_destroy();
179
180     free_workspaces();
181
182     return 0;
183 }