]> git.sur5r.net Git - i3/i3/blob - i3-dump-log/main.c
Merge branch 'master' into next
[i3/i3] / i3-dump-log / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * i3-dump-log/main.c: Dumps the i3 SHM log to stdout.
8  *
9  */
10 #include <stdio.h>
11 #include <stdbool.h>
12 #include <sys/types.h>
13 #include <sys/socket.h>
14 #include <sys/un.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <string.h>
18 #include <errno.h>
19 #include <err.h>
20 #include <stdint.h>
21 #include <getopt.h>
22 #include <limits.h>
23 #include <fcntl.h>
24 #include <sys/mman.h>
25 #include <sys/stat.h>
26
27 #include "libi3.h"
28 #include "shmlog.h"
29 #include <i3/ipc.h>
30
31 int main(int argc, char *argv[]) {
32     int o, option_index = 0;
33     bool verbose = false;
34
35     static struct option long_options[] = {
36         {"version", no_argument, 0, 'v'},
37         {"verbose", no_argument, 0, 'V'},
38         {"help", no_argument, 0, 'h'},
39         {0, 0, 0, 0}
40     };
41
42     char *options_string = "s:vVh";
43
44     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
45         if (o == 'v') {
46             printf("i3-dump-log " I3_VERSION "\n");
47             return 0;
48         } else if (o == 'V') {
49             verbose = true;
50         } else if (o == 'h') {
51             printf("i3-dump-log " I3_VERSION "\n");
52             printf("i3-dump-log [-s <socket>]\n");
53             return 0;
54         }
55     }
56
57     char *shmname = root_atom_contents("I3_SHMLOG_PATH");
58     if (shmname == NULL)
59         errx(EXIT_FAILURE, "Cannot get I3_SHMLOG_PATH atom contents. Is i3 running on this display?");
60
61     if (*shmname == '\0')
62         errx(EXIT_FAILURE, "Cannot dump log: SHM logging is disabled in i3.");
63
64     struct stat statbuf;
65
66     int logbuffer_shm = shm_open(shmname, O_RDONLY, 0);
67     if (logbuffer_shm == -1)
68         err(EXIT_FAILURE, "Could not shm_open SHM segment for the i3 log (%s)", shmname);
69
70     if (fstat(logbuffer_shm, &statbuf) != 0)
71         err(EXIT_FAILURE, "stat(%s)", shmname);
72
73     char *logbuffer = mmap(NULL, statbuf.st_size, PROT_READ, MAP_SHARED, logbuffer_shm, 0);
74     if (logbuffer == MAP_FAILED)
75         err(EXIT_FAILURE, "Could not mmap SHM segment for the i3 log");
76
77     i3_shmlog_header *header = (i3_shmlog_header*)logbuffer;
78
79     if (verbose)
80         printf("next_write = %d, last_wrap = %d, logbuffer_size = %d, shmname = %s\n",
81                header->offset_next_write, header->offset_last_wrap, header->size, shmname);
82     int chars;
83     char *walk = logbuffer + header->offset_next_write;
84     /* Skip the first line, it very likely is mangled. Not a problem, though,
85      * the log is chatty enough to have plenty lines left. */
86     while (*walk != '\0')
87         walk++;
88
89     /* Print the oldest log lines. We use printf("%s") to stop on \0. */
90     while (walk < (logbuffer + header->offset_last_wrap)) {
91         chars = printf("%s", walk);
92         /* Shortcut: If there are two consecutive \0 bytes, this part of the
93          * buffer was never touched. To not call printf() for every byte of the
94          * buffer, we directly exit the loop. */
95         if (*walk == '\0' && *(walk+1) == '\0')
96             break;
97         walk += (chars > 0 ? chars : 1);
98     }
99
100     /* Then start from the beginning and print the newer lines */
101     walk = logbuffer + sizeof(i3_shmlog_header);
102     while (walk < (logbuffer + header->offset_next_write)) {
103         chars = printf("%s", walk);
104         walk += (chars > 0 ? chars : 1);
105     }
106
107     return 0;
108 }