]> git.sur5r.net Git - i3/i3/blob - i3bar/src/main.c
Update copyright notices and get rid of ranges
[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 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     while ((opt = getopt_long(argc, argv, "b:s:hv", long_opt, &option_index)) != -1) {
109         switch (opt) {
110             case 's':
111                 socket_path = expand_path(optarg);
112                 break;
113             case 'v':
114                 printf("i3bar version " I3_VERSION " © 2010 Axel Wagner and contributors\n");
115                 exit(EXIT_SUCCESS);
116                 break;
117             case 'b':
118                 config.bar_id = sstrdup(optarg);
119                 break;
120             default:
121                 print_usage(argv[0]);
122                 exit(EXIT_SUCCESS);
123                 break;
124         }
125     }
126
127     if (!config.bar_id) {
128         /* TODO: maybe we want -f which will automatically ask i3 for the first
129          * configured bar (and error out if there are too many)? */
130         ELOG("No bar_id passed. Please let i3 start i3bar or specify --bar_id\n");
131         exit(EXIT_FAILURE);
132     }
133
134     main_loop = ev_default_loop(0);
135
136     char *atom_sock_path = init_xcb_early();
137
138     if (socket_path == NULL) {
139         socket_path = atom_sock_path;
140     }
141
142     if (socket_path == NULL) {
143         ELOG("No socket path specified, default to %s\n", i3_default_sock_path);
144         socket_path = expand_path(i3_default_sock_path);
145     }
146
147     init_outputs();
148     if (init_connection(socket_path)) {
149         /* Request the bar configuration. When it arrives, we fill the config array. */
150         i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG, config.bar_id);
151     }
152
153     /* We listen to SIGTERM/QUIT/INT and try to exit cleanly, by stopping the main loop.
154      * We only need those watchers on the stack, so putting them on the stack saves us
155      * some calls to free() */
156     ev_signal *sig_term = smalloc(sizeof(ev_signal));
157     ev_signal *sig_int = smalloc(sizeof(ev_signal));
158     ev_signal *sig_hup = smalloc(sizeof(ev_signal));
159
160     ev_signal_init(sig_term, &sig_cb, SIGTERM);
161     ev_signal_init(sig_int, &sig_cb, SIGINT);
162     ev_signal_init(sig_hup, &sig_cb, SIGHUP);
163
164     ev_signal_start(main_loop, sig_term);
165     ev_signal_start(main_loop, sig_int);
166     ev_signal_start(main_loop, sig_hup);
167
168     /* From here on everything should run smooth for itself, just start listening for
169      * events. We stop simply stop the event loop, when we are finished */
170     ev_loop(main_loop, 0);
171
172     kill_child();
173
174     clean_xcb();
175     ev_default_destroy();
176
177     free_workspaces();
178
179     return 0;
180 }