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