Add support binding keys to running external commands
[tig] / tig.c
CommitLineData
53924375 1/* Copyright (c) 2006-2007 Jonas Fonseca <fonseca@diku.dk>
192d9a60 2 *
5cfbde75
JF
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License as
5 * published by the Free Software Foundation; either version 2 of
6 * the License, or (at your option) any later version.
192d9a60
JF
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
b801d8b2 13
776bf2ac
JF
14#ifdef HAVE_CONFIG_H
15#include "config.h"
16#endif
17
ec31d0d0
SG
18#ifndef TIG_VERSION
19#define TIG_VERSION "unknown-version"
b76c2afc
JF
20#endif
21
8855ada4
JF
22#ifndef DEBUG
23#define NDEBUG
24#endif
25
22f66b0a 26#include <assert.h>
4c6fabc2 27#include <errno.h>
22f66b0a
JF
28#include <ctype.h>
29#include <signal.h>
b801d8b2 30#include <stdarg.h>
b801d8b2 31#include <stdio.h>
22f66b0a 32#include <stdlib.h>
b801d8b2 33#include <string.h>
810f0078
JF
34#include <sys/types.h>
35#include <sys/stat.h>
6908bdbd 36#include <unistd.h>
b76c2afc 37#include <time.h>
b801d8b2 38
4af34daa
JF
39#include <regex.h>
40
6b68fd24
JF
41#include <locale.h>
42#include <langinfo.h>
43#include <iconv.h>
44
b801d8b2 45#include <curses.h>
b801d8b2 46
e2da526d
JF
47#if __GNUC__ >= 3
48#define __NORETURN __attribute__((__noreturn__))
49#else
50#define __NORETURN
51#endif
52
53static void __NORETURN die(const char *err, ...);
b801d8b2 54static void report(const char *msg, ...);
5699e0cf 55static int read_properties(FILE *pipe, const char *separators, int (*read)(char *, size_t, char *, size_t));
1ba2ae4b 56static void set_nonblocking_input(bool loading);
10e290ee 57static size_t utf8_length(const char *string, size_t max_width, int *coloffset, int *trimmed);
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
17482b11 65#define SIZEOF_STR 1024 /* Default string size. */
2e8488b4 66#define SIZEOF_REF 256 /* Size of symbolic or SHA1 ID. */
10446330 67#define SIZEOF_REV 41 /* Holds a SHA-1 and an ending NUL */
c8d60a25
JF
68
69/* Revision graph */
70
71#define REVGRAPH_INIT 'I'
72#define REVGRAPH_MERGE 'M'
73#define REVGRAPH_BRANCH '+'
74#define REVGRAPH_COMMIT '*'
75#define REVGRAPH_LINE '|'
76
54efb62b 77#define SIZEOF_REVGRAPH 19 /* Size of revision ancestry graphics. */
b801d8b2 78
82e78006
JF
79/* This color name can be used to refer to the default term colors. */
80#define COLOR_DEFAULT (-1)
78c70acd 81
6b68fd24 82#define ICONV_NONE ((iconv_t) -1)
58a5e4ea
JF
83#ifndef ICONV_CONST
84#define ICONV_CONST /* nothing */
85#endif
6b68fd24 86
82e78006 87/* The format and size of the date column in the main view. */
4c6fabc2 88#define DATE_FORMAT "%Y-%m-%d %H:%M"
6b161b31 89#define DATE_COLS STRING_SIZE("2006-04-29 14:21 ")
4c6fabc2 90
10e290ee
JF
91#define AUTHOR_COLS 20
92
a28bcc22 93/* The default interval between line numbers. */
4a2909a7 94#define NUMBER_INTERVAL 1
82e78006 95
6706b2ba
JF
96#define TABSIZE 8
97
a28bcc22
JF
98#define SCALE_SPLIT_VIEW(height) ((height) * 2 / 3)
99
96e58f5b 100#ifndef GIT_CONFIG
da633326 101#define GIT_CONFIG "git config"
96e58f5b
JF
102#endif
103
8eb62770 104#define TIG_LS_REMOTE \
337d7377 105 "git ls-remote $(git rev-parse --git-dir) 2>/dev/null"
8eb62770
JF
106
107#define TIG_DIFF_CMD \
73fb51d5 108 "git show --root --patch-with-stat --find-copies-harder -B -C %s 2>/dev/null"
8eb62770
JF
109
110#define TIG_LOG_CMD \
8fee6614 111 "git log --cc --stat -n100 %s 2>/dev/null"
8eb62770
JF
112
113#define TIG_MAIN_CMD \
8fee6614 114 "git log --topo-order --pretty=raw %s 2>/dev/null"
8eb62770 115
e733ee54
JF
116#define TIG_TREE_CMD \
117 "git ls-tree %s %s"
118
119#define TIG_BLOB_CMD \
120 "git cat-file blob %s"
121
8eb62770
JF
122/* XXX: Needs to be defined to the empty string. */
123#define TIG_HELP_CMD ""
124#define TIG_PAGER_CMD ""
173d76ea 125#define TIG_STATUS_CMD ""
3e634113 126#define TIG_STAGE_CMD ""
8eb62770 127
8855ada4 128/* Some ascii-shorthands fitted into the ncurses namespace. */
a28bcc22
JF
129#define KEY_TAB '\t'
130#define KEY_RETURN '\r'
4a2909a7
JF
131#define KEY_ESC 27
132
6706b2ba 133
c34d9c9f 134struct ref {
468876c9 135 char *name; /* Ref name; tag or head names are shortened. */
10446330 136 char id[SIZEOF_REV]; /* Commit SHA1 ID */
468876c9 137 unsigned int tag:1; /* Is it a tag? */
e15ec88e 138 unsigned int remote:1; /* Is it a remote ref? */
468876c9 139 unsigned int next:1; /* For ref lists: are there more refs? */
c34d9c9f
JF
140};
141
ff26aa29 142static struct ref **get_refs(char *id);
4c6fabc2 143
660e09ad
JF
144struct int_map {
145 const char *name;
146 int namelen;
147 int value;
148};
149
150static int
151set_from_int_map(struct int_map *map, size_t map_size,
152 int *value, const char *name, int namelen)
153{
154
155 int i;
156
157 for (i = 0; i < map_size; i++)
158 if (namelen == map[i].namelen &&
159 !strncasecmp(name, map[i].name, namelen)) {
160 *value = map[i].value;
161 return OK;
162 }
163
164 return ERR;
165}
166
6706b2ba 167
03a93dbb
JF
168/*
169 * String helpers
170 */
78c70acd 171
82e78006 172static inline void
9a48919b 173string_ncopy_do(char *dst, size_t dstlen, const char *src, size_t srclen)
82e78006 174{
9a48919b
JF
175 if (srclen > dstlen - 1)
176 srclen = dstlen - 1;
03a93dbb 177
9a48919b
JF
178 strncpy(dst, src, srclen);
179 dst[srclen] = 0;
82e78006
JF
180}
181
9a48919b
JF
182/* Shorthands for safely copying into a fixed buffer. */
183
82e78006 184#define string_copy(dst, src) \
751e27c9 185 string_ncopy_do(dst, sizeof(dst), src, sizeof(src))
9a48919b
JF
186
187#define string_ncopy(dst, src, srclen) \
188 string_ncopy_do(dst, sizeof(dst), src, srclen)
82e78006 189
2463b4ea
JF
190#define string_copy_rev(dst, src) \
191 string_ncopy_do(dst, SIZEOF_REV, src, SIZEOF_REV - 1)
192
91c5d983
JF
193#define string_add(dst, from, src) \
194 string_ncopy_do(dst + (from), sizeof(dst) - (from), src, sizeof(src))
195
4a63c884
JF
196static char *
197chomp_string(char *name)
198{
199 int namelen;
200
201 while (isspace(*name))
202 name++;
203
204 namelen = strlen(name) - 1;
205 while (namelen > 0 && isspace(name[namelen]))
206 name[namelen--] = 0;
207
208 return name;
209}
210
cc2d1364 211static bool
d65ced0d 212string_nformat(char *buf, size_t bufsize, size_t *bufpos, const char *fmt, ...)
cc2d1364
JF
213{
214 va_list args;
d65ced0d 215 size_t pos = bufpos ? *bufpos : 0;
cc2d1364
JF
216
217 va_start(args, fmt);
218 pos += vsnprintf(buf + pos, bufsize - pos, fmt, args);
219 va_end(args);
220
221 if (bufpos)
222 *bufpos = pos;
223
224 return pos >= bufsize ? FALSE : TRUE;
225}
226
227#define string_format(buf, fmt, args...) \
228 string_nformat(buf, sizeof(buf), NULL, fmt, args)
229
230#define string_format_from(buf, from, fmt, args...) \
231 string_nformat(buf, sizeof(buf), from, fmt, args)
6706b2ba 232
201f5a18
JF
233static int
234string_enum_compare(const char *str1, const char *str2, int len)
235{
236 size_t i;
237
238#define string_enum_sep(x) ((x) == '-' || (x) == '_' || (x) == '.')
239
240 /* Diff-Header == DIFF_HEADER */
241 for (i = 0; i < len; i++) {
242 if (toupper(str1[i]) == toupper(str2[i]))
243 continue;
244
245 if (string_enum_sep(str1[i]) &&
246 string_enum_sep(str2[i]))
247 continue;
248
249 return str1[i] - str2[i];
250 }
251
252 return 0;
253}
254
03a93dbb
JF
255/* Shell quoting
256 *
257 * NOTE: The following is a slightly modified copy of the git project's shell
258 * quoting routines found in the quote.c file.
259 *
260 * Help to copy the thing properly quoted for the shell safety. any single
261 * quote is replaced with '\'', any exclamation point is replaced with '\!',
262 * and the whole thing is enclosed in a
263 *
264 * E.g.
265 * original sq_quote result
266 * name ==> name ==> 'name'
267 * a b ==> a b ==> 'a b'
268 * a'b ==> a'\''b ==> 'a'\''b'
269 * a!b ==> a'\!'b ==> 'a'\!'b'
270 */
271
272static size_t
17482b11 273sq_quote(char buf[SIZEOF_STR], size_t bufsize, const char *src)
03a93dbb
JF
274{
275 char c;
276
17482b11 277#define BUFPUT(x) do { if (bufsize < SIZEOF_STR) buf[bufsize++] = (x); } while (0)
03a93dbb
JF
278
279 BUFPUT('\'');
280 while ((c = *src++)) {
281 if (c == '\'' || c == '!') {
282 BUFPUT('\'');
283 BUFPUT('\\');
284 BUFPUT(c);
285 BUFPUT('\'');
286 } else {
287 BUFPUT(c);
288 }
289 }
290 BUFPUT('\'');
291
f0f114ac
JF
292 if (bufsize < SIZEOF_STR)
293 buf[bufsize] = 0;
294
03a93dbb
JF
295 return bufsize;
296}
297
82e78006 298
24b5b3e0
JF
299/*
300 * User requests
301 */
302
303#define REQ_INFO \
304 /* XXX: Keep the view request first and in sync with views[]. */ \
305 REQ_GROUP("View switching") \
306 REQ_(VIEW_MAIN, "Show main view"), \
307 REQ_(VIEW_DIFF, "Show diff view"), \
308 REQ_(VIEW_LOG, "Show log view"), \
e733ee54
JF
309 REQ_(VIEW_TREE, "Show tree view"), \
310 REQ_(VIEW_BLOB, "Show blob view"), \
24b5b3e0
JF
311 REQ_(VIEW_HELP, "Show help page"), \
312 REQ_(VIEW_PAGER, "Show pager view"), \
173d76ea 313 REQ_(VIEW_STATUS, "Show status view"), \
3e634113 314 REQ_(VIEW_STAGE, "Show stage view"), \
24b5b3e0
JF
315 \
316 REQ_GROUP("View manipulation") \
317 REQ_(ENTER, "Enter current line and scroll"), \
318 REQ_(NEXT, "Move to next"), \
319 REQ_(PREVIOUS, "Move to previous"), \
320 REQ_(VIEW_NEXT, "Move focus to next view"), \
acaef3b3 321 REQ_(REFRESH, "Reload and refresh"), \
24b5b3e0
JF
322 REQ_(VIEW_CLOSE, "Close the current view"), \
323 REQ_(QUIT, "Close all views and quit"), \
324 \
325 REQ_GROUP("Cursor navigation") \
326 REQ_(MOVE_UP, "Move cursor one line up"), \
327 REQ_(MOVE_DOWN, "Move cursor one line down"), \
328 REQ_(MOVE_PAGE_DOWN, "Move cursor one page down"), \
329 REQ_(MOVE_PAGE_UP, "Move cursor one page up"), \
330 REQ_(MOVE_FIRST_LINE, "Move cursor to first line"), \
331 REQ_(MOVE_LAST_LINE, "Move cursor to last line"), \
332 \
333 REQ_GROUP("Scrolling") \
334 REQ_(SCROLL_LINE_UP, "Scroll one line up"), \
335 REQ_(SCROLL_LINE_DOWN, "Scroll one line down"), \
336 REQ_(SCROLL_PAGE_UP, "Scroll one page up"), \
337 REQ_(SCROLL_PAGE_DOWN, "Scroll one page down"), \
338 \
4af34daa
JF
339 REQ_GROUP("Searching") \
340 REQ_(SEARCH, "Search the view"), \
341 REQ_(SEARCH_BACK, "Search backwards in the view"), \
342 REQ_(FIND_NEXT, "Find next search match"), \
343 REQ_(FIND_PREV, "Find previous search match"), \
344 \
24b5b3e0
JF
345 REQ_GROUP("Misc") \
346 REQ_(PROMPT, "Bring up the prompt"), \
24b5b3e0
JF
347 REQ_(SCREEN_REDRAW, "Redraw the screen"), \
348 REQ_(SCREEN_RESIZE, "Resize the screen"), \
349 REQ_(SHOW_VERSION, "Show version information"), \
350 REQ_(STOP_LOADING, "Stop all loading views"), \
54efb62b 351 REQ_(TOGGLE_LINENO, "Toggle line numbers"), \
ca1d71ea 352 REQ_(TOGGLE_REV_GRAPH, "Toggle revision graph visualization"), \
0cea0d43 353 REQ_(STATUS_UPDATE, "Update file status"), \
b5c18d9d 354 REQ_(STATUS_MERGE, "Merge file using external tool"), \
226da94b 355 REQ_(EDIT, "Open in editor"), \
d31a629d
JF
356 REQ_(CHERRY_PICK, "Cherry-pick commit to current branch"), \
357 REQ_(NONE, "Do nothing")
24b5b3e0
JF
358
359
360/* User action requests. */
361enum request {
362#define REQ_GROUP(help)
363#define REQ_(req, help) REQ_##req
364
365 /* Offset all requests to avoid conflicts with ncurses getch values. */
366 REQ_OFFSET = KEY_MAX + 1,
d31a629d 367 REQ_INFO
24b5b3e0
JF
368
369#undef REQ_GROUP
370#undef REQ_
371};
372
373struct request_info {
374 enum request request;
04e2b7b2
JF
375 char *name;
376 int namelen;
24b5b3e0
JF
377 char *help;
378};
379
380static struct request_info req_info[] = {
04e2b7b2
JF
381#define REQ_GROUP(help) { 0, NULL, 0, (help) },
382#define REQ_(req, help) { REQ_##req, (#req), STRING_SIZE(#req), (help) }
24b5b3e0
JF
383 REQ_INFO
384#undef REQ_GROUP
385#undef REQ_
386};
387
04e2b7b2
JF
388static enum request
389get_request(const char *name)
390{
391 int namelen = strlen(name);
392 int i;
393
394 for (i = 0; i < ARRAY_SIZE(req_info); i++)
395 if (req_info[i].namelen == namelen &&
396 !string_enum_compare(req_info[i].name, name, namelen))
397 return req_info[i].request;
398
d31a629d 399 return REQ_NONE;
04e2b7b2
JF
400}
401
402
8eb62770
JF
403/*
404 * Options
405 */
b76c2afc 406
4b8c01a3 407static const char usage[] =
ec31d0d0 408"tig " TIG_VERSION " (" __DATE__ ")\n"
4b8c01a3
JF
409"\n"
410"Usage: tig [options]\n"
411" or: tig [options] [--] [git log options]\n"
412" or: tig [options] log [git log options]\n"
413" or: tig [options] diff [git diff options]\n"
414" or: tig [options] show [git show options]\n"
415" or: tig [options] < [git command output]\n"
416"\n"
417"Options:\n"
418" -l Start up in log view\n"
419" -d Start up in diff view\n"
173d76ea 420" -S Start up in status view\n"
4b8c01a3 421" -n[I], --line-number[=I] Show line numbers with given interval\n"
b3c965c9 422" -b[N], --tab-size[=N] Set number of spaces for tab expansion\n"
4b8c01a3
JF
423" -- Mark end of tig options\n"
424" -v, --version Show version and exit\n"
425" -h, --help Show help message and exit\n";
426
6706b2ba 427/* Option and state variables. */
92d30f5c 428static bool opt_line_number = FALSE;
11ce319e 429static bool opt_rev_graph = FALSE;
92d30f5c
JF
430static int opt_num_interval = NUMBER_INTERVAL;
431static int opt_tab_size = TABSIZE;
432static enum request opt_request = REQ_VIEW_MAIN;
433static char opt_cmd[SIZEOF_STR] = "";
e733ee54 434static char opt_path[SIZEOF_STR] = "";
92d30f5c
JF
435static FILE *opt_pipe = NULL;
436static char opt_encoding[20] = "UTF-8";
437static bool opt_utf8 = TRUE;
438static char opt_codeset[20] = "UTF-8";
439static iconv_t opt_iconv = ICONV_NONE;
440static char opt_search[SIZEOF_STR] = "";
91c5d983 441static char opt_cdup[SIZEOF_STR] = "";
810f0078 442static char opt_git_dir[SIZEOF_STR] = "";
c38c64bb 443static char opt_is_inside_work_tree = -1; /* set to TRUE or FALSE */
0cea0d43 444static char opt_editor[SIZEOF_STR] = "";
b76c2afc 445
6dbf6c19
JF
446enum option_type {
447 OPT_NONE,
448 OPT_INT,
449};
450
451static bool
452check_option(char *opt, char short_name, char *name, enum option_type type, ...)
453{
454 va_list args;
455 char *value = "";
456 int *number;
457
458 if (opt[0] != '-')
459 return FALSE;
460
461 if (opt[1] == '-') {
462 int namelen = strlen(name);
463
464 opt += 2;
465
466 if (strncmp(opt, name, namelen))
467 return FALSE;
468
469 if (opt[namelen] == '=')
470 value = opt + namelen + 1;
471
472 } else {
473 if (!short_name || opt[1] != short_name)
474 return FALSE;
475 value = opt + 2;
476 }
477
478 va_start(args, type);
479 if (type == OPT_INT) {
480 number = va_arg(args, int *);
481 if (isdigit(*value))
482 *number = atoi(value);
483 }
484 va_end(args);
485
486 return TRUE;
487}
488
b76c2afc 489/* Returns the index of log or diff command or -1 to exit. */
8855ada4 490static bool
b76c2afc
JF
491parse_options(int argc, char *argv[])
492{
493 int i;
494
495 for (i = 1; i < argc; i++) {
496 char *opt = argv[i];
497
3621d94e
JF
498 if (!strcmp(opt, "log") ||
499 !strcmp(opt, "diff") ||
500 !strcmp(opt, "show")) {
501 opt_request = opt[0] == 'l'
502 ? REQ_VIEW_LOG : REQ_VIEW_DIFF;
503 break;
504 }
505
8d27b36e
JF
506 if (opt[0] && opt[0] != '-')
507 break;
508
6b161b31 509 if (!strcmp(opt, "-l")) {
4a2909a7 510 opt_request = REQ_VIEW_LOG;
6b161b31
JF
511 continue;
512 }
b76c2afc 513
6b161b31 514 if (!strcmp(opt, "-d")) {
4a2909a7 515 opt_request = REQ_VIEW_DIFF;
6b161b31
JF
516 continue;
517 }
b76c2afc 518
173d76ea
JF
519 if (!strcmp(opt, "-S")) {
520 opt_request = REQ_VIEW_STATUS;
bdcc0d6b 521 continue;
173d76ea
JF
522 }
523
6dbf6c19 524 if (check_option(opt, 'n', "line-number", OPT_INT, &opt_num_interval)) {
6b161b31
JF
525 opt_line_number = TRUE;
526 continue;
527 }
b76c2afc 528
6dbf6c19
JF
529 if (check_option(opt, 'b', "tab-size", OPT_INT, &opt_tab_size)) {
530 opt_tab_size = MIN(opt_tab_size, TABSIZE);
6706b2ba
JF
531 continue;
532 }
533
6dbf6c19 534 if (check_option(opt, 'v', "version", OPT_NONE)) {
ec31d0d0 535 printf("tig version %s\n", TIG_VERSION);
8855ada4 536 return FALSE;
6b161b31 537 }
b76c2afc 538
6dbf6c19 539 if (check_option(opt, 'h', "help", OPT_NONE)) {
4b8c01a3
JF
540 printf(usage);
541 return FALSE;
542 }
543
6908bdbd
JF
544 if (!strcmp(opt, "--")) {
545 i++;
546 break;
547 }
03a93dbb 548
bf174187 549 die("unknown option '%s'\n\n%s", opt, usage);
b76c2afc
JF
550 }
551
6908bdbd 552 if (!isatty(STDIN_FILENO)) {
6908bdbd
JF
553 opt_request = REQ_VIEW_PAGER;
554 opt_pipe = stdin;
555
556 } else if (i < argc) {
557 size_t buf_size;
558
6908bdbd 559 if (opt_request == REQ_VIEW_MAIN)
8855ada4
JF
560 /* XXX: This is vulnerable to the user overriding
561 * options required for the main view parser. */
832a47c4 562 string_copy(opt_cmd, "git log --pretty=raw");
6908bdbd
JF
563 else
564 string_copy(opt_cmd, "git");
565 buf_size = strlen(opt_cmd);
566
567 while (buf_size < sizeof(opt_cmd) && i < argc) {
568 opt_cmd[buf_size++] = ' ';
569 buf_size = sq_quote(opt_cmd, buf_size, argv[i++]);
570 }
571
572 if (buf_size >= sizeof(opt_cmd))
573 die("command too long");
574
575 opt_cmd[buf_size] = 0;
6908bdbd
JF
576 }
577
afdc35b3
JF
578 if (*opt_encoding && strcasecmp(opt_encoding, "UTF-8"))
579 opt_utf8 = FALSE;
580
8855ada4 581 return TRUE;
b76c2afc
JF
582}
583
584
54efb62b
JF
585/*
586 * Line-oriented content detection.
587 */
588
2e8488b4 589#define LINE_INFO \
660e09ad 590LINE(DIFF_HEADER, "diff --git ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
a28bcc22
JF
591LINE(DIFF_CHUNK, "@@", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
592LINE(DIFF_ADD, "+", COLOR_GREEN, COLOR_DEFAULT, 0), \
593LINE(DIFF_DEL, "-", COLOR_RED, COLOR_DEFAULT, 0), \
660e09ad
JF
594LINE(DIFF_INDEX, "index ", COLOR_BLUE, COLOR_DEFAULT, 0), \
595LINE(DIFF_OLDMODE, "old file mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
596LINE(DIFF_NEWMODE, "new file mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
597LINE(DIFF_COPY_FROM, "copy from", COLOR_YELLOW, COLOR_DEFAULT, 0), \
598LINE(DIFF_COPY_TO, "copy to", COLOR_YELLOW, COLOR_DEFAULT, 0), \
599LINE(DIFF_RENAME_FROM, "rename from", COLOR_YELLOW, COLOR_DEFAULT, 0), \
600LINE(DIFF_RENAME_TO, "rename to", COLOR_YELLOW, COLOR_DEFAULT, 0), \
601LINE(DIFF_SIMILARITY, "similarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
602LINE(DIFF_DISSIMILARITY,"dissimilarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
603LINE(DIFF_TREE, "diff-tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
6908bdbd 604LINE(PP_AUTHOR, "Author: ", COLOR_CYAN, COLOR_DEFAULT, 0), \
8855ada4 605LINE(PP_COMMIT, "Commit: ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
6908bdbd
JF
606LINE(PP_MERGE, "Merge: ", COLOR_BLUE, COLOR_DEFAULT, 0), \
607LINE(PP_DATE, "Date: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
8855ada4
JF
608LINE(PP_ADATE, "AuthorDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
609LINE(PP_CDATE, "CommitDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
7b99a34c 610LINE(PP_REFS, "Refs: ", COLOR_RED, COLOR_DEFAULT, 0), \
a28bcc22
JF
611LINE(COMMIT, "commit ", COLOR_GREEN, COLOR_DEFAULT, 0), \
612LINE(PARENT, "parent ", COLOR_BLUE, COLOR_DEFAULT, 0), \
613LINE(TREE, "tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
8855ada4 614LINE(AUTHOR, "author ", COLOR_CYAN, COLOR_DEFAULT, 0), \
a28bcc22 615LINE(COMMITTER, "committer ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
a28bcc22 616LINE(SIGNOFF, " Signed-off-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
d4d8de8f 617LINE(ACKED, " Acked-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
a28bcc22
JF
618LINE(DEFAULT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
619LINE(CURSOR, "", COLOR_WHITE, COLOR_GREEN, A_BOLD), \
620LINE(STATUS, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
6b161b31
JF
621LINE(TITLE_BLUR, "", COLOR_WHITE, COLOR_BLUE, 0), \
622LINE(TITLE_FOCUS, "", COLOR_WHITE, COLOR_BLUE, A_BOLD), \
a28bcc22
JF
623LINE(MAIN_DATE, "", COLOR_BLUE, COLOR_DEFAULT, 0), \
624LINE(MAIN_AUTHOR, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
625LINE(MAIN_COMMIT, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
c34d9c9f
JF
626LINE(MAIN_DELIM, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
627LINE(MAIN_TAG, "", COLOR_MAGENTA, COLOR_DEFAULT, A_BOLD), \
e15ec88e 628LINE(MAIN_REMOTE, "", COLOR_YELLOW, COLOR_DEFAULT, A_BOLD), \
660e09ad 629LINE(MAIN_REF, "", COLOR_CYAN, COLOR_DEFAULT, A_BOLD), \
e733ee54 630LINE(TREE_DIR, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
173d76ea 631LINE(TREE_FILE, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
53924375 632LINE(STAT_SECTION, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
173d76ea 633LINE(STAT_NONE, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
53924375
JF
634LINE(STAT_STAGED, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
635LINE(STAT_UNSTAGED,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
173d76ea 636LINE(STAT_UNTRACKED,"", COLOR_MAGENTA, COLOR_DEFAULT, 0)
660e09ad 637
78c70acd 638enum line_type {
2e8488b4
JF
639#define LINE(type, line, fg, bg, attr) \
640 LINE_##type
641 LINE_INFO
642#undef LINE
78c70acd
JF
643};
644
645struct line_info {
660e09ad
JF
646 const char *name; /* Option name. */
647 int namelen; /* Size of option name. */
4685845e 648 const char *line; /* The start of line to match. */
2e8488b4
JF
649 int linelen; /* Size of string to match. */
650 int fg, bg, attr; /* Color and text attributes for the lines. */
78c70acd
JF
651};
652
2e8488b4 653static struct line_info line_info[] = {
78c70acd 654#define LINE(type, line, fg, bg, attr) \
660e09ad 655 { #type, STRING_SIZE(#type), (line), STRING_SIZE(line), (fg), (bg), (attr) }
2e8488b4
JF
656 LINE_INFO
657#undef LINE
78c70acd
JF
658};
659
2e8488b4
JF
660static enum line_type
661get_line_type(char *line)
78c70acd
JF
662{
663 int linelen = strlen(line);
a28bcc22 664 enum line_type type;
78c70acd 665
a28bcc22 666 for (type = 0; type < ARRAY_SIZE(line_info); type++)
2e8488b4 667 /* Case insensitive search matches Signed-off-by lines better. */
a28bcc22
JF
668 if (linelen >= line_info[type].linelen &&
669 !strncasecmp(line_info[type].line, line, line_info[type].linelen))
670 return type;
78c70acd 671
2e8488b4 672 return LINE_DEFAULT;
78c70acd
JF
673}
674
2e8488b4 675static inline int
78c70acd
JF
676get_line_attr(enum line_type type)
677{
2e8488b4
JF
678 assert(type < ARRAY_SIZE(line_info));
679 return COLOR_PAIR(type) | line_info[type].attr;
78c70acd
JF
680}
681
660e09ad
JF
682static struct line_info *
683get_line_info(char *name, int namelen)
684{
685 enum line_type type;
660e09ad
JF
686
687 for (type = 0; type < ARRAY_SIZE(line_info); type++)
688 if (namelen == line_info[type].namelen &&
201f5a18 689 !string_enum_compare(line_info[type].name, name, namelen))
660e09ad
JF
690 return &line_info[type];
691
692 return NULL;
693}
694
78c70acd
JF
695static void
696init_colors(void)
697{
82e78006
JF
698 int default_bg = COLOR_BLACK;
699 int default_fg = COLOR_WHITE;
a28bcc22 700 enum line_type type;
78c70acd
JF
701
702 start_color();
703
704 if (use_default_colors() != ERR) {
82e78006
JF
705 default_bg = -1;
706 default_fg = -1;
78c70acd
JF
707 }
708
a28bcc22
JF
709 for (type = 0; type < ARRAY_SIZE(line_info); type++) {
710 struct line_info *info = &line_info[type];
82e78006
JF
711 int bg = info->bg == COLOR_DEFAULT ? default_bg : info->bg;
712 int fg = info->fg == COLOR_DEFAULT ? default_fg : info->fg;
78c70acd 713
a28bcc22 714 init_pair(type, fg, bg);
78c70acd
JF
715 }
716}
717
fe7233c3
JF
718struct line {
719 enum line_type type;
3c571d67
JF
720
721 /* State flags */
722 unsigned int selected:1;
723
fe7233c3
JF
724 void *data; /* User data */
725};
726
78c70acd 727
1899507c 728/*
37157fa0
JF
729 * Keys
730 */
731
93a97d86 732struct keybinding {
37157fa0 733 int alias;
93a97d86 734 enum request request;
04e2b7b2 735 struct keybinding *next;
37157fa0
JF
736};
737
93a97d86 738static struct keybinding default_keybindings[] = {
37157fa0
JF
739 /* View switching */
740 { 'm', REQ_VIEW_MAIN },
741 { 'd', REQ_VIEW_DIFF },
742 { 'l', REQ_VIEW_LOG },
e733ee54 743 { 't', REQ_VIEW_TREE },
0001fc34 744 { 'f', REQ_VIEW_BLOB },
37157fa0
JF
745 { 'p', REQ_VIEW_PAGER },
746 { 'h', REQ_VIEW_HELP },
173d76ea 747 { 'S', REQ_VIEW_STATUS },
3e634113 748 { 'c', REQ_VIEW_STAGE },
37157fa0
JF
749
750 /* View manipulation */
751 { 'q', REQ_VIEW_CLOSE },
752 { KEY_TAB, REQ_VIEW_NEXT },
753 { KEY_RETURN, REQ_ENTER },
754 { KEY_UP, REQ_PREVIOUS },
755 { KEY_DOWN, REQ_NEXT },
acaef3b3 756 { 'R', REQ_REFRESH },
37157fa0
JF
757
758 /* Cursor navigation */
759 { 'k', REQ_MOVE_UP },
760 { 'j', REQ_MOVE_DOWN },
761 { KEY_HOME, REQ_MOVE_FIRST_LINE },
762 { KEY_END, REQ_MOVE_LAST_LINE },
763 { KEY_NPAGE, REQ_MOVE_PAGE_DOWN },
764 { ' ', REQ_MOVE_PAGE_DOWN },
765 { KEY_PPAGE, REQ_MOVE_PAGE_UP },
766 { 'b', REQ_MOVE_PAGE_UP },
767 { '-', REQ_MOVE_PAGE_UP },
768
769 /* Scrolling */
770 { KEY_IC, REQ_SCROLL_LINE_UP },
771 { KEY_DC, REQ_SCROLL_LINE_DOWN },
772 { 'w', REQ_SCROLL_PAGE_UP },
773 { 's', REQ_SCROLL_PAGE_DOWN },
774
4af34daa
JF
775 /* Searching */
776 { '/', REQ_SEARCH },
777 { '?', REQ_SEARCH_BACK },
778 { 'n', REQ_FIND_NEXT },
779 { 'N', REQ_FIND_PREV },
780
37157fa0
JF
781 /* Misc */
782 { 'Q', REQ_QUIT },
783 { 'z', REQ_STOP_LOADING },
784 { 'v', REQ_SHOW_VERSION },
785 { 'r', REQ_SCREEN_REDRAW },
904e68d8 786 { '.', REQ_TOGGLE_LINENO },
73fb51d5 787 { 'g', REQ_TOGGLE_REV_GRAPH },
37157fa0 788 { ':', REQ_PROMPT },
ca1d71ea 789 { 'u', REQ_STATUS_UPDATE },
b5c18d9d 790 { 'M', REQ_STATUS_MERGE },
0cea0d43 791 { 'e', REQ_EDIT },
226da94b 792 { 'C', REQ_CHERRY_PICK },
37157fa0 793
1d754561 794 /* Using the ncurses SIGWINCH handler. */
37157fa0
JF
795 { KEY_RESIZE, REQ_SCREEN_RESIZE },
796};
797
04e2b7b2
JF
798#define KEYMAP_INFO \
799 KEYMAP_(GENERIC), \
800 KEYMAP_(MAIN), \
801 KEYMAP_(DIFF), \
802 KEYMAP_(LOG), \
e733ee54
JF
803 KEYMAP_(TREE), \
804 KEYMAP_(BLOB), \
04e2b7b2 805 KEYMAP_(PAGER), \
173d76ea 806 KEYMAP_(HELP), \
3e634113
JF
807 KEYMAP_(STATUS), \
808 KEYMAP_(STAGE)
04e2b7b2
JF
809
810enum keymap {
811#define KEYMAP_(name) KEYMAP_##name
812 KEYMAP_INFO
813#undef KEYMAP_
814};
815
816static struct int_map keymap_table[] = {
817#define KEYMAP_(name) { #name, STRING_SIZE(#name), KEYMAP_##name }
818 KEYMAP_INFO
819#undef KEYMAP_
820};
821
822#define set_keymap(map, name) \
823 set_from_int_map(keymap_table, ARRAY_SIZE(keymap_table), map, name, strlen(name))
824
825static struct keybinding *keybindings[ARRAY_SIZE(keymap_table)];
826
827static void
828add_keybinding(enum keymap keymap, enum request request, int key)
829{
830 struct keybinding *keybinding;
831
832 keybinding = calloc(1, sizeof(*keybinding));
833 if (!keybinding)
834 die("Failed to allocate keybinding");
835
836 keybinding->alias = key;
837 keybinding->request = request;
838 keybinding->next = keybindings[keymap];
839 keybindings[keymap] = keybinding;
840}
841
842/* Looks for a key binding first in the given map, then in the generic map, and
843 * lastly in the default keybindings. */
37157fa0 844static enum request
04e2b7b2 845get_keybinding(enum keymap keymap, int key)
37157fa0 846{
04e2b7b2 847 struct keybinding *kbd;
37157fa0
JF
848 int i;
849
04e2b7b2
JF
850 for (kbd = keybindings[keymap]; kbd; kbd = kbd->next)
851 if (kbd->alias == key)
852 return kbd->request;
853
854 for (kbd = keybindings[KEYMAP_GENERIC]; kbd; kbd = kbd->next)
855 if (kbd->alias == key)
856 return kbd->request;
857
93a97d86
JF
858 for (i = 0; i < ARRAY_SIZE(default_keybindings); i++)
859 if (default_keybindings[i].alias == key)
860 return default_keybindings[i].request;
37157fa0
JF
861
862 return (enum request) key;
863}
864
93a97d86 865
37157fa0
JF
866struct key {
867 char *name;
868 int value;
869};
870
871static struct key key_table[] = {
872 { "Enter", KEY_RETURN },
873 { "Space", ' ' },
874 { "Backspace", KEY_BACKSPACE },
875 { "Tab", KEY_TAB },
876 { "Escape", KEY_ESC },
877 { "Left", KEY_LEFT },
878 { "Right", KEY_RIGHT },
879 { "Up", KEY_UP },
880 { "Down", KEY_DOWN },
881 { "Insert", KEY_IC },
882 { "Delete", KEY_DC },
74f83ee6 883 { "Hash", '#' },
37157fa0
JF
884 { "Home", KEY_HOME },
885 { "End", KEY_END },
886 { "PageUp", KEY_PPAGE },
887 { "PageDown", KEY_NPAGE },
888 { "F1", KEY_F(1) },
889 { "F2", KEY_F(2) },
890 { "F3", KEY_F(3) },
891 { "F4", KEY_F(4) },
892 { "F5", KEY_F(5) },
893 { "F6", KEY_F(6) },
894 { "F7", KEY_F(7) },
895 { "F8", KEY_F(8) },
896 { "F9", KEY_F(9) },
897 { "F10", KEY_F(10) },
898 { "F11", KEY_F(11) },
899 { "F12", KEY_F(12) },
900};
901
04e2b7b2
JF
902static int
903get_key_value(const char *name)
904{
905 int i;
906
907 for (i = 0; i < ARRAY_SIZE(key_table); i++)
908 if (!strcasecmp(key_table[i].name, name))
909 return key_table[i].value;
910
911 if (strlen(name) == 1 && isprint(*name))
912 return (int) *name;
913
914 return ERR;
915}
916
37157fa0 917static char *
9eb14b72
JF
918get_key_name(int key_value)
919{
920 static char key_char[] = "'X'";
921 char *seq = NULL;
922 int key;
923
924 for (key = 0; key < ARRAY_SIZE(key_table); key++)
925 if (key_table[key].value == key_value)
926 seq = key_table[key].name;
927
928 if (seq == NULL &&
929 key_value < 127 &&
930 isprint(key_value)) {
931 key_char[1] = (char) key_value;
932 seq = key_char;
933 }
934
935 return seq ? seq : "'?'";
936}
937
938static char *
37157fa0
JF
939get_key(enum request request)
940{
941 static char buf[BUFSIZ];
942 static char key_char[] = "'X'";
d65ced0d 943 size_t pos = 0;
520094b4 944 char *sep = "";
37157fa0
JF
945 int i;
946
947 buf[pos] = 0;
948
93a97d86
JF
949 for (i = 0; i < ARRAY_SIZE(default_keybindings); i++) {
950 struct keybinding *keybinding = &default_keybindings[i];
37157fa0
JF
951 char *seq = NULL;
952 int key;
953
93a97d86 954 if (keybinding->request != request)
37157fa0
JF
955 continue;
956
957 for (key = 0; key < ARRAY_SIZE(key_table); key++)
93a97d86 958 if (key_table[key].value == keybinding->alias)
37157fa0
JF
959 seq = key_table[key].name;
960
961 if (seq == NULL &&
93a97d86
JF
962 keybinding->alias < 127 &&
963 isprint(keybinding->alias)) {
964 key_char[1] = (char) keybinding->alias;
37157fa0
JF
965 seq = key_char;
966 }
967
968 if (!seq)
969 seq = "'?'";
970
971 if (!string_format_from(buf, &pos, "%s%s", sep, seq))
972 return "Too many keybindings!";
973 sep = ", ";
974 }
975
976 return buf;
977}
978
9eb14b72
JF
979struct run_request {
980 enum keymap keymap;
981 int key;
982 char cmd[SIZEOF_STR];
983};
984
985static struct run_request *run_request;
986static size_t run_requests;
987
988static enum request
989add_run_request(enum keymap keymap, int key, int argc, char **argv)
990{
991 struct run_request *tmp;
992 struct run_request req = { keymap, key };
993 size_t bufpos;
994
995 for (bufpos = 0; argc > 0; argc--, argv++)
996 if (!string_format_from(req.cmd, &bufpos, "%s ", *argv))
997 return REQ_NONE;
998
999 req.cmd[bufpos - 1] = 0;
1000
1001 tmp = realloc(run_request, (run_requests + 1) * sizeof(*run_request));
1002 if (!tmp)
1003 return REQ_NONE;
1004
1005 run_request = tmp;
1006 run_request[run_requests++] = req;
1007
1008 return REQ_NONE + run_requests;
1009}
1010
1011static struct run_request *
1012get_run_request(enum request request)
1013{
1014 if (request <= REQ_NONE)
1015 return NULL;
1016 return &run_request[request - REQ_NONE - 1];
1017}
37157fa0
JF
1018
1019/*
1899507c
JF
1020 * User config file handling.
1021 */
1022
5dc795f2
JF
1023static struct int_map color_map[] = {
1024#define COLOR_MAP(name) { #name, STRING_SIZE(#name), COLOR_##name }
1025 COLOR_MAP(DEFAULT),
1026 COLOR_MAP(BLACK),
1027 COLOR_MAP(BLUE),
1028 COLOR_MAP(CYAN),
1029 COLOR_MAP(GREEN),
1030 COLOR_MAP(MAGENTA),
1031 COLOR_MAP(RED),
1032 COLOR_MAP(WHITE),
1033 COLOR_MAP(YELLOW),
1034};
1035
9256ab05
JF
1036#define set_color(color, name) \
1037 set_from_int_map(color_map, ARRAY_SIZE(color_map), color, name, strlen(name))
660e09ad 1038
5dc795f2
JF
1039static struct int_map attr_map[] = {
1040#define ATTR_MAP(name) { #name, STRING_SIZE(#name), A_##name }
1041 ATTR_MAP(NORMAL),
1042 ATTR_MAP(BLINK),
1043 ATTR_MAP(BOLD),
1044 ATTR_MAP(DIM),
1045 ATTR_MAP(REVERSE),
1046 ATTR_MAP(STANDOUT),
1047 ATTR_MAP(UNDERLINE),
1048};
1049
9256ab05
JF
1050#define set_attribute(attr, name) \
1051 set_from_int_map(attr_map, ARRAY_SIZE(attr_map), attr, name, strlen(name))
660e09ad 1052
3c3801c2
JF
1053static int config_lineno;
1054static bool config_errors;
1055static char *config_msg;
1056
5bfd96c7 1057/* Wants: object fgcolor bgcolor [attr] */
660e09ad 1058static int
5bfd96c7 1059option_color_command(int argc, char *argv[])
660e09ad 1060{
bca8fcaa
JF
1061 struct line_info *info;
1062
9256ab05
JF
1063 if (argc != 3 && argc != 4) {
1064 config_msg = "Wrong number of arguments given to color command";
1065 return ERR;
1066 }
1067
1068 info = get_line_info(argv[0], strlen(argv[0]));
bca8fcaa
JF
1069 if (!info) {
1070 config_msg = "Unknown color name";
1071 return ERR;
1072 }
660e09ad 1073
a3653368
JF
1074 if (set_color(&info->fg, argv[1]) == ERR ||
1075 set_color(&info->bg, argv[2]) == ERR) {
bca8fcaa
JF
1076 config_msg = "Unknown color";
1077 return ERR;
1078 }
660e09ad 1079
9256ab05 1080 if (argc == 4 && set_attribute(&info->attr, argv[3]) == ERR) {
bca8fcaa
JF
1081 config_msg = "Unknown attribute";
1082 return ERR;
660e09ad
JF
1083 }
1084
bca8fcaa
JF
1085 return OK;
1086}
1087
5bfd96c7
JF
1088/* Wants: name = value */
1089static int
1090option_set_command(int argc, char *argv[])
1091{
1092 if (argc != 3) {
1093 config_msg = "Wrong number of arguments given to set command";
1094 return ERR;
1095 }
1096
1097 if (strcmp(argv[1], "=")) {
1098 config_msg = "No value assigned";
1099 return ERR;
1100 }
1101
1102 if (!strcmp(argv[0], "show-rev-graph")) {
1103 opt_rev_graph = (!strcmp(argv[2], "1") ||
1104 !strcmp(argv[2], "true") ||
1105 !strcmp(argv[2], "yes"));
1106 return OK;
1107 }
1108
1109 if (!strcmp(argv[0], "line-number-interval")) {
1110 opt_num_interval = atoi(argv[2]);
1111 return OK;
1112 }
1113
1114 if (!strcmp(argv[0], "tab-size")) {
1115 opt_tab_size = atoi(argv[2]);
1116 return OK;
1117 }
1118
cb7267ee 1119 if (!strcmp(argv[0], "commit-encoding")) {
3cc9a4d4
JF
1120 char *arg = argv[2];
1121 int delimiter = *arg;
1122 int i;
1123
1124 switch (delimiter) {
1125 case '"':
1126 case '\'':
1127 for (arg++, i = 0; arg[i]; i++)
1128 if (arg[i] == delimiter) {
1129 arg[i] = 0;
1130 break;
1131 }
1132 default:
739e81de 1133 string_ncopy(opt_encoding, arg, strlen(arg));
3cc9a4d4
JF
1134 return OK;
1135 }
5bfd96c7
JF
1136 }
1137
a3653368 1138 config_msg = "Unknown variable name";
5bfd96c7
JF
1139 return ERR;
1140}
1141
04e2b7b2
JF
1142/* Wants: mode request key */
1143static int
1144option_bind_command(int argc, char *argv[])
1145{
1146 enum request request;
1147 int keymap;
1148 int key;
1149
9eb14b72 1150 if (argc < 3) {
04e2b7b2
JF
1151 config_msg = "Wrong number of arguments given to bind command";
1152 return ERR;
1153 }
1154
1155 if (set_keymap(&keymap, argv[0]) == ERR) {
1156 config_msg = "Unknown key map";
1157 return ERR;
1158 }
1159
1160 key = get_key_value(argv[1]);
1161 if (key == ERR) {
1162 config_msg = "Unknown key";
1163 return ERR;
1164 }
1165
1166 request = get_request(argv[2]);
9eb14b72
JF
1167 if (request == REQ_NONE && *argv[2]++ == '!')
1168 request = add_run_request(keymap, key, argc - 2, argv + 2);
d31a629d 1169 if (request == REQ_NONE) {
04e2b7b2
JF
1170 config_msg = "Unknown request name";
1171 return ERR;
1172 }
1173
1174 add_keybinding(keymap, request, key);
1175
1176 return OK;
1177}
1178
bca8fcaa 1179static int
9256ab05 1180set_option(char *opt, char *value)
bca8fcaa 1181{
9256ab05
JF
1182 char *argv[16];
1183 int valuelen;
1184 int argc = 0;
1185
1186 /* Tokenize */
1187 while (argc < ARRAY_SIZE(argv) && (valuelen = strcspn(value, " \t"))) {
1188 argv[argc++] = value;
1189
1190 value += valuelen;
1191 if (!*value)
1192 break;
1193
1194 *value++ = 0;
1195 while (isspace(*value))
1196 value++;
1197 }
1198
1199 if (!strcmp(opt, "color"))
5bfd96c7
JF
1200 return option_color_command(argc, argv);
1201
1202 if (!strcmp(opt, "set"))
1203 return option_set_command(argc, argv);
bca8fcaa 1204
04e2b7b2
JF
1205 if (!strcmp(opt, "bind"))
1206 return option_bind_command(argc, argv);
1207
a3653368 1208 config_msg = "Unknown option command";
660e09ad
JF
1209 return ERR;
1210}
1211
1212static int
5699e0cf 1213read_option(char *opt, size_t optlen, char *value, size_t valuelen)
3c3801c2 1214{
a3653368
JF
1215 int status = OK;
1216
3c3801c2
JF
1217 config_lineno++;
1218 config_msg = "Internal error";
1219
a3653368
JF
1220 /* Check for comment markers, since read_properties() will
1221 * only ensure opt and value are split at first " \t". */
74f83ee6 1222 optlen = strcspn(opt, "#");
a3653368 1223 if (optlen == 0)
3c3801c2
JF
1224 return OK;
1225
a3653368
JF
1226 if (opt[optlen] != 0) {
1227 config_msg = "No option value";
1228 status = ERR;
1229
1230 } else {
1231 /* Look for comment endings in the value. */
5699e0cf 1232 size_t len = strcspn(value, "#");
a3653368
JF
1233
1234 if (len < valuelen) {
1235 valuelen = len;
1236 value[valuelen] = 0;
1237 }
1238
1239 status = set_option(opt, value);
3c3801c2
JF
1240 }
1241
a3653368
JF
1242 if (status == ERR) {
1243 fprintf(stderr, "Error on line %d, near '%.*s': %s\n",
07c3971e 1244 config_lineno, (int) optlen, opt, config_msg);
3c3801c2
JF
1245 config_errors = TRUE;
1246 }
1247
1248 /* Always keep going if errors are encountered. */
1249 return OK;
1250}
1251
1252static int
660e09ad
JF
1253load_options(void)
1254{
1255 char *home = getenv("HOME");
17482b11 1256 char buf[SIZEOF_STR];
660e09ad
JF
1257 FILE *file;
1258
3c3801c2
JF
1259 config_lineno = 0;
1260 config_errors = FALSE;
1261
cc2d1364 1262 if (!home || !string_format(buf, "%s/.tigrc", home))
660e09ad
JF
1263 return ERR;
1264
1265 /* It's ok that the file doesn't exist. */
1266 file = fopen(buf, "r");
1267 if (!file)
1268 return OK;
1269
3c3801c2
JF
1270 if (read_properties(file, " \t", read_option) == ERR ||
1271 config_errors == TRUE)
1272 fprintf(stderr, "Errors while loading %s.\n", buf);
1273
1274 return OK;
660e09ad
JF
1275}
1276
1277
d839253b 1278/*
468876c9 1279 * The viewer
d839253b 1280 */
c2124ccd
JF
1281
1282struct view;
fe7233c3 1283struct view_ops;
c2124ccd
JF
1284
1285/* The display array of active views and the index of the current view. */
1286static struct view *display[2];
1287static unsigned int current_view;
1288
ab4af23e
JF
1289/* Reading from the prompt? */
1290static bool input_mode = FALSE;
1291
33c4f9ea 1292#define foreach_displayed_view(view, i) \
c2124ccd
JF
1293 for (i = 0; i < ARRAY_SIZE(display) && (view = display[i]); i++)
1294
9f41488f 1295#define displayed_views() (display[1] != NULL ? 2 : 1)
c2124ccd 1296
d839253b 1297/* Current head and commit ID */
e733ee54 1298static char ref_blob[SIZEOF_REF] = "";
c2124ccd
JF
1299static char ref_commit[SIZEOF_REF] = "HEAD";
1300static char ref_head[SIZEOF_REF] = "HEAD";
1301
b801d8b2 1302struct view {
03a93dbb 1303 const char *name; /* View name */
4685845e
TH
1304 const char *cmd_fmt; /* Default command line format */
1305 const char *cmd_env; /* Command line set via environment */
e733ee54 1306 const char *id; /* Points to either of ref_{head,commit,blob} */
6b161b31 1307
fe7233c3 1308 struct view_ops *ops; /* View operations */
22f66b0a 1309
04e2b7b2
JF
1310 enum keymap keymap; /* What keymap does this view have */
1311
17482b11 1312 char cmd[SIZEOF_STR]; /* Command buffer */
49f2b43f
JF
1313 char ref[SIZEOF_REF]; /* Hovered commit reference */
1314 char vid[SIZEOF_REF]; /* View ID. Set to id member when updating. */
2e8488b4 1315
8855ada4
JF
1316 int height, width; /* The width and height of the main window */
1317 WINDOW *win; /* The main window */
1318 WINDOW *title; /* The title window living below the main window */
b801d8b2
JF
1319
1320 /* Navigation */
1321 unsigned long offset; /* Offset of the window top */
1322 unsigned long lineno; /* Current line number */
1323
4af34daa
JF
1324 /* Searching */
1325 char grep[SIZEOF_STR]; /* Search string */
b77b2cb8 1326 regex_t *regex; /* Pre-compiled regex */
4af34daa 1327
f6da0b66
JF
1328 /* If non-NULL, points to the view that opened this view. If this view
1329 * is closed tig will switch back to the parent view. */
1330 struct view *parent;
1331
b801d8b2
JF
1332 /* Buffering */
1333 unsigned long lines; /* Total number of lines */
fe7233c3 1334 struct line *line; /* Line index */
e2c01617 1335 unsigned long line_size;/* Total number of allocated lines */
8855ada4 1336 unsigned int digits; /* Number of digits in the lines member. */
b801d8b2
JF
1337
1338 /* Loading */
1339 FILE *pipe;
2e8488b4 1340 time_t start_time;
b801d8b2
JF
1341};
1342
fe7233c3
JF
1343struct view_ops {
1344 /* What type of content being displayed. Used in the title bar. */
1345 const char *type;
f098944b
JF
1346 /* Open and reads in all view content. */
1347 bool (*open)(struct view *view);
fe7233c3 1348 /* Read one line; updates view->line. */
701e4f5d 1349 bool (*read)(struct view *view, char *data);
f098944b
JF
1350 /* Draw one line; @lineno must be < view->height. */
1351 bool (*draw)(struct view *view, struct line *line, unsigned int lineno, bool selected);
586c423d
JF
1352 /* Depending on view handle a special requests. */
1353 enum request (*request)(struct view *view, enum request request, struct line *line);
4af34daa
JF
1354 /* Search for regex in a line. */
1355 bool (*grep)(struct view *view, struct line *line);
d720de4b
JF
1356 /* Select line */
1357 void (*select)(struct view *view, struct line *line);
fe7233c3
JF
1358};
1359
6b161b31
JF
1360static struct view_ops pager_ops;
1361static struct view_ops main_ops;
e733ee54
JF
1362static struct view_ops tree_ops;
1363static struct view_ops blob_ops;
f098944b 1364static struct view_ops help_ops;
173d76ea 1365static struct view_ops status_ops;
3e634113 1366static struct view_ops stage_ops;
a28bcc22 1367
04e2b7b2
JF
1368#define VIEW_STR(name, cmd, env, ref, ops, map) \
1369 { name, cmd, #env, ref, ops, map}
1ba2ae4b 1370
95d7ddcd 1371#define VIEW_(id, name, ops, ref) \
04e2b7b2 1372 VIEW_STR(name, TIG_##id##_CMD, TIG_##id##_CMD, ref, ops, KEYMAP_##id)
1ba2ae4b 1373
c2124ccd 1374
b801d8b2 1375static struct view views[] = {
173d76ea
JF
1376 VIEW_(MAIN, "main", &main_ops, ref_head),
1377 VIEW_(DIFF, "diff", &pager_ops, ref_commit),
1378 VIEW_(LOG, "log", &pager_ops, ref_head),
1379 VIEW_(TREE, "tree", &tree_ops, ref_commit),
1380 VIEW_(BLOB, "blob", &blob_ops, ref_blob),
b64c5b75
JF
1381 VIEW_(HELP, "help", &help_ops, ""),
1382 VIEW_(PAGER, "pager", &pager_ops, "stdin"),
173d76ea 1383 VIEW_(STATUS, "status", &status_ops, ""),
3e634113 1384 VIEW_(STAGE, "stage", &stage_ops, ""),
b801d8b2
JF
1385};
1386
a28bcc22
JF
1387#define VIEW(req) (&views[(req) - REQ_OFFSET - 1])
1388
699ae55b
JF
1389#define foreach_view(view, i) \
1390 for (i = 0; i < ARRAY_SIZE(views) && (view = &views[i]); i++)
1391
1392#define view_is_displayed(view) \
1393 (view == display[0] || view == display[1])
4c6fabc2 1394
fe7233c3
JF
1395static bool
1396draw_view_line(struct view *view, unsigned int lineno)
1397{
d720de4b 1398 struct line *line;
5dcf8064 1399 bool selected = (view->offset + lineno == view->lineno);
4887d44e 1400 bool draw_ok;
d720de4b 1401
699ae55b
JF
1402 assert(view_is_displayed(view));
1403
fe7233c3
JF
1404 if (view->offset + lineno >= view->lines)
1405 return FALSE;
1406
d720de4b
JF
1407 line = &view->line[view->offset + lineno];
1408
3c571d67
JF
1409 if (selected) {
1410 line->selected = TRUE;
d720de4b 1411 view->ops->select(view, line);
3c571d67
JF
1412 } else if (line->selected) {
1413 line->selected = FALSE;
1414 wmove(view->win, lineno, 0);
1415 wclrtoeol(view->win);
1416 }
d720de4b 1417
4887d44e
JF
1418 scrollok(view->win, FALSE);
1419 draw_ok = view->ops->draw(view, line, lineno, selected);
1420 scrollok(view->win, TRUE);
1421
1422 return draw_ok;
fe7233c3
JF
1423}
1424
b801d8b2 1425static void
82e78006 1426redraw_view_from(struct view *view, int lineno)
b801d8b2 1427{
82e78006 1428 assert(0 <= lineno && lineno < view->height);
b801d8b2 1429
82e78006 1430 for (; lineno < view->height; lineno++) {
fe7233c3 1431 if (!draw_view_line(view, lineno))
fd85fef1 1432 break;
b801d8b2
JF
1433 }
1434
1435 redrawwin(view->win);
ab4af23e
JF
1436 if (input_mode)
1437 wnoutrefresh(view->win);
1438 else
1439 wrefresh(view->win);
b801d8b2
JF
1440}
1441
b76c2afc 1442static void
82e78006
JF
1443redraw_view(struct view *view)
1444{
1445 wclear(view->win);
1446 redraw_view_from(view, 0);
1447}
1448
c2124ccd 1449
6b161b31 1450static void
81030ec8
JF
1451update_view_title(struct view *view)
1452{
3c112a88 1453 char buf[SIZEOF_STR];
71d1c7db
JF
1454 char state[SIZEOF_STR];
1455 size_t bufpos = 0, statelen = 0;
81030ec8 1456
3c112a88 1457 assert(view_is_displayed(view));
81030ec8 1458
249016a6 1459 if (view != VIEW(REQ_VIEW_STATUS) && (view->lines || view->pipe)) {
6d9c07af 1460 unsigned int view_lines = view->offset + view->height;
c19f8017 1461 unsigned int lines = view->lines
6d9c07af 1462 ? MIN(view_lines, view->lines) * 100 / view->lines
c19f8017
JF
1463 : 0;
1464
71d1c7db 1465 string_format_from(state, &statelen, "- %s %d of %d (%d%%)",
3c112a88
JF
1466 view->ops->type,
1467 view->lineno + 1,
1468 view->lines,
1469 lines);
81030ec8 1470
5becf244
JF
1471 if (view->pipe) {
1472 time_t secs = time(NULL) - view->start_time;
f97f4012 1473
5becf244
JF
1474 /* Three git seconds are a long time ... */
1475 if (secs > 2)
71d1c7db 1476 string_format_from(state, &statelen, " %lds", secs);
5becf244 1477 }
81030ec8
JF
1478 }
1479
71d1c7db
JF
1480 string_format_from(buf, &bufpos, "[%s]", view->name);
1481 if (*view->ref && bufpos < view->width) {
1482 size_t refsize = strlen(view->ref);
1483 size_t minsize = bufpos + 1 + /* abbrev= */ 7 + 1 + statelen;
1484
1485 if (minsize < view->width)
1486 refsize = view->width - minsize + 7;
d1858deb 1487 string_format_from(buf, &bufpos, " %.*s", (int) refsize, view->ref);
71d1c7db 1488 }
f97f4012 1489
71d1c7db
JF
1490 if (statelen && bufpos < view->width) {
1491 string_format_from(buf, &bufpos, " %s", state);
f97f4012
JF
1492 }
1493
3c112a88
JF
1494 if (view == display[current_view])
1495 wbkgdset(view->title, get_line_attr(LINE_TITLE_FOCUS));
1496 else
1497 wbkgdset(view->title, get_line_attr(LINE_TITLE_BLUR));
1498
3c112a88 1499 mvwaddnstr(view->title, 0, 0, buf, bufpos);
390a8262 1500 wclrtoeol(view->title);
976447f8 1501 wmove(view->title, 0, view->width - 1);
ab4af23e
JF
1502
1503 if (input_mode)
1504 wnoutrefresh(view->title);
1505 else
1506 wrefresh(view->title);
81030ec8
JF
1507}
1508
1509static void
6b161b31 1510resize_display(void)
b76c2afc 1511{
03a93dbb 1512 int offset, i;
6b161b31
JF
1513 struct view *base = display[0];
1514 struct view *view = display[1] ? display[1] : display[0];
b76c2afc 1515
6b161b31 1516 /* Setup window dimensions */
b76c2afc 1517
03a93dbb 1518 getmaxyx(stdscr, base->height, base->width);
b76c2afc 1519
6b161b31 1520 /* Make room for the status window. */
03a93dbb 1521 base->height -= 1;
6b161b31
JF
1522
1523 if (view != base) {
03a93dbb
JF
1524 /* Horizontal split. */
1525 view->width = base->width;
6b161b31
JF
1526 view->height = SCALE_SPLIT_VIEW(base->height);
1527 base->height -= view->height;
1528
1529 /* Make room for the title bar. */
1530 view->height -= 1;
1531 }
1532
1533 /* Make room for the title bar. */
1534 base->height -= 1;
1535
1536 offset = 0;
1537
33c4f9ea 1538 foreach_displayed_view (view, i) {
b76c2afc 1539 if (!view->win) {
c19f8017 1540 view->win = newwin(view->height, 0, offset, 0);
6b161b31
JF
1541 if (!view->win)
1542 die("Failed to create %s view", view->name);
1543
1544 scrollok(view->win, TRUE);
1545
1546 view->title = newwin(1, 0, offset + view->height, 0);
1547 if (!view->title)
1548 die("Failed to create title window");
1549
1550 } else {
c19f8017 1551 wresize(view->win, view->height, view->width);
6b161b31
JF
1552 mvwin(view->win, offset, 0);
1553 mvwin(view->title, offset + view->height, 0);
a28bcc22 1554 }
a28bcc22 1555
6b161b31 1556 offset += view->height + 1;
b76c2afc 1557 }
6b161b31 1558}
b76c2afc 1559
6b161b31 1560static void
20bb5e18
JF
1561redraw_display(void)
1562{
1563 struct view *view;
1564 int i;
1565
33c4f9ea 1566 foreach_displayed_view (view, i) {
20bb5e18
JF
1567 redraw_view(view);
1568 update_view_title(view);
1569 }
1570}
1571
85af6284 1572static void
2bee3bde 1573update_display_cursor(struct view *view)
85af6284 1574{
85af6284
JF
1575 /* Move the cursor to the right-most column of the cursor line.
1576 *
1577 * XXX: This could turn out to be a bit expensive, but it ensures that
1578 * the cursor does not jump around. */
1579 if (view->lines) {
1580 wmove(view->win, view->lineno - view->offset, view->width - 1);
1581 wrefresh(view->win);
1582 }
1583}
20bb5e18 1584
2e8488b4
JF
1585/*
1586 * Navigation
1587 */
1588
4a2909a7 1589/* Scrolling backend */
b801d8b2 1590static void
8c317212 1591do_scroll_view(struct view *view, int lines)
b801d8b2 1592{
a0087dd5
JF
1593 bool redraw_current_line = FALSE;
1594
fd85fef1
JF
1595 /* The rendering expects the new offset. */
1596 view->offset += lines;
1597
1598 assert(0 <= view->offset && view->offset < view->lines);
1599 assert(lines);
b801d8b2 1600
a0087dd5
JF
1601 /* Move current line into the view. */
1602 if (view->lineno < view->offset) {
1603 view->lineno = view->offset;
1604 redraw_current_line = TRUE;
1605 } else if (view->lineno >= view->offset + view->height) {
1606 view->lineno = view->offset + view->height - 1;
1607 redraw_current_line = TRUE;
1608 }
1609
1610 assert(view->offset <= view->lineno && view->lineno < view->lines);
1611
82e78006 1612 /* Redraw the whole screen if scrolling is pointless. */
4c6fabc2 1613 if (view->height < ABS(lines)) {
b76c2afc
JF
1614 redraw_view(view);
1615
1616 } else {
22f66b0a 1617 int line = lines > 0 ? view->height - lines : 0;
82e78006 1618 int end = line + ABS(lines);
fd85fef1
JF
1619
1620 wscrl(view->win, lines);
1621
22f66b0a 1622 for (; line < end; line++) {
fe7233c3 1623 if (!draw_view_line(view, line))
fd85fef1
JF
1624 break;
1625 }
fd85fef1 1626
a0087dd5
JF
1627 if (redraw_current_line)
1628 draw_view_line(view, view->lineno - view->offset);
fd85fef1
JF
1629 }
1630
fd85fef1
JF
1631 redrawwin(view->win);
1632 wrefresh(view->win);
9d3f5834 1633 report("");
fd85fef1 1634}
78c70acd 1635
4a2909a7 1636/* Scroll frontend */
fd85fef1 1637static void
6b161b31 1638scroll_view(struct view *view, enum request request)
fd85fef1
JF
1639{
1640 int lines = 1;
b801d8b2 1641
8c317212
JF
1642 assert(view_is_displayed(view));
1643
b801d8b2 1644 switch (request) {
4a2909a7 1645 case REQ_SCROLL_PAGE_DOWN:
fd85fef1 1646 lines = view->height;
4a2909a7 1647 case REQ_SCROLL_LINE_DOWN:
b801d8b2 1648 if (view->offset + lines > view->lines)
bde3653a 1649 lines = view->lines - view->offset;
b801d8b2 1650
fd85fef1 1651 if (lines == 0 || view->offset + view->height >= view->lines) {
eb98559e 1652 report("Cannot scroll beyond the last line");
b801d8b2
JF
1653 return;
1654 }
1655 break;
1656
4a2909a7 1657 case REQ_SCROLL_PAGE_UP:
fd85fef1 1658 lines = view->height;
4a2909a7 1659 case REQ_SCROLL_LINE_UP:
b801d8b2
JF
1660 if (lines > view->offset)
1661 lines = view->offset;
1662
1663 if (lines == 0) {
eb98559e 1664 report("Cannot scroll beyond the first line");
b801d8b2
JF
1665 return;
1666 }
1667
fd85fef1 1668 lines = -lines;
b801d8b2 1669 break;
03a93dbb 1670
6b161b31
JF
1671 default:
1672 die("request %d not handled in switch", request);
b801d8b2
JF
1673 }
1674
8c317212 1675 do_scroll_view(view, lines);
fd85fef1 1676}
b801d8b2 1677
4a2909a7 1678/* Cursor moving */
fd85fef1 1679static void
8522ecc7 1680move_view(struct view *view, enum request request)
fd85fef1 1681{
dfaa6c81 1682 int scroll_steps = 0;
fd85fef1 1683 int steps;
b801d8b2 1684
fd85fef1 1685 switch (request) {
4a2909a7 1686 case REQ_MOVE_FIRST_LINE:
78c70acd
JF
1687 steps = -view->lineno;
1688 break;
1689
4a2909a7 1690 case REQ_MOVE_LAST_LINE:
78c70acd
JF
1691 steps = view->lines - view->lineno - 1;
1692 break;
1693
4a2909a7 1694 case REQ_MOVE_PAGE_UP:
78c70acd
JF
1695 steps = view->height > view->lineno
1696 ? -view->lineno : -view->height;
1697 break;
1698
4a2909a7 1699 case REQ_MOVE_PAGE_DOWN:
78c70acd
JF
1700 steps = view->lineno + view->height >= view->lines
1701 ? view->lines - view->lineno - 1 : view->height;
1702 break;
1703
4a2909a7 1704 case REQ_MOVE_UP:
fd85fef1
JF
1705 steps = -1;
1706 break;
b801d8b2 1707
4a2909a7 1708 case REQ_MOVE_DOWN:
fd85fef1
JF
1709 steps = 1;
1710 break;
6b161b31
JF
1711
1712 default:
1713 die("request %d not handled in switch", request);
78c70acd 1714 }
b801d8b2 1715
4c6fabc2 1716 if (steps <= 0 && view->lineno == 0) {
eb98559e 1717 report("Cannot move beyond the first line");
78c70acd 1718 return;
b801d8b2 1719
6908bdbd 1720 } else if (steps >= 0 && view->lineno + 1 >= view->lines) {
eb98559e 1721 report("Cannot move beyond the last line");
78c70acd 1722 return;
fd85fef1
JF
1723 }
1724
4c6fabc2 1725 /* Move the current line */
fd85fef1 1726 view->lineno += steps;
4c6fabc2
JF
1727 assert(0 <= view->lineno && view->lineno < view->lines);
1728
4c6fabc2 1729 /* Check whether the view needs to be scrolled */
fd85fef1
JF
1730 if (view->lineno < view->offset ||
1731 view->lineno >= view->offset + view->height) {
dfaa6c81 1732 scroll_steps = steps;
fd85fef1 1733 if (steps < 0 && -steps > view->offset) {
dfaa6c81 1734 scroll_steps = -view->offset;
b76c2afc
JF
1735
1736 } else if (steps > 0) {
1737 if (view->lineno == view->lines - 1 &&
1738 view->lines > view->height) {
dfaa6c81
JF
1739 scroll_steps = view->lines - view->offset - 1;
1740 if (scroll_steps >= view->height)
1741 scroll_steps -= view->height - 1;
b76c2afc 1742 }
b801d8b2 1743 }
8522ecc7
JF
1744 }
1745
1746 if (!view_is_displayed(view)) {
a3965365
JF
1747 view->offset += scroll_steps;
1748 assert(0 <= view->offset && view->offset < view->lines);
8522ecc7
JF
1749 view->ops->select(view, &view->line[view->lineno]);
1750 return;
1751 }
1752
1753 /* Repaint the old "current" line if we be scrolling */
1754 if (ABS(steps) < view->height)
1755 draw_view_line(view, view->lineno - steps - view->offset);
1756
dfaa6c81
JF
1757 if (scroll_steps) {
1758 do_scroll_view(view, scroll_steps);
fd85fef1 1759 return;
b801d8b2
JF
1760 }
1761
4c6fabc2 1762 /* Draw the current line */
fe7233c3 1763 draw_view_line(view, view->lineno - view->offset);
fd85fef1 1764
b801d8b2
JF
1765 redrawwin(view->win);
1766 wrefresh(view->win);
9d3f5834 1767 report("");
b801d8b2
JF
1768}
1769
b801d8b2 1770
2e8488b4 1771/*
4af34daa
JF
1772 * Searching
1773 */
1774
c02d8fce 1775static void search_view(struct view *view, enum request request);
4af34daa
JF
1776
1777static bool
1778find_next_line(struct view *view, unsigned long lineno, struct line *line)
1779{
699ae55b
JF
1780 assert(view_is_displayed(view));
1781
4af34daa
JF
1782 if (!view->ops->grep(view, line))
1783 return FALSE;
1784
1785 if (lineno - view->offset >= view->height) {
1786 view->offset = lineno;
1787 view->lineno = lineno;
1788 redraw_view(view);
1789
1790 } else {
1791 unsigned long old_lineno = view->lineno - view->offset;
1792
1793 view->lineno = lineno;
4af34daa
JF
1794 draw_view_line(view, old_lineno);
1795
1796 draw_view_line(view, view->lineno - view->offset);
1797 redrawwin(view->win);
1798 wrefresh(view->win);
1799 }
1800
1801 report("Line %ld matches '%s'", lineno + 1, view->grep);
1802 return TRUE;
1803}
1804
1805static void
1806find_next(struct view *view, enum request request)
1807{
1808 unsigned long lineno = view->lineno;
1809 int direction;
1810
1811 if (!*view->grep) {
1812 if (!*opt_search)
1813 report("No previous search");
1814 else
c02d8fce 1815 search_view(view, request);
4af34daa
JF
1816 return;
1817 }
1818
1819 switch (request) {
1820 case REQ_SEARCH:
1821 case REQ_FIND_NEXT:
1822 direction = 1;
1823 break;
1824
1825 case REQ_SEARCH_BACK:
1826 case REQ_FIND_PREV:
1827 direction = -1;
1828 break;
1829
1830 default:
1831 return;
1832 }
1833
1834 if (request == REQ_FIND_NEXT || request == REQ_FIND_PREV)
1835 lineno += direction;
1836
1837 /* Note, lineno is unsigned long so will wrap around in which case it
1838 * will become bigger than view->lines. */
1839 for (; lineno < view->lines; lineno += direction) {
1840 struct line *line = &view->line[lineno];
1841
1842 if (find_next_line(view, lineno, line))
1843 return;
1844 }
1845
1846 report("No match found for '%s'", view->grep);
1847}
1848
1849static void
c02d8fce 1850search_view(struct view *view, enum request request)
4af34daa
JF
1851{
1852 int regex_err;
1853
b77b2cb8
JF
1854 if (view->regex) {
1855 regfree(view->regex);
4af34daa 1856 *view->grep = 0;
b77b2cb8
JF
1857 } else {
1858 view->regex = calloc(1, sizeof(*view->regex));
1859 if (!view->regex)
1860 return;
4af34daa
JF
1861 }
1862
c02d8fce 1863 regex_err = regcomp(view->regex, opt_search, REG_EXTENDED);
4af34daa
JF
1864 if (regex_err != 0) {
1865 char buf[SIZEOF_STR] = "unknown error";
1866
b77b2cb8 1867 regerror(regex_err, view->regex, buf, sizeof(buf));
e9cacd58 1868 report("Search failed: %s", buf);
4af34daa
JF
1869 return;
1870 }
1871
c02d8fce 1872 string_copy(view->grep, opt_search);
4af34daa
JF
1873
1874 find_next(view, request);
1875}
1876
1877/*
2e8488b4
JF
1878 * Incremental updating
1879 */
b801d8b2 1880
199d1288
JF
1881static void
1882end_update(struct view *view)
1883{
1884 if (!view->pipe)
1885 return;
1886 set_nonblocking_input(FALSE);
1887 if (view->pipe == stdin)
1888 fclose(view->pipe);
1889 else
1890 pclose(view->pipe);
1891 view->pipe = NULL;
1892}
1893
03a93dbb 1894static bool
b801d8b2
JF
1895begin_update(struct view *view)
1896{
199d1288
JF
1897 if (view->pipe)
1898 end_update(view);
1899
03a93dbb
JF
1900 if (opt_cmd[0]) {
1901 string_copy(view->cmd, opt_cmd);
1902 opt_cmd[0] = 0;
035ba11f
JF
1903 /* When running random commands, initially show the
1904 * command in the title. However, it maybe later be
1905 * overwritten if a commit line is selected. */
809a9f48
JF
1906 if (view == VIEW(REQ_VIEW_PAGER))
1907 string_copy(view->ref, view->cmd);
1908 else
1909 view->ref[0] = 0;
e733ee54
JF
1910
1911 } else if (view == VIEW(REQ_VIEW_TREE)) {
1912 const char *format = view->cmd_env ? view->cmd_env : view->cmd_fmt;
f0f114ac 1913 char path[SIZEOF_STR];
e733ee54
JF
1914
1915 if (strcmp(view->vid, view->id))
f0f114ac
JF
1916 opt_path[0] = path[0] = 0;
1917 else if (sq_quote(path, 0, opt_path) >= sizeof(path))
1918 return FALSE;
e733ee54 1919
739e81de 1920 if (!string_format(view->cmd, format, view->id, path))
e733ee54
JF
1921 return FALSE;
1922
03a93dbb 1923 } else {
4685845e 1924 const char *format = view->cmd_env ? view->cmd_env : view->cmd_fmt;
739e81de 1925 const char *id = view->id;
1ba2ae4b 1926
cc2d1364 1927 if (!string_format(view->cmd, format, id, id, id, id, id))
03a93dbb 1928 return FALSE;
035ba11f
JF
1929
1930 /* Put the current ref_* value to the view title ref
1931 * member. This is needed by the blob view. Most other
1932 * views sets it automatically after loading because the
1933 * first line is a commit line. */
739e81de 1934 string_copy_rev(view->ref, view->id);
03a93dbb 1935 }
b801d8b2 1936
6908bdbd
JF
1937 /* Special case for the pager view. */
1938 if (opt_pipe) {
1939 view->pipe = opt_pipe;
1940 opt_pipe = NULL;
1941 } else {
1942 view->pipe = popen(view->cmd, "r");
1943 }
1944
2e8488b4
JF
1945 if (!view->pipe)
1946 return FALSE;
b801d8b2 1947
6b161b31 1948 set_nonblocking_input(TRUE);
b801d8b2
JF
1949
1950 view->offset = 0;
1951 view->lines = 0;
1952 view->lineno = 0;
739e81de 1953 string_copy_rev(view->vid, view->id);
b801d8b2 1954
2e8488b4
JF
1955 if (view->line) {
1956 int i;
1957
1958 for (i = 0; i < view->lines; i++)
fe7233c3
JF
1959 if (view->line[i].data)
1960 free(view->line[i].data);
2e8488b4
JF
1961
1962 free(view->line);
1963 view->line = NULL;
1964 }
1965
1966 view->start_time = time(NULL);
1967
b801d8b2
JF
1968 return TRUE;
1969}
1970
e2c01617
JF
1971static struct line *
1972realloc_lines(struct view *view, size_t line_size)
1973{
1974 struct line *tmp = realloc(view->line, sizeof(*view->line) * line_size);
1975
1976 if (!tmp)
1977 return NULL;
1978
1979 view->line = tmp;
1980 view->line_size = line_size;
1981 return view->line;
1982}
1983
03a93dbb 1984static bool
b801d8b2
JF
1985update_view(struct view *view)
1986{
6b68fd24
JF
1987 char in_buffer[BUFSIZ];
1988 char out_buffer[BUFSIZ * 2];
b801d8b2 1989 char *line;
82e78006
JF
1990 /* The number of lines to read. If too low it will cause too much
1991 * redrawing (and possible flickering), if too high responsiveness
1992 * will suffer. */
8855ada4 1993 unsigned long lines = view->height;
82e78006 1994 int redraw_from = -1;
b801d8b2
JF
1995
1996 if (!view->pipe)
1997 return TRUE;
1998
82e78006
JF
1999 /* Only redraw if lines are visible. */
2000 if (view->offset + view->height >= view->lines)
2001 redraw_from = view->lines - view->offset;
b801d8b2 2002
699ae55b 2003 /* FIXME: This is probably not perfect for backgrounded views. */
e2c01617 2004 if (!realloc_lines(view, view->lines + lines))
b801d8b2
JF
2005 goto alloc_error;
2006
6b68fd24
JF
2007 while ((line = fgets(in_buffer, sizeof(in_buffer), view->pipe))) {
2008 size_t linelen = strlen(line);
b801d8b2 2009
b801d8b2
JF
2010 if (linelen)
2011 line[linelen - 1] = 0;
2012
6b68fd24 2013 if (opt_iconv != ICONV_NONE) {
e47afdf2 2014 ICONV_CONST char *inbuf = line;
6b68fd24
JF
2015 size_t inlen = linelen;
2016
2017 char *outbuf = out_buffer;
2018 size_t outlen = sizeof(out_buffer);
2019
2020 size_t ret;
2021
7361622d 2022 ret = iconv(opt_iconv, &inbuf, &inlen, &outbuf, &outlen);
6b68fd24
JF
2023 if (ret != (size_t) -1) {
2024 line = out_buffer;
2025 linelen = strlen(out_buffer);
2026 }
2027 }
2028
701e4f5d 2029 if (!view->ops->read(view, line))
b801d8b2 2030 goto alloc_error;
fd85fef1
JF
2031
2032 if (lines-- == 1)
2033 break;
b801d8b2
JF
2034 }
2035
8855ada4
JF
2036 {
2037 int digits;
2038
2039 lines = view->lines;
2040 for (digits = 0; lines; digits++)
2041 lines /= 10;
2042
2043 /* Keep the displayed view in sync with line number scaling. */
2044 if (digits != view->digits) {
2045 view->digits = digits;
2046 redraw_from = 0;
2047 }
2048 }
2049
699ae55b
JF
2050 if (!view_is_displayed(view))
2051 goto check_pipe;
2052
e733ee54
JF
2053 if (view == VIEW(REQ_VIEW_TREE)) {
2054 /* Clear the view and redraw everything since the tree sorting
2055 * might have rearranged things. */
2056 redraw_view(view);
2057
2058 } else if (redraw_from >= 0) {
82e78006 2059 /* If this is an incremental update, redraw the previous line
a28bcc22
JF
2060 * since for commits some members could have changed when
2061 * loading the main view. */
82e78006
JF
2062 if (redraw_from > 0)
2063 redraw_from--;
2064
9eded379
JF
2065 /* Since revision graph visualization requires knowledge
2066 * about the parent commit, it causes a further one-off
2067 * needed to be redrawn for incremental updates. */
2068 if (redraw_from > 0 && opt_rev_graph)
2069 redraw_from--;
2070
82e78006
JF
2071 /* Incrementally draw avoids flickering. */
2072 redraw_view_from(view, redraw_from);
4c6fabc2 2073 }
b801d8b2 2074
eb98559e
JF
2075 /* Update the title _after_ the redraw so that if the redraw picks up a
2076 * commit reference in view->ref it'll be available here. */
2077 update_view_title(view);
2078
699ae55b 2079check_pipe:
b801d8b2 2080 if (ferror(view->pipe)) {
03a93dbb 2081 report("Failed to read: %s", strerror(errno));
b801d8b2
JF
2082 goto end;
2083
2084 } else if (feof(view->pipe)) {
f97f4012 2085 report("");
b801d8b2
JF
2086 goto end;
2087 }
2088
2089 return TRUE;
2090
2091alloc_error:
2e8488b4 2092 report("Allocation failure");
b801d8b2
JF
2093
2094end:
be04d936 2095 view->ops->read(view, NULL);
b801d8b2
JF
2096 end_update(view);
2097 return FALSE;
2098}
2099
0a0d8910 2100static struct line *
e314c36d 2101add_line_data(struct view *view, void *data, enum line_type type)
0a0d8910 2102{
e314c36d 2103 struct line *line = &view->line[view->lines++];
0a0d8910 2104
e314c36d 2105 memset(line, 0, sizeof(*line));
0a0d8910 2106 line->type = type;
e314c36d 2107 line->data = data;
0a0d8910
JF
2108
2109 return line;
2110}
2111
e314c36d
JF
2112static struct line *
2113add_line_text(struct view *view, char *data, enum line_type type)
2114{
2115 if (data)
2116 data = strdup(data);
2117
2118 return data ? add_line_data(view, data, type) : NULL;
2119}
2120
79d445ca 2121
e10154d5
JF
2122/*
2123 * View opening
2124 */
2125
49f2b43f
JF
2126enum open_flags {
2127 OPEN_DEFAULT = 0, /* Use default view switching. */
2128 OPEN_SPLIT = 1, /* Split current view. */
2129 OPEN_BACKGROUNDED = 2, /* Backgrounded. */
2130 OPEN_RELOAD = 4, /* Reload view even if it is the current. */
2131};
2132
6b161b31 2133static void
49f2b43f 2134open_view(struct view *prev, enum request request, enum open_flags flags)
b801d8b2 2135{
49f2b43f
JF
2136 bool backgrounded = !!(flags & OPEN_BACKGROUNDED);
2137 bool split = !!(flags & OPEN_SPLIT);
2138 bool reload = !!(flags & OPEN_RELOAD);
a28bcc22 2139 struct view *view = VIEW(request);
9f41488f 2140 int nviews = displayed_views();
6e950a52 2141 struct view *base_view = display[0];
b801d8b2 2142
49f2b43f 2143 if (view == prev && nviews == 1 && !reload) {
6b161b31
JF
2144 report("Already in %s view", view->name);
2145 return;
2146 }
b801d8b2 2147
f098944b
JF
2148 if (view->ops->open) {
2149 if (!view->ops->open(view)) {
2150 report("Failed to load %s view", view->name);
2151 return;
2152 }
2509b112
JF
2153
2154 } else if ((reload || strcmp(view->vid, view->id)) &&
2155 !begin_update(view)) {
6b161b31
JF
2156 report("Failed to load %s view", view->name);
2157 return;
2158 }
a28bcc22 2159
6b161b31 2160 if (split) {
8d741c06 2161 display[1] = view;
6b161b31 2162 if (!backgrounded)
8d741c06 2163 current_view = 1;
6b161b31
JF
2164 } else {
2165 /* Maximize the current view. */
2166 memset(display, 0, sizeof(display));
2167 current_view = 0;
2168 display[current_view] = view;
a28bcc22 2169 }
b801d8b2 2170
6e950a52
JF
2171 /* Resize the view when switching between split- and full-screen,
2172 * or when switching between two different full-screen views. */
2173 if (nviews != displayed_views() ||
2174 (nviews == 1 && base_view != display[0]))
a006db63 2175 resize_display();
b801d8b2 2176
a8891802 2177 if (split && prev->lineno - prev->offset >= prev->height) {
03a93dbb 2178 /* Take the title line into account. */
eb98559e 2179 int lines = prev->lineno - prev->offset - prev->height + 1;
03a93dbb
JF
2180
2181 /* Scroll the view that was split if the current line is
2182 * outside the new limited view. */
8c317212 2183 do_scroll_view(prev, lines);
03a93dbb
JF
2184 }
2185
6b161b31 2186 if (prev && view != prev) {
9b995f0c 2187 if (split && !backgrounded) {
f0b3ab80
JF
2188 /* "Blur" the previous view. */
2189 update_view_title(prev);
9f396969 2190 }
f0b3ab80 2191
f6da0b66 2192 view->parent = prev;
b801d8b2
JF
2193 }
2194
9f396969 2195 if (view->pipe && view->lines == 0) {
03a93dbb
JF
2196 /* Clear the old view and let the incremental updating refill
2197 * the screen. */
2198 wclear(view->win);
f97f4012 2199 report("");
03a93dbb
JF
2200 } else {
2201 redraw_view(view);
24b5b3e0 2202 report("");
03a93dbb 2203 }
6706b2ba
JF
2204
2205 /* If the view is backgrounded the above calls to report()
2206 * won't redraw the view title. */
2207 if (backgrounded)
2208 update_view_title(view);
b801d8b2
JF
2209}
2210
0cea0d43 2211static void
d24ef76c
JF
2212open_external_viewer(const char *cmd)
2213{
2214 def_prog_mode(); /* save current tty modes */
2215 endwin(); /* restore original tty modes */
2216 system(cmd);
2217 fprintf(stderr, "Press Enter to continue");
2218 getc(stdin);
2219 reset_prog_mode();
2220 redraw_display();
2221}
2222
2223static void
b5c18d9d
JF
2224open_mergetool(const char *file)
2225{
2226 char cmd[SIZEOF_STR];
2227 char file_sq[SIZEOF_STR];
2228
2229 if (sq_quote(file_sq, 0, file) < sizeof(file_sq) &&
2230 string_format(cmd, "git mergetool %s", file_sq)) {
2231 open_external_viewer(cmd);
2232 }
2233}
2234
2235static void
d24ef76c 2236open_editor(bool from_root, const char *file)
0cea0d43
JF
2237{
2238 char cmd[SIZEOF_STR];
2239 char file_sq[SIZEOF_STR];
2240 char *editor;
7d31b059 2241 char *prefix = from_root ? opt_cdup : "";
0cea0d43
JF
2242
2243 editor = getenv("GIT_EDITOR");
2244 if (!editor && *opt_editor)
2245 editor = opt_editor;
2246 if (!editor)
2247 editor = getenv("VISUAL");
2248 if (!editor)
2249 editor = getenv("EDITOR");
2250 if (!editor)
2251 editor = "vi";
2252
2253 if (sq_quote(file_sq, 0, file) < sizeof(file_sq) &&
7d31b059 2254 string_format(cmd, "%s %s%s", editor, prefix, file_sq)) {
d24ef76c 2255 open_external_viewer(cmd);
0cea0d43
JF
2256 }
2257}
b801d8b2 2258
9eb14b72
JF
2259static void
2260open_run_request(enum request request)
2261{
2262 struct run_request *req = get_run_request(request);
2263 char buf[SIZEOF_STR * 2];
2264 size_t bufpos;
2265 char *cmd;
2266
2267 if (!req) {
2268 report("Unknown run request");
2269 return;
2270 }
2271
2272 bufpos = 0;
2273 cmd = req->cmd;
2274
2275 while (cmd) {
2276 char *next = strstr(cmd, "%(");
2277 int len = next - cmd;
2278 char *value;
2279
2280 if (!next) {
2281 len = strlen(cmd);
2282 value = "";
2283
2284 } else if (!strncmp(next, "%(head)", 7)) {
2285 value = ref_head;
2286
2287 } else if (!strncmp(next, "%(commit)", 9)) {
2288 value = ref_commit;
2289
2290 } else if (!strncmp(next, "%(blob)", 7)) {
2291 value = ref_blob;
2292
2293 } else {
2294 report("Unknown replacement in run request: `%s`", req->cmd);
2295 return;
2296 }
2297
2298 if (!string_format_from(buf, &bufpos, "%.*s%s", len, cmd, value))
2299 return;
2300
2301 if (next)
2302 next = strchr(next, ')') + 1;
2303 cmd = next;
2304 }
2305
2306 open_external_viewer(buf);
2307}
2308
6b161b31
JF
2309/*
2310 * User request switch noodle
2311 */
2312
b801d8b2 2313static int
6b161b31 2314view_driver(struct view *view, enum request request)
b801d8b2 2315{
b801d8b2
JF
2316 int i;
2317
1bace428
JF
2318 if (request == REQ_NONE) {
2319 doupdate();
2320 return TRUE;
2321 }
2322
9eb14b72
JF
2323 if (request > REQ_NONE) {
2324 open_run_request(request);
2325 return TRUE;
2326 }
2327
586c423d
JF
2328 if (view && view->lines) {
2329 request = view->ops->request(view, request, &view->line[view->lineno]);
2330 if (request == REQ_NONE)
2331 return TRUE;
2332 }
2333
b801d8b2 2334 switch (request) {
4a2909a7
JF
2335 case REQ_MOVE_UP:
2336 case REQ_MOVE_DOWN:
2337 case REQ_MOVE_PAGE_UP:
2338 case REQ_MOVE_PAGE_DOWN:
2339 case REQ_MOVE_FIRST_LINE:
2340 case REQ_MOVE_LAST_LINE:
8522ecc7 2341 move_view(view, request);
fd85fef1
JF
2342 break;
2343
4a2909a7
JF
2344 case REQ_SCROLL_LINE_DOWN:
2345 case REQ_SCROLL_LINE_UP:
2346 case REQ_SCROLL_PAGE_DOWN:
2347 case REQ_SCROLL_PAGE_UP:
a28bcc22 2348 scroll_view(view, request);
b801d8b2
JF
2349 break;
2350
e733ee54
JF
2351 case REQ_VIEW_BLOB:
2352 if (!ref_blob[0]) {
550cd4b5
JF
2353 report("No file chosen, press %s to open tree view",
2354 get_key(REQ_VIEW_TREE));
e733ee54
JF
2355 break;
2356 }
5c4358d1
JF
2357 open_view(view, request, OPEN_DEFAULT);
2358 break;
2359
2360 case REQ_VIEW_PAGER:
b64c5b75 2361 if (!opt_pipe && !VIEW(REQ_VIEW_PAGER)->lines) {
5c4358d1
JF
2362 report("No pager content, press %s to run command from prompt",
2363 get_key(REQ_PROMPT));
2364 break;
2365 }
2366 open_view(view, request, OPEN_DEFAULT);
2367 break;
2368
3e634113
JF
2369 case REQ_VIEW_STAGE:
2370 if (!VIEW(REQ_VIEW_STAGE)->lines) {
2371 report("No stage content, press %s to open the status view and choose file",
2372 get_key(REQ_VIEW_STATUS));
2373 break;
2374 }
2375 open_view(view, request, OPEN_DEFAULT);
2376 break;
2377
c38c64bb
JF
2378 case REQ_VIEW_STATUS:
2379 if (opt_is_inside_work_tree == FALSE) {
2380 report("The status view requires a working tree");
2381 break;
2382 }
2383 open_view(view, request, OPEN_DEFAULT);
2384 break;
2385
4a2909a7 2386 case REQ_VIEW_MAIN:
4a2909a7 2387 case REQ_VIEW_DIFF:
2e8488b4 2388 case REQ_VIEW_LOG:
e733ee54 2389 case REQ_VIEW_TREE:
2e8488b4 2390 case REQ_VIEW_HELP:
49f2b43f 2391 open_view(view, request, OPEN_DEFAULT);
b801d8b2
JF
2392 break;
2393
b3a54cba
JF
2394 case REQ_NEXT:
2395 case REQ_PREVIOUS:
2396 request = request == REQ_NEXT ? REQ_MOVE_DOWN : REQ_MOVE_UP;
2397
e733ee54
JF
2398 if ((view == VIEW(REQ_VIEW_DIFF) &&
2399 view->parent == VIEW(REQ_VIEW_MAIN)) ||
3e634113 2400 (view == VIEW(REQ_VIEW_STAGE) &&
b9b5b4cd 2401 view->parent == VIEW(REQ_VIEW_STATUS)) ||
e733ee54
JF
2402 (view == VIEW(REQ_VIEW_BLOB) &&
2403 view->parent == VIEW(REQ_VIEW_TREE))) {
03400136
WF
2404 int line;
2405
b3a54cba 2406 view = view->parent;
03400136 2407 line = view->lineno;
8522ecc7
JF
2408 move_view(view, request);
2409 if (view_is_displayed(view))
f0b3ab80 2410 update_view_title(view);
328d27f7
JF
2411 if (line != view->lineno)
2412 view->ops->request(view, REQ_ENTER,
2413 &view->line[view->lineno]);
2414
b3a54cba 2415 } else {
8522ecc7 2416 move_view(view, request);
b3a54cba 2417 }
328d27f7 2418 break;
6b161b31 2419
03a93dbb
JF
2420 case REQ_VIEW_NEXT:
2421 {
9f41488f 2422 int nviews = displayed_views();
03a93dbb
JF
2423 int next_view = (current_view + 1) % nviews;
2424
2425 if (next_view == current_view) {
2426 report("Only one view is displayed");
2427 break;
2428 }
2429
2430 current_view = next_view;
2431 /* Blur out the title of the previous view. */
2432 update_view_title(view);
6734f6b9 2433 report("");
03a93dbb
JF
2434 break;
2435 }
acaef3b3
JF
2436 case REQ_REFRESH:
2437 report("Refreshing is not yet supported for the %s view", view->name);
2438 break;
2439
24b5b3e0 2440 case REQ_TOGGLE_LINENO:
b76c2afc 2441 opt_line_number = !opt_line_number;
20bb5e18 2442 redraw_display();
b801d8b2
JF
2443 break;
2444
54efb62b
JF
2445 case REQ_TOGGLE_REV_GRAPH:
2446 opt_rev_graph = !opt_rev_graph;
2447 redraw_display();
2448 break;
2449
03a93dbb 2450 case REQ_PROMPT:
8855ada4 2451 /* Always reload^Wrerun commands from the prompt. */
49f2b43f 2452 open_view(view, opt_request, OPEN_RELOAD);
03a93dbb
JF
2453 break;
2454
4af34daa
JF
2455 case REQ_SEARCH:
2456 case REQ_SEARCH_BACK:
c02d8fce 2457 search_view(view, request);
4af34daa
JF
2458 break;
2459
2460 case REQ_FIND_NEXT:
2461 case REQ_FIND_PREV:
2462 find_next(view, request);
2463 break;
2464
4a2909a7 2465 case REQ_STOP_LOADING:
59a45d3a
JF
2466 for (i = 0; i < ARRAY_SIZE(views); i++) {
2467 view = &views[i];
2e8488b4 2468 if (view->pipe)
6a7bb912 2469 report("Stopped loading the %s view", view->name),
03a93dbb
JF
2470 end_update(view);
2471 }
b801d8b2
JF
2472 break;
2473
4a2909a7 2474 case REQ_SHOW_VERSION:
ec31d0d0 2475 report("tig-%s (built %s)", TIG_VERSION, __DATE__);
b801d8b2
JF
2476 return TRUE;
2477
fac7db6c
JF
2478 case REQ_SCREEN_RESIZE:
2479 resize_display();
2480 /* Fall-through */
4a2909a7 2481 case REQ_SCREEN_REDRAW:
20bb5e18 2482 redraw_display();
4a2909a7
JF
2483 break;
2484
0cea0d43
JF
2485 case REQ_EDIT:
2486 report("Nothing to edit");
531c6c69
JF
2487 break;
2488
226da94b
JF
2489 case REQ_CHERRY_PICK:
2490 report("Nothing to cherry-pick");
2491 break;
2492
531c6c69
JF
2493 case REQ_ENTER:
2494 report("Nothing to enter");
2495 break;
ca1d71ea 2496
b801d8b2 2497
4f9b667a 2498 case REQ_VIEW_CLOSE:
2fcf5401
JF
2499 /* XXX: Mark closed views by letting view->parent point to the
2500 * view itself. Parents to closed view should never be
2501 * followed. */
2502 if (view->parent &&
2503 view->parent->parent != view->parent) {
4f9b667a
JF
2504 memset(display, 0, sizeof(display));
2505 current_view = 0;
f6da0b66 2506 display[current_view] = view->parent;
2fcf5401 2507 view->parent = view;
4f9b667a
JF
2508 resize_display();
2509 redraw_display();
2510 break;
2511 }
2512 /* Fall-through */
b801d8b2
JF
2513 case REQ_QUIT:
2514 return FALSE;
2515
2516 default:
2e8488b4 2517 /* An unknown key will show most commonly used commands. */
468876c9 2518 report("Unknown key, press 'h' for help");
b801d8b2
JF
2519 return TRUE;
2520 }
2521
2522 return TRUE;
2523}
2524
2525
2526/*
ff26aa29 2527 * Pager backend
b801d8b2
JF
2528 */
2529
6b161b31 2530static bool
5dcf8064 2531pager_draw(struct view *view, struct line *line, unsigned int lineno, bool selected)
b801d8b2 2532{
fe7233c3
JF
2533 char *text = line->data;
2534 enum line_type type = line->type;
2535 int textlen = strlen(text);
78c70acd 2536 int attr;
b801d8b2 2537
6706b2ba
JF
2538 wmove(view->win, lineno, 0);
2539
5dcf8064 2540 if (selected) {
78c70acd 2541 type = LINE_CURSOR;
6706b2ba 2542 wchgat(view->win, -1, 0, type, NULL);
fd85fef1
JF
2543 }
2544
78c70acd 2545 attr = get_line_attr(type);
b801d8b2 2546 wattrset(view->win, attr);
b76c2afc 2547
6706b2ba
JF
2548 if (opt_line_number || opt_tab_size < TABSIZE) {
2549 static char spaces[] = " ";
2550 int col_offset = 0, col = 0;
2551
2552 if (opt_line_number) {
2553 unsigned long real_lineno = view->offset + lineno + 1;
82e78006 2554
6706b2ba
JF
2555 if (real_lineno == 1 ||
2556 (real_lineno % opt_num_interval) == 0) {
2557 wprintw(view->win, "%.*d", view->digits, real_lineno);
8855ada4 2558
6706b2ba
JF
2559 } else {
2560 waddnstr(view->win, spaces,
2561 MIN(view->digits, STRING_SIZE(spaces)));
2562 }
2563 waddstr(view->win, ": ");
2564 col_offset = view->digits + 2;
2565 }
8855ada4 2566
fe7233c3 2567 while (text && col_offset + col < view->width) {
6706b2ba 2568 int cols_max = view->width - col_offset - col;
fe7233c3 2569 char *pos = text;
6706b2ba 2570 int cols;
4c6fabc2 2571
fe7233c3
JF
2572 if (*text == '\t') {
2573 text++;
6706b2ba 2574 assert(sizeof(spaces) > TABSIZE);
fe7233c3 2575 pos = spaces;
6706b2ba 2576 cols = opt_tab_size - (col % opt_tab_size);
82e78006 2577
b76c2afc 2578 } else {
fe7233c3
JF
2579 text = strchr(text, '\t');
2580 cols = line ? text - pos : strlen(pos);
b76c2afc 2581 }
6706b2ba 2582
fe7233c3 2583 waddnstr(view->win, pos, MIN(cols, cols_max));
6706b2ba 2584 col += cols;
b76c2afc 2585 }
b76c2afc
JF
2586
2587 } else {
6706b2ba 2588 int col = 0, pos = 0;
b801d8b2 2589
fe7233c3
JF
2590 for (; pos < textlen && col < view->width; pos++, col++)
2591 if (text[pos] == '\t')
6706b2ba
JF
2592 col += TABSIZE - (col % TABSIZE) - 1;
2593
fe7233c3 2594 waddnstr(view->win, text, pos);
6706b2ba 2595 }
2e8488b4 2596
b801d8b2
JF
2597 return TRUE;
2598}
2599
dc23c0e3 2600static bool
d65ced0d 2601add_describe_ref(char *buf, size_t *bufpos, char *commit_id, const char *sep)
dc23c0e3 2602{
17482b11 2603 char refbuf[SIZEOF_STR];
dc23c0e3
JF
2604 char *ref = NULL;
2605 FILE *pipe;
2606
d3c345f7 2607 if (!string_format(refbuf, "git describe %s 2>/dev/null", commit_id))
dc23c0e3
JF
2608 return TRUE;
2609
2610 pipe = popen(refbuf, "r");
2611 if (!pipe)
2612 return TRUE;
2613
2614 if ((ref = fgets(refbuf, sizeof(refbuf), pipe)))
2615 ref = chomp_string(ref);
2616 pclose(pipe);
2617
2618 if (!ref || !*ref)
2619 return TRUE;
2620
2621 /* This is the only fatal call, since it can "corrupt" the buffer. */
17482b11 2622 if (!string_nformat(buf, SIZEOF_STR, bufpos, "%s%s", sep, ref))
dc23c0e3
JF
2623 return FALSE;
2624
2625 return TRUE;
2626}
2627
7b99a34c
JF
2628static void
2629add_pager_refs(struct view *view, struct line *line)
2630{
17482b11 2631 char buf[SIZEOF_STR];
c9ca1ec3 2632 char *commit_id = line->data + STRING_SIZE("commit ");
7b99a34c 2633 struct ref **refs;
d65ced0d 2634 size_t bufpos = 0, refpos = 0;
7b99a34c 2635 const char *sep = "Refs: ";
dc23c0e3 2636 bool is_tag = FALSE;
7b99a34c
JF
2637
2638 assert(line->type == LINE_COMMIT);
2639
c9ca1ec3 2640 refs = get_refs(commit_id);
dc23c0e3
JF
2641 if (!refs) {
2642 if (view == VIEW(REQ_VIEW_DIFF))
2643 goto try_add_describe_ref;
7b99a34c 2644 return;
dc23c0e3 2645 }
7b99a34c
JF
2646
2647 do {
cc2d1364 2648 struct ref *ref = refs[refpos];
e15ec88e
JF
2649 char *fmt = ref->tag ? "%s[%s]" :
2650 ref->remote ? "%s<%s>" : "%s%s";
7b99a34c 2651
cc2d1364
JF
2652 if (!string_format_from(buf, &bufpos, fmt, sep, ref->name))
2653 return;
7b99a34c 2654 sep = ", ";
dc23c0e3
JF
2655 if (ref->tag)
2656 is_tag = TRUE;
7b99a34c
JF
2657 } while (refs[refpos++]->next);
2658
dc23c0e3
JF
2659 if (!is_tag && view == VIEW(REQ_VIEW_DIFF)) {
2660try_add_describe_ref:
d42c8a35 2661 /* Add <tag>-g<commit_id> "fake" reference. */
dc23c0e3
JF
2662 if (!add_describe_ref(buf, &bufpos, commit_id, sep))
2663 return;
2664 }
2665
d42c8a35
JF
2666 if (bufpos == 0)
2667 return;
2668
cc2d1364 2669 if (!realloc_lines(view, view->line_size + 1))
7b99a34c
JF
2670 return;
2671
0a0d8910 2672 add_line_text(view, buf, LINE_PP_REFS);
7b99a34c
JF
2673}
2674
6b161b31 2675static bool
701e4f5d 2676pager_read(struct view *view, char *data)
22f66b0a 2677{
0a0d8910 2678 struct line *line;
22f66b0a 2679
be04d936
JF
2680 if (!data)
2681 return TRUE;
2682
0a0d8910
JF
2683 line = add_line_text(view, data, get_line_type(data));
2684 if (!line)
7b99a34c 2685 return FALSE;
fe7233c3 2686
7b99a34c
JF
2687 if (line->type == LINE_COMMIT &&
2688 (view == VIEW(REQ_VIEW_DIFF) ||
2689 view == VIEW(REQ_VIEW_LOG)))
2690 add_pager_refs(view, line);
2691
22f66b0a
JF
2692 return TRUE;
2693}
2694
586c423d
JF
2695static enum request
2696pager_request(struct view *view, enum request request, struct line *line)
6b161b31 2697{
91e8e277 2698 int split = 0;
6b161b31 2699
586c423d
JF
2700 if (request != REQ_ENTER)
2701 return request;
2702
9fbbd28f
JF
2703 if (line->type == LINE_COMMIT &&
2704 (view == VIEW(REQ_VIEW_LOG) ||
2705 view == VIEW(REQ_VIEW_PAGER))) {
91e8e277
JF
2706 open_view(view, REQ_VIEW_DIFF, OPEN_SPLIT);
2707 split = 1;
67e48ac5
JF
2708 }
2709
91e8e277
JF
2710 /* Always scroll the view even if it was split. That way
2711 * you can use Enter to scroll through the log view and
2712 * split open each commit diff. */
2713 scroll_view(view, REQ_SCROLL_LINE_DOWN);
2714
2715 /* FIXME: A minor workaround. Scrolling the view will call report("")
9d82d824
JF
2716 * but if we are scrolling a non-current view this won't properly
2717 * update the view title. */
91e8e277
JF
2718 if (split)
2719 update_view_title(view);
6b161b31 2720
586c423d 2721 return REQ_NONE;
6b161b31
JF
2722}
2723
4af34daa
JF
2724static bool
2725pager_grep(struct view *view, struct line *line)
2726{
2727 regmatch_t pmatch;
2728 char *text = line->data;
2729
2730 if (!*text)
2731 return FALSE;
2732
b77b2cb8 2733 if (regexec(view->regex, text, 1, &pmatch, 0) == REG_NOMATCH)
4af34daa
JF
2734 return FALSE;
2735
2736 return TRUE;
2737}
2738
d720de4b
JF
2739static void
2740pager_select(struct view *view, struct line *line)
2741{
2742 if (line->type == LINE_COMMIT) {
035ba11f 2743 char *text = line->data + STRING_SIZE("commit ");
d720de4b 2744
035ba11f 2745 if (view != VIEW(REQ_VIEW_PAGER))
2463b4ea
JF
2746 string_copy_rev(view->ref, text);
2747 string_copy_rev(ref_commit, text);
d720de4b
JF
2748 }
2749}
2750
6b161b31 2751static struct view_ops pager_ops = {
6734f6b9 2752 "line",
f098944b 2753 NULL,
6b161b31 2754 pager_read,
f098944b 2755 pager_draw,
586c423d 2756 pager_request,
f098944b
JF
2757 pager_grep,
2758 pager_select,
2759};
2760
2761
2762/*
2763 * Help backend
2764 */
2765
2766static bool
2767help_open(struct view *view)
2768{
2769 char buf[BUFSIZ];
2770 int lines = ARRAY_SIZE(req_info) + 2;
2771 int i;
2772
2773 if (view->lines > 0)
2774 return TRUE;
2775
2776 for (i = 0; i < ARRAY_SIZE(req_info); i++)
2777 if (!req_info[i].request)
2778 lines++;
2779
9eb14b72
JF
2780 lines += run_requests + 1;
2781
f098944b
JF
2782 view->line = calloc(lines, sizeof(*view->line));
2783 if (!view->line)
2784 return FALSE;
2785
2786 add_line_text(view, "Quick reference for tig keybindings:", LINE_DEFAULT);
2787
2788 for (i = 0; i < ARRAY_SIZE(req_info); i++) {
2789 char *key;
2790
0e4360b6
JF
2791 if (req_info[i].request == REQ_NONE)
2792 continue;
2793
f098944b
JF
2794 if (!req_info[i].request) {
2795 add_line_text(view, "", LINE_DEFAULT);
2796 add_line_text(view, req_info[i].help, LINE_DEFAULT);
2797 continue;
2798 }
2799
2800 key = get_key(req_info[i].request);
0e4360b6
JF
2801 if (!*key)
2802 key = "(no key defined)";
2803
f098944b
JF
2804 if (!string_format(buf, " %-25s %s", key, req_info[i].help))
2805 continue;
2806
2807 add_line_text(view, buf, LINE_DEFAULT);
2808 }
2809
9eb14b72
JF
2810 if (run_requests) {
2811 add_line_text(view, "", LINE_DEFAULT);
2812 add_line_text(view, "External commands:", LINE_DEFAULT);
2813 }
2814
2815 for (i = 0; i < run_requests; i++) {
2816 struct run_request *req = get_run_request(REQ_NONE + i + 1);
2817 char *key;
2818
2819 if (!req)
2820 continue;
2821
2822 key = get_key_name(req->key);
2823 if (!*key)
2824 key = "(no key defined)";
2825
2826 if (!string_format(buf, " %-10s %-14s `%s`",
2827 keymap_table[req->keymap].name,
2828 key, req->cmd))
2829 continue;
2830
2831 add_line_text(view, buf, LINE_DEFAULT);
2832 }
2833
f098944b
JF
2834 return TRUE;
2835}
2836
2837static struct view_ops help_ops = {
2838 "line",
2839 help_open,
2840 NULL,
2841 pager_draw,
586c423d 2842 pager_request,
4af34daa 2843 pager_grep,
d720de4b 2844 pager_select,
6b161b31
JF
2845};
2846
80ce96ea 2847
ff26aa29 2848/*
e733ee54
JF
2849 * Tree backend
2850 */
2851
69efc854
JF
2852struct tree_stack_entry {
2853 struct tree_stack_entry *prev; /* Entry below this in the stack */
2854 unsigned long lineno; /* Line number to restore */
2855 char *name; /* Position of name in opt_path */
2856};
2857
2858/* The top of the path stack. */
2859static struct tree_stack_entry *tree_stack = NULL;
2860unsigned long tree_lineno = 0;
2861
2862static void
2863pop_tree_stack_entry(void)
2864{
2865 struct tree_stack_entry *entry = tree_stack;
2866
2867 tree_lineno = entry->lineno;
2868 entry->name[0] = 0;
2869 tree_stack = entry->prev;
2870 free(entry);
2871}
2872
2873static void
2874push_tree_stack_entry(char *name, unsigned long lineno)
2875{
2876 struct tree_stack_entry *entry = calloc(1, sizeof(*entry));
2877 size_t pathlen = strlen(opt_path);
2878
2879 if (!entry)
2880 return;
2881
2882 entry->prev = tree_stack;
2883 entry->name = opt_path + pathlen;
2884 tree_stack = entry;
2885
2886 if (!string_format_from(opt_path, &pathlen, "%s/", name)) {
2887 pop_tree_stack_entry();
2888 return;
2889 }
2890
2891 /* Move the current line to the first tree entry. */
2892 tree_lineno = 1;
2893 entry->lineno = lineno;
2894}
2895
4795d620 2896/* Parse output from git-ls-tree(1):
e733ee54
JF
2897 *
2898 * 100644 blob fb0e31ea6cc679b7379631188190e975f5789c26 Makefile
2899 * 100644 blob 5304ca4260aaddaee6498f9630e7d471b8591ea6 README
2900 * 100644 blob f931e1d229c3e185caad4449bf5b66ed72462657 tig.c
2901 * 100644 blob ed09fe897f3c7c9af90bcf80cae92558ea88ae38 web.conf
2902 */
2903
2904#define SIZEOF_TREE_ATTR \
2905 STRING_SIZE("100644 blob ed09fe897f3c7c9af90bcf80cae92558ea88ae38\t")
2906
2907#define TREE_UP_FORMAT "040000 tree %s\t.."
2908
2909static int
2910tree_compare_entry(enum line_type type1, char *name1,
2911 enum line_type type2, char *name2)
2912{
2913 if (type1 != type2) {
2914 if (type1 == LINE_TREE_DIR)
2915 return -1;
2916 return 1;
2917 }
2918
2919 return strcmp(name1, name2);
2920}
2921
2922static bool
2923tree_read(struct view *view, char *text)
2924{
be04d936 2925 size_t textlen = text ? strlen(text) : 0;
e733ee54
JF
2926 char buf[SIZEOF_STR];
2927 unsigned long pos;
2928 enum line_type type;
f88a5319 2929 bool first_read = view->lines == 0;
e733ee54
JF
2930
2931 if (textlen <= SIZEOF_TREE_ATTR)
2932 return FALSE;
2933
2934 type = text[STRING_SIZE("100644 ")] == 't'
2935 ? LINE_TREE_DIR : LINE_TREE_FILE;
2936
f88a5319 2937 if (first_read) {
e733ee54 2938 /* Add path info line */
0a0d8910
JF
2939 if (!string_format(buf, "Directory path /%s", opt_path) ||
2940 !realloc_lines(view, view->line_size + 1) ||
2941 !add_line_text(view, buf, LINE_DEFAULT))
e733ee54
JF
2942 return FALSE;
2943
2944 /* Insert "link" to parent directory. */
0a0d8910
JF
2945 if (*opt_path) {
2946 if (!string_format(buf, TREE_UP_FORMAT, view->ref) ||
2947 !realloc_lines(view, view->line_size + 1) ||
2948 !add_line_text(view, buf, LINE_TREE_DIR))
2949 return FALSE;
2950 }
e733ee54
JF
2951 }
2952
2953 /* Strip the path part ... */
2954 if (*opt_path) {
2955 size_t pathlen = textlen - SIZEOF_TREE_ATTR;
2956 size_t striplen = strlen(opt_path);
2957 char *path = text + SIZEOF_TREE_ATTR;
2958
2959 if (pathlen > striplen)
2960 memmove(path, path + striplen,
2961 pathlen - striplen + 1);
2962 }
2963
2964 /* Skip "Directory ..." and ".." line. */
2965 for (pos = 1 + !!*opt_path; pos < view->lines; pos++) {
2966 struct line *line = &view->line[pos];
2967 char *path1 = ((char *) line->data) + SIZEOF_TREE_ATTR;
2968 char *path2 = text + SIZEOF_TREE_ATTR;
2969 int cmp = tree_compare_entry(line->type, path1, type, path2);
2970
2971 if (cmp <= 0)
2972 continue;
2973
2974 text = strdup(text);
2975 if (!text)
2976 return FALSE;
2977
2978 if (view->lines > pos)
2979 memmove(&view->line[pos + 1], &view->line[pos],
2980 (view->lines - pos) * sizeof(*line));
2981
2982 line = &view->line[pos];
2983 line->data = text;
2984 line->type = type;
2985 view->lines++;
2986 return TRUE;
2987 }
2988
0a0d8910 2989 if (!add_line_text(view, text, type))
e733ee54
JF
2990 return FALSE;
2991
69efc854
JF
2992 if (tree_lineno > view->lineno) {
2993 view->lineno = tree_lineno;
2994 tree_lineno = 0;
2995 }
f88a5319 2996
e733ee54
JF
2997 return TRUE;
2998}
2999
586c423d
JF
3000static enum request
3001tree_request(struct view *view, enum request request, struct line *line)
e733ee54 3002{
aac64c17 3003 enum open_flags flags;
586c423d
JF
3004
3005 if (request != REQ_ENTER)
3006 return request;
e733ee54 3007
69efc854
JF
3008 /* Cleanup the stack if the tree view is at a different tree. */
3009 while (!*opt_path && tree_stack)
3010 pop_tree_stack_entry();
3011
e733ee54
JF
3012 switch (line->type) {
3013 case LINE_TREE_DIR:
3014 /* Depending on whether it is a subdir or parent (updir?) link
3015 * mangle the path buffer. */
3016 if (line == &view->line[1] && *opt_path) {
69efc854 3017 pop_tree_stack_entry();
e733ee54
JF
3018
3019 } else {
4795d620 3020 char *data = line->data;
e733ee54
JF
3021 char *basename = data + SIZEOF_TREE_ATTR;
3022
69efc854 3023 push_tree_stack_entry(basename, view->lineno);
e733ee54
JF
3024 }
3025
3026 /* Trees and subtrees share the same ID, so they are not not
3027 * unique like blobs. */
aac64c17 3028 flags = OPEN_RELOAD;
e733ee54
JF
3029 request = REQ_VIEW_TREE;
3030 break;
3031
3032 case LINE_TREE_FILE:
aac64c17 3033 flags = display[0] == view ? OPEN_SPLIT : OPEN_DEFAULT;
e733ee54
JF
3034 request = REQ_VIEW_BLOB;
3035 break;
3036
3037 default:
3038 return TRUE;
3039 }
3040
3041 open_view(view, request, flags);
69efc854
JF
3042 if (request == REQ_VIEW_TREE) {
3043 view->lineno = tree_lineno;
3044 }
e733ee54 3045
586c423d 3046 return REQ_NONE;
e733ee54
JF
3047}
3048
d720de4b
JF
3049static void
3050tree_select(struct view *view, struct line *line)
3051{
035ba11f 3052 char *text = line->data + STRING_SIZE("100644 blob ");
73c76ef5
JF
3053
3054 if (line->type == LINE_TREE_FILE) {
2463b4ea 3055 string_copy_rev(ref_blob, text);
d720de4b 3056
ebbaf4fe
JF
3057 } else if (line->type != LINE_TREE_DIR) {
3058 return;
d720de4b 3059 }
ebbaf4fe 3060
2463b4ea 3061 string_copy_rev(view->ref, text);
d720de4b
JF
3062}
3063
e733ee54
JF
3064static struct view_ops tree_ops = {
3065 "file",
f098944b 3066 NULL,
e733ee54 3067 tree_read,
f098944b 3068 pager_draw,
586c423d 3069 tree_request,
e733ee54 3070 pager_grep,
d720de4b 3071 tree_select,
e733ee54
JF
3072};
3073
3074static bool
3075blob_read(struct view *view, char *line)
3076{
c115e7ac 3077 return add_line_text(view, line, LINE_DEFAULT) != NULL;
e733ee54
JF
3078}
3079
3080static struct view_ops blob_ops = {
3081 "line",
f098944b 3082 NULL,
e733ee54 3083 blob_read,
f098944b 3084 pager_draw,
586c423d 3085 pager_request,
e733ee54 3086 pager_grep,
d720de4b 3087 pager_select,
e733ee54
JF
3088};
3089
3090
3091/*
173d76ea
JF
3092 * Status backend
3093 */
3094
3095struct status {
3096 char status;
3097 struct {
3098 mode_t mode;
3099 char rev[SIZEOF_REV];
3100 } old;
3101 struct {
3102 mode_t mode;
3103 char rev[SIZEOF_REV];
3104 } new;
3105 char name[SIZEOF_STR];
3106};
3107
b33611d8
JF
3108static struct status stage_status;
3109static enum line_type stage_line_type;
3110
173d76ea
JF
3111/* Get fields from the diff line:
3112 * :100644 100644 06a5d6ae9eca55be2e0e585a152e6b1336f2b20e 0000000000000000000000000000000000000000 M
3113 */
3114static inline bool
3115status_get_diff(struct status *file, char *buf, size_t bufsize)
3116{
3117 char *old_mode = buf + 1;
3118 char *new_mode = buf + 8;
3119 char *old_rev = buf + 15;
3120 char *new_rev = buf + 56;
3121 char *status = buf + 97;
3122
3123 if (bufsize != 99 ||
3124 old_mode[-1] != ':' ||
3125 new_mode[-1] != ' ' ||
3126 old_rev[-1] != ' ' ||
3127 new_rev[-1] != ' ' ||
3128 status[-1] != ' ')
3129 return FALSE;
3130
3131 file->status = *status;
3132
3133 string_copy_rev(file->old.rev, old_rev);
3134 string_copy_rev(file->new.rev, new_rev);
3135
3136 file->old.mode = strtoul(old_mode, NULL, 8);
3137 file->new.mode = strtoul(new_mode, NULL, 8);
3138
3139 file->name[0] = 0;
3140
3141 return TRUE;
3142}
3143
3144static bool
3145status_run(struct view *view, const char cmd[], bool diff, enum line_type type)
3146{
3147 struct status *file = NULL;
b5c18d9d 3148 struct status *unmerged = NULL;
173d76ea
JF
3149 char buf[SIZEOF_STR * 4];
3150 size_t bufsize = 0;
3151 FILE *pipe;
3152
3153 pipe = popen(cmd, "r");
3154 if (!pipe)
3155 return FALSE;
3156
3157 add_line_data(view, NULL, type);
3158
3159 while (!feof(pipe) && !ferror(pipe)) {
3160 char *sep;
3161 size_t readsize;
3162
3163 readsize = fread(buf + bufsize, 1, sizeof(buf) - bufsize, pipe);
3164 if (!readsize)
3165 break;
3166 bufsize += readsize;
3167
3168 /* Process while we have NUL chars. */
3169 while ((sep = memchr(buf, 0, bufsize))) {
3170 size_t sepsize = sep - buf + 1;
3171
3172 if (!file) {
3173 if (!realloc_lines(view, view->line_size + 1))
3174 goto error_out;
3175
3176 file = calloc(1, sizeof(*file));
3177 if (!file)
3178 goto error_out;
3179
3180 add_line_data(view, file, type);
3181 }
3182
3183 /* Parse diff info part. */
3184 if (!diff) {
3185 file->status = '?';
3186
3187 } else if (!file->status) {
3188 if (!status_get_diff(file, buf, sepsize))
3189 goto error_out;
3190
3191 bufsize -= sepsize;
3192 memmove(buf, sep + 1, bufsize);
3193
3194 sep = memchr(buf, 0, bufsize);
3195 if (!sep)
3196 break;
3197 sepsize = sep - buf + 1;
b5c18d9d
JF
3198
3199 /* Collapse all 'M'odified entries that
3200 * follow a associated 'U'nmerged entry.
3201 */
3202 if (file->status == 'U') {
3203 unmerged = file;
3204
3205 } else if (unmerged) {
3206 int collapse = !strcmp(buf, unmerged->name);
3207
3208 unmerged = NULL;
3209 if (collapse) {
3210 free(file);
3211 view->lines--;
3212 continue;
3213 }
3214 }
173d76ea
JF
3215 }
3216
3217 /* git-ls-files just delivers a NUL separated
3218 * list of file names similar to the second half
3219 * of the git-diff-* output. */
3220 string_ncopy(file->name, buf, sepsize);
3221 bufsize -= sepsize;
3222 memmove(buf, sep + 1, bufsize);
3223 file = NULL;
3224 }
3225 }
3226
3227 if (ferror(pipe)) {
3228error_out:
3229 pclose(pipe);
3230 return FALSE;
3231 }
3232
3233 if (!view->line[view->lines - 1].data)
3234 add_line_data(view, NULL, LINE_STAT_NONE);
3235
3236 pclose(pipe);
3237 return TRUE;
3238}
3239
b5c18d9d
JF
3240/* Don't show unmerged entries in the staged section. */
3241#define STATUS_DIFF_INDEX_CMD "git diff-index -z --diff-filter=ACDMRTXB --cached HEAD"
173d76ea
JF
3242#define STATUS_DIFF_FILES_CMD "git diff-files -z"
3243#define STATUS_LIST_OTHER_CMD \
810f0078 3244 "git ls-files -z --others --exclude-per-directory=.gitignore"
173d76ea 3245
89d917a2
JF
3246#define STATUS_DIFF_SHOW_CMD \
3247 "git diff --root --patch-with-stat --find-copies-harder -B -C %s -- %s 2>/dev/null"
3248
173d76ea
JF
3249/* First parse staged info using git-diff-index(1), then parse unstaged
3250 * info using git-diff-files(1), and finally untracked files using
3251 * git-ls-files(1). */
3252static bool
3253status_open(struct view *view)
3254{
810f0078
JF
3255 struct stat statbuf;
3256 char exclude[SIZEOF_STR];
3257 char cmd[SIZEOF_STR];
12e8c2be 3258 unsigned long prev_lineno = view->lineno;
173d76ea
JF
3259 size_t i;
3260
3261 for (i = 0; i < view->lines; i++)
3262 free(view->line[i].data);
3263 free(view->line);
12e8c2be 3264 view->lines = view->line_size = view->lineno = 0;
173d76ea
JF
3265 view->line = NULL;
3266
3267 if (!realloc_lines(view, view->line_size + 6))
3268 return FALSE;
3269
810f0078
JF
3270 if (!string_format(exclude, "%s/info/exclude", opt_git_dir))
3271 return FALSE;
3272
3273 string_copy(cmd, STATUS_LIST_OTHER_CMD);
3274
3275 if (stat(exclude, &statbuf) >= 0) {
3276 size_t cmdsize = strlen(cmd);
3277
3278 if (!string_format_from(cmd, &cmdsize, " %s", "--exclude-from=") ||
3279 sq_quote(cmd, cmdsize, exclude) >= sizeof(cmd))
3280 return FALSE;
3281 }
3282
173d76ea
JF
3283 if (!status_run(view, STATUS_DIFF_INDEX_CMD, TRUE, LINE_STAT_STAGED) ||
3284 !status_run(view, STATUS_DIFF_FILES_CMD, TRUE, LINE_STAT_UNSTAGED) ||
810f0078 3285 !status_run(view, cmd, FALSE, LINE_STAT_UNTRACKED))
173d76ea
JF
3286 return FALSE;
3287
12e8c2be
JF
3288 /* If all went well restore the previous line number to stay in
3289 * the context. */
3290 if (prev_lineno < view->lines)
3291 view->lineno = prev_lineno;
3292 else
3293 view->lineno = view->lines - 1;
3294
173d76ea
JF
3295 return TRUE;
3296}
3297
3298static bool
3299status_draw(struct view *view, struct line *line, unsigned int lineno, bool selected)
3300{
3301 struct status *status = line->data;
3302
3303 wmove(view->win, lineno, 0);
3304
3305 if (selected) {
3306 wattrset(view->win, get_line_attr(LINE_CURSOR));
3307 wchgat(view->win, -1, 0, LINE_CURSOR, NULL);
3308
3309 } else if (!status && line->type != LINE_STAT_NONE) {
3310 wattrset(view->win, get_line_attr(LINE_STAT_SECTION));
3311 wchgat(view->win, -1, 0, LINE_STAT_SECTION, NULL);
3312
3313 } else {
3314 wattrset(view->win, get_line_attr(line->type));
3315 }
3316
3317 if (!status) {
3318 char *text;
3319
3320 switch (line->type) {
3321 case LINE_STAT_STAGED:
3322 text = "Changes to be committed:";
3323 break;
3324
3325 case LINE_STAT_UNSTAGED:
3326 text = "Changed but not updated:";
3327 break;
3328
3329 case LINE_STAT_UNTRACKED:
3330 text = "Untracked files:";
3331 break;
3332
3333 case LINE_STAT_NONE:
3334 text = " (no files)";
3335 break;
3336
3337 default:
3338 return FALSE;
3339 }
3340
3341 waddstr(view->win, text);
3342 return TRUE;
3343 }
3344
3345 waddch(view->win, status->status);
3346 if (!selected)
3347 wattrset(view->win, A_NORMAL);
3348 wmove(view->win, lineno, 4);
3349 waddstr(view->win, status->name);
3350
3351 return TRUE;
3352}
3353
586c423d 3354static enum request
88f66e2d 3355status_enter(struct view *view, struct line *line)
173d76ea 3356{
89d917a2 3357 struct status *status = line->data;
4e8159cf 3358 char path[SIZEOF_STR] = "";
89d917a2
JF
3359 char *info;
3360 size_t cmdsize = 0;
3361
4e8159cf
JF
3362 if (line->type == LINE_STAT_NONE ||
3363 (!status && line[1].type == LINE_STAT_NONE)) {
3364 report("No file to diff");
586c423d 3365 return REQ_NONE;
89d917a2
JF
3366 }
3367
4e8159cf 3368 if (status && sq_quote(path, 0, status->name) >= sizeof(path))
586c423d 3369 return REQ_QUIT;
89d917a2
JF
3370
3371 if (opt_cdup[0] &&
3372 line->type != LINE_STAT_UNTRACKED &&
3373 !string_format_from(opt_cmd, &cmdsize, "cd %s;", opt_cdup))
586c423d 3374 return REQ_QUIT;
89d917a2
JF
3375
3376 switch (line->type) {
3377 case LINE_STAT_STAGED:
3378 if (!string_format_from(opt_cmd, &cmdsize, STATUS_DIFF_SHOW_CMD,
3379 "--cached", path))
586c423d 3380 return REQ_QUIT;
4e8159cf
JF
3381 if (status)
3382 info = "Staged changes to %s";
3383 else
3384 info = "Staged changes";
89d917a2
JF
3385 break;
3386
3387 case LINE_STAT_UNSTAGED:
3388 if (!string_format_from(opt_cmd, &cmdsize, STATUS_DIFF_SHOW_CMD,
3389 "", path))
586c423d 3390 return REQ_QUIT;
4e8159cf
JF
3391 if (status)
3392 info = "Unstaged changes to %s";
3393 else
3394 info = "Unstaged changes";
89d917a2
JF
3395 break;
3396
3397 case LINE_STAT_UNTRACKED:
3398 if (opt_pipe)
586c423d
JF
3399 return REQ_QUIT;
3400
4e8159cf
JF
3401
3402 if (!status) {
3403 report("No file to show");
586c423d 3404 return REQ_NONE;
4e8159cf
JF
3405 }
3406
89d917a2
JF
3407 opt_pipe = fopen(status->name, "r");
3408 info = "Untracked file %s";
3409 break;
3410
3411 default:
3412 die("w00t");
3413 }
3414
3e634113
JF
3415 open_view(view, REQ_VIEW_STAGE, OPEN_RELOAD | OPEN_SPLIT);
3416 if (view_is_displayed(VIEW(REQ_VIEW_STAGE))) {
b33611d8
JF
3417 if (status) {
3418 stage_status = *status;
3419 } else {
3420 memset(&stage_status, 0, sizeof(stage_status));
3421 }
3422
3423 stage_line_type = line->type;
3424 string_format(VIEW(REQ_VIEW_STAGE)->ref, info, stage_status.name);
89d917a2
JF
3425 }
3426
586c423d 3427 return REQ_NONE;
ca1d71ea
JF
3428}
3429
88f66e2d 3430
ca1d71ea
JF
3431static bool
3432status_update_file(struct view *view, struct status *status, enum line_type type)
3433{
91c5d983 3434 char cmd[SIZEOF_STR];
173d76ea 3435 char buf[SIZEOF_STR];
91c5d983 3436 size_t cmdsize = 0;
173d76ea
JF
3437 size_t bufsize = 0;
3438 size_t written = 0;
3439 FILE *pipe;
3440
91c5d983 3441 if (opt_cdup[0] &&
ca1d71ea 3442 type != LINE_STAT_UNTRACKED &&
91c5d983
JF
3443 !string_format_from(cmd, &cmdsize, "cd %s;", opt_cdup))
3444 return FALSE;
3445
ca1d71ea 3446 switch (type) {
173d76ea
JF
3447 case LINE_STAT_STAGED:
3448 if (!string_format_from(buf, &bufsize, "%06o %s\t%s%c",
3449 status->old.mode,
3450 status->old.rev,
3451 status->name, 0))
3452 return FALSE;
91c5d983
JF
3453
3454 string_add(cmd, cmdsize, "git update-index -z --index-info");
173d76ea
JF
3455 break;
3456
3457 case LINE_STAT_UNSTAGED:
3458 case LINE_STAT_UNTRACKED:
3459 if (!string_format_from(buf, &bufsize, "%s%c", status->name, 0))
3460 return FALSE;
91c5d983
JF
3461
3462 string_add(cmd, cmdsize, "git update-index -z --add --remove --stdin");
173d76ea
JF
3463 break;
3464
3465 default:
3466 die("w00t");
3467 }
3468
3469 pipe = popen(cmd, "w");
3470 if (!pipe)
3471 return FALSE;
3472
3473 while (!ferror(pipe) && written < bufsize) {
3474 written += fwrite(buf + written, 1, bufsize - written, pipe);
3475 }
3476
3477 pclose(pipe);
3478
3479 if (written != bufsize)
3480 return FALSE;
3481
173d76ea
JF
3482 return TRUE;
3483}
3484
3485static void
ca1d71ea
JF
3486status_update(struct view *view)
3487{
dec7b437 3488 struct line *line = &view->line[view->lineno];
351917f8 3489
dec7b437 3490 assert(view->lines);
11359638 3491
dec7b437
JF
3492 if (!line->data) {
3493 while (++line < view->line + view->lines && line->data) {
3494 if (!status_update_file(view, line->data, line->type))
3495 report("Failed to update file status");
3496 }
11359638 3497
dec7b437
JF
3498 if (!line[-1].data) {
3499 report("Nothing to update");
3500 return;
93e4c4f6
JF
3501 }
3502
dec7b437
JF
3503 } else if (!status_update_file(view, line->data, line->type)) {
3504 report("Failed to update file status");
ca1d71ea
JF
3505 }
3506}
3507
88f66e2d
JF
3508static enum request
3509status_request(struct view *view, enum request request, struct line *line)
3510{
0cea0d43
JF
3511 struct status *status = line->data;
3512
88f66e2d
JF
3513 switch (request) {
3514 case REQ_STATUS_UPDATE:
3515 status_update(view);
3516 break;
3517
b5c18d9d
JF
3518 case REQ_STATUS_MERGE:
3519 open_mergetool(status->name);
b5c18d9d
JF
3520 break;
3521
0cea0d43
JF
3522 case REQ_EDIT:
3523 if (!status)
3524 return request;
3525
3dd65d95 3526 open_editor(status->status != '?', status->name);
0cea0d43
JF
3527 break;
3528
88f66e2d 3529 case REQ_ENTER:
17a27c16
JF
3530 /* After returning the status view has been split to
3531 * show the stage view. No further reloading is
3532 * necessary. */
88f66e2d 3533 status_enter(view, line);
17a27c16 3534 return REQ_NONE;
88f66e2d 3535
acaef3b3 3536 case REQ_REFRESH:
17a27c16 3537 /* Simply reload the view. */
acaef3b3
JF
3538 break;
3539
88f66e2d
JF
3540 default:
3541 return request;
3542 }
3543
17a27c16
JF
3544 open_view(view, REQ_VIEW_STATUS, OPEN_RELOAD);
3545
88f66e2d
JF
3546 return REQ_NONE;
3547}
3548
ca1d71ea 3549static void
173d76ea
JF
3550status_select(struct view *view, struct line *line)
3551{
11359638
JF
3552 struct status *status = line->data;
3553 char file[SIZEOF_STR] = "all files";
173d76ea 3554 char *text;
b5c18d9d 3555 char *key;
173d76ea 3556
11359638
JF
3557 if (status && !string_format(file, "'%s'", status->name))
3558 return;
3559
3560 if (!status && line[1].type == LINE_STAT_NONE)
3561 line++;
3562
173d76ea
JF
3563 switch (line->type) {
3564 case LINE_STAT_STAGED:
11359638 3565 text = "Press %s to unstage %s for commit";
173d76ea
JF
3566 break;
3567
3568 case LINE_STAT_UNSTAGED:
11359638 3569 text = "Press %s to stage %s for commit";
173d76ea
JF
3570 break;
3571
3572 case LINE_STAT_UNTRACKED:
11359638 3573 text = "Press %s to stage %s for addition";
173d76ea
JF
3574 break;
3575
3576 case LINE_STAT_NONE:
11359638
JF
3577 text = "Nothing to update";
3578 break;
173d76ea
JF
3579
3580 default:
3581 die("w00t");
3582 }
3583
b5c18d9d
JF
3584 if (status && status->status == 'U') {
3585 text = "Press %s to resolve conflict in %s";
3586 key = get_key(REQ_STATUS_MERGE);
3587
3588 } else {
3589 key = get_key(REQ_STATUS_UPDATE);
3590 }
3591
3592 string_format(view->ref, text, key, file);
173d76ea
JF
3593}
3594
3595static bool
3596status_grep(struct view *view, struct line *line)
3597{
3598 struct status *status = line->data;
3599 enum { S_STATUS, S_NAME, S_END } state;
3600 char buf[2] = "?";
3601 regmatch_t pmatch;
3602
3603 if (!status)
3604 return FALSE;
3605
3606 for (state = S_STATUS; state < S_END; state++) {
3607 char *text;
3608
3609 switch (state) {
3610 case S_NAME: text = status->name; break;
3611 case S_STATUS:
3612 buf[0] = status->status;
3613 text = buf;
3614 break;
3615
3616 default:
3617 return FALSE;
3618 }
3619
3620 if (regexec(view->regex, text, 1, &pmatch, 0) != REG_NOMATCH)
3621 return TRUE;
3622 }
3623
3624 return FALSE;
3625}
3626
3627static struct view_ops status_ops = {
3628 "file",
3629 status_open,
3630 NULL,
3631 status_draw,
586c423d 3632 status_request,
173d76ea
JF
3633 status_grep,
3634 status_select,
3635};
3636
b33611d8
JF
3637
3638static bool
3639stage_diff_line(FILE *pipe, struct line *line)
3640{
3641 char *buf = line->data;
3642 size_t bufsize = strlen(buf);
3643 size_t written = 0;
3644
3645 while (!ferror(pipe) && written < bufsize) {
3646 written += fwrite(buf + written, 1, bufsize - written, pipe);
3647 }
3648
3649 fputc('\n', pipe);
3650
3651 return written == bufsize;
3652}
3653
3654static struct line *
3655stage_diff_hdr(struct view *view, struct line *line)
3656{
3657 int diff_hdr_dir = line->type == LINE_DIFF_CHUNK ? -1 : 1;
3658 struct line *diff_hdr;
3659
3660 if (line->type == LINE_DIFF_CHUNK)
3661 diff_hdr = line - 1;
3662 else
3663 diff_hdr = view->line + 1;
3664
3665 while (diff_hdr > view->line && diff_hdr < view->line + view->lines) {
3666 if (diff_hdr->type == LINE_DIFF_HEADER)
3667 return diff_hdr;
3668
3669 diff_hdr += diff_hdr_dir;
3670 }
3671
3672 return NULL;
3673}
3674
3675static bool
3676stage_update_chunk(struct view *view, struct line *line)
3677{
3678 char cmd[SIZEOF_STR];
3679 size_t cmdsize = 0;
3680 struct line *diff_hdr, *diff_chunk, *diff_end;
3681 FILE *pipe;
3682
3683 diff_hdr = stage_diff_hdr(view, line);
3684 if (!diff_hdr)
3685 return FALSE;
3686
3687 if (opt_cdup[0] &&
3688 !string_format_from(cmd, &cmdsize, "cd %s;", opt_cdup))
3689 return FALSE;
3690
3691 if (!string_format_from(cmd, &cmdsize,
3692 "git apply --cached %s - && "
3693 "git update-index -q --unmerged --refresh 2>/dev/null",
3694 stage_line_type == LINE_STAT_STAGED ? "-R" : ""))
3695 return FALSE;
3696
3697 pipe = popen(cmd, "w");
3698 if (!pipe)
3699 return FALSE;
3700
3701 diff_end = view->line + view->lines;
3702 if (line->type != LINE_DIFF_CHUNK) {
3703 diff_chunk = diff_hdr;
3704
3705 } else {
3706 for (diff_chunk = line + 1; diff_chunk < diff_end; diff_chunk++)
3707 if (diff_chunk->type == LINE_DIFF_CHUNK ||
3708 diff_chunk->type == LINE_DIFF_HEADER)
3709 diff_end = diff_chunk;
3710
3711 diff_chunk = line;
3712
3713 while (diff_hdr->type != LINE_DIFF_CHUNK) {
3714 switch (diff_hdr->type) {
3715 case LINE_DIFF_HEADER:
3716 case LINE_DIFF_INDEX:
3717 case LINE_DIFF_ADD:
3718 case LINE_DIFF_DEL:
3719 break;
3720
3721 default:
3722 diff_hdr++;
3723 continue;
3724 }
3725
3726 if (!stage_diff_line(pipe, diff_hdr++)) {
3727 pclose(pipe);
3728 return FALSE;
3729 }
3730 }
3731 }
3732
3733 while (diff_chunk < diff_end && stage_diff_line(pipe, diff_chunk))
3734 diff_chunk++;
3735
3736 pclose(pipe);
3737
3738 if (diff_chunk != diff_end)
3739 return FALSE;
3740
3741 return TRUE;
3742}
3743
3744static void
3745stage_update(struct view *view, struct line *line)
3746{
3747 if (stage_line_type != LINE_STAT_UNTRACKED &&
3748 (line->type == LINE_DIFF_CHUNK || !stage_status.status)) {
3749 if (!stage_update_chunk(view, line)) {
3750 report("Failed to apply chunk");
3751 return;
3752 }
3753
3754 } else if (!status_update_file(view, &stage_status, stage_line_type)) {
3755 report("Failed to update file");
3756 return;
3757 }
3758
3759 open_view(view, REQ_VIEW_STATUS, OPEN_RELOAD);
3760
3761 view = VIEW(REQ_VIEW_STATUS);
3762 if (view_is_displayed(view))
3763 status_enter(view, &view->line[view->lineno]);
3764}
3765
3766static enum request
3767stage_request(struct view *view, enum request request, struct line *line)
3768{
3769 switch (request) {
3770 case REQ_STATUS_UPDATE:
3771 stage_update(view, line);
3772 break;
3773
3774 case REQ_EDIT:
3775 if (!stage_status.name[0])
3776 return request;
3777
3dd65d95 3778 open_editor(stage_status.status != '?', stage_status.name);
b33611d8
JF
3779 break;
3780
3781 case REQ_ENTER:
3782 pager_request(view, request, line);
3783 break;
3784
3785 default:
3786 return request;
3787 }
3788
3789 return REQ_NONE;
3790}
3791
3e634113
JF
3792static struct view_ops stage_ops = {
3793 "line",
3794 NULL,
3795 pager_read,
3796 pager_draw,
b33611d8 3797 stage_request,
3e634113
JF
3798 pager_grep,
3799 pager_select,
3800};
173d76ea 3801
b33611d8 3802
173d76ea 3803/*
ccc33449 3804 * Revision graph
ff26aa29
JF
3805 */
3806
3807struct commit {
10446330 3808 char id[SIZEOF_REV]; /* SHA1 ID. */
aea510c8 3809 char title[128]; /* First line of the commit message. */
54efb62b
JF
3810 char author[75]; /* Author of the commit. */
3811 struct tm time; /* Date from the author ident. */
3812 struct ref **refs; /* Repository references. */
3813 chtype graph[SIZEOF_REVGRAPH]; /* Ancestry chain graphics. */
3814 size_t graph_size; /* The width of the graph array. */
ff26aa29 3815};
c34d9c9f 3816
ccc33449
JF
3817/* Size of rev graph with no "padding" columns */
3818#define SIZEOF_REVITEMS (SIZEOF_REVGRAPH - (SIZEOF_REVGRAPH / 2))
2b757533 3819
2ce5c87c
JF
3820struct rev_graph {
3821 struct rev_graph *prev, *next, *parents;
2b757533
JF
3822 char rev[SIZEOF_REVITEMS][SIZEOF_REV];
3823 size_t size;
88757ebd
JF
3824 struct commit *commit;
3825 size_t pos;
2b757533
JF
3826};
3827
2b757533 3828/* Parents of the commit being visualized. */
446a5c36 3829static struct rev_graph graph_parents[4];
c8d60a25 3830
c65a501a 3831/* The current stack of revisions on the graph. */
446a5c36
JF
3832static struct rev_graph graph_stacks[4] = {
3833 { &graph_stacks[3], &graph_stacks[1], &graph_parents[0] },
c65a501a 3834 { &graph_stacks[0], &graph_stacks[2], &graph_parents[1] },
446a5c36
JF
3835 { &graph_stacks[1], &graph_stacks[3], &graph_parents[2] },
3836 { &graph_stacks[2], &graph_stacks[0], &graph_parents[3] },
c65a501a
JF
3837};
3838
9e43b9cd 3839static inline bool
2ce5c87c 3840graph_parent_is_merge(struct rev_graph *graph)
9e43b9cd
JF
3841{
3842 return graph->parents->size > 1;
3843}
3844
88757ebd 3845static inline void
2ce5c87c 3846append_to_rev_graph(struct rev_graph *graph, chtype symbol)
88757ebd 3847{
2c27faac
JF
3848 struct commit *commit = graph->commit;
3849
3850 if (commit->graph_size < ARRAY_SIZE(commit->graph) - 1)
3851 commit->graph[commit->graph_size++] = symbol;
88757ebd
JF
3852}
3853
2b757533 3854static void
2ce5c87c 3855done_rev_graph(struct rev_graph *graph)
987890af
JF
3856{
3857 if (graph_parent_is_merge(graph) &&
3858 graph->pos < graph->size - 1 &&
3859 graph->next->size == graph->size + graph->parents->size - 1) {
3860 size_t i = graph->pos + graph->parents->size - 1;
3861
3862 graph->commit->graph_size = i * 2;
3863 while (i < graph->next->size - 1) {
3864 append_to_rev_graph(graph, ' ');
3865 append_to_rev_graph(graph, '\\');
3866 i++;
3867 }
3868 }
3869
3870 graph->size = graph->pos = 0;
3871 graph->commit = NULL;
3872 memset(graph->parents, 0, sizeof(*graph->parents));
3873}
3874
3875static void
2ce5c87c 3876push_rev_graph(struct rev_graph *graph, char *parent)
2b757533 3877{
2fe894e6
JF
3878 int i;
3879
3880 /* "Collapse" duplicate parents lines.
3881 *
3882 * FIXME: This needs to also update update the drawn graph but
3883 * for now it just serves as a method for pruning graph lines. */
3884 for (i = 0; i < graph->size; i++)
3885 if (!strncmp(graph->rev[i], parent, SIZEOF_REV))
3886 return;
2b757533 3887
2ce5c87c 3888 if (graph->size < SIZEOF_REVITEMS) {
739e81de 3889 string_copy_rev(graph->rev[graph->size++], parent);
2b757533
JF
3890 }
3891}
3892
92507a24
JF
3893static chtype
3894get_rev_graph_symbol(struct rev_graph *graph)
2b757533 3895{
92507a24 3896 chtype symbol;
2b757533 3897
c65a501a 3898 if (graph->parents->size == 0)
c8d60a25 3899 symbol = REVGRAPH_INIT;
18ffaa23 3900 else if (graph_parent_is_merge(graph))
c8d60a25 3901 symbol = REVGRAPH_MERGE;
c65a501a 3902 else if (graph->pos >= graph->size)
c8d60a25 3903 symbol = REVGRAPH_BRANCH;
2b757533 3904 else
c8d60a25 3905 symbol = REVGRAPH_COMMIT;
1dcb3bec 3906
92507a24
JF
3907 return symbol;
3908}
3909
3910static void
3911draw_rev_graph(struct rev_graph *graph)
3912{
e937c2c8
JF
3913 struct rev_filler {
3914 chtype separator, line;
3915 };
3916 enum { DEFAULT, RSHARP, RDIAG, LDIAG };
3917 static struct rev_filler fillers[] = {
3918 { ' ', REVGRAPH_LINE },
3919 { '`', '.' },
3920 { '\'', ' ' },
3921 { '/', ' ' },
e937c2c8 3922 };
92507a24 3923 chtype symbol = get_rev_graph_symbol(graph);
e937c2c8 3924 struct rev_filler *filler;
92507a24
JF
3925 size_t i;
3926
e937c2c8 3927 filler = &fillers[DEFAULT];
110e948e 3928
c65a501a 3929 for (i = 0; i < graph->pos; i++) {
e937c2c8 3930 append_to_rev_graph(graph, filler->line);
9e43b9cd 3931 if (graph_parent_is_merge(graph->prev) &&
e937c2c8
JF
3932 graph->prev->pos == i)
3933 filler = &fillers[RSHARP];
3934
3935 append_to_rev_graph(graph, filler->separator);
110e948e
JF
3936 }
3937
92507a24 3938 /* Place the symbol for this revision. */
c65a501a 3939 append_to_rev_graph(graph, symbol);
2b757533 3940
e937c2c8
JF
3941 if (graph->prev->size > graph->size)
3942 filler = &fillers[RDIAG];
3943 else
3944 filler = &fillers[DEFAULT];
3945
c8d60a25 3946 i++;
2b757533 3947
c65a501a 3948 for (; i < graph->size; i++) {
e937c2c8
JF
3949 append_to_rev_graph(graph, filler->separator);
3950 append_to_rev_graph(graph, filler->line);
3951 if (graph_parent_is_merge(graph->prev) &&
3952 i < graph->prev->pos + graph->parents->size)
3953 filler = &fillers[RSHARP];
3954 if (graph->prev->size > graph->size)
3955 filler = &fillers[LDIAG];
c65a501a
JF
3956 }
3957
3958 if (graph->prev->size > graph->size) {
e937c2c8
JF
3959 append_to_rev_graph(graph, filler->separator);
3960 if (filler->line != ' ')
3961 append_to_rev_graph(graph, filler->line);
2b757533 3962 }
b5d8f208
JF
3963}
3964
61eed810
JF
3965/* Prepare the next rev graph */
3966static void
3967prepare_rev_graph(struct rev_graph *graph)
b5d8f208 3968{
b5d8f208
JF
3969 size_t i;
3970
320df4ea 3971 /* First, traverse all lines of revisions up to the active one. */
c65a501a
JF
3972 for (graph->pos = 0; graph->pos < graph->size; graph->pos++) {
3973 if (!strcmp(graph->rev[graph->pos], graph->commit->id))
b5d8f208 3974 break;
b5d8f208 3975
2ce5c87c 3976 push_rev_graph(graph->next, graph->rev[graph->pos]);
b5d8f208
JF
3977 }
3978
320df4ea 3979 /* Interleave the new revision parent(s). */
c65a501a 3980 for (i = 0; i < graph->parents->size; i++)
2ce5c87c 3981 push_rev_graph(graph->next, graph->parents->rev[i]);
b5d8f208 3982
320df4ea 3983 /* Lastly, put any remaining revisions. */
c65a501a 3984 for (i = graph->pos + 1; i < graph->size; i++)
2ce5c87c 3985 push_rev_graph(graph->next, graph->rev[i]);
61eed810
JF
3986}
3987
3988static void
3989update_rev_graph(struct rev_graph *graph)
3990{
446a5c36
JF
3991 /* If this is the finalizing update ... */
3992 if (graph->commit)
3993 prepare_rev_graph(graph);
3994
3995 /* Graph visualization needs a one rev look-ahead,
3996 * so the first update doesn't visualize anything. */
3997 if (!graph->prev->commit)
3998 return;
c65a501a 3999
61eed810
JF
4000 draw_rev_graph(graph->prev);
4001 done_rev_graph(graph->prev->prev);
2b757533
JF
4002}
4003
ccc33449
JF
4004
4005/*
4006 * Main view backend
4007 */
4008
4009static bool
4010main_draw(struct view *view, struct line *line, unsigned int lineno, bool selected)
4011{
4012 char buf[DATE_COLS + 1];
4013 struct commit *commit = line->data;
4014 enum line_type type;
4015 int col = 0;
4016 size_t timelen;
4017 size_t authorlen;
4018 int trimmed = 1;
4019
4020 if (!*commit->author)
4021 return FALSE;
4022
4023 wmove(view->win, lineno, col);
4024
4025 if (selected) {
4026 type = LINE_CURSOR;
4027 wattrset(view->win, get_line_attr(type));
4028 wchgat(view->win, -1, 0, type, NULL);
4029
4030 } else {
4031 type = LINE_MAIN_COMMIT;
4032 wattrset(view->win, get_line_attr(LINE_MAIN_DATE));
4033 }
4034
4035 timelen = strftime(buf, sizeof(buf), DATE_FORMAT, &commit->time);
4036 waddnstr(view->win, buf, timelen);
4037 waddstr(view->win, " ");
4038
4039 col += DATE_COLS;
4040 wmove(view->win, lineno, col);
4041 if (type != LINE_CURSOR)
4042 wattrset(view->win, get_line_attr(LINE_MAIN_AUTHOR));
4043
4044 if (opt_utf8) {
4045 authorlen = utf8_length(commit->author, AUTHOR_COLS - 2, &col, &trimmed);
4046 } else {
4047 authorlen = strlen(commit->author);
4048 if (authorlen > AUTHOR_COLS - 2) {
4049 authorlen = AUTHOR_COLS - 2;
4050 trimmed = 1;
4051 }
4052 }
4053
4054 if (trimmed) {
4055 waddnstr(view->win, commit->author, authorlen);
4056 if (type != LINE_CURSOR)
4057 wattrset(view->win, get_line_attr(LINE_MAIN_DELIM));
4058 waddch(view->win, '~');
4059 } else {
4060 waddstr(view->win, commit->author);
4061 }
4062
4063 col += AUTHOR_COLS;
4064 if (type != LINE_CURSOR)
4065 wattrset(view->win, A_NORMAL);
4066
4067 if (opt_rev_graph && commit->graph_size) {
4068 size_t i;
4069
4070 wmove(view->win, lineno, col);
4071 /* Using waddch() instead of waddnstr() ensures that
4072 * they'll be rendered correctly for the cursor line. */
4073 for (i = 0; i < commit->graph_size; i++)
4074 waddch(view->win, commit->graph[i]);
4075
8716b9ed 4076 waddch(view->win, ' ');
ccc33449
JF
4077 col += commit->graph_size + 1;
4078 }
4079
4080 wmove(view->win, lineno, col);
4081
4082 if (commit->refs) {
4083 size_t i = 0;
4084
4085 do {
4086 if (type == LINE_CURSOR)
4087 ;
4088 else if (commit->refs[i]->tag)
4089 wattrset(view->win, get_line_attr(LINE_MAIN_TAG));
e15ec88e
JF
4090 else if (commit->refs[i]->remote)
4091 wattrset(view->win, get_line_attr(LINE_MAIN_REMOTE));
ccc33449
JF
4092 else
4093 wattrset(view->win, get_line_attr(LINE_MAIN_REF));
4094 waddstr(view->win, "[");
4095 waddstr(view->win, commit->refs[i]->name);
4096 waddstr(view->win, "]");
4097 if (type != LINE_CURSOR)
4098 wattrset(view->win, A_NORMAL);
4099 waddstr(view->win, " ");
4100 col += strlen(commit->refs[i]->name) + STRING_SIZE("[] ");
4101 } while (commit->refs[i++]->next);
4102 }
4103
4104 if (type != LINE_CURSOR)
4105 wattrset(view->win, get_line_attr(type));
4106
4107 {
4108 int titlelen = strlen(commit->title);
4109
4110 if (col + titlelen > view->width)
4111 titlelen = view->width - col;
4112
4113 waddnstr(view->win, commit->title, titlelen);
4114 }
4115
4116 return TRUE;
4117}
4118
4c6fabc2 4119/* Reads git log --pretty=raw output and parses it into the commit struct. */
6b161b31 4120static bool
701e4f5d 4121main_read(struct view *view, char *line)
22f66b0a 4122{
2ce5c87c 4123 static struct rev_graph *graph = graph_stacks;
be04d936 4124 enum line_type type;
0ff3b97c 4125 struct commit *commit;
22f66b0a 4126
be04d936 4127 if (!line) {
446a5c36 4128 update_rev_graph(graph);
be04d936
JF
4129 return TRUE;
4130 }
4131
4132 type = get_line_type(line);
0ff3b97c 4133 if (type == LINE_COMMIT) {
22f66b0a
JF
4134 commit = calloc(1, sizeof(struct commit));
4135 if (!commit)
4136 return FALSE;
4137
0ff3b97c 4138 string_copy_rev(commit->id, line + STRING_SIZE("commit "));
c34d9c9f 4139 commit->refs = get_refs(commit->id);
c65a501a 4140 graph->commit = commit;
e314c36d 4141 add_line_data(view, commit, LINE_MAIN_COMMIT);
0ff3b97c
JF
4142 return TRUE;
4143 }
2b757533 4144
0ff3b97c
JF
4145 if (!view->lines)
4146 return TRUE;
4147 commit = view->line[view->lines - 1].data;
4148
4149 switch (type) {
2b757533 4150 case LINE_PARENT:
0ff3b97c 4151 push_rev_graph(graph->parents, line + STRING_SIZE("parent "));
78c70acd 4152 break;
22f66b0a 4153
8855ada4 4154 case LINE_AUTHOR:
b76c2afc 4155 {
19c3ac60
JF
4156 /* Parse author lines where the name may be empty:
4157 * author <email@address.tld> 1138474660 +0100
4158 */
4c6fabc2 4159 char *ident = line + STRING_SIZE("author ");
19c3ac60
JF
4160 char *nameend = strchr(ident, '<');
4161 char *emailend = strchr(ident, '>');
b76c2afc 4162
0ff3b97c 4163 if (!nameend || !emailend)
fe7233c3
JF
4164 break;
4165
c65a501a
JF
4166 update_rev_graph(graph);
4167 graph = graph->next;
2b757533 4168
19c3ac60
JF
4169 *nameend = *emailend = 0;
4170 ident = chomp_string(ident);
4171 if (!*ident) {
4172 ident = chomp_string(nameend + 1);
4173 if (!*ident)
4174 ident = "Unknown";
b76c2afc
JF
4175 }
4176
739e81de 4177 string_ncopy(commit->author, ident, strlen(ident));
b76c2afc 4178
4c6fabc2 4179 /* Parse epoch and timezone */
19c3ac60
JF
4180 if (emailend[1] == ' ') {
4181 char *secs = emailend + 2;
4182 char *zone = strchr(secs, ' ');
4183 time_t time = (time_t) atol(secs);
b76c2afc 4184
4c6fabc2 4185 if (zone && strlen(zone) == STRING_SIZE(" +0700")) {
b76c2afc
JF
4186 long tz;
4187
4188 zone++;
4189 tz = ('0' - zone[1]) * 60 * 60 * 10;
4190 tz += ('0' - zone[2]) * 60 * 60;
4191 tz += ('0' - zone[3]) * 60;
4192 tz += ('0' - zone[4]) * 60;
4193
4194 if (zone[0] == '-')
4195 tz = -tz;
4196
4197 time -= tz;
4198 }
19c3ac60 4199
b76c2afc
JF
4200 gmtime_r(&time, &commit->time);
4201 }
4202 break;
4203 }
78c70acd 4204 default:
2e8488b4 4205 /* Fill in the commit title if it has not already been set. */
2e8488b4
JF
4206 if (commit->title[0])
4207 break;
4208
4209 /* Require titles to start with a non-space character at the
4210 * offset used by git log. */
9073c64a
JF
4211 if (strncmp(line, " ", 4))
4212 break;
4213 line += 4;
4214 /* Well, if the title starts with a whitespace character,
4215 * try to be forgiving. Otherwise we end up with no title. */
4216 while (isspace(*line))
4217 line++;
4218 if (*line == '\0')
82e78006 4219 break;
9073c64a
JF
4220 /* FIXME: More graceful handling of titles; append "..." to
4221 * shortened titles, etc. */
82e78006 4222
739e81de 4223 string_ncopy(commit->title, line, strlen(line));
22f66b0a
JF
4224 }
4225
4226 return TRUE;
4227}
4228
226da94b
JF
4229static void
4230cherry_pick_commit(struct commit *commit)
4231{
4232 char cmd[SIZEOF_STR];
4233 char *cherry_pick = getenv("TIG_CHERRY_PICK");
4234
4235 if (!cherry_pick)
4236 cherry_pick = "git cherry-pick";
4237
4238 if (string_format(cmd, "%s %s", cherry_pick, commit->id)) {
d24ef76c 4239 open_external_viewer(cmd);
226da94b
JF
4240 }
4241}
4242
586c423d
JF
4243static enum request
4244main_request(struct view *view, enum request request, struct line *line)
b801d8b2 4245{
b3a54cba
JF
4246 enum open_flags flags = display[0] == view ? OPEN_SPLIT : OPEN_DEFAULT;
4247
586c423d
JF
4248 if (request == REQ_ENTER)
4249 open_view(view, REQ_VIEW_DIFF, flags);
226da94b
JF
4250 else if (request == REQ_CHERRY_PICK)
4251 cherry_pick_commit(line->data);
586c423d
JF
4252 else
4253 return request;
4254
4255 return REQ_NONE;
b801d8b2
JF
4256}
4257
4af34daa
JF
4258static bool
4259main_grep(struct view *view, struct line *line)
4260{
4261 struct commit *commit = line->data;
4262 enum { S_TITLE, S_AUTHOR, S_DATE, S_END } state;
4263 char buf[DATE_COLS + 1];
4264 regmatch_t pmatch;
4265
4266 for (state = S_TITLE; state < S_END; state++) {
4267 char *text;
4268
4269 switch (state) {
4270 case S_TITLE: text = commit->title; break;
4271 case S_AUTHOR: text = commit->author; break;
4272 case S_DATE:
4273 if (!strftime(buf, sizeof(buf), DATE_FORMAT, &commit->time))
4274 continue;
4275 text = buf;
4276 break;
4277
4278 default:
4279 return FALSE;
4280 }
4281
b77b2cb8 4282 if (regexec(view->regex, text, 1, &pmatch, 0) != REG_NOMATCH)
4af34daa
JF
4283 return TRUE;
4284 }
4285
4286 return FALSE;
4287}
4288
d720de4b
JF
4289static void
4290main_select(struct view *view, struct line *line)
4291{
4292 struct commit *commit = line->data;
4293
2463b4ea
JF
4294 string_copy_rev(view->ref, commit->id);
4295 string_copy_rev(ref_commit, view->ref);
d720de4b
JF
4296}
4297
6b161b31 4298static struct view_ops main_ops = {
6734f6b9 4299 "commit",
f098944b 4300 NULL,
6b161b31 4301 main_read,
f098944b 4302 main_draw,
586c423d 4303 main_request,
4af34daa 4304 main_grep,
d720de4b 4305 main_select,
6b161b31 4306};
2e8488b4 4307
c34d9c9f 4308
6b161b31 4309/*
10e290ee
JF
4310 * Unicode / UTF-8 handling
4311 *
4312 * NOTE: Much of the following code for dealing with unicode is derived from
4313 * ELinks' UTF-8 code developed by Scrool <scroolik@gmail.com>. Origin file is
4314 * src/intl/charset.c from the utf8 branch commit elinks-0.11.0-g31f2c28.
4315 */
4316
4317/* I've (over)annotated a lot of code snippets because I am not entirely
4318 * confident that the approach taken by this small UTF-8 interface is correct.
4319 * --jonas */
4320
4321static inline int
4322unicode_width(unsigned long c)
4323{
4324 if (c >= 0x1100 &&
4325 (c <= 0x115f /* Hangul Jamo */
4326 || c == 0x2329
4327 || c == 0x232a
4328 || (c >= 0x2e80 && c <= 0xa4cf && c != 0x303f)
f97f4012 4329 /* CJK ... Yi */
10e290ee
JF
4330 || (c >= 0xac00 && c <= 0xd7a3) /* Hangul Syllables */
4331 || (c >= 0xf900 && c <= 0xfaff) /* CJK Compatibility Ideographs */
4332 || (c >= 0xfe30 && c <= 0xfe6f) /* CJK Compatibility Forms */
4333 || (c >= 0xff00 && c <= 0xff60) /* Fullwidth Forms */
4334 || (c >= 0xffe0 && c <= 0xffe6)
4335 || (c >= 0x20000 && c <= 0x2fffd)
4336 || (c >= 0x30000 && c <= 0x3fffd)))
4337 return 2;
4338
4339 return 1;
4340}
4341
4342/* Number of bytes used for encoding a UTF-8 character indexed by first byte.
4343 * Illegal bytes are set one. */
4344static const unsigned char utf8_bytes[256] = {
4345 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,
4346 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,
4347 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,
4348 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,
4349 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,
4350 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,
4351 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,
4352 3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 5,5,5,5,6,6,1,1,
4353};
4354
4355/* Decode UTF-8 multi-byte representation into a unicode character. */
4356static inline unsigned long
4357utf8_to_unicode(const char *string, size_t length)
4358{
4359 unsigned long unicode;
4360
4361 switch (length) {
4362 case 1:
4363 unicode = string[0];
4364 break;
4365 case 2:
4366 unicode = (string[0] & 0x1f) << 6;
4367 unicode += (string[1] & 0x3f);
4368 break;
4369 case 3:
4370 unicode = (string[0] & 0x0f) << 12;
4371 unicode += ((string[1] & 0x3f) << 6);
4372 unicode += (string[2] & 0x3f);
4373 break;
4374 case 4:
4375 unicode = (string[0] & 0x0f) << 18;
4376 unicode += ((string[1] & 0x3f) << 12);
4377 unicode += ((string[2] & 0x3f) << 6);
4378 unicode += (string[3] & 0x3f);
4379 break;
4380 case 5:
4381 unicode = (string[0] & 0x0f) << 24;
4382 unicode += ((string[1] & 0x3f) << 18);
4383 unicode += ((string[2] & 0x3f) << 12);
4384 unicode += ((string[3] & 0x3f) << 6);
4385 unicode += (string[4] & 0x3f);
4386 break;
68b6e0eb 4387 case 6:
10e290ee
JF
4388 unicode = (string[0] & 0x01) << 30;
4389 unicode += ((string[1] & 0x3f) << 24);
4390 unicode += ((string[2] & 0x3f) << 18);
4391 unicode += ((string[3] & 0x3f) << 12);
4392 unicode += ((string[4] & 0x3f) << 6);
4393 unicode += (string[5] & 0x3f);
4394 break;
4395 default:
4396 die("Invalid unicode length");
4397 }
4398
4399 /* Invalid characters could return the special 0xfffd value but NUL
4400 * should be just as good. */
4401 return unicode > 0xffff ? 0 : unicode;
4402}
4403
4404/* Calculates how much of string can be shown within the given maximum width
4405 * and sets trimmed parameter to non-zero value if all of string could not be
4406 * shown.
4407 *
4408 * Additionally, adds to coloffset how many many columns to move to align with
4409 * the expected position. Takes into account how multi-byte and double-width
4410 * characters will effect the cursor position.
4411 *
4412 * Returns the number of bytes to output from string to satisfy max_width. */
4413static size_t
4414utf8_length(const char *string, size_t max_width, int *coloffset, int *trimmed)
4415{
4416 const char *start = string;
4417 const char *end = strchr(string, '\0');
4418 size_t mbwidth = 0;
4419 size_t width = 0;
4420
4421 *trimmed = 0;
4422
4423 while (string < end) {
4424 int c = *(unsigned char *) string;
4425 unsigned char bytes = utf8_bytes[c];
4426 size_t ucwidth;
4427 unsigned long unicode;
4428
4429 if (string + bytes > end)
4430 break;
4431
4432 /* Change representation to figure out whether
4433 * it is a single- or double-width character. */
4434
4435 unicode = utf8_to_unicode(string, bytes);
4436 /* FIXME: Graceful handling of invalid unicode character. */
4437 if (!unicode)
4438 break;
4439
4440 ucwidth = unicode_width(unicode);
4441 width += ucwidth;
4442 if (width > max_width) {
4443 *trimmed = 1;
4444 break;
4445 }
4446
4447 /* The column offset collects the differences between the
4448 * number of bytes encoding a character and the number of
4449 * columns will be used for rendering said character.
4450 *
4451 * So if some character A is encoded in 2 bytes, but will be
4452 * represented on the screen using only 1 byte this will and up
4453 * adding 1 to the multi-byte column offset.
4454 *
4455 * Assumes that no double-width character can be encoding in
4456 * less than two bytes. */
4457 if (bytes > ucwidth)
4458 mbwidth += bytes - ucwidth;
4459
4460 string += bytes;
4461 }
4462
4463 *coloffset += mbwidth;
4464
4465 return string - start;
4466}
4467
4468
4469/*
6b161b31
JF
4470 * Status management
4471 */
2e8488b4 4472
8855ada4 4473/* Whether or not the curses interface has been initialized. */
68b6e0eb 4474static bool cursed = FALSE;
8855ada4 4475
6b161b31
JF
4476/* The status window is used for polling keystrokes. */
4477static WINDOW *status_win;
4a2909a7 4478
21be28fb
JF
4479static bool status_empty = TRUE;
4480
2e8488b4 4481/* Update status and title window. */
4a2909a7
JF
4482static void
4483report(const char *msg, ...)
4484{
6706b2ba 4485 struct view *view = display[current_view];
b76c2afc 4486
ab4af23e
JF
4487 if (input_mode)
4488 return;
4489
c38c64bb
JF
4490 if (!view) {
4491 char buf[SIZEOF_STR];
4492 va_list args;
4493
4494 va_start(args, msg);
4495 if (vsnprintf(buf, sizeof(buf), msg, args) >= sizeof(buf)) {
4496 buf[sizeof(buf) - 1] = 0;
4497 buf[sizeof(buf) - 2] = '.';
4498 buf[sizeof(buf) - 3] = '.';
4499 buf[sizeof(buf) - 4] = '.';
4500 }
4501 va_end(args);
4502 die("%s", buf);
4503 }
4504
21be28fb 4505 if (!status_empty || *msg) {
6706b2ba 4506 va_list args;
4a2909a7 4507
6706b2ba 4508 va_start(args, msg);
4b76734f 4509
6706b2ba
JF
4510 wmove(status_win, 0, 0);
4511 if (*msg) {
4512 vwprintw(status_win, msg, args);
21be28fb 4513 status_empty = FALSE;
6706b2ba 4514 } else {
21be28fb 4515 status_empty = TRUE;
6706b2ba 4516 }
390a8262 4517 wclrtoeol(status_win);
6706b2ba 4518 wrefresh(status_win);
b801d8b2 4519
6706b2ba
JF
4520 va_end(args);
4521 }
4522
4523 update_view_title(view);
2bee3bde 4524 update_display_cursor(view);
b801d8b2
JF
4525}
4526
6b161b31
JF
4527/* Controls when nodelay should be in effect when polling user input. */
4528static void
1ba2ae4b 4529set_nonblocking_input(bool loading)
b801d8b2 4530{
6706b2ba 4531 static unsigned int loading_views;
b801d8b2 4532
6706b2ba
JF
4533 if ((loading == FALSE && loading_views-- == 1) ||
4534 (loading == TRUE && loading_views++ == 0))
1ba2ae4b 4535 nodelay(status_win, loading);
6b161b31
JF
4536}
4537
4538static void
4539init_display(void)
4540{
4541 int x, y;
b76c2afc 4542
6908bdbd
JF
4543 /* Initialize the curses library */
4544 if (isatty(STDIN_FILENO)) {
8855ada4 4545 cursed = !!initscr();
6908bdbd
JF
4546 } else {
4547 /* Leave stdin and stdout alone when acting as a pager. */
4548 FILE *io = fopen("/dev/tty", "r+");
4549
e6f60674
JF
4550 if (!io)
4551 die("Failed to open /dev/tty");
8855ada4 4552 cursed = !!newterm(NULL, io, io);
6908bdbd
JF
4553 }
4554
8855ada4
JF
4555 if (!cursed)
4556 die("Failed to initialize curses");
4557
2e8488b4
JF
4558 nonl(); /* Tell curses not to do NL->CR/NL on output */
4559 cbreak(); /* Take input chars one at a time, no wait for \n */
4560 noecho(); /* Don't echo input */
b801d8b2 4561 leaveok(stdscr, TRUE);
b801d8b2
JF
4562
4563 if (has_colors())
4564 init_colors();
4565
4566 getmaxyx(stdscr, y, x);
4567 status_win = newwin(1, 0, y - 1, 0);
4568 if (!status_win)
4569 die("Failed to create status window");
4570
4571 /* Enable keyboard mapping */
4572 keypad(status_win, TRUE);
78c70acd 4573 wbkgdset(status_win, get_line_attr(LINE_STATUS));
6b161b31
JF
4574}
4575
4af34daa 4576static char *
cb9e48c1 4577read_prompt(const char *prompt)
ef5404a4
JF
4578{
4579 enum { READING, STOP, CANCEL } status = READING;
9e21ce5c 4580 static char buf[sizeof(opt_cmd) - STRING_SIZE("git \0")];
ef5404a4
JF
4581 int pos = 0;
4582
4583 while (status == READING) {
4584 struct view *view;
4585 int i, key;
4586
ab4af23e
JF
4587 input_mode = TRUE;
4588
699ae55b 4589 foreach_view (view, i)
ef5404a4
JF
4590 update_view(view);
4591
ab4af23e
JF
4592 input_mode = FALSE;
4593
4594 mvwprintw(status_win, 0, 0, "%s%.*s", prompt, pos, buf);
4595 wclrtoeol(status_win);
4596
ef5404a4
JF
4597 /* Refresh, accept single keystroke of input */
4598 key = wgetch(status_win);
4599 switch (key) {
4600 case KEY_RETURN:
4601 case KEY_ENTER:
4602 case '\n':
4603 status = pos ? STOP : CANCEL;
4604 break;
4605
4606 case KEY_BACKSPACE:
4607 if (pos > 0)
4608 pos--;
4609 else
4610 status = CANCEL;
4611 break;
4612
4613 case KEY_ESC:
4614 status = CANCEL;
4615 break;
4616
4617 case ERR:
4618 break;
4619
4620 default:
4621 if (pos >= sizeof(buf)) {
4622 report("Input string too long");
9e21ce5c 4623 return NULL;
ef5404a4
JF
4624 }
4625
4626 if (isprint(key))
4627 buf[pos++] = (char) key;
4628 }
4629 }
4630
7a06ebdf
JF
4631 /* Clear the status window */
4632 status_empty = FALSE;
4633 report("");
4634
4635 if (status == CANCEL)
9e21ce5c 4636 return NULL;
ef5404a4
JF
4637
4638 buf[pos++] = 0;
ef5404a4 4639
9e21ce5c 4640 return buf;
ef5404a4 4641}
c34d9c9f
JF
4642
4643/*
4644 * Repository references
4645 */
4646
4647static struct ref *refs;
3a91b75e 4648static size_t refs_size;
c34d9c9f 4649
1307df1a
JF
4650/* Id <-> ref store */
4651static struct ref ***id_refs;
4652static size_t id_refs_size;
4653
c34d9c9f
JF
4654static struct ref **
4655get_refs(char *id)
4656{
1307df1a
JF
4657 struct ref ***tmp_id_refs;
4658 struct ref **ref_list = NULL;
4659 size_t ref_list_size = 0;
c34d9c9f
JF
4660 size_t i;
4661
1307df1a
JF
4662 for (i = 0; i < id_refs_size; i++)
4663 if (!strcmp(id, id_refs[i][0]->id))
4664 return id_refs[i];
4665
4666 tmp_id_refs = realloc(id_refs, (id_refs_size + 1) * sizeof(*id_refs));
4667 if (!tmp_id_refs)
4668 return NULL;
4669
4670 id_refs = tmp_id_refs;
4671
c34d9c9f
JF
4672 for (i = 0; i < refs_size; i++) {
4673 struct ref **tmp;
4674
4675 if (strcmp(id, refs[i].id))
4676 continue;
4677
1307df1a 4678 tmp = realloc(ref_list, (ref_list_size + 1) * sizeof(*ref_list));
c34d9c9f 4679 if (!tmp) {
1307df1a
JF
4680 if (ref_list)
4681 free(ref_list);
c34d9c9f
JF
4682 return NULL;
4683 }
4684
1307df1a
JF
4685 ref_list = tmp;
4686 if (ref_list_size > 0)
4687 ref_list[ref_list_size - 1]->next = 1;
4688 ref_list[ref_list_size] = &refs[i];
3af8774e
JF
4689
4690 /* XXX: The properties of the commit chains ensures that we can
4691 * safely modify the shared ref. The repo references will
4692 * always be similar for the same id. */
1307df1a
JF
4693 ref_list[ref_list_size]->next = 0;
4694 ref_list_size++;
c34d9c9f
JF
4695 }
4696
1307df1a
JF
4697 if (ref_list)
4698 id_refs[id_refs_size++] = ref_list;
4699
4700 return ref_list;
c34d9c9f
JF
4701}
4702
4703static int
5699e0cf 4704read_ref(char *id, size_t idlen, char *name, size_t namelen)
c34d9c9f 4705{
d0cea5f9
JF
4706 struct ref *ref;
4707 bool tag = FALSE;
e15ec88e 4708 bool remote = FALSE;
d0cea5f9 4709
8b0297ae
JF
4710 if (!strncmp(name, "refs/tags/", STRING_SIZE("refs/tags/"))) {
4711 /* Commits referenced by tags has "^{}" appended. */
4712 if (name[namelen - 1] != '}')
4713 return OK;
4714
d0cea5f9
JF
4715 while (namelen > 0 && name[namelen] != '^')
4716 namelen--;
c34d9c9f 4717
d0cea5f9 4718 tag = TRUE;
8b0297ae
JF
4719 namelen -= STRING_SIZE("refs/tags/");
4720 name += STRING_SIZE("refs/tags/");
c34d9c9f 4721
e15ec88e
JF
4722 } else if (!strncmp(name, "refs/remotes/", STRING_SIZE("refs/remotes/"))) {
4723 remote = TRUE;
4724 namelen -= STRING_SIZE("refs/remotes/");
4725 name += STRING_SIZE("refs/remotes/");
4726
d0cea5f9 4727 } else if (!strncmp(name, "refs/heads/", STRING_SIZE("refs/heads/"))) {
8b0297ae
JF
4728 namelen -= STRING_SIZE("refs/heads/");
4729 name += STRING_SIZE("refs/heads/");
c34d9c9f 4730
d0cea5f9
JF
4731 } else if (!strcmp(name, "HEAD")) {
4732 return OK;
4733 }
6706b2ba 4734
d0cea5f9
JF
4735 refs = realloc(refs, sizeof(*refs) * (refs_size + 1));
4736 if (!refs)
4737 return ERR;
c34d9c9f 4738
d0cea5f9 4739 ref = &refs[refs_size++];
8b0297ae 4740 ref->name = malloc(namelen + 1);
d0cea5f9
JF
4741 if (!ref->name)
4742 return ERR;
3af8774e 4743
8b0297ae
JF
4744 strncpy(ref->name, name, namelen);
4745 ref->name[namelen] = 0;
d0cea5f9 4746 ref->tag = tag;
e15ec88e 4747 ref->remote = remote;
2463b4ea 4748 string_copy_rev(ref->id, id);
3af8774e 4749
d0cea5f9
JF
4750 return OK;
4751}
c34d9c9f 4752
d0cea5f9
JF
4753static int
4754load_refs(void)
4755{
4756 const char *cmd_env = getenv("TIG_LS_REMOTE");
4757 const char *cmd = cmd_env && *cmd_env ? cmd_env : TIG_LS_REMOTE;
c34d9c9f 4758
4a63c884 4759 return read_properties(popen(cmd, "r"), "\t", read_ref);
d0cea5f9 4760}
c34d9c9f 4761
d0cea5f9 4762static int
5699e0cf 4763read_repo_config_option(char *name, size_t namelen, char *value, size_t valuelen)
d0cea5f9 4764{
22913179 4765 if (!strcmp(name, "i18n.commitencoding"))
739e81de 4766 string_ncopy(opt_encoding, value, valuelen);
c34d9c9f 4767
0cea0d43
JF
4768 if (!strcmp(name, "core.editor"))
4769 string_ncopy(opt_editor, value, valuelen);
4770
c34d9c9f
JF
4771 return OK;
4772}
4773
4670cf89 4774static int
14c778a6 4775load_repo_config(void)
4670cf89 4776{
96e58f5b 4777 return read_properties(popen(GIT_CONFIG " --list", "r"),
14c778a6 4778 "=", read_repo_config_option);
d0cea5f9
JF
4779}
4780
4781static int
5699e0cf 4782read_repo_info(char *name, size_t namelen, char *value, size_t valuelen)
91c5d983 4783{
c38c64bb 4784 if (!opt_git_dir[0]) {
810f0078 4785 string_ncopy(opt_git_dir, name, namelen);
c38c64bb
JF
4786
4787 } else if (opt_is_inside_work_tree == -1) {
4788 /* This can be 3 different values depending on the
4789 * version of git being used. If git-rev-parse does not
4790 * understand --is-inside-work-tree it will simply echo
4791 * the option else either "true" or "false" is printed.
4792 * Default to true for the unknown case. */
4793 opt_is_inside_work_tree = strcmp(name, "false") ? TRUE : FALSE;
4794
4795 } else {
739e81de 4796 string_ncopy(opt_cdup, name, namelen);
c38c64bb
JF
4797 }
4798
91c5d983
JF
4799 return OK;
4800}
4801
810f0078
JF
4802/* XXX: The line outputted by "--show-cdup" can be empty so the option
4803 * must be the last one! */
91c5d983
JF
4804static int
4805load_repo_info(void)
4806{
c38c64bb 4807 return read_properties(popen("git rev-parse --git-dir --is-inside-work-tree --show-cdup 2>/dev/null", "r"),
91c5d983
JF
4808 "=", read_repo_info);
4809}
4810
4811static int
4a63c884 4812read_properties(FILE *pipe, const char *separators,
5699e0cf 4813 int (*read_property)(char *, size_t, char *, size_t))
d0cea5f9 4814{
4670cf89
JF
4815 char buffer[BUFSIZ];
4816 char *name;
d0cea5f9 4817 int state = OK;
4670cf89
JF
4818
4819 if (!pipe)
4820 return ERR;
4821
d0cea5f9 4822 while (state == OK && (name = fgets(buffer, sizeof(buffer), pipe))) {
4a63c884
JF
4823 char *value;
4824 size_t namelen;
4825 size_t valuelen;
4670cf89 4826
4a63c884
JF
4827 name = chomp_string(name);
4828 namelen = strcspn(name, separators);
4829
4830 if (name[namelen]) {
4831 name[namelen] = 0;
4832 value = chomp_string(name + namelen + 1);
d0cea5f9 4833 valuelen = strlen(value);
4670cf89 4834
d0cea5f9 4835 } else {
d0cea5f9
JF
4836 value = "";
4837 valuelen = 0;
4670cf89 4838 }
d0cea5f9 4839
3c3801c2 4840 state = read_property(name, namelen, value, valuelen);
4670cf89
JF
4841 }
4842
d0cea5f9
JF
4843 if (state != ERR && ferror(pipe))
4844 state = ERR;
4670cf89
JF
4845
4846 pclose(pipe);
4847
d0cea5f9 4848 return state;
4670cf89
JF
4849}
4850
d0cea5f9 4851
6b161b31
JF
4852/*
4853 * Main
4854 */
4855
b5c9e67f 4856static void __NORETURN
6b161b31
JF
4857quit(int sig)
4858{
8855ada4
JF
4859 /* XXX: Restore tty modes and let the OS cleanup the rest! */
4860 if (cursed)
4861 endwin();
6b161b31
JF
4862 exit(0);
4863}
4864
c6704a4e
JF
4865static void __NORETURN
4866die(const char *err, ...)
6b161b31
JF
4867{
4868 va_list args;
4869
4870 endwin();
4871
4872 va_start(args, err);
4873 fputs("tig: ", stderr);
4874 vfprintf(stderr, err, args);
4875 fputs("\n", stderr);
4876 va_end(args);
4877
4878 exit(1);
4879}
4880
4881int
4882main(int argc, char *argv[])
4883{
1ba2ae4b 4884 struct view *view;
6b161b31 4885 enum request request;
1ba2ae4b 4886 size_t i;
6b161b31
JF
4887
4888 signal(SIGINT, quit);
4889
6b68fd24 4890 if (setlocale(LC_ALL, "")) {
739e81de
JF
4891 char *codeset = nl_langinfo(CODESET);
4892
4893 string_ncopy(opt_codeset, codeset, strlen(codeset));
6b68fd24
JF
4894 }
4895
e0f50df0
JF
4896 if (load_repo_info() == ERR)
4897 die("Failed to load repo info.");
4898
660e09ad
JF
4899 if (load_options() == ERR)
4900 die("Failed to load user config.");
4901
4902 /* Load the repo config file so options can be overwritten from
739e81de 4903 * the command line. */
14c778a6 4904 if (load_repo_config() == ERR)
afdc35b3 4905 die("Failed to load repo config.");
91c5d983 4906
8855ada4 4907 if (!parse_options(argc, argv))
6b161b31
JF
4908 return 0;
4909
58a5e4ea
JF
4910 /* Require a git repository unless when running in pager mode. */
4911 if (!opt_git_dir[0])
4912 die("Not a git repository");
4913
6b68fd24
JF
4914 if (*opt_codeset && strcmp(opt_codeset, opt_encoding)) {
4915 opt_iconv = iconv_open(opt_codeset, opt_encoding);
20f4b4a3 4916 if (opt_iconv == ICONV_NONE)
6b68fd24
JF
4917 die("Failed to initialize character set conversion");
4918 }
4919
c34d9c9f
JF
4920 if (load_refs() == ERR)
4921 die("Failed to load refs.");
4922
1ba2ae4b
JF
4923 for (i = 0; i < ARRAY_SIZE(views) && (view = &views[i]); i++)
4924 view->cmd_env = getenv(view->cmd_env);
4925
6b161b31
JF
4926 request = opt_request;
4927
4928 init_display();
b801d8b2
JF
4929
4930 while (view_driver(display[current_view], request)) {
6b161b31 4931 int key;
b801d8b2
JF
4932 int i;
4933
699ae55b 4934 foreach_view (view, i)
6b161b31 4935 update_view(view);
b801d8b2
JF
4936
4937 /* Refresh, accept single keystroke of input */
6b161b31 4938 key = wgetch(status_win);
04e2b7b2 4939
cf4d82e6
JF
4940 /* wgetch() with nodelay() enabled returns ERR when there's no
4941 * input. */
4942 if (key == ERR) {
4943 request = REQ_NONE;
8b534a13 4944 continue;
cf4d82e6 4945 }
04e2b7b2
JF
4946
4947 request = get_keybinding(display[current_view]->keymap, key);
03a93dbb 4948
6706b2ba 4949 /* Some low-level request handling. This keeps access to
fac7db6c
JF
4950 * status_win restricted. */
4951 switch (request) {
4952 case REQ_PROMPT:
9e21ce5c
JF
4953 {
4954 char *cmd = read_prompt(":");
4955
4956 if (cmd && string_format(opt_cmd, "git %s", cmd)) {
4957 if (strncmp(cmd, "show", 4) && isspace(cmd[4])) {
4958 opt_request = REQ_VIEW_DIFF;
4959 } else {
4960 opt_request = REQ_VIEW_PAGER;
4961 }
4962 break;
4963 }
fac7db6c 4964
1d754561 4965 request = REQ_NONE;
9e21ce5c
JF
4966 break;
4967 }
4af34daa
JF
4968 case REQ_SEARCH:
4969 case REQ_SEARCH_BACK:
4970 {
4971 const char *prompt = request == REQ_SEARCH
4972 ? "/" : "?";
4973 char *search = read_prompt(prompt);
4974
4975 if (search)
739e81de 4976 string_ncopy(opt_search, search, strlen(search));
4af34daa
JF
4977 else
4978 request = REQ_NONE;
4979 break;
4980 }
fac7db6c
JF
4981 case REQ_SCREEN_RESIZE:
4982 {
4983 int height, width;
4984
4985 getmaxyx(stdscr, height, width);
4986
4987 /* Resize the status view and let the view driver take
4988 * care of resizing the displayed views. */
4989 wresize(status_win, 1, width);
4990 mvwin(status_win, height - 1, 0);
4991 wrefresh(status_win);
4992 break;
4993 }
4994 default:
4995 break;
03a93dbb 4996 }
b801d8b2
JF
4997 }
4998
4999 quit(0);
5000
5001 return 0;
5002}