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