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