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