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