Implement support for terminal resizing
[tig] / tig.c
CommitLineData
4a2909a7
JF
1/* Copyright (c) 2006 Jonas Fonseca <fonseca@diku.dk>
2 * See license info at the bottom. */
b801d8b2
JF
3/**
4 * TIG(1)
5 * ======
6 *
7 * NAME
8 * ----
9 * tig - text-mode interface for git
10 *
11 * SYNOPSIS
12 * --------
13 * [verse]
03a93dbb
JF
14 * tig [options]
15 * tig [options] [--] [git log options]
b76c2afc
JF
16 * tig [options] log [git log options]
17 * tig [options] diff [git diff options]
8855ada4
JF
18 * tig [options] show [git show options]
19 * tig [options] < [git command output]
b801d8b2
JF
20 *
21 * DESCRIPTION
22 * -----------
23 * Browse changes in a git repository.
b801d8b2
JF
24 **/
25
b76c2afc
JF
26#ifndef VERSION
27#define VERSION "tig-0.1"
28#endif
29
8855ada4
JF
30#ifndef DEBUG
31#define NDEBUG
32#endif
33
22f66b0a 34#include <assert.h>
4c6fabc2 35#include <errno.h>
22f66b0a
JF
36#include <ctype.h>
37#include <signal.h>
b801d8b2 38#include <stdarg.h>
b801d8b2 39#include <stdio.h>
22f66b0a 40#include <stdlib.h>
b801d8b2 41#include <string.h>
6908bdbd 42#include <unistd.h>
b76c2afc 43#include <time.h>
b801d8b2
JF
44
45#include <curses.h>
b801d8b2
JF
46
47static void die(const char *err, ...);
48static void report(const char *msg, ...);
1ba2ae4b 49static void set_nonblocking_input(bool loading);
6b161b31
JF
50
51#define ABS(x) ((x) >= 0 ? (x) : -(x))
52#define MIN(x, y) ((x) < (y) ? (x) : (y))
53
54#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
55#define STRING_SIZE(x) (sizeof(x) - 1)
b76c2afc 56
2e8488b4
JF
57#define SIZEOF_REF 256 /* Size of symbolic or SHA1 ID. */
58#define SIZEOF_CMD 1024 /* Size of command buffer. */
b801d8b2 59
82e78006
JF
60/* This color name can be used to refer to the default term colors. */
61#define COLOR_DEFAULT (-1)
78c70acd 62
82e78006 63/* The format and size of the date column in the main view. */
4c6fabc2 64#define DATE_FORMAT "%Y-%m-%d %H:%M"
6b161b31 65#define DATE_COLS STRING_SIZE("2006-04-29 14:21 ")
4c6fabc2 66
a28bcc22 67/* The default interval between line numbers. */
4a2909a7 68#define NUMBER_INTERVAL 1
82e78006 69
a28bcc22
JF
70#define SCALE_SPLIT_VIEW(height) ((height) * 2 / 3)
71
8855ada4 72/* Some ascii-shorthands fitted into the ncurses namespace. */
a28bcc22
JF
73#define KEY_TAB '\t'
74#define KEY_RETURN '\r'
4a2909a7
JF
75#define KEY_ESC 27
76
a28bcc22 77/* User action requests. */
4a2909a7 78enum request {
a28bcc22
JF
79 /* Offset all requests to avoid conflicts with ncurses getch values. */
80 REQ_OFFSET = KEY_MAX + 1,
81
4a2909a7 82 /* XXX: Keep the view request first and in sync with views[]. */
2e8488b4 83 REQ_VIEW_MAIN,
4a2909a7
JF
84 REQ_VIEW_DIFF,
85 REQ_VIEW_LOG,
2e8488b4 86 REQ_VIEW_HELP,
6908bdbd 87 REQ_VIEW_PAGER,
4a2909a7 88
6b161b31 89 REQ_ENTER,
03a93dbb
JF
90 REQ_QUIT,
91 REQ_PROMPT,
4a2909a7 92 REQ_SCREEN_REDRAW,
fac7db6c 93 REQ_SCREEN_RESIZE,
4a2909a7 94 REQ_SCREEN_UPDATE,
03a93dbb
JF
95 REQ_SHOW_VERSION,
96 REQ_STOP_LOADING,
4a2909a7 97 REQ_TOGGLE_LINE_NUMBERS,
03a93dbb 98 REQ_VIEW_NEXT,
4a2909a7
JF
99
100 REQ_MOVE_UP,
101 REQ_MOVE_DOWN,
102 REQ_MOVE_PAGE_UP,
103 REQ_MOVE_PAGE_DOWN,
104 REQ_MOVE_FIRST_LINE,
105 REQ_MOVE_LAST_LINE,
106
107 REQ_SCROLL_LINE_UP,
108 REQ_SCROLL_LINE_DOWN,
109 REQ_SCROLL_PAGE_UP,
110 REQ_SCROLL_PAGE_DOWN,
111};
112
4c6fabc2 113struct commit {
a28bcc22 114 char id[41]; /* SHA1 ID. */
6b161b31 115 char title[75]; /* The first line of the commit message. */
a28bcc22
JF
116 char author[75]; /* The author of the commit. */
117 struct tm time; /* Date from the author ident. */
4c6fabc2
JF
118};
119
03a93dbb
JF
120/*
121 * String helpers
122 */
78c70acd 123
82e78006
JF
124static inline void
125string_ncopy(char *dst, char *src, int dstlen)
126{
127 strncpy(dst, src, dstlen - 1);
128 dst[dstlen - 1] = 0;
03a93dbb 129
82e78006
JF
130}
131
132/* Shorthand for safely copying into a fixed buffer. */
133#define string_copy(dst, src) \
134 string_ncopy(dst, src, sizeof(dst))
135
03a93dbb
JF
136/* Shell quoting
137 *
138 * NOTE: The following is a slightly modified copy of the git project's shell
139 * quoting routines found in the quote.c file.
140 *
141 * Help to copy the thing properly quoted for the shell safety. any single
142 * quote is replaced with '\'', any exclamation point is replaced with '\!',
143 * and the whole thing is enclosed in a
144 *
145 * E.g.
146 * original sq_quote result
147 * name ==> name ==> 'name'
148 * a b ==> a b ==> 'a b'
149 * a'b ==> a'\''b ==> 'a'\''b'
150 * a!b ==> a'\!'b ==> 'a'\!'b'
151 */
152
153static size_t
154sq_quote(char buf[SIZEOF_CMD], size_t bufsize, const char *src)
155{
156 char c;
157
158#define BUFPUT(x) ( (bufsize < SIZEOF_CMD) && (buf[bufsize++] = (x)) )
159
160 BUFPUT('\'');
161 while ((c = *src++)) {
162 if (c == '\'' || c == '!') {
163 BUFPUT('\'');
164 BUFPUT('\\');
165 BUFPUT(c);
166 BUFPUT('\'');
167 } else {
168 BUFPUT(c);
169 }
170 }
171 BUFPUT('\'');
172
173 return bufsize;
174}
175
82e78006 176
b76c2afc
JF
177/**
178 * OPTIONS
179 * -------
180 **/
181
2e8488b4
JF
182static int opt_line_number = FALSE;
183static int opt_num_interval = NUMBER_INTERVAL;
6b161b31 184static enum request opt_request = REQ_VIEW_MAIN;
03a93dbb 185static char opt_cmd[SIZEOF_CMD] = "";
6908bdbd 186static FILE *opt_pipe = NULL;
b76c2afc 187
b76c2afc 188/* Returns the index of log or diff command or -1 to exit. */
8855ada4 189static bool
b76c2afc
JF
190parse_options(int argc, char *argv[])
191{
192 int i;
193
194 for (i = 1; i < argc; i++) {
195 char *opt = argv[i];
196
197 /**
b76c2afc 198 * -l::
1ba2ae4b 199 * Start up in log view using the internal log command.
b76c2afc 200 **/
6b161b31 201 if (!strcmp(opt, "-l")) {
4a2909a7 202 opt_request = REQ_VIEW_LOG;
6b161b31
JF
203 continue;
204 }
b76c2afc
JF
205
206 /**
207 * -d::
1ba2ae4b 208 * Start up in diff view using the internal diff command.
b76c2afc 209 **/
6b161b31 210 if (!strcmp(opt, "-d")) {
4a2909a7 211 opt_request = REQ_VIEW_DIFF;
6b161b31
JF
212 continue;
213 }
b76c2afc
JF
214
215 /**
2e8488b4 216 * -n[INTERVAL], --line-number[=INTERVAL]::
b76c2afc 217 * Prefix line numbers in log and diff view.
2e8488b4 218 * Optionally, with interval different than each line.
b76c2afc 219 **/
6b161b31 220 if (!strncmp(opt, "-n", 2) ||
8855ada4 221 !strncmp(opt, "--line-number", 13)) {
2e8488b4
JF
222 char *num = opt;
223
224 if (opt[1] == 'n') {
225 num = opt + 2;
226
227 } else if (opt[STRING_SIZE("--line-number")] == '=') {
228 num = opt + STRING_SIZE("--line-number=");
229 }
230
231 if (isdigit(*num))
232 opt_num_interval = atoi(num);
233
6b161b31
JF
234 opt_line_number = TRUE;
235 continue;
236 }
b76c2afc
JF
237
238 /**
239 * -v, --version::
240 * Show version and exit.
241 **/
6b161b31 242 if (!strcmp(opt, "-v") ||
8855ada4 243 !strcmp(opt, "--version")) {
b76c2afc 244 printf("tig version %s\n", VERSION);
8855ada4 245 return FALSE;
6b161b31 246 }
b76c2afc
JF
247
248 /**
03a93dbb 249 * \--::
889cb462 250 * End of tig(1) options. Useful when specifying commands
03a93dbb
JF
251 * for the main view. Example:
252 *
889cb462 253 * $ tig -- --since=1.month
b76c2afc 254 **/
6908bdbd
JF
255 if (!strcmp(opt, "--")) {
256 i++;
257 break;
258 }
03a93dbb 259
8855ada4
JF
260 /**
261 * log [options]::
262 * Open log view using the given git log options.
263 *
264 * diff [options]::
265 * Open diff view using the given git diff options.
266 *
267 * show [options]::
268 * Open diff view using the given git show options.
269 **/
270 if (!strcmp(opt, "log") ||
271 !strcmp(opt, "diff") ||
272 !strcmp(opt, "show")) {
273 opt_request = opt[0] == 'l'
274 ? REQ_VIEW_LOG : REQ_VIEW_DIFF;
275 break;
276 }
277
278 /* Make stuff like:
889cb462 279 *
03a93dbb
JF
280 * $ tig tag-1.0..HEAD
281 *
8855ada4 282 * work. */
03a93dbb 283 if (opt[0] && opt[0] != '-')
6908bdbd 284 break;
6b161b31
JF
285
286 die("unknown command '%s'", opt);
b76c2afc
JF
287 }
288
6908bdbd 289 if (!isatty(STDIN_FILENO)) {
8855ada4
JF
290 /**
291 * Pager mode
292 * ~~~~~~~~~~
293 * If stdin is a pipe, any log or diff options will be ignored and the
294 * pager view will be opened loading data from stdin. The pager mode
295 * can be used for colorizing output from various git commands.
296 *
297 * Example on how to colorize the output of git-show(1):
298 *
299 * $ git show | tig
300 **/
6908bdbd
JF
301 opt_request = REQ_VIEW_PAGER;
302 opt_pipe = stdin;
303
304 } else if (i < argc) {
305 size_t buf_size;
306
8855ada4
JF
307 /**
308 * Git command options
309 * ~~~~~~~~~~~~~~~~~~~
8855ada4
JF
310 * All git command options specified on the command line will
311 * be passed to the given command and all will be shell quoted
312 * before used.
313 *
314 * NOTE: It is possible to specify options even for the main
eb98559e 315 * view. If doing this you should not touch the `--pretty`
8855ada4
JF
316 * option.
317 *
318 * Example on how to open the log view and show both author and
319 * committer information:
320 *
321 * $ tig log --pretty=fuller
322 **/
323
6908bdbd 324 if (opt_request == REQ_VIEW_MAIN)
8855ada4
JF
325 /* XXX: This is vulnerable to the user overriding
326 * options required for the main view parser. */
6908bdbd
JF
327 string_copy(opt_cmd, "git log --stat --pretty=raw");
328 else
329 string_copy(opt_cmd, "git");
330 buf_size = strlen(opt_cmd);
331
332 while (buf_size < sizeof(opt_cmd) && i < argc) {
333 opt_cmd[buf_size++] = ' ';
334 buf_size = sq_quote(opt_cmd, buf_size, argv[i++]);
335 }
336
337 if (buf_size >= sizeof(opt_cmd))
338 die("command too long");
339
340 opt_cmd[buf_size] = 0;
341
342 }
343
8855ada4 344 return TRUE;
b76c2afc
JF
345}
346
347
4a2909a7
JF
348/**
349 * KEYS
350 * ----
4a2909a7
JF
351 **/
352
353#define HELP "(d)iff, (l)og, (m)ain, (q)uit, (v)ersion, (h)elp"
354
355struct keymap {
356 int alias;
357 int request;
358};
359
360struct keymap keymap[] = {
6b161b31
JF
361 /**
362 * View switching
363 * ~~~~~~~~~~~~~~
364 * d::
365 * Switch to diff view.
366 * l::
367 * Switch to log view.
368 * m::
369 * Switch to main view.
8855ada4
JF
370 * p::
371 * Switch to pager view.
6b161b31
JF
372 * h::
373 * Show man page.
374 * Return::
375 * If in main view split the view
376 * and show the diff in the bottom view.
03a93dbb
JF
377 * Tab::
378 * Switch to next view.
6b161b31
JF
379 **/
380 { 'm', REQ_VIEW_MAIN },
381 { 'd', REQ_VIEW_DIFF },
382 { 'l', REQ_VIEW_LOG },
8855ada4 383 { 'p', REQ_VIEW_PAGER },
6b161b31
JF
384 { 'h', REQ_VIEW_HELP },
385
03a93dbb 386 { KEY_TAB, REQ_VIEW_NEXT },
6b161b31
JF
387 { KEY_RETURN, REQ_ENTER },
388
389 /**
390 * Cursor navigation
391 * ~~~~~~~~~~~~~~~~~
392 * Up, k::
393 * Move curser one line up.
394 * Down, j::
395 * Move cursor one line down.
396 * Page Up::
397 * Move curser one page up.
398 * Page Down::
399 * Move cursor one page down.
400 * Home::
401 * Jump to first line.
402 * End::
403 * Jump to last line.
404 **/
4a2909a7
JF
405 { KEY_UP, REQ_MOVE_UP },
406 { 'k', REQ_MOVE_UP },
407 { KEY_DOWN, REQ_MOVE_DOWN },
408 { 'j', REQ_MOVE_DOWN },
409 { KEY_HOME, REQ_MOVE_FIRST_LINE },
410 { KEY_END, REQ_MOVE_LAST_LINE },
411 { KEY_NPAGE, REQ_MOVE_PAGE_DOWN },
412 { KEY_PPAGE, REQ_MOVE_PAGE_UP },
413
6b161b31
JF
414 /**
415 * Scrolling
416 * ~~~~~~~~~
417 * Insert::
418 * Scroll view one line up.
419 * Delete::
420 * Scroll view one line down.
421 * w::
422 * Scroll view one page up.
423 * s::
424 * Scroll view one page down.
425 **/
a28bcc22
JF
426 { KEY_IC, REQ_SCROLL_LINE_UP },
427 { KEY_DC, REQ_SCROLL_LINE_DOWN },
428 { 'w', REQ_SCROLL_PAGE_UP },
429 { 's', REQ_SCROLL_PAGE_DOWN },
430
6b161b31
JF
431 /**
432 * Misc
433 * ~~~~
434 * q, Escape::
435 * Quit
436 * r::
437 * Redraw screen.
438 * z::
439 * Stop all background loading.
440 * v::
441 * Show version.
442 * n::
443 * Toggle line numbers on/off.
03a93dbb 444 * ':'::
8855ada4
JF
445 * Open prompt. This allows you to specify what git command to run.
446 * Example:
447 *
448 * :log -p
449 *
6b161b31 450 **/
4a2909a7
JF
451 { KEY_ESC, REQ_QUIT },
452 { 'q', REQ_QUIT },
453 { 'z', REQ_STOP_LOADING },
454 { 'v', REQ_SHOW_VERSION },
455 { 'r', REQ_SCREEN_REDRAW },
456 { 'n', REQ_TOGGLE_LINE_NUMBERS },
03a93dbb 457 { ':', REQ_PROMPT },
4a2909a7
JF
458
459 /* wgetch() with nodelay() enabled returns ERR when there's no input. */
460 { ERR, REQ_SCREEN_UPDATE },
fac7db6c
JF
461 /* Use the ncurses SIGWINCH handler. */
462 { KEY_RESIZE, REQ_SCREEN_RESIZE },
4a2909a7
JF
463};
464
6b161b31
JF
465static enum request
466get_request(int key)
4a2909a7
JF
467{
468 int i;
469
470 for (i = 0; i < ARRAY_SIZE(keymap); i++)
6b161b31 471 if (keymap[i].alias == key)
4a2909a7
JF
472 return keymap[i].request;
473
6b161b31 474 return (enum request) key;
4a2909a7
JF
475}
476
477
b76c2afc
JF
478/*
479 * Line-oriented content detection.
6b161b31
JF
480 */
481
2e8488b4 482#define LINE_INFO \
6b161b31
JF
483/* Line type String to match Foreground Background Attributes
484 * --------- --------------- ---------- ---------- ---------- */ \
a28bcc22
JF
485/* Diff markup */ \
486LINE(DIFF, "diff --git ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
8855ada4 487LINE(DIFF_INDEX, "index ", COLOR_BLUE, COLOR_DEFAULT, 0), \
a28bcc22
JF
488LINE(DIFF_CHUNK, "@@", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
489LINE(DIFF_ADD, "+", COLOR_GREEN, COLOR_DEFAULT, 0), \
490LINE(DIFF_DEL, "-", COLOR_RED, COLOR_DEFAULT, 0), \
491LINE(DIFF_OLDMODE, "old mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
492LINE(DIFF_NEWMODE, "new mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
493LINE(DIFF_COPY, "copy ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
494LINE(DIFF_RENAME, "rename ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
495LINE(DIFF_SIM, "similarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
496LINE(DIFF_DISSIM, "dissimilarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
497/* Pretty print commit header */ \
6908bdbd 498LINE(PP_AUTHOR, "Author: ", COLOR_CYAN, COLOR_DEFAULT, 0), \
8855ada4 499LINE(PP_COMMIT, "Commit: ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
6908bdbd
JF
500LINE(PP_MERGE, "Merge: ", COLOR_BLUE, COLOR_DEFAULT, 0), \
501LINE(PP_DATE, "Date: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
8855ada4
JF
502LINE(PP_ADATE, "AuthorDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
503LINE(PP_CDATE, "CommitDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
a28bcc22
JF
504/* Raw commit header */ \
505LINE(COMMIT, "commit ", COLOR_GREEN, COLOR_DEFAULT, 0), \
506LINE(PARENT, "parent ", COLOR_BLUE, COLOR_DEFAULT, 0), \
507LINE(TREE, "tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
8855ada4 508LINE(AUTHOR, "author ", COLOR_CYAN, COLOR_DEFAULT, 0), \
a28bcc22
JF
509LINE(COMMITTER, "committer ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
510/* Misc */ \
511LINE(DIFF_TREE, "diff-tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
512LINE(SIGNOFF, " Signed-off-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
513/* UI colors */ \
514LINE(DEFAULT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
515LINE(CURSOR, "", COLOR_WHITE, COLOR_GREEN, A_BOLD), \
516LINE(STATUS, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
6b161b31
JF
517LINE(TITLE_BLUR, "", COLOR_WHITE, COLOR_BLUE, 0), \
518LINE(TITLE_FOCUS, "", COLOR_WHITE, COLOR_BLUE, A_BOLD), \
a28bcc22
JF
519LINE(MAIN_DATE, "", COLOR_BLUE, COLOR_DEFAULT, 0), \
520LINE(MAIN_AUTHOR, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
521LINE(MAIN_COMMIT, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
522LINE(MAIN_DELIM, "", COLOR_MAGENTA, COLOR_DEFAULT, 0),
2e8488b4 523
78c70acd 524enum line_type {
2e8488b4
JF
525#define LINE(type, line, fg, bg, attr) \
526 LINE_##type
527 LINE_INFO
528#undef LINE
78c70acd
JF
529};
530
531struct line_info {
2e8488b4
JF
532 char *line; /* The start of line to match. */
533 int linelen; /* Size of string to match. */
534 int fg, bg, attr; /* Color and text attributes for the lines. */
78c70acd
JF
535};
536
2e8488b4 537static struct line_info line_info[] = {
78c70acd 538#define LINE(type, line, fg, bg, attr) \
a28bcc22 539 { (line), STRING_SIZE(line), (fg), (bg), (attr) }
2e8488b4
JF
540 LINE_INFO
541#undef LINE
78c70acd
JF
542};
543
2e8488b4
JF
544static enum line_type
545get_line_type(char *line)
78c70acd
JF
546{
547 int linelen = strlen(line);
a28bcc22 548 enum line_type type;
78c70acd 549
a28bcc22 550 for (type = 0; type < ARRAY_SIZE(line_info); type++)
2e8488b4 551 /* Case insensitive search matches Signed-off-by lines better. */
a28bcc22
JF
552 if (linelen >= line_info[type].linelen &&
553 !strncasecmp(line_info[type].line, line, line_info[type].linelen))
554 return type;
78c70acd 555
2e8488b4 556 return LINE_DEFAULT;
78c70acd
JF
557}
558
2e8488b4 559static inline int
78c70acd
JF
560get_line_attr(enum line_type type)
561{
2e8488b4
JF
562 assert(type < ARRAY_SIZE(line_info));
563 return COLOR_PAIR(type) | line_info[type].attr;
78c70acd
JF
564}
565
566static void
567init_colors(void)
568{
82e78006
JF
569 int default_bg = COLOR_BLACK;
570 int default_fg = COLOR_WHITE;
a28bcc22 571 enum line_type type;
78c70acd
JF
572
573 start_color();
574
575 if (use_default_colors() != ERR) {
82e78006
JF
576 default_bg = -1;
577 default_fg = -1;
78c70acd
JF
578 }
579
a28bcc22
JF
580 for (type = 0; type < ARRAY_SIZE(line_info); type++) {
581 struct line_info *info = &line_info[type];
82e78006
JF
582 int bg = info->bg == COLOR_DEFAULT ? default_bg : info->bg;
583 int fg = info->fg == COLOR_DEFAULT ? default_fg : info->fg;
78c70acd 584
a28bcc22 585 init_pair(type, fg, bg);
78c70acd
JF
586 }
587}
588
589
1ba2ae4b
JF
590/**
591 * ENVIRONMENT VARIABLES
592 * ---------------------
593 * It is possible to alter which commands are used for the different views.
594 * If for example you prefer commits in the main to be sorted by date and
595 * only show 500 commits, use:
596 *
597 * $ TIG_MAIN_CMD="git log --date-order -n500 --pretty=raw %s" tig
598 *
599 * Or set the variable permanently in your environment.
600 *
601 * Notice, how `%s` is used to specify the commit reference. There can
602 * be a maximum of 5 `%s` ref specifications.
603 *
604 * TIG_DIFF_CMD::
605 * The command used for the diff view. By default, git show is used
606 * as a backend.
607 *
608 * TIG_LOG_CMD::
609 * The command used for the log view.
610 *
611 * TIG_MAIN_CMD::
612 * The command used for the main view. Note, you must always specify
613 * the option: `--pretty=raw` since the main view parser expects to
614 * read that format.
615 **/
616
617#define TIG_DIFF_CMD \
618 "git show --patch-with-stat --find-copies-harder -B -C %s"
619
620#define TIG_LOG_CMD \
621 "git log --cc --stat -n100 %s"
622
623#define TIG_MAIN_CMD \
624 "git log --topo-order --stat --pretty=raw %s"
625
626/* We silently ignore that the following are also exported. */
627
628#define TIG_HELP_CMD \
629 "man tig 2> /dev/null"
630
631#define TIG_PAGER_CMD \
632 ""
633
634
b801d8b2
JF
635/*
636 * Viewer
637 */
638
639struct view {
03a93dbb 640 const char *name; /* View name */
1ba2ae4b
JF
641 char *cmd_fmt; /* Default command line format */
642 char *cmd_env; /* Command line set via environment */
03a93dbb
JF
643 char *id; /* Points to either of ref_{head,commit} */
644 size_t objsize; /* Size of objects in the line index */
6b161b31
JF
645
646 struct view_ops {
8855ada4 647 /* Draw one line; @lineno must be < view->height. */
6b161b31 648 bool (*draw)(struct view *view, unsigned int lineno);
8855ada4 649 /* Read one line; updates view->line. */
6b161b31 650 bool (*read)(struct view *view, char *line);
8855ada4 651 /* Depending on view, change display based on current line. */
6b161b31
JF
652 bool (*enter)(struct view *view);
653 } *ops;
22f66b0a 654
03a93dbb 655 char cmd[SIZEOF_CMD]; /* Command buffer */
49f2b43f
JF
656 char ref[SIZEOF_REF]; /* Hovered commit reference */
657 char vid[SIZEOF_REF]; /* View ID. Set to id member when updating. */
2e8488b4 658
8855ada4
JF
659 int height, width; /* The width and height of the main window */
660 WINDOW *win; /* The main window */
661 WINDOW *title; /* The title window living below the main window */
b801d8b2
JF
662
663 /* Navigation */
664 unsigned long offset; /* Offset of the window top */
665 unsigned long lineno; /* Current line number */
666
667 /* Buffering */
668 unsigned long lines; /* Total number of lines */
8855ada4
JF
669 void **line; /* Line index; each line contains user data */
670 unsigned int digits; /* Number of digits in the lines member. */
b801d8b2
JF
671
672 /* Loading */
673 FILE *pipe;
2e8488b4 674 time_t start_time;
b801d8b2
JF
675};
676
6b161b31
JF
677static struct view_ops pager_ops;
678static struct view_ops main_ops;
a28bcc22 679
49f2b43f
JF
680char ref_head[SIZEOF_REF] = "HEAD";
681char ref_commit[SIZEOF_REF] = "HEAD";
682
1ba2ae4b
JF
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
b801d8b2 689static struct view views[] = {
1ba2ae4b
JF
690 VIEW_(MAIN, "main", &main_ops, ref_head, sizeof(struct commit)),
691 VIEW_(DIFF, "diff", &pager_ops, ref_commit, sizeof(char)),
692 VIEW_(LOG, "log", &pager_ops, ref_head, sizeof(char)),
693 VIEW_(HELP, "help", &pager_ops, ref_head, sizeof(char)),
694 VIEW_(PAGER, "pager", &pager_ops, "static", sizeof(char)),
b801d8b2
JF
695};
696
a28bcc22
JF
697#define VIEW(req) (&views[(req) - REQ_OFFSET - 1])
698
4c6fabc2 699/* The display array of active views and the index of the current view. */
6b161b31 700static struct view *display[2];
4c6fabc2 701static unsigned int current_view;
22f66b0a 702
b801d8b2 703#define foreach_view(view, i) \
6b161b31 704 for (i = 0; i < ARRAY_SIZE(display) && (view = display[i]); i++)
b801d8b2 705
4c6fabc2 706
b801d8b2 707static void
82e78006 708redraw_view_from(struct view *view, int lineno)
b801d8b2 709{
82e78006 710 assert(0 <= lineno && lineno < view->height);
b801d8b2 711
82e78006 712 for (; lineno < view->height; lineno++) {
6b161b31 713 if (!view->ops->draw(view, lineno))
fd85fef1 714 break;
b801d8b2
JF
715 }
716
717 redrawwin(view->win);
718 wrefresh(view->win);
719}
720
b76c2afc 721static void
82e78006
JF
722redraw_view(struct view *view)
723{
724 wclear(view->win);
725 redraw_view_from(view, 0);
726}
727
6b161b31
JF
728static void
729resize_display(void)
b76c2afc 730{
03a93dbb 731 int offset, i;
6b161b31
JF
732 struct view *base = display[0];
733 struct view *view = display[1] ? display[1] : display[0];
b76c2afc 734
6b161b31 735 /* Setup window dimensions */
b76c2afc 736
03a93dbb 737 getmaxyx(stdscr, base->height, base->width);
b76c2afc 738
6b161b31 739 /* Make room for the status window. */
03a93dbb 740 base->height -= 1;
6b161b31
JF
741
742 if (view != base) {
03a93dbb
JF
743 /* Horizontal split. */
744 view->width = base->width;
6b161b31
JF
745 view->height = SCALE_SPLIT_VIEW(base->height);
746 base->height -= view->height;
747
748 /* Make room for the title bar. */
749 view->height -= 1;
750 }
751
752 /* Make room for the title bar. */
753 base->height -= 1;
754
755 offset = 0;
756
757 foreach_view (view, i) {
b76c2afc 758 if (!view->win) {
6b161b31
JF
759 view->win = newwin(view->height, 0, offset, 0);
760 if (!view->win)
761 die("Failed to create %s view", view->name);
762
763 scrollok(view->win, TRUE);
764
765 view->title = newwin(1, 0, offset + view->height, 0);
766 if (!view->title)
767 die("Failed to create title window");
768
769 } else {
770 wresize(view->win, view->height, view->width);
771 mvwin(view->win, offset, 0);
772 mvwin(view->title, offset + view->height, 0);
773 wrefresh(view->win);
a28bcc22 774 }
a28bcc22 775
6b161b31 776 offset += view->height + 1;
b76c2afc 777 }
6b161b31 778}
b76c2afc 779
6b161b31
JF
780static void
781update_view_title(struct view *view)
782{
783 if (view == display[current_view])
784 wbkgdset(view->title, get_line_attr(LINE_TITLE_FOCUS));
785 else
786 wbkgdset(view->title, get_line_attr(LINE_TITLE_BLUR));
a28bcc22 787
6b161b31
JF
788 werase(view->title);
789 wmove(view->title, 0, 0);
b76c2afc 790
6b161b31 791 /* [main] ref: 334b506... - commit 6 of 4383 (0%) */
6908bdbd
JF
792
793 if (*view->ref)
794 wprintw(view->title, "[%s] ref: %s", view->name, view->ref);
795 else
796 wprintw(view->title, "[%s]", view->name);
797
6b161b31
JF
798 if (view->lines) {
799 char *type = view == VIEW(REQ_VIEW_MAIN) ? "commit" : "line";
800
801 wprintw(view->title, " - %s %d of %d (%d%%)",
802 type,
803 view->lineno + 1,
804 view->lines,
805 (view->lineno + 1) * 100 / view->lines);
806 }
807
808 wrefresh(view->title);
809}
78c70acd 810
2e8488b4
JF
811/*
812 * Navigation
813 */
814
4a2909a7 815/* Scrolling backend */
b801d8b2 816static void
4a2909a7 817do_scroll_view(struct view *view, int lines)
b801d8b2 818{
fd85fef1
JF
819 /* The rendering expects the new offset. */
820 view->offset += lines;
821
822 assert(0 <= view->offset && view->offset < view->lines);
823 assert(lines);
b801d8b2 824
82e78006 825 /* Redraw the whole screen if scrolling is pointless. */
4c6fabc2 826 if (view->height < ABS(lines)) {
b76c2afc
JF
827 redraw_view(view);
828
829 } else {
22f66b0a 830 int line = lines > 0 ? view->height - lines : 0;
82e78006 831 int end = line + ABS(lines);
fd85fef1
JF
832
833 wscrl(view->win, lines);
834
22f66b0a 835 for (; line < end; line++) {
6b161b31 836 if (!view->ops->draw(view, line))
fd85fef1
JF
837 break;
838 }
839 }
840
841 /* Move current line into the view. */
842 if (view->lineno < view->offset) {
843 view->lineno = view->offset;
6b161b31 844 view->ops->draw(view, 0);
fd85fef1
JF
845
846 } else if (view->lineno >= view->offset + view->height) {
847 view->lineno = view->offset + view->height - 1;
6b161b31 848 view->ops->draw(view, view->lineno - view->offset);
fd85fef1
JF
849 }
850
4c6fabc2 851 assert(view->offset <= view->lineno && view->lineno < view->lines);
fd85fef1
JF
852
853 redrawwin(view->win);
854 wrefresh(view->win);
9d3f5834 855 report("");
fd85fef1 856}
78c70acd 857
4a2909a7 858/* Scroll frontend */
fd85fef1 859static void
6b161b31 860scroll_view(struct view *view, enum request request)
fd85fef1
JF
861{
862 int lines = 1;
b801d8b2
JF
863
864 switch (request) {
4a2909a7 865 case REQ_SCROLL_PAGE_DOWN:
fd85fef1 866 lines = view->height;
4a2909a7 867 case REQ_SCROLL_LINE_DOWN:
b801d8b2 868 if (view->offset + lines > view->lines)
bde3653a 869 lines = view->lines - view->offset;
b801d8b2 870
fd85fef1 871 if (lines == 0 || view->offset + view->height >= view->lines) {
eb98559e 872 report("Cannot scroll beyond the last line");
b801d8b2
JF
873 return;
874 }
875 break;
876
4a2909a7 877 case REQ_SCROLL_PAGE_UP:
fd85fef1 878 lines = view->height;
4a2909a7 879 case REQ_SCROLL_LINE_UP:
b801d8b2
JF
880 if (lines > view->offset)
881 lines = view->offset;
882
883 if (lines == 0) {
eb98559e 884 report("Cannot scroll beyond the first line");
b801d8b2
JF
885 return;
886 }
887
fd85fef1 888 lines = -lines;
b801d8b2 889 break;
03a93dbb 890
6b161b31
JF
891 default:
892 die("request %d not handled in switch", request);
b801d8b2
JF
893 }
894
4a2909a7 895 do_scroll_view(view, lines);
fd85fef1 896}
b801d8b2 897
4a2909a7 898/* Cursor moving */
fd85fef1 899static void
6b161b31 900move_view(struct view *view, enum request request)
fd85fef1
JF
901{
902 int steps;
b801d8b2 903
fd85fef1 904 switch (request) {
4a2909a7 905 case REQ_MOVE_FIRST_LINE:
78c70acd
JF
906 steps = -view->lineno;
907 break;
908
4a2909a7 909 case REQ_MOVE_LAST_LINE:
78c70acd
JF
910 steps = view->lines - view->lineno - 1;
911 break;
912
4a2909a7 913 case REQ_MOVE_PAGE_UP:
78c70acd
JF
914 steps = view->height > view->lineno
915 ? -view->lineno : -view->height;
916 break;
917
4a2909a7 918 case REQ_MOVE_PAGE_DOWN:
78c70acd
JF
919 steps = view->lineno + view->height >= view->lines
920 ? view->lines - view->lineno - 1 : view->height;
921 break;
922
4a2909a7 923 case REQ_MOVE_UP:
fd85fef1
JF
924 steps = -1;
925 break;
b801d8b2 926
4a2909a7 927 case REQ_MOVE_DOWN:
fd85fef1
JF
928 steps = 1;
929 break;
6b161b31
JF
930
931 default:
932 die("request %d not handled in switch", request);
78c70acd 933 }
b801d8b2 934
4c6fabc2 935 if (steps <= 0 && view->lineno == 0) {
eb98559e 936 report("Cannot move beyond the first line");
78c70acd 937 return;
b801d8b2 938
6908bdbd 939 } else if (steps >= 0 && view->lineno + 1 >= view->lines) {
eb98559e 940 report("Cannot move beyond the last line");
78c70acd 941 return;
fd85fef1
JF
942 }
943
4c6fabc2 944 /* Move the current line */
fd85fef1 945 view->lineno += steps;
4c6fabc2
JF
946 assert(0 <= view->lineno && view->lineno < view->lines);
947
948 /* Repaint the old "current" line if we be scrolling */
2e8488b4
JF
949 if (ABS(steps) < view->height) {
950 int prev_lineno = view->lineno - steps - view->offset;
951
952 wmove(view->win, prev_lineno, 0);
953 wclrtoeol(view->win);
03a93dbb 954 view->ops->draw(view, prev_lineno);
2e8488b4 955 }
fd85fef1 956
4c6fabc2 957 /* Check whether the view needs to be scrolled */
fd85fef1
JF
958 if (view->lineno < view->offset ||
959 view->lineno >= view->offset + view->height) {
960 if (steps < 0 && -steps > view->offset) {
961 steps = -view->offset;
b76c2afc
JF
962
963 } else if (steps > 0) {
964 if (view->lineno == view->lines - 1 &&
965 view->lines > view->height) {
966 steps = view->lines - view->offset - 1;
967 if (steps >= view->height)
968 steps -= view->height - 1;
969 }
b801d8b2 970 }
78c70acd 971
4a2909a7 972 do_scroll_view(view, steps);
fd85fef1 973 return;
b801d8b2
JF
974 }
975
4c6fabc2 976 /* Draw the current line */
6b161b31 977 view->ops->draw(view, view->lineno - view->offset);
fd85fef1 978
b801d8b2
JF
979 redrawwin(view->win);
980 wrefresh(view->win);
9d3f5834 981 report("");
b801d8b2
JF
982}
983
b801d8b2 984
2e8488b4
JF
985/*
986 * Incremental updating
987 */
b801d8b2 988
03a93dbb 989static bool
b801d8b2
JF
990begin_update(struct view *view)
991{
2e8488b4 992 char *id = view->id;
fd85fef1 993
03a93dbb
JF
994 if (opt_cmd[0]) {
995 string_copy(view->cmd, opt_cmd);
996 opt_cmd[0] = 0;
8855ada4
JF
997 /* When running random commands, the view ref could have become
998 * invalid so clear it. */
999 view->ref[0] = 0;
03a93dbb 1000 } else {
1ba2ae4b
JF
1001 char *format = view->cmd_env ? view->cmd_env : view->cmd_fmt;
1002
1003 if (snprintf(view->cmd, sizeof(view->cmd), format,
1004 id, id, id, id, id) >= sizeof(view->cmd))
03a93dbb
JF
1005 return FALSE;
1006 }
b801d8b2 1007
6908bdbd
JF
1008 /* Special case for the pager view. */
1009 if (opt_pipe) {
1010 view->pipe = opt_pipe;
1011 opt_pipe = NULL;
1012 } else {
1013 view->pipe = popen(view->cmd, "r");
1014 }
1015
2e8488b4
JF
1016 if (!view->pipe)
1017 return FALSE;
b801d8b2 1018
6b161b31 1019 set_nonblocking_input(TRUE);
b801d8b2
JF
1020
1021 view->offset = 0;
1022 view->lines = 0;
1023 view->lineno = 0;
49f2b43f 1024 string_copy(view->vid, id);
b801d8b2 1025
2e8488b4
JF
1026 if (view->line) {
1027 int i;
1028
1029 for (i = 0; i < view->lines; i++)
1030 if (view->line[i])
1031 free(view->line[i]);
1032
1033 free(view->line);
1034 view->line = NULL;
1035 }
1036
1037 view->start_time = time(NULL);
1038
b801d8b2
JF
1039 return TRUE;
1040}
1041
1042static void
1043end_update(struct view *view)
1044{
03a93dbb
JF
1045 if (!view->pipe)
1046 return;
6b161b31 1047 set_nonblocking_input(FALSE);
80ce96ea
JF
1048 if (view->pipe == stdin)
1049 fclose(view->pipe);
1050 else
1051 pclose(view->pipe);
2e8488b4 1052 view->pipe = NULL;
b801d8b2
JF
1053}
1054
03a93dbb 1055static bool
b801d8b2
JF
1056update_view(struct view *view)
1057{
1058 char buffer[BUFSIZ];
1059 char *line;
22f66b0a 1060 void **tmp;
82e78006
JF
1061 /* The number of lines to read. If too low it will cause too much
1062 * redrawing (and possible flickering), if too high responsiveness
1063 * will suffer. */
8855ada4 1064 unsigned long lines = view->height;
82e78006 1065 int redraw_from = -1;
b801d8b2
JF
1066
1067 if (!view->pipe)
1068 return TRUE;
1069
82e78006
JF
1070 /* Only redraw if lines are visible. */
1071 if (view->offset + view->height >= view->lines)
1072 redraw_from = view->lines - view->offset;
b801d8b2
JF
1073
1074 tmp = realloc(view->line, sizeof(*view->line) * (view->lines + lines));
1075 if (!tmp)
1076 goto alloc_error;
1077
1078 view->line = tmp;
1079
1080 while ((line = fgets(buffer, sizeof(buffer), view->pipe))) {
1081 int linelen;
1082
b801d8b2
JF
1083 linelen = strlen(line);
1084 if (linelen)
1085 line[linelen - 1] = 0;
1086
6b161b31 1087 if (!view->ops->read(view, line))
b801d8b2 1088 goto alloc_error;
fd85fef1
JF
1089
1090 if (lines-- == 1)
1091 break;
b801d8b2
JF
1092 }
1093
8855ada4
JF
1094 {
1095 int digits;
1096
1097 lines = view->lines;
1098 for (digits = 0; lines; digits++)
1099 lines /= 10;
1100
1101 /* Keep the displayed view in sync with line number scaling. */
1102 if (digits != view->digits) {
1103 view->digits = digits;
1104 redraw_from = 0;
1105 }
1106 }
1107
82e78006
JF
1108 if (redraw_from >= 0) {
1109 /* If this is an incremental update, redraw the previous line
a28bcc22
JF
1110 * since for commits some members could have changed when
1111 * loading the main view. */
82e78006
JF
1112 if (redraw_from > 0)
1113 redraw_from--;
1114
1115 /* Incrementally draw avoids flickering. */
1116 redraw_view_from(view, redraw_from);
4c6fabc2 1117 }
b801d8b2 1118
eb98559e
JF
1119 /* Update the title _after_ the redraw so that if the redraw picks up a
1120 * commit reference in view->ref it'll be available here. */
1121 update_view_title(view);
1122
b801d8b2 1123 if (ferror(view->pipe)) {
03a93dbb 1124 report("Failed to read: %s", strerror(errno));
b801d8b2
JF
1125 goto end;
1126
1127 } else if (feof(view->pipe)) {
2e8488b4
JF
1128 time_t secs = time(NULL) - view->start_time;
1129
a28bcc22
JF
1130 if (view == VIEW(REQ_VIEW_HELP)) {
1131 report("%s", HELP);
2e8488b4
JF
1132 goto end;
1133 }
1134
1135 report("Loaded %d lines in %ld second%s", view->lines, secs,
1136 secs == 1 ? "" : "s");
b801d8b2
JF
1137 goto end;
1138 }
1139
1140 return TRUE;
1141
1142alloc_error:
2e8488b4 1143 report("Allocation failure");
b801d8b2
JF
1144
1145end:
1146 end_update(view);
1147 return FALSE;
1148}
1149
49f2b43f
JF
1150enum open_flags {
1151 OPEN_DEFAULT = 0, /* Use default view switching. */
1152 OPEN_SPLIT = 1, /* Split current view. */
1153 OPEN_BACKGROUNDED = 2, /* Backgrounded. */
1154 OPEN_RELOAD = 4, /* Reload view even if it is the current. */
1155};
1156
6b161b31 1157static void
49f2b43f 1158open_view(struct view *prev, enum request request, enum open_flags flags)
b801d8b2 1159{
49f2b43f
JF
1160 bool backgrounded = !!(flags & OPEN_BACKGROUNDED);
1161 bool split = !!(flags & OPEN_SPLIT);
1162 bool reload = !!(flags & OPEN_RELOAD);
a28bcc22 1163 struct view *view = VIEW(request);
b801d8b2 1164 struct view *displayed;
6b161b31
JF
1165 int nviews;
1166
03a93dbb 1167 /* Cycle between displayed views and count the views. */
6b161b31 1168 foreach_view (displayed, nviews) {
03a93dbb
JF
1169 if (prev != view &&
1170 view == displayed &&
8855ada4 1171 !strcmp(view->vid, prev->vid)) {
6b161b31
JF
1172 current_view = nviews;
1173 /* Blur out the title of the previous view. */
1174 update_view_title(prev);
1175 report("Switching to %s view", view->name);
1176 return;
a28bcc22 1177 }
6b161b31 1178 }
b801d8b2 1179
49f2b43f 1180 if (view == prev && nviews == 1 && !reload) {
6b161b31
JF
1181 report("Already in %s view", view->name);
1182 return;
1183 }
b801d8b2 1184
8855ada4 1185 if ((reload || strcmp(view->vid, view->id)) &&
03a93dbb 1186 !begin_update(view)) {
6b161b31
JF
1187 report("Failed to load %s view", view->name);
1188 return;
1189 }
a28bcc22 1190
6b161b31
JF
1191 if (split) {
1192 display[current_view + 1] = view;
1193 if (!backgrounded)
a28bcc22 1194 current_view++;
6b161b31
JF
1195 } else {
1196 /* Maximize the current view. */
1197 memset(display, 0, sizeof(display));
1198 current_view = 0;
1199 display[current_view] = view;
a28bcc22 1200 }
b801d8b2 1201
6b161b31 1202 resize_display();
b801d8b2 1203
a8891802 1204 if (split && prev->lineno - prev->offset >= prev->height) {
03a93dbb 1205 /* Take the title line into account. */
eb98559e 1206 int lines = prev->lineno - prev->offset - prev->height + 1;
03a93dbb
JF
1207
1208 /* Scroll the view that was split if the current line is
1209 * outside the new limited view. */
1210 do_scroll_view(prev, lines);
1211 }
1212
6b161b31
JF
1213 if (prev && view != prev) {
1214 /* "Blur" the previous view. */
1215 update_view_title(prev);
1216
1217 /* Continue loading split views in the background. */
03a93dbb 1218 if (!split)
6b161b31 1219 end_update(prev);
b801d8b2
JF
1220 }
1221
03a93dbb
JF
1222 if (view->pipe) {
1223 /* Clear the old view and let the incremental updating refill
1224 * the screen. */
1225 wclear(view->win);
1226 report("Loading...");
1227 } else {
1228 redraw_view(view);
1229 report("");
1230 }
b801d8b2
JF
1231}
1232
1233
6b161b31
JF
1234/*
1235 * User request switch noodle
1236 */
1237
b801d8b2 1238static int
6b161b31 1239view_driver(struct view *view, enum request request)
b801d8b2 1240{
b801d8b2
JF
1241 int i;
1242
1243 switch (request) {
4a2909a7
JF
1244 case REQ_MOVE_UP:
1245 case REQ_MOVE_DOWN:
1246 case REQ_MOVE_PAGE_UP:
1247 case REQ_MOVE_PAGE_DOWN:
1248 case REQ_MOVE_FIRST_LINE:
1249 case REQ_MOVE_LAST_LINE:
a28bcc22 1250 move_view(view, request);
fd85fef1
JF
1251 break;
1252
4a2909a7
JF
1253 case REQ_SCROLL_LINE_DOWN:
1254 case REQ_SCROLL_LINE_UP:
1255 case REQ_SCROLL_PAGE_DOWN:
1256 case REQ_SCROLL_PAGE_UP:
a28bcc22 1257 scroll_view(view, request);
b801d8b2
JF
1258 break;
1259
4a2909a7 1260 case REQ_VIEW_MAIN:
4a2909a7 1261 case REQ_VIEW_DIFF:
2e8488b4
JF
1262 case REQ_VIEW_LOG:
1263 case REQ_VIEW_HELP:
6908bdbd 1264 case REQ_VIEW_PAGER:
49f2b43f 1265 open_view(view, request, OPEN_DEFAULT);
b801d8b2
JF
1266 break;
1267
6b161b31 1268 case REQ_ENTER:
6908bdbd
JF
1269 if (!view->lines) {
1270 report("Nothing to enter");
1271 break;
1272 }
6b161b31
JF
1273 return view->ops->enter(view);
1274
03a93dbb
JF
1275 case REQ_VIEW_NEXT:
1276 {
1277 int nviews = display[1] ? 2 : 1;
1278 int next_view = (current_view + 1) % nviews;
1279
1280 if (next_view == current_view) {
1281 report("Only one view is displayed");
1282 break;
1283 }
1284
1285 current_view = next_view;
1286 /* Blur out the title of the previous view. */
1287 update_view_title(view);
1288 report("Switching to %s view", display[current_view]->name);
1289 break;
1290 }
4a2909a7 1291 case REQ_TOGGLE_LINE_NUMBERS:
b76c2afc 1292 opt_line_number = !opt_line_number;
a28bcc22 1293 redraw_view(view);
b801d8b2
JF
1294 break;
1295
03a93dbb 1296 case REQ_PROMPT:
8855ada4 1297 /* Always reload^Wrerun commands from the prompt. */
49f2b43f 1298 open_view(view, opt_request, OPEN_RELOAD);
03a93dbb
JF
1299 break;
1300
4a2909a7 1301 case REQ_STOP_LOADING:
03a93dbb 1302 foreach_view (view, i) {
2e8488b4 1303 if (view->pipe)
03a93dbb
JF
1304 report("Stopped loaded of %s view", view->name),
1305 end_update(view);
1306 }
b801d8b2
JF
1307 break;
1308
4a2909a7 1309 case REQ_SHOW_VERSION:
2e8488b4 1310 report("Version: %s", VERSION);
b801d8b2
JF
1311 return TRUE;
1312
fac7db6c
JF
1313 case REQ_SCREEN_RESIZE:
1314 resize_display();
1315 /* Fall-through */
4a2909a7 1316 case REQ_SCREEN_REDRAW:
eb98559e
JF
1317 foreach_view (view, i) {
1318 redraw_view(view);
1319 update_view_title(view);
1320 }
4a2909a7
JF
1321 break;
1322
1323 case REQ_SCREEN_UPDATE:
b801d8b2
JF
1324 doupdate();
1325 return TRUE;
1326
1327 case REQ_QUIT:
1328 return FALSE;
1329
1330 default:
2e8488b4 1331 /* An unknown key will show most commonly used commands. */
a28bcc22 1332 report("%s", HELP);
b801d8b2
JF
1333 return TRUE;
1334 }
1335
1336 return TRUE;
1337}
1338
1339
1340/*
6b161b31 1341 * View backend handlers
b801d8b2
JF
1342 */
1343
6b161b31 1344static bool
22f66b0a 1345pager_draw(struct view *view, unsigned int lineno)
b801d8b2 1346{
78c70acd 1347 enum line_type type;
b801d8b2 1348 char *line;
4c6fabc2 1349 int linelen;
78c70acd 1350 int attr;
b801d8b2 1351
fd85fef1
JF
1352 if (view->offset + lineno >= view->lines)
1353 return FALSE;
1354
b801d8b2 1355 line = view->line[view->offset + lineno];
78c70acd 1356 type = get_line_type(line);
b801d8b2 1357
fd85fef1 1358 if (view->offset + lineno == view->lineno) {
8855ada4 1359 if (type == LINE_COMMIT) {
03a93dbb
JF
1360 string_copy(view->ref, line + 7);
1361 string_copy(ref_commit, view->ref);
1362 }
8855ada4 1363
78c70acd 1364 type = LINE_CURSOR;
fd85fef1
JF
1365 }
1366
78c70acd 1367 attr = get_line_attr(type);
b801d8b2 1368 wattrset(view->win, attr);
b76c2afc 1369
4c6fabc2
JF
1370 linelen = strlen(line);
1371 linelen = MIN(linelen, view->width);
1372
b76c2afc 1373 if (opt_line_number) {
8855ada4
JF
1374 static char indent[] = " ";
1375 unsigned long real_lineno = view->offset + lineno + 1;
a28bcc22 1376 int col = 0;
82e78006 1377
2e8488b4 1378 if (real_lineno == 1 || (real_lineno % opt_num_interval) == 0)
8855ada4
JF
1379 mvwprintw(view->win, lineno, 0, "%.*d", view->digits, real_lineno);
1380
1381 else if (view->digits < sizeof(indent))
1382 mvwaddnstr(view->win, lineno, 0, indent, view->digits);
1383
1384 waddstr(view->win, ": ");
4c6fabc2 1385
b76c2afc
JF
1386 while (line) {
1387 if (*line == '\t') {
82e78006
JF
1388 waddnstr(view->win, " ", 8 - (col % 8));
1389 col += 8 - (col % 8);
b76c2afc 1390 line++;
82e78006 1391
b76c2afc
JF
1392 } else {
1393 char *tab = strchr(line, '\t');
1394
1395 if (tab)
1396 waddnstr(view->win, line, tab - line);
1397 else
1398 waddstr(view->win, line);
82e78006 1399 col += tab - line;
b76c2afc
JF
1400 line = tab;
1401 }
1402 }
1403 waddstr(view->win, line);
1404
1405 } else {
2e8488b4
JF
1406#if 0
1407 /* NOTE: Code for only highlighting the text on the cursor line.
1408 * Kept since I've not yet decided whether to highlight the
1409 * entire line or not. --fonseca */
b76c2afc
JF
1410 /* No empty lines makes cursor drawing and clearing implicit. */
1411 if (!*line)
4c6fabc2 1412 line = " ", linelen = 1;
2e8488b4 1413#endif
4c6fabc2 1414 mvwaddnstr(view->win, lineno, 0, line, linelen);
b76c2afc 1415 }
b801d8b2 1416
2e8488b4
JF
1417 /* Paint the rest of the line if it's the cursor line. */
1418 if (type == LINE_CURSOR)
1419 wchgat(view->win, -1, 0, type, NULL);
1420
b801d8b2
JF
1421 return TRUE;
1422}
1423
6b161b31 1424static bool
22f66b0a
JF
1425pager_read(struct view *view, char *line)
1426{
1427 view->line[view->lines] = strdup(line);
1428 if (!view->line[view->lines])
1429 return FALSE;
1430
1431 view->lines++;
1432 return TRUE;
1433}
1434
6b161b31
JF
1435static bool
1436pager_enter(struct view *view)
1437{
1438 char *line = view->line[view->lineno];
1439
1440 if (get_line_type(line) == LINE_COMMIT) {
49f2b43f 1441 open_view(view, REQ_VIEW_DIFF, OPEN_DEFAULT);
6b161b31
JF
1442 }
1443
1444 return TRUE;
1445}
1446
6b161b31
JF
1447static struct view_ops pager_ops = {
1448 pager_draw,
1449 pager_read,
1450 pager_enter,
1451};
1452
80ce96ea 1453
6b161b31 1454static bool
22f66b0a
JF
1455main_draw(struct view *view, unsigned int lineno)
1456{
2e8488b4 1457 char buf[DATE_COLS + 1];
22f66b0a 1458 struct commit *commit;
78c70acd 1459 enum line_type type;
b76c2afc
JF
1460 int cols = 0;
1461 size_t timelen;
22f66b0a
JF
1462
1463 if (view->offset + lineno >= view->lines)
1464 return FALSE;
1465
1466 commit = view->line[view->offset + lineno];
4c6fabc2
JF
1467 if (!*commit->author)
1468 return FALSE;
22f66b0a 1469
22f66b0a 1470 if (view->offset + lineno == view->lineno) {
03a93dbb 1471 string_copy(view->ref, commit->id);
49f2b43f 1472 string_copy(ref_commit, view->ref);
78c70acd
JF
1473 type = LINE_CURSOR;
1474 } else {
b76c2afc
JF
1475 type = LINE_MAIN_COMMIT;
1476 }
1477
1478 wmove(view->win, lineno, cols);
1479 wattrset(view->win, get_line_attr(LINE_MAIN_DATE));
1480
4c6fabc2 1481 timelen = strftime(buf, sizeof(buf), DATE_FORMAT, &commit->time);
b76c2afc 1482 waddnstr(view->win, buf, timelen);
4c6fabc2 1483 waddstr(view->win, " ");
b76c2afc 1484
4c6fabc2 1485 cols += DATE_COLS;
b76c2afc
JF
1486 wmove(view->win, lineno, cols);
1487 wattrset(view->win, get_line_attr(LINE_MAIN_AUTHOR));
1488
1489 if (strlen(commit->author) > 19) {
1490 waddnstr(view->win, commit->author, 18);
1491 wattrset(view->win, get_line_attr(LINE_MAIN_DELIM));
1492 waddch(view->win, '~');
1493 } else {
1494 waddstr(view->win, commit->author);
22f66b0a
JF
1495 }
1496
b76c2afc
JF
1497 cols += 20;
1498 wattrset(view->win, A_NORMAL);
1499 mvwaddch(view->win, lineno, cols, ACS_LTEE);
78c70acd 1500 wattrset(view->win, get_line_attr(type));
b76c2afc 1501 mvwaddstr(view->win, lineno, cols + 2, commit->title);
22f66b0a
JF
1502 wattrset(view->win, A_NORMAL);
1503
1504 return TRUE;
1505}
1506
4c6fabc2 1507/* Reads git log --pretty=raw output and parses it into the commit struct. */
6b161b31 1508static bool
22f66b0a
JF
1509main_read(struct view *view, char *line)
1510{
78c70acd
JF
1511 enum line_type type = get_line_type(line);
1512 struct commit *commit;
22f66b0a 1513
78c70acd
JF
1514 switch (type) {
1515 case LINE_COMMIT:
22f66b0a
JF
1516 commit = calloc(1, sizeof(struct commit));
1517 if (!commit)
1518 return FALSE;
1519
4c6fabc2 1520 line += STRING_SIZE("commit ");
b76c2afc 1521
22f66b0a 1522 view->line[view->lines++] = commit;
82e78006 1523 string_copy(commit->id, line);
78c70acd 1524 break;
22f66b0a 1525
8855ada4 1526 case LINE_AUTHOR:
b76c2afc 1527 {
4c6fabc2 1528 char *ident = line + STRING_SIZE("author ");
b76c2afc
JF
1529 char *end = strchr(ident, '<');
1530
1531 if (end) {
1532 for (; end > ident && isspace(end[-1]); end--) ;
1533 *end = 0;
1534 }
1535
1536 commit = view->line[view->lines - 1];
82e78006 1537 string_copy(commit->author, ident);
b76c2afc 1538
4c6fabc2 1539 /* Parse epoch and timezone */
b76c2afc
JF
1540 if (end) {
1541 char *secs = strchr(end + 1, '>');
1542 char *zone;
1543 time_t time;
1544
1545 if (!secs || secs[1] != ' ')
1546 break;
1547
1548 secs += 2;
1549 time = (time_t) atol(secs);
1550 zone = strchr(secs, ' ');
4c6fabc2 1551 if (zone && strlen(zone) == STRING_SIZE(" +0700")) {
b76c2afc
JF
1552 long tz;
1553
1554 zone++;
1555 tz = ('0' - zone[1]) * 60 * 60 * 10;
1556 tz += ('0' - zone[2]) * 60 * 60;
1557 tz += ('0' - zone[3]) * 60;
1558 tz += ('0' - zone[4]) * 60;
1559
1560 if (zone[0] == '-')
1561 tz = -tz;
1562
1563 time -= tz;
1564 }
1565 gmtime_r(&time, &commit->time);
1566 }
1567 break;
1568 }
78c70acd 1569 default:
2e8488b4
JF
1570 /* We should only ever end up here if there has already been a
1571 * commit line, however, be safe. */
1572 if (view->lines == 0)
1573 break;
1574
1575 /* Fill in the commit title if it has not already been set. */
78c70acd 1576 commit = view->line[view->lines - 1];
2e8488b4
JF
1577 if (commit->title[0])
1578 break;
1579
1580 /* Require titles to start with a non-space character at the
1581 * offset used by git log. */
eb98559e
JF
1582 /* FIXME: More gracefull handling of titles; append "..." to
1583 * shortened titles, etc. */
2e8488b4 1584 if (strncmp(line, " ", 4) ||
eb98559e 1585 isspace(line[4]))
82e78006
JF
1586 break;
1587
1588 string_copy(commit->title, line + 4);
22f66b0a
JF
1589 }
1590
1591 return TRUE;
1592}
1593
6b161b31
JF
1594static bool
1595main_enter(struct view *view)
b801d8b2 1596{
49f2b43f 1597 open_view(view, REQ_VIEW_DIFF, OPEN_SPLIT | OPEN_BACKGROUNDED);
6b161b31 1598 return TRUE;
b801d8b2
JF
1599}
1600
6b161b31
JF
1601static struct view_ops main_ops = {
1602 main_draw,
1603 main_read,
1604 main_enter,
1605};
2e8488b4 1606
6b161b31
JF
1607/*
1608 * Status management
1609 */
2e8488b4 1610
8855ada4
JF
1611/* Whether or not the curses interface has been initialized. */
1612bool cursed = FALSE;
1613
6b161b31
JF
1614/* The status window is used for polling keystrokes. */
1615static WINDOW *status_win;
4a2909a7 1616
2e8488b4 1617/* Update status and title window. */
4a2909a7
JF
1618static void
1619report(const char *msg, ...)
1620{
1621 va_list args;
b76c2afc 1622
b801d8b2
JF
1623 va_start(args, msg);
1624
2e8488b4
JF
1625 /* Update the title window first, so the cursor ends up in the status
1626 * window. */
6b161b31 1627 update_view_title(display[current_view]);
4a2909a7 1628
b801d8b2
JF
1629 werase(status_win);
1630 wmove(status_win, 0, 0);
b801d8b2
JF
1631 vwprintw(status_win, msg, args);
1632 wrefresh(status_win);
1633
1634 va_end(args);
b801d8b2
JF
1635}
1636
6b161b31
JF
1637/* Controls when nodelay should be in effect when polling user input. */
1638static void
1ba2ae4b 1639set_nonblocking_input(bool loading)
b801d8b2 1640{
6b161b31
JF
1641 /* The number of loading views. */
1642 static unsigned int nloading;
b801d8b2 1643
1ba2ae4b
JF
1644 if ((loading == FALSE && nloading-- == 1) ||
1645 (loading == TRUE && nloading++ == 0))
1646 nodelay(status_win, loading);
6b161b31
JF
1647}
1648
1649static void
1650init_display(void)
1651{
1652 int x, y;
b76c2afc 1653
6908bdbd
JF
1654 /* Initialize the curses library */
1655 if (isatty(STDIN_FILENO)) {
8855ada4 1656 cursed = !!initscr();
6908bdbd
JF
1657 } else {
1658 /* Leave stdin and stdout alone when acting as a pager. */
1659 FILE *io = fopen("/dev/tty", "r+");
1660
8855ada4 1661 cursed = !!newterm(NULL, io, io);
6908bdbd
JF
1662 }
1663
8855ada4
JF
1664 if (!cursed)
1665 die("Failed to initialize curses");
1666
2e8488b4
JF
1667 nonl(); /* Tell curses not to do NL->CR/NL on output */
1668 cbreak(); /* Take input chars one at a time, no wait for \n */
1669 noecho(); /* Don't echo input */
b801d8b2 1670 leaveok(stdscr, TRUE);
b801d8b2
JF
1671
1672 if (has_colors())
1673 init_colors();
1674
1675 getmaxyx(stdscr, y, x);
1676 status_win = newwin(1, 0, y - 1, 0);
1677 if (!status_win)
1678 die("Failed to create status window");
1679
1680 /* Enable keyboard mapping */
1681 keypad(status_win, TRUE);
78c70acd 1682 wbkgdset(status_win, get_line_attr(LINE_STATUS));
6b161b31
JF
1683}
1684
1685/*
1686 * Main
1687 */
1688
1689static void
1690quit(int sig)
1691{
8855ada4
JF
1692 /* XXX: Restore tty modes and let the OS cleanup the rest! */
1693 if (cursed)
1694 endwin();
6b161b31
JF
1695 exit(0);
1696}
1697
1698static void die(const char *err, ...)
1699{
1700 va_list args;
1701
1702 endwin();
1703
1704 va_start(args, err);
1705 fputs("tig: ", stderr);
1706 vfprintf(stderr, err, args);
1707 fputs("\n", stderr);
1708 va_end(args);
1709
1710 exit(1);
1711}
1712
fac7db6c
JF
1713#include <readline/readline.h>
1714
6b161b31
JF
1715int
1716main(int argc, char *argv[])
1717{
1ba2ae4b 1718 struct view *view;
6b161b31 1719 enum request request;
1ba2ae4b 1720 size_t i;
6b161b31
JF
1721
1722 signal(SIGINT, quit);
1723
8855ada4 1724 if (!parse_options(argc, argv))
6b161b31
JF
1725 return 0;
1726
1ba2ae4b
JF
1727 for (i = 0; i < ARRAY_SIZE(views) && (view = &views[i]); i++)
1728 view->cmd_env = getenv(view->cmd_env);
1729
6b161b31
JF
1730 request = opt_request;
1731
1732 init_display();
b801d8b2
JF
1733
1734 while (view_driver(display[current_view], request)) {
6b161b31 1735 int key;
b801d8b2
JF
1736 int i;
1737
6b161b31
JF
1738 foreach_view (view, i)
1739 update_view(view);
b801d8b2
JF
1740
1741 /* Refresh, accept single keystroke of input */
6b161b31
JF
1742 key = wgetch(status_win);
1743 request = get_request(key);
03a93dbb 1744
fac7db6c
JF
1745 /* Some low-level request handling. This keeps handling of
1746 * status_win restricted. */
1747 switch (request) {
1748 case REQ_PROMPT:
6908bdbd
JF
1749 report(":");
1750 /* Temporarily switch to line-oriented and echoed
1751 * input. */
03a93dbb
JF
1752 nocbreak();
1753 echo();
49f2b43f
JF
1754
1755 if (wgetnstr(status_win, opt_cmd + 4, sizeof(opt_cmd) - 4) == OK) {
1756 memcpy(opt_cmd, "git ", 4);
1757 opt_request = REQ_VIEW_PAGER;
1758 } else {
1759 request = ERR;
1760 }
1761
6908bdbd
JF
1762 noecho();
1763 cbreak();
fac7db6c
JF
1764 break;
1765
1766 case REQ_SCREEN_RESIZE:
1767 {
1768 int height, width;
1769
1770 getmaxyx(stdscr, height, width);
1771
1772 /* Resize the status view and let the view driver take
1773 * care of resizing the displayed views. */
1774 wresize(status_win, 1, width);
1775 mvwin(status_win, height - 1, 0);
1776 wrefresh(status_win);
1777 break;
1778 }
1779 default:
1780 break;
03a93dbb 1781 }
b801d8b2
JF
1782 }
1783
1784 quit(0);
1785
1786 return 0;
1787}
1788
1789/**
4c6fabc2
JF
1790 * TODO
1791 * ----
1792 * Features that should be explored.
1793 *
fac7db6c 1794 * - Searching.
4c6fabc2
JF
1795 *
1796 * - Locale support.
1797 *
b801d8b2
JF
1798 * COPYRIGHT
1799 * ---------
4a2909a7 1800 * Copyright (c) Jonas Fonseca <fonseca@diku.dk>, 2006
b801d8b2
JF
1801 *
1802 * This program is free software; you can redistribute it and/or modify
1803 * it under the terms of the GNU General Public License as published by
1804 * the Free Software Foundation; either version 2 of the License, or
1805 * (at your option) any later version.
1806 *
1807 * SEE ALSO
1808 * --------
4c6fabc2 1809 * [verse]
b801d8b2
JF
1810 * link:http://www.kernel.org/pub/software/scm/git/docs/[git(7)],
1811 * link:http://www.kernel.org/pub/software/scm/cogito/docs/[cogito(7)]
4c6fabc2
JF
1812 * gitk(1): git repository browser written using tcl/tk,
1813 * gitview(1): git repository browser written using python/gtk.
b801d8b2 1814 **/