901994753621f99dbcaf39d4b42f6c928ea841af
[tig] / tig.c
1 /* Copyright (c) 2006 Jonas Fonseca <fonseca@diku.dk>
2 * See license info at the bottom. */
3 /**
4 * TIG(1)
5 * ======
6 *
7 * NAME
8 * ----
9 * tig - text-mode interface for git
10 *
11 * SYNOPSIS
12 * --------
13 * [verse]
14 * tig [options]
15 * tig [options] [--] [git log options]
16 * tig [options] log [git log options]
17 * tig [options] diff [git diff options]
18 * tig [options] show [git show options]
19 * tig [options] < [git command output]
20 *
21 * DESCRIPTION
22 * -----------
23 * Browse changes in a git repository. Additionally, tig(1) can also act
24 * as a pager for output of various git commands.
25 *
26 * When browsing repositories, tig(1) uses the underlying git commands
27 * to present the user with various views, such as summarized commit log
28 * and showing the commit with the log message, diffstat, and the diff.
29 *
30 * Using tig(1) as a pager, it will display input from stdin and try
31 * to colorize it.
32 **/
33
34 #ifndef VERSION
35 #define VERSION "tig-0.3"
36 #endif
37
38 #ifndef DEBUG
39 #define NDEBUG
40 #endif
41
42 #include <assert.h>
43 #include <errno.h>
44 #include <ctype.h>
45 #include <signal.h>
46 #include <stdarg.h>
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <unistd.h>
51 #include <time.h>
52
53 #include <curses.h>
54
55 static void die(const char *err, ...);
56 static void report(const char *msg, ...);
57 static void set_nonblocking_input(bool loading);
58
59 #define ABS(x) ((x) >= 0 ? (x) : -(x))
60 #define MIN(x, y) ((x) < (y) ? (x) : (y))
61
62 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
63 #define STRING_SIZE(x) (sizeof(x) - 1)
64
65 #define SIZEOF_REF 256 /* Size of symbolic or SHA1 ID. */
66 #define SIZEOF_CMD 1024 /* Size of command buffer. */
67
68 /* This color name can be used to refer to the default term colors. */
69 #define COLOR_DEFAULT (-1)
70
71 #define TIG_HELP "(d)iff, (l)og, (m)ain, (q)uit, (h)elp"
72
73 /* The format and size of the date column in the main view. */
74 #define DATE_FORMAT "%Y-%m-%d %H:%M"
75 #define DATE_COLS STRING_SIZE("2006-04-29 14:21 ")
76
77 /* The default interval between line numbers. */
78 #define NUMBER_INTERVAL 1
79
80 #define TABSIZE 8
81
82 #define SCALE_SPLIT_VIEW(height) ((height) * 2 / 3)
83
84 /* Some ascii-shorthands fitted into the ncurses namespace. */
85 #define KEY_TAB '\t'
86 #define KEY_RETURN '\r'
87 #define KEY_ESC 27
88
89
90 /* User action requests. */
91 enum request {
92 /* Offset all requests to avoid conflicts with ncurses getch values. */
93 REQ_OFFSET = KEY_MAX + 1,
94
95 /* XXX: Keep the view request first and in sync with views[]. */
96 REQ_VIEW_MAIN,
97 REQ_VIEW_DIFF,
98 REQ_VIEW_LOG,
99 REQ_VIEW_HELP,
100 REQ_VIEW_PAGER,
101
102 REQ_ENTER,
103 REQ_QUIT,
104 REQ_PROMPT,
105 REQ_SCREEN_REDRAW,
106 REQ_SCREEN_RESIZE,
107 REQ_SCREEN_UPDATE,
108 REQ_SHOW_VERSION,
109 REQ_STOP_LOADING,
110 REQ_TOGGLE_LINE_NUMBERS,
111 REQ_VIEW_NEXT,
112
113 REQ_MOVE_UP,
114 REQ_MOVE_UP_ENTER,
115 REQ_MOVE_DOWN,
116 REQ_MOVE_DOWN_ENTER,
117 REQ_MOVE_PAGE_UP,
118 REQ_MOVE_PAGE_DOWN,
119 REQ_MOVE_FIRST_LINE,
120 REQ_MOVE_LAST_LINE,
121
122 REQ_SCROLL_LINE_UP,
123 REQ_SCROLL_LINE_DOWN,
124 REQ_SCROLL_PAGE_UP,
125 REQ_SCROLL_PAGE_DOWN,
126 };
127
128 struct ref {
129 char *name; /* Ref name; tag or head names are shortened. */
130 char id[41]; /* Commit SHA1 ID */
131 unsigned int tag:1; /* Is it a tag? */
132 unsigned int next:1; /* For ref lists: are there more refs? */
133 };
134
135 struct commit {
136 char id[41]; /* SHA1 ID. */
137 char title[75]; /* The first line of the commit message. */
138 char author[75]; /* The author of the commit. */
139 struct tm time; /* Date from the author ident. */
140 struct ref **refs; /* Repository references; tags & branch heads. */
141 };
142
143
144 /*
145 * String helpers
146 */
147
148 static inline void
149 string_ncopy(char *dst, const char *src, int dstlen)
150 {
151 strncpy(dst, src, dstlen - 1);
152 dst[dstlen - 1] = 0;
153
154 }
155
156 /* Shorthand for safely copying into a fixed buffer. */
157 #define string_copy(dst, src) \
158 string_ncopy(dst, src, sizeof(dst))
159
160
161 /* Shell quoting
162 *
163 * NOTE: The following is a slightly modified copy of the git project's shell
164 * quoting routines found in the quote.c file.
165 *
166 * Help to copy the thing properly quoted for the shell safety. any single
167 * quote is replaced with '\'', any exclamation point is replaced with '\!',
168 * and the whole thing is enclosed in a
169 *
170 * E.g.
171 * original sq_quote result
172 * name ==> name ==> 'name'
173 * a b ==> a b ==> 'a b'
174 * a'b ==> a'\''b ==> 'a'\''b'
175 * a!b ==> a'\!'b ==> 'a'\!'b'
176 */
177
178 static size_t
179 sq_quote(char buf[SIZEOF_CMD], size_t bufsize, const char *src)
180 {
181 char c;
182
183 #define BUFPUT(x) do { if (bufsize < SIZEOF_CMD) buf[bufsize++] = (x); } while (0)
184
185 BUFPUT('\'');
186 while ((c = *src++)) {
187 if (c == '\'' || c == '!') {
188 BUFPUT('\'');
189 BUFPUT('\\');
190 BUFPUT(c);
191 BUFPUT('\'');
192 } else {
193 BUFPUT(c);
194 }
195 }
196 BUFPUT('\'');
197
198 return bufsize;
199 }
200
201
202 /**
203 * OPTIONS
204 * -------
205 **/
206
207 /* Option and state variables. */
208 static bool opt_line_number = FALSE;
209 static int opt_num_interval = NUMBER_INTERVAL;
210 static int opt_tab_size = TABSIZE;
211 static enum request opt_request = REQ_VIEW_MAIN;
212 static char opt_cmd[SIZEOF_CMD] = "";
213 static FILE *opt_pipe = NULL;
214
215 /* Returns the index of log or diff command or -1 to exit. */
216 static bool
217 parse_options(int argc, char *argv[])
218 {
219 int i;
220
221 for (i = 1; i < argc; i++) {
222 char *opt = argv[i];
223
224 /**
225 * -l::
226 * Start up in log view using the internal log command.
227 **/
228 if (!strcmp(opt, "-l")) {
229 opt_request = REQ_VIEW_LOG;
230 continue;
231 }
232
233 /**
234 * -d::
235 * Start up in diff view using the internal diff command.
236 **/
237 if (!strcmp(opt, "-d")) {
238 opt_request = REQ_VIEW_DIFF;
239 continue;
240 }
241
242 /**
243 * -n[INTERVAL], --line-number[=INTERVAL]::
244 * Prefix line numbers in log and diff view.
245 * Optionally, with interval different than each line.
246 **/
247 if (!strncmp(opt, "-n", 2) ||
248 !strncmp(opt, "--line-number", 13)) {
249 char *num = opt;
250
251 if (opt[1] == 'n') {
252 num = opt + 2;
253
254 } else if (opt[STRING_SIZE("--line-number")] == '=') {
255 num = opt + STRING_SIZE("--line-number=");
256 }
257
258 if (isdigit(*num))
259 opt_num_interval = atoi(num);
260
261 opt_line_number = TRUE;
262 continue;
263 }
264
265 /**
266 * -t[NSPACES], --tab-size[=NSPACES]::
267 * Set the number of spaces tabs should be expanded to.
268 **/
269 if (!strncmp(opt, "-t", 2) ||
270 !strncmp(opt, "--tab-size", 10)) {
271 char *num = opt;
272
273 if (opt[1] == 't') {
274 num = opt + 2;
275
276 } else if (opt[STRING_SIZE("--tab-size")] == '=') {
277 num = opt + STRING_SIZE("--tab-size=");
278 }
279
280 if (isdigit(*num))
281 opt_tab_size = MIN(atoi(num), TABSIZE);
282 continue;
283 }
284
285 /**
286 * -v, --version::
287 * Show version and exit.
288 **/
289 if (!strcmp(opt, "-v") ||
290 !strcmp(opt, "--version")) {
291 printf("tig version %s\n", VERSION);
292 return FALSE;
293 }
294
295 /**
296 * \--::
297 * End of tig(1) options. Useful when specifying command
298 * options for the main view. Example:
299 *
300 * $ tig -- --since=1.month
301 **/
302 if (!strcmp(opt, "--")) {
303 i++;
304 break;
305 }
306
307 /**
308 * log [git log options]::
309 * Open log view using the given git log options.
310 *
311 * diff [git diff options]::
312 * Open diff view using the given git diff options.
313 *
314 * show [git show options]::
315 * Open diff view using the given git show options.
316 **/
317 if (!strcmp(opt, "log") ||
318 !strcmp(opt, "diff") ||
319 !strcmp(opt, "show")) {
320 opt_request = opt[0] == 'l'
321 ? REQ_VIEW_LOG : REQ_VIEW_DIFF;
322 break;
323 }
324
325 /**
326 * [git log options]::
327 * tig(1) will stop the option parsing when the first
328 * command line parameter not starting with "-" is
329 * encountered. All options including this one will be
330 * passed to git log when loading the main view.
331 * This makes it possible to say:
332 *
333 * $ tig tag-1.0..HEAD
334 **/
335 if (opt[0] && opt[0] != '-')
336 break;
337
338 die("unknown command '%s'", opt);
339 }
340
341 if (!isatty(STDIN_FILENO)) {
342 /**
343 * Pager mode
344 * ~~~~~~~~~~
345 * If stdin is a pipe, any log or diff options will be ignored and the
346 * pager view will be opened loading data from stdin. The pager mode
347 * can be used for colorizing output from various git commands.
348 *
349 * Example on how to colorize the output of git-show(1):
350 *
351 * $ git show | tig
352 **/
353 opt_request = REQ_VIEW_PAGER;
354 opt_pipe = stdin;
355
356 } else if (i < argc) {
357 size_t buf_size;
358
359 /**
360 * Git command options
361 * ~~~~~~~~~~~~~~~~~~~
362 * All git command options specified on the command line will
363 * be passed to the given command and all will be shell quoted
364 * before they are passed to the shell.
365 *
366 * NOTE: If you specify options for the main view, you should
367 * not use the `--pretty` option as this option will be set
368 * automatically to the format expected by the main view.
369 *
370 * Example on how to open the log view and show both author and
371 * committer information:
372 *
373 * $ tig log --pretty=fuller
374 *
375 * See the <<refspec, "Specifying revisions">> section below
376 * for an introduction to revision options supported by the git
377 * commands. For details on specific git command options, refer
378 * to the man page of the command in question.
379 **/
380
381 if (opt_request == REQ_VIEW_MAIN)
382 /* XXX: This is vulnerable to the user overriding
383 * options required for the main view parser. */
384 string_copy(opt_cmd, "git log --stat --pretty=raw");
385 else
386 string_copy(opt_cmd, "git");
387 buf_size = strlen(opt_cmd);
388
389 while (buf_size < sizeof(opt_cmd) && i < argc) {
390 opt_cmd[buf_size++] = ' ';
391 buf_size = sq_quote(opt_cmd, buf_size, argv[i++]);
392 }
393
394 if (buf_size >= sizeof(opt_cmd))
395 die("command too long");
396
397 opt_cmd[buf_size] = 0;
398
399 }
400
401 return TRUE;
402 }
403
404
405 /*
406 * Line-oriented content detection.
407 */
408
409 #define LINE_INFO \
410 /* Line type String to match Foreground Background Attributes
411 * --------- --------------- ---------- ---------- ---------- */ \
412 /* Diff markup */ \
413 LINE(DIFF, "diff --git ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
414 LINE(DIFF_INDEX, "index ", COLOR_BLUE, COLOR_DEFAULT, 0), \
415 LINE(DIFF_CHUNK, "@@", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
416 LINE(DIFF_ADD, "+", COLOR_GREEN, COLOR_DEFAULT, 0), \
417 LINE(DIFF_DEL, "-", COLOR_RED, COLOR_DEFAULT, 0), \
418 LINE(DIFF_OLDMODE, "old file mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
419 LINE(DIFF_NEWMODE, "new file mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
420 LINE(DIFF_COPY, "copy ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
421 LINE(DIFF_RENAME, "rename ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
422 LINE(DIFF_SIM, "similarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
423 LINE(DIFF_DISSIM, "dissimilarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
424 /* Pretty print commit header */ \
425 LINE(PP_AUTHOR, "Author: ", COLOR_CYAN, COLOR_DEFAULT, 0), \
426 LINE(PP_COMMIT, "Commit: ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
427 LINE(PP_MERGE, "Merge: ", COLOR_BLUE, COLOR_DEFAULT, 0), \
428 LINE(PP_DATE, "Date: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
429 LINE(PP_ADATE, "AuthorDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
430 LINE(PP_CDATE, "CommitDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
431 /* Raw commit header */ \
432 LINE(COMMIT, "commit ", COLOR_GREEN, COLOR_DEFAULT, 0), \
433 LINE(PARENT, "parent ", COLOR_BLUE, COLOR_DEFAULT, 0), \
434 LINE(TREE, "tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
435 LINE(AUTHOR, "author ", COLOR_CYAN, COLOR_DEFAULT, 0), \
436 LINE(COMMITTER, "committer ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
437 /* Misc */ \
438 LINE(DIFF_TREE, "diff-tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
439 LINE(SIGNOFF, " Signed-off-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
440 /* UI colors */ \
441 LINE(DEFAULT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
442 LINE(CURSOR, "", COLOR_WHITE, COLOR_GREEN, A_BOLD), \
443 LINE(STATUS, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
444 LINE(TITLE_BLUR, "", COLOR_WHITE, COLOR_BLUE, 0), \
445 LINE(TITLE_FOCUS, "", COLOR_WHITE, COLOR_BLUE, A_BOLD), \
446 LINE(MAIN_DATE, "", COLOR_BLUE, COLOR_DEFAULT, 0), \
447 LINE(MAIN_AUTHOR, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
448 LINE(MAIN_COMMIT, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
449 LINE(MAIN_DELIM, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
450 LINE(MAIN_TAG, "", COLOR_MAGENTA, COLOR_DEFAULT, A_BOLD), \
451 LINE(MAIN_REF, "", COLOR_CYAN, COLOR_DEFAULT, A_BOLD),
452
453 enum line_type {
454 #define LINE(type, line, fg, bg, attr) \
455 LINE_##type
456 LINE_INFO
457 #undef LINE
458 };
459
460 struct line_info {
461 const char *line; /* The start of line to match. */
462 int linelen; /* Size of string to match. */
463 int fg, bg, attr; /* Color and text attributes for the lines. */
464 };
465
466 static struct line_info line_info[] = {
467 #define LINE(type, line, fg, bg, attr) \
468 { (line), STRING_SIZE(line), (fg), (bg), (attr) }
469 LINE_INFO
470 #undef LINE
471 };
472
473 static enum line_type
474 get_line_type(char *line)
475 {
476 int linelen = strlen(line);
477 enum line_type type;
478
479 for (type = 0; type < ARRAY_SIZE(line_info); type++)
480 /* Case insensitive search matches Signed-off-by lines better. */
481 if (linelen >= line_info[type].linelen &&
482 !strncasecmp(line_info[type].line, line, line_info[type].linelen))
483 return type;
484
485 return LINE_DEFAULT;
486 }
487
488 static inline int
489 get_line_attr(enum line_type type)
490 {
491 assert(type < ARRAY_SIZE(line_info));
492 return COLOR_PAIR(type) | line_info[type].attr;
493 }
494
495 static void
496 init_colors(void)
497 {
498 int default_bg = COLOR_BLACK;
499 int default_fg = COLOR_WHITE;
500 enum line_type type;
501
502 start_color();
503
504 if (use_default_colors() != ERR) {
505 default_bg = -1;
506 default_fg = -1;
507 }
508
509 for (type = 0; type < ARRAY_SIZE(line_info); type++) {
510 struct line_info *info = &line_info[type];
511 int bg = info->bg == COLOR_DEFAULT ? default_bg : info->bg;
512 int fg = info->fg == COLOR_DEFAULT ? default_fg : info->fg;
513
514 init_pair(type, fg, bg);
515 }
516 }
517
518
519 /**
520 * ENVIRONMENT VARIABLES
521 * ---------------------
522 * Several options related to the interface with git can be configured
523 * via environment options.
524 *
525 * Repository references
526 * ~~~~~~~~~~~~~~~~~~~~~
527 * Commits that are referenced by tags and branch heads will be marked
528 * by the reference name surrounded by '[' and ']':
529 *
530 * 2006-03-26 19:42 Petr Baudis | [cogito-0.17.1] Cogito 0.17.1
531 *
532 * If you want to filter out certain directories under `.git/refs/`, say
533 * `tmp` you can do it by setting the following variable:
534 *
535 * $ TIG_LS_REMOTE="git ls-remote . | sed /\/tmp\//d" tig
536 *
537 * Or set the variable permanently in your environment.
538 *
539 * TIG_LS_REMOTE::
540 * Set command for retrieving all repository references. The command
541 * should output data in the same format as git-ls-remote(1).
542 **/
543
544 #define TIG_LS_REMOTE \
545 "git ls-remote . 2>/dev/null"
546
547 /**
548 * [[view-commands]]
549 * View commands
550 * ~~~~~~~~~~~~~
551 * It is possible to alter which commands are used for the different views.
552 * If for example you prefer commits in the main view to be sorted by date
553 * and only show 500 commits, use:
554 *
555 * $ TIG_MAIN_CMD="git log --date-order -n500 --pretty=raw %s" tig
556 *
557 * Or set the variable permanently in your environment.
558 *
559 * Notice, how `%s` is used to specify the commit reference. There can
560 * be a maximum of 5 `%s` ref specifications.
561 *
562 * TIG_DIFF_CMD::
563 * The command used for the diff view. By default, git show is used
564 * as a backend.
565 *
566 * TIG_LOG_CMD::
567 * The command used for the log view. If you prefer to have both
568 * author and committer shown in the log view be sure to pass
569 * `--pretty=fuller` to git log.
570 *
571 * TIG_MAIN_CMD::
572 * The command used for the main view. Note, you must always specify
573 * the option: `--pretty=raw` since the main view parser expects to
574 * read that format.
575 **/
576
577 #define TIG_DIFF_CMD \
578 "git show --patch-with-stat --find-copies-harder -B -C %s"
579
580 #define TIG_LOG_CMD \
581 "git log --cc --stat -n100 %s"
582
583 #define TIG_MAIN_CMD \
584 "git log --topo-order --stat --pretty=raw %s"
585
586 /* ... silently ignore that the following are also exported. */
587
588 #define TIG_HELP_CMD \
589 "man tig 2>/dev/null"
590
591 #define TIG_PAGER_CMD \
592 ""
593
594
595 /**
596 * The viewer
597 * ----------
598 * The display consists of a status window on the last line of the screen and
599 * one or more views. The default is to only show one view at the time but it
600 * is possible to split both the main and log view to also show the commit
601 * diff.
602 *
603 * If you are in the log view and press 'Enter' when the current line is a
604 * commit line, such as:
605 *
606 * commit 4d55caff4cc89335192f3e566004b4ceef572521
607 *
608 * You will split the view so that the log view is displayed in the top window
609 * and the diff view in the bottom window. You can switch between the two
610 * views by pressing 'Tab'. To maximize the log view again, simply press 'l'.
611 **/
612
613 struct view;
614
615 /* The display array of active views and the index of the current view. */
616 static struct view *display[2];
617 static unsigned int current_view;
618
619 #define foreach_view(view, i) \
620 for (i = 0; i < ARRAY_SIZE(display) && (view = display[i]); i++)
621
622
623 /**
624 * Current head and commit ID
625 * ~~~~~~~~~~~~~~~~~~~~~~~~~~
626 * The viewer keeps track of both what head and commit ID you are currently
627 * viewing. The commit ID will follow the cursor line and change everytime time
628 * you highlight a different commit. Whenever you reopen the diff view it
629 * will be reloaded, if the commit ID changed.
630 *
631 * The head ID is used when opening the main and log view to indicate from
632 * what revision to show history.
633 **/
634
635 static char ref_commit[SIZEOF_REF] = "HEAD";
636 static char ref_head[SIZEOF_REF] = "HEAD";
637
638
639 struct view {
640 const char *name; /* View name */
641 const char *cmd_fmt; /* Default command line format */
642 const char *cmd_env; /* Command line set via environment */
643 const char *id; /* Points to either of ref_{head,commit} */
644 size_t objsize; /* Size of objects in the line index */
645
646 struct view_ops {
647 /* What type of content being displayed. Used in the
648 * title bar. */
649 const char *type;
650 /* Draw one line; @lineno must be < view->height. */
651 bool (*draw)(struct view *view, unsigned int lineno);
652 /* Read one line; updates view->line. */
653 bool (*read)(struct view *view, char *line);
654 /* Depending on view, change display based on current line. */
655 bool (*enter)(struct view *view);
656 } *ops;
657
658 char cmd[SIZEOF_CMD]; /* Command buffer */
659 char ref[SIZEOF_REF]; /* Hovered commit reference */
660 char vid[SIZEOF_REF]; /* View ID. Set to id member when updating. */
661
662 int height, width; /* The width and height of the main window */
663 WINDOW *win; /* The main window */
664 WINDOW *title; /* The title window living below the main window */
665
666 /* Navigation */
667 unsigned long offset; /* Offset of the window top */
668 unsigned long lineno; /* Current line number */
669
670 /* Buffering */
671 unsigned long lines; /* Total number of lines */
672 void **line; /* Line index; each line contains user data */
673 unsigned int digits; /* Number of digits in the lines member. */
674
675 /* Loading */
676 FILE *pipe;
677 time_t start_time;
678 };
679
680 static struct view_ops pager_ops;
681 static struct view_ops main_ops;
682
683 #define VIEW_STR(name, cmd, env, ref, objsize, ops) \
684 { name, cmd, #env, ref, objsize, ops }
685
686 #define VIEW_(id, name, ops, ref, objsize) \
687 VIEW_STR(name, TIG_##id##_CMD, TIG_##id##_CMD, ref, objsize, ops)
688
689 /**
690 * Views
691 * ~~~~~
692 * tig(1) presents various 'views' of a repository. Each view is based on output
693 * from an external command, most often 'git log', 'git diff', or 'git show'.
694 *
695 * The main view::
696 * Is the default view, and it shows a one line summary of each commit
697 * in the chosen list of revisions. The summary includes commit date,
698 * author, and the first line of the log message. Additionally, any
699 * repository references, such as tags, will be shown.
700 *
701 * The log view::
702 * Presents a more rich view of the revision log showing the whole log
703 * message and the diffstat.
704 *
705 * The diff view::
706 * Shows either the diff of the current working tree, that is, what
707 * has changed since the last commit, or the commit diff complete
708 * with log message, diffstat and diff.
709 *
710 * The pager view::
711 * Is used for displaying both input from stdin and output from git
712 * commands entered in the internal prompt.
713 *
714 * The help view::
715 * Displays the information from the tig(1) man page. For the help view
716 * to work you need to have the tig(1) man page installed.
717 **/
718
719 static struct view views[] = {
720 VIEW_(MAIN, "main", &main_ops, ref_head, sizeof(struct commit)),
721 VIEW_(DIFF, "diff", &pager_ops, ref_commit, sizeof(char)),
722 VIEW_(LOG, "log", &pager_ops, ref_head, sizeof(char)),
723 VIEW_(HELP, "help", &pager_ops, "static", sizeof(char)),
724 VIEW_(PAGER, "pager", &pager_ops, "static", sizeof(char)),
725 };
726
727 #define VIEW(req) (&views[(req) - REQ_OFFSET - 1])
728
729
730 static void
731 redraw_view_from(struct view *view, int lineno)
732 {
733 assert(0 <= lineno && lineno < view->height);
734
735 for (; lineno < view->height; lineno++) {
736 if (!view->ops->draw(view, lineno))
737 break;
738 }
739
740 redrawwin(view->win);
741 wrefresh(view->win);
742 }
743
744 static void
745 redraw_view(struct view *view)
746 {
747 wclear(view->win);
748 redraw_view_from(view, 0);
749 }
750
751
752 /**
753 * Title windows
754 * ~~~~~~~~~~~~~
755 * Each view has a title window which shows the name of the view, current
756 * commit ID if available, and where the view is positioned:
757 *
758 * [main] c622eefaa485995320bc743431bae0d497b1d875 - commit 1 of 61 (1%)
759 *
760 * By default, the title of the current view is highlighted using bold font.
761 **/
762
763 static void
764 update_view_title(struct view *view)
765 {
766 if (view == display[current_view])
767 wbkgdset(view->title, get_line_attr(LINE_TITLE_FOCUS));
768 else
769 wbkgdset(view->title, get_line_attr(LINE_TITLE_BLUR));
770
771 werase(view->title);
772 wmove(view->title, 0, 0);
773
774 if (*view->ref)
775 wprintw(view->title, "[%s] %s", view->name, view->ref);
776 else
777 wprintw(view->title, "[%s]", view->name);
778
779 if (view->lines) {
780 wprintw(view->title, " - %s %d of %d (%d%%)",
781 view->ops->type,
782 view->lineno + 1,
783 view->lines,
784 (view->lineno + 1) * 100 / view->lines);
785 }
786
787 wrefresh(view->title);
788 }
789
790 static void
791 resize_display(void)
792 {
793 int offset, i;
794 struct view *base = display[0];
795 struct view *view = display[1] ? display[1] : display[0];
796
797 /* Setup window dimensions */
798
799 getmaxyx(stdscr, base->height, base->width);
800
801 /* Make room for the status window. */
802 base->height -= 1;
803
804 if (view != base) {
805 /* Horizontal split. */
806 view->width = base->width;
807 view->height = SCALE_SPLIT_VIEW(base->height);
808 base->height -= view->height;
809
810 /* Make room for the title bar. */
811 view->height -= 1;
812 }
813
814 /* Make room for the title bar. */
815 base->height -= 1;
816
817 offset = 0;
818
819 foreach_view (view, i) {
820 /* Keep the height of all view->win windows one larger than is
821 * required so that the cursor can wrap-around on the last line
822 * without scrolling the window. */
823 if (!view->win) {
824 view->win = newwin(view->height + 1, 0, offset, 0);
825 if (!view->win)
826 die("Failed to create %s view", view->name);
827
828 scrollok(view->win, TRUE);
829
830 view->title = newwin(1, 0, offset + view->height, 0);
831 if (!view->title)
832 die("Failed to create title window");
833
834 } else {
835 wresize(view->win, view->height + 1, view->width);
836 mvwin(view->win, offset, 0);
837 mvwin(view->title, offset + view->height, 0);
838 wrefresh(view->win);
839 }
840
841 offset += view->height + 1;
842 }
843 }
844
845 static void
846 redraw_display(void)
847 {
848 struct view *view;
849 int i;
850
851 foreach_view (view, i) {
852 redraw_view(view);
853 update_view_title(view);
854 }
855 }
856
857
858 /*
859 * Navigation
860 */
861
862 /* Scrolling backend */
863 static void
864 do_scroll_view(struct view *view, int lines)
865 {
866 /* The rendering expects the new offset. */
867 view->offset += lines;
868
869 assert(0 <= view->offset && view->offset < view->lines);
870 assert(lines);
871
872 /* Redraw the whole screen if scrolling is pointless. */
873 if (view->height < ABS(lines)) {
874 redraw_view(view);
875
876 } else {
877 int line = lines > 0 ? view->height - lines : 0;
878 int end = line + ABS(lines);
879
880 wscrl(view->win, lines);
881
882 for (; line < end; line++) {
883 if (!view->ops->draw(view, line))
884 break;
885 }
886 }
887
888 /* Move current line into the view. */
889 if (view->lineno < view->offset) {
890 view->lineno = view->offset;
891 view->ops->draw(view, 0);
892
893 } else if (view->lineno >= view->offset + view->height) {
894 if (view->lineno == view->offset + view->height) {
895 /* Clear the hidden line so it doesn't show if the view
896 * is scrolled up. */
897 wmove(view->win, view->height, 0);
898 wclrtoeol(view->win);
899 }
900 view->lineno = view->offset + view->height - 1;
901 view->ops->draw(view, view->lineno - view->offset);
902 }
903
904 assert(view->offset <= view->lineno && view->lineno < view->lines);
905
906 redrawwin(view->win);
907 wrefresh(view->win);
908 report("");
909 }
910
911 /* Scroll frontend */
912 static void
913 scroll_view(struct view *view, enum request request)
914 {
915 int lines = 1;
916
917 switch (request) {
918 case REQ_SCROLL_PAGE_DOWN:
919 lines = view->height;
920 case REQ_SCROLL_LINE_DOWN:
921 if (view->offset + lines > view->lines)
922 lines = view->lines - view->offset;
923
924 if (lines == 0 || view->offset + view->height >= view->lines) {
925 report("Cannot scroll beyond the last line");
926 return;
927 }
928 break;
929
930 case REQ_SCROLL_PAGE_UP:
931 lines = view->height;
932 case REQ_SCROLL_LINE_UP:
933 if (lines > view->offset)
934 lines = view->offset;
935
936 if (lines == 0) {
937 report("Cannot scroll beyond the first line");
938 return;
939 }
940
941 lines = -lines;
942 break;
943
944 default:
945 die("request %d not handled in switch", request);
946 }
947
948 do_scroll_view(view, lines);
949 }
950
951 /* Cursor moving */
952 static void
953 move_view(struct view *view, enum request request)
954 {
955 int steps;
956
957 switch (request) {
958 case REQ_MOVE_FIRST_LINE:
959 steps = -view->lineno;
960 break;
961
962 case REQ_MOVE_LAST_LINE:
963 steps = view->lines - view->lineno - 1;
964 break;
965
966 case REQ_MOVE_PAGE_UP:
967 steps = view->height > view->lineno
968 ? -view->lineno : -view->height;
969 break;
970
971 case REQ_MOVE_PAGE_DOWN:
972 steps = view->lineno + view->height >= view->lines
973 ? view->lines - view->lineno - 1 : view->height;
974 break;
975
976 case REQ_MOVE_UP:
977 case REQ_MOVE_UP_ENTER:
978 steps = -1;
979 break;
980
981 case REQ_MOVE_DOWN:
982 case REQ_MOVE_DOWN_ENTER:
983 steps = 1;
984 break;
985
986 default:
987 die("request %d not handled in switch", request);
988 }
989
990 if (steps <= 0 && view->lineno == 0) {
991 report("Cannot move beyond the first line");
992 return;
993
994 } else if (steps >= 0 && view->lineno + 1 >= view->lines) {
995 report("Cannot move beyond the last line");
996 return;
997 }
998
999 /* Move the current line */
1000 view->lineno += steps;
1001 assert(0 <= view->lineno && view->lineno < view->lines);
1002
1003 /* Repaint the old "current" line if we be scrolling */
1004 if (ABS(steps) < view->height) {
1005 int prev_lineno = view->lineno - steps - view->offset;
1006
1007 wmove(view->win, prev_lineno, 0);
1008 wclrtoeol(view->win);
1009 view->ops->draw(view, prev_lineno);
1010 }
1011
1012 /* Check whether the view needs to be scrolled */
1013 if (view->lineno < view->offset ||
1014 view->lineno >= view->offset + view->height) {
1015 if (steps < 0 && -steps > view->offset) {
1016 steps = -view->offset;
1017
1018 } else if (steps > 0) {
1019 if (view->lineno == view->lines - 1 &&
1020 view->lines > view->height) {
1021 steps = view->lines - view->offset - 1;
1022 if (steps >= view->height)
1023 steps -= view->height - 1;
1024 }
1025 }
1026
1027 do_scroll_view(view, steps);
1028 return;
1029 }
1030
1031 /* Draw the current line */
1032 view->ops->draw(view, view->lineno - view->offset);
1033
1034 redrawwin(view->win);
1035 wrefresh(view->win);
1036 report("");
1037 }
1038
1039
1040 /*
1041 * Incremental updating
1042 */
1043
1044 static bool
1045 begin_update(struct view *view)
1046 {
1047 const char *id = view->id;
1048
1049 if (opt_cmd[0]) {
1050 string_copy(view->cmd, opt_cmd);
1051 opt_cmd[0] = 0;
1052 /* When running random commands, the view ref could have become
1053 * invalid so clear it. */
1054 view->ref[0] = 0;
1055 } else {
1056 const char *format = view->cmd_env ? view->cmd_env : view->cmd_fmt;
1057
1058 if (snprintf(view->cmd, sizeof(view->cmd), format,
1059 id, id, id, id, id) >= sizeof(view->cmd))
1060 return FALSE;
1061 }
1062
1063 /* Special case for the pager view. */
1064 if (opt_pipe) {
1065 view->pipe = opt_pipe;
1066 opt_pipe = NULL;
1067 } else {
1068 view->pipe = popen(view->cmd, "r");
1069 }
1070
1071 if (!view->pipe)
1072 return FALSE;
1073
1074 set_nonblocking_input(TRUE);
1075
1076 view->offset = 0;
1077 view->lines = 0;
1078 view->lineno = 0;
1079 string_copy(view->vid, id);
1080
1081 if (view->line) {
1082 int i;
1083
1084 for (i = 0; i < view->lines; i++)
1085 if (view->line[i])
1086 free(view->line[i]);
1087
1088 free(view->line);
1089 view->line = NULL;
1090 }
1091
1092 view->start_time = time(NULL);
1093
1094 return TRUE;
1095 }
1096
1097 static void
1098 end_update(struct view *view)
1099 {
1100 if (!view->pipe)
1101 return;
1102 set_nonblocking_input(FALSE);
1103 if (view->pipe == stdin)
1104 fclose(view->pipe);
1105 else
1106 pclose(view->pipe);
1107 view->pipe = NULL;
1108 }
1109
1110 static bool
1111 update_view(struct view *view)
1112 {
1113 char buffer[BUFSIZ];
1114 char *line;
1115 void **tmp;
1116 /* The number of lines to read. If too low it will cause too much
1117 * redrawing (and possible flickering), if too high responsiveness
1118 * will suffer. */
1119 unsigned long lines = view->height;
1120 int redraw_from = -1;
1121
1122 if (!view->pipe)
1123 return TRUE;
1124
1125 /* Only redraw if lines are visible. */
1126 if (view->offset + view->height >= view->lines)
1127 redraw_from = view->lines - view->offset;
1128
1129 tmp = realloc(view->line, sizeof(*view->line) * (view->lines + lines));
1130 if (!tmp)
1131 goto alloc_error;
1132
1133 view->line = tmp;
1134
1135 while ((line = fgets(buffer, sizeof(buffer), view->pipe))) {
1136 int linelen = strlen(line);
1137
1138 if (linelen)
1139 line[linelen - 1] = 0;
1140
1141 if (!view->ops->read(view, line))
1142 goto alloc_error;
1143
1144 if (lines-- == 1)
1145 break;
1146 }
1147
1148 {
1149 int digits;
1150
1151 lines = view->lines;
1152 for (digits = 0; lines; digits++)
1153 lines /= 10;
1154
1155 /* Keep the displayed view in sync with line number scaling. */
1156 if (digits != view->digits) {
1157 view->digits = digits;
1158 redraw_from = 0;
1159 }
1160 }
1161
1162 if (redraw_from >= 0) {
1163 /* If this is an incremental update, redraw the previous line
1164 * since for commits some members could have changed when
1165 * loading the main view. */
1166 if (redraw_from > 0)
1167 redraw_from--;
1168
1169 /* Incrementally draw avoids flickering. */
1170 redraw_view_from(view, redraw_from);
1171 }
1172
1173 /* Update the title _after_ the redraw so that if the redraw picks up a
1174 * commit reference in view->ref it'll be available here. */
1175 update_view_title(view);
1176
1177 if (ferror(view->pipe)) {
1178 report("Failed to read: %s", strerror(errno));
1179 goto end;
1180
1181 } else if (feof(view->pipe)) {
1182 time_t secs = time(NULL) - view->start_time;
1183
1184 if (view == VIEW(REQ_VIEW_HELP)) {
1185 const char *msg = TIG_HELP;
1186
1187 if (view->lines == 0) {
1188 /* Slightly ugly, but abusing view->ref keeps
1189 * the error message. */
1190 string_copy(view->ref, "No help available");
1191 msg = "The tig(1) manpage is not installed";
1192 }
1193
1194 report("%s", msg);
1195 goto end;
1196 }
1197
1198 report("Loaded %d lines in %ld second%s", view->lines, secs,
1199 secs == 1 ? "" : "s");
1200 goto end;
1201 }
1202
1203 return TRUE;
1204
1205 alloc_error:
1206 report("Allocation failure");
1207
1208 end:
1209 end_update(view);
1210 return FALSE;
1211 }
1212
1213 enum open_flags {
1214 OPEN_DEFAULT = 0, /* Use default view switching. */
1215 OPEN_SPLIT = 1, /* Split current view. */
1216 OPEN_BACKGROUNDED = 2, /* Backgrounded. */
1217 OPEN_RELOAD = 4, /* Reload view even if it is the current. */
1218 };
1219
1220 static void
1221 open_view(struct view *prev, enum request request, enum open_flags flags)
1222 {
1223 bool backgrounded = !!(flags & OPEN_BACKGROUNDED);
1224 bool split = !!(flags & OPEN_SPLIT);
1225 bool reload = !!(flags & OPEN_RELOAD);
1226 struct view *view = VIEW(request);
1227 struct view *displayed;
1228 int nviews;
1229
1230 /* Cycle between displayed views and count the views. */
1231 foreach_view (displayed, nviews) {
1232 if (prev != view &&
1233 view == displayed &&
1234 !strcmp(view->vid, prev->vid)) {
1235 current_view = nviews;
1236 /* Blur out the title of the previous view. */
1237 update_view_title(prev);
1238 report("");
1239 return;
1240 }
1241 }
1242
1243 if (view == prev && nviews == 1 && !reload) {
1244 report("Already in %s view", view->name);
1245 return;
1246 }
1247
1248 if ((reload || strcmp(view->vid, view->id)) &&
1249 !begin_update(view)) {
1250 report("Failed to load %s view", view->name);
1251 return;
1252 }
1253
1254 if (split) {
1255 display[current_view + 1] = view;
1256 if (!backgrounded)
1257 current_view++;
1258 } else {
1259 /* Maximize the current view. */
1260 memset(display, 0, sizeof(display));
1261 current_view = 0;
1262 display[current_view] = view;
1263 }
1264
1265 resize_display();
1266
1267 if (split && prev->lineno - prev->offset >= prev->height) {
1268 /* Take the title line into account. */
1269 int lines = prev->lineno - prev->offset - prev->height + 1;
1270
1271 /* Scroll the view that was split if the current line is
1272 * outside the new limited view. */
1273 do_scroll_view(prev, lines);
1274 }
1275
1276 if (prev && view != prev) {
1277 /* "Blur" the previous view. */
1278 if (!backgrounded)
1279 update_view_title(prev);
1280
1281 /* Continue loading split views in the background. */
1282 if (!split)
1283 end_update(prev);
1284 }
1285
1286 if (view->pipe) {
1287 /* Clear the old view and let the incremental updating refill
1288 * the screen. */
1289 wclear(view->win);
1290 report("Loading...");
1291 } else {
1292 redraw_view(view);
1293 if (view == VIEW(REQ_VIEW_HELP))
1294 report("%s", TIG_HELP);
1295 else
1296 report("");
1297 }
1298
1299 /* If the view is backgrounded the above calls to report()
1300 * won't redraw the view title. */
1301 if (backgrounded)
1302 update_view_title(view);
1303 }
1304
1305
1306 /*
1307 * User request switch noodle
1308 */
1309
1310 static int
1311 view_driver(struct view *view, enum request request)
1312 {
1313 int i;
1314
1315 switch (request) {
1316 case REQ_MOVE_UP:
1317 case REQ_MOVE_DOWN:
1318 case REQ_MOVE_PAGE_UP:
1319 case REQ_MOVE_PAGE_DOWN:
1320 case REQ_MOVE_FIRST_LINE:
1321 case REQ_MOVE_LAST_LINE:
1322 move_view(view, request);
1323 break;
1324
1325 case REQ_SCROLL_LINE_DOWN:
1326 case REQ_SCROLL_LINE_UP:
1327 case REQ_SCROLL_PAGE_DOWN:
1328 case REQ_SCROLL_PAGE_UP:
1329 scroll_view(view, request);
1330 break;
1331
1332 case REQ_VIEW_MAIN:
1333 case REQ_VIEW_DIFF:
1334 case REQ_VIEW_LOG:
1335 case REQ_VIEW_HELP:
1336 case REQ_VIEW_PAGER:
1337 open_view(view, request, OPEN_DEFAULT);
1338 break;
1339
1340 case REQ_MOVE_UP_ENTER:
1341 case REQ_MOVE_DOWN_ENTER:
1342 move_view(view, request);
1343 /* Fall-through */
1344
1345 case REQ_ENTER:
1346 if (!view->lines) {
1347 report("Nothing to enter");
1348 break;
1349 }
1350 return view->ops->enter(view);
1351
1352 case REQ_VIEW_NEXT:
1353 {
1354 int nviews = display[1] ? 2 : 1;
1355 int next_view = (current_view + 1) % nviews;
1356
1357 if (next_view == current_view) {
1358 report("Only one view is displayed");
1359 break;
1360 }
1361
1362 current_view = next_view;
1363 /* Blur out the title of the previous view. */
1364 update_view_title(view);
1365 report("");
1366 break;
1367 }
1368 case REQ_TOGGLE_LINE_NUMBERS:
1369 opt_line_number = !opt_line_number;
1370 redraw_display();
1371 break;
1372
1373 case REQ_PROMPT:
1374 /* Always reload^Wrerun commands from the prompt. */
1375 open_view(view, opt_request, OPEN_RELOAD);
1376 break;
1377
1378 case REQ_STOP_LOADING:
1379 foreach_view (view, i) {
1380 if (view->pipe)
1381 report("Stopped loaded the %s view", view->name),
1382 end_update(view);
1383 }
1384 break;
1385
1386 case REQ_SHOW_VERSION:
1387 report("Version: %s", VERSION);
1388 return TRUE;
1389
1390 case REQ_SCREEN_RESIZE:
1391 resize_display();
1392 /* Fall-through */
1393 case REQ_SCREEN_REDRAW:
1394 redraw_display();
1395 break;
1396
1397 case REQ_SCREEN_UPDATE:
1398 doupdate();
1399 return TRUE;
1400
1401 case REQ_QUIT:
1402 return FALSE;
1403
1404 default:
1405 /* An unknown key will show most commonly used commands. */
1406 report("Unknown key, press 'h' for help");
1407 return TRUE;
1408 }
1409
1410 return TRUE;
1411 }
1412
1413
1414 /*
1415 * View backend handlers
1416 */
1417
1418 static bool
1419 pager_draw(struct view *view, unsigned int lineno)
1420 {
1421 enum line_type type;
1422 char *line;
1423 int linelen;
1424 int attr;
1425
1426 if (view->offset + lineno >= view->lines)
1427 return FALSE;
1428
1429 line = view->line[view->offset + lineno];
1430 type = get_line_type(line);
1431
1432 wmove(view->win, lineno, 0);
1433
1434 if (view->offset + lineno == view->lineno) {
1435 if (type == LINE_COMMIT) {
1436 string_copy(view->ref, line + 7);
1437 string_copy(ref_commit, view->ref);
1438 }
1439
1440 type = LINE_CURSOR;
1441 wchgat(view->win, -1, 0, type, NULL);
1442 }
1443
1444 attr = get_line_attr(type);
1445 wattrset(view->win, attr);
1446
1447 linelen = strlen(line);
1448
1449 if (opt_line_number || opt_tab_size < TABSIZE) {
1450 static char spaces[] = " ";
1451 int col_offset = 0, col = 0;
1452
1453 if (opt_line_number) {
1454 unsigned long real_lineno = view->offset + lineno + 1;
1455
1456 if (real_lineno == 1 ||
1457 (real_lineno % opt_num_interval) == 0) {
1458 wprintw(view->win, "%.*d", view->digits, real_lineno);
1459
1460 } else {
1461 waddnstr(view->win, spaces,
1462 MIN(view->digits, STRING_SIZE(spaces)));
1463 }
1464 waddstr(view->win, ": ");
1465 col_offset = view->digits + 2;
1466 }
1467
1468 while (line && col_offset + col < view->width) {
1469 int cols_max = view->width - col_offset - col;
1470 char *text = line;
1471 int cols;
1472
1473 if (*line == '\t') {
1474 assert(sizeof(spaces) > TABSIZE);
1475 line++;
1476 text = spaces;
1477 cols = opt_tab_size - (col % opt_tab_size);
1478
1479 } else {
1480 line = strchr(line, '\t');
1481 cols = line ? line - text : strlen(text);
1482 }
1483
1484 waddnstr(view->win, text, MIN(cols, cols_max));
1485 col += cols;
1486 }
1487
1488 } else {
1489 int col = 0, pos = 0;
1490
1491 for (; pos < linelen && col < view->width; pos++, col++)
1492 if (line[pos] == '\t')
1493 col += TABSIZE - (col % TABSIZE) - 1;
1494
1495 waddnstr(view->win, line, pos);
1496 }
1497
1498 return TRUE;
1499 }
1500
1501 static bool
1502 pager_read(struct view *view, char *line)
1503 {
1504 /* Compress empty lines in the help view. */
1505 if (view == VIEW(REQ_VIEW_HELP) &&
1506 !*line &&
1507 view->lines &&
1508 !*((char *) view->line[view->lines - 1]))
1509 return TRUE;
1510
1511 view->line[view->lines] = strdup(line);
1512 if (!view->line[view->lines])
1513 return FALSE;
1514
1515 view->lines++;
1516 return TRUE;
1517 }
1518
1519 static bool
1520 pager_enter(struct view *view)
1521 {
1522 char *line = view->line[view->lineno];
1523
1524 if (view == VIEW(REQ_VIEW_DIFF)) {
1525 scroll_view(view, REQ_SCROLL_LINE_DOWN);
1526 return TRUE;
1527 }
1528
1529 if (get_line_type(line) == LINE_COMMIT) {
1530 if (view == VIEW(REQ_VIEW_LOG))
1531 open_view(view, REQ_VIEW_DIFF, OPEN_SPLIT | OPEN_BACKGROUNDED);
1532 else
1533 open_view(view, REQ_VIEW_DIFF, OPEN_DEFAULT);
1534 }
1535
1536 return TRUE;
1537 }
1538
1539 static struct view_ops pager_ops = {
1540 "line",
1541 pager_draw,
1542 pager_read,
1543 pager_enter,
1544 };
1545
1546
1547 static struct ref **get_refs(char *id);
1548
1549 static bool
1550 main_draw(struct view *view, unsigned int lineno)
1551 {
1552 char buf[DATE_COLS + 1];
1553 struct commit *commit;
1554 enum line_type type;
1555 int col = 0;
1556 size_t timelen;
1557
1558 if (view->offset + lineno >= view->lines)
1559 return FALSE;
1560
1561 commit = view->line[view->offset + lineno];
1562 if (!*commit->author)
1563 return FALSE;
1564
1565 wmove(view->win, lineno, col);
1566
1567 if (view->offset + lineno == view->lineno) {
1568 string_copy(view->ref, commit->id);
1569 string_copy(ref_commit, view->ref);
1570 type = LINE_CURSOR;
1571 wattrset(view->win, get_line_attr(type));
1572 wchgat(view->win, -1, 0, type, NULL);
1573
1574 } else {
1575 type = LINE_MAIN_COMMIT;
1576 wattrset(view->win, get_line_attr(LINE_MAIN_DATE));
1577 }
1578
1579 timelen = strftime(buf, sizeof(buf), DATE_FORMAT, &commit->time);
1580 waddnstr(view->win, buf, timelen);
1581 waddstr(view->win, " ");
1582
1583 col += DATE_COLS;
1584 wmove(view->win, lineno, col);
1585 if (type != LINE_CURSOR)
1586 wattrset(view->win, get_line_attr(LINE_MAIN_AUTHOR));
1587
1588 if (strlen(commit->author) > 19) {
1589 waddnstr(view->win, commit->author, 18);
1590 if (type != LINE_CURSOR)
1591 wattrset(view->win, get_line_attr(LINE_MAIN_DELIM));
1592 waddch(view->win, '~');
1593 } else {
1594 waddstr(view->win, commit->author);
1595 }
1596
1597 col += 20;
1598 if (type != LINE_CURSOR)
1599 wattrset(view->win, A_NORMAL);
1600
1601 mvwaddch(view->win, lineno, col, ACS_LTEE);
1602 wmove(view->win, lineno, col + 2);
1603 col += 2;
1604
1605 if (commit->refs) {
1606 size_t i = 0;
1607
1608 do {
1609 if (type == LINE_CURSOR)
1610 ;
1611 else if (commit->refs[i]->tag)
1612 wattrset(view->win, get_line_attr(LINE_MAIN_TAG));
1613 else
1614 wattrset(view->win, get_line_attr(LINE_MAIN_REF));
1615 waddstr(view->win, "[");
1616 waddstr(view->win, commit->refs[i]->name);
1617 waddstr(view->win, "]");
1618 if (type != LINE_CURSOR)
1619 wattrset(view->win, A_NORMAL);
1620 waddstr(view->win, " ");
1621 col += strlen(commit->refs[i]->name) + STRING_SIZE("[] ");
1622 } while (commit->refs[i++]->next);
1623 }
1624
1625 if (type != LINE_CURSOR)
1626 wattrset(view->win, get_line_attr(type));
1627
1628 {
1629 int titlelen = strlen(commit->title);
1630
1631 if (col + titlelen > view->width)
1632 titlelen = view->width - col;
1633
1634 waddnstr(view->win, commit->title, titlelen);
1635 }
1636
1637 return TRUE;
1638 }
1639
1640 /* Reads git log --pretty=raw output and parses it into the commit struct. */
1641 static bool
1642 main_read(struct view *view, char *line)
1643 {
1644 enum line_type type = get_line_type(line);
1645 struct commit *commit;
1646
1647 switch (type) {
1648 case LINE_COMMIT:
1649 commit = calloc(1, sizeof(struct commit));
1650 if (!commit)
1651 return FALSE;
1652
1653 line += STRING_SIZE("commit ");
1654
1655 view->line[view->lines++] = commit;
1656 string_copy(commit->id, line);
1657 commit->refs = get_refs(commit->id);
1658 break;
1659
1660 case LINE_AUTHOR:
1661 {
1662 char *ident = line + STRING_SIZE("author ");
1663 char *end = strchr(ident, '<');
1664
1665 if (end) {
1666 for (; end > ident && isspace(end[-1]); end--) ;
1667 *end = 0;
1668 }
1669
1670 commit = view->line[view->lines - 1];
1671 string_copy(commit->author, ident);
1672
1673 /* Parse epoch and timezone */
1674 if (end) {
1675 char *secs = strchr(end + 1, '>');
1676 char *zone;
1677 time_t time;
1678
1679 if (!secs || secs[1] != ' ')
1680 break;
1681
1682 secs += 2;
1683 time = (time_t) atol(secs);
1684 zone = strchr(secs, ' ');
1685 if (zone && strlen(zone) == STRING_SIZE(" +0700")) {
1686 long tz;
1687
1688 zone++;
1689 tz = ('0' - zone[1]) * 60 * 60 * 10;
1690 tz += ('0' - zone[2]) * 60 * 60;
1691 tz += ('0' - zone[3]) * 60;
1692 tz += ('0' - zone[4]) * 60;
1693
1694 if (zone[0] == '-')
1695 tz = -tz;
1696
1697 time -= tz;
1698 }
1699 gmtime_r(&time, &commit->time);
1700 }
1701 break;
1702 }
1703 default:
1704 /* We should only ever end up here if there has already been a
1705 * commit line, however, be safe. */
1706 if (view->lines == 0)
1707 break;
1708
1709 /* Fill in the commit title if it has not already been set. */
1710 commit = view->line[view->lines - 1];
1711 if (commit->title[0])
1712 break;
1713
1714 /* Require titles to start with a non-space character at the
1715 * offset used by git log. */
1716 /* FIXME: More gracefull handling of titles; append "..." to
1717 * shortened titles, etc. */
1718 if (strncmp(line, " ", 4) ||
1719 isspace(line[4]))
1720 break;
1721
1722 string_copy(commit->title, line + 4);
1723 }
1724
1725 return TRUE;
1726 }
1727
1728 static bool
1729 main_enter(struct view *view)
1730 {
1731 open_view(view, REQ_VIEW_DIFF, OPEN_SPLIT | OPEN_BACKGROUNDED);
1732 return TRUE;
1733 }
1734
1735 static struct view_ops main_ops = {
1736 "commit",
1737 main_draw,
1738 main_read,
1739 main_enter,
1740 };
1741
1742
1743 /**
1744 * KEYS
1745 * ----
1746 * Below the default key bindings are shown.
1747 **/
1748
1749 struct keymap {
1750 int alias;
1751 int request;
1752 };
1753
1754 static struct keymap keymap[] = {
1755 /**
1756 * View switching
1757 * ~~~~~~~~~~~~~~
1758 * m::
1759 * Switch to main view.
1760 * d::
1761 * Switch to diff view.
1762 * l::
1763 * Switch to log view.
1764 * p::
1765 * Switch to pager view.
1766 * h::
1767 * Show man page.
1768 * Enter::
1769 * This key is "context sensitive" depending on what view you are
1770 * currently in. When in log view on a commit line or in the main
1771 * view, split the view and show the commit diff. In the diff view
1772 * pressing Enter will simply scroll the view one line down.
1773 * Tab::
1774 * Switch to next view.
1775 **/
1776 { 'm', REQ_VIEW_MAIN },
1777 { 'd', REQ_VIEW_DIFF },
1778 { 'l', REQ_VIEW_LOG },
1779 { 'p', REQ_VIEW_PAGER },
1780 { 'h', REQ_VIEW_HELP },
1781
1782 { KEY_TAB, REQ_VIEW_NEXT },
1783 { KEY_RETURN, REQ_ENTER },
1784
1785 /**
1786 * Cursor navigation
1787 * ~~~~~~~~~~~~~~~~~
1788 * Up::
1789 * Move cursor one line up.
1790 * Down::
1791 * Move cursor one line down.
1792 * k::
1793 * Move cursor one line up and enter. When used in the main view
1794 * this will always show the diff of the current commit in the
1795 * split diff view.
1796 * j::
1797 * Move cursor one line down and enter.
1798 * PgUp::
1799 * b::
1800 * Move cursor one page up.
1801 * PgDown::
1802 * Space::
1803 * Move cursor one page down.
1804 * Home::
1805 * Jump to first line.
1806 * End::
1807 * Jump to last line.
1808 **/
1809 { KEY_UP, REQ_MOVE_UP },
1810 { KEY_DOWN, REQ_MOVE_DOWN },
1811 { 'k', REQ_MOVE_UP_ENTER },
1812 { 'j', REQ_MOVE_DOWN_ENTER },
1813 { KEY_HOME, REQ_MOVE_FIRST_LINE },
1814 { KEY_END, REQ_MOVE_LAST_LINE },
1815 { KEY_NPAGE, REQ_MOVE_PAGE_DOWN },
1816 { ' ', REQ_MOVE_PAGE_DOWN },
1817 { KEY_PPAGE, REQ_MOVE_PAGE_UP },
1818 { 'b', REQ_MOVE_PAGE_UP },
1819
1820 /**
1821 * Scrolling
1822 * ~~~~~~~~~
1823 * Insert::
1824 * Scroll view one line up.
1825 * Delete::
1826 * Scroll view one line down.
1827 * w::
1828 * Scroll view one page up.
1829 * s::
1830 * Scroll view one page down.
1831 **/
1832 { KEY_IC, REQ_SCROLL_LINE_UP },
1833 { KEY_DC, REQ_SCROLL_LINE_DOWN },
1834 { 'w', REQ_SCROLL_PAGE_UP },
1835 { 's', REQ_SCROLL_PAGE_DOWN },
1836
1837 /**
1838 * Misc
1839 * ~~~~
1840 * Q::
1841 * Quit.
1842 * r::
1843 * Redraw screen.
1844 * z::
1845 * Stop all background loading. This can be useful if you use
1846 * tig(1) in a repository with a long history without limiting
1847 * the revision log.
1848 * v::
1849 * Show version.
1850 * n::
1851 * Toggle line numbers on/off.
1852 * ':'::
1853 * Open prompt. This allows you to specify what git command
1854 * to run. Example:
1855 *
1856 * :log -p
1857 **/
1858 { 'Q', REQ_QUIT },
1859 { 'z', REQ_STOP_LOADING },
1860 { 'v', REQ_SHOW_VERSION },
1861 { 'r', REQ_SCREEN_REDRAW },
1862 { 'n', REQ_TOGGLE_LINE_NUMBERS },
1863 { ':', REQ_PROMPT },
1864
1865 /* wgetch() with nodelay() enabled returns ERR when there's no input. */
1866 { ERR, REQ_SCREEN_UPDATE },
1867
1868 /* Use the ncurses SIGWINCH handler. */
1869 { KEY_RESIZE, REQ_SCREEN_RESIZE },
1870 };
1871
1872 static enum request
1873 get_request(int key)
1874 {
1875 int i;
1876
1877 for (i = 0; i < ARRAY_SIZE(keymap); i++)
1878 if (keymap[i].alias == key)
1879 return keymap[i].request;
1880
1881 return (enum request) key;
1882 }
1883
1884
1885 /*
1886 * Status management
1887 */
1888
1889 /* Whether or not the curses interface has been initialized. */
1890 bool cursed = FALSE;
1891
1892 /* The status window is used for polling keystrokes. */
1893 static WINDOW *status_win;
1894
1895 /* Update status and title window. */
1896 static void
1897 report(const char *msg, ...)
1898 {
1899 static bool empty = TRUE;
1900 struct view *view = display[current_view];
1901
1902 if (!empty || *msg) {
1903 va_list args;
1904
1905 va_start(args, msg);
1906
1907 werase(status_win);
1908 wmove(status_win, 0, 0);
1909 if (*msg) {
1910 vwprintw(status_win, msg, args);
1911 empty = FALSE;
1912 } else {
1913 empty = TRUE;
1914 }
1915 wrefresh(status_win);
1916
1917 va_end(args);
1918 }
1919
1920 update_view_title(view);
1921
1922 /* Move the cursor to the right-most column of the cursor line.
1923 *
1924 * XXX: This could turn out to be a bit expensive, but it ensures that
1925 * the cursor does not jump around. */
1926 if (view->lines) {
1927 wmove(view->win, view->lineno - view->offset, view->width - 1);
1928 wrefresh(view->win);
1929 }
1930 }
1931
1932 /* Controls when nodelay should be in effect when polling user input. */
1933 static void
1934 set_nonblocking_input(bool loading)
1935 {
1936 static unsigned int loading_views;
1937
1938 if ((loading == FALSE && loading_views-- == 1) ||
1939 (loading == TRUE && loading_views++ == 0))
1940 nodelay(status_win, loading);
1941 }
1942
1943 static void
1944 init_display(void)
1945 {
1946 int x, y;
1947
1948 /* Initialize the curses library */
1949 if (isatty(STDIN_FILENO)) {
1950 cursed = !!initscr();
1951 } else {
1952 /* Leave stdin and stdout alone when acting as a pager. */
1953 FILE *io = fopen("/dev/tty", "r+");
1954
1955 cursed = !!newterm(NULL, io, io);
1956 }
1957
1958 if (!cursed)
1959 die("Failed to initialize curses");
1960
1961 nonl(); /* Tell curses not to do NL->CR/NL on output */
1962 cbreak(); /* Take input chars one at a time, no wait for \n */
1963 noecho(); /* Don't echo input */
1964 leaveok(stdscr, TRUE);
1965
1966 if (has_colors())
1967 init_colors();
1968
1969 getmaxyx(stdscr, y, x);
1970 status_win = newwin(1, 0, y - 1, 0);
1971 if (!status_win)
1972 die("Failed to create status window");
1973
1974 /* Enable keyboard mapping */
1975 keypad(status_win, TRUE);
1976 wbkgdset(status_win, get_line_attr(LINE_STATUS));
1977 }
1978
1979
1980 /*
1981 * Repository references
1982 */
1983
1984 static struct ref *refs;
1985 static size_t refs_size;
1986
1987 static struct ref **
1988 get_refs(char *id)
1989 {
1990 struct ref **id_refs = NULL;
1991 size_t id_refs_size = 0;
1992 size_t i;
1993
1994 for (i = 0; i < refs_size; i++) {
1995 struct ref **tmp;
1996
1997 if (strcmp(id, refs[i].id))
1998 continue;
1999
2000 tmp = realloc(id_refs, (id_refs_size + 1) * sizeof(*id_refs));
2001 if (!tmp) {
2002 if (id_refs)
2003 free(id_refs);
2004 return NULL;
2005 }
2006
2007 id_refs = tmp;
2008 if (id_refs_size > 0)
2009 id_refs[id_refs_size - 1]->next = 1;
2010 id_refs[id_refs_size] = &refs[i];
2011
2012 /* XXX: The properties of the commit chains ensures that we can
2013 * safely modify the shared ref. The repo references will
2014 * always be similar for the same id. */
2015 id_refs[id_refs_size]->next = 0;
2016 id_refs_size++;
2017 }
2018
2019 return id_refs;
2020 }
2021
2022 static int
2023 load_refs(void)
2024 {
2025 const char *cmd_env = getenv("TIG_LS_REMOTE");
2026 const char *cmd = cmd_env && *cmd_env ? cmd_env : TIG_LS_REMOTE;
2027 FILE *pipe = popen(cmd, "r");
2028 char buffer[BUFSIZ];
2029 char *line;
2030
2031 if (!pipe)
2032 return ERR;
2033
2034 while ((line = fgets(buffer, sizeof(buffer), pipe))) {
2035 char *name = strchr(line, '\t');
2036 struct ref *ref;
2037 int namelen;
2038 bool tag = FALSE;
2039 bool tag_commit = FALSE;
2040
2041 if (!name)
2042 continue;
2043
2044 *name++ = 0;
2045 namelen = strlen(name) - 1;
2046
2047 /* Commits referenced by tags has "^{}" appended. */
2048 if (name[namelen - 1] == '}') {
2049 while (namelen > 0 && name[namelen] != '^')
2050 namelen--;
2051 if (namelen > 0)
2052 tag_commit = TRUE;
2053 }
2054 name[namelen] = 0;
2055
2056 if (!strncmp(name, "refs/tags/", STRING_SIZE("refs/tags/"))) {
2057 if (!tag_commit)
2058 continue;
2059 name += STRING_SIZE("refs/tags/");
2060 tag = TRUE;
2061
2062 } else if (!strncmp(name, "refs/heads/", STRING_SIZE("refs/heads/"))) {
2063 name += STRING_SIZE("refs/heads/");
2064
2065 } else if (!strcmp(name, "HEAD")) {
2066 continue;
2067 }
2068
2069 refs = realloc(refs, sizeof(*refs) * (refs_size + 1));
2070 if (!refs)
2071 return ERR;
2072
2073 ref = &refs[refs_size++];
2074 ref->tag = tag;
2075 ref->name = strdup(name);
2076 if (!ref->name)
2077 return ERR;
2078
2079 string_copy(ref->id, line);
2080 }
2081
2082 if (ferror(pipe))
2083 return ERR;
2084
2085 pclose(pipe);
2086
2087 if (refs_size == 0)
2088 die("Not a git repository");
2089
2090 return OK;
2091 }
2092
2093 /*
2094 * Main
2095 */
2096
2097 #if __GNUC__ >= 3
2098 #define __NORETURN __attribute__((__noreturn__))
2099 #else
2100 #define __NORETURN
2101 #endif
2102
2103 static void __NORETURN
2104 quit(int sig)
2105 {
2106 /* XXX: Restore tty modes and let the OS cleanup the rest! */
2107 if (cursed)
2108 endwin();
2109 exit(0);
2110 }
2111
2112 static void __NORETURN
2113 die(const char *err, ...)
2114 {
2115 va_list args;
2116
2117 endwin();
2118
2119 va_start(args, err);
2120 fputs("tig: ", stderr);
2121 vfprintf(stderr, err, args);
2122 fputs("\n", stderr);
2123 va_end(args);
2124
2125 exit(1);
2126 }
2127
2128 int
2129 main(int argc, char *argv[])
2130 {
2131 struct view *view;
2132 enum request request;
2133 size_t i;
2134
2135 signal(SIGINT, quit);
2136
2137 if (!parse_options(argc, argv))
2138 return 0;
2139
2140 if (load_refs() == ERR)
2141 die("Failed to load refs.");
2142
2143 for (i = 0; i < ARRAY_SIZE(views) && (view = &views[i]); i++)
2144 view->cmd_env = getenv(view->cmd_env);
2145
2146 request = opt_request;
2147
2148 init_display();
2149
2150 while (view_driver(display[current_view], request)) {
2151 int key;
2152 int i;
2153
2154 foreach_view (view, i)
2155 update_view(view);
2156
2157 /* Refresh, accept single keystroke of input */
2158 key = wgetch(status_win);
2159 request = get_request(key);
2160
2161 /* Some low-level request handling. This keeps access to
2162 * status_win restricted. */
2163 switch (request) {
2164 case REQ_PROMPT:
2165 report(":");
2166 /* Temporarily switch to line-oriented and echoed
2167 * input. */
2168 nocbreak();
2169 echo();
2170
2171 if (wgetnstr(status_win, opt_cmd + 4, sizeof(opt_cmd) - 4) == OK) {
2172 memcpy(opt_cmd, "git ", 4);
2173 opt_request = REQ_VIEW_PAGER;
2174 } else {
2175 request = ERR;
2176 }
2177
2178 noecho();
2179 cbreak();
2180 break;
2181
2182 case REQ_SCREEN_RESIZE:
2183 {
2184 int height, width;
2185
2186 getmaxyx(stdscr, height, width);
2187
2188 /* Resize the status view and let the view driver take
2189 * care of resizing the displayed views. */
2190 wresize(status_win, 1, width);
2191 mvwin(status_win, height - 1, 0);
2192 wrefresh(status_win);
2193 break;
2194 }
2195 default:
2196 break;
2197 }
2198 }
2199
2200 quit(0);
2201
2202 return 0;
2203 }
2204
2205 /**
2206 * [[refspec]]
2207 * Revision specification
2208 * ----------------------
2209 * This section describes various ways to specify what revisions to display
2210 * or otherwise limit the view to. tig(1) does not itself parse the described
2211 * revision options so refer to the relevant git man pages for futher
2212 * information. Relevant man pages besides git-log(1) are git-diff(1) and
2213 * git-rev-list(1).
2214 *
2215 * You can tune the interaction with git by making use of the options
2216 * explained in this section. For example, by configuring the environment
2217 * variables described in the <<view-commands, "View commands">> section.
2218 *
2219 * Limit by path name
2220 * ~~~~~~~~~~~~~~~~~~
2221 * If you are interested only in those revisions that made changes to a
2222 * specific file (or even several files) list the files like this:
2223 *
2224 * $ tig log Makefile README
2225 *
2226 * To avoid ambiguity with repository references such as tag name, be sure
2227 * to separate file names from other git options using "\--". So if you
2228 * have a file named 'master' it will clash with the reference named
2229 * 'master', and thus you will have to use:
2230 *
2231 * $ tig log -- master
2232 *
2233 * NOTE: For the main view, avoiding ambiguity will in some cases require
2234 * you to specify two "\--" options. The first will make tig(1) stop
2235 * option processing and the latter will be passed to git log.
2236 *
2237 * Limit by date or number
2238 * ~~~~~~~~~~~~~~~~~~~~~~~
2239 * To speed up interaction with git, you can limit the amount of commits
2240 * to show both for the log and main view. Either limit by date using
2241 * e.g. `--since=1.month` or limit by the number of commits using `-n400`.
2242 *
2243 * If you are only interested in changed that happened between two dates
2244 * you can use:
2245 *
2246 * $ tig -- --after="May 5th" --before="2006-05-16 15:44"
2247 *
2248 * NOTE: If you want to avoid having to quote dates containing spaces you
2249 * can use "." instead, e.g. `--after=May.5th`.
2250 *
2251 * Limiting by commit ranges
2252 * ~~~~~~~~~~~~~~~~~~~~~~~~~
2253 * Alternatively, commits can be limited to a specific range, such as
2254 * "all commits between 'tag-1.0' and 'tag-2.0'". For example:
2255 *
2256 * $ tig log tag-1.0..tag-2.0
2257 *
2258 * This way of commit limiting makes it trivial to only browse the commits
2259 * which haven't been pushed to a remote branch. Assuming 'origin' is your
2260 * upstream remote branch, using:
2261 *
2262 * $ tig log origin..HEAD
2263 *
2264 * will list what will be pushed to the remote branch. Optionally, the ending
2265 * 'HEAD' can be left out since it is implied.
2266 *
2267 * Limiting by reachability
2268 * ~~~~~~~~~~~~~~~~~~~~~~~~
2269 * Git interprets the range specifier "tag-1.0..tag-2.0" as
2270 * "all commits reachable from 'tag-2.0' but not from 'tag-1.0'".
2271 * Where reachability refers to what commits are ancestors (or part of the
2272 * history) of the branch or tagged revision in question.
2273 *
2274 * If you prefer to specify which commit to preview in this way use the
2275 * following:
2276 *
2277 * $ tig log tag-2.0 ^tag-1.0
2278 *
2279 * You can think of '^' as a negation operator. Using this alternate syntax,
2280 * it is possible to further prune commits by specifying multiple branch
2281 * cut offs.
2282 *
2283 * Combining revisions specification
2284 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2285 * Revisions options can to some degree be combined, which makes it possible
2286 * to say "show at most 20 commits from within the last month that changed
2287 * files under the Documentation/ directory."
2288 *
2289 * $ tig -- --since=1.month -n20 -- Documentation/
2290 *
2291 * Examining all repository references
2292 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2293 * In some cases, it can be useful to query changes across all references
2294 * in a repository. An example is to ask "did any line of development in
2295 * this repository change a particular file within the last week". This
2296 * can be accomplished using:
2297 *
2298 * $ tig -- --all --since=1.week -- Makefile
2299 *
2300 * BUGS
2301 * ----
2302 * Known bugs and problems:
2303 *
2304 * - If the screen width is very small the main view can draw
2305 * outside the current view causing bad wrapping. Same goes
2306 * for title and status windows.
2307 *
2308 * TODO
2309 * ----
2310 * Features that should be explored.
2311 *
2312 * - Searching.
2313 *
2314 * - Locale support.
2315 *
2316 * COPYRIGHT
2317 * ---------
2318 * Copyright (c) Jonas Fonseca <fonseca@diku.dk>, 2006
2319 *
2320 * This program is free software; you can redistribute it and/or modify
2321 * it under the terms of the GNU General Public License as published by
2322 * the Free Software Foundation; either version 2 of the License, or
2323 * (at your option) any later version.
2324 *
2325 * SEE ALSO
2326 * --------
2327 * [verse]
2328 * link:http://www.kernel.org/pub/software/scm/git/docs/[git(7)],
2329 * link:http://www.kernel.org/pub/software/scm/cogito/docs/[cogito(7)]
2330 * gitk(1): git repository browser written using tcl/tk,
2331 * qgit(1): git repository browser written using c++/Qt,
2332 * gitview(1): git repository browser written using python/gtk.
2333 **/