1 /* Copyright (c) 2006-2012 Jonas Fonseca <fonseca@diku.dk>
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.
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.
19 static void __NORETURN
die(const char *err
, ...);
20 static void warn(const char *msg
, ...);
21 static void report(const char *msg
, ...);
25 char id
[SIZEOF_REV
]; /* Commit SHA1 ID */
26 unsigned int head
:1; /* Is it the current HEAD? */
27 unsigned int tag
:1; /* Is it a tag? */
28 unsigned int ltag
:1; /* If so, is the tag local? */
29 unsigned int remote
:1; /* Is it a remote ref? */
30 unsigned int replace
:1; /* Is it a replace ref? */
31 unsigned int tracked
:1; /* Is it the remote for the current HEAD? */
32 char name
[1]; /* Ref name; tag or head names are shortened. */
36 char id
[SIZEOF_REV
]; /* Commit SHA1 ID */
37 size_t size
; /* Number of refs. */
38 struct ref
**refs
; /* References for this ID. */
41 static struct ref
*get_ref_head();
42 static struct ref_list
*get_ref_list(const char *id
);
43 static void foreach_ref(bool (*visitor
)(void *data
, const struct ref
*ref
), void *data
);
44 static int load_refs(void);
53 typedef enum input_status (*input_handler
)(void *data
, char *buf
, int c
);
55 static char *prompt_input(const char *prompt
, input_handler handler
, void *data
);
56 static bool prompt_yesno(const char *prompt
);
57 static char *read_prompt(const char *prompt
);
65 static bool prompt_menu(const char *prompt
, const struct menu_item
*items
, int *selected
);
67 #define GRAPHIC_ENUM(_) \
69 _(GRAPHIC, DEFAULT), \
72 DEFINE_ENUM(graphic
, GRAPHIC_ENUM
);
74 #define DATE_ENUM(_) \
81 DEFINE_ENUM(date
, DATE_ENUM
);
88 static inline int timecmp(const struct time
*t1
, const struct time
*t2
)
90 return t1
->sec
- t2
->sec
;
94 mkdate(const struct time
*time
, enum date date
)
96 static char buf
[DATE_COLS
+ 1];
97 static const struct enum_map reldate
[] = {
98 { "second", 1, 60 * 2 },
99 { "minute", 60, 60 * 60 * 2 },
100 { "hour", 60 * 60, 60 * 60 * 24 * 2 },
101 { "day", 60 * 60 * 24, 60 * 60 * 24 * 7 * 2 },
102 { "week", 60 * 60 * 24 * 7, 60 * 60 * 24 * 7 * 5 },
103 { "month", 60 * 60 * 24 * 30, 60 * 60 * 24 * 30 * 12 },
107 if (!date
|| !time
|| !time
->sec
)
110 if (date
== DATE_RELATIVE
) {
112 time_t date
= time
->sec
+ time
->tz
;
116 gettimeofday(&now
, NULL
);
117 seconds
= now
.tv_sec
< date
? date
- now
.tv_sec
: now
.tv_sec
- date
;
118 for (i
= 0; i
< ARRAY_SIZE(reldate
); i
++) {
119 if (seconds
>= reldate
[i
].value
)
122 seconds
/= reldate
[i
].namelen
;
123 if (!string_format(buf
, "%ld %s%s %s",
124 seconds
, reldate
[i
].name
,
125 seconds
> 1 ? "s" : "",
126 now
.tv_sec
>= date
? "ago" : "ahead"))
132 if (date
== DATE_LOCAL
) {
133 time_t date
= time
->sec
+ time
->tz
;
134 localtime_r(&date
, &tm
);
137 gmtime_r(&time
->sec
, &tm
);
139 return strftime(buf
, sizeof(buf
), DATE_FORMAT
, &tm
) ? buf
: NULL
;
143 #define AUTHOR_ENUM(_) \
146 _(AUTHOR, ABBREVIATED)
148 DEFINE_ENUM(author
, AUTHOR_ENUM
);
151 get_author_initials(const char *author
)
153 static char initials
[AUTHOR_COLS
* 6 + 1];
155 const char *end
= strchr(author
, '\0');
157 #define is_initial_sep(c) (isspace(c) || ispunct(c) || (c) == '@' || (c) == '-')
159 memset(initials
, 0, sizeof(initials
));
160 while (author
< end
) {
164 while (author
< end
&& is_initial_sep(*author
))
167 bytes
= utf8_char_length(author
, end
);
168 if (bytes
>= sizeof(initials
) - 1 - pos
)
171 initials
[pos
++] = *author
++;
175 while (author
< end
&& !is_initial_sep(*author
)) {
176 bytes
= utf8_char_length(author
, end
);
177 if (bytes
>= sizeof(initials
) - 1 - i
) {
178 while (author
< end
&& !is_initial_sep(*author
))
183 initials
[i
++] = *author
++;
193 #define author_trim(cols) (cols == 0 || cols > 5)
196 mkauthor(const char *text
, int cols
, enum author author
)
198 bool trim
= author_trim(cols
);
199 bool abbreviate
= author
== AUTHOR_ABBREVIATED
|| !trim
;
201 if (author
== AUTHOR_NO
)
203 if (abbreviate
&& text
)
204 return get_author_initials(text
);
213 else if (S_ISLNK(mode
))
215 else if (S_ISGITLINK(mode
))
217 else if (S_ISREG(mode
) && mode
& S_IXUSR
)
219 else if (S_ISREG(mode
))
225 #define FILENAME_ENUM(_) \
227 _(FILENAME, ALWAYS), \
230 DEFINE_ENUM(filename
, FILENAME_ENUM
);
232 #define IGNORE_SPACE_ENUM(_) \
233 _(IGNORE_SPACE, NO), \
234 _(IGNORE_SPACE, ALL), \
235 _(IGNORE_SPACE, SOME), \
236 _(IGNORE_SPACE, AT_EOL)
238 DEFINE_ENUM(ignore_space
, IGNORE_SPACE_ENUM
);
240 #define COMMIT_ORDER_ENUM(_) \
241 _(COMMIT_ORDER, DEFAULT), \
242 _(COMMIT_ORDER, TOPO), \
243 _(COMMIT_ORDER, DATE), \
244 _(COMMIT_ORDER, REVERSE)
246 DEFINE_ENUM(commit_order
, COMMIT_ORDER_ENUM
);
248 #define VIEW_INFO(_) \
249 _(MAIN, main, ref_head), \
250 _(DIFF, diff, ref_commit), \
251 _(LOG, log, ref_head), \
252 _(TREE, tree, ref_commit), \
253 _(BLOB, blob, ref_blob), \
254 _(BLAME, blame, ref_commit), \
255 _(BRANCH, branch, ref_head), \
257 _(PAGER, pager, ""), \
258 _(STATUS, status, "status"), \
259 _(STAGE, stage, "stage")
261 static struct encoding
*
262 get_path_encoding(const char *path
, struct encoding
*default_encoding
)
264 const char *check_attr_argv
[] = {
265 "git", "check-attr", "encoding", "--", path
, NULL
267 char buf
[SIZEOF_STR
];
270 /* <path>: encoding: <encoding> */
272 if (!*path
|| !io_run_buf(check_attr_argv
, buf
, sizeof(buf
))
273 || !(encoding
= strstr(buf
, ENCODING_SEP
)))
274 return default_encoding
;
276 encoding
+= STRING_SIZE(ENCODING_SEP
);
277 if (!strcmp(encoding
, ENCODING_UTF8
)
278 || !strcmp(encoding
, "unspecified")
279 || !strcmp(encoding
, "set"))
280 return default_encoding
;
282 return encoding_open(encoding
);
289 #define VIEW_REQ(id, name, ref) REQ_(VIEW_##id, "Show " #name " view")
292 REQ_GROUP("View switching") \
293 VIEW_INFO(VIEW_REQ), \
295 REQ_GROUP("View manipulation") \
296 REQ_(ENTER, "Enter current line and scroll"), \
297 REQ_(NEXT, "Move to next"), \
298 REQ_(PREVIOUS, "Move to previous"), \
299 REQ_(PARENT, "Move to parent"), \
300 REQ_(VIEW_NEXT, "Move focus to next view"), \
301 REQ_(REFRESH, "Reload and refresh"), \
302 REQ_(MAXIMIZE, "Maximize the current view"), \
303 REQ_(VIEW_CLOSE, "Close the current view"), \
304 REQ_(QUIT, "Close all views and quit"), \
306 REQ_GROUP("View specific requests") \
307 REQ_(STATUS_UPDATE, "Update file status"), \
308 REQ_(STATUS_REVERT, "Revert file changes"), \
309 REQ_(STATUS_MERGE, "Merge file using external tool"), \
310 REQ_(STAGE_UPDATE_LINE, "Update single line"), \
311 REQ_(STAGE_NEXT, "Find next chunk to stage"), \
312 REQ_(DIFF_CONTEXT_DOWN, "Decrease the diff context"), \
313 REQ_(DIFF_CONTEXT_UP, "Increase the diff context"), \
315 REQ_GROUP("Cursor navigation") \
316 REQ_(MOVE_UP, "Move cursor one line up"), \
317 REQ_(MOVE_DOWN, "Move cursor one line down"), \
318 REQ_(MOVE_PAGE_DOWN, "Move cursor one page down"), \
319 REQ_(MOVE_PAGE_UP, "Move cursor one page up"), \
320 REQ_(MOVE_FIRST_LINE, "Move cursor to first line"), \
321 REQ_(MOVE_LAST_LINE, "Move cursor to last line"), \
323 REQ_GROUP("Scrolling") \
324 REQ_(SCROLL_FIRST_COL, "Scroll to the first line columns"), \
325 REQ_(SCROLL_LEFT, "Scroll two columns left"), \
326 REQ_(SCROLL_RIGHT, "Scroll two columns right"), \
327 REQ_(SCROLL_LINE_UP, "Scroll one line up"), \
328 REQ_(SCROLL_LINE_DOWN, "Scroll one line down"), \
329 REQ_(SCROLL_PAGE_UP, "Scroll one page up"), \
330 REQ_(SCROLL_PAGE_DOWN, "Scroll one page down"), \
332 REQ_GROUP("Searching") \
333 REQ_(SEARCH, "Search the view"), \
334 REQ_(SEARCH_BACK, "Search backwards in the view"), \
335 REQ_(FIND_NEXT, "Find next search match"), \
336 REQ_(FIND_PREV, "Find previous search match"), \
338 REQ_GROUP("Option manipulation") \
339 REQ_(OPTIONS, "Open option menu"), \
340 REQ_(TOGGLE_LINENO, "Toggle line numbers"), \
341 REQ_(TOGGLE_DATE, "Toggle date display"), \
342 REQ_(TOGGLE_AUTHOR, "Toggle author display"), \
343 REQ_(TOGGLE_REV_GRAPH, "Toggle revision graph visualization"), \
344 REQ_(TOGGLE_GRAPHIC, "Toggle (line) graphics mode"), \
345 REQ_(TOGGLE_FILENAME, "Toggle file name display"), \
346 REQ_(TOGGLE_REFS, "Toggle reference display (tags/branches)"), \
347 REQ_(TOGGLE_CHANGES, "Toggle local changes display in the main view"), \
348 REQ_(TOGGLE_SORT_ORDER, "Toggle ascending/descending sort order"), \
349 REQ_(TOGGLE_SORT_FIELD, "Toggle field to sort by"), \
350 REQ_(TOGGLE_IGNORE_SPACE, "Toggle ignoring whitespace in diffs"), \
351 REQ_(TOGGLE_COMMIT_ORDER, "Toggle commit ordering"), \
354 REQ_(PROMPT, "Bring up the prompt"), \
355 REQ_(SCREEN_REDRAW, "Redraw the screen"), \
356 REQ_(SHOW_VERSION, "Show version information"), \
357 REQ_(STOP_LOADING, "Stop all loading views"), \
358 REQ_(EDIT, "Open in editor"), \
359 REQ_(NONE, "Do nothing")
362 /* User action requests. */
364 #define REQ_GROUP(help)
365 #define REQ_(req, help) REQ_##req
367 /* Offset all requests to avoid conflicts with ncurses getch values. */
368 REQ_UNKNOWN
= KEY_MAX
+ 1,
372 /* Internal requests. */
379 struct request_info
{
380 enum request request
;
386 static const struct request_info req_info
[] = {
387 #define REQ_GROUP(help) { 0, NULL, 0, (help) },
388 #define REQ_(req, help) { REQ_##req, (#req), STRING_SIZE(#req), (help) }
395 get_request(const char *name
)
397 int namelen
= strlen(name
);
400 for (i
= 0; i
< ARRAY_SIZE(req_info
); i
++)
401 if (enum_equals(req_info
[i
], name
, namelen
))
402 return req_info
[i
].request
;
412 /* Option and state variables. */
413 static enum graphic opt_line_graphics
= GRAPHIC_DEFAULT
;
414 static enum date opt_date
= DATE_DEFAULT
;
415 static enum author opt_author
= AUTHOR_FULL
;
416 static enum filename opt_filename
= FILENAME_AUTO
;
417 static bool opt_rev_graph
= TRUE
;
418 static bool opt_line_number
= FALSE
;
419 static bool opt_show_refs
= TRUE
;
420 static bool opt_show_changes
= TRUE
;
421 static bool opt_untracked_dirs_content
= TRUE
;
422 static bool opt_read_git_colors
= TRUE
;
423 static int opt_diff_context
= 3;
424 static char opt_diff_context_arg
[9] = "";
425 static enum ignore_space opt_ignore_space
= IGNORE_SPACE_NO
;
426 static char opt_ignore_space_arg
[22] = "";
427 static enum commit_order opt_commit_order
= COMMIT_ORDER_DEFAULT
;
428 static char opt_commit_order_arg
[22] = "";
429 static bool opt_notes
= TRUE
;
430 static char opt_notes_arg
[SIZEOF_STR
] = "--show-notes";
431 static int opt_num_interval
= 5;
432 static double opt_hscroll
= 0.50;
433 static double opt_scale_split_view
= 2.0 / 3.0;
434 static int opt_tab_size
= 8;
435 static int opt_author_cols
= AUTHOR_COLS
;
436 static int opt_filename_cols
= FILENAME_COLS
;
437 static char opt_path
[SIZEOF_STR
] = "";
438 static char opt_file
[SIZEOF_STR
] = "";
439 static char opt_ref
[SIZEOF_REF
] = "";
440 static unsigned long opt_goto_line
= 0;
441 static char opt_head
[SIZEOF_REF
] = "";
442 static char opt_remote
[SIZEOF_REF
] = "";
443 static struct encoding
*opt_encoding
= NULL
;
444 static iconv_t opt_iconv_out
= ICONV_NONE
;
445 static char opt_search
[SIZEOF_STR
] = "";
446 static char opt_cdup
[SIZEOF_STR
] = "";
447 static char opt_prefix
[SIZEOF_STR
] = "";
448 static char opt_git_dir
[SIZEOF_STR
] = "";
449 static signed char opt_is_inside_work_tree
= -1; /* set to TRUE or FALSE */
450 static char opt_editor
[SIZEOF_STR
] = "";
451 static FILE *opt_tty
= NULL
;
452 static const char **opt_diff_argv
= NULL
;
453 static const char **opt_rev_argv
= NULL
;
454 static const char **opt_file_argv
= NULL
;
455 static const char **opt_blame_argv
= NULL
;
456 static int opt_lineno
= 0;
458 #define is_initial_commit() (!get_ref_head())
459 #define is_head_commit(rev) (!strcmp((rev), "HEAD") || (get_ref_head() && !strcmp(rev, get_ref_head()->id)))
462 update_diff_context_arg(int diff_context
)
464 if (!string_format(opt_diff_context_arg
, "-U%u", diff_context
))
465 string_ncopy(opt_diff_context_arg
, "-U3", 3);
469 update_ignore_space_arg()
471 if (opt_ignore_space
== IGNORE_SPACE_ALL
) {
472 string_copy(opt_ignore_space_arg
, "--ignore-all-space");
473 } else if (opt_ignore_space
== IGNORE_SPACE_SOME
) {
474 string_copy(opt_ignore_space_arg
, "--ignore-space-change");
475 } else if (opt_ignore_space
== IGNORE_SPACE_AT_EOL
) {
476 string_copy(opt_ignore_space_arg
, "--ignore-space-at-eol");
478 string_copy(opt_ignore_space_arg
, "");
483 update_commit_order_arg()
485 if (opt_commit_order
== COMMIT_ORDER_TOPO
) {
486 string_copy(opt_commit_order_arg
, "--topo-order");
487 } else if (opt_commit_order
== COMMIT_ORDER_DATE
) {
488 string_copy(opt_commit_order_arg
, "--date-order");
489 } else if (opt_commit_order
== COMMIT_ORDER_REVERSE
) {
490 string_copy(opt_commit_order_arg
, "--reverse");
492 string_copy(opt_commit_order_arg
, "");
500 string_copy(opt_notes_arg
, "--show-notes");
502 /* Notes are disabled by default when passing --pretty args. */
503 string_copy(opt_notes_arg
, "");
508 * Line-oriented content detection.
512 LINE(DIFF_HEADER, "diff --", COLOR_YELLOW, COLOR_DEFAULT, 0), \
513 LINE(DIFF_CHUNK, "@@", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
514 LINE(DIFF_ADD, "+", COLOR_GREEN, COLOR_DEFAULT, 0), \
515 LINE(DIFF_ADD2, " +", COLOR_GREEN, COLOR_DEFAULT, 0), \
516 LINE(DIFF_DEL, "-", COLOR_RED, COLOR_DEFAULT, 0), \
517 LINE(DIFF_DEL2, " -", COLOR_RED, COLOR_DEFAULT, 0), \
518 LINE(DIFF_INDEX, "index ", COLOR_BLUE, COLOR_DEFAULT, 0), \
519 LINE(DIFF_OLDMODE, "old file mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
520 LINE(DIFF_NEWMODE, "new file mode ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
521 LINE(DIFF_COPY_FROM, "copy from", COLOR_YELLOW, COLOR_DEFAULT, 0), \
522 LINE(DIFF_COPY_TO, "copy to", COLOR_YELLOW, COLOR_DEFAULT, 0), \
523 LINE(DIFF_RENAME_FROM, "rename from", COLOR_YELLOW, COLOR_DEFAULT, 0), \
524 LINE(DIFF_RENAME_TO, "rename to", COLOR_YELLOW, COLOR_DEFAULT, 0), \
525 LINE(DIFF_SIMILARITY, "similarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
526 LINE(DIFF_DISSIMILARITY,"dissimilarity ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
527 LINE(DIFF_TREE, "diff-tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
528 LINE(PP_AUTHOR, "Author: ", COLOR_CYAN, COLOR_DEFAULT, 0), \
529 LINE(PP_COMMIT, "Commit: ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
530 LINE(PP_MERGE, "Merge: ", COLOR_BLUE, COLOR_DEFAULT, 0), \
531 LINE(PP_DATE, "Date: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
532 LINE(PP_ADATE, "AuthorDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
533 LINE(PP_CDATE, "CommitDate: ", COLOR_YELLOW, COLOR_DEFAULT, 0), \
534 LINE(PP_REFS, "Refs: ", COLOR_RED, COLOR_DEFAULT, 0), \
535 LINE(COMMIT, "commit ", COLOR_GREEN, COLOR_DEFAULT, 0), \
536 LINE(PARENT, "parent ", COLOR_BLUE, COLOR_DEFAULT, 0), \
537 LINE(TREE, "tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \
538 LINE(AUTHOR, "author ", COLOR_GREEN, COLOR_DEFAULT, 0), \
539 LINE(COMMITTER, "committer ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
540 LINE(SIGNOFF, " Signed-off-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
541 LINE(ACKED, " Acked-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
542 LINE(TESTED, " Tested-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
543 LINE(REVIEWED, " Reviewed-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \
544 LINE(DEFAULT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
545 LINE(CURSOR, "", COLOR_WHITE, COLOR_GREEN, A_BOLD), \
546 LINE(STATUS, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
547 LINE(DELIMITER, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
548 LINE(DATE, "", COLOR_BLUE, COLOR_DEFAULT, 0), \
549 LINE(MODE, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
550 LINE(FILENAME, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
551 LINE(LINE_NUMBER, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
552 LINE(TITLE_BLUR, "", COLOR_WHITE, COLOR_BLUE, 0), \
553 LINE(TITLE_FOCUS, "", COLOR_WHITE, COLOR_BLUE, A_BOLD), \
554 LINE(MAIN_COMMIT, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
555 LINE(MAIN_TAG, "", COLOR_MAGENTA, COLOR_DEFAULT, A_BOLD), \
556 LINE(MAIN_LOCAL_TAG,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
557 LINE(MAIN_REMOTE, "", COLOR_YELLOW, COLOR_DEFAULT, 0), \
558 LINE(MAIN_REPLACE, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
559 LINE(MAIN_TRACKED, "", COLOR_YELLOW, COLOR_DEFAULT, A_BOLD), \
560 LINE(MAIN_REF, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
561 LINE(MAIN_HEAD, "", COLOR_CYAN, COLOR_DEFAULT, A_BOLD), \
562 LINE(MAIN_REVGRAPH,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
563 LINE(TREE_HEAD, "", COLOR_DEFAULT, COLOR_DEFAULT, A_BOLD), \
564 LINE(TREE_DIR, "", COLOR_YELLOW, COLOR_DEFAULT, A_NORMAL), \
565 LINE(TREE_FILE, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
566 LINE(STAT_HEAD, "", COLOR_YELLOW, COLOR_DEFAULT, 0), \
567 LINE(STAT_SECTION, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
568 LINE(STAT_NONE, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
569 LINE(STAT_STAGED, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
570 LINE(STAT_UNSTAGED,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
571 LINE(STAT_UNTRACKED,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
572 LINE(HELP_KEYMAP, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
573 LINE(HELP_GROUP, "", COLOR_BLUE, COLOR_DEFAULT, 0), \
574 LINE(BLAME_ID, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
575 LINE(DIFF_STAT, "", COLOR_BLUE, COLOR_DEFAULT, 0), \
576 LINE(PALETTE_0, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
577 LINE(PALETTE_1, "", COLOR_YELLOW, COLOR_DEFAULT, 0), \
578 LINE(PALETTE_2, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
579 LINE(PALETTE_3, "", COLOR_GREEN, COLOR_DEFAULT, 0), \
580 LINE(PALETTE_4, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \
581 LINE(PALETTE_5, "", COLOR_WHITE, COLOR_DEFAULT, 0), \
582 LINE(PALETTE_6, "", COLOR_RED, COLOR_DEFAULT, 0), \
583 LINE(GRAPH_COMMIT, "", COLOR_BLUE, COLOR_DEFAULT, 0)
586 #define LINE(type, line, fg, bg, attr) \
594 const char *name
; /* Option name. */
595 int namelen
; /* Size of option name. */
596 const char *line
; /* The start of line to match. */
597 int linelen
; /* Size of string to match. */
598 int fg
, bg
, attr
; /* Color and text attributes for the lines. */
602 static struct line_info line_info
[] = {
603 #define LINE(type, line, fg, bg, attr) \
604 { #type, STRING_SIZE(#type), (line), STRING_SIZE(line), (fg), (bg), (attr) }
609 static struct line_info
**color_pair
;
610 static size_t color_pairs
;
612 static struct line_info
*custom_color
;
613 static size_t custom_colors
;
615 DEFINE_ALLOCATOR(realloc_custom_color
, struct line_info
, 8)
616 DEFINE_ALLOCATOR(realloc_color_pair
, struct line_info
*, 8)
618 #define TO_CUSTOM_COLOR_TYPE(type) (LINE_NONE + 1 + (type))
619 #define TO_CUSTOM_COLOR_OFFSET(type) ((type) - LINE_NONE - 1)
621 /* Color IDs must be 1 or higher. [GH #15] */
622 #define COLOR_ID(line_type) ((line_type) + 1)
624 static enum line_type
625 get_line_type(const char *line
)
627 int linelen
= strlen(line
);
630 for (type
= 0; type
< custom_colors
; type
++)
631 /* Case insensitive search matches Signed-off-by lines better. */
632 if (linelen
>= custom_color
[type
].linelen
&&
633 !strncasecmp(custom_color
[type
].line
, line
, custom_color
[type
].linelen
))
634 return TO_CUSTOM_COLOR_TYPE(type
);
636 for (type
= 0; type
< ARRAY_SIZE(line_info
); type
++)
637 /* Case insensitive search matches Signed-off-by lines better. */
638 if (linelen
>= line_info
[type
].linelen
&&
639 !strncasecmp(line_info
[type
].line
, line
, line_info
[type
].linelen
))
645 static enum line_type
646 get_line_type_from_ref(const struct ref
*ref
)
649 return LINE_MAIN_HEAD
;
651 return LINE_MAIN_LOCAL_TAG
;
653 return LINE_MAIN_TAG
;
654 else if (ref
->tracked
)
655 return LINE_MAIN_TRACKED
;
656 else if (ref
->remote
)
657 return LINE_MAIN_REMOTE
;
658 else if (ref
->replace
)
659 return LINE_MAIN_REPLACE
;
661 return LINE_MAIN_REF
;
664 static inline struct line_info
*
665 get_line(enum line_type type
)
667 struct line_info
*info
;
669 if (type
> LINE_NONE
) {
670 assert(TO_CUSTOM_COLOR_OFFSET(type
) < custom_colors
);
671 return &custom_color
[TO_CUSTOM_COLOR_OFFSET(type
)];
673 assert(type
< ARRAY_SIZE(line_info
));
674 return &line_info
[type
];
679 get_line_color(enum line_type type
)
681 return COLOR_ID(get_line(type
)->color_pair
);
685 get_line_attr(enum line_type type
)
687 struct line_info
*info
= get_line(type
);
689 return COLOR_PAIR(COLOR_ID(info
->color_pair
)) | info
->attr
;
692 static struct line_info
*
693 get_line_info(const char *name
)
695 size_t namelen
= strlen(name
);
698 for (type
= 0; type
< ARRAY_SIZE(line_info
); type
++)
699 if (enum_equals(line_info
[type
], name
, namelen
))
700 return &line_info
[type
];
705 static struct line_info
*
706 add_custom_color(const char *quoted_line
)
708 struct line_info
*info
;
712 if (!realloc_custom_color(&custom_color
, custom_colors
, 1))
713 die("Failed to alloc custom line info");
715 linelen
= strlen(quoted_line
) - 1;
716 line
= malloc(linelen
);
720 strncpy(line
, quoted_line
+ 1, linelen
);
721 line
[linelen
- 1] = 0;
723 info
= &custom_color
[custom_colors
++];
724 info
->name
= info
->line
= line
;
725 info
->namelen
= info
->linelen
= strlen(line
);
731 init_line_info_color_pair(struct line_info
*info
, enum line_type type
,
732 int default_bg
, int default_fg
)
734 int bg
= info
->bg
== COLOR_DEFAULT
? default_bg
: info
->bg
;
735 int fg
= info
->fg
== COLOR_DEFAULT
? default_fg
: info
->fg
;
738 for (i
= 0; i
< color_pairs
; i
++) {
739 if (color_pair
[i
]->fg
== info
->fg
&& color_pair
[i
]->bg
== info
->bg
) {
740 info
->color_pair
= i
;
745 if (!realloc_color_pair(&color_pair
, color_pairs
, 1))
746 die("Failed to alloc color pair");
748 color_pair
[color_pairs
] = info
;
749 info
->color_pair
= color_pairs
++;
750 init_pair(COLOR_ID(info
->color_pair
), fg
, bg
);
756 int default_bg
= line_info
[LINE_DEFAULT
].bg
;
757 int default_fg
= line_info
[LINE_DEFAULT
].fg
;
762 if (assume_default_colors(default_fg
, default_bg
) == ERR
) {
763 default_bg
= COLOR_BLACK
;
764 default_fg
= COLOR_WHITE
;
767 for (type
= 0; type
< ARRAY_SIZE(line_info
); type
++) {
768 struct line_info
*info
= &line_info
[type
];
770 init_line_info_color_pair(info
, type
, default_bg
, default_fg
);
773 for (type
= 0; type
< custom_colors
; type
++) {
774 struct line_info
*info
= &custom_color
[type
];
776 init_line_info_color_pair(info
, TO_CUSTOM_COLOR_TYPE(type
),
777 default_bg
, default_fg
);
785 unsigned int selected
:1;
786 unsigned int dirty
:1;
787 unsigned int cleareol
:1;
788 unsigned int other
:16;
790 void *data
; /* User data */
800 enum request request
;
803 static struct keybinding default_keybindings
[] = {
805 { 'm', REQ_VIEW_MAIN
},
806 { 'd', REQ_VIEW_DIFF
},
807 { 'l', REQ_VIEW_LOG
},
808 { 't', REQ_VIEW_TREE
},
809 { 'f', REQ_VIEW_BLOB
},
810 { 'B', REQ_VIEW_BLAME
},
811 { 'H', REQ_VIEW_BRANCH
},
812 { 'p', REQ_VIEW_PAGER
},
813 { 'h', REQ_VIEW_HELP
},
814 { 'S', REQ_VIEW_STATUS
},
815 { 'c', REQ_VIEW_STAGE
},
817 /* View manipulation */
818 { 'q', REQ_VIEW_CLOSE
},
819 { KEY_TAB
, REQ_VIEW_NEXT
},
820 { KEY_RETURN
, REQ_ENTER
},
821 { KEY_UP
, REQ_PREVIOUS
},
822 { KEY_CTL('P'), REQ_PREVIOUS
},
823 { KEY_DOWN
, REQ_NEXT
},
824 { KEY_CTL('N'), REQ_NEXT
},
825 { 'R', REQ_REFRESH
},
826 { KEY_F(5), REQ_REFRESH
},
827 { 'O', REQ_MAXIMIZE
},
831 { 'u', REQ_STATUS_UPDATE
},
832 { '!', REQ_STATUS_REVERT
},
833 { 'M', REQ_STATUS_MERGE
},
834 { '1', REQ_STAGE_UPDATE_LINE
},
835 { '@', REQ_STAGE_NEXT
},
836 { '[', REQ_DIFF_CONTEXT_DOWN
},
837 { ']', REQ_DIFF_CONTEXT_UP
},
839 /* Cursor navigation */
840 { 'k', REQ_MOVE_UP
},
841 { 'j', REQ_MOVE_DOWN
},
842 { KEY_HOME
, REQ_MOVE_FIRST_LINE
},
843 { KEY_END
, REQ_MOVE_LAST_LINE
},
844 { KEY_NPAGE
, REQ_MOVE_PAGE_DOWN
},
845 { KEY_CTL('D'), REQ_MOVE_PAGE_DOWN
},
846 { ' ', REQ_MOVE_PAGE_DOWN
},
847 { KEY_PPAGE
, REQ_MOVE_PAGE_UP
},
848 { KEY_CTL('U'), REQ_MOVE_PAGE_UP
},
849 { 'b', REQ_MOVE_PAGE_UP
},
850 { '-', REQ_MOVE_PAGE_UP
},
853 { '|', REQ_SCROLL_FIRST_COL
},
854 { KEY_LEFT
, REQ_SCROLL_LEFT
},
855 { KEY_RIGHT
, REQ_SCROLL_RIGHT
},
856 { KEY_IC
, REQ_SCROLL_LINE_UP
},
857 { KEY_CTL('Y'), REQ_SCROLL_LINE_UP
},
858 { KEY_DC
, REQ_SCROLL_LINE_DOWN
},
859 { KEY_CTL('E'), REQ_SCROLL_LINE_DOWN
},
860 { 'w', REQ_SCROLL_PAGE_UP
},
861 { 's', REQ_SCROLL_PAGE_DOWN
},
865 { '?', REQ_SEARCH_BACK
},
866 { 'n', REQ_FIND_NEXT
},
867 { 'N', REQ_FIND_PREV
},
871 { 'z', REQ_STOP_LOADING
},
872 { 'v', REQ_SHOW_VERSION
},
873 { 'r', REQ_SCREEN_REDRAW
},
874 { KEY_CTL('L'), REQ_SCREEN_REDRAW
},
875 { 'o', REQ_OPTIONS
},
876 { '.', REQ_TOGGLE_LINENO
},
877 { 'D', REQ_TOGGLE_DATE
},
878 { 'A', REQ_TOGGLE_AUTHOR
},
879 { 'g', REQ_TOGGLE_REV_GRAPH
},
880 { '~', REQ_TOGGLE_GRAPHIC
},
881 { '#', REQ_TOGGLE_FILENAME
},
882 { 'F', REQ_TOGGLE_REFS
},
883 { 'I', REQ_TOGGLE_SORT_ORDER
},
884 { 'i', REQ_TOGGLE_SORT_FIELD
},
885 { 'W', REQ_TOGGLE_IGNORE_SPACE
},
890 #define KEYMAP_ENUM(_) \
891 _(KEYMAP, GENERIC), \
904 DEFINE_ENUM(keymap
, KEYMAP_ENUM
);
906 #define set_keymap(map, name) map_enum(map, keymap_map, name)
908 struct keybinding_table
{
909 struct keybinding
*data
;
913 static struct keybinding_table keybindings
[ARRAY_SIZE(keymap_map
)];
916 add_keybinding(enum keymap keymap
, enum request request
, int key
)
918 struct keybinding_table
*table
= &keybindings
[keymap
];
921 for (i
= 0; i
< table
->size
; i
++) {
922 if (table
->data
[i
].alias
== key
) {
923 table
->data
[i
].request
= request
;
928 table
->data
= realloc(table
->data
, (table
->size
+ 1) * sizeof(*table
->data
));
930 die("Failed to allocate keybinding");
931 table
->data
[table
->size
].alias
= key
;
932 table
->data
[table
->size
++].request
= request
;
934 if (request
== REQ_NONE
&& keymap
== KEYMAP_GENERIC
) {
937 for (i
= 0; i
< ARRAY_SIZE(default_keybindings
); i
++)
938 if (default_keybindings
[i
].alias
== key
)
939 default_keybindings
[i
].request
= REQ_NONE
;
943 /* Looks for a key binding first in the given map, then in the generic map, and
944 * lastly in the default keybindings. */
946 get_keybinding(enum keymap keymap
, int key
)
950 for (i
= 0; i
< keybindings
[keymap
].size
; i
++)
951 if (keybindings
[keymap
].data
[i
].alias
== key
)
952 return keybindings
[keymap
].data
[i
].request
;
954 for (i
= 0; i
< keybindings
[KEYMAP_GENERIC
].size
; i
++)
955 if (keybindings
[KEYMAP_GENERIC
].data
[i
].alias
== key
)
956 return keybindings
[KEYMAP_GENERIC
].data
[i
].request
;
958 for (i
= 0; i
< ARRAY_SIZE(default_keybindings
); i
++)
959 if (default_keybindings
[i
].alias
== key
)
960 return default_keybindings
[i
].request
;
962 return (enum request
) key
;
971 static const struct key key_table
[] = {
972 { "Enter", KEY_RETURN
},
974 { "Backspace", KEY_BACKSPACE
},
976 { "Escape", KEY_ESC
},
977 { "Left", KEY_LEFT
},
978 { "Right", KEY_RIGHT
},
980 { "Down", KEY_DOWN
},
981 { "Insert", KEY_IC
},
982 { "Delete", KEY_DC
},
984 { "Home", KEY_HOME
},
986 { "PageUp", KEY_PPAGE
},
987 { "PageDown", KEY_NPAGE
},
997 { "F10", KEY_F(10) },
998 { "F11", KEY_F(11) },
999 { "F12", KEY_F(12) },
1003 get_key_value(const char *name
)
1007 for (i
= 0; i
< ARRAY_SIZE(key_table
); i
++)
1008 if (!strcasecmp(key_table
[i
].name
, name
))
1009 return key_table
[i
].value
;
1011 if (strlen(name
) == 2 && name
[0] == '^' && isprint(*name
))
1012 return (int)name
[1] & 0x1f;
1013 if (strlen(name
) == 1 && isprint(*name
))
1019 get_key_name(int key_value
)
1021 static char key_char
[] = "'X'\0";
1022 const char *seq
= NULL
;
1025 for (key
= 0; key
< ARRAY_SIZE(key_table
); key
++)
1026 if (key_table
[key
].value
== key_value
)
1027 seq
= key_table
[key
].name
;
1029 if (seq
== NULL
&& key_value
< 0x7f) {
1030 char *s
= key_char
+ 1;
1032 if (key_value
>= 0x20) {
1036 *s
++ = 0x40 | (key_value
& 0x1f);
1043 return seq
? seq
: "(no key)";
1047 append_key(char *buf
, size_t *pos
, const struct keybinding
*keybinding
)
1049 const char *sep
= *pos
> 0 ? ", " : "";
1050 const char *keyname
= get_key_name(keybinding
->alias
);
1052 return string_nformat(buf
, BUFSIZ
, pos
, "%s%s", sep
, keyname
);
1056 append_keymap_request_keys(char *buf
, size_t *pos
, enum request request
,
1057 enum keymap keymap
, bool all
)
1061 for (i
= 0; i
< keybindings
[keymap
].size
; i
++) {
1062 if (keybindings
[keymap
].data
[i
].request
== request
) {
1063 if (!append_key(buf
, pos
, &keybindings
[keymap
].data
[i
]))
1073 #define get_view_key(view, request) get_keys((view)->keymap, request, FALSE)
1076 get_keys(enum keymap keymap
, enum request request
, bool all
)
1078 static char buf
[BUFSIZ
];
1084 if (!append_keymap_request_keys(buf
, &pos
, request
, keymap
, all
))
1085 return "Too many keybindings!";
1086 if (pos
> 0 && !all
)
1089 if (keymap
!= KEYMAP_GENERIC
) {
1090 /* Only the generic keymap includes the default keybindings when
1091 * listing all keys. */
1095 if (!append_keymap_request_keys(buf
, &pos
, request
, KEYMAP_GENERIC
, all
))
1096 return "Too many keybindings!";
1101 for (i
= 0; i
< ARRAY_SIZE(default_keybindings
); i
++) {
1102 if (default_keybindings
[i
].request
== request
) {
1103 if (!append_key(buf
, &pos
, &default_keybindings
[i
]))
1104 return "Too many keybindings!";
1113 struct run_request
{
1120 static struct run_request
*run_request
;
1121 static size_t run_requests
;
1123 DEFINE_ALLOCATOR(realloc_run_requests
, struct run_request
, 8)
1126 add_run_request(enum keymap keymap
, int key
, const char **argv
, bool silent
)
1128 struct run_request
*req
;
1130 if (!realloc_run_requests(&run_request
, run_requests
, 1))
1133 req
= &run_request
[run_requests
];
1134 req
->silent
= silent
;
1135 req
->keymap
= keymap
;
1139 if (!argv_copy(&req
->argv
, argv
))
1142 return REQ_NONE
+ ++run_requests
;
1145 static struct run_request
*
1146 get_run_request(enum request request
)
1148 if (request
<= REQ_NONE
)
1150 return &run_request
[request
- REQ_NONE
- 1];
1154 add_builtin_run_requests(void)
1156 const char *cherry_pick
[] = { "git", "cherry-pick", "%(commit)", NULL
};
1157 const char *checkout
[] = { "git", "checkout", "%(branch)", NULL
};
1158 const char *commit
[] = { "git", "commit", NULL
};
1159 const char *gc
[] = { "git", "gc", NULL
};
1160 struct run_request reqs
[] = {
1161 { KEYMAP_MAIN
, 'C', cherry_pick
},
1162 { KEYMAP_STATUS
, 'C', commit
},
1163 { KEYMAP_BRANCH
, 'C', checkout
},
1164 { KEYMAP_GENERIC
, 'G', gc
},
1168 for (i
= 0; i
< ARRAY_SIZE(reqs
); i
++) {
1169 enum request req
= get_keybinding(reqs
[i
].keymap
, reqs
[i
].key
);
1171 if (req
!= reqs
[i
].key
)
1173 req
= add_run_request(reqs
[i
].keymap
, reqs
[i
].key
, reqs
[i
].argv
, FALSE
);
1174 if (req
!= REQ_NONE
)
1175 add_keybinding(reqs
[i
].keymap
, req
, reqs
[i
].key
);
1180 * User config file handling.
1183 #define OPT_ERR_INFO \
1184 OPT_ERR_(INTEGER_VALUE_OUT_OF_BOUND, "Integer value out of bound"), \
1185 OPT_ERR_(INVALID_STEP_VALUE, "Invalid step value"), \
1186 OPT_ERR_(NO_OPTION_VALUE, "No option value"), \
1187 OPT_ERR_(NO_VALUE_ASSIGNED, "No value assigned"), \
1188 OPT_ERR_(OBSOLETE_REQUEST_NAME, "Obsolete request name"), \
1189 OPT_ERR_(OUT_OF_MEMORY, "Out of memory"), \
1190 OPT_ERR_(TOO_MANY_OPTION_ARGUMENTS, "Too many option arguments"), \
1191 OPT_ERR_(FILE_DOES_NOT_EXIST, "File does not exist"), \
1192 OPT_ERR_(UNKNOWN_ATTRIBUTE, "Unknown attribute"), \
1193 OPT_ERR_(UNKNOWN_COLOR, "Unknown color"), \
1194 OPT_ERR_(UNKNOWN_COLOR_NAME, "Unknown color name"), \
1195 OPT_ERR_(UNKNOWN_KEY, "Unknown key"), \
1196 OPT_ERR_(UNKNOWN_KEY_MAP, "Unknown key map"), \
1197 OPT_ERR_(UNKNOWN_OPTION_COMMAND, "Unknown option command"), \
1198 OPT_ERR_(UNKNOWN_REQUEST_NAME, "Unknown request name"), \
1199 OPT_ERR_(OBSOLETE_VARIABLE_NAME, "Obsolete variable name"), \
1200 OPT_ERR_(UNKNOWN_VARIABLE_NAME, "Unknown variable name"), \
1201 OPT_ERR_(UNMATCHED_QUOTATION, "Unmatched quotation"), \
1202 OPT_ERR_(WRONG_NUMBER_OF_ARGUMENTS, "Wrong number of arguments"),
1205 #define OPT_ERR_(name, msg) OPT_ERR_ ## name
1211 static const char *option_errors
[] = {
1212 #define OPT_ERR_(name, msg) msg
1217 static const struct enum_map color_map
[] = {
1218 #define COLOR_MAP(name) ENUM_MAP(#name, COLOR_##name)
1230 static const struct enum_map attr_map
[] = {
1231 #define ATTR_MAP(name) ENUM_MAP(#name, A_##name)
1238 ATTR_MAP(UNDERLINE
),
1241 #define set_attribute(attr, name) map_enum(attr, attr_map, name)
1243 static enum option_code
1244 parse_step(double *opt
, const char *arg
)
1247 if (!strchr(arg
, '%'))
1250 /* "Shift down" so 100% and 1 does not conflict. */
1251 *opt
= (*opt
- 1) / 100;
1254 return OPT_ERR_INVALID_STEP_VALUE
;
1258 return OPT_ERR_INVALID_STEP_VALUE
;
1263 static enum option_code
1264 parse_int(int *opt
, const char *arg
, int min
, int max
)
1266 int value
= atoi(arg
);
1268 if (min
<= value
&& value
<= max
) {
1273 return OPT_ERR_INTEGER_VALUE_OUT_OF_BOUND
;
1277 set_color(int *color
, const char *name
)
1279 if (map_enum(color
, color_map
, name
))
1281 if (!prefixcmp(name
, "color"))
1282 return parse_int(color
, name
+ 5, 0, 255) == OPT_OK
;
1286 /* Wants: object fgcolor bgcolor [attribute] */
1287 static enum option_code
1288 option_color_command(int argc
, const char *argv
[])
1290 struct line_info
*info
;
1293 return OPT_ERR_WRONG_NUMBER_OF_ARGUMENTS
;
1295 if (*argv
[0] == '"' || *argv
[0] == '\'') {
1296 info
= add_custom_color(argv
[0]);
1298 info
= get_line_info(argv
[0]);
1301 static const struct enum_map obsolete
[] = {
1302 ENUM_MAP("main-delim", LINE_DELIMITER
),
1303 ENUM_MAP("main-date", LINE_DATE
),
1304 ENUM_MAP("main-author", LINE_AUTHOR
),
1308 if (!map_enum(&index
, obsolete
, argv
[0]))
1309 return OPT_ERR_UNKNOWN_COLOR_NAME
;
1310 info
= &line_info
[index
];
1313 if (!set_color(&info
->fg
, argv
[1]) ||
1314 !set_color(&info
->bg
, argv
[2]))
1315 return OPT_ERR_UNKNOWN_COLOR
;
1318 while (argc
-- > 3) {
1321 if (!set_attribute(&attr
, argv
[argc
]))
1322 return OPT_ERR_UNKNOWN_ATTRIBUTE
;
1329 static enum option_code
1330 parse_bool_matched(bool *opt
, const char *arg
, bool *matched
)
1332 *opt
= (!strcmp(arg
, "1") || !strcmp(arg
, "true") || !strcmp(arg
, "yes"))
1335 *matched
= *opt
|| (!strcmp(arg
, "0") || !strcmp(arg
, "false") || !strcmp(arg
, "no"));
1339 #define parse_bool(opt, arg) parse_bool_matched(opt, arg, NULL)
1341 static enum option_code
1342 parse_enum_do(unsigned int *opt
, const char *arg
,
1343 const struct enum_map
*map
, size_t map_size
)
1347 assert(map_size
> 1);
1349 if (map_enum_do(map
, map_size
, (int *) opt
, arg
))
1352 parse_bool(&is_true
, arg
);
1353 *opt
= is_true
? map
[1].value
: map
[0].value
;
1357 #define parse_enum(opt, arg, map) \
1358 parse_enum_do(opt, arg, map, ARRAY_SIZE(map))
1360 static enum option_code
1361 parse_string(char *opt
, const char *arg
, size_t optsize
)
1363 int arglen
= strlen(arg
);
1368 if (arglen
== 1 || arg
[arglen
- 1] != arg
[0])
1369 return OPT_ERR_UNMATCHED_QUOTATION
;
1370 arg
+= 1; arglen
-= 2;
1372 string_ncopy_do(opt
, optsize
, arg
, arglen
);
1377 static enum option_code
1378 parse_encoding(struct encoding
**encoding_ref
, const char *arg
, bool priority
)
1380 char buf
[SIZEOF_STR
];
1381 enum option_code code
= parse_string(buf
, arg
, sizeof(buf
));
1383 if (code
== OPT_OK
) {
1384 struct encoding
*encoding
= *encoding_ref
;
1386 if (encoding
&& !priority
)
1388 encoding
= encoding_open(buf
);
1390 *encoding_ref
= encoding
;
1396 static enum option_code
1397 parse_args(const char ***args
, const char *argv
[])
1399 if (*args
== NULL
&& !argv_copy(args
, argv
))
1400 return OPT_ERR_OUT_OF_MEMORY
;
1404 /* Wants: name = value */
1405 static enum option_code
1406 option_set_command(int argc
, const char *argv
[])
1409 return OPT_ERR_WRONG_NUMBER_OF_ARGUMENTS
;
1411 if (strcmp(argv
[1], "="))
1412 return OPT_ERR_NO_VALUE_ASSIGNED
;
1414 if (!strcmp(argv
[0], "blame-options"))
1415 return parse_args(&opt_blame_argv
, argv
+ 2);
1418 return OPT_ERR_WRONG_NUMBER_OF_ARGUMENTS
;
1420 if (!strcmp(argv
[0], "show-author"))
1421 return parse_enum(&opt_author
, argv
[2], author_map
);
1423 if (!strcmp(argv
[0], "show-date"))
1424 return parse_enum(&opt_date
, argv
[2], date_map
);
1426 if (!strcmp(argv
[0], "show-rev-graph"))
1427 return parse_bool(&opt_rev_graph
, argv
[2]);
1429 if (!strcmp(argv
[0], "show-refs"))
1430 return parse_bool(&opt_show_refs
, argv
[2]);
1432 if (!strcmp(argv
[0], "show-changes"))
1433 return parse_bool(&opt_show_changes
, argv
[2]);
1435 if (!strcmp(argv
[0], "show-notes")) {
1436 bool matched
= FALSE
;
1437 enum option_code res
= parse_bool_matched(&opt_notes
, argv
[2], &matched
);
1439 if (res
== OPT_OK
&& matched
) {
1445 strcpy(opt_notes_arg
, "--show-notes=");
1446 res
= parse_string(opt_notes_arg
+ 8, argv
[2],
1447 sizeof(opt_notes_arg
) - 8);
1448 if (res
== OPT_OK
&& opt_notes_arg
[8] == '\0')
1449 opt_notes_arg
[7] = '\0';
1453 if (!strcmp(argv
[0], "show-line-numbers"))
1454 return parse_bool(&opt_line_number
, argv
[2]);
1456 if (!strcmp(argv
[0], "line-graphics"))
1457 return parse_enum(&opt_line_graphics
, argv
[2], graphic_map
);
1459 if (!strcmp(argv
[0], "line-number-interval"))
1460 return parse_int(&opt_num_interval
, argv
[2], 1, 1024);
1462 if (!strcmp(argv
[0], "author-width"))
1463 return parse_int(&opt_author_cols
, argv
[2], 0, 1024);
1465 if (!strcmp(argv
[0], "filename-width"))
1466 return parse_int(&opt_filename_cols
, argv
[2], 0, 1024);
1468 if (!strcmp(argv
[0], "show-filename"))
1469 return parse_enum(&opt_filename
, argv
[2], filename_map
);
1471 if (!strcmp(argv
[0], "horizontal-scroll"))
1472 return parse_step(&opt_hscroll
, argv
[2]);
1474 if (!strcmp(argv
[0], "split-view-height"))
1475 return parse_step(&opt_scale_split_view
, argv
[2]);
1477 if (!strcmp(argv
[0], "tab-size"))
1478 return parse_int(&opt_tab_size
, argv
[2], 1, 1024);
1480 if (!strcmp(argv
[0], "diff-context")) {
1481 enum option_code code
= parse_int(&opt_diff_context
, argv
[2], 1, 999999);
1484 update_diff_context_arg(opt_diff_context
);
1488 if (!strcmp(argv
[0], "ignore-space")) {
1489 enum option_code code
= parse_enum(&opt_ignore_space
, argv
[2], ignore_space_map
);
1492 update_ignore_space_arg();
1496 if (!strcmp(argv
[0], "commit-order")) {
1497 enum option_code code
= parse_enum(&opt_commit_order
, argv
[2], commit_order_map
);
1500 update_commit_order_arg();
1504 if (!strcmp(argv
[0], "status-untracked-dirs"))
1505 return parse_bool(&opt_untracked_dirs_content
, argv
[2]);
1507 if (!strcmp(argv
[0], "use-git-colors"))
1508 return parse_bool(&opt_read_git_colors
, argv
[2]);
1510 return OPT_ERR_UNKNOWN_VARIABLE_NAME
;
1513 /* Wants: mode request key */
1514 static enum option_code
1515 option_bind_command(int argc
, const char *argv
[])
1517 enum request request
;
1522 return OPT_ERR_WRONG_NUMBER_OF_ARGUMENTS
;
1524 if (!set_keymap(&keymap
, argv
[0]))
1525 return OPT_ERR_UNKNOWN_KEY_MAP
;
1527 key
= get_key_value(argv
[1]);
1529 return OPT_ERR_UNKNOWN_KEY
;
1531 request
= get_request(argv
[2]);
1532 if (request
== REQ_UNKNOWN
) {
1533 static const struct enum_map obsolete
[] = {
1534 ENUM_MAP("cherry-pick", REQ_NONE
),
1535 ENUM_MAP("screen-resize", REQ_NONE
),
1536 ENUM_MAP("tree-parent", REQ_PARENT
),
1540 if (map_enum(&alias
, obsolete
, argv
[2])) {
1541 if (alias
!= REQ_NONE
)
1542 add_keybinding(keymap
, alias
, key
);
1543 return OPT_ERR_OBSOLETE_REQUEST_NAME
;
1546 if (request
== REQ_UNKNOWN
&& *argv
[2]++ == '!') {
1547 bool silent
= *argv
[2] == '@';
1551 request
= add_run_request(keymap
, key
, argv
+ 2, silent
);
1553 if (request
== REQ_UNKNOWN
)
1554 return OPT_ERR_UNKNOWN_REQUEST_NAME
;
1556 add_keybinding(keymap
, request
, key
);
1562 static enum option_code
load_option_file(const char *path
);
1564 static enum option_code
1565 option_source_command(int argc
, const char *argv
[])
1568 return OPT_ERR_WRONG_NUMBER_OF_ARGUMENTS
;
1570 return load_option_file(argv
[0]);
1573 static enum option_code
1574 set_option(const char *opt
, char *value
)
1576 const char *argv
[SIZEOF_ARG
];
1579 if (!argv_from_string(argv
, &argc
, value
))
1580 return OPT_ERR_TOO_MANY_OPTION_ARGUMENTS
;
1582 if (!strcmp(opt
, "color"))
1583 return option_color_command(argc
, argv
);
1585 if (!strcmp(opt
, "set"))
1586 return option_set_command(argc
, argv
);
1588 if (!strcmp(opt
, "bind"))
1589 return option_bind_command(argc
, argv
);
1591 if (!strcmp(opt
, "source"))
1592 return option_source_command(argc
, argv
);
1594 return OPT_ERR_UNKNOWN_OPTION_COMMAND
;
1597 struct config_state
{
1604 read_option(char *opt
, size_t optlen
, char *value
, size_t valuelen
, void *data
)
1606 struct config_state
*config
= data
;
1607 enum option_code status
= OPT_ERR_NO_OPTION_VALUE
;
1611 /* Check for comment markers, since read_properties() will
1612 * only ensure opt and value are split at first " \t". */
1613 optlen
= strcspn(opt
, "#");
1617 if (opt
[optlen
] == 0) {
1618 /* Look for comment endings in the value. */
1619 size_t len
= strcspn(value
, "#");
1621 if (len
< valuelen
) {
1623 value
[valuelen
] = 0;
1626 status
= set_option(opt
, value
);
1629 if (status
!= OPT_OK
) {
1630 warn("%s line %d: %s near '%.*s'", config
->path
, config
->lineno
,
1631 option_errors
[status
], (int) optlen
, opt
);
1632 config
->errors
= TRUE
;
1635 /* Always keep going if errors are encountered. */
1639 static enum option_code
1640 load_option_file(const char *path
)
1642 struct config_state config
= { path
, 0, FALSE
};
1645 /* Do not read configuration from stdin if set to "" */
1646 if (!path
|| !strlen(path
))
1649 /* It's OK that the file doesn't exist. */
1650 if (!io_open(&io
, "%s", path
))
1651 return OPT_ERR_FILE_DOES_NOT_EXIST
;
1653 if (io_load(&io
, " \t", read_option
, &config
) == ERR
||
1654 config
.errors
== TRUE
)
1655 warn("Errors while loading %s.", path
);
1662 const char *home
= getenv("HOME");
1663 const char *tigrc_user
= getenv("TIGRC_USER");
1664 const char *tigrc_system
= getenv("TIGRC_SYSTEM");
1665 const char *tig_diff_opts
= getenv("TIG_DIFF_OPTS");
1666 char buf
[SIZEOF_STR
];
1669 tigrc_system
= SYSCONFDIR
"/tigrc";
1670 load_option_file(tigrc_system
);
1673 if (!home
|| !string_format(buf
, "%s/.tigrc", home
))
1677 load_option_file(tigrc_user
);
1679 /* Add _after_ loading config files to avoid adding run requests
1680 * that conflict with keybindings. */
1681 add_builtin_run_requests();
1683 if (!opt_diff_argv
&& tig_diff_opts
&& *tig_diff_opts
) {
1684 static const char *diff_opts
[SIZEOF_ARG
] = { NULL
};
1687 if (!string_format(buf
, "%s", tig_diff_opts
) ||
1688 !argv_from_string(diff_opts
, &argc
, buf
))
1689 die("TIG_DIFF_OPTS contains too many arguments");
1690 else if (!argv_copy(&opt_diff_argv
, diff_opts
))
1691 die("Failed to format TIG_DIFF_OPTS arguments");
1705 /* The display array of active views and the index of the current view. */
1706 static struct view
*display
[2];
1707 static WINDOW
*display_win
[2];
1708 static WINDOW
*display_title
[2];
1709 static unsigned int current_view
;
1711 #define foreach_displayed_view(view, i) \
1712 for (i = 0; i < ARRAY_SIZE(display) && (view = display[i]); i++)
1714 #define displayed_views() (display[1] != NULL ? 2 : 1)
1716 /* Current head and commit ID */
1717 static char ref_blob
[SIZEOF_REF
] = "";
1718 static char ref_commit
[SIZEOF_REF
] = "HEAD";
1719 static char ref_head
[SIZEOF_REF
] = "HEAD";
1720 static char ref_branch
[SIZEOF_REF
] = "";
1724 VIEW_ALWAYS_LINENO
= 1 << 0,
1725 VIEW_CUSTOM_STATUS
= 1 << 1,
1726 VIEW_ADD_DESCRIBE_REF
= 1 << 2,
1727 VIEW_ADD_PAGER_REFS
= 1 << 3,
1728 VIEW_OPEN_DIFF
= 1 << 4,
1729 VIEW_NO_REF
= 1 << 5,
1730 VIEW_NO_GIT_DIR
= 1 << 6,
1731 VIEW_DIFF_LIKE
= 1 << 7,
1734 #define view_has_flags(view, flag) ((view)->ops->flags & (flag))
1737 unsigned long offset
; /* Offset of the window top */
1738 unsigned long col
; /* Offset from the window side. */
1739 unsigned long lineno
; /* Current line number */
1743 const char *name
; /* View name */
1744 const char *id
; /* Points to either of ref_{head,commit,blob} */
1746 struct view_ops
*ops
; /* View operations */
1748 enum keymap keymap
; /* What keymap does this view have */
1750 char ref
[SIZEOF_REF
]; /* Hovered commit reference */
1751 char vid
[SIZEOF_REF
]; /* View ID. Set to id member when updating. */
1753 int height
, width
; /* The width and height of the main window */
1754 WINDOW
*win
; /* The main window */
1757 struct position pos
; /* Current position. */
1758 struct position prev_pos
; /* Previous position. */
1761 char grep
[SIZEOF_STR
]; /* Search string */
1762 regex_t
*regex
; /* Pre-compiled regexp */
1764 /* If non-NULL, points to the view that opened this view. If this view
1765 * is closed tig will switch back to the parent view. */
1766 struct view
*parent
;
1770 size_t lines
; /* Total number of lines */
1771 struct line
*line
; /* Line index */
1772 unsigned int digits
; /* Number of digits in the lines member. */
1775 struct line
*curline
; /* Line currently being drawn. */
1776 enum line_type curtype
; /* Attribute currently used for drawing. */
1777 unsigned long col
; /* Column when drawing. */
1778 bool has_scrolled
; /* View was scrolled. */
1781 const char **argv
; /* Shell command arguments. */
1782 const char *dir
; /* Directory from which to execute. */
1787 struct encoding
*encoding
;
1794 OPEN_DEFAULT
= 0, /* Use default view switching. */
1795 OPEN_SPLIT
= 1, /* Split current view. */
1796 OPEN_RELOAD
= 4, /* Reload view even if it is the current. */
1797 OPEN_REFRESH
= 16, /* Refresh view using previous command. */
1798 OPEN_PREPARED
= 32, /* Open already prepared command. */
1799 OPEN_EXTRA
= 64, /* Open extra data from command. */
1803 /* What type of content being displayed. Used in the title bar. */
1805 /* Flags to control the view behavior. */
1806 enum view_flag flags
;
1807 /* Size of private data. */
1808 size_t private_size
;
1809 /* Open and reads in all view content. */
1810 bool (*open
)(struct view
*view
, enum open_flags flags
);
1811 /* Read one line; updates view->line. */
1812 bool (*read
)(struct view
*view
, char *data
);
1813 /* Draw one line; @lineno must be < view->height. */
1814 bool (*draw
)(struct view
*view
, struct line
*line
, unsigned int lineno
);
1815 /* Depending on view handle a special requests. */
1816 enum request (*request
)(struct view
*view
, enum request request
, struct line
*line
);
1817 /* Search for regexp in a line. */
1818 bool (*grep
)(struct view
*view
, struct line
*line
);
1820 void (*select
)(struct view
*view
, struct line
*line
);
1823 #define VIEW_OPS(id, name, ref) name##_ops
1824 static struct view_ops
VIEW_INFO(VIEW_OPS
);
1826 static struct view views
[] = {
1827 #define VIEW_DATA(id, name, ref) \
1828 { #name, ref, &name##_ops, KEYMAP_##id }
1829 VIEW_INFO(VIEW_DATA
)
1832 #define VIEW(req) (&views[(req) - REQ_OFFSET - 1])
1834 #define foreach_view(view, i) \
1835 for (i = 0; i < ARRAY_SIZE(views) && (view = &views[i]); i++)
1837 #define view_is_displayed(view) \
1838 (view == display[0] || view == display[1])
1841 view_request(struct view
*view
, enum request request
)
1843 if (!view
|| !view
->lines
)
1845 return view
->ops
->request(view
, request
, &view
->line
[view
->pos
.lineno
]);
1854 set_view_attr(struct view
*view
, enum line_type type
)
1856 if (!view
->curline
->selected
&& view
->curtype
!= type
) {
1857 (void) wattrset(view
->win
, get_line_attr(type
));
1858 wchgat(view
->win
, -1, 0, get_line_color(type
), NULL
);
1859 view
->curtype
= type
;
1863 #define VIEW_MAX_LEN(view) ((view)->width + (view)->pos.col - (view)->col)
1866 draw_chars(struct view
*view
, enum line_type type
, const char *string
,
1867 int max_len
, bool use_tilde
)
1869 static char out_buffer
[BUFSIZ
* 2];
1872 int trimmed
= FALSE
;
1873 size_t skip
= view
->pos
.col
> view
->col
? view
->pos
.col
- view
->col
: 0;
1876 return VIEW_MAX_LEN(view
) <= 0;
1878 len
= utf8_length(&string
, skip
, &col
, max_len
, &trimmed
, use_tilde
, opt_tab_size
);
1880 set_view_attr(view
, type
);
1882 if (opt_iconv_out
!= ICONV_NONE
) {
1883 size_t inlen
= len
+ 1;
1884 char *instr
= calloc(1, inlen
);
1885 ICONV_CONST
char *inbuf
= (ICONV_CONST
char *) instr
;
1887 return VIEW_MAX_LEN(view
) <= 0;
1889 strncpy(instr
, string
, len
);
1891 char *outbuf
= out_buffer
;
1892 size_t outlen
= sizeof(out_buffer
);
1896 ret
= iconv(opt_iconv_out
, &inbuf
, &inlen
, &outbuf
, &outlen
);
1897 if (ret
!= (size_t) -1) {
1898 string
= out_buffer
;
1899 len
= sizeof(out_buffer
) - outlen
;
1904 waddnstr(view
->win
, string
, len
);
1906 if (trimmed
&& use_tilde
) {
1907 set_view_attr(view
, LINE_DELIMITER
);
1908 waddch(view
->win
, '~');
1914 return VIEW_MAX_LEN(view
) <= 0;
1918 draw_space(struct view
*view
, enum line_type type
, int max
, int spaces
)
1920 static char space
[] = " ";
1922 spaces
= MIN(max
, spaces
);
1924 while (spaces
> 0) {
1925 int len
= MIN(spaces
, sizeof(space
) - 1);
1927 if (draw_chars(view
, type
, space
, len
, FALSE
))
1932 return VIEW_MAX_LEN(view
) <= 0;
1936 draw_text(struct view
*view
, enum line_type type
, const char *string
)
1938 char text
[SIZEOF_STR
];
1941 size_t pos
= string_expand(text
, sizeof(text
), string
, opt_tab_size
);
1943 if (draw_chars(view
, type
, text
, VIEW_MAX_LEN(view
), TRUE
))
1948 return VIEW_MAX_LEN(view
) <= 0;
1952 draw_formatted(struct view
*view
, enum line_type type
, const char *format
, ...)
1954 char text
[SIZEOF_STR
];
1957 FORMAT_BUFFER(text
, sizeof(text
), format
, retval
, TRUE
);
1958 return retval
>= 0 ? draw_text(view
, type
, text
) : VIEW_MAX_LEN(view
) <= 0;
1962 draw_graphic(struct view
*view
, enum line_type type
, const chtype graphic
[], size_t size
, bool separator
)
1964 size_t skip
= view
->pos
.col
> view
->col
? view
->pos
.col
- view
->col
: 0;
1965 int max
= VIEW_MAX_LEN(view
);
1971 set_view_attr(view
, type
);
1972 /* Using waddch() instead of waddnstr() ensures that
1973 * they'll be rendered correctly for the cursor line. */
1974 for (i
= skip
; i
< size
; i
++)
1975 waddch(view
->win
, graphic
[i
]);
1979 if (size
< max
&& skip
<= size
)
1980 waddch(view
->win
, ' ');
1984 return VIEW_MAX_LEN(view
) <= 0;
1988 draw_field(struct view
*view
, enum line_type type
, const char *text
, int len
, bool trim
)
1990 int max
= MIN(VIEW_MAX_LEN(view
), len
);
1991 int col
= view
->col
;
1994 return draw_space(view
, type
, max
, max
);
1996 return draw_chars(view
, type
, text
, max
- 1, trim
)
1997 || draw_space(view
, LINE_DEFAULT
, max
- (view
->col
- col
), max
);
2001 draw_date(struct view
*view
, struct time
*time
)
2003 const char *date
= mkdate(time
, opt_date
);
2004 int cols
= opt_date
== DATE_SHORT
? DATE_SHORT_COLS
: DATE_COLS
;
2006 if (opt_date
== DATE_NO
)
2009 return draw_field(view
, LINE_DATE
, date
, cols
, FALSE
);
2013 draw_author(struct view
*view
, const char *author
)
2015 bool trim
= author_trim(opt_author_cols
);
2016 const char *text
= mkauthor(author
, opt_author_cols
, opt_author
);
2018 if (opt_author
== AUTHOR_NO
)
2021 return draw_field(view
, LINE_AUTHOR
, text
, opt_author_cols
, trim
);
2025 draw_filename(struct view
*view
, const char *filename
, bool auto_enabled
)
2027 bool trim
= filename
&& strlen(filename
) >= opt_filename_cols
;
2029 if (opt_filename
== FILENAME_NO
)
2032 if (opt_filename
== FILENAME_AUTO
&& !auto_enabled
)
2035 return draw_field(view
, LINE_FILENAME
, filename
, opt_filename_cols
, trim
);
2039 draw_mode(struct view
*view
, mode_t mode
)
2041 const char *str
= mkmode(mode
);
2043 return draw_field(view
, LINE_MODE
, str
, STRING_SIZE("-rw-r--r-- "), FALSE
);
2047 draw_lineno(struct view
*view
, unsigned int lineno
)
2050 int digits3
= view
->digits
< 3 ? 3 : view
->digits
;
2051 int max
= MIN(VIEW_MAX_LEN(view
), digits3
);
2053 chtype separator
= opt_line_graphics
? ACS_VLINE
: '|';
2055 if (!opt_line_number
)
2058 lineno
+= view
->pos
.offset
+ 1;
2059 if (lineno
== 1 || (lineno
% opt_num_interval
) == 0) {
2060 static char fmt
[] = "%1ld";
2062 fmt
[1] = '0' + (view
->digits
<= 9 ? digits3
: 1);
2063 if (string_format(number
, fmt
, lineno
))
2067 draw_chars(view
, LINE_LINE_NUMBER
, text
, max
, TRUE
);
2069 draw_space(view
, LINE_LINE_NUMBER
, max
, digits3
);
2070 return draw_graphic(view
, LINE_DEFAULT
, &separator
, 1, TRUE
);
2074 draw_refs(struct view
*view
, struct ref_list
*refs
)
2078 if (!opt_show_refs
|| !refs
)
2081 for (i
= 0; i
< refs
->size
; i
++) {
2082 struct ref
*ref
= refs
->refs
[i
];
2083 enum line_type type
= get_line_type_from_ref(ref
);
2085 if (draw_formatted(view
, type
, "[%s]", ref
->name
))
2088 if (draw_text(view
, LINE_DEFAULT
, " "))
2096 draw_view_line(struct view
*view
, unsigned int lineno
)
2099 bool selected
= (view
->pos
.offset
+ lineno
== view
->pos
.lineno
);
2101 assert(view_is_displayed(view
));
2103 if (view
->pos
.offset
+ lineno
>= view
->lines
)
2106 line
= &view
->line
[view
->pos
.offset
+ lineno
];
2108 wmove(view
->win
, lineno
, 0);
2110 wclrtoeol(view
->win
);
2112 view
->curline
= line
;
2113 view
->curtype
= LINE_NONE
;
2114 line
->selected
= FALSE
;
2115 line
->dirty
= line
->cleareol
= 0;
2118 set_view_attr(view
, LINE_CURSOR
);
2119 line
->selected
= TRUE
;
2120 view
->ops
->select(view
, line
);
2123 return view
->ops
->draw(view
, line
, lineno
);
2127 redraw_view_dirty(struct view
*view
)
2132 for (lineno
= 0; lineno
< view
->height
; lineno
++) {
2133 if (view
->pos
.offset
+ lineno
>= view
->lines
)
2135 if (!view
->line
[view
->pos
.offset
+ lineno
].dirty
)
2138 if (!draw_view_line(view
, lineno
))
2144 wnoutrefresh(view
->win
);
2148 redraw_view_from(struct view
*view
, int lineno
)
2150 assert(0 <= lineno
&& lineno
< view
->height
);
2152 for (; lineno
< view
->height
; lineno
++) {
2153 if (!draw_view_line(view
, lineno
))
2157 wnoutrefresh(view
->win
);
2161 redraw_view(struct view
*view
)
2164 redraw_view_from(view
, 0);
2169 update_view_title(struct view
*view
)
2171 char buf
[SIZEOF_STR
];
2172 char state
[SIZEOF_STR
];
2173 size_t bufpos
= 0, statelen
= 0;
2174 WINDOW
*window
= display
[0] == view
? display_title
[0] : display_title
[1];
2176 assert(view_is_displayed(view
));
2178 if (!view_has_flags(view
, VIEW_CUSTOM_STATUS
) && view
->lines
) {
2179 unsigned int view_lines
= view
->pos
.offset
+ view
->height
;
2180 unsigned int lines
= view
->lines
2181 ? MIN(view_lines
, view
->lines
) * 100 / view
->lines
2184 string_format_from(state
, &statelen
, " - %s %d of %d (%d%%)",
2186 view
->pos
.lineno
+ 1,
2193 time_t secs
= time(NULL
) - view
->start_time
;
2195 /* Three git seconds are a long time ... */
2197 string_format_from(state
, &statelen
, " loading %lds", secs
);
2200 string_format_from(buf
, &bufpos
, "[%s]", view
->name
);
2201 if (*view
->ref
&& bufpos
< view
->width
) {
2202 size_t refsize
= strlen(view
->ref
);
2203 size_t minsize
= bufpos
+ 1 + /* abbrev= */ 7 + 1 + statelen
;
2205 if (minsize
< view
->width
)
2206 refsize
= view
->width
- minsize
+ 7;
2207 string_format_from(buf
, &bufpos
, " %.*s", (int) refsize
, view
->ref
);
2210 if (statelen
&& bufpos
< view
->width
) {
2211 string_format_from(buf
, &bufpos
, "%s", state
);
2214 if (view
== display
[current_view
])
2215 wbkgdset(window
, get_line_attr(LINE_TITLE_FOCUS
));
2217 wbkgdset(window
, get_line_attr(LINE_TITLE_BLUR
));
2219 mvwaddnstr(window
, 0, 0, buf
, bufpos
);
2221 wnoutrefresh(window
);
2225 apply_step(double step
, int value
)
2229 value
*= step
+ 0.01;
2230 return value
? value
: 1;
2234 resize_display(void)
2237 struct view
*base
= display
[0];
2238 struct view
*view
= display
[1] ? display
[1] : display
[0];
2240 /* Setup window dimensions */
2242 getmaxyx(stdscr
, base
->height
, base
->width
);
2244 /* Make room for the status window. */
2248 /* Horizontal split. */
2249 view
->width
= base
->width
;
2250 view
->height
= apply_step(opt_scale_split_view
, base
->height
);
2251 view
->height
= MAX(view
->height
, MIN_VIEW_HEIGHT
);
2252 view
->height
= MIN(view
->height
, base
->height
- MIN_VIEW_HEIGHT
);
2253 base
->height
-= view
->height
;
2255 /* Make room for the title bar. */
2259 /* Make room for the title bar. */
2264 foreach_displayed_view (view
, i
) {
2265 if (!display_win
[i
]) {
2266 display_win
[i
] = newwin(view
->height
, view
->width
, offset
, 0);
2267 if (!display_win
[i
])
2268 die("Failed to create %s view", view
->name
);
2270 scrollok(display_win
[i
], FALSE
);
2272 display_title
[i
] = newwin(1, view
->width
, offset
+ view
->height
, 0);
2273 if (!display_title
[i
])
2274 die("Failed to create title window");
2277 wresize(display_win
[i
], view
->height
, view
->width
);
2278 mvwin(display_win
[i
], offset
, 0);
2279 mvwin(display_title
[i
], offset
+ view
->height
, 0);
2282 view
->win
= display_win
[i
];
2284 offset
+= view
->height
+ 1;
2289 redraw_display(bool clear
)
2294 foreach_displayed_view (view
, i
) {
2298 update_view_title(view
);
2307 #define TOGGLE_MENU \
2308 TOGGLE_(LINENO, '.', "line numbers", &opt_line_number, NULL) \
2309 TOGGLE_(DATE, 'D', "dates", &opt_date, date_map) \
2310 TOGGLE_(AUTHOR, 'A', "author names", &opt_author, author_map) \
2311 TOGGLE_(GRAPHIC, '~', "graphics", &opt_line_graphics, graphic_map) \
2312 TOGGLE_(REV_GRAPH, 'g', "revision graph", &opt_rev_graph, NULL) \
2313 TOGGLE_(FILENAME, '#', "file names", &opt_filename, filename_map) \
2314 TOGGLE_(IGNORE_SPACE, 'W', "space changes", &opt_ignore_space, ignore_space_map) \
2315 TOGGLE_(COMMIT_ORDER, 'l', "commit order", &opt_commit_order, commit_order_map) \
2316 TOGGLE_(REFS, 'F', "reference display", &opt_show_refs, NULL) \
2317 TOGGLE_(CHANGES, 'C', "local change display", &opt_show_changes, NULL)
2320 toggle_option(enum request request
)
2323 enum request request
;
2324 const struct enum_map
*map
;
2327 #define TOGGLE_(id, key, help, value, map) { REQ_TOGGLE_ ## id, map, ARRAY_SIZE(map) },
2331 const struct menu_item menu
[] = {
2332 #define TOGGLE_(id, key, help, value, map) { key, help, value },
2339 if (request
== REQ_OPTIONS
) {
2340 if (!prompt_menu("Toggle option", menu
, &i
))
2343 while (i
< ARRAY_SIZE(data
) && data
[i
].request
!= request
)
2345 if (i
>= ARRAY_SIZE(data
))
2346 die("Invalid request (%d)", request
);
2349 if (data
[i
].map
!= NULL
) {
2350 unsigned int *opt
= menu
[i
].data
;
2352 *opt
= (*opt
+ 1) % data
[i
].map_size
;
2353 if (data
[i
].map
== ignore_space_map
) {
2354 update_ignore_space_arg();
2355 report("Ignoring %s %s", enum_name(data
[i
].map
[*opt
]), menu
[i
].text
);
2358 } else if (data
[i
].map
== commit_order_map
) {
2359 update_commit_order_arg();
2360 report("Using %s %s", enum_name(data
[i
].map
[*opt
]), menu
[i
].text
);
2364 redraw_display(FALSE
);
2365 report("Displaying %s %s", enum_name(data
[i
].map
[*opt
]), menu
[i
].text
);
2368 bool *option
= menu
[i
].data
;
2371 redraw_display(FALSE
);
2372 report("%sabling %s", *option
? "En" : "Dis", menu
[i
].text
);
2379 maximize_view(struct view
*view
, bool redraw
)
2381 memset(display
, 0, sizeof(display
));
2383 display
[current_view
] = view
;
2386 redraw_display(FALSE
);
2397 goto_view_line(struct view
*view
, unsigned long offset
, unsigned long lineno
)
2399 if (lineno
>= view
->lines
)
2400 lineno
= view
->lines
> 0 ? view
->lines
- 1 : 0;
2402 if (offset
> lineno
|| offset
+ view
->height
<= lineno
) {
2403 unsigned long half
= view
->height
/ 2;
2406 offset
= lineno
- half
;
2411 if (offset
!= view
->pos
.offset
|| lineno
!= view
->pos
.lineno
) {
2412 view
->pos
.offset
= offset
;
2413 view
->pos
.lineno
= lineno
;
2420 /* Scrolling backend */
2422 do_scroll_view(struct view
*view
, int lines
)
2424 bool redraw_current_line
= FALSE
;
2426 /* The rendering expects the new offset. */
2427 view
->pos
.offset
+= lines
;
2429 assert(0 <= view
->pos
.offset
&& view
->pos
.offset
< view
->lines
);
2432 /* Move current line into the view. */
2433 if (view
->pos
.lineno
< view
->pos
.offset
) {
2434 view
->pos
.lineno
= view
->pos
.offset
;
2435 redraw_current_line
= TRUE
;
2436 } else if (view
->pos
.lineno
>= view
->pos
.offset
+ view
->height
) {
2437 view
->pos
.lineno
= view
->pos
.offset
+ view
->height
- 1;
2438 redraw_current_line
= TRUE
;
2441 assert(view
->pos
.offset
<= view
->pos
.lineno
&& view
->pos
.lineno
< view
->lines
);
2443 /* Redraw the whole screen if scrolling is pointless. */
2444 if (view
->height
< ABS(lines
)) {
2448 int line
= lines
> 0 ? view
->height
- lines
: 0;
2449 int end
= line
+ ABS(lines
);
2451 scrollok(view
->win
, TRUE
);
2452 wscrl(view
->win
, lines
);
2453 scrollok(view
->win
, FALSE
);
2455 while (line
< end
&& draw_view_line(view
, line
))
2458 if (redraw_current_line
)
2459 draw_view_line(view
, view
->pos
.lineno
- view
->pos
.offset
);
2460 wnoutrefresh(view
->win
);
2463 view
->has_scrolled
= TRUE
;
2467 /* Scroll frontend */
2469 scroll_view(struct view
*view
, enum request request
)
2473 assert(view_is_displayed(view
));
2476 case REQ_SCROLL_FIRST_COL
:
2478 redraw_view_from(view
, 0);
2481 case REQ_SCROLL_LEFT
:
2482 if (view
->pos
.col
== 0) {
2483 report("Cannot scroll beyond the first column");
2486 if (view
->pos
.col
<= apply_step(opt_hscroll
, view
->width
))
2489 view
->pos
.col
-= apply_step(opt_hscroll
, view
->width
);
2490 redraw_view_from(view
, 0);
2493 case REQ_SCROLL_RIGHT
:
2494 view
->pos
.col
+= apply_step(opt_hscroll
, view
->width
);
2498 case REQ_SCROLL_PAGE_DOWN
:
2499 lines
= view
->height
;
2500 case REQ_SCROLL_LINE_DOWN
:
2501 if (view
->pos
.offset
+ lines
> view
->lines
)
2502 lines
= view
->lines
- view
->pos
.offset
;
2504 if (lines
== 0 || view
->pos
.offset
+ view
->height
>= view
->lines
) {
2505 report("Cannot scroll beyond the last line");
2510 case REQ_SCROLL_PAGE_UP
:
2511 lines
= view
->height
;
2512 case REQ_SCROLL_LINE_UP
:
2513 if (lines
> view
->pos
.offset
)
2514 lines
= view
->pos
.offset
;
2517 report("Cannot scroll beyond the first line");
2525 die("request %d not handled in switch", request
);
2528 do_scroll_view(view
, lines
);
2533 move_view(struct view
*view
, enum request request
)
2535 int scroll_steps
= 0;
2539 case REQ_MOVE_FIRST_LINE
:
2540 steps
= -view
->pos
.lineno
;
2543 case REQ_MOVE_LAST_LINE
:
2544 steps
= view
->lines
- view
->pos
.lineno
- 1;
2547 case REQ_MOVE_PAGE_UP
:
2548 steps
= view
->height
> view
->pos
.lineno
2549 ? -view
->pos
.lineno
: -view
->height
;
2552 case REQ_MOVE_PAGE_DOWN
:
2553 steps
= view
->pos
.lineno
+ view
->height
>= view
->lines
2554 ? view
->lines
- view
->pos
.lineno
- 1 : view
->height
;
2568 die("request %d not handled in switch", request
);
2571 if (steps
<= 0 && view
->pos
.lineno
== 0) {
2572 report("Cannot move beyond the first line");
2575 } else if (steps
>= 0 && view
->pos
.lineno
+ 1 >= view
->lines
) {
2576 report("Cannot move beyond the last line");
2580 /* Move the current line */
2581 view
->pos
.lineno
+= steps
;
2582 assert(0 <= view
->pos
.lineno
&& view
->pos
.lineno
< view
->lines
);
2584 /* Check whether the view needs to be scrolled */
2585 if (view
->pos
.lineno
< view
->pos
.offset
||
2586 view
->pos
.lineno
>= view
->pos
.offset
+ view
->height
) {
2587 scroll_steps
= steps
;
2588 if (steps
< 0 && -steps
> view
->pos
.offset
) {
2589 scroll_steps
= -view
->pos
.offset
;
2591 } else if (steps
> 0) {
2592 if (view
->pos
.lineno
== view
->lines
- 1 &&
2593 view
->lines
> view
->height
) {
2594 scroll_steps
= view
->lines
- view
->pos
.offset
- 1;
2595 if (scroll_steps
>= view
->height
)
2596 scroll_steps
-= view
->height
- 1;
2601 if (!view_is_displayed(view
)) {
2602 view
->pos
.offset
+= scroll_steps
;
2603 assert(0 <= view
->pos
.offset
&& view
->pos
.offset
< view
->lines
);
2604 view
->ops
->select(view
, &view
->line
[view
->pos
.lineno
]);
2608 /* Repaint the old "current" line if we be scrolling */
2609 if (ABS(steps
) < view
->height
)
2610 draw_view_line(view
, view
->pos
.lineno
- steps
- view
->pos
.offset
);
2613 do_scroll_view(view
, scroll_steps
);
2617 /* Draw the current line */
2618 draw_view_line(view
, view
->pos
.lineno
- view
->pos
.offset
);
2620 wnoutrefresh(view
->win
);
2629 static void search_view(struct view
*view
, enum request request
);
2632 grep_text(struct view
*view
, const char *text
[])
2637 for (i
= 0; text
[i
]; i
++)
2639 regexec(view
->regex
, text
[i
], 1, &pmatch
, 0) != REG_NOMATCH
)
2645 select_view_line(struct view
*view
, unsigned long lineno
)
2647 struct position old
= view
->pos
;
2649 if (goto_view_line(view
, view
->pos
.offset
, lineno
)) {
2650 if (view_is_displayed(view
)) {
2651 if (old
.offset
!= view
->pos
.offset
) {
2654 draw_view_line(view
, old
.lineno
- view
->pos
.offset
);
2655 draw_view_line(view
, view
->pos
.lineno
- view
->pos
.offset
);
2656 wnoutrefresh(view
->win
);
2659 view
->ops
->select(view
, &view
->line
[view
->pos
.lineno
]);
2665 find_next(struct view
*view
, enum request request
)
2667 unsigned long lineno
= view
->pos
.lineno
;
2672 report("No previous search");
2674 search_view(view
, request
);
2684 case REQ_SEARCH_BACK
:
2693 if (request
== REQ_FIND_NEXT
|| request
== REQ_FIND_PREV
)
2694 lineno
+= direction
;
2696 /* Note, lineno is unsigned long so will wrap around in which case it
2697 * will become bigger than view->lines. */
2698 for (; lineno
< view
->lines
; lineno
+= direction
) {
2699 if (view
->ops
->grep(view
, &view
->line
[lineno
])) {
2700 select_view_line(view
, lineno
);
2701 report("Line %ld matches '%s'", lineno
+ 1, view
->grep
);
2706 report("No match found for '%s'", view
->grep
);
2710 search_view(struct view
*view
, enum request request
)
2715 regfree(view
->regex
);
2718 view
->regex
= calloc(1, sizeof(*view
->regex
));
2723 regex_err
= regcomp(view
->regex
, opt_search
, REG_EXTENDED
);
2724 if (regex_err
!= 0) {
2725 char buf
[SIZEOF_STR
] = "unknown error";
2727 regerror(regex_err
, view
->regex
, buf
, sizeof(buf
));
2728 report("Search failed: %s", buf
);
2732 string_copy(view
->grep
, opt_search
);
2734 find_next(view
, request
);
2738 * Incremental updating
2742 check_position(struct position
*pos
)
2744 return pos
->lineno
|| pos
->col
|| pos
->offset
;
2748 clear_position(struct position
*pos
)
2750 memset(pos
, 0, sizeof(*pos
));
2754 reset_view(struct view
*view
)
2758 for (i
= 0; i
< view
->lines
; i
++)
2759 free(view
->line
[i
].data
);
2762 view
->prev_pos
= view
->pos
;
2763 clear_position(&view
->pos
);
2768 view
->update_secs
= 0;
2772 format_arg(const char *name
)
2778 const char *value_if_empty
;
2780 #define FORMAT_VAR(name, value, value_if_empty) \
2781 { name, STRING_SIZE(name), value, value_if_empty }
2782 FORMAT_VAR("%(directory)", opt_path
, "."),
2783 FORMAT_VAR("%(file)", opt_file
, ""),
2784 FORMAT_VAR("%(ref)", opt_ref
, "HEAD"),
2785 FORMAT_VAR("%(head)", ref_head
, ""),
2786 FORMAT_VAR("%(commit)", ref_commit
, ""),
2787 FORMAT_VAR("%(blob)", ref_blob
, ""),
2788 FORMAT_VAR("%(branch)", ref_branch
, ""),
2792 if (!prefixcmp(name
, "%(prompt"))
2793 return read_prompt("Command argument: ");
2795 for (i
= 0; i
< ARRAY_SIZE(vars
); i
++)
2796 if (!strncmp(name
, vars
[i
].name
, vars
[i
].namelen
))
2797 return *vars
[i
].value
? vars
[i
].value
: vars
[i
].value_if_empty
;
2799 report("Unknown replacement: `%s`", name
);
2804 format_argv(const char ***dst_argv
, const char *src_argv
[], bool first
)
2806 char buf
[SIZEOF_STR
];
2809 argv_free(*dst_argv
);
2811 for (argc
= 0; src_argv
[argc
]; argc
++) {
2812 const char *arg
= src_argv
[argc
];
2815 if (!strcmp(arg
, "%(fileargs)")) {
2816 if (!argv_append_array(dst_argv
, opt_file_argv
))
2820 } else if (!strcmp(arg
, "%(diffargs)")) {
2821 if (!argv_append_array(dst_argv
, opt_diff_argv
))
2825 } else if (!strcmp(arg
, "%(blameargs)")) {
2826 if (!argv_append_array(dst_argv
, opt_blame_argv
))
2830 } else if (!strcmp(arg
, "%(revargs)") ||
2831 (first
&& !strcmp(arg
, "%(commit)"))) {
2832 if (!argv_append_array(dst_argv
, opt_rev_argv
))
2838 char *next
= strstr(arg
, "%(");
2839 int len
= next
- arg
;
2847 value
= format_arg(next
);
2854 if (!string_format_from(buf
, &bufpos
, "%.*s%s", len
, arg
, value
))
2857 arg
= next
? strchr(next
, ')') + 1 : NULL
;
2860 if (!argv_append(dst_argv
, buf
))
2864 return src_argv
[argc
] == NULL
;
2868 restore_view_position(struct view
*view
)
2870 /* A view without a previous view is the first view */
2871 if (!view
->prev
&& opt_lineno
&& opt_lineno
<= view
->lines
) {
2872 select_view_line(view
, opt_lineno
- 1);
2876 /* Ensure that the view position is in a valid state. */
2877 if (!check_position(&view
->prev_pos
) ||
2878 (view
->pipe
&& view
->lines
<= view
->prev_pos
.lineno
))
2879 return goto_view_line(view
, view
->pos
.offset
, view
->pos
.lineno
);
2881 /* Changing the view position cancels the restoring. */
2882 /* FIXME: Changing back to the first line is not detected. */
2883 if (check_position(&view
->pos
)) {
2884 clear_position(&view
->prev_pos
);
2888 if (goto_view_line(view
, view
->prev_pos
.offset
, view
->prev_pos
.lineno
) &&
2889 view_is_displayed(view
))
2892 view
->pos
.col
= view
->prev_pos
.col
;
2893 clear_position(&view
->prev_pos
);
2899 end_update(struct view
*view
, bool force
)
2903 while (!view
->ops
->read(view
, NULL
))
2907 io_kill(view
->pipe
);
2908 io_done(view
->pipe
);
2913 setup_update(struct view
*view
, const char *vid
)
2916 string_copy_rev(view
->vid
, vid
);
2917 view
->pipe
= &view
->io
;
2918 view
->start_time
= time(NULL
);
2922 begin_update(struct view
*view
, const char *dir
, const char **argv
, enum open_flags flags
)
2924 bool extra
= !!(flags
& (OPEN_EXTRA
));
2925 bool reload
= !!(flags
& (OPEN_RELOAD
| OPEN_REFRESH
| OPEN_PREPARED
| OPEN_EXTRA
));
2926 bool refresh
= flags
& (OPEN_REFRESH
| OPEN_PREPARED
);
2928 if (!reload
&& !strcmp(view
->vid
, view
->id
))
2933 io_done(view
->pipe
);
2935 end_update(view
, TRUE
);
2938 if (!refresh
&& argv
) {
2940 if (!format_argv(&view
->argv
, argv
, !view
->prev
))
2943 /* Put the current ref_* value to the view title ref
2944 * member. This is needed by the blob view. Most other
2945 * views sets it automatically after loading because the
2946 * first line is a commit line. */
2947 string_copy_rev(view
->ref
, view
->id
);
2950 if (view
->argv
&& view
->argv
[0] &&
2951 !io_run(&view
->io
, IO_RD
, view
->dir
, view
->argv
))
2955 setup_update(view
, view
->id
);
2961 update_view(struct view
*view
)
2964 /* Clear the view and redraw everything since the tree sorting
2965 * might have rearranged things. */
2966 bool redraw
= view
->lines
== 0;
2967 bool can_read
= TRUE
;
2972 if (!io_can_read(view
->pipe
, FALSE
)) {
2973 if (view
->lines
== 0 && view_is_displayed(view
)) {
2974 time_t secs
= time(NULL
) - view
->start_time
;
2976 if (secs
> 1 && secs
> view
->update_secs
) {
2977 if (view
->update_secs
== 0)
2979 update_view_title(view
);
2980 view
->update_secs
= secs
;
2986 for (; (line
= io_get(view
->pipe
, '\n', can_read
)); can_read
= FALSE
) {
2987 if (view
->encoding
) {
2988 line
= encoding_convert(view
->encoding
, line
);
2991 if (!view
->ops
->read(view
, line
)) {
2992 report("Allocation failure");
2993 end_update(view
, TRUE
);
2999 unsigned long lines
= view
->lines
;
3002 for (digits
= 0; lines
; digits
++)
3005 /* Keep the displayed view in sync with line number scaling. */
3006 if (digits
!= view
->digits
) {
3007 view
->digits
= digits
;
3008 if (opt_line_number
|| view_has_flags(view
, VIEW_ALWAYS_LINENO
))
3013 if (io_error(view
->pipe
)) {
3014 report("Failed to read: %s", io_strerror(view
->pipe
));
3015 end_update(view
, TRUE
);
3017 } else if (io_eof(view
->pipe
)) {
3018 if (view_is_displayed(view
))
3020 end_update(view
, FALSE
);
3023 if (restore_view_position(view
))
3026 if (!view_is_displayed(view
))
3030 redraw_view_from(view
, 0);
3032 redraw_view_dirty(view
);
3034 /* Update the title _after_ the redraw so that if the redraw picks up a
3035 * commit reference in view->ref it'll be available here. */
3036 update_view_title(view
);
3040 DEFINE_ALLOCATOR(realloc_lines
, struct line
, 256)
3042 static struct line
*
3043 add_line_data(struct view
*view
, void *data
, enum line_type type
)
3047 if (!realloc_lines(&view
->line
, view
->lines
, 1))
3050 line
= &view
->line
[view
->lines
++];
3051 memset(line
, 0, sizeof(*line
));
3059 static struct line
*
3060 add_line_text(struct view
*view
, const char *text
, enum line_type type
)
3062 char *data
= text
? strdup(text
) : NULL
;
3064 return data
? add_line_data(view
, data
, type
) : NULL
;
3067 static struct line
*
3068 add_line_format(struct view
*view
, enum line_type type
, const char *fmt
, ...)
3070 char buf
[SIZEOF_STR
];
3073 FORMAT_BUFFER(buf
, sizeof(buf
), fmt
, retval
, FALSE
);
3074 return retval
>= 0 ? add_line_text(view
, buf
, type
) : NULL
;
3082 load_view(struct view
*view
, enum open_flags flags
)
3085 end_update(view
, TRUE
);
3086 if (view
->ops
->private_size
) {
3088 view
->private = calloc(1, view
->ops
->private_size
);
3090 memset(view
->private, 0, view
->ops
->private_size
);
3092 if (!view
->ops
->open(view
, flags
)) {
3093 report("Failed to load %s view", view
->name
);
3096 restore_view_position(view
);
3098 if (view
->pipe
&& view
->lines
== 0) {
3099 /* Clear the old view and let the incremental updating refill
3102 if (!(flags
& (OPEN_RELOAD
| OPEN_REFRESH
)))
3103 clear_position(&view
->prev_pos
);
3105 } else if (view_is_displayed(view
)) {
3111 #define refresh_view(view) load_view(view, OPEN_REFRESH)
3112 #define reload_view(view) load_view(view, OPEN_RELOAD)
3115 split_view(struct view
*prev
, struct view
*view
)
3119 view
->parent
= prev
;
3122 if (prev
->pos
.lineno
- prev
->pos
.offset
>= prev
->height
) {
3123 /* Take the title line into account. */
3124 int lines
= prev
->pos
.lineno
- prev
->pos
.offset
- prev
->height
+ 1;
3126 /* Scroll the view that was split if the current line is
3127 * outside the new limited view. */
3128 do_scroll_view(prev
, lines
);
3131 if (view
!= prev
&& view_is_displayed(prev
)) {
3132 /* "Blur" the previous view. */
3133 update_view_title(prev
);
3138 open_view(struct view
*prev
, enum request request
, enum open_flags flags
)
3140 bool split
= !!(flags
& OPEN_SPLIT
);
3141 bool reload
= !!(flags
& (OPEN_RELOAD
| OPEN_PREPARED
));
3142 struct view
*view
= VIEW(request
);
3143 int nviews
= displayed_views();
3145 assert(flags
^ OPEN_REFRESH
);
3147 if (view
== prev
&& nviews
== 1 && !reload
) {
3148 report("Already in %s view", view
->name
);
3152 if (!view_has_flags(view
, VIEW_NO_GIT_DIR
) && !opt_git_dir
[0]) {
3153 report("The %s view is disabled in pager view", view
->name
);
3158 split_view(prev
, view
);
3160 maximize_view(view
, FALSE
);
3163 /* No prev signals that this is the first loaded view. */
3164 if (prev
&& view
!= prev
) {
3168 load_view(view
, flags
);
3172 open_argv(struct view
*prev
, struct view
*view
, const char *argv
[], const char *dir
, enum open_flags flags
)
3174 enum request request
= view
- views
+ REQ_OFFSET
+ 1;
3177 end_update(view
, TRUE
);
3180 if (!argv_copy(&view
->argv
, argv
)) {
3181 report("Failed to open %s view: %s", view
->name
, io_strerror(&view
->io
));
3183 open_view(prev
, request
, flags
| OPEN_PREPARED
);
3188 open_external_viewer(const char *argv
[], const char *dir
)
3190 def_prog_mode(); /* save current tty modes */
3191 endwin(); /* restore original tty modes */
3192 io_run_fg(argv
, dir
);
3193 fprintf(stderr
, "Press Enter to continue");
3196 redraw_display(TRUE
);
3200 open_mergetool(const char *file
)
3202 const char *mergetool_argv
[] = { "git", "mergetool", file
, NULL
};
3204 open_external_viewer(mergetool_argv
, opt_cdup
);
3208 open_editor(const char *file
)
3210 const char *editor_argv
[SIZEOF_ARG
+ 1] = { "vi", file
, NULL
};
3211 char editor_cmd
[SIZEOF_STR
];
3215 editor
= getenv("GIT_EDITOR");
3216 if (!editor
&& *opt_editor
)
3217 editor
= opt_editor
;
3219 editor
= getenv("VISUAL");
3221 editor
= getenv("EDITOR");
3225 string_ncopy(editor_cmd
, editor
, strlen(editor
));
3226 if (!argv_from_string_no_quotes(editor_argv
, &argc
, editor_cmd
)) {
3227 report("Failed to read editor command");
3231 editor_argv
[argc
] = file
;
3232 open_external_viewer(editor_argv
, opt_cdup
);
3236 open_run_request(enum request request
)
3238 struct run_request
*req
= get_run_request(request
);
3239 const char **argv
= NULL
;
3242 report("Unknown run request");
3246 if (format_argv(&argv
, req
->argv
, FALSE
)) {
3250 open_external_viewer(argv
, NULL
);
3258 * User request switch noodle
3262 view_driver(struct view
*view
, enum request request
)
3266 if (request
== REQ_NONE
)
3269 if (request
> REQ_NONE
) {
3270 open_run_request(request
);
3271 view_request(view
, REQ_REFRESH
);
3275 request
= view_request(view
, request
);
3276 if (request
== REQ_NONE
)
3282 case REQ_MOVE_PAGE_UP
:
3283 case REQ_MOVE_PAGE_DOWN
:
3284 case REQ_MOVE_FIRST_LINE
:
3285 case REQ_MOVE_LAST_LINE
:
3286 move_view(view
, request
);
3289 case REQ_SCROLL_FIRST_COL
:
3290 case REQ_SCROLL_LEFT
:
3291 case REQ_SCROLL_RIGHT
:
3292 case REQ_SCROLL_LINE_DOWN
:
3293 case REQ_SCROLL_LINE_UP
:
3294 case REQ_SCROLL_PAGE_DOWN
:
3295 case REQ_SCROLL_PAGE_UP
:
3296 scroll_view(view
, request
);
3299 case REQ_VIEW_BLAME
:
3301 report("No file chosen, press %s to open tree view",
3302 get_view_key(view
, REQ_VIEW_TREE
));
3305 open_view(view
, request
, OPEN_DEFAULT
);
3310 report("No file chosen, press %s to open tree view",
3311 get_view_key(view
, REQ_VIEW_TREE
));
3314 open_view(view
, request
, OPEN_DEFAULT
);
3317 case REQ_VIEW_PAGER
:
3319 if (!io_open(&VIEW(REQ_VIEW_PAGER
)->io
, ""))
3320 die("Failed to open stdin");
3321 open_view(view
, request
, OPEN_PREPARED
);
3325 if (!VIEW(REQ_VIEW_PAGER
)->pipe
&& !VIEW(REQ_VIEW_PAGER
)->lines
) {
3326 report("No pager content, press %s to run command from prompt",
3327 get_view_key(view
, REQ_PROMPT
));
3330 open_view(view
, request
, OPEN_DEFAULT
);
3333 case REQ_VIEW_STAGE
:
3334 if (!VIEW(REQ_VIEW_STAGE
)->lines
) {
3335 report("No stage content, press %s to open the status view and choose file",
3336 get_view_key(view
, REQ_VIEW_STATUS
));
3339 open_view(view
, request
, OPEN_DEFAULT
);
3342 case REQ_VIEW_STATUS
:
3343 if (opt_is_inside_work_tree
== FALSE
) {
3344 report("The status view requires a working tree");
3347 open_view(view
, request
, OPEN_DEFAULT
);
3355 case REQ_VIEW_BRANCH
:
3356 open_view(view
, request
, OPEN_DEFAULT
);
3364 view
= view
->parent
;
3365 line
= view
->pos
.lineno
;
3366 move_view(view
, request
);
3367 if (view_is_displayed(view
))
3368 update_view_title(view
);
3369 if (line
!= view
->pos
.lineno
)
3370 view_request(view
, REQ_ENTER
);
3372 move_view(view
, request
);
3378 int nviews
= displayed_views();
3379 int next_view
= (current_view
+ 1) % nviews
;
3381 if (next_view
== current_view
) {
3382 report("Only one view is displayed");
3386 current_view
= next_view
;
3387 /* Blur out the title of the previous view. */
3388 update_view_title(view
);
3393 report("Refreshing is not yet supported for the %s view", view
->name
);
3397 if (displayed_views() == 2)
3398 maximize_view(view
, TRUE
);
3402 case REQ_TOGGLE_LINENO
:
3403 case REQ_TOGGLE_DATE
:
3404 case REQ_TOGGLE_AUTHOR
:
3405 case REQ_TOGGLE_FILENAME
:
3406 case REQ_TOGGLE_GRAPHIC
:
3407 case REQ_TOGGLE_REV_GRAPH
:
3408 case REQ_TOGGLE_REFS
:
3409 case REQ_TOGGLE_CHANGES
:
3410 case REQ_TOGGLE_IGNORE_SPACE
:
3411 if (toggle_option(request
) && view_has_flags(view
, VIEW_DIFF_LIKE
))
3415 case REQ_TOGGLE_SORT_FIELD
:
3416 case REQ_TOGGLE_SORT_ORDER
:
3417 report("Sorting is not yet supported for the %s view", view
->name
);
3420 case REQ_DIFF_CONTEXT_UP
:
3421 case REQ_DIFF_CONTEXT_DOWN
:
3422 report("Changing the diff context is not yet supported for the %s view", view
->name
);
3426 case REQ_SEARCH_BACK
:
3427 search_view(view
, request
);
3432 find_next(view
, request
);
3435 case REQ_STOP_LOADING
:
3436 foreach_view(view
, i
) {
3438 report("Stopped loading the %s view", view
->name
),
3439 end_update(view
, TRUE
);
3443 case REQ_SHOW_VERSION
:
3444 report("tig-%s (built %s)", TIG_VERSION
, __DATE__
);
3447 case REQ_SCREEN_REDRAW
:
3448 redraw_display(TRUE
);
3452 report("Nothing to edit");
3456 report("Nothing to enter");
3459 case REQ_VIEW_CLOSE
:
3460 /* XXX: Mark closed views by letting view->prev point to the
3461 * view itself. Parents to closed view should never be
3463 if (view
->prev
&& view
->prev
!= view
) {
3464 maximize_view(view
->prev
, TRUE
);
3473 report("Unknown key, press %s for help",
3474 get_view_key(view
, REQ_VIEW_HELP
));
3483 * View backend utilities
3493 const enum sort_field
*fields
;
3494 size_t size
, current
;
3498 #define SORT_STATE(fields) { fields, ARRAY_SIZE(fields), 0 }
3499 #define get_sort_field(state) ((state).fields[(state).current])
3500 #define sort_order(state, result) ((state).reverse ? -(result) : (result))
3503 sort_view(struct view
*view
, enum request request
, struct sort_state
*state
,
3504 int (*compare
)(const void *, const void *))
3507 case REQ_TOGGLE_SORT_FIELD
:
3508 state
->current
= (state
->current
+ 1) % state
->size
;
3511 case REQ_TOGGLE_SORT_ORDER
:
3512 state
->reverse
= !state
->reverse
;
3515 die("Not a sort request");
3518 qsort(view
->line
, view
->lines
, sizeof(*view
->line
), compare
);
3523 update_diff_context(enum request request
)
3525 int diff_context
= opt_diff_context
;
3528 case REQ_DIFF_CONTEXT_UP
:
3529 opt_diff_context
+= 1;
3530 update_diff_context_arg(opt_diff_context
);
3533 case REQ_DIFF_CONTEXT_DOWN
:
3534 if (opt_diff_context
== 0) {
3535 report("Diff context cannot be less than zero");
3538 opt_diff_context
-= 1;
3539 update_diff_context_arg(opt_diff_context
);
3543 die("Not a diff context request");
3546 return diff_context
!= opt_diff_context
;
3549 DEFINE_ALLOCATOR(realloc_authors
, const char *, 256)
3551 /* Small author cache to reduce memory consumption. It uses binary
3552 * search to lookup or find place to position new entries. No entries
3553 * are ever freed. */
3555 get_author(const char *name
)
3557 static const char **authors
;
3558 static size_t authors_size
;
3559 int from
= 0, to
= authors_size
- 1;
3561 while (from
<= to
) {
3562 size_t pos
= (to
+ from
) / 2;
3563 int cmp
= strcmp(name
, authors
[pos
]);
3566 return authors
[pos
];
3574 if (!realloc_authors(&authors
, authors_size
, 1))
3576 name
= strdup(name
);
3580 memmove(authors
+ from
+ 1, authors
+ from
, (authors_size
- from
) * sizeof(*authors
));
3581 authors
[from
] = name
;
3588 parse_timesec(struct time
*time
, const char *sec
)
3590 time
->sec
= (time_t) atol(sec
);
3594 parse_timezone(struct time
*time
, const char *zone
)
3598 tz
= ('0' - zone
[1]) * 60 * 60 * 10;
3599 tz
+= ('0' - zone
[2]) * 60 * 60;
3600 tz
+= ('0' - zone
[3]) * 60 * 10;
3601 tz
+= ('0' - zone
[4]) * 60;
3610 /* Parse author lines where the name may be empty:
3611 * author <email@address.tld> 1138474660 +0100
3614 parse_author_line(char *ident
, const char **author
, struct time
*time
)
3616 char *nameend
= strchr(ident
, '<');
3617 char *emailend
= strchr(ident
, '>');
3619 if (nameend
&& emailend
)
3620 *nameend
= *emailend
= 0;
3621 ident
= chomp_string(ident
);
3624 ident
= chomp_string(nameend
+ 1);
3629 *author
= get_author(ident
);
3631 /* Parse epoch and timezone */
3632 if (emailend
&& emailend
[1] == ' ') {
3633 char *secs
= emailend
+ 2;
3634 char *zone
= strchr(secs
, ' ');
3636 parse_timesec(time
, secs
);
3638 if (zone
&& strlen(zone
) == STRING_SIZE(" +0700"))
3639 parse_timezone(time
, zone
+ 1);
3643 static struct line
*
3644 find_prev_line_by_type(struct view
*view
, struct line
*line
, enum line_type type
)
3646 for (; view
->line
< line
; line
--)
3647 if (line
->type
== type
)
3657 struct blame_commit
{
3658 char id
[SIZEOF_REV
]; /* SHA1 ID. */
3659 char title
[128]; /* First line of the commit message. */
3660 const char *author
; /* Author of the commit. */
3661 struct time time
; /* Date from the author ident. */
3662 char filename
[128]; /* Name of file. */
3663 char parent_id
[SIZEOF_REV
]; /* Parent/previous SHA1 ID. */
3664 char parent_filename
[128]; /* Parent/previous name of file. */
3667 struct blame_header
{
3668 char id
[SIZEOF_REV
]; /* SHA1 ID. */
3675 parse_number(const char **posref
, size_t *number
, size_t min
, size_t max
)
3677 const char *pos
= *posref
;
3680 pos
= strchr(pos
+ 1, ' ');
3681 if (!pos
|| !isdigit(pos
[1]))
3683 *number
= atoi(pos
+ 1);
3684 if (*number
< min
|| *number
> max
)
3692 parse_blame_header(struct blame_header
*header
, const char *text
, size_t max_lineno
)
3694 const char *pos
= text
+ SIZEOF_REV
- 2;
3696 if (strlen(text
) <= SIZEOF_REV
|| pos
[1] != ' ')
3699 string_ncopy(header
->id
, text
, SIZEOF_REV
);
3701 if (!parse_number(&pos
, &header
->orig_lineno
, 1, 9999999) ||
3702 !parse_number(&pos
, &header
->lineno
, 1, max_lineno
) ||
3703 !parse_number(&pos
, &header
->group
, 1, max_lineno
- header
->lineno
+ 1))
3710 match_blame_header(const char *name
, char **line
)
3712 size_t namelen
= strlen(name
);
3713 bool matched
= !strncmp(name
, *line
, namelen
);
3722 parse_blame_info(struct blame_commit
*commit
, char *line
)
3724 if (match_blame_header("author ", &line
)) {
3725 commit
->author
= get_author(line
);
3727 } else if (match_blame_header("author-time ", &line
)) {
3728 parse_timesec(&commit
->time
, line
);
3730 } else if (match_blame_header("author-tz ", &line
)) {
3731 parse_timezone(&commit
->time
, line
);
3733 } else if (match_blame_header("summary ", &line
)) {
3734 string_ncopy(commit
->title
, line
, strlen(line
));
3736 } else if (match_blame_header("previous ", &line
)) {
3737 if (strlen(line
) <= SIZEOF_REV
)
3739 string_copy_rev(commit
->parent_id
, line
);
3741 string_ncopy(commit
->parent_filename
, line
, strlen(line
));
3743 } else if (match_blame_header("filename ", &line
)) {
3744 string_ncopy(commit
->filename
, line
, strlen(line
));
3756 pager_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
3758 if (draw_lineno(view
, lineno
))
3761 draw_text(view
, line
->type
, line
->data
);
3766 add_describe_ref(char *buf
, size_t *bufpos
, const char *commit_id
, const char *sep
)
3768 const char *describe_argv
[] = { "git", "describe", commit_id
, NULL
};
3769 char ref
[SIZEOF_STR
];
3771 if (!io_run_buf(describe_argv
, ref
, sizeof(ref
)) || !*ref
)
3774 /* This is the only fatal call, since it can "corrupt" the buffer. */
3775 if (!string_nformat(buf
, SIZEOF_STR
, bufpos
, "%s%s", sep
, ref
))
3782 add_pager_refs(struct view
*view
, struct line
*line
)
3784 char buf
[SIZEOF_STR
];
3785 char *commit_id
= (char *)line
->data
+ STRING_SIZE("commit ");
3786 struct ref_list
*list
;
3787 size_t bufpos
= 0, i
;
3788 const char *sep
= "Refs: ";
3789 bool is_tag
= FALSE
;
3791 assert(line
->type
== LINE_COMMIT
);
3793 list
= get_ref_list(commit_id
);
3795 if (view_has_flags(view
, VIEW_ADD_DESCRIBE_REF
))
3796 goto try_add_describe_ref
;
3800 for (i
= 0; i
< list
->size
; i
++) {
3801 struct ref
*ref
= list
->refs
[i
];
3802 const char *fmt
= ref
->tag
? "%s[%s]" :
3803 ref
->remote
? "%s<%s>" : "%s%s";
3805 if (!string_format_from(buf
, &bufpos
, fmt
, sep
, ref
->name
))
3812 if (!is_tag
&& view_has_flags(view
, VIEW_ADD_DESCRIBE_REF
)) {
3813 try_add_describe_ref
:
3814 /* Add <tag>-g<commit_id> "fake" reference. */
3815 if (!add_describe_ref(buf
, &bufpos
, commit_id
, sep
))
3822 add_line_text(view
, buf
, LINE_PP_REFS
);
3826 pager_common_read(struct view
*view
, char *data
, enum line_type type
)
3833 line
= add_line_text(view
, data
, type
);
3837 if (line
->type
== LINE_COMMIT
&& view_has_flags(view
, VIEW_ADD_PAGER_REFS
))
3838 add_pager_refs(view
, line
);
3844 pager_read(struct view
*view
, char *data
)
3849 return pager_common_read(view
, data
, get_line_type(data
));
3853 pager_request(struct view
*view
, enum request request
, struct line
*line
)
3857 if (request
!= REQ_ENTER
)
3860 if (line
->type
== LINE_COMMIT
&& view_has_flags(view
, VIEW_OPEN_DIFF
)) {
3861 open_view(view
, REQ_VIEW_DIFF
, OPEN_SPLIT
);
3865 /* Always scroll the view even if it was split. That way
3866 * you can use Enter to scroll through the log view and
3867 * split open each commit diff. */
3868 scroll_view(view
, REQ_SCROLL_LINE_DOWN
);
3870 /* FIXME: A minor workaround. Scrolling the view will call report("")
3871 * but if we are scrolling a non-current view this won't properly
3872 * update the view title. */
3874 update_view_title(view
);
3880 pager_grep(struct view
*view
, struct line
*line
)
3882 const char *text
[] = { line
->data
, NULL
};
3884 return grep_text(view
, text
);
3888 pager_select(struct view
*view
, struct line
*line
)
3890 if (line
->type
== LINE_COMMIT
) {
3891 char *text
= (char *)line
->data
+ STRING_SIZE("commit ");
3893 if (!view_has_flags(view
, VIEW_NO_REF
))
3894 string_copy_rev(view
->ref
, text
);
3895 string_copy_rev(ref_commit
, text
);
3900 pager_open(struct view
*view
, enum open_flags flags
)
3902 return begin_update(view
, NULL
, NULL
, flags
);
3905 static struct view_ops pager_ops
= {
3907 VIEW_OPEN_DIFF
| VIEW_NO_REF
| VIEW_NO_GIT_DIR
,
3918 log_open(struct view
*view
, enum open_flags flags
)
3920 static const char *log_argv
[] = {
3921 "git", "log", ENCODING_ARG
, "--no-color", "--cc", "--stat", "-n100", "%(head)", NULL
3924 return begin_update(view
, NULL
, log_argv
, flags
);
3928 log_request(struct view
*view
, enum request request
, struct line
*line
)
3936 return pager_request(view
, request
, line
);
3940 static struct view_ops log_ops
= {
3942 VIEW_ADD_PAGER_REFS
| VIEW_OPEN_DIFF
,
3953 bool reading_diff_stat
;
3958 diff_open(struct view
*view
, enum open_flags flags
)
3960 static const char *diff_argv
[] = {
3961 "git", "show", ENCODING_ARG
, "--pretty=fuller", "--no-color", "--root",
3962 "--patch-with-stat", "--find-copies-harder", "-C",
3963 opt_notes_arg
, opt_diff_context_arg
, opt_ignore_space_arg
,
3964 "%(diffargs)", "%(commit)", "--", "%(fileargs)", NULL
3967 return begin_update(view
, NULL
, diff_argv
, flags
);
3971 diff_common_read(struct view
*view
, char *data
, struct diff_state
*state
)
3973 enum line_type type
;
3975 if (state
->reading_diff_stat
) {
3976 size_t len
= strlen(data
);
3977 char *pipe
= strchr(data
, '|');
3978 bool has_histogram
= data
[len
- 1] == '-' || data
[len
- 1] == '+';
3979 bool has_bin_diff
= pipe
&& strstr(pipe
, "Bin") && strstr(pipe
, "->");
3981 if (pipe
&& (has_histogram
|| has_bin_diff
)) {
3982 return add_line_text(view
, data
, LINE_DIFF_STAT
) != NULL
;
3984 state
->reading_diff_stat
= FALSE
;
3987 } else if (!strcmp(data
, "---")) {
3988 state
->reading_diff_stat
= TRUE
;
3991 type
= get_line_type(data
);
3993 if (type
== LINE_DIFF_HEADER
) {
3994 const int len
= line_info
[LINE_DIFF_HEADER
].linelen
;
3996 if (!strncmp(data
+ len
, "combined ", strlen("combined ")) ||
3997 !strncmp(data
+ len
, "cc ", strlen("cc ")))
3998 state
->combined_diff
= TRUE
;
4001 /* ADD2 and DEL2 are only valid in combined diff hunks */
4002 if (!state
->combined_diff
&& (type
== LINE_DIFF_ADD2
|| type
== LINE_DIFF_DEL2
))
4003 type
= LINE_DEFAULT
;
4005 return pager_common_read(view
, data
, type
);
4009 diff_common_enter(struct view
*view
, enum request request
, struct line
*line
)
4011 if (line
->type
== LINE_DIFF_STAT
) {
4012 int file_number
= 0;
4014 while (line
>= view
->line
&& line
->type
== LINE_DIFF_STAT
) {
4019 while (line
< view
->line
+ view
->lines
) {
4020 if (line
->type
== LINE_DIFF_HEADER
) {
4021 if (file_number
== 1) {
4030 select_view_line(view
, line
- view
->line
);
4035 return pager_request(view
, request
, line
);
4040 diff_common_draw_part(struct view
*view
, enum line_type
*type
, char **text
, char c
, enum line_type next_type
)
4042 char *sep
= strchr(*text
, c
);
4046 draw_text(view
, *type
, *text
);
4056 diff_common_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
4058 char *text
= line
->data
;
4059 enum line_type type
= line
->type
;
4061 if (draw_lineno(view
, lineno
))
4064 if (type
== LINE_DIFF_STAT
) {
4065 diff_common_draw_part(view
, &type
, &text
, '|', LINE_DEFAULT
);
4066 if (diff_common_draw_part(view
, &type
, &text
, 'B', LINE_DEFAULT
)) {
4067 /* Handle binary diffstat: Bin <deleted> -> <added> bytes */
4068 diff_common_draw_part(view
, &type
, &text
, ' ', LINE_DIFF_DEL
);
4069 diff_common_draw_part(view
, &type
, &text
, '-', LINE_DEFAULT
);
4070 diff_common_draw_part(view
, &type
, &text
, ' ', LINE_DIFF_ADD
);
4071 diff_common_draw_part(view
, &type
, &text
, 'b', LINE_DEFAULT
);
4074 diff_common_draw_part(view
, &type
, &text
, '+', LINE_DIFF_ADD
);
4075 diff_common_draw_part(view
, &type
, &text
, '-', LINE_DIFF_DEL
);
4079 draw_text(view
, type
, text
);
4084 diff_read(struct view
*view
, char *data
)
4086 struct diff_state
*state
= view
->private;
4089 /* Fall back to retry if no diff will be shown. */
4090 if (view
->lines
== 0 && opt_file_argv
) {
4091 int pos
= argv_size(view
->argv
)
4092 - argv_size(opt_file_argv
) - 1;
4094 if (pos
> 0 && !strcmp(view
->argv
[pos
], "--")) {
4095 for (; view
->argv
[pos
]; pos
++) {
4096 free((void *) view
->argv
[pos
]);
4097 view
->argv
[pos
] = NULL
;
4101 io_done(view
->pipe
);
4102 if (io_run(&view
->io
, IO_RD
, view
->dir
, view
->argv
))
4109 return diff_common_read(view
, data
, state
);
4113 diff_blame_line(const char *ref
, const char *file
, unsigned long lineno
,
4114 struct blame_header
*header
, struct blame_commit
*commit
)
4116 char line_arg
[SIZEOF_STR
];
4117 const char *blame_argv
[] = {
4118 "git", "blame", ENCODING_ARG
, "-p", line_arg
, ref
, "--", file
, NULL
4124 if (!string_format(line_arg
, "-L%d,+1", lineno
))
4127 if (!io_run(&io
, IO_RD
, opt_cdup
, blame_argv
))
4130 while ((buf
= io_get(&io
, '\n', TRUE
))) {
4132 if (!parse_blame_header(header
, buf
, 9999999))
4136 } else if (parse_blame_info(commit
, buf
)) {
4150 parse_chunk_lineno(int *lineno
, const char *chunk
, int marker
)
4152 return prefixcmp(chunk
, "@@ -") ||
4153 !(chunk
= strchr(chunk
, marker
)) ||
4154 parse_int(lineno
, chunk
+ 1, 0, 9999999) != OPT_OK
;
4158 diff_trace_origin(struct view
*view
, struct line
*line
)
4160 struct line
*diff
= find_prev_line_by_type(view
, line
, LINE_DIFF_HEADER
);
4161 struct line
*chunk
= find_prev_line_by_type(view
, line
, LINE_DIFF_CHUNK
);
4162 const char *chunk_data
;
4163 int chunk_marker
= line
->type
== LINE_DIFF_DEL
? '-' : '+';
4165 const char *file
= NULL
;
4166 char ref
[SIZEOF_REF
];
4167 struct blame_header header
;
4168 struct blame_commit commit
;
4170 if (!diff
|| !chunk
|| chunk
== line
) {
4171 report("The line to trace must be inside a diff chunk");
4175 for (; diff
< line
&& !file
; diff
++) {
4176 const char *data
= diff
->data
;
4178 if (!prefixcmp(data
, "--- a/")) {
4179 file
= data
+ STRING_SIZE("--- a/");
4184 if (diff
== line
|| !file
) {
4185 report("Failed to read the file name");
4189 chunk_data
= chunk
->data
;
4191 if (parse_chunk_lineno(&lineno
, chunk_data
, chunk_marker
)) {
4192 report("Failed to read the line number");
4197 report("This is the origin of the line");
4201 for (chunk
+= 1; chunk
< line
; chunk
++) {
4202 if (chunk
->type
== LINE_DIFF_ADD
) {
4203 lineno
+= chunk_marker
== '+';
4204 } else if (chunk
->type
== LINE_DIFF_DEL
) {
4205 lineno
+= chunk_marker
== '-';
4211 if (chunk_marker
== '+')
4212 string_copy(ref
, view
->vid
);
4214 string_format(ref
, "%s^", view
->vid
);
4216 if (!diff_blame_line(ref
, file
, lineno
, &header
, &commit
)) {
4217 report("Failed to read blame data");
4221 string_ncopy(opt_file
, commit
.filename
, strlen(commit
.filename
));
4222 string_copy(opt_ref
, header
.id
);
4223 opt_goto_line
= header
.orig_lineno
- 1;
4225 return REQ_VIEW_BLAME
;
4229 diff_request(struct view
*view
, enum request request
, struct line
*line
)
4232 case REQ_VIEW_BLAME
:
4233 return diff_trace_origin(view
, line
);
4235 case REQ_DIFF_CONTEXT_UP
:
4236 case REQ_DIFF_CONTEXT_DOWN
:
4237 if (!update_diff_context(request
))
4244 return diff_common_enter(view
, request
, line
);
4247 return pager_request(view
, request
, line
);
4252 diff_select(struct view
*view
, struct line
*line
)
4254 if (line
->type
== LINE_DIFF_STAT
) {
4255 const char *key
= get_view_key(view
, REQ_ENTER
);
4257 string_format(view
->ref
, "Press '%s' to jump to file diff", key
);
4259 string_ncopy(view
->ref
, view
->id
, strlen(view
->id
));
4260 return pager_select(view
, line
);
4264 static struct view_ops diff_ops
= {
4266 VIEW_DIFF_LIKE
| VIEW_ADD_DESCRIBE_REF
| VIEW_ADD_PAGER_REFS
,
4267 sizeof(struct diff_state
),
4280 static bool help_keymap_hidden
[ARRAY_SIZE(keymap_map
)];
4283 help_open_keymap_title(struct view
*view
, enum keymap keymap
)
4287 line
= add_line_format(view
, LINE_HELP_KEYMAP
, "[%c] %s bindings",
4288 help_keymap_hidden
[keymap
] ? '+' : '-',
4289 enum_name(keymap_map
[keymap
]));
4291 line
->other
= keymap
;
4293 return help_keymap_hidden
[keymap
];
4297 help_open_keymap(struct view
*view
, enum keymap keymap
)
4299 const char *group
= NULL
;
4300 char buf
[SIZEOF_STR
];
4302 bool add_title
= TRUE
;
4305 for (i
= 0; i
< ARRAY_SIZE(req_info
); i
++) {
4306 const char *key
= NULL
;
4308 if (req_info
[i
].request
== REQ_NONE
)
4311 if (!req_info
[i
].request
) {
4312 group
= req_info
[i
].help
;
4316 key
= get_keys(keymap
, req_info
[i
].request
, TRUE
);
4320 if (add_title
&& help_open_keymap_title(view
, keymap
))
4325 add_line_text(view
, group
, LINE_HELP_GROUP
);
4329 add_line_format(view
, LINE_DEFAULT
, " %-25s %-20s %s", key
,
4330 enum_name(req_info
[i
]), req_info
[i
].help
);
4333 group
= "External commands:";
4335 for (i
= 0; i
< run_requests
; i
++) {
4336 struct run_request
*req
= get_run_request(REQ_NONE
+ i
+ 1);
4340 if (!req
|| req
->keymap
!= keymap
)
4343 key
= get_key_name(req
->key
);
4345 key
= "(no key defined)";
4347 if (add_title
&& help_open_keymap_title(view
, keymap
))
4352 add_line_text(view
, group
, LINE_HELP_GROUP
);
4356 for (bufpos
= 0, argc
= 0; req
->argv
[argc
]; argc
++)
4357 if (!string_format_from(buf
, &bufpos
, "%s%s",
4358 argc
? " " : "", req
->argv
[argc
]))
4361 add_line_format(view
, LINE_DEFAULT
, " %-25s `%s`", key
, buf
);
4366 help_open(struct view
*view
, enum open_flags flags
)
4371 add_line_text(view
, "Quick reference for tig keybindings:", LINE_DEFAULT
);
4372 add_line_text(view
, "", LINE_DEFAULT
);
4374 for (keymap
= 0; keymap
< ARRAY_SIZE(keymap_map
); keymap
++)
4375 help_open_keymap(view
, keymap
);
4381 help_request(struct view
*view
, enum request request
, struct line
*line
)
4385 if (line
->type
== LINE_HELP_KEYMAP
) {
4386 help_keymap_hidden
[line
->other
] =
4387 !help_keymap_hidden
[line
->other
];
4393 return pager_request(view
, request
, line
);
4397 static struct view_ops help_ops
= {
4414 struct tree_stack_entry
{
4415 struct tree_stack_entry
*prev
; /* Entry below this in the stack */
4416 unsigned long lineno
; /* Line number to restore */
4417 char *name
; /* Position of name in opt_path */
4420 /* The top of the path stack. */
4421 static struct tree_stack_entry
*tree_stack
= NULL
;
4422 unsigned long tree_lineno
= 0;
4425 pop_tree_stack_entry(void)
4427 struct tree_stack_entry
*entry
= tree_stack
;
4429 tree_lineno
= entry
->lineno
;
4431 tree_stack
= entry
->prev
;
4436 push_tree_stack_entry(const char *name
, unsigned long lineno
)
4438 struct tree_stack_entry
*entry
= calloc(1, sizeof(*entry
));
4439 size_t pathlen
= strlen(opt_path
);
4444 entry
->prev
= tree_stack
;
4445 entry
->name
= opt_path
+ pathlen
;
4448 if (!string_format_from(opt_path
, &pathlen
, "%s/", name
)) {
4449 pop_tree_stack_entry();
4453 /* Move the current line to the first tree entry. */
4455 entry
->lineno
= lineno
;
4458 /* Parse output from git-ls-tree(1):
4460 * 100644 blob f931e1d229c3e185caad4449bf5b66ed72462657 tig.c
4463 #define SIZEOF_TREE_ATTR \
4464 STRING_SIZE("100644 blob f931e1d229c3e185caad4449bf5b66ed72462657\t")
4466 #define SIZEOF_TREE_MODE \
4467 STRING_SIZE("100644 ")
4469 #define TREE_ID_OFFSET \
4470 STRING_SIZE("100644 blob ")
4473 char id
[SIZEOF_REV
];
4475 struct time time
; /* Date from the author ident. */
4476 const char *author
; /* Author of the commit. */
4481 const char *author_name
;
4482 struct time author_time
;
4487 tree_path(const struct line
*line
)
4489 return ((struct tree_entry
*) line
->data
)->name
;
4493 tree_compare_entry(const struct line
*line1
, const struct line
*line2
)
4495 if (line1
->type
!= line2
->type
)
4496 return line1
->type
== LINE_TREE_DIR
? -1 : 1;
4497 return strcmp(tree_path(line1
), tree_path(line2
));
4500 static const enum sort_field tree_sort_fields
[] = {
4501 ORDERBY_NAME
, ORDERBY_DATE
, ORDERBY_AUTHOR
4503 static struct sort_state tree_sort_state
= SORT_STATE(tree_sort_fields
);
4506 tree_compare(const void *l1
, const void *l2
)
4508 const struct line
*line1
= (const struct line
*) l1
;
4509 const struct line
*line2
= (const struct line
*) l2
;
4510 const struct tree_entry
*entry1
= ((const struct line
*) l1
)->data
;
4511 const struct tree_entry
*entry2
= ((const struct line
*) l2
)->data
;
4513 if (line1
->type
== LINE_TREE_HEAD
)
4515 if (line2
->type
== LINE_TREE_HEAD
)
4518 switch (get_sort_field(tree_sort_state
)) {
4520 return sort_order(tree_sort_state
, timecmp(&entry1
->time
, &entry2
->time
));
4522 case ORDERBY_AUTHOR
:
4523 return sort_order(tree_sort_state
, strcmp_null(entry1
->author
, entry2
->author
));
4527 return sort_order(tree_sort_state
, tree_compare_entry(line1
, line2
));
4532 static struct line
*
4533 tree_entry(struct view
*view
, enum line_type type
, const char *path
,
4534 const char *mode
, const char *id
)
4536 struct tree_entry
*entry
= calloc(1, sizeof(*entry
) + strlen(path
));
4537 struct line
*line
= entry
? add_line_data(view
, entry
, type
) : NULL
;
4539 if (!entry
|| !line
) {
4544 strncpy(entry
->name
, path
, strlen(path
));
4546 entry
->mode
= strtoul(mode
, NULL
, 8);
4548 string_copy_rev(entry
->id
, id
);
4554 tree_read_date(struct view
*view
, char *text
, struct tree_state
*state
)
4556 if (!text
&& state
->read_date
) {
4557 state
->read_date
= FALSE
;
4561 /* Find next entry to process */
4562 const char *log_file
[] = {
4563 "git", "log", ENCODING_ARG
, "--no-color", "--pretty=raw",
4564 "--cc", "--raw", view
->id
, "--", "%(directory)", NULL
4568 tree_entry(view
, LINE_TREE_HEAD
, opt_path
, NULL
, NULL
);
4569 report("Tree is empty");
4573 if (!begin_update(view
, opt_cdup
, log_file
, OPEN_EXTRA
)) {
4574 report("Failed to load tree data");
4578 state
->read_date
= TRUE
;
4581 } else if (*text
== 'a' && get_line_type(text
) == LINE_AUTHOR
) {
4582 parse_author_line(text
+ STRING_SIZE("author "),
4583 &state
->author_name
, &state
->author_time
);
4585 } else if (*text
== ':') {
4587 size_t annotated
= 1;
4590 pos
= strchr(text
, '\t');
4594 if (*opt_path
&& !strncmp(text
, opt_path
, strlen(opt_path
)))
4595 text
+= strlen(opt_path
);
4596 pos
= strchr(text
, '/');
4600 for (i
= 1; i
< view
->lines
; i
++) {
4601 struct line
*line
= &view
->line
[i
];
4602 struct tree_entry
*entry
= line
->data
;
4604 annotated
+= !!entry
->author
;
4605 if (entry
->author
|| strcmp(entry
->name
, text
))
4608 entry
->author
= state
->author_name
;
4609 entry
->time
= state
->author_time
;
4614 if (annotated
== view
->lines
)
4615 io_kill(view
->pipe
);
4621 tree_read(struct view
*view
, char *text
)
4623 struct tree_state
*state
= view
->private;
4624 struct tree_entry
*data
;
4625 struct line
*entry
, *line
;
4626 enum line_type type
;
4627 size_t textlen
= text
? strlen(text
) : 0;
4628 char *path
= text
+ SIZEOF_TREE_ATTR
;
4630 if (state
->read_date
|| !text
)
4631 return tree_read_date(view
, text
, state
);
4633 if (textlen
<= SIZEOF_TREE_ATTR
)
4635 if (view
->lines
== 0 &&
4636 !tree_entry(view
, LINE_TREE_HEAD
, opt_path
, NULL
, NULL
))
4639 /* Strip the path part ... */
4641 size_t pathlen
= textlen
- SIZEOF_TREE_ATTR
;
4642 size_t striplen
= strlen(opt_path
);
4644 if (pathlen
> striplen
)
4645 memmove(path
, path
+ striplen
,
4646 pathlen
- striplen
+ 1);
4648 /* Insert "link" to parent directory. */
4649 if (view
->lines
== 1 &&
4650 !tree_entry(view
, LINE_TREE_DIR
, "..", "040000", view
->ref
))
4654 type
= text
[SIZEOF_TREE_MODE
] == 't' ? LINE_TREE_DIR
: LINE_TREE_FILE
;
4655 entry
= tree_entry(view
, type
, path
, text
, text
+ TREE_ID_OFFSET
);
4660 /* Skip "Directory ..." and ".." line. */
4661 for (line
= &view
->line
[1 + !!*opt_path
]; line
< entry
; line
++) {
4662 if (tree_compare_entry(line
, entry
) <= 0)
4665 memmove(line
+ 1, line
, (entry
- line
) * sizeof(*entry
));
4669 for (; line
<= entry
; line
++)
4670 line
->dirty
= line
->cleareol
= 1;
4674 if (tree_lineno
> view
->pos
.lineno
) {
4675 view
->pos
.lineno
= tree_lineno
;
4683 tree_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
4685 struct tree_entry
*entry
= line
->data
;
4687 if (line
->type
== LINE_TREE_HEAD
) {
4688 if (draw_text(view
, line
->type
, "Directory path /"))
4691 if (draw_mode(view
, entry
->mode
))
4694 if (draw_author(view
, entry
->author
))
4697 if (draw_date(view
, &entry
->time
))
4701 draw_text(view
, line
->type
, entry
->name
);
4706 open_blob_editor(const char *id
)
4708 const char *blob_argv
[] = { "git", "cat-file", "blob", id
, NULL
};
4709 char file
[SIZEOF_STR
] = "/tmp/tigblob.XXXXXX";
4710 int fd
= mkstemp(file
);
4713 report("Failed to create temporary file");
4714 else if (!io_run_append(blob_argv
, fd
))
4715 report("Failed to save blob data to file");
4723 tree_request(struct view
*view
, enum request request
, struct line
*line
)
4725 enum open_flags flags
;
4726 struct tree_entry
*entry
= line
->data
;
4729 case REQ_VIEW_BLAME
:
4730 if (line
->type
!= LINE_TREE_FILE
) {
4731 report("Blame only supported for files");
4735 string_copy(opt_ref
, view
->vid
);
4739 if (line
->type
!= LINE_TREE_FILE
) {
4740 report("Edit only supported for files");
4741 } else if (!is_head_commit(view
->vid
)) {
4742 open_blob_editor(entry
->id
);
4744 open_editor(opt_file
);
4748 case REQ_TOGGLE_SORT_FIELD
:
4749 case REQ_TOGGLE_SORT_ORDER
:
4750 sort_view(view
, request
, &tree_sort_state
, tree_compare
);
4755 /* quit view if at top of tree */
4756 return REQ_VIEW_CLOSE
;
4759 line
= &view
->line
[1];
4769 /* Cleanup the stack if the tree view is at a different tree. */
4770 while (!*opt_path
&& tree_stack
)
4771 pop_tree_stack_entry();
4773 switch (line
->type
) {
4775 /* Depending on whether it is a subdirectory or parent link
4776 * mangle the path buffer. */
4777 if (line
== &view
->line
[1] && *opt_path
) {
4778 pop_tree_stack_entry();
4781 const char *basename
= tree_path(line
);
4783 push_tree_stack_entry(basename
, view
->pos
.lineno
);
4786 /* Trees and subtrees share the same ID, so they are not not
4787 * unique like blobs. */
4788 flags
= OPEN_RELOAD
;
4789 request
= REQ_VIEW_TREE
;
4792 case LINE_TREE_FILE
:
4793 flags
= view_is_displayed(view
) ? OPEN_SPLIT
: OPEN_DEFAULT
;
4794 request
= REQ_VIEW_BLOB
;
4801 open_view(view
, request
, flags
);
4802 if (request
== REQ_VIEW_TREE
)
4803 view
->pos
.lineno
= tree_lineno
;
4809 tree_grep(struct view
*view
, struct line
*line
)
4811 struct tree_entry
*entry
= line
->data
;
4812 const char *text
[] = {
4814 mkauthor(entry
->author
, opt_author_cols
, opt_author
),
4815 mkdate(&entry
->time
, opt_date
),
4819 return grep_text(view
, text
);
4823 tree_select(struct view
*view
, struct line
*line
)
4825 struct tree_entry
*entry
= line
->data
;
4827 if (line
->type
== LINE_TREE_FILE
) {
4828 string_copy_rev(ref_blob
, entry
->id
);
4829 string_format(opt_file
, "%s%s", opt_path
, tree_path(line
));
4831 } else if (line
->type
!= LINE_TREE_DIR
) {
4835 string_copy_rev(view
->ref
, entry
->id
);
4839 tree_open(struct view
*view
, enum open_flags flags
)
4841 static const char *tree_argv
[] = {
4842 "git", "ls-tree", "%(commit)", "%(directory)", NULL
4845 if (view
->lines
== 0 && opt_prefix
[0]) {
4846 char *pos
= opt_prefix
;
4848 while (pos
&& *pos
) {
4849 char *end
= strchr(pos
, '/');
4853 push_tree_stack_entry(pos
, 0);
4861 } else if (strcmp(view
->vid
, view
->id
)) {
4865 return begin_update(view
, opt_cdup
, tree_argv
, flags
);
4868 static struct view_ops tree_ops
= {
4871 sizeof(struct tree_state
),
4881 blob_open(struct view
*view
, enum open_flags flags
)
4883 static const char *blob_argv
[] = {
4884 "git", "cat-file", "blob", "%(blob)", NULL
4887 view
->encoding
= get_path_encoding(opt_file
, opt_encoding
);
4889 return begin_update(view
, NULL
, blob_argv
, flags
);
4893 blob_read(struct view
*view
, char *line
)
4897 return add_line_text(view
, line
, LINE_DEFAULT
) != NULL
;
4901 blob_request(struct view
*view
, enum request request
, struct line
*line
)
4905 open_blob_editor(view
->vid
);
4908 return pager_request(view
, request
, line
);
4912 static struct view_ops blob_ops
= {
4927 * Loading the blame view is a two phase job:
4929 * 1. File content is read either using opt_file from the
4930 * filesystem or using git-cat-file.
4931 * 2. Then blame information is incrementally added by
4932 * reading output from git-blame.
4936 struct blame_commit
*commit
;
4937 unsigned long lineno
;
4941 struct blame_state
{
4942 struct blame_commit
*commit
;
4945 bool auto_filename_display
;
4949 blame_detect_filename_display(struct view
*view
)
4951 bool show_filenames
= FALSE
;
4952 const char *filename
= NULL
;
4955 if (opt_blame_argv
) {
4956 for (i
= 0; opt_blame_argv
[i
]; i
++) {
4957 if (prefixcmp(opt_blame_argv
[i
], "-C"))
4960 show_filenames
= TRUE
;
4964 for (i
= 0; i
< view
->lines
; i
++) {
4965 struct blame
*blame
= view
->line
[i
].data
;
4967 if (blame
->commit
&& blame
->commit
->id
[0]) {
4969 filename
= blame
->commit
->filename
;
4970 else if (strcmp(filename
, blame
->commit
->filename
))
4971 show_filenames
= TRUE
;
4975 return show_filenames
;
4979 blame_open(struct view
*view
, enum open_flags flags
)
4981 const char *file_argv
[] = { opt_cdup
, opt_file
, NULL
};
4982 char path
[SIZEOF_STR
];
4985 if (!view
->prev
&& *opt_prefix
) {
4986 string_copy(path
, opt_file
);
4987 if (!string_format(opt_file
, "%s%s", opt_prefix
, path
))
4991 if (*opt_ref
|| !begin_update(view
, opt_cdup
, file_argv
, flags
)) {
4992 const char *blame_cat_file_argv
[] = {
4993 "git", "cat-file", "blob", "%(ref):%(file)", NULL
4996 if (!begin_update(view
, opt_cdup
, blame_cat_file_argv
, flags
))
5000 /* First pass: remove multiple references to the same commit. */
5001 for (i
= 0; i
< view
->lines
; i
++) {
5002 struct blame
*blame
= view
->line
[i
].data
;
5004 if (blame
->commit
&& blame
->commit
->id
[0])
5005 blame
->commit
->id
[0] = 0;
5007 blame
->commit
= NULL
;
5010 /* Second pass: free existing references. */
5011 for (i
= 0; i
< view
->lines
; i
++) {
5012 struct blame
*blame
= view
->line
[i
].data
;
5015 free(blame
->commit
);
5018 string_format(view
->vid
, "%s", opt_file
);
5019 string_format(view
->ref
, "%s ...", opt_file
);
5024 static struct blame_commit
*
5025 get_blame_commit(struct view
*view
, const char *id
)
5029 for (i
= 0; i
< view
->lines
; i
++) {
5030 struct blame
*blame
= view
->line
[i
].data
;
5035 if (!strncmp(blame
->commit
->id
, id
, SIZEOF_REV
- 1))
5036 return blame
->commit
;
5040 struct blame_commit
*commit
= calloc(1, sizeof(*commit
));
5043 string_ncopy(commit
->id
, id
, SIZEOF_REV
);
5048 static struct blame_commit
*
5049 read_blame_commit(struct view
*view
, const char *text
, struct blame_state
*state
)
5051 struct blame_header header
;
5052 struct blame_commit
*commit
;
5053 struct blame
*blame
;
5055 if (!parse_blame_header(&header
, text
, view
->lines
))
5058 commit
= get_blame_commit(view
, text
);
5062 state
->blamed
+= header
.group
;
5063 while (header
.group
--) {
5064 struct line
*line
= &view
->line
[header
.lineno
+ header
.group
- 1];
5067 blame
->commit
= commit
;
5068 blame
->lineno
= header
.orig_lineno
+ header
.group
- 1;
5076 blame_read_file(struct view
*view
, const char *line
, struct blame_state
*state
)
5079 const char *blame_argv
[] = {
5080 "git", "blame", ENCODING_ARG
, "%(blameargs)", "--incremental",
5081 *opt_ref
? opt_ref
: "--incremental", "--", opt_file
, NULL
5084 if (view
->lines
== 0 && !view
->prev
)
5085 die("No blame exist for %s", view
->vid
);
5087 if (view
->lines
== 0 || !begin_update(view
, opt_cdup
, blame_argv
, OPEN_EXTRA
)) {
5088 report("Failed to load blame data");
5092 if (opt_goto_line
> 0) {
5093 select_view_line(view
, opt_goto_line
);
5097 state
->done_reading
= TRUE
;
5101 size_t linelen
= strlen(line
);
5102 struct blame
*blame
= malloc(sizeof(*blame
) + linelen
);
5107 blame
->commit
= NULL
;
5108 strncpy(blame
->text
, line
, linelen
);
5109 blame
->text
[linelen
] = 0;
5110 return add_line_data(view
, blame
, LINE_BLAME_ID
) != NULL
;
5115 blame_read(struct view
*view
, char *line
)
5117 struct blame_state
*state
= view
->private;
5119 if (!state
->done_reading
)
5120 return blame_read_file(view
, line
, state
);
5123 state
->auto_filename_display
= blame_detect_filename_display(view
);
5124 string_format(view
->ref
, "%s", view
->vid
);
5125 if (view_is_displayed(view
)) {
5126 update_view_title(view
);
5127 redraw_view_from(view
, 0);
5132 if (!state
->commit
) {
5133 state
->commit
= read_blame_commit(view
, line
, state
);
5134 string_format(view
->ref
, "%s %2d%%", view
->vid
,
5135 view
->lines
? state
->blamed
* 100 / view
->lines
: 0);
5137 } else if (parse_blame_info(state
->commit
, line
)) {
5138 state
->commit
= NULL
;
5145 blame_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
5147 struct blame_state
*state
= view
->private;
5148 struct blame
*blame
= line
->data
;
5149 struct time
*time
= NULL
;
5150 const char *id
= NULL
, *author
= NULL
, *filename
= NULL
;
5151 enum line_type id_type
= LINE_BLAME_ID
;
5152 static const enum line_type blame_colors
[] = {
5162 #define BLAME_COLOR(i) \
5163 (blame_colors[(i) % ARRAY_SIZE(blame_colors)])
5165 if (blame
->commit
&& *blame
->commit
->filename
) {
5166 id
= blame
->commit
->id
;
5167 author
= blame
->commit
->author
;
5168 filename
= blame
->commit
->filename
;
5169 time
= &blame
->commit
->time
;
5170 id_type
= BLAME_COLOR((long) blame
->commit
);
5173 if (draw_date(view
, time
))
5176 if (draw_author(view
, author
))
5179 if (draw_filename(view
, filename
, state
->auto_filename_display
))
5182 if (draw_field(view
, id_type
, id
, ID_COLS
, FALSE
))
5185 if (draw_lineno(view
, lineno
))
5188 draw_text(view
, LINE_DEFAULT
, blame
->text
);
5193 check_blame_commit(struct blame
*blame
, bool check_null_id
)
5196 report("Commit data not loaded yet");
5197 else if (check_null_id
&& !strcmp(blame
->commit
->id
, NULL_ID
))
5198 report("No commit exist for the selected line");
5205 setup_blame_parent_line(struct view
*view
, struct blame
*blame
)
5207 char from
[SIZEOF_REF
+ SIZEOF_STR
];
5208 char to
[SIZEOF_REF
+ SIZEOF_STR
];
5209 const char *diff_tree_argv
[] = {
5210 "git", "diff", ENCODING_ARG
, "--no-textconv", "--no-extdiff",
5211 "--no-color", "-U0", from
, to
, "--", NULL
5214 int parent_lineno
= -1;
5215 int blamed_lineno
= -1;
5218 if (!string_format(from
, "%s:%s", opt_ref
, opt_file
) ||
5219 !string_format(to
, "%s:%s", blame
->commit
->id
, blame
->commit
->filename
) ||
5220 !io_run(&io
, IO_RD
, NULL
, diff_tree_argv
))
5223 while ((line
= io_get(&io
, '\n', TRUE
))) {
5225 char *pos
= strchr(line
, '+');
5227 parent_lineno
= atoi(line
+ 4);
5229 blamed_lineno
= atoi(pos
+ 1);
5231 } else if (*line
== '+' && parent_lineno
!= -1) {
5232 if (blame
->lineno
== blamed_lineno
- 1 &&
5233 !strcmp(blame
->text
, line
+ 1)) {
5234 view
->pos
.lineno
= parent_lineno
? parent_lineno
- 1 : 0;
5245 blame_request(struct view
*view
, enum request request
, struct line
*line
)
5247 enum open_flags flags
= view_is_displayed(view
) ? OPEN_SPLIT
: OPEN_DEFAULT
;
5248 struct blame
*blame
= line
->data
;
5251 case REQ_VIEW_BLAME
:
5252 if (check_blame_commit(blame
, TRUE
)) {
5253 string_copy(opt_ref
, blame
->commit
->id
);
5254 string_copy(opt_file
, blame
->commit
->filename
);
5256 view
->pos
.lineno
= blame
->lineno
;
5262 if (!check_blame_commit(blame
, TRUE
))
5264 if (!*blame
->commit
->parent_id
) {
5265 report("The selected commit has no parents");
5267 string_copy_rev(opt_ref
, blame
->commit
->parent_id
);
5268 string_copy(opt_file
, blame
->commit
->parent_filename
);
5269 setup_blame_parent_line(view
, blame
);
5270 opt_goto_line
= blame
->lineno
;
5276 if (!check_blame_commit(blame
, FALSE
))
5279 if (view_is_displayed(VIEW(REQ_VIEW_DIFF
)) &&
5280 !strcmp(blame
->commit
->id
, VIEW(REQ_VIEW_DIFF
)->ref
))
5283 if (!strcmp(blame
->commit
->id
, NULL_ID
)) {
5284 struct view
*diff
= VIEW(REQ_VIEW_DIFF
);
5285 const char *diff_parent_argv
[] = {
5286 GIT_DIFF_BLAME(opt_diff_context_arg
,
5287 opt_ignore_space_arg
, view
->vid
)
5289 const char *diff_no_parent_argv
[] = {
5290 GIT_DIFF_BLAME_NO_PARENT(opt_diff_context_arg
,
5291 opt_ignore_space_arg
, view
->vid
)
5293 const char **diff_index_argv
= *blame
->commit
->parent_id
5294 ? diff_parent_argv
: diff_no_parent_argv
;
5296 open_argv(view
, diff
, diff_index_argv
, NULL
, flags
);
5298 string_copy_rev(diff
->ref
, NULL_ID
);
5300 open_view(view
, REQ_VIEW_DIFF
, flags
);
5312 blame_grep(struct view
*view
, struct line
*line
)
5314 struct blame
*blame
= line
->data
;
5315 struct blame_commit
*commit
= blame
->commit
;
5316 const char *text
[] = {
5318 commit
? commit
->title
: "",
5319 commit
? commit
->id
: "",
5320 commit
&& opt_author
? commit
->author
: "",
5321 commit
? mkdate(&commit
->time
, opt_date
) : "",
5325 return grep_text(view
, text
);
5329 blame_select(struct view
*view
, struct line
*line
)
5331 struct blame
*blame
= line
->data
;
5332 struct blame_commit
*commit
= blame
->commit
;
5337 if (!strcmp(commit
->id
, NULL_ID
))
5338 string_ncopy(ref_commit
, "HEAD", 4);
5340 string_copy_rev(ref_commit
, commit
->id
);
5343 static struct view_ops blame_ops
= {
5346 sizeof(struct blame_state
),
5360 const char *author
; /* Author of the last commit. */
5361 struct time time
; /* Date of the last activity. */
5362 const struct ref
*ref
; /* Name and commit ID information. */
5365 static const struct ref branch_all
;
5367 static const enum sort_field branch_sort_fields
[] = {
5368 ORDERBY_NAME
, ORDERBY_DATE
, ORDERBY_AUTHOR
5370 static struct sort_state branch_sort_state
= SORT_STATE(branch_sort_fields
);
5372 struct branch_state
{
5373 char id
[SIZEOF_REV
];
5377 branch_compare(const void *l1
, const void *l2
)
5379 const struct branch
*branch1
= ((const struct line
*) l1
)->data
;
5380 const struct branch
*branch2
= ((const struct line
*) l2
)->data
;
5382 if (branch1
->ref
== &branch_all
)
5384 else if (branch2
->ref
== &branch_all
)
5387 switch (get_sort_field(branch_sort_state
)) {
5389 return sort_order(branch_sort_state
, timecmp(&branch1
->time
, &branch2
->time
));
5391 case ORDERBY_AUTHOR
:
5392 return sort_order(branch_sort_state
, strcmp(branch1
->author
, branch2
->author
));
5396 return sort_order(branch_sort_state
, strcmp(branch1
->ref
->name
, branch2
->ref
->name
));
5401 branch_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
5403 struct branch
*branch
= line
->data
;
5404 enum line_type type
= branch
->ref
== &branch_all
? LINE_DEFAULT
: get_line_type_from_ref(branch
->ref
);
5406 if (draw_date(view
, &branch
->time
))
5409 if (draw_author(view
, branch
->author
))
5412 draw_text(view
, type
, branch
->ref
== &branch_all
? "All branches" : branch
->ref
->name
);
5417 branch_request(struct view
*view
, enum request request
, struct line
*line
)
5419 struct branch
*branch
= line
->data
;
5427 case REQ_TOGGLE_SORT_FIELD
:
5428 case REQ_TOGGLE_SORT_ORDER
:
5429 sort_view(view
, request
, &branch_sort_state
, branch_compare
);
5434 const struct ref
*ref
= branch
->ref
;
5435 const char *all_branches_argv
[] = {
5436 "git", "log", ENCODING_ARG
, "--no-color",
5437 "--pretty=raw", "--parents", opt_commit_order_arg
,
5438 ref
== &branch_all
? "--all" : ref
->name
, NULL
5440 struct view
*main_view
= VIEW(REQ_VIEW_MAIN
);
5442 open_argv(view
, main_view
, all_branches_argv
, NULL
, OPEN_SPLIT
);
5445 case REQ_JUMP_COMMIT
:
5449 for (lineno
= 0; lineno
< view
->lines
; lineno
++) {
5450 struct branch
*branch
= view
->line
[lineno
].data
;
5452 if (!strncasecmp(branch
->ref
->id
, opt_search
, strlen(opt_search
))) {
5453 select_view_line(view
, lineno
);
5465 branch_read(struct view
*view
, char *line
)
5467 struct branch_state
*state
= view
->private;
5468 struct branch
*reference
;
5474 switch (get_line_type(line
)) {
5476 string_copy_rev(state
->id
, line
+ STRING_SIZE("commit "));
5480 for (i
= 0, reference
= NULL
; i
< view
->lines
; i
++) {
5481 struct branch
*branch
= view
->line
[i
].data
;
5483 if (strcmp(branch
->ref
->id
, state
->id
))
5486 view
->line
[i
].dirty
= TRUE
;
5488 branch
->author
= reference
->author
;
5489 branch
->time
= reference
->time
;
5493 parse_author_line(line
+ STRING_SIZE("author "),
5494 &branch
->author
, &branch
->time
);
5506 branch_open_visitor(void *data
, const struct ref
*ref
)
5508 struct view
*view
= data
;
5509 struct branch
*branch
;
5511 if (ref
->tag
|| ref
->ltag
)
5514 branch
= calloc(1, sizeof(*branch
));
5519 return !!add_line_data(view
, branch
, LINE_DEFAULT
);
5523 branch_open(struct view
*view
, enum open_flags flags
)
5525 const char *branch_log
[] = {
5526 "git", "log", ENCODING_ARG
, "--no-color", "--pretty=raw",
5527 "--simplify-by-decoration", "--all", NULL
5530 if (!begin_update(view
, NULL
, branch_log
, OPEN_RELOAD
)) {
5531 report("Failed to load branch data");
5535 branch_open_visitor(view
, &branch_all
);
5536 foreach_ref(branch_open_visitor
, view
);
5542 branch_grep(struct view
*view
, struct line
*line
)
5544 struct branch
*branch
= line
->data
;
5545 const char *text
[] = {
5547 mkauthor(branch
->author
, opt_author_cols
, opt_author
),
5551 return grep_text(view
, text
);
5555 branch_select(struct view
*view
, struct line
*line
)
5557 struct branch
*branch
= line
->data
;
5559 string_copy_rev(view
->ref
, branch
->ref
->id
);
5560 string_copy_rev(ref_commit
, branch
->ref
->id
);
5561 string_copy_rev(ref_head
, branch
->ref
->id
);
5562 string_copy_rev(ref_branch
, branch
->ref
->name
);
5565 static struct view_ops branch_ops
= {
5568 sizeof(struct branch_state
),
5585 char rev
[SIZEOF_REV
];
5586 char name
[SIZEOF_STR
];
5590 char rev
[SIZEOF_REV
];
5591 char name
[SIZEOF_STR
];
5595 static char status_onbranch
[SIZEOF_STR
];
5596 static struct status stage_status
;
5597 static enum line_type stage_line_type
;
5599 DEFINE_ALLOCATOR(realloc_ints
, int, 32)
5601 /* This should work even for the "On branch" line. */
5603 status_has_none(struct view
*view
, struct line
*line
)
5605 return line
< view
->line
+ view
->lines
&& !line
[1].data
;
5608 /* Get fields from the diff line:
5609 * :100644 100644 06a5d6ae9eca55be2e0e585a152e6b1336f2b20e 0000000000000000000000000000000000000000 M
5612 status_get_diff(struct status
*file
, const char *buf
, size_t bufsize
)
5614 const char *old_mode
= buf
+ 1;
5615 const char *new_mode
= buf
+ 8;
5616 const char *old_rev
= buf
+ 15;
5617 const char *new_rev
= buf
+ 56;
5618 const char *status
= buf
+ 97;
5621 old_mode
[-1] != ':' ||
5622 new_mode
[-1] != ' ' ||
5623 old_rev
[-1] != ' ' ||
5624 new_rev
[-1] != ' ' ||
5628 file
->status
= *status
;
5630 string_copy_rev(file
->old
.rev
, old_rev
);
5631 string_copy_rev(file
->new.rev
, new_rev
);
5633 file
->old
.mode
= strtoul(old_mode
, NULL
, 8);
5634 file
->new.mode
= strtoul(new_mode
, NULL
, 8);
5636 file
->old
.name
[0] = file
->new.name
[0] = 0;
5642 status_run(struct view
*view
, const char *argv
[], char status
, enum line_type type
)
5644 struct status
*unmerged
= NULL
;
5648 if (!io_run(&io
, IO_RD
, opt_cdup
, argv
))
5651 add_line_data(view
, NULL
, type
);
5653 while ((buf
= io_get(&io
, 0, TRUE
))) {
5654 struct status
*file
= unmerged
;
5657 file
= calloc(1, sizeof(*file
));
5658 if (!file
|| !add_line_data(view
, file
, type
))
5662 /* Parse diff info part. */
5664 file
->status
= status
;
5666 string_copy(file
->old
.rev
, NULL_ID
);
5668 } else if (!file
->status
|| file
== unmerged
) {
5669 if (!status_get_diff(file
, buf
, strlen(buf
)))
5672 buf
= io_get(&io
, 0, TRUE
);
5676 /* Collapse all modified entries that follow an
5677 * associated unmerged entry. */
5678 if (unmerged
== file
) {
5679 unmerged
->status
= 'U';
5681 } else if (file
->status
== 'U') {
5686 /* Grab the old name for rename/copy. */
5687 if (!*file
->old
.name
&&
5688 (file
->status
== 'R' || file
->status
== 'C')) {
5689 string_ncopy(file
->old
.name
, buf
, strlen(buf
));
5691 buf
= io_get(&io
, 0, TRUE
);
5696 /* git-ls-files just delivers a NUL separated list of
5697 * file names similar to the second half of the
5698 * git-diff-* output. */
5699 string_ncopy(file
->new.name
, buf
, strlen(buf
));
5700 if (!*file
->old
.name
)
5701 string_copy(file
->old
.name
, file
->new.name
);
5705 if (io_error(&io
)) {
5711 if (!view
->line
[view
->lines
- 1].data
)
5712 add_line_data(view
, NULL
, LINE_STAT_NONE
);
5718 static const char *status_diff_index_argv
[] = { GIT_DIFF_STAGED_FILES("-z") };
5719 static const char *status_diff_files_argv
[] = { GIT_DIFF_UNSTAGED_FILES("-z") };
5721 static const char *status_list_other_argv
[] = {
5722 "git", "ls-files", "-z", "--others", "--exclude-standard", opt_prefix
, NULL
, NULL
,
5725 static const char *status_list_no_head_argv
[] = {
5726 "git", "ls-files", "-z", "--cached", "--exclude-standard", NULL
5729 static const char *update_index_argv
[] = {
5730 "git", "update-index", "-q", "--unmerged", "--refresh", NULL
5733 /* Restore the previous line number to stay in the context or select a
5734 * line with something that can be updated. */
5736 status_restore(struct view
*view
)
5738 if (view
->prev_pos
.lineno
>= view
->lines
)
5739 view
->prev_pos
.lineno
= view
->lines
- 1;
5740 while (view
->prev_pos
.lineno
< view
->lines
&& !view
->line
[view
->prev_pos
.lineno
].data
)
5741 view
->prev_pos
.lineno
++;
5742 while (view
->prev_pos
.lineno
> 0 && !view
->line
[view
->prev_pos
.lineno
].data
)
5743 view
->prev_pos
.lineno
--;
5745 /* If the above fails, always skip the "On branch" line. */
5746 if (view
->prev_pos
.lineno
< view
->lines
)
5747 view
->pos
.lineno
= view
->prev_pos
.lineno
;
5749 view
->pos
.lineno
= 1;
5751 if (view
->prev_pos
.offset
> view
->pos
.lineno
)
5752 view
->pos
.offset
= view
->pos
.lineno
;
5753 else if (view
->prev_pos
.offset
< view
->lines
)
5754 view
->pos
.offset
= view
->prev_pos
.offset
;
5756 clear_position(&view
->prev_pos
);
5760 status_update_onbranch(void)
5762 static const char *paths
[][2] = {
5763 { "rebase-apply/rebasing", "Rebasing" },
5764 { "rebase-apply/applying", "Applying mailbox" },
5765 { "rebase-apply/", "Rebasing mailbox" },
5766 { "rebase-merge/interactive", "Interactive rebase" },
5767 { "rebase-merge/", "Rebase merge" },
5768 { "MERGE_HEAD", "Merging" },
5769 { "BISECT_LOG", "Bisecting" },
5770 { "HEAD", "On branch" },
5772 char buf
[SIZEOF_STR
];
5776 if (is_initial_commit()) {
5777 string_copy(status_onbranch
, "Initial commit");
5781 for (i
= 0; i
< ARRAY_SIZE(paths
); i
++) {
5782 char *head
= opt_head
;
5784 if (!string_format(buf
, "%s/%s", opt_git_dir
, paths
[i
][0]) ||
5785 lstat(buf
, &stat
) < 0)
5791 if (io_open(&io
, "%s/rebase-merge/head-name", opt_git_dir
) &&
5792 io_read_buf(&io
, buf
, sizeof(buf
))) {
5794 if (!prefixcmp(head
, "refs/heads/"))
5795 head
+= STRING_SIZE("refs/heads/");
5799 if (!string_format(status_onbranch
, "%s %s", paths
[i
][1], head
))
5800 string_copy(status_onbranch
, opt_head
);
5804 string_copy(status_onbranch
, "Not currently on any branch");
5807 /* First parse staged info using git-diff-index(1), then parse unstaged
5808 * info using git-diff-files(1), and finally untracked files using
5809 * git-ls-files(1). */
5811 status_open(struct view
*view
, enum open_flags flags
)
5815 add_line_data(view
, NULL
, LINE_STAT_HEAD
);
5816 status_update_onbranch();
5818 io_run_bg(update_index_argv
);
5820 if (is_initial_commit()) {
5821 if (!status_run(view
, status_list_no_head_argv
, 'A', LINE_STAT_STAGED
))
5823 } else if (!status_run(view
, status_diff_index_argv
, 0, LINE_STAT_STAGED
)) {
5827 if (!opt_untracked_dirs_content
)
5828 status_list_other_argv
[ARRAY_SIZE(status_list_other_argv
) - 2] = "--directory";
5830 if (!status_run(view
, status_diff_files_argv
, 0, LINE_STAT_UNSTAGED
) ||
5831 !status_run(view
, status_list_other_argv
, '?', LINE_STAT_UNTRACKED
))
5834 /* Restore the exact position or use the specialized restore
5836 status_restore(view
);
5841 status_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
5843 struct status
*status
= line
->data
;
5844 enum line_type type
;
5848 switch (line
->type
) {
5849 case LINE_STAT_STAGED
:
5850 type
= LINE_STAT_SECTION
;
5851 text
= "Changes to be committed:";
5854 case LINE_STAT_UNSTAGED
:
5855 type
= LINE_STAT_SECTION
;
5856 text
= "Changed but not updated:";
5859 case LINE_STAT_UNTRACKED
:
5860 type
= LINE_STAT_SECTION
;
5861 text
= "Untracked files:";
5864 case LINE_STAT_NONE
:
5865 type
= LINE_DEFAULT
;
5866 text
= " (no files)";
5869 case LINE_STAT_HEAD
:
5870 type
= LINE_STAT_HEAD
;
5871 text
= status_onbranch
;
5878 static char buf
[] = { '?', ' ', ' ', ' ', 0 };
5880 buf
[0] = status
->status
;
5881 if (draw_text(view
, line
->type
, buf
))
5883 type
= LINE_DEFAULT
;
5884 text
= status
->new.name
;
5887 draw_text(view
, type
, text
);
5892 status_enter(struct view
*view
, struct line
*line
)
5894 struct status
*status
= line
->data
;
5895 enum open_flags flags
= view_is_displayed(view
) ? OPEN_SPLIT
: OPEN_DEFAULT
;
5897 if (line
->type
== LINE_STAT_NONE
||
5898 (!status
&& line
[1].type
== LINE_STAT_NONE
)) {
5899 report("No file to diff");
5903 switch (line
->type
) {
5904 case LINE_STAT_STAGED
:
5905 case LINE_STAT_UNSTAGED
:
5908 case LINE_STAT_UNTRACKED
:
5910 report("No file to show");
5914 if (!suffixcmp(status
->new.name
, -1, "/")) {
5915 report("Cannot display a directory");
5920 case LINE_STAT_HEAD
:
5924 die("line type %d not handled in switch", line
->type
);
5928 stage_status
= *status
;
5930 memset(&stage_status
, 0, sizeof(stage_status
));
5933 stage_line_type
= line
->type
;
5935 open_view(view
, REQ_VIEW_STAGE
, flags
);
5940 status_exists(struct view
*view
, struct status
*status
, enum line_type type
)
5942 unsigned long lineno
;
5944 for (lineno
= 0; lineno
< view
->lines
; lineno
++) {
5945 struct line
*line
= &view
->line
[lineno
];
5946 struct status
*pos
= line
->data
;
5948 if (line
->type
!= type
)
5950 if (!pos
&& (!status
|| !status
->status
) && line
[1].data
) {
5951 select_view_line(view
, lineno
);
5954 if (pos
&& !strcmp(status
->new.name
, pos
->new.name
)) {
5955 select_view_line(view
, lineno
);
5965 status_update_prepare(struct io
*io
, enum line_type type
)
5967 const char *staged_argv
[] = {
5968 "git", "update-index", "-z", "--index-info", NULL
5970 const char *others_argv
[] = {
5971 "git", "update-index", "-z", "--add", "--remove", "--stdin", NULL
5975 case LINE_STAT_STAGED
:
5976 return io_run(io
, IO_WR
, opt_cdup
, staged_argv
);
5978 case LINE_STAT_UNSTAGED
:
5979 case LINE_STAT_UNTRACKED
:
5980 return io_run(io
, IO_WR
, opt_cdup
, others_argv
);
5983 die("line type %d not handled in switch", type
);
5989 status_update_write(struct io
*io
, struct status
*status
, enum line_type type
)
5992 case LINE_STAT_STAGED
:
5993 return io_printf(io
, "%06o %s\t%s%c", status
->old
.mode
,
5994 status
->old
.rev
, status
->old
.name
, 0);
5996 case LINE_STAT_UNSTAGED
:
5997 case LINE_STAT_UNTRACKED
:
5998 return io_printf(io
, "%s%c", status
->new.name
, 0);
6001 die("line type %d not handled in switch", type
);
6007 status_update_file(struct status
*status
, enum line_type type
)
6012 if (!status_update_prepare(&io
, type
))
6015 result
= status_update_write(&io
, status
, type
);
6016 return io_done(&io
) && result
;
6020 status_update_files(struct view
*view
, struct line
*line
)
6022 char buf
[sizeof(view
->ref
)];
6025 struct line
*pos
= view
->line
+ view
->lines
;
6028 int cursor_y
= -1, cursor_x
= -1;
6030 if (!status_update_prepare(&io
, line
->type
))
6033 for (pos
= line
; pos
< view
->line
+ view
->lines
&& pos
->data
; pos
++)
6036 string_copy(buf
, view
->ref
);
6037 getsyx(cursor_y
, cursor_x
);
6038 for (file
= 0, done
= 5; result
&& file
< files
; line
++, file
++) {
6039 int almost_done
= file
* 100 / files
;
6041 if (almost_done
> done
) {
6043 string_format(view
->ref
, "updating file %u of %u (%d%% done)",
6045 update_view_title(view
);
6046 setsyx(cursor_y
, cursor_x
);
6049 result
= status_update_write(&io
, line
->data
, line
->type
);
6051 string_copy(view
->ref
, buf
);
6053 return io_done(&io
) && result
;
6057 status_update(struct view
*view
)
6059 struct line
*line
= &view
->line
[view
->pos
.lineno
];
6061 assert(view
->lines
);
6064 /* This should work even for the "On branch" line. */
6065 if (line
< view
->line
+ view
->lines
&& !line
[1].data
) {
6066 report("Nothing to update");
6070 if (!status_update_files(view
, line
+ 1)) {
6071 report("Failed to update file status");
6075 } else if (!status_update_file(line
->data
, line
->type
)) {
6076 report("Failed to update file status");
6084 status_revert(struct status
*status
, enum line_type type
, bool has_none
)
6086 if (!status
|| type
!= LINE_STAT_UNSTAGED
) {
6087 if (type
== LINE_STAT_STAGED
) {
6088 report("Cannot revert changes to staged files");
6089 } else if (type
== LINE_STAT_UNTRACKED
) {
6090 report("Cannot revert changes to untracked files");
6091 } else if (has_none
) {
6092 report("Nothing to revert");
6094 report("Cannot revert changes to multiple files");
6097 } else if (prompt_yesno("Are you sure you want to revert changes?")) {
6098 char mode
[10] = "100644";
6099 const char *reset_argv
[] = {
6100 "git", "update-index", "--cacheinfo", mode
,
6101 status
->old
.rev
, status
->old
.name
, NULL
6103 const char *checkout_argv
[] = {
6104 "git", "checkout", "--", status
->old
.name
, NULL
6107 if (status
->status
== 'U') {
6108 string_format(mode
, "%5o", status
->old
.mode
);
6110 if (status
->old
.mode
== 0 && status
->new.mode
== 0) {
6111 reset_argv
[2] = "--force-remove";
6112 reset_argv
[3] = status
->old
.name
;
6113 reset_argv
[4] = NULL
;
6116 if (!io_run_fg(reset_argv
, opt_cdup
))
6118 if (status
->old
.mode
== 0 && status
->new.mode
== 0)
6122 return io_run_fg(checkout_argv
, opt_cdup
);
6129 status_request(struct view
*view
, enum request request
, struct line
*line
)
6131 struct status
*status
= line
->data
;
6134 case REQ_STATUS_UPDATE
:
6135 if (!status_update(view
))
6139 case REQ_STATUS_REVERT
:
6140 if (!status_revert(status
, line
->type
, status_has_none(view
, line
)))
6144 case REQ_STATUS_MERGE
:
6145 if (!status
|| status
->status
!= 'U') {
6146 report("Merging only possible for files with unmerged status ('U').");
6149 open_mergetool(status
->new.name
);
6155 if (status
->status
== 'D') {
6156 report("File has been deleted.");
6160 open_editor(status
->new.name
);
6163 case REQ_VIEW_BLAME
:
6169 /* After returning the status view has been split to
6170 * show the stage view. No further reloading is
6172 return status_enter(view
, line
);
6175 /* Simply reload the view. */
6188 status_select(struct view
*view
, struct line
*line
)
6190 struct status
*status
= line
->data
;
6191 char file
[SIZEOF_STR
] = "all files";
6195 if (status
&& !string_format(file
, "'%s'", status
->new.name
))
6198 if (!status
&& line
[1].type
== LINE_STAT_NONE
)
6201 switch (line
->type
) {
6202 case LINE_STAT_STAGED
:
6203 text
= "Press %s to unstage %s for commit";
6206 case LINE_STAT_UNSTAGED
:
6207 text
= "Press %s to stage %s for commit";
6210 case LINE_STAT_UNTRACKED
:
6211 text
= "Press %s to stage %s for addition";
6214 case LINE_STAT_HEAD
:
6215 case LINE_STAT_NONE
:
6216 text
= "Nothing to update";
6220 die("line type %d not handled in switch", line
->type
);
6223 if (status
&& status
->status
== 'U') {
6224 text
= "Press %s to resolve conflict in %s";
6225 key
= get_view_key(view
, REQ_STATUS_MERGE
);
6228 key
= get_view_key(view
, REQ_STATUS_UPDATE
);
6231 string_format(view
->ref
, text
, key
, file
);
6233 string_copy(opt_file
, status
->new.name
);
6237 status_grep(struct view
*view
, struct line
*line
)
6239 struct status
*status
= line
->data
;
6242 const char buf
[2] = { status
->status
, 0 };
6243 const char *text
[] = { status
->new.name
, buf
, NULL
};
6245 return grep_text(view
, text
);
6251 static struct view_ops status_ops
= {
6264 struct stage_state
{
6265 struct diff_state diff
;
6271 stage_diff_write(struct io
*io
, struct line
*line
, struct line
*end
)
6273 while (line
< end
) {
6274 if (!io_write(io
, line
->data
, strlen(line
->data
)) ||
6275 !io_write(io
, "\n", 1))
6278 if (line
->type
== LINE_DIFF_CHUNK
||
6279 line
->type
== LINE_DIFF_HEADER
)
6287 stage_apply_chunk(struct view
*view
, struct line
*chunk
, struct line
*line
, bool revert
)
6289 const char *apply_argv
[SIZEOF_ARG
] = {
6290 "git", "apply", "--whitespace=nowarn", NULL
6292 struct line
*diff_hdr
;
6296 diff_hdr
= find_prev_line_by_type(view
, chunk
, LINE_DIFF_HEADER
);
6301 apply_argv
[argc
++] = "--cached";
6303 apply_argv
[argc
++] = "--unidiff-zero";
6304 if (revert
|| stage_line_type
== LINE_STAT_STAGED
)
6305 apply_argv
[argc
++] = "-R";
6306 apply_argv
[argc
++] = "-";
6307 apply_argv
[argc
++] = NULL
;
6308 if (!io_run(&io
, IO_WR
, opt_cdup
, apply_argv
))
6313 struct line
*context
= chunk
+ 1;
6314 const char *markers
[] = {
6315 line
->type
== LINE_DIFF_DEL
? "" : ",0",
6316 line
->type
== LINE_DIFF_DEL
? ",0" : "",
6319 parse_chunk_lineno(&lineno
, chunk
->data
, line
->type
== LINE_DIFF_DEL
? '+' : '-');
6321 while (context
< line
) {
6322 if (context
->type
== LINE_DIFF_CHUNK
|| context
->type
== LINE_DIFF_HEADER
) {
6324 } else if (context
->type
!= LINE_DIFF_DEL
&& context
->type
!= LINE_DIFF_ADD
) {
6330 if (!stage_diff_write(&io
, diff_hdr
, chunk
) ||
6331 !io_printf(&io
, "@@ -%d%s +%d%s @@\n",
6332 lineno
, markers
[0], lineno
, markers
[1]) ||
6333 !stage_diff_write(&io
, line
, line
+ 1)) {
6337 if (!stage_diff_write(&io
, diff_hdr
, chunk
) ||
6338 !stage_diff_write(&io
, chunk
, view
->line
+ view
->lines
))
6343 io_run_bg(update_index_argv
);
6345 return chunk
? TRUE
: FALSE
;
6349 stage_update(struct view
*view
, struct line
*line
, bool single
)
6351 struct line
*chunk
= NULL
;
6353 if (!is_initial_commit() && stage_line_type
!= LINE_STAT_UNTRACKED
)
6354 chunk
= find_prev_line_by_type(view
, line
, LINE_DIFF_CHUNK
);
6357 if (!stage_apply_chunk(view
, chunk
, single
? line
: NULL
, FALSE
)) {
6358 report("Failed to apply chunk");
6362 } else if (!stage_status
.status
) {
6363 view
= view
->parent
;
6365 for (line
= view
->line
; line
< view
->line
+ view
->lines
; line
++)
6366 if (line
->type
== stage_line_type
)
6369 if (!status_update_files(view
, line
+ 1)) {
6370 report("Failed to update files");
6374 } else if (!status_update_file(&stage_status
, stage_line_type
)) {
6375 report("Failed to update file");
6383 stage_revert(struct view
*view
, struct line
*line
)
6385 struct line
*chunk
= NULL
;
6387 if (!is_initial_commit() && stage_line_type
== LINE_STAT_UNSTAGED
)
6388 chunk
= find_prev_line_by_type(view
, line
, LINE_DIFF_CHUNK
);
6391 if (!prompt_yesno("Are you sure you want to revert changes?"))
6394 if (!stage_apply_chunk(view
, chunk
, NULL
, TRUE
)) {
6395 report("Failed to revert chunk");
6401 return status_revert(stage_status
.status
? &stage_status
: NULL
,
6402 stage_line_type
, FALSE
);
6408 stage_next(struct view
*view
, struct line
*line
)
6410 struct stage_state
*state
= view
->private;
6413 if (!state
->chunks
) {
6414 for (line
= view
->line
; line
< view
->line
+ view
->lines
; line
++) {
6415 if (line
->type
!= LINE_DIFF_CHUNK
)
6418 if (!realloc_ints(&state
->chunk
, state
->chunks
, 1)) {
6419 report("Allocation failure");
6423 state
->chunk
[state
->chunks
++] = line
- view
->line
;
6427 for (i
= 0; i
< state
->chunks
; i
++) {
6428 if (state
->chunk
[i
] > view
->pos
.lineno
) {
6429 do_scroll_view(view
, state
->chunk
[i
] - view
->pos
.lineno
);
6430 report("Chunk %d of %d", i
+ 1, state
->chunks
);
6435 report("No next chunk found");
6439 stage_request(struct view
*view
, enum request request
, struct line
*line
)
6442 case REQ_STATUS_UPDATE
:
6443 if (!stage_update(view
, line
, FALSE
))
6447 case REQ_STATUS_REVERT
:
6448 if (!stage_revert(view
, line
))
6452 case REQ_STAGE_UPDATE_LINE
:
6453 if (stage_line_type
== LINE_STAT_UNTRACKED
||
6454 stage_status
.status
== 'A') {
6455 report("Staging single lines is not supported for new files");
6458 if (line
->type
!= LINE_DIFF_DEL
&& line
->type
!= LINE_DIFF_ADD
) {
6459 report("Please select a change to stage");
6462 if (!stage_update(view
, line
, TRUE
))
6466 case REQ_STAGE_NEXT
:
6467 if (stage_line_type
== LINE_STAT_UNTRACKED
) {
6468 report("File is untracked; press %s to add",
6469 get_view_key(view
, REQ_STATUS_UPDATE
));
6472 stage_next(view
, line
);
6476 if (!stage_status
.new.name
[0])
6478 if (stage_status
.status
== 'D') {
6479 report("File has been deleted.");
6483 open_editor(stage_status
.new.name
);
6487 /* Reload everything ... */
6490 case REQ_VIEW_BLAME
:
6491 if (stage_status
.new.name
[0]) {
6492 string_copy(opt_file
, stage_status
.new.name
);
6498 return diff_common_enter(view
, request
, line
);
6500 case REQ_DIFF_CONTEXT_UP
:
6501 case REQ_DIFF_CONTEXT_DOWN
:
6502 if (!update_diff_context(request
))
6510 refresh_view(view
->parent
);
6512 /* Check whether the staged entry still exists, and close the
6513 * stage view if it doesn't. */
6514 if (!status_exists(view
->parent
, &stage_status
, stage_line_type
)) {
6515 status_restore(view
->parent
);
6516 return REQ_VIEW_CLOSE
;
6525 stage_open(struct view
*view
, enum open_flags flags
)
6527 static const char *no_head_diff_argv
[] = {
6528 GIT_DIFF_STAGED_INITIAL(opt_diff_context_arg
, opt_ignore_space_arg
,
6529 stage_status
.new.name
)
6531 static const char *index_show_argv
[] = {
6532 GIT_DIFF_STAGED(opt_diff_context_arg
, opt_ignore_space_arg
,
6533 stage_status
.old
.name
, stage_status
.new.name
)
6535 static const char *files_show_argv
[] = {
6536 GIT_DIFF_UNSTAGED(opt_diff_context_arg
, opt_ignore_space_arg
,
6537 stage_status
.old
.name
, stage_status
.new.name
)
6539 /* Diffs for unmerged entries are empty when passing the new
6540 * path, so leave out the new path. */
6541 static const char *files_unmerged_argv
[] = {
6542 "git", "diff-files", ENCODING_ARG
, "--root", "--patch-with-stat", "-C", "-M",
6543 opt_diff_context_arg
, opt_ignore_space_arg
, "--",
6544 stage_status
.old
.name
, NULL
6546 static const char *file_argv
[] = { opt_cdup
, stage_status
.new.name
, NULL
};
6547 const char **argv
= NULL
;
6550 view
->encoding
= NULL
;
6552 switch (stage_line_type
) {
6553 case LINE_STAT_STAGED
:
6554 if (is_initial_commit()) {
6555 argv
= no_head_diff_argv
;
6557 argv
= index_show_argv
;
6559 if (stage_status
.status
)
6560 info
= "Staged changes to %s";
6562 info
= "Staged changes";
6565 case LINE_STAT_UNSTAGED
:
6566 if (stage_status
.status
!= 'U')
6567 argv
= files_show_argv
;
6569 argv
= files_unmerged_argv
;
6570 if (stage_status
.status
)
6571 info
= "Unstaged changes to %s";
6573 info
= "Unstaged changes";
6576 case LINE_STAT_UNTRACKED
:
6577 info
= "Untracked file %s";
6579 view
->encoding
= get_path_encoding(stage_status
.old
.name
, opt_encoding
);
6582 case LINE_STAT_HEAD
:
6584 die("line type %d not handled in switch", stage_line_type
);
6587 string_format(view
->ref
, info
, stage_status
.new.name
);
6589 view
->dir
= opt_cdup
;
6590 return argv_copy(&view
->argv
, argv
)
6591 && begin_update(view
, NULL
, NULL
, flags
);
6595 stage_read(struct view
*view
, char *data
)
6597 struct stage_state
*state
= view
->private;
6599 if (data
&& diff_common_read(view
, data
, &state
->diff
))
6602 return pager_read(view
, data
);
6605 static struct view_ops stage_ops
= {
6608 sizeof(struct stage_state
),
6622 static const enum line_type graph_colors
[] = {
6632 static enum line_type
get_graph_color(struct graph_symbol
*symbol
)
6635 return LINE_GRAPH_COMMIT
;
6636 assert(symbol
->color
< ARRAY_SIZE(graph_colors
));
6637 return graph_colors
[symbol
->color
];
6641 draw_graph_utf8(struct view
*view
, struct graph_symbol
*symbol
, enum line_type color
, bool first
)
6643 const char *chars
= graph_symbol_to_utf8(symbol
);
6645 return draw_text(view
, color
, chars
+ !!first
);
6649 draw_graph_ascii(struct view
*view
, struct graph_symbol
*symbol
, enum line_type color
, bool first
)
6651 const char *chars
= graph_symbol_to_ascii(symbol
);
6653 return draw_text(view
, color
, chars
+ !!first
);
6657 draw_graph_chtype(struct view
*view
, struct graph_symbol
*symbol
, enum line_type color
, bool first
)
6659 const chtype
*chars
= graph_symbol_to_chtype(symbol
);
6661 return draw_graphic(view
, color
, chars
+ !!first
, 2 - !!first
, FALSE
);
6664 typedef bool (*draw_graph_fn
)(struct view
*, struct graph_symbol
*, enum line_type
, bool);
6666 static bool draw_graph(struct view
*view
, struct graph_canvas
*canvas
)
6668 static const draw_graph_fn fns
[] = {
6673 draw_graph_fn fn
= fns
[opt_line_graphics
];
6676 for (i
= 0; i
< canvas
->size
; i
++) {
6677 struct graph_symbol
*symbol
= &canvas
->symbols
[i
];
6678 enum line_type color
= get_graph_color(symbol
);
6680 if (fn(view
, symbol
, color
, i
== 0))
6684 return draw_text(view
, LINE_MAIN_REVGRAPH
, " ");
6692 char id
[SIZEOF_REV
]; /* SHA1 ID. */
6693 char title
[128]; /* First line of the commit message. */
6694 const char *author
; /* Author of the commit. */
6695 struct time time
; /* Date from the author ident. */
6696 struct ref_list
*refs
; /* Repository references. */
6697 struct graph_canvas graph
; /* Ancestry chain graphics. */
6700 static struct commit
*
6701 main_add_commit(struct view
*view
, enum line_type type
, const char *ids
, bool is_boundary
)
6703 struct graph
*graph
= view
->private;
6704 struct commit
*commit
;
6706 commit
= calloc(1, sizeof(struct commit
));
6710 string_copy_rev(commit
->id
, ids
);
6711 commit
->refs
= get_ref_list(commit
->id
);
6712 add_line_data(view
, commit
, type
);
6713 graph_add_commit(graph
, &commit
->graph
, commit
->id
, ids
, is_boundary
);
6718 main_has_changes(const char *argv
[])
6722 if (!io_run(&io
, IO_BG
, NULL
, argv
, -1))
6725 return io
.status
== 1;
6729 main_add_changes_commit(struct view
*view
, enum line_type type
, const char *parent
, const char *title
)
6731 char ids
[SIZEOF_STR
] = NULL_ID
" ";
6732 struct graph
*graph
= view
->private;
6733 struct commit
*commit
;
6740 string_copy_rev(ids
+ STRING_SIZE(NULL_ID
" "), parent
);
6742 commit
= main_add_commit(view
, type
, ids
, FALSE
);
6746 if (!gettimeofday(&now
, &tz
)) {
6747 commit
->time
.tz
= tz
.tz_minuteswest
* 60;
6748 commit
->time
.sec
= now
.tv_sec
- commit
->time
.tz
;
6751 commit
->author
= "";
6752 string_ncopy(commit
->title
, title
, strlen(title
));
6753 graph_render_parents(graph
);
6757 main_add_changes_commits(struct view
*view
, const char *parent
)
6759 const char *staged_argv
[] = { GIT_DIFF_STAGED_FILES("--quiet") };
6760 const char *unstaged_argv
[] = { GIT_DIFF_UNSTAGED_FILES("--quiet") };
6761 const char *staged_parent
= NULL_ID
;
6762 const char *unstaged_parent
= parent
;
6764 if (!main_has_changes(unstaged_argv
)) {
6765 unstaged_parent
= NULL
;
6766 staged_parent
= parent
;
6769 if (!main_has_changes(staged_argv
)) {
6770 staged_parent
= NULL
;
6773 main_add_changes_commit(view
, LINE_STAT_STAGED
, staged_parent
, "Staged changes");
6774 main_add_changes_commit(view
, LINE_STAT_UNSTAGED
, unstaged_parent
, "Unstaged changes");
6778 main_open(struct view
*view
, enum open_flags flags
)
6780 static const char *main_argv
[] = {
6781 "git", "log", ENCODING_ARG
, "--no-color", "--pretty=raw", "--parents",
6782 opt_commit_order_arg
, "%(diffargs)", "%(revargs)",
6783 "--", "%(fileargs)", NULL
6786 return begin_update(view
, NULL
, main_argv
, flags
);
6790 main_draw(struct view
*view
, struct line
*line
, unsigned int lineno
)
6792 struct commit
*commit
= line
->data
;
6794 if (!commit
->author
)
6797 if (draw_lineno(view
, lineno
))
6800 if (draw_date(view
, &commit
->time
))
6803 if (draw_author(view
, commit
->author
))
6806 if (opt_rev_graph
&& draw_graph(view
, &commit
->graph
))
6809 if (draw_refs(view
, commit
->refs
))
6812 draw_text(view
, LINE_DEFAULT
, commit
->title
);
6816 /* Reads git log --pretty=raw output and parses it into the commit struct. */
6818 main_read(struct view
*view
, char *line
)
6820 struct graph
*graph
= view
->private;
6821 enum line_type type
;
6822 struct commit
*commit
;
6823 static bool in_header
;
6826 if (!view
->lines
&& !view
->prev
)
6827 die("No revisions match the given arguments.");
6828 if (view
->lines
> 0) {
6829 commit
= view
->line
[view
->lines
- 1].data
;
6830 view
->line
[view
->lines
- 1].dirty
= 1;
6831 if (!commit
->author
) {
6841 type
= get_line_type(line
);
6842 if (type
== LINE_COMMIT
) {
6846 line
+= STRING_SIZE("commit ");
6847 is_boundary
= *line
== '-';
6851 if (opt_show_changes
&& opt_is_inside_work_tree
&& !view
->lines
)
6852 main_add_changes_commits(view
, line
);
6854 return main_add_commit(view
, LINE_MAIN_COMMIT
, line
, is_boundary
) != NULL
;
6859 commit
= view
->line
[view
->lines
- 1].data
;
6861 /* Empty line separates the commit header from the log itself. */
6867 if (!graph
->has_parents
)
6868 graph_add_parent(graph
, line
+ STRING_SIZE("parent "));
6872 parse_author_line(line
+ STRING_SIZE("author "),
6873 &commit
->author
, &commit
->time
);
6874 graph_render_parents(graph
);
6878 /* Fill in the commit title if it has not already been set. */
6879 if (commit
->title
[0])
6882 /* Skip lines in the commit header. */
6886 /* Require titles to start with a non-space character at the
6887 * offset used by git log. */
6888 if (strncmp(line
, " ", 4))
6891 /* Well, if the title starts with a whitespace character,
6892 * try to be forgiving. Otherwise we end up with no title. */
6893 while (isspace(*line
))
6897 /* FIXME: More graceful handling of titles; append "..." to
6898 * shortened titles, etc. */
6900 string_expand(commit
->title
, sizeof(commit
->title
), line
, 1);
6901 view
->line
[view
->lines
- 1].dirty
= 1;
6908 main_request(struct view
*view
, enum request request
, struct line
*line
)
6910 enum open_flags flags
= view_is_displayed(view
) ? OPEN_SPLIT
: OPEN_DEFAULT
;
6915 if (view_is_displayed(view
) && display
[0] != view
)
6917 /* Do not pass navigation requests to the branch view
6918 * when the main view is maximized. (GH #38) */
6919 move_view(view
, request
);
6923 if (view_is_displayed(view
) && display
[0] != view
)
6924 maximize_view(view
, TRUE
);
6926 if (line
->type
== LINE_STAT_UNSTAGED
6927 || line
->type
== LINE_STAT_STAGED
) {
6928 struct view
*diff
= VIEW(REQ_VIEW_DIFF
);
6929 const char *diff_staged_argv
[] = {
6930 GIT_DIFF_STAGED(opt_diff_context_arg
,
6931 opt_ignore_space_arg
, NULL
, NULL
)
6933 const char *diff_unstaged_argv
[] = {
6934 GIT_DIFF_UNSTAGED(opt_diff_context_arg
,
6935 opt_ignore_space_arg
, NULL
, NULL
)
6937 const char **diff_argv
= line
->type
== LINE_STAT_STAGED
6938 ? diff_staged_argv
: diff_unstaged_argv
;
6940 open_argv(view
, diff
, diff_argv
, NULL
, flags
);
6944 open_view(view
, REQ_VIEW_DIFF
, flags
);
6951 case REQ_JUMP_COMMIT
:
6955 for (lineno
= 0; lineno
< view
->lines
; lineno
++) {
6956 struct commit
*commit
= view
->line
[lineno
].data
;
6958 if (!strncasecmp(commit
->id
, opt_search
, strlen(opt_search
))) {
6959 select_view_line(view
, lineno
);
6965 report("Unable to find commit '%s'", opt_search
);
6976 grep_refs(struct ref_list
*list
, regex_t
*regex
)
6981 if (!opt_show_refs
|| !list
)
6984 for (i
= 0; i
< list
->size
; i
++) {
6985 if (regexec(regex
, list
->refs
[i
]->name
, 1, &pmatch
, 0) != REG_NOMATCH
)
6993 main_grep(struct view
*view
, struct line
*line
)
6995 struct commit
*commit
= line
->data
;
6996 const char *text
[] = {
6998 mkauthor(commit
->author
, opt_author_cols
, opt_author
),
6999 mkdate(&commit
->time
, opt_date
),
7003 return grep_text(view
, text
) || grep_refs(commit
->refs
, view
->regex
);
7007 main_select(struct view
*view
, struct line
*line
)
7009 struct commit
*commit
= line
->data
;
7011 string_copy_rev(view
->ref
, commit
->id
);
7012 string_copy_rev(ref_commit
, view
->ref
);
7015 static struct view_ops main_ops
= {
7018 sizeof(struct graph
),
7032 /* Whether or not the curses interface has been initialized. */
7033 static bool cursed
= FALSE
;
7035 /* Terminal hacks and workarounds. */
7036 static bool use_scroll_redrawwin
;
7037 static bool use_scroll_status_wclear
;
7039 /* The status window is used for polling keystrokes. */
7040 static WINDOW
*status_win
;
7042 /* Reading from the prompt? */
7043 static bool input_mode
= FALSE
;
7045 static bool status_empty
= FALSE
;
7047 /* Update status and title window. */
7049 report(const char *msg
, ...)
7051 struct view
*view
= display
[current_view
];
7057 char buf
[SIZEOF_STR
];
7060 FORMAT_BUFFER(buf
, sizeof(buf
), msg
, retval
, TRUE
);
7064 if (!status_empty
|| *msg
) {
7067 va_start(args
, msg
);
7069 wmove(status_win
, 0, 0);
7070 if (view
->has_scrolled
&& use_scroll_status_wclear
)
7073 vwprintw(status_win
, msg
, args
);
7074 status_empty
= FALSE
;
7076 status_empty
= TRUE
;
7078 wclrtoeol(status_win
);
7079 wnoutrefresh(status_win
);
7084 update_view_title(view
);
7093 /* Initialize the curses library */
7094 if (isatty(STDIN_FILENO
)) {
7095 cursed
= !!initscr();
7098 /* Leave stdin and stdout alone when acting as a pager. */
7099 opt_tty
= fopen("/dev/tty", "r+");
7101 die("Failed to open /dev/tty");
7102 cursed
= !!newterm(NULL
, opt_tty
, opt_tty
);
7106 die("Failed to initialize curses");
7108 nonl(); /* Disable conversion and detect newlines from input. */
7109 cbreak(); /* Take input chars one at a time, no wait for \n */
7110 noecho(); /* Don't echo input */
7111 leaveok(stdscr
, FALSE
);
7116 getmaxyx(stdscr
, y
, x
);
7117 status_win
= newwin(1, x
, y
- 1, 0);
7119 die("Failed to create status window");
7121 /* Enable keyboard mapping */
7122 keypad(status_win
, TRUE
);
7123 wbkgdset(status_win
, get_line_attr(LINE_STATUS
));
7125 #if defined(NCURSES_VERSION_PATCH) && (NCURSES_VERSION_PATCH >= 20080119)
7126 set_tabsize(opt_tab_size
);
7128 TABSIZE
= opt_tab_size
;
7131 term
= getenv("XTERM_VERSION") ? NULL
: getenv("COLORTERM");
7132 if (term
&& !strcmp(term
, "gnome-terminal")) {
7133 /* In the gnome-terminal-emulator, the message from
7134 * scrolling up one line when impossible followed by
7135 * scrolling down one line causes corruption of the
7136 * status line. This is fixed by calling wclear. */
7137 use_scroll_status_wclear
= TRUE
;
7138 use_scroll_redrawwin
= FALSE
;
7140 } else if (term
&& !strcmp(term
, "xrvt-xpm")) {
7141 /* No problems with full optimizations in xrvt-(unicode)
7143 use_scroll_status_wclear
= use_scroll_redrawwin
= FALSE
;
7146 /* When scrolling in (u)xterm the last line in the
7147 * scrolling direction will update slowly. */
7148 use_scroll_redrawwin
= TRUE
;
7149 use_scroll_status_wclear
= FALSE
;
7154 get_input(int prompt_position
)
7157 int i
, key
, cursor_y
, cursor_x
;
7159 if (prompt_position
)
7163 bool loading
= FALSE
;
7165 foreach_view (view
, i
) {
7167 if (view_is_displayed(view
) && view
->has_scrolled
&&
7168 use_scroll_redrawwin
)
7169 redrawwin(view
->win
);
7170 view
->has_scrolled
= FALSE
;
7175 /* Update the cursor position. */
7176 if (prompt_position
) {
7177 getbegyx(status_win
, cursor_y
, cursor_x
);
7178 cursor_x
= prompt_position
;
7180 view
= display
[current_view
];
7181 getbegyx(view
->win
, cursor_y
, cursor_x
);
7182 cursor_x
= view
->width
- 1;
7183 cursor_y
+= view
->pos
.lineno
- view
->pos
.offset
;
7185 setsyx(cursor_y
, cursor_x
);
7187 /* Refresh, accept single keystroke of input */
7189 nodelay(status_win
, loading
);
7190 key
= wgetch(status_win
);
7192 /* wgetch() with nodelay() enabled returns ERR when
7193 * there's no input. */
7196 } else if (key
== KEY_RESIZE
) {
7199 getmaxyx(stdscr
, height
, width
);
7201 wresize(status_win
, 1, width
);
7202 mvwin(status_win
, height
- 1, 0);
7203 wnoutrefresh(status_win
);
7205 redraw_display(TRUE
);
7209 if (key
== erasechar())
7210 key
= KEY_BACKSPACE
;
7217 prompt_input(const char *prompt
, input_handler handler
, void *data
)
7219 enum input_status status
= INPUT_OK
;
7220 static char buf
[SIZEOF_STR
];
7225 while (status
== INPUT_OK
|| status
== INPUT_SKIP
) {
7228 mvwprintw(status_win
, 0, 0, "%s%.*s", prompt
, pos
, buf
);
7229 wclrtoeol(status_win
);
7231 key
= get_input(pos
+ 1);
7236 status
= pos
? INPUT_STOP
: INPUT_CANCEL
;
7243 status
= INPUT_CANCEL
;
7247 status
= INPUT_CANCEL
;
7251 if (pos
>= sizeof(buf
)) {
7252 report("Input string too long");
7256 status
= handler(data
, buf
, key
);
7257 if (status
== INPUT_OK
)
7258 buf
[pos
++] = (char) key
;
7262 /* Clear the status window */
7263 status_empty
= FALSE
;
7266 if (status
== INPUT_CANCEL
)
7274 static enum input_status
7275 prompt_yesno_handler(void *data
, char *buf
, int c
)
7277 if (c
== 'y' || c
== 'Y')
7279 if (c
== 'n' || c
== 'N')
7280 return INPUT_CANCEL
;
7285 prompt_yesno(const char *prompt
)
7287 char prompt2
[SIZEOF_STR
];
7289 if (!string_format(prompt2
, "%s [Yy/Nn]", prompt
))
7292 return !!prompt_input(prompt2
, prompt_yesno_handler
, NULL
);
7295 static enum input_status
7296 read_prompt_handler(void *data
, char *buf
, int c
)
7298 return isprint(c
) ? INPUT_OK
: INPUT_SKIP
;
7302 read_prompt(const char *prompt
)
7304 return prompt_input(prompt
, read_prompt_handler
, NULL
);
7307 static bool prompt_menu(const char *prompt
, const struct menu_item
*items
, int *selected
)
7309 enum input_status status
= INPUT_OK
;
7312 while (items
[size
].text
)
7315 while (status
== INPUT_OK
) {
7316 const struct menu_item
*item
= &items
[*selected
];
7320 mvwprintw(status_win
, 0, 0, "%s (%d of %d) ",
7321 prompt
, *selected
+ 1, size
);
7323 wprintw(status_win
, "[%c] ", (char) item
->hotkey
);
7324 wprintw(status_win
, "%s", item
->text
);
7325 wclrtoeol(status_win
);
7327 key
= get_input(COLS
- 1);
7332 status
= INPUT_STOP
;
7337 *selected
= *selected
- 1;
7339 *selected
= size
- 1;
7344 *selected
= (*selected
+ 1) % size
;
7348 status
= INPUT_CANCEL
;
7352 for (i
= 0; items
[i
].text
; i
++)
7353 if (items
[i
].hotkey
== key
) {
7355 status
= INPUT_STOP
;
7361 /* Clear the status window */
7362 status_empty
= FALSE
;
7365 return status
!= INPUT_CANCEL
;
7369 * Repository properties
7372 static struct ref
**refs
= NULL
;
7373 static size_t refs_size
= 0;
7374 static struct ref
*refs_head
= NULL
;
7376 static struct ref_list
**ref_lists
= NULL
;
7377 static size_t ref_lists_size
= 0;
7379 DEFINE_ALLOCATOR(realloc_refs
, struct ref
*, 256)
7380 DEFINE_ALLOCATOR(realloc_refs_list
, struct ref
*, 8)
7381 DEFINE_ALLOCATOR(realloc_ref_lists
, struct ref_list
*, 8)
7384 compare_refs(const void *ref1_
, const void *ref2_
)
7386 const struct ref
*ref1
= *(const struct ref
**)ref1_
;
7387 const struct ref
*ref2
= *(const struct ref
**)ref2_
;
7389 if (ref1
->tag
!= ref2
->tag
)
7390 return ref2
->tag
- ref1
->tag
;
7391 if (ref1
->ltag
!= ref2
->ltag
)
7392 return ref2
->ltag
- ref1
->ltag
;
7393 if (ref1
->head
!= ref2
->head
)
7394 return ref2
->head
- ref1
->head
;
7395 if (ref1
->tracked
!= ref2
->tracked
)
7396 return ref2
->tracked
- ref1
->tracked
;
7397 if (ref1
->replace
!= ref2
->replace
)
7398 return ref2
->replace
- ref1
->replace
;
7399 /* Order remotes last. */
7400 if (ref1
->remote
!= ref2
->remote
)
7401 return ref1
->remote
- ref2
->remote
;
7402 return strcmp(ref1
->name
, ref2
->name
);
7406 foreach_ref(bool (*visitor
)(void *data
, const struct ref
*ref
), void *data
)
7410 for (i
= 0; i
< refs_size
; i
++)
7411 if (!visitor(data
, refs
[i
]))
7421 static struct ref_list
*
7422 get_ref_list(const char *id
)
7424 struct ref_list
*list
;
7427 for (i
= 0; i
< ref_lists_size
; i
++)
7428 if (!strcmp(id
, ref_lists
[i
]->id
))
7429 return ref_lists
[i
];
7431 if (!realloc_ref_lists(&ref_lists
, ref_lists_size
, 1))
7433 list
= calloc(1, sizeof(*list
));
7437 for (i
= 0; i
< refs_size
; i
++) {
7438 if (!strcmp(id
, refs
[i
]->id
) &&
7439 realloc_refs_list(&list
->refs
, list
->size
, 1))
7440 list
->refs
[list
->size
++] = refs
[i
];
7448 qsort(list
->refs
, list
->size
, sizeof(*list
->refs
), compare_refs
);
7449 ref_lists
[ref_lists_size
++] = list
;
7454 read_ref(char *id
, size_t idlen
, char *name
, size_t namelen
, void *data
)
7456 struct ref
*ref
= NULL
;
7459 bool remote
= FALSE
;
7460 bool replace
= FALSE
;
7461 bool tracked
= FALSE
;
7465 if (!prefixcmp(name
, "refs/tags/")) {
7466 if (!suffixcmp(name
, namelen
, "^{}")) {
7474 namelen
-= STRING_SIZE("refs/tags/");
7475 name
+= STRING_SIZE("refs/tags/");
7477 } else if (!prefixcmp(name
, "refs/remotes/")) {
7479 namelen
-= STRING_SIZE("refs/remotes/");
7480 name
+= STRING_SIZE("refs/remotes/");
7481 tracked
= !strcmp(opt_remote
, name
);
7483 } else if (!prefixcmp(name
, "refs/replace/")) {
7485 id
= name
+ strlen("refs/replace/");
7486 idlen
= namelen
- strlen("refs/replace/");
7488 namelen
= strlen(name
);
7490 } else if (!prefixcmp(name
, "refs/heads/")) {
7491 namelen
-= STRING_SIZE("refs/heads/");
7492 name
+= STRING_SIZE("refs/heads/");
7493 if (strlen(opt_head
) == namelen
7494 && !strncmp(opt_head
, name
, namelen
))
7497 } else if (!strcmp(name
, "HEAD")) {
7500 namelen
= strlen(opt_head
);
7505 /* If we are reloading or it's an annotated tag, replace the
7506 * previous SHA1 with the resolved commit id; relies on the fact
7507 * git-ls-remote lists the commit id of an annotated tag right
7508 * before the commit id it points to. */
7509 for (pos
= 0; pos
< refs_size
; pos
++) {
7510 int cmp
= replace
? strcmp(id
, refs
[pos
]->id
) : strcmp(name
, refs
[pos
]->name
);
7519 if (!realloc_refs(&refs
, refs_size
, 1))
7521 ref
= calloc(1, sizeof(*ref
) + namelen
);
7524 refs
[refs_size
++] = ref
;
7525 strncpy(ref
->name
, name
, namelen
);
7531 ref
->remote
= remote
;
7532 ref
->replace
= replace
;
7533 ref
->tracked
= tracked
;
7534 string_copy_rev(ref
->id
, id
);
7544 const char *head_argv
[] = {
7545 "git", "symbolic-ref", "HEAD", NULL
7547 static const char *ls_remote_argv
[SIZEOF_ARG
] = {
7548 "git", "ls-remote", opt_git_dir
, NULL
7550 static bool init
= FALSE
;
7554 if (!argv_from_env(ls_remote_argv
, "TIG_LS_REMOTE"))
7555 die("TIG_LS_REMOTE contains too many arguments");
7562 if (io_run_buf(head_argv
, opt_head
, sizeof(opt_head
)) &&
7563 !prefixcmp(opt_head
, "refs/heads/")) {
7564 char *offset
= opt_head
+ STRING_SIZE("refs/heads/");
7566 memmove(opt_head
, offset
, strlen(offset
) + 1);
7570 for (i
= 0; i
< refs_size
; i
++)
7573 if (io_run_load(ls_remote_argv
, "\t", read_ref
, NULL
) == ERR
)
7576 /* Update the ref lists to reflect changes. */
7577 for (i
= 0; i
< ref_lists_size
; i
++) {
7578 struct ref_list
*list
= ref_lists
[i
];
7581 for (old
= new = 0; old
< list
->size
; old
++)
7582 if (!strcmp(list
->id
, list
->refs
[old
]->id
))
7583 list
->refs
[new++] = list
->refs
[old
];
7587 qsort(refs
, refs_size
, sizeof(*refs
), compare_refs
);
7593 set_remote_branch(const char *name
, const char *value
, size_t valuelen
)
7595 if (!strcmp(name
, ".remote")) {
7596 string_ncopy(opt_remote
, value
, valuelen
);
7598 } else if (*opt_remote
&& !strcmp(name
, ".merge")) {
7599 size_t from
= strlen(opt_remote
);
7601 if (!prefixcmp(value
, "refs/heads/"))
7602 value
+= STRING_SIZE("refs/heads/");
7604 if (!string_format_from(opt_remote
, &from
, "/%s", value
))
7610 set_repo_config_option(char *name
, char *value
, enum option_code (*cmd
)(int, const char **))
7612 const char *argv
[SIZEOF_ARG
] = { name
, "=" };
7613 int argc
= 1 + (cmd
== option_set_command
);
7614 enum option_code error
;
7616 if (!argv_from_string(argv
, &argc
, value
))
7617 error
= OPT_ERR_TOO_MANY_OPTION_ARGUMENTS
;
7619 error
= cmd(argc
, argv
);
7621 if (error
!= OPT_OK
)
7622 warn("Option 'tig.%s': %s", name
, option_errors
[error
]);
7626 set_environment_variable(const char *name
, const char *value
)
7628 size_t len
= strlen(name
) + 1 + strlen(value
) + 1;
7629 char *env
= malloc(len
);
7632 string_nformat(env
, len
, NULL
, "%s=%s", name
, value
) &&
7640 set_work_tree(const char *value
)
7642 char cwd
[SIZEOF_STR
];
7644 if (!getcwd(cwd
, sizeof(cwd
)))
7645 die("Failed to get cwd path: %s", strerror(errno
));
7646 if (chdir(opt_git_dir
) < 0)
7647 die("Failed to chdir(%s): %s", strerror(errno
));
7648 if (!getcwd(opt_git_dir
, sizeof(opt_git_dir
)))
7649 die("Failed to get git path: %s", strerror(errno
));
7651 die("Failed to chdir(%s): %s", cwd
, strerror(errno
));
7652 if (chdir(value
) < 0)
7653 die("Failed to chdir(%s): %s", value
, strerror(errno
));
7654 if (!getcwd(cwd
, sizeof(cwd
)))
7655 die("Failed to get cwd path: %s", strerror(errno
));
7656 if (!set_environment_variable("GIT_WORK_TREE", cwd
))
7657 die("Failed to set GIT_WORK_TREE to '%s'", cwd
);
7658 if (!set_environment_variable("GIT_DIR", opt_git_dir
))
7659 die("Failed to set GIT_DIR to '%s'", opt_git_dir
);
7660 opt_is_inside_work_tree
= TRUE
;
7664 parse_git_color_option(enum line_type type
, char *value
)
7666 struct line_info
*info
= &line_info
[type
];
7667 const char *argv
[SIZEOF_ARG
];
7669 bool first_color
= TRUE
;
7672 if (!argv_from_string(argv
, &argc
, value
))
7675 info
->fg
= COLOR_DEFAULT
;
7676 info
->bg
= COLOR_DEFAULT
;
7679 for (i
= 0; i
< argc
; i
++) {
7682 if (set_attribute(&attr
, argv
[i
])) {
7685 } else if (set_color(&attr
, argv
[i
])) {
7690 first_color
= FALSE
;
7696 set_git_color_option(const char *name
, char *value
)
7698 static const struct enum_map color_option_map
[] = {
7699 ENUM_MAP("branch.current", LINE_MAIN_HEAD
),
7700 ENUM_MAP("branch.local", LINE_MAIN_REF
),
7701 ENUM_MAP("branch.plain", LINE_MAIN_REF
),
7702 ENUM_MAP("branch.remote", LINE_MAIN_REMOTE
),
7704 ENUM_MAP("diff.meta", LINE_DIFF_HEADER
),
7705 ENUM_MAP("diff.meta", LINE_DIFF_INDEX
),
7706 ENUM_MAP("diff.meta", LINE_DIFF_OLDMODE
),
7707 ENUM_MAP("diff.meta", LINE_DIFF_NEWMODE
),
7708 ENUM_MAP("diff.frag", LINE_DIFF_CHUNK
),
7709 ENUM_MAP("diff.old", LINE_DIFF_DEL
),
7710 ENUM_MAP("diff.new", LINE_DIFF_ADD
),
7712 //ENUM_MAP("diff.commit", LINE_DIFF_ADD),
7714 ENUM_MAP("status.branch", LINE_STAT_HEAD
),
7715 //ENUM_MAP("status.nobranch", LINE_STAT_HEAD),
7716 ENUM_MAP("status.added", LINE_STAT_STAGED
),
7717 ENUM_MAP("status.updated", LINE_STAT_STAGED
),
7718 ENUM_MAP("status.changed", LINE_STAT_UNSTAGED
),
7719 ENUM_MAP("status.untracked", LINE_STAT_UNTRACKED
),
7722 int type
= LINE_NONE
;
7724 if (opt_read_git_colors
&& map_enum(&type
, color_option_map
, name
)) {
7725 parse_git_color_option(type
, value
);
7730 read_repo_config_option(char *name
, size_t namelen
, char *value
, size_t valuelen
, void *data
)
7732 if (!strcmp(name
, "gui.encoding"))
7733 parse_encoding(&opt_encoding
, value
, TRUE
);
7735 else if (!strcmp(name
, "core.editor"))
7736 string_ncopy(opt_editor
, value
, valuelen
);
7738 else if (!strcmp(name
, "core.worktree"))
7739 set_work_tree(value
);
7741 else if (!prefixcmp(name
, "tig.color."))
7742 set_repo_config_option(name
+ 10, value
, option_color_command
);
7744 else if (!prefixcmp(name
, "tig.bind."))
7745 set_repo_config_option(name
+ 9, value
, option_bind_command
);
7747 else if (!prefixcmp(name
, "tig."))
7748 set_repo_config_option(name
+ 4, value
, option_set_command
);
7750 else if (!prefixcmp(name
, "color."))
7751 set_git_color_option(name
+ STRING_SIZE("color."), value
);
7753 else if (*opt_head
&& !prefixcmp(name
, "branch.") &&
7754 !strncmp(name
+ 7, opt_head
, strlen(opt_head
)))
7755 set_remote_branch(name
+ 7 + strlen(opt_head
), value
, valuelen
);
7761 load_git_config(void)
7763 const char *config_list_argv
[] = { "git", "config", "--list", NULL
};
7765 return io_run_load(config_list_argv
, "=", read_repo_config_option
, NULL
);
7769 read_repo_info(char *name
, size_t namelen
, char *value
, size_t valuelen
, void *data
)
7771 if (!opt_git_dir
[0]) {
7772 string_ncopy(opt_git_dir
, name
, namelen
);
7774 } else if (opt_is_inside_work_tree
== -1) {
7775 /* This can be 3 different values depending on the
7776 * version of git being used. If git-rev-parse does not
7777 * understand --is-inside-work-tree it will simply echo
7778 * the option else either "true" or "false" is printed.
7779 * Default to true for the unknown case. */
7780 opt_is_inside_work_tree
= strcmp(name
, "false") ? TRUE
: FALSE
;
7782 } else if (*name
== '.') {
7783 string_ncopy(opt_cdup
, name
, namelen
);
7786 string_ncopy(opt_prefix
, name
, namelen
);
7793 load_repo_info(void)
7795 const char *rev_parse_argv
[] = {
7796 "git", "rev-parse", "--git-dir", "--is-inside-work-tree",
7797 "--show-cdup", "--show-prefix", NULL
7800 return io_run_load(rev_parse_argv
, "=", read_repo_info
, NULL
);
7808 static const char usage
[] =
7809 "tig " TIG_VERSION
" (" __DATE__
")\n"
7811 "Usage: tig [options] [revs] [--] [paths]\n"
7812 " or: tig show [options] [revs] [--] [paths]\n"
7813 " or: tig blame [options] [rev] [--] path\n"
7815 " or: tig < [git command output]\n"
7818 " +<number> Select line <number> in the first view\n"
7819 " -v, --version Show version and exit\n"
7820 " -h, --help Show help message and exit";
7822 static void __NORETURN
7825 /* XXX: Restore tty modes and let the OS cleanup the rest! */
7831 static void __NORETURN
7832 die(const char *err
, ...)
7838 va_start(args
, err
);
7839 fputs("tig: ", stderr
);
7840 vfprintf(stderr
, err
, args
);
7841 fputs("\n", stderr
);
7848 warn(const char *msg
, ...)
7852 va_start(args
, msg
);
7853 fputs("tig warning: ", stderr
);
7854 vfprintf(stderr
, msg
, args
);
7855 fputs("\n", stderr
);
7860 read_filter_args(char *name
, size_t namelen
, char *value
, size_t valuelen
, void *data
)
7862 const char ***filter_args
= data
;
7864 return argv_append(filter_args
, name
) ? OK
: ERR
;
7868 filter_rev_parse(const char ***args
, const char *arg1
, const char *arg2
, const char *argv
[])
7870 const char *rev_parse_argv
[SIZEOF_ARG
] = { "git", "rev-parse", arg1
, arg2
};
7871 const char **all_argv
= NULL
;
7873 if (!argv_append_array(&all_argv
, rev_parse_argv
) ||
7874 !argv_append_array(&all_argv
, argv
) ||
7875 !io_run_load(all_argv
, "\n", read_filter_args
, args
) == ERR
)
7876 die("Failed to split arguments");
7877 argv_free(all_argv
);
7882 filter_options(const char *argv
[], bool blame
)
7884 filter_rev_parse(&opt_file_argv
, "--no-revs", "--no-flags", argv
);
7887 filter_rev_parse(&opt_blame_argv
, "--no-revs", "--flags", argv
);
7889 filter_rev_parse(&opt_diff_argv
, "--no-revs", "--flags", argv
);
7891 filter_rev_parse(&opt_rev_argv
, "--symbolic", "--revs-only", argv
);
7895 parse_options(int argc
, const char *argv
[])
7897 enum request request
= REQ_VIEW_MAIN
;
7898 const char *subcommand
;
7899 bool seen_dashdash
= FALSE
;
7900 const char **filter_argv
= NULL
;
7903 if (!isatty(STDIN_FILENO
))
7904 return REQ_VIEW_PAGER
;
7907 return REQ_VIEW_MAIN
;
7909 subcommand
= argv
[1];
7910 if (!strcmp(subcommand
, "status")) {
7912 warn("ignoring arguments after `%s'", subcommand
);
7913 return REQ_VIEW_STATUS
;
7915 } else if (!strcmp(subcommand
, "blame")) {
7916 request
= REQ_VIEW_BLAME
;
7918 } else if (!strcmp(subcommand
, "show")) {
7919 request
= REQ_VIEW_DIFF
;
7925 for (i
= 1 + !!subcommand
; i
< argc
; i
++) {
7926 const char *opt
= argv
[i
];
7928 // stop parsing our options after -- and let rev-parse handle the rest
7929 if (!seen_dashdash
) {
7930 if (!strcmp(opt
, "--")) {
7931 seen_dashdash
= TRUE
;
7934 } else if (!strcmp(opt
, "-v") || !strcmp(opt
, "--version")) {
7935 printf("tig version %s\n", TIG_VERSION
);
7938 } else if (!strcmp(opt
, "-h") || !strcmp(opt
, "--help")) {
7939 printf("%s\n", usage
);
7942 } else if (strlen(opt
) >= 2 && *opt
== '+' && string_isnumber(opt
+ 1)) {
7943 opt_lineno
= atoi(opt
+ 1);
7949 if (!argv_append(&filter_argv
, opt
))
7950 die("command too long");
7954 filter_options(filter_argv
, request
== REQ_VIEW_BLAME
);
7956 /* Finish validating and setting up blame options */
7957 if (request
== REQ_VIEW_BLAME
) {
7958 if (!opt_file_argv
|| opt_file_argv
[1] || (opt_rev_argv
&& opt_rev_argv
[1]))
7959 die("invalid number of options to blame\n\n%s", usage
);
7962 string_ncopy(opt_ref
, opt_rev_argv
[0], strlen(opt_rev_argv
[0]));
7965 string_ncopy(opt_file
, opt_file_argv
[0], strlen(opt_file_argv
[0]));
7972 main(int argc
, const char *argv
[])
7974 const char *codeset
= ENCODING_UTF8
;
7975 enum request request
= parse_options(argc
, argv
);
7978 signal(SIGINT
, quit
);
7979 signal(SIGPIPE
, SIG_IGN
);
7981 if (setlocale(LC_ALL
, "")) {
7982 codeset
= nl_langinfo(CODESET
);
7985 if (load_repo_info() == ERR
)
7986 die("Failed to load repo info.");
7988 if (load_options() == ERR
)
7989 die("Failed to load user config.");
7991 if (load_git_config() == ERR
)
7992 die("Failed to load repo config.");
7994 /* Require a git repository unless when running in pager mode. */
7995 if (!opt_git_dir
[0] && request
!= REQ_VIEW_PAGER
)
7996 die("Not a git repository");
7998 if (codeset
&& strcmp(codeset
, ENCODING_UTF8
)) {
7999 char translit
[SIZEOF_STR
];
8001 if (string_format(translit
, "%s%s", codeset
, ICONV_TRANSLIT
))
8002 opt_iconv_out
= iconv_open(translit
, ENCODING_UTF8
);
8004 opt_iconv_out
= iconv_open(codeset
, ENCODING_UTF8
);
8005 if (opt_iconv_out
== ICONV_NONE
)
8006 die("Failed to initialize character set conversion");
8009 if (load_refs() == ERR
)
8010 die("Failed to load refs.");
8014 while (view_driver(display
[current_view
], request
)) {
8015 int key
= get_input(0);
8017 view
= display
[current_view
];
8018 request
= get_keybinding(view
->keymap
, key
);
8020 /* Some low-level request handling. This keeps access to
8021 * status_win restricted. */
8024 report("Unknown key, press %s for help",
8025 get_view_key(view
, REQ_VIEW_HELP
));
8029 char *cmd
= read_prompt(":");
8031 if (cmd
&& string_isnumber(cmd
)) {
8032 int lineno
= view
->pos
.lineno
+ 1;
8034 if (parse_int(&lineno
, cmd
, 1, view
->lines
+ 1) == OPT_OK
) {
8035 select_view_line(view
, lineno
- 1);
8038 report("Unable to parse '%s' as a line number", cmd
);
8040 } else if (cmd
&& iscommit(cmd
)) {
8041 string_ncopy(opt_search
, cmd
, strlen(cmd
));
8043 request
= view_request(view
, REQ_JUMP_COMMIT
);
8044 if (request
== REQ_JUMP_COMMIT
) {
8045 report("Jumping to commits is not supported by the '%s' view", view
->name
);
8049 struct view
*next
= VIEW(REQ_VIEW_PAGER
);
8050 const char *argv
[SIZEOF_ARG
] = { "git" };
8053 /* When running random commands, initially show the
8054 * command in the title. However, it maybe later be
8055 * overwritten if a commit line is selected. */
8056 string_ncopy(next
->ref
, cmd
, strlen(cmd
));
8058 if (!argv_from_string(argv
, &argc
, cmd
)) {
8059 report("Too many arguments");
8060 } else if (!format_argv(&next
->argv
, argv
, FALSE
)) {
8061 report("Argument formatting failed");
8064 open_view(view
, REQ_VIEW_PAGER
, OPEN_PREPARED
);
8072 case REQ_SEARCH_BACK
:
8074 const char *prompt
= request
== REQ_SEARCH
? "/" : "?";
8075 char *search
= read_prompt(prompt
);
8078 string_ncopy(opt_search
, search
, strlen(search
));
8079 else if (*opt_search
)
8080 request
= request
== REQ_SEARCH
?