Blob


1 /*
2 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include "got_compat.h"
19 #include <sys/queue.h>
20 #include <sys/stat.h>
21 #include <sys/ioctl.h>
23 #include <ctype.h>
24 #include <errno.h>
25 #if defined(__FreeBSD__) || defined(__APPLE__)
26 #define _XOPEN_SOURCE_EXTENDED /* for ncurses wide-character functions */
27 #endif
28 #include <curses.h>
29 #include <panel.h>
30 #include <locale.h>
31 #include <signal.h>
32 #include <stdlib.h>
33 #include <stdarg.h>
34 #include <stdio.h>
35 #include <getopt.h>
36 #include <string.h>
37 #include <err.h>
38 #include <unistd.h>
39 #include <limits.h>
40 #include <wchar.h>
41 #include <time.h>
42 #include <pthread.h>
43 #include <libgen.h>
44 #include <regex.h>
45 #include <sched.h>
47 #include "got_version.h"
48 #include "got_error.h"
49 #include "got_object.h"
50 #include "got_reference.h"
51 #include "got_repository.h"
52 #include "got_diff.h"
53 #include "got_opentemp.h"
54 #include "got_utf8.h"
55 #include "got_cancel.h"
56 #include "got_commit_graph.h"
57 #include "got_blame.h"
58 #include "got_privsep.h"
59 #include "got_path.h"
60 #include "got_worktree.h"
61 #include "got_keyword.h"
63 #ifndef MIN
64 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
65 #endif
67 #ifndef MAX
68 #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
69 #endif
71 #ifndef CTRL
72 #define CTRL(x) ((x) & 0x1f)
73 #endif
75 #ifndef nitems
76 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
77 #endif
79 struct tog_cmd {
80 const char *name;
81 const struct got_error *(*cmd_main)(int, char *[]);
82 void (*cmd_usage)(void);
83 };
85 __dead static void usage(int, int);
86 __dead static void usage_log(void);
87 __dead static void usage_diff(void);
88 __dead static void usage_blame(void);
89 __dead static void usage_tree(void);
90 __dead static void usage_ref(void);
92 static const struct got_error* cmd_log(int, char *[]);
93 static const struct got_error* cmd_diff(int, char *[]);
94 static const struct got_error* cmd_blame(int, char *[]);
95 static const struct got_error* cmd_tree(int, char *[]);
96 static const struct got_error* cmd_ref(int, char *[]);
98 static const struct tog_cmd tog_commands[] = {
99 { "log", cmd_log, usage_log },
100 { "diff", cmd_diff, usage_diff },
101 { "blame", cmd_blame, usage_blame },
102 { "tree", cmd_tree, usage_tree },
103 { "ref", cmd_ref, usage_ref },
104 };
106 enum tog_view_type {
107 TOG_VIEW_DIFF,
108 TOG_VIEW_LOG,
109 TOG_VIEW_BLAME,
110 TOG_VIEW_TREE,
111 TOG_VIEW_REF,
112 TOG_VIEW_HELP
113 };
115 /* Match _DIFF to _HELP with enum tog_view_type TOG_VIEW_* counterparts. */
116 enum tog_keymap_type {
117 TOG_KEYMAP_KEYS = -2,
118 TOG_KEYMAP_GLOBAL,
119 TOG_KEYMAP_DIFF,
120 TOG_KEYMAP_LOG,
121 TOG_KEYMAP_BLAME,
122 TOG_KEYMAP_TREE,
123 TOG_KEYMAP_REF,
124 TOG_KEYMAP_HELP
125 };
127 enum tog_view_mode {
128 TOG_VIEW_SPLIT_NONE,
129 TOG_VIEW_SPLIT_VERT,
130 TOG_VIEW_SPLIT_HRZN
131 };
133 #define HSPLIT_SCALE 0.3f /* default horizontal split scale */
135 #define TOG_EOF_STRING "(END)"
137 struct commit_queue_entry {
138 TAILQ_ENTRY(commit_queue_entry) entry;
139 struct got_object_id *id;
140 struct got_commit_object *commit;
141 int idx;
142 };
143 TAILQ_HEAD(commit_queue_head, commit_queue_entry);
144 struct commit_queue {
145 int ncommits;
146 struct commit_queue_head head;
147 };
149 struct tog_color {
150 STAILQ_ENTRY(tog_color) entry;
151 regex_t regex;
152 short colorpair;
153 };
154 STAILQ_HEAD(tog_colors, tog_color);
156 static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
157 static struct got_reflist_object_id_map *tog_refs_idmap;
158 static struct {
159 struct got_object_id *id;
160 int idx;
161 char marker;
162 } tog_base_commit;
163 static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
165 static const struct got_error *
166 tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
167 struct got_reference* re2)
169 const char *name1 = got_ref_get_name(re1);
170 const char *name2 = got_ref_get_name(re2);
171 int isbackup1, isbackup2;
173 /* Sort backup refs towards the bottom of the list. */
174 isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
175 isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
176 if (!isbackup1 && isbackup2) {
177 *cmp = -1;
178 return NULL;
179 } else if (isbackup1 && !isbackup2) {
180 *cmp = 1;
181 return NULL;
184 *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
185 return NULL;
188 static const struct got_error *
189 tog_load_refs(struct got_repository *repo, int sort_by_date)
191 const struct got_error *err;
193 err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
194 got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
195 repo);
196 if (err)
197 return err;
199 return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
200 repo);
203 static void
204 tog_free_refs(void)
206 if (tog_refs_idmap) {
207 got_reflist_object_id_map_free(tog_refs_idmap);
208 tog_refs_idmap = NULL;
210 got_ref_list_free(&tog_refs);
213 static const struct got_error *
214 add_color(struct tog_colors *colors, const char *pattern,
215 int idx, short color)
217 const struct got_error *err = NULL;
218 struct tog_color *tc;
219 int regerr = 0;
221 if (idx < 1 || idx > COLOR_PAIRS - 1)
222 return NULL;
224 init_pair(idx, color, -1);
226 tc = calloc(1, sizeof(*tc));
227 if (tc == NULL)
228 return got_error_from_errno("calloc");
229 regerr = regcomp(&tc->regex, pattern,
230 REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
231 if (regerr) {
232 static char regerr_msg[512];
233 static char err_msg[512];
234 regerror(regerr, &tc->regex, regerr_msg,
235 sizeof(regerr_msg));
236 snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
237 regerr_msg);
238 err = got_error_msg(GOT_ERR_REGEX, err_msg);
239 free(tc);
240 return err;
242 tc->colorpair = idx;
243 STAILQ_INSERT_HEAD(colors, tc, entry);
244 return NULL;
247 static void
248 free_colors(struct tog_colors *colors)
250 struct tog_color *tc;
252 while (!STAILQ_EMPTY(colors)) {
253 tc = STAILQ_FIRST(colors);
254 STAILQ_REMOVE_HEAD(colors, entry);
255 regfree(&tc->regex);
256 free(tc);
260 static struct tog_color *
261 get_color(struct tog_colors *colors, int colorpair)
263 struct tog_color *tc = NULL;
265 STAILQ_FOREACH(tc, colors, entry) {
266 if (tc->colorpair == colorpair)
267 return tc;
270 return NULL;
273 static int
274 default_color_value(const char *envvar)
276 if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
277 return COLOR_MAGENTA;
278 if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
279 return COLOR_CYAN;
280 if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
281 return COLOR_YELLOW;
282 if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
283 return COLOR_GREEN;
284 if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
285 return COLOR_MAGENTA;
286 if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
287 return COLOR_MAGENTA;
288 if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
289 return COLOR_CYAN;
290 if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
291 return COLOR_GREEN;
292 if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
293 return COLOR_GREEN;
294 if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
295 return COLOR_CYAN;
296 if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
297 return COLOR_YELLOW;
298 if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
299 return COLOR_GREEN;
300 if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
301 return COLOR_MAGENTA;
302 if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
303 return COLOR_YELLOW;
304 if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
305 return COLOR_CYAN;
307 return -1;
310 static int
311 get_color_value(const char *envvar)
313 const char *val = getenv(envvar);
315 if (val == NULL)
316 return default_color_value(envvar);
318 if (strcasecmp(val, "black") == 0)
319 return COLOR_BLACK;
320 if (strcasecmp(val, "red") == 0)
321 return COLOR_RED;
322 if (strcasecmp(val, "green") == 0)
323 return COLOR_GREEN;
324 if (strcasecmp(val, "yellow") == 0)
325 return COLOR_YELLOW;
326 if (strcasecmp(val, "blue") == 0)
327 return COLOR_BLUE;
328 if (strcasecmp(val, "magenta") == 0)
329 return COLOR_MAGENTA;
330 if (strcasecmp(val, "cyan") == 0)
331 return COLOR_CYAN;
332 if (strcasecmp(val, "white") == 0)
333 return COLOR_WHITE;
334 if (strcasecmp(val, "default") == 0)
335 return -1;
337 return default_color_value(envvar);
340 struct tog_diff_view_state {
341 struct got_object_id *id1, *id2;
342 const char *label1, *label2;
343 FILE *f, *f1, *f2;
344 int fd1, fd2;
345 int lineno;
346 int first_displayed_line;
347 int last_displayed_line;
348 int eof;
349 int diff_context;
350 int ignore_whitespace;
351 int force_text_diff;
352 struct got_repository *repo;
353 struct got_diff_line *lines;
354 size_t nlines;
355 int matched_line;
356 int selected_line;
358 /* passed from log or blame view; may be NULL */
359 struct tog_view *parent_view;
360 };
362 pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
363 static volatile sig_atomic_t tog_thread_error;
365 struct tog_log_thread_args {
366 pthread_cond_t need_commits;
367 pthread_cond_t commit_loaded;
368 int commits_needed;
369 int load_all;
370 struct got_commit_graph *graph;
371 struct commit_queue *real_commits;
372 const char *in_repo_path;
373 struct got_object_id *start_id;
374 struct got_repository *repo;
375 int *pack_fds;
376 int log_complete;
377 pthread_cond_t log_loaded;
378 sig_atomic_t *quit;
379 struct commit_queue_entry **first_displayed_entry;
380 struct commit_queue_entry **selected_entry;
381 int *searching;
382 int *search_next_done;
383 regex_t *regex;
384 int *limiting;
385 int limit_match;
386 regex_t *limit_regex;
387 struct commit_queue *limit_commits;
388 struct got_worktree *worktree;
389 int need_commit_marker;
390 };
392 struct tog_log_view_state {
393 struct commit_queue *commits;
394 struct commit_queue_entry *first_displayed_entry;
395 struct commit_queue_entry *last_displayed_entry;
396 struct commit_queue_entry *selected_entry;
397 struct commit_queue real_commits;
398 int selected;
399 char *in_repo_path;
400 char *head_ref_name;
401 int log_branches;
402 struct got_repository *repo;
403 struct got_object_id *start_id;
404 sig_atomic_t quit;
405 pthread_t thread;
406 struct tog_log_thread_args thread_args;
407 struct commit_queue_entry *matched_entry;
408 struct commit_queue_entry *search_entry;
409 struct tog_colors colors;
410 int use_committer;
411 int limit_view;
412 regex_t limit_regex;
413 struct commit_queue limit_commits;
414 };
416 #define TOG_COLOR_DIFF_MINUS 1
417 #define TOG_COLOR_DIFF_PLUS 2
418 #define TOG_COLOR_DIFF_CHUNK_HEADER 3
419 #define TOG_COLOR_DIFF_META 4
420 #define TOG_COLOR_TREE_SUBMODULE 5
421 #define TOG_COLOR_TREE_SYMLINK 6
422 #define TOG_COLOR_TREE_DIRECTORY 7
423 #define TOG_COLOR_TREE_EXECUTABLE 8
424 #define TOG_COLOR_COMMIT 9
425 #define TOG_COLOR_AUTHOR 10
426 #define TOG_COLOR_DATE 11
427 #define TOG_COLOR_REFS_HEADS 12
428 #define TOG_COLOR_REFS_TAGS 13
429 #define TOG_COLOR_REFS_REMOTES 14
430 #define TOG_COLOR_REFS_BACKUP 15
432 struct tog_blame_cb_args {
433 struct tog_blame_line *lines; /* one per line */
434 int nlines;
436 struct tog_view *view;
437 struct got_object_id *commit_id;
438 int *quit;
439 };
441 struct tog_blame_thread_args {
442 const char *path;
443 struct got_repository *repo;
444 struct tog_blame_cb_args *cb_args;
445 int *complete;
446 got_cancel_cb cancel_cb;
447 void *cancel_arg;
448 pthread_cond_t blame_complete;
449 };
451 struct tog_blame {
452 FILE *f;
453 off_t filesize;
454 struct tog_blame_line *lines;
455 int nlines;
456 off_t *line_offsets;
457 pthread_t thread;
458 struct tog_blame_thread_args thread_args;
459 struct tog_blame_cb_args cb_args;
460 const char *path;
461 int *pack_fds;
462 };
464 struct tog_blame_view_state {
465 int first_displayed_line;
466 int last_displayed_line;
467 int selected_line;
468 int last_diffed_line;
469 int blame_complete;
470 int eof;
471 int done;
472 struct got_object_id_queue blamed_commits;
473 struct got_object_qid *blamed_commit;
474 char *path;
475 struct got_repository *repo;
476 struct got_object_id *commit_id;
477 struct got_object_id *id_to_log;
478 struct tog_blame blame;
479 int matched_line;
480 struct tog_colors colors;
481 };
483 struct tog_parent_tree {
484 TAILQ_ENTRY(tog_parent_tree) entry;
485 struct got_tree_object *tree;
486 struct got_tree_entry *first_displayed_entry;
487 struct got_tree_entry *selected_entry;
488 int selected;
489 };
491 TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
493 struct tog_tree_view_state {
494 char *tree_label;
495 struct got_object_id *commit_id;/* commit which this tree belongs to */
496 struct got_tree_object *root; /* the commit's root tree entry */
497 struct got_tree_object *tree; /* currently displayed (sub-)tree */
498 struct got_tree_entry *first_displayed_entry;
499 struct got_tree_entry *last_displayed_entry;
500 struct got_tree_entry *selected_entry;
501 int ndisplayed, selected, show_ids;
502 struct tog_parent_trees parents; /* parent trees of current sub-tree */
503 char *head_ref_name;
504 struct got_repository *repo;
505 struct got_tree_entry *matched_entry;
506 struct tog_colors colors;
507 };
509 struct tog_reflist_entry {
510 TAILQ_ENTRY(tog_reflist_entry) entry;
511 struct got_reference *ref;
512 int idx;
513 };
515 TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
517 struct tog_ref_view_state {
518 struct tog_reflist_head refs;
519 struct tog_reflist_entry *first_displayed_entry;
520 struct tog_reflist_entry *last_displayed_entry;
521 struct tog_reflist_entry *selected_entry;
522 int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
523 struct got_repository *repo;
524 struct tog_reflist_entry *matched_entry;
525 struct tog_colors colors;
526 };
528 struct tog_help_view_state {
529 FILE *f;
530 off_t *line_offsets;
531 size_t nlines;
532 int lineno;
533 int first_displayed_line;
534 int last_displayed_line;
535 int eof;
536 int matched_line;
537 int selected_line;
538 int all;
539 enum tog_keymap_type type;
540 };
542 #define GENERATE_HELP \
543 KEYMAP_("Global", TOG_KEYMAP_GLOBAL), \
544 KEY_("H F1", "Open view-specific help (double tap for all help)"), \
545 KEY_("k C-p Up", "Move cursor or page up one line"), \
546 KEY_("j C-n Down", "Move cursor or page down one line"), \
547 KEY_("C-b b PgUp", "Scroll the view up one page"), \
548 KEY_("C-f f PgDn Space", "Scroll the view down one page"), \
549 KEY_("C-u u", "Scroll the view up one half page"), \
550 KEY_("C-d d", "Scroll the view down one half page"), \
551 KEY_("g", "Go to line N (default: first line)"), \
552 KEY_("Home =", "Go to the first line"), \
553 KEY_("G", "Go to line N (default: last line)"), \
554 KEY_("End *", "Go to the last line"), \
555 KEY_("l Right", "Scroll the view right"), \
556 KEY_("h Left", "Scroll the view left"), \
557 KEY_("$", "Scroll view to the rightmost position"), \
558 KEY_("0", "Scroll view to the leftmost position"), \
559 KEY_("-", "Decrease size of the focussed split"), \
560 KEY_("+", "Increase size of the focussed split"), \
561 KEY_("Tab", "Switch focus between views"), \
562 KEY_("F", "Toggle fullscreen mode"), \
563 KEY_("S", "Switch split-screen layout"), \
564 KEY_("/", "Open prompt to enter search term"), \
565 KEY_("n", "Find next line/token matching the current search term"), \
566 KEY_("N", "Find previous line/token matching the current search term"),\
567 KEY_("q", "Quit the focussed view; Quit help screen"), \
568 KEY_("Q", "Quit tog"), \
570 KEYMAP_("Log view", TOG_KEYMAP_LOG), \
571 KEY_("< ,", "Move cursor up one commit"), \
572 KEY_("> .", "Move cursor down one commit"), \
573 KEY_("Enter", "Open diff view of the selected commit"), \
574 KEY_("B", "Reload the log view and toggle display of merged commits"), \
575 KEY_("R", "Open ref view of all repository references"), \
576 KEY_("T", "Display tree view of the repository from the selected" \
577 " commit"), \
578 KEY_("@", "Toggle between displaying author and committer name"), \
579 KEY_("&", "Open prompt to enter term to limit commits displayed"), \
580 KEY_("C-g Backspace", "Cancel current search or log operation"), \
581 KEY_("C-l", "Reload the log view with new commits in the repository"), \
583 KEYMAP_("Diff view", TOG_KEYMAP_DIFF), \
584 KEY_("K < ,", "Display diff of next line in the file/log entry"), \
585 KEY_("J > .", "Display diff of previous line in the file/log entry"), \
586 KEY_("A", "Toggle between Myers and Patience diff algorithm"), \
587 KEY_("a", "Toggle treatment of file as ASCII irrespective of binary" \
588 " data"), \
589 KEY_("(", "Go to the previous file in the diff"), \
590 KEY_(")", "Go to the next file in the diff"), \
591 KEY_("{", "Go to the previous hunk in the diff"), \
592 KEY_("}", "Go to the next hunk in the diff"), \
593 KEY_("[", "Decrease the number of context lines"), \
594 KEY_("]", "Increase the number of context lines"), \
595 KEY_("w", "Toggle ignore whitespace-only changes in the diff"), \
597 KEYMAP_("Blame view", TOG_KEYMAP_BLAME), \
598 KEY_("Enter", "Display diff view of the selected line's commit"), \
599 KEY_("A", "Toggle diff algorithm between Myers and Patience"), \
600 KEY_("L", "Open log view for the currently selected annotated line"), \
601 KEY_("C", "Reload view with the previously blamed commit"), \
602 KEY_("c", "Reload view with the version of the file found in the" \
603 " selected line's commit"), \
604 KEY_("p", "Reload view with the version of the file found in the" \
605 " selected line's parent commit"), \
607 KEYMAP_("Tree view", TOG_KEYMAP_TREE), \
608 KEY_("Enter", "Enter selected directory or open blame view of the" \
609 " selected file"), \
610 KEY_("L", "Open log view for the selected entry"), \
611 KEY_("R", "Open ref view of all repository references"), \
612 KEY_("i", "Show object IDs for all tree entries"), \
613 KEY_("Backspace", "Return to the parent directory"), \
615 KEYMAP_("Ref view", TOG_KEYMAP_REF), \
616 KEY_("Enter", "Display log view of the selected reference"), \
617 KEY_("T", "Display tree view of the selected reference"), \
618 KEY_("i", "Toggle display of IDs for all non-symbolic references"), \
619 KEY_("m", "Toggle display of last modified date for each reference"), \
620 KEY_("o", "Toggle reference sort order (name -> timestamp)"), \
621 KEY_("C-l", "Reload view with all repository references")
623 struct tog_key_map {
624 const char *keys;
625 const char *info;
626 enum tog_keymap_type type;
627 };
629 /* curses io for tog regress */
630 struct tog_io {
631 FILE *cin;
632 FILE *cout;
633 FILE *f;
634 FILE *sdump;
635 char *input_str;
636 int wait_for_ui;
637 } tog_io;
638 static int using_mock_io;
640 #define TOG_KEY_SCRDUMP SHRT_MIN
642 /*
643 * We implement two types of views: parent views and child views.
645 * The 'Tab' key switches focus between a parent view and its child view.
646 * Child views are shown side-by-side to their parent view, provided
647 * there is enough screen estate.
649 * When a new view is opened from within a parent view, this new view
650 * becomes a child view of the parent view, replacing any existing child.
652 * When a new view is opened from within a child view, this new view
653 * becomes a parent view which will obscure the views below until the
654 * user quits the new parent view by typing 'q'.
656 * This list of views contains parent views only.
657 * Child views are only pointed to by their parent view.
658 */
659 TAILQ_HEAD(tog_view_list_head, tog_view);
661 struct tog_view {
662 TAILQ_ENTRY(tog_view) entry;
663 WINDOW *window;
664 PANEL *panel;
665 int nlines, ncols, begin_y, begin_x; /* based on split height/width */
666 int resized_y, resized_x; /* begin_y/x based on user resizing */
667 int maxx, x; /* max column and current start column */
668 int lines, cols; /* copies of LINES and COLS */
669 int nscrolled, offset; /* lines scrolled and hsplit line offset */
670 int gline, hiline; /* navigate to and highlight this nG line */
671 int ch, count; /* current keymap and count prefix */
672 int resized; /* set when in a resize event */
673 int focussed; /* Only set on one parent or child view at a time. */
674 int dying;
675 struct tog_view *parent;
676 struct tog_view *child;
678 /*
679 * This flag is initially set on parent views when a new child view
680 * is created. It gets toggled when the 'Tab' key switches focus
681 * between parent and child.
682 * The flag indicates whether focus should be passed on to our child
683 * view if this parent view gets picked for focus after another parent
684 * view was closed. This prevents child views from losing focus in such
685 * situations.
686 */
687 int focus_child;
689 enum tog_view_mode mode;
690 /* type-specific state */
691 enum tog_view_type type;
692 union {
693 struct tog_diff_view_state diff;
694 struct tog_log_view_state log;
695 struct tog_blame_view_state blame;
696 struct tog_tree_view_state tree;
697 struct tog_ref_view_state ref;
698 struct tog_help_view_state help;
699 } state;
701 const struct got_error *(*show)(struct tog_view *);
702 const struct got_error *(*input)(struct tog_view **,
703 struct tog_view *, int);
704 const struct got_error *(*reset)(struct tog_view *);
705 const struct got_error *(*resize)(struct tog_view *, int);
706 const struct got_error *(*close)(struct tog_view *);
708 const struct got_error *(*search_start)(struct tog_view *);
709 const struct got_error *(*search_next)(struct tog_view *);
710 void (*search_setup)(struct tog_view *, FILE **, off_t **, size_t *,
711 int **, int **, int **, int **);
712 int search_started;
713 int searching;
714 #define TOG_SEARCH_FORWARD 1
715 #define TOG_SEARCH_BACKWARD 2
716 int search_next_done;
717 #define TOG_SEARCH_HAVE_MORE 1
718 #define TOG_SEARCH_NO_MORE 2
719 #define TOG_SEARCH_HAVE_NONE 3
720 regex_t regex;
721 regmatch_t regmatch;
722 const char *action;
723 };
725 static const struct got_error *open_diff_view(struct tog_view *,
726 struct got_object_id *, struct got_object_id *,
727 const char *, const char *, int, int, int, struct tog_view *,
728 struct got_repository *);
729 static const struct got_error *show_diff_view(struct tog_view *);
730 static const struct got_error *input_diff_view(struct tog_view **,
731 struct tog_view *, int);
732 static const struct got_error *reset_diff_view(struct tog_view *);
733 static const struct got_error* close_diff_view(struct tog_view *);
734 static const struct got_error *search_start_diff_view(struct tog_view *);
735 static void search_setup_diff_view(struct tog_view *, FILE **, off_t **,
736 size_t *, int **, int **, int **, int **);
737 static const struct got_error *search_next_view_match(struct tog_view *);
739 static const struct got_error *open_log_view(struct tog_view *,
740 struct got_object_id *, struct got_repository *,
741 const char *, const char *, int, struct got_worktree *);
742 static const struct got_error * show_log_view(struct tog_view *);
743 static const struct got_error *input_log_view(struct tog_view **,
744 struct tog_view *, int);
745 static const struct got_error *resize_log_view(struct tog_view *, int);
746 static const struct got_error *close_log_view(struct tog_view *);
747 static const struct got_error *search_start_log_view(struct tog_view *);
748 static const struct got_error *search_next_log_view(struct tog_view *);
750 static const struct got_error *open_blame_view(struct tog_view *, char *,
751 struct got_object_id *, struct got_repository *);
752 static const struct got_error *show_blame_view(struct tog_view *);
753 static const struct got_error *input_blame_view(struct tog_view **,
754 struct tog_view *, int);
755 static const struct got_error *reset_blame_view(struct tog_view *);
756 static const struct got_error *close_blame_view(struct tog_view *);
757 static const struct got_error *search_start_blame_view(struct tog_view *);
758 static void search_setup_blame_view(struct tog_view *, FILE **, off_t **,
759 size_t *, int **, int **, int **, int **);
761 static const struct got_error *open_tree_view(struct tog_view *,
762 struct got_object_id *, const char *, struct got_repository *);
763 static const struct got_error *show_tree_view(struct tog_view *);
764 static const struct got_error *input_tree_view(struct tog_view **,
765 struct tog_view *, int);
766 static const struct got_error *close_tree_view(struct tog_view *);
767 static const struct got_error *search_start_tree_view(struct tog_view *);
768 static const struct got_error *search_next_tree_view(struct tog_view *);
770 static const struct got_error *open_ref_view(struct tog_view *,
771 struct got_repository *);
772 static const struct got_error *show_ref_view(struct tog_view *);
773 static const struct got_error *input_ref_view(struct tog_view **,
774 struct tog_view *, int);
775 static const struct got_error *close_ref_view(struct tog_view *);
776 static const struct got_error *search_start_ref_view(struct tog_view *);
777 static const struct got_error *search_next_ref_view(struct tog_view *);
779 static const struct got_error *open_help_view(struct tog_view *,
780 struct tog_view *);
781 static const struct got_error *show_help_view(struct tog_view *);
782 static const struct got_error *input_help_view(struct tog_view **,
783 struct tog_view *, int);
784 static const struct got_error *reset_help_view(struct tog_view *);
785 static const struct got_error* close_help_view(struct tog_view *);
786 static const struct got_error *search_start_help_view(struct tog_view *);
787 static void search_setup_help_view(struct tog_view *, FILE **, off_t **,
788 size_t *, int **, int **, int **, int **);
790 static volatile sig_atomic_t tog_sigwinch_received;
791 static volatile sig_atomic_t tog_sigpipe_received;
792 static volatile sig_atomic_t tog_sigcont_received;
793 static volatile sig_atomic_t tog_sigint_received;
794 static volatile sig_atomic_t tog_sigterm_received;
796 static void
797 tog_sigwinch(int signo)
799 tog_sigwinch_received = 1;
802 static void
803 tog_sigpipe(int signo)
805 tog_sigpipe_received = 1;
808 static void
809 tog_sigcont(int signo)
811 tog_sigcont_received = 1;
814 static void
815 tog_sigint(int signo)
817 tog_sigint_received = 1;
820 static void
821 tog_sigterm(int signo)
823 tog_sigterm_received = 1;
826 static int
827 tog_fatal_signal_received(void)
829 return (tog_sigpipe_received ||
830 tog_sigint_received || tog_sigterm_received);
833 static const struct got_error *
834 view_close(struct tog_view *view)
836 const struct got_error *err = NULL, *child_err = NULL;
838 if (view->child) {
839 child_err = view_close(view->child);
840 view->child = NULL;
842 if (view->close)
843 err = view->close(view);
844 if (view->panel)
845 del_panel(view->panel);
846 if (view->window)
847 delwin(view->window);
848 free(view);
849 return err ? err : child_err;
852 static struct tog_view *
853 view_open(int nlines, int ncols, int begin_y, int begin_x,
854 enum tog_view_type type)
856 struct tog_view *view = calloc(1, sizeof(*view));
858 if (view == NULL)
859 return NULL;
861 view->type = type;
862 view->lines = LINES;
863 view->cols = COLS;
864 view->nlines = nlines ? nlines : LINES - begin_y;
865 view->ncols = ncols ? ncols : COLS - begin_x;
866 view->begin_y = begin_y;
867 view->begin_x = begin_x;
868 view->window = newwin(nlines, ncols, begin_y, begin_x);
869 if (view->window == NULL) {
870 view_close(view);
871 return NULL;
873 view->panel = new_panel(view->window);
874 if (view->panel == NULL ||
875 set_panel_userptr(view->panel, view) != OK) {
876 view_close(view);
877 return NULL;
880 keypad(view->window, TRUE);
881 return view;
884 static int
885 view_split_begin_x(int begin_x)
887 if (begin_x > 0 || COLS < 120)
888 return 0;
889 return (COLS - MAX(COLS / 2, 80));
892 /* XXX Stub till we decide what to do. */
893 static int
894 view_split_begin_y(int lines)
896 return lines * HSPLIT_SCALE;
899 static const struct got_error *view_resize(struct tog_view *);
901 static const struct got_error *
902 view_splitscreen(struct tog_view *view)
904 const struct got_error *err = NULL;
906 if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
907 if (view->resized_y && view->resized_y < view->lines)
908 view->begin_y = view->resized_y;
909 else
910 view->begin_y = view_split_begin_y(view->nlines);
911 view->begin_x = 0;
912 } else if (!view->resized) {
913 if (view->resized_x && view->resized_x < view->cols - 1 &&
914 view->cols > 119)
915 view->begin_x = view->resized_x;
916 else
917 view->begin_x = view_split_begin_x(0);
918 view->begin_y = 0;
920 view->nlines = LINES - view->begin_y;
921 view->ncols = COLS - view->begin_x;
922 view->lines = LINES;
923 view->cols = COLS;
924 err = view_resize(view);
925 if (err)
926 return err;
928 if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
929 view->parent->nlines = view->begin_y;
931 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
932 return got_error_from_errno("mvwin");
934 return NULL;
937 static const struct got_error *
938 view_fullscreen(struct tog_view *view)
940 const struct got_error *err = NULL;
942 view->begin_x = 0;
943 view->begin_y = view->resized ? view->begin_y : 0;
944 view->nlines = view->resized ? view->nlines : LINES;
945 view->ncols = COLS;
946 view->lines = LINES;
947 view->cols = COLS;
948 err = view_resize(view);
949 if (err)
950 return err;
952 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
953 return got_error_from_errno("mvwin");
955 return NULL;
958 static int
959 view_is_parent_view(struct tog_view *view)
961 return view->parent == NULL;
964 static int
965 view_is_splitscreen(struct tog_view *view)
967 return view->begin_x > 0 || view->begin_y > 0;
970 static int
971 view_is_fullscreen(struct tog_view *view)
973 return view->nlines == LINES && view->ncols == COLS;
976 static int
977 view_is_hsplit_top(struct tog_view *view)
979 return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
980 view_is_splitscreen(view->child);
983 static void
984 view_border(struct tog_view *view)
986 PANEL *panel;
987 const struct tog_view *view_above;
989 if (view->parent)
990 return view_border(view->parent);
992 panel = panel_above(view->panel);
993 if (panel == NULL)
994 return;
996 view_above = panel_userptr(panel);
997 if (view->mode == TOG_VIEW_SPLIT_HRZN)
998 mvwhline(view->window, view_above->begin_y - 1,
999 view->begin_x, ACS_HLINE, view->ncols);
1000 else
1001 mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
1002 ACS_VLINE, view->nlines);
1005 static const struct got_error *view_init_hsplit(struct tog_view *, int);
1006 static const struct got_error *request_log_commits(struct tog_view *);
1007 static const struct got_error *offset_selection_down(struct tog_view *);
1008 static void offset_selection_up(struct tog_view *);
1009 static void view_get_split(struct tog_view *, int *, int *);
1011 static const struct got_error *
1012 view_resize(struct tog_view *view)
1014 const struct got_error *err = NULL;
1015 int dif, nlines, ncols;
1017 dif = LINES - view->lines; /* line difference */
1019 if (view->lines > LINES)
1020 nlines = view->nlines - (view->lines - LINES);
1021 else
1022 nlines = view->nlines + (LINES - view->lines);
1023 if (view->cols > COLS)
1024 ncols = view->ncols - (view->cols - COLS);
1025 else
1026 ncols = view->ncols + (COLS - view->cols);
1028 if (view->child) {
1029 int hs = view->child->begin_y;
1031 if (!view_is_fullscreen(view))
1032 view->child->begin_x = view_split_begin_x(view->begin_x);
1033 if (view->mode == TOG_VIEW_SPLIT_HRZN ||
1034 view->child->begin_x == 0) {
1035 ncols = COLS;
1037 view_fullscreen(view->child);
1038 if (view->child->focussed)
1039 show_panel(view->child->panel);
1040 else
1041 show_panel(view->panel);
1042 } else {
1043 ncols = view->child->begin_x;
1045 view_splitscreen(view->child);
1046 show_panel(view->child->panel);
1049 * XXX This is ugly and needs to be moved into the above
1050 * logic but "works" for now and my attempts at moving it
1051 * break either 'tab' or 'F' key maps in horizontal splits.
1053 if (hs) {
1054 err = view_splitscreen(view->child);
1055 if (err)
1056 return err;
1057 if (dif < 0) { /* top split decreased */
1058 err = offset_selection_down(view);
1059 if (err)
1060 return err;
1062 view_border(view);
1063 update_panels();
1064 doupdate();
1065 show_panel(view->child->panel);
1066 nlines = view->nlines;
1068 } else if (view->parent == NULL)
1069 ncols = COLS;
1071 if (view->resize && dif > 0) {
1072 err = view->resize(view, dif);
1073 if (err)
1074 return err;
1077 if (wresize(view->window, nlines, ncols) == ERR)
1078 return got_error_from_errno("wresize");
1079 if (replace_panel(view->panel, view->window) == ERR)
1080 return got_error_from_errno("replace_panel");
1081 wclear(view->window);
1083 view->nlines = nlines;
1084 view->ncols = ncols;
1085 view->lines = LINES;
1086 view->cols = COLS;
1088 return NULL;
1091 static const struct got_error *
1092 resize_log_view(struct tog_view *view, int increase)
1094 struct tog_log_view_state *s = &view->state.log;
1095 const struct got_error *err = NULL;
1096 int n = 0;
1098 if (s->selected_entry)
1099 n = s->selected_entry->idx + view->lines - s->selected;
1102 * Request commits to account for the increased
1103 * height so we have enough to populate the view.
1105 if (s->commits->ncommits < n) {
1106 view->nscrolled = n - s->commits->ncommits + increase + 1;
1107 err = request_log_commits(view);
1110 return err;
1113 static void
1114 view_adjust_offset(struct tog_view *view, int n)
1116 if (n == 0)
1117 return;
1119 if (view->parent && view->parent->offset) {
1120 if (view->parent->offset + n >= 0)
1121 view->parent->offset += n;
1122 else
1123 view->parent->offset = 0;
1124 } else if (view->offset) {
1125 if (view->offset - n >= 0)
1126 view->offset -= n;
1127 else
1128 view->offset = 0;
1132 static const struct got_error *
1133 view_resize_split(struct tog_view *view, int resize)
1135 const struct got_error *err = NULL;
1136 struct tog_view *v = NULL;
1138 if (view->parent)
1139 v = view->parent;
1140 else
1141 v = view;
1143 if (!v->child || !view_is_splitscreen(v->child))
1144 return NULL;
1146 v->resized = v->child->resized = resize; /* lock for resize event */
1148 if (view->mode == TOG_VIEW_SPLIT_HRZN) {
1149 if (v->child->resized_y)
1150 v->child->begin_y = v->child->resized_y;
1151 if (view->parent)
1152 v->child->begin_y -= resize;
1153 else
1154 v->child->begin_y += resize;
1155 if (v->child->begin_y < 3) {
1156 view->count = 0;
1157 v->child->begin_y = 3;
1158 } else if (v->child->begin_y > LINES - 1) {
1159 view->count = 0;
1160 v->child->begin_y = LINES - 1;
1162 v->ncols = COLS;
1163 v->child->ncols = COLS;
1164 view_adjust_offset(view, resize);
1165 err = view_init_hsplit(v, v->child->begin_y);
1166 if (err)
1167 return err;
1168 v->child->resized_y = v->child->begin_y;
1169 } else {
1170 if (v->child->resized_x)
1171 v->child->begin_x = v->child->resized_x;
1172 if (view->parent)
1173 v->child->begin_x -= resize;
1174 else
1175 v->child->begin_x += resize;
1176 if (v->child->begin_x < 11) {
1177 view->count = 0;
1178 v->child->begin_x = 11;
1179 } else if (v->child->begin_x > COLS - 1) {
1180 view->count = 0;
1181 v->child->begin_x = COLS - 1;
1183 v->child->resized_x = v->child->begin_x;
1186 v->child->mode = v->mode;
1187 v->child->nlines = v->lines - v->child->begin_y;
1188 v->child->ncols = v->cols - v->child->begin_x;
1189 v->focus_child = 1;
1191 err = view_fullscreen(v);
1192 if (err)
1193 return err;
1194 err = view_splitscreen(v->child);
1195 if (err)
1196 return err;
1198 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1199 err = offset_selection_down(v->child);
1200 if (err)
1201 return err;
1204 if (v->resize)
1205 err = v->resize(v, 0);
1206 else if (v->child->resize)
1207 err = v->child->resize(v->child, 0);
1209 v->resized = v->child->resized = 0;
1211 return err;
1214 static void
1215 view_transfer_size(struct tog_view *dst, struct tog_view *src)
1217 struct tog_view *v = src->child ? src->child : src;
1219 dst->resized_x = v->resized_x;
1220 dst->resized_y = v->resized_y;
1223 static const struct got_error *
1224 view_close_child(struct tog_view *view)
1226 const struct got_error *err = NULL;
1228 if (view->child == NULL)
1229 return NULL;
1231 err = view_close(view->child);
1232 view->child = NULL;
1233 return err;
1236 static const struct got_error *
1237 view_set_child(struct tog_view *view, struct tog_view *child)
1239 const struct got_error *err = NULL;
1241 view->child = child;
1242 child->parent = view;
1244 err = view_resize(view);
1245 if (err)
1246 return err;
1248 if (view->child->resized_x || view->child->resized_y)
1249 err = view_resize_split(view, 0);
1251 return err;
1254 static const struct got_error *view_dispatch_request(struct tog_view **,
1255 struct tog_view *, enum tog_view_type, int, int);
1257 static const struct got_error *
1258 view_request_new(struct tog_view **requested, struct tog_view *view,
1259 enum tog_view_type request)
1261 struct tog_view *new_view = NULL;
1262 const struct got_error *err;
1263 int y = 0, x = 0;
1265 *requested = NULL;
1267 if (view_is_parent_view(view) && request != TOG_VIEW_HELP)
1268 view_get_split(view, &y, &x);
1270 err = view_dispatch_request(&new_view, view, request, y, x);
1271 if (err)
1272 return err;
1274 if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN &&
1275 request != TOG_VIEW_HELP) {
1276 err = view_init_hsplit(view, y);
1277 if (err)
1278 return err;
1281 view->focussed = 0;
1282 new_view->focussed = 1;
1283 new_view->mode = view->mode;
1284 new_view->nlines = request == TOG_VIEW_HELP ?
1285 view->lines : view->lines - y;
1287 if (view_is_parent_view(view) && request != TOG_VIEW_HELP) {
1288 view_transfer_size(new_view, view);
1289 err = view_close_child(view);
1290 if (err)
1291 return err;
1292 err = view_set_child(view, new_view);
1293 if (err)
1294 return err;
1295 view->focus_child = 1;
1296 } else
1297 *requested = new_view;
1299 return NULL;
1302 static void
1303 tog_resizeterm(void)
1305 int cols, lines;
1306 struct winsize size;
1308 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1309 cols = 80; /* Default */
1310 lines = 24;
1311 } else {
1312 cols = size.ws_col;
1313 lines = size.ws_row;
1315 resize_term(lines, cols);
1318 static const struct got_error *
1319 view_search_start(struct tog_view *view, int fast_refresh)
1321 const struct got_error *err = NULL;
1322 struct tog_view *v = view;
1323 char pattern[1024];
1324 int ret;
1326 if (view->search_started) {
1327 regfree(&view->regex);
1328 view->searching = 0;
1329 memset(&view->regmatch, 0, sizeof(view->regmatch));
1331 view->search_started = 0;
1333 if (view->nlines < 1)
1334 return NULL;
1336 if (view_is_hsplit_top(view))
1337 v = view->child;
1338 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1339 v = view->parent;
1341 if (tog_io.input_str != NULL) {
1342 if (strlcpy(pattern, tog_io.input_str, sizeof(pattern)) >=
1343 sizeof(pattern))
1344 return got_error(GOT_ERR_NO_SPACE);
1345 } else {
1346 mvwaddstr(v->window, v->nlines - 1, 0, "/");
1347 wclrtoeol(v->window);
1348 nodelay(v->window, FALSE); /* block for search term input */
1349 nocbreak();
1350 echo();
1351 ret = wgetnstr(v->window, pattern, sizeof(pattern));
1352 wrefresh(v->window);
1353 cbreak();
1354 noecho();
1355 nodelay(v->window, TRUE);
1356 if (!fast_refresh && !using_mock_io)
1357 halfdelay(10);
1358 if (ret == ERR)
1359 return NULL;
1362 if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1363 err = view->search_start(view);
1364 if (err) {
1365 regfree(&view->regex);
1366 return err;
1368 view->search_started = 1;
1369 view->searching = TOG_SEARCH_FORWARD;
1370 view->search_next_done = 0;
1371 view->search_next(view);
1374 return NULL;
1377 /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1378 static const struct got_error *
1379 switch_split(struct tog_view *view)
1381 const struct got_error *err = NULL;
1382 struct tog_view *v = NULL;
1384 if (view->parent)
1385 v = view->parent;
1386 else
1387 v = view;
1389 if (v->mode == TOG_VIEW_SPLIT_HRZN)
1390 v->mode = TOG_VIEW_SPLIT_VERT;
1391 else
1392 v->mode = TOG_VIEW_SPLIT_HRZN;
1394 if (!v->child)
1395 return NULL;
1396 else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1397 v->mode = TOG_VIEW_SPLIT_NONE;
1399 view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1400 if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1401 v->child->begin_y = v->child->resized_y;
1402 else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1403 v->child->begin_x = v->child->resized_x;
1406 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1407 v->ncols = COLS;
1408 v->child->ncols = COLS;
1409 v->child->nscrolled = LINES - v->child->nlines;
1411 err = view_init_hsplit(v, v->child->begin_y);
1412 if (err)
1413 return err;
1415 v->child->mode = v->mode;
1416 v->child->nlines = v->lines - v->child->begin_y;
1417 v->focus_child = 1;
1419 err = view_fullscreen(v);
1420 if (err)
1421 return err;
1422 err = view_splitscreen(v->child);
1423 if (err)
1424 return err;
1426 if (v->mode == TOG_VIEW_SPLIT_NONE)
1427 v->mode = TOG_VIEW_SPLIT_VERT;
1428 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1429 err = offset_selection_down(v);
1430 if (err)
1431 return err;
1432 err = offset_selection_down(v->child);
1433 if (err)
1434 return err;
1435 } else {
1436 offset_selection_up(v);
1437 offset_selection_up(v->child);
1439 if (v->resize)
1440 err = v->resize(v, 0);
1441 else if (v->child->resize)
1442 err = v->child->resize(v->child, 0);
1444 return err;
1448 * Strip trailing whitespace from str starting at byte *n;
1449 * if *n < 0, use strlen(str). Return new str length in *n.
1451 static void
1452 strip_trailing_ws(char *str, int *n)
1454 size_t x = *n;
1456 if (str == NULL || *str == '\0')
1457 return;
1459 if (x < 0)
1460 x = strlen(str);
1462 while (x-- > 0 && isspace((unsigned char)str[x]))
1463 str[x] = '\0';
1465 *n = x + 1;
1469 * Extract visible substring of line y from the curses screen
1470 * and strip trailing whitespace. If vline is set, overwrite
1471 * line[vline] with '|' because the ACS_VLINE character is
1472 * written out as 'x'. Write the line to file f.
1474 static const struct got_error *
1475 view_write_line(FILE *f, int y, int vline)
1477 char line[COLS * MB_LEN_MAX]; /* allow for multibyte chars */
1478 int r, w;
1480 r = mvwinnstr(curscr, y, 0, line, sizeof(line));
1481 if (r == ERR)
1482 return got_error_fmt(GOT_ERR_RANGE,
1483 "failed to extract line %d", y);
1486 * In some views, lines are padded with blanks to COLS width.
1487 * Strip them so we can diff without the -b flag when testing.
1489 strip_trailing_ws(line, &r);
1491 if (vline > 0)
1492 line[vline] = '|';
1494 w = fprintf(f, "%s\n", line);
1495 if (w != r + 1) /* \n */
1496 return got_ferror(f, GOT_ERR_IO);
1498 return NULL;
1502 * Capture the visible curses screen by writing each line to the
1503 * file at the path set via the TOG_SCR_DUMP environment variable.
1505 static const struct got_error *
1506 screendump(struct tog_view *view)
1508 const struct got_error *err;
1509 int i;
1511 err = got_opentemp_truncate(tog_io.sdump);
1512 if (err)
1513 return err;
1515 if ((view->child && view->child->begin_x) ||
1516 (view->parent && view->begin_x)) {
1517 int ncols = view->child ? view->ncols : view->parent->ncols;
1519 /* vertical splitscreen */
1520 for (i = 0; i < view->nlines; ++i) {
1521 err = view_write_line(tog_io.sdump, i, ncols - 1);
1522 if (err)
1523 goto done;
1525 } else {
1526 int hline = 0;
1528 /* fullscreen or horizontal splitscreen */
1529 if ((view->child && view->child->begin_y) ||
1530 (view->parent && view->begin_y)) /* hsplit */
1531 hline = view->child ?
1532 view->child->begin_y : view->begin_y;
1534 for (i = 0; i < view->lines; i++) {
1535 if (hline && i == hline - 1) {
1536 int c;
1538 /* ACS_HLINE writes out as 'q', overwrite it */
1539 for (c = 0; c < view->cols; ++c)
1540 fputc('-', tog_io.sdump);
1541 fputc('\n', tog_io.sdump);
1542 continue;
1545 err = view_write_line(tog_io.sdump, i, 0);
1546 if (err)
1547 goto done;
1551 done:
1552 return err;
1556 * Compute view->count from numeric input. Assign total to view->count and
1557 * return first non-numeric key entered.
1559 static int
1560 get_compound_key(struct tog_view *view, int c)
1562 struct tog_view *v = view;
1563 int x, n = 0;
1565 if (view_is_hsplit_top(view))
1566 v = view->child;
1567 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1568 v = view->parent;
1570 view->count = 0;
1571 cbreak(); /* block for input */
1572 nodelay(view->window, FALSE);
1573 wmove(v->window, v->nlines - 1, 0);
1574 wclrtoeol(v->window);
1575 waddch(v->window, ':');
1577 do {
1578 x = getcurx(v->window);
1579 if (x != ERR && x < view->ncols) {
1580 waddch(v->window, c);
1581 wrefresh(v->window);
1585 * Don't overflow. Max valid request should be the greatest
1586 * between the longest and total lines; cap at 10 million.
1588 if (n >= 9999999)
1589 n = 9999999;
1590 else
1591 n = n * 10 + (c - '0');
1592 } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1594 if (c == 'G' || c == 'g') { /* nG key map */
1595 view->gline = view->hiline = n;
1596 n = 0;
1597 c = 0;
1600 /* Massage excessive or inapplicable values at the input handler. */
1601 view->count = n;
1603 return c;
1606 static void
1607 action_report(struct tog_view *view)
1609 struct tog_view *v = view;
1611 if (view_is_hsplit_top(view))
1612 v = view->child;
1613 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1614 v = view->parent;
1616 wmove(v->window, v->nlines - 1, 0);
1617 wclrtoeol(v->window);
1618 wprintw(v->window, ":%s", view->action);
1619 wrefresh(v->window);
1622 * Clear action status report. Only clear in blame view
1623 * once annotating is complete, otherwise it's too fast.
1625 if (view->type == TOG_VIEW_BLAME) {
1626 if (view->state.blame.blame_complete)
1627 view->action = NULL;
1628 } else
1629 view->action = NULL;
1633 * Read the next line from the test script and assign
1634 * key instruction to *ch. If at EOF, set the *done flag.
1636 static const struct got_error *
1637 tog_read_script_key(FILE *script, struct tog_view *view, int *ch, int *done)
1639 const struct got_error *err = NULL;
1640 char *line = NULL;
1641 size_t linesz = 0;
1642 ssize_t n;
1645 if (view->count && --view->count) {
1646 *ch = view->ch;
1647 return NULL;
1648 } else
1649 *ch = -1;
1651 if ((n = getline(&line, &linesz, script)) == -1) {
1652 if (feof(script)) {
1653 *done = 1;
1654 goto done;
1655 } else {
1656 err = got_ferror(script, GOT_ERR_IO);
1657 goto done;
1661 if (strncasecmp(line, "WAIT_FOR_UI", 11) == 0)
1662 tog_io.wait_for_ui = 1;
1663 else if (strncasecmp(line, "KEY_ENTER", 9) == 0)
1664 *ch = KEY_ENTER;
1665 else if (strncasecmp(line, "KEY_RIGHT", 9) == 0)
1666 *ch = KEY_RIGHT;
1667 else if (strncasecmp(line, "KEY_LEFT", 8) == 0)
1668 *ch = KEY_LEFT;
1669 else if (strncasecmp(line, "KEY_DOWN", 8) == 0)
1670 *ch = KEY_DOWN;
1671 else if (strncasecmp(line, "KEY_UP", 6) == 0)
1672 *ch = KEY_UP;
1673 else if (strncasecmp(line, "TAB", 3) == 0)
1674 *ch = '\t';
1675 else if (strncasecmp(line, "SCREENDUMP", 10) == 0)
1676 *ch = TOG_KEY_SCRDUMP;
1677 else if (isdigit((unsigned char)*line)) {
1678 char *t = line;
1680 while (isdigit((unsigned char)*t))
1681 ++t;
1682 view->ch = *ch = *t;
1683 *t = '\0';
1684 /* ignore error, view->count is 0 if instruction is invalid */
1685 view->count = strtonum(line, 0, INT_MAX, NULL);
1686 } else {
1687 *ch = *line;
1688 if (n > 2 && (*ch == '/' || *ch == '&')) {
1689 /* skip leading keymap and trim trailing newline */
1690 tog_io.input_str = strndup(line + 1, n - 2);
1691 if (tog_io.input_str == NULL) {
1692 err = got_error_from_errno("strndup");
1693 goto done;
1698 done:
1699 free(line);
1700 return err;
1703 static const struct got_error *
1704 view_input(struct tog_view **new, int *done, struct tog_view *view,
1705 struct tog_view_list_head *views, int fast_refresh)
1707 const struct got_error *err = NULL;
1708 struct tog_view *v;
1709 int ch, errcode;
1711 *new = NULL;
1713 if (view->action)
1714 action_report(view);
1716 /* Clear "no matches" indicator. */
1717 if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1718 view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1719 view->search_next_done = TOG_SEARCH_HAVE_MORE;
1720 view->count = 0;
1723 if (view->searching && !view->search_next_done) {
1724 errcode = pthread_mutex_unlock(&tog_mutex);
1725 if (errcode)
1726 return got_error_set_errno(errcode,
1727 "pthread_mutex_unlock");
1728 sched_yield();
1729 errcode = pthread_mutex_lock(&tog_mutex);
1730 if (errcode)
1731 return got_error_set_errno(errcode,
1732 "pthread_mutex_lock");
1733 view->search_next(view);
1734 return NULL;
1737 /* Allow threads to make progress while we are waiting for input. */
1738 errcode = pthread_mutex_unlock(&tog_mutex);
1739 if (errcode)
1740 return got_error_set_errno(errcode, "pthread_mutex_unlock");
1742 if (using_mock_io) {
1743 err = tog_read_script_key(tog_io.f, view, &ch, done);
1744 if (err) {
1745 errcode = pthread_mutex_lock(&tog_mutex);
1746 return err;
1748 } else if (view->count && --view->count) {
1749 cbreak();
1750 nodelay(view->window, TRUE);
1751 ch = wgetch(view->window);
1752 /* let C-g or backspace abort unfinished count */
1753 if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1754 view->count = 0;
1755 else
1756 ch = view->ch;
1757 } else {
1758 ch = wgetch(view->window);
1759 if (ch >= '1' && ch <= '9')
1760 view->ch = ch = get_compound_key(view, ch);
1762 if (view->hiline && ch != ERR && ch != 0)
1763 view->hiline = 0; /* key pressed, clear line highlight */
1764 nodelay(view->window, TRUE);
1765 errcode = pthread_mutex_lock(&tog_mutex);
1766 if (errcode)
1767 return got_error_set_errno(errcode, "pthread_mutex_lock");
1769 if (tog_sigwinch_received || tog_sigcont_received) {
1770 tog_resizeterm();
1771 tog_sigwinch_received = 0;
1772 tog_sigcont_received = 0;
1773 TAILQ_FOREACH(v, views, entry) {
1774 err = view_resize(v);
1775 if (err)
1776 return err;
1777 err = v->input(new, v, KEY_RESIZE);
1778 if (err)
1779 return err;
1780 if (v->child) {
1781 err = view_resize(v->child);
1782 if (err)
1783 return err;
1784 err = v->child->input(new, v->child,
1785 KEY_RESIZE);
1786 if (err)
1787 return err;
1788 if (v->child->resized_x || v->child->resized_y) {
1789 err = view_resize_split(v, 0);
1790 if (err)
1791 return err;
1797 switch (ch) {
1798 case '?':
1799 case 'H':
1800 case KEY_F(1):
1801 if (view->type == TOG_VIEW_HELP)
1802 err = view->reset(view);
1803 else
1804 err = view_request_new(new, view, TOG_VIEW_HELP);
1805 break;
1806 case '\t':
1807 view->count = 0;
1808 if (view->child) {
1809 view->focussed = 0;
1810 view->child->focussed = 1;
1811 view->focus_child = 1;
1812 } else if (view->parent) {
1813 view->focussed = 0;
1814 view->parent->focussed = 1;
1815 view->parent->focus_child = 0;
1816 if (!view_is_splitscreen(view)) {
1817 if (view->parent->resize) {
1818 err = view->parent->resize(view->parent,
1819 0);
1820 if (err)
1821 return err;
1823 offset_selection_up(view->parent);
1824 err = view_fullscreen(view->parent);
1825 if (err)
1826 return err;
1829 break;
1830 case 'q':
1831 if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1832 if (view->parent->resize) {
1833 /* might need more commits to fill fullscreen */
1834 err = view->parent->resize(view->parent, 0);
1835 if (err)
1836 break;
1838 offset_selection_up(view->parent);
1840 err = view->input(new, view, ch);
1841 view->dying = 1;
1842 break;
1843 case 'Q':
1844 *done = 1;
1845 break;
1846 case 'F':
1847 view->count = 0;
1848 if (view_is_parent_view(view)) {
1849 if (view->child == NULL)
1850 break;
1851 if (view_is_splitscreen(view->child)) {
1852 view->focussed = 0;
1853 view->child->focussed = 1;
1854 err = view_fullscreen(view->child);
1855 } else {
1856 err = view_splitscreen(view->child);
1857 if (!err)
1858 err = view_resize_split(view, 0);
1860 if (err)
1861 break;
1862 err = view->child->input(new, view->child,
1863 KEY_RESIZE);
1864 } else {
1865 if (view_is_splitscreen(view)) {
1866 view->parent->focussed = 0;
1867 view->focussed = 1;
1868 err = view_fullscreen(view);
1869 } else {
1870 err = view_splitscreen(view);
1871 if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1872 err = view_resize(view->parent);
1873 if (!err)
1874 err = view_resize_split(view, 0);
1876 if (err)
1877 break;
1878 err = view->input(new, view, KEY_RESIZE);
1880 if (err)
1881 break;
1882 if (view->resize) {
1883 err = view->resize(view, 0);
1884 if (err)
1885 break;
1887 if (view->parent) {
1888 if (view->parent->resize) {
1889 err = view->parent->resize(view->parent, 0);
1890 if (err != NULL)
1891 break;
1893 err = offset_selection_down(view->parent);
1894 if (err != NULL)
1895 break;
1897 err = offset_selection_down(view);
1898 break;
1899 case 'S':
1900 view->count = 0;
1901 err = switch_split(view);
1902 break;
1903 case '-':
1904 err = view_resize_split(view, -1);
1905 break;
1906 case '+':
1907 err = view_resize_split(view, 1);
1908 break;
1909 case KEY_RESIZE:
1910 break;
1911 case '/':
1912 view->count = 0;
1913 if (view->search_start)
1914 view_search_start(view, fast_refresh);
1915 else
1916 err = view->input(new, view, ch);
1917 break;
1918 case 'N':
1919 case 'n':
1920 if (view->search_started && view->search_next) {
1921 view->searching = (ch == 'n' ?
1922 TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1923 view->search_next_done = 0;
1924 view->search_next(view);
1925 } else
1926 err = view->input(new, view, ch);
1927 break;
1928 case 'A':
1929 if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS) {
1930 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1931 view->action = "Patience diff algorithm";
1932 } else {
1933 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1934 view->action = "Myers diff algorithm";
1936 TAILQ_FOREACH(v, views, entry) {
1937 if (v->reset) {
1938 err = v->reset(v);
1939 if (err)
1940 return err;
1942 if (v->child && v->child->reset) {
1943 err = v->child->reset(v->child);
1944 if (err)
1945 return err;
1948 break;
1949 case TOG_KEY_SCRDUMP:
1950 err = screendump(view);
1951 break;
1952 default:
1953 err = view->input(new, view, ch);
1954 break;
1957 return err;
1960 static int
1961 view_needs_focus_indication(struct tog_view *view)
1963 if (view_is_parent_view(view)) {
1964 if (view->child == NULL || view->child->focussed)
1965 return 0;
1966 if (!view_is_splitscreen(view->child))
1967 return 0;
1968 } else if (!view_is_splitscreen(view))
1969 return 0;
1971 return view->focussed;
1974 static const struct got_error *
1975 tog_io_close(void)
1977 const struct got_error *err = NULL;
1979 if (tog_io.cin && fclose(tog_io.cin) == EOF)
1980 err = got_ferror(tog_io.cin, GOT_ERR_IO);
1981 if (tog_io.cout && fclose(tog_io.cout) == EOF && err == NULL)
1982 err = got_ferror(tog_io.cout, GOT_ERR_IO);
1983 if (tog_io.f && fclose(tog_io.f) == EOF && err == NULL)
1984 err = got_ferror(tog_io.f, GOT_ERR_IO);
1985 if (tog_io.sdump && fclose(tog_io.sdump) == EOF && err == NULL)
1986 err = got_ferror(tog_io.sdump, GOT_ERR_IO);
1987 if (tog_io.input_str != NULL)
1988 free(tog_io.input_str);
1990 return err;
1993 static const struct got_error *
1994 view_loop(struct tog_view *view)
1996 const struct got_error *err = NULL;
1997 struct tog_view_list_head views;
1998 struct tog_view *new_view;
1999 char *mode;
2000 int fast_refresh = 10;
2001 int done = 0, errcode;
2003 mode = getenv("TOG_VIEW_SPLIT_MODE");
2004 if (!mode || !(*mode == 'h' || *mode == 'H'))
2005 view->mode = TOG_VIEW_SPLIT_VERT;
2006 else
2007 view->mode = TOG_VIEW_SPLIT_HRZN;
2009 errcode = pthread_mutex_lock(&tog_mutex);
2010 if (errcode)
2011 return got_error_set_errno(errcode, "pthread_mutex_lock");
2013 TAILQ_INIT(&views);
2014 TAILQ_INSERT_HEAD(&views, view, entry);
2016 view->focussed = 1;
2017 err = view->show(view);
2018 if (err)
2019 return err;
2020 update_panels();
2021 doupdate();
2022 while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
2023 !tog_fatal_signal_received()) {
2024 /* Refresh fast during initialization, then become slower. */
2025 if (fast_refresh && --fast_refresh == 0 && !using_mock_io)
2026 halfdelay(10); /* switch to once per second */
2028 err = view_input(&new_view, &done, view, &views, fast_refresh);
2029 if (err)
2030 break;
2032 if (view->dying && view == TAILQ_FIRST(&views) &&
2033 TAILQ_NEXT(view, entry) == NULL)
2034 done = 1;
2035 if (done) {
2036 struct tog_view *v;
2039 * When we quit, scroll the screen up a single line
2040 * so we don't lose any information.
2042 TAILQ_FOREACH(v, &views, entry) {
2043 wmove(v->window, 0, 0);
2044 wdeleteln(v->window);
2045 wnoutrefresh(v->window);
2046 if (v->child && !view_is_fullscreen(v)) {
2047 wmove(v->child->window, 0, 0);
2048 wdeleteln(v->child->window);
2049 wnoutrefresh(v->child->window);
2052 doupdate();
2055 if (view->dying) {
2056 struct tog_view *v, *prev = NULL;
2058 if (view_is_parent_view(view))
2059 prev = TAILQ_PREV(view, tog_view_list_head,
2060 entry);
2061 else if (view->parent)
2062 prev = view->parent;
2064 if (view->parent) {
2065 view->parent->child = NULL;
2066 view->parent->focus_child = 0;
2067 /* Restore fullscreen line height. */
2068 view->parent->nlines = view->parent->lines;
2069 err = view_resize(view->parent);
2070 if (err)
2071 break;
2072 /* Make resized splits persist. */
2073 view_transfer_size(view->parent, view);
2074 } else
2075 TAILQ_REMOVE(&views, view, entry);
2077 err = view_close(view);
2078 if (err)
2079 goto done;
2081 view = NULL;
2082 TAILQ_FOREACH(v, &views, entry) {
2083 if (v->focussed)
2084 break;
2086 if (view == NULL && new_view == NULL) {
2087 /* No view has focus. Try to pick one. */
2088 if (prev)
2089 view = prev;
2090 else if (!TAILQ_EMPTY(&views)) {
2091 view = TAILQ_LAST(&views,
2092 tog_view_list_head);
2094 if (view) {
2095 if (view->focus_child) {
2096 view->child->focussed = 1;
2097 view = view->child;
2098 } else
2099 view->focussed = 1;
2103 if (new_view) {
2104 struct tog_view *v, *t;
2105 /* Only allow one parent view per type. */
2106 TAILQ_FOREACH_SAFE(v, &views, entry, t) {
2107 if (v->type != new_view->type)
2108 continue;
2109 TAILQ_REMOVE(&views, v, entry);
2110 err = view_close(v);
2111 if (err)
2112 goto done;
2113 break;
2115 TAILQ_INSERT_TAIL(&views, new_view, entry);
2116 view = new_view;
2118 if (view && !done) {
2119 if (view_is_parent_view(view)) {
2120 if (view->child && view->child->focussed)
2121 view = view->child;
2122 } else {
2123 if (view->parent && view->parent->focussed)
2124 view = view->parent;
2126 show_panel(view->panel);
2127 if (view->child && view_is_splitscreen(view->child))
2128 show_panel(view->child->panel);
2129 if (view->parent && view_is_splitscreen(view)) {
2130 err = view->parent->show(view->parent);
2131 if (err)
2132 goto done;
2134 err = view->show(view);
2135 if (err)
2136 goto done;
2137 if (view->child) {
2138 err = view->child->show(view->child);
2139 if (err)
2140 goto done;
2142 update_panels();
2143 doupdate();
2146 done:
2147 while (!TAILQ_EMPTY(&views)) {
2148 const struct got_error *close_err;
2149 view = TAILQ_FIRST(&views);
2150 TAILQ_REMOVE(&views, view, entry);
2151 close_err = view_close(view);
2152 if (close_err && err == NULL)
2153 err = close_err;
2156 errcode = pthread_mutex_unlock(&tog_mutex);
2157 if (errcode && err == NULL)
2158 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
2160 return err;
2163 __dead static void
2164 usage_log(void)
2166 endwin();
2167 fprintf(stderr,
2168 "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
2169 getprogname());
2170 exit(1);
2173 /* Create newly allocated wide-character string equivalent to a byte string. */
2174 static const struct got_error *
2175 mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
2177 char *vis = NULL;
2178 const struct got_error *err = NULL;
2180 *ws = NULL;
2181 *wlen = mbstowcs(NULL, s, 0);
2182 if (*wlen == (size_t)-1) {
2183 int vislen;
2184 if (errno != EILSEQ)
2185 return got_error_from_errno("mbstowcs");
2187 /* byte string invalid in current encoding; try to "fix" it */
2188 err = got_mbsavis(&vis, &vislen, s);
2189 if (err)
2190 return err;
2191 *wlen = mbstowcs(NULL, vis, 0);
2192 if (*wlen == (size_t)-1) {
2193 err = got_error_from_errno("mbstowcs"); /* give up */
2194 goto done;
2198 *ws = calloc(*wlen + 1, sizeof(**ws));
2199 if (*ws == NULL) {
2200 err = got_error_from_errno("calloc");
2201 goto done;
2204 if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
2205 err = got_error_from_errno("mbstowcs");
2206 done:
2207 free(vis);
2208 if (err) {
2209 free(*ws);
2210 *ws = NULL;
2211 *wlen = 0;
2213 return err;
2216 static const struct got_error *
2217 expand_tab(char **ptr, const char *src)
2219 char *dst;
2220 size_t len, n, idx = 0, sz = 0;
2222 *ptr = NULL;
2223 n = len = strlen(src);
2224 dst = malloc(n + 1);
2225 if (dst == NULL)
2226 return got_error_from_errno("malloc");
2228 while (idx < len && src[idx]) {
2229 const char c = src[idx];
2231 if (c == '\t') {
2232 size_t nb = TABSIZE - sz % TABSIZE;
2233 char *p;
2235 p = realloc(dst, n + nb);
2236 if (p == NULL) {
2237 free(dst);
2238 return got_error_from_errno("realloc");
2241 dst = p;
2242 n += nb;
2243 memset(dst + sz, ' ', nb);
2244 sz += nb;
2245 } else
2246 dst[sz++] = src[idx];
2247 ++idx;
2250 dst[sz] = '\0';
2251 *ptr = dst;
2252 return NULL;
2256 * Advance at most n columns from wline starting at offset off.
2257 * Return the index to the first character after the span operation.
2258 * Return the combined column width of all spanned wide characters in
2259 * *rcol.
2261 static int
2262 span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
2264 int width, i, cols = 0;
2266 if (n == 0) {
2267 *rcol = cols;
2268 return off;
2271 for (i = off; wline[i] != L'\0'; ++i) {
2272 if (wline[i] == L'\t')
2273 width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
2274 else
2275 width = wcwidth(wline[i]);
2277 if (width == -1) {
2278 width = 1;
2279 wline[i] = L'.';
2282 if (cols + width > n)
2283 break;
2284 cols += width;
2287 *rcol = cols;
2288 return i;
2292 * Format a line for display, ensuring that it won't overflow a width limit.
2293 * With scrolling, the width returned refers to the scrolled version of the
2294 * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
2296 static const struct got_error *
2297 format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
2298 const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
2300 const struct got_error *err = NULL;
2301 int cols;
2302 wchar_t *wline = NULL;
2303 char *exstr = NULL;
2304 size_t wlen;
2305 int i, scrollx;
2307 *wlinep = NULL;
2308 *widthp = 0;
2310 if (expand) {
2311 err = expand_tab(&exstr, line);
2312 if (err)
2313 return err;
2316 err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2317 free(exstr);
2318 if (err)
2319 return err;
2321 scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2323 if (wlen > 0 && wline[wlen - 1] == L'\n') {
2324 wline[wlen - 1] = L'\0';
2325 wlen--;
2327 if (wlen > 0 && wline[wlen - 1] == L'\r') {
2328 wline[wlen - 1] = L'\0';
2329 wlen--;
2332 i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2333 wline[i] = L'\0';
2335 if (widthp)
2336 *widthp = cols;
2337 if (scrollxp)
2338 *scrollxp = scrollx;
2339 if (err)
2340 free(wline);
2341 else
2342 *wlinep = wline;
2343 return err;
2346 static const struct got_error*
2347 build_refs_str(char **refs_str, struct got_reflist_head *refs,
2348 struct got_object_id *id, struct got_repository *repo)
2350 static const struct got_error *err = NULL;
2351 struct got_reflist_entry *re;
2352 char *s;
2353 const char *name;
2355 *refs_str = NULL;
2357 if (refs == NULL)
2358 return NULL;
2360 TAILQ_FOREACH(re, refs, entry) {
2361 struct got_tag_object *tag = NULL;
2362 struct got_object_id *ref_id;
2363 int cmp;
2365 name = got_ref_get_name(re->ref);
2366 if (strcmp(name, GOT_REF_HEAD) == 0)
2367 continue;
2368 if (strncmp(name, "refs/", 5) == 0)
2369 name += 5;
2370 if (strncmp(name, "got/", 4) == 0)
2371 continue;
2372 if (strncmp(name, "heads/", 6) == 0)
2373 name += 6;
2374 if (strncmp(name, "remotes/", 8) == 0) {
2375 name += 8;
2376 s = strstr(name, "/" GOT_REF_HEAD);
2377 if (s != NULL && strcmp(s, "/" GOT_REF_HEAD) == 0)
2378 continue;
2380 err = got_ref_resolve(&ref_id, repo, re->ref);
2381 if (err)
2382 break;
2383 if (strncmp(name, "tags/", 5) == 0) {
2384 err = got_object_open_as_tag(&tag, repo, ref_id);
2385 if (err) {
2386 if (err->code != GOT_ERR_OBJ_TYPE) {
2387 free(ref_id);
2388 break;
2390 /* Ref points at something other than a tag. */
2391 err = NULL;
2392 tag = NULL;
2395 cmp = got_object_id_cmp(tag ?
2396 got_object_tag_get_object_id(tag) : ref_id, id);
2397 free(ref_id);
2398 if (tag)
2399 got_object_tag_close(tag);
2400 if (cmp != 0)
2401 continue;
2402 s = *refs_str;
2403 if (asprintf(refs_str, "%s%s%s", s ? s : "",
2404 s ? ", " : "", name) == -1) {
2405 err = got_error_from_errno("asprintf");
2406 free(s);
2407 *refs_str = NULL;
2408 break;
2410 free(s);
2413 return err;
2416 static const struct got_error *
2417 format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2418 int col_tab_align)
2420 char *smallerthan;
2422 smallerthan = strchr(author, '<');
2423 if (smallerthan && smallerthan[1] != '\0')
2424 author = smallerthan + 1;
2425 author[strcspn(author, "@>")] = '\0';
2426 return format_line(wauthor, author_width, NULL, author, 0, limit,
2427 col_tab_align, 0);
2430 static const struct got_error *
2431 draw_commit(struct tog_view *view, struct commit_queue_entry *entry,
2432 const size_t date_display_cols, int author_display_cols)
2434 struct tog_log_view_state *s = &view->state.log;
2435 const struct got_error *err = NULL;
2436 struct got_commit_object *commit = entry->commit;
2437 struct got_object_id *id = entry->id;
2438 char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2439 char *refs_str = NULL;
2440 char *logmsg0 = NULL, *logmsg = NULL;
2441 char *author = NULL;
2442 wchar_t *wrefstr = NULL, *wlogmsg = NULL, *wauthor = NULL;
2443 int author_width, refstr_width, logmsg_width;
2444 char *newline, *line = NULL;
2445 int col, limit, scrollx, logmsg_x;
2446 const int avail = view->ncols, marker_column = author_display_cols + 1;
2447 struct tm tm;
2448 time_t committer_time;
2449 struct tog_color *tc;
2450 struct got_reflist_head *refs;
2452 if (tog_base_commit.id != NULL && tog_base_commit.idx == -1 &&
2453 got_object_id_cmp(id, tog_base_commit.id) == 0)
2454 tog_base_commit.idx = entry->idx;
2455 if (tog_io.wait_for_ui && s->thread_args.need_commit_marker) {
2456 int rc;
2458 rc = pthread_cond_wait(&s->thread_args.log_loaded, &tog_mutex);
2459 if (rc)
2460 return got_error_set_errno(rc, "pthread_cond_wait");
2463 committer_time = got_object_commit_get_committer_time(commit);
2464 if (gmtime_r(&committer_time, &tm) == NULL)
2465 return got_error_from_errno("gmtime_r");
2466 if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2467 return got_error(GOT_ERR_NO_SPACE);
2469 if (avail <= date_display_cols)
2470 limit = MIN(sizeof(datebuf) - 1, avail);
2471 else
2472 limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2473 tc = get_color(&s->colors, TOG_COLOR_DATE);
2474 if (tc)
2475 wattr_on(view->window,
2476 COLOR_PAIR(tc->colorpair), NULL);
2477 waddnstr(view->window, datebuf, limit);
2478 if (tc)
2479 wattr_off(view->window,
2480 COLOR_PAIR(tc->colorpair), NULL);
2481 col = limit;
2482 if (col > avail)
2483 goto done;
2485 if (avail >= 120) {
2486 char *id_str;
2487 err = got_object_id_str(&id_str, id);
2488 if (err)
2489 goto done;
2490 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2491 if (tc)
2492 wattr_on(view->window,
2493 COLOR_PAIR(tc->colorpair), NULL);
2494 wprintw(view->window, "%.8s ", id_str);
2495 if (tc)
2496 wattr_off(view->window,
2497 COLOR_PAIR(tc->colorpair), NULL);
2498 free(id_str);
2499 col += 9;
2500 if (col > avail)
2501 goto done;
2504 if (s->use_committer)
2505 author = strdup(got_object_commit_get_committer(commit));
2506 else
2507 author = strdup(got_object_commit_get_author(commit));
2508 if (author == NULL) {
2509 err = got_error_from_errno("strdup");
2510 goto done;
2512 err = format_author(&wauthor, &author_width, author, avail - col, col);
2513 if (err)
2514 goto done;
2515 tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2516 if (tc)
2517 wattr_on(view->window,
2518 COLOR_PAIR(tc->colorpair), NULL);
2519 waddwstr(view->window, wauthor);
2520 col += author_width;
2521 while (col < avail && author_width < author_display_cols + 2) {
2522 if (tog_base_commit.marker != GOT_WORKTREE_STATE_UNKNOWN &&
2523 author_width == marker_column &&
2524 entry->idx == tog_base_commit.idx && !s->limit_view) {
2525 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2526 if (tc)
2527 wattr_on(view->window,
2528 COLOR_PAIR(tc->colorpair), NULL);
2529 waddch(view->window, tog_base_commit.marker);
2530 if (tc)
2531 wattr_off(view->window,
2532 COLOR_PAIR(tc->colorpair), NULL);
2533 } else
2534 waddch(view->window, ' ');
2535 col++;
2536 author_width++;
2538 if (tc)
2539 wattr_off(view->window,
2540 COLOR_PAIR(tc->colorpair), NULL);
2541 if (col > avail)
2542 goto done;
2544 err = got_object_commit_get_logmsg(&logmsg0, commit);
2545 if (err)
2546 goto done;
2547 logmsg = logmsg0;
2548 while (*logmsg == '\n')
2549 logmsg++;
2550 newline = strchr(logmsg, '\n');
2551 if (newline)
2552 *newline = '\0';
2554 limit = avail - col;
2555 if (view->child && !view_is_hsplit_top(view) && limit > 0)
2556 limit--; /* for the border */
2558 /* Prepend reference labels to log message if possible .*/
2559 refs = got_reflist_object_id_map_lookup(tog_refs_idmap, id);
2560 err = build_refs_str(&refs_str, refs, id, s->repo);
2561 if (err)
2562 goto done;
2563 if (refs_str) {
2564 char *rs;
2566 if (asprintf(&rs, "[%s]", refs_str) == -1) {
2567 err = got_error_from_errno("asprintf");
2568 goto done;
2570 err = format_line(&wrefstr, &refstr_width,
2571 &scrollx, rs, view->x, limit, col, 1);
2572 free(rs);
2573 if (err)
2574 goto done;
2575 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2576 if (tc)
2577 wattr_on(view->window,
2578 COLOR_PAIR(tc->colorpair), NULL);
2579 waddwstr(view->window, &wrefstr[scrollx]);
2580 if (tc)
2581 wattr_off(view->window,
2582 COLOR_PAIR(tc->colorpair), NULL);
2583 col += MAX(refstr_width, 0);
2584 if (col > avail)
2585 goto done;
2587 if (col < avail) {
2588 waddch(view->window, ' ');
2589 col++;
2592 if (refstr_width > 0)
2593 logmsg_x = 0;
2594 else {
2595 int unscrolled_refstr_width;
2596 size_t len = wcslen(wrefstr);
2599 * No need to check for -1 return value here since
2600 * unprintables have been replaced by span_wline().
2602 unscrolled_refstr_width = wcswidth(wrefstr, len);
2603 unscrolled_refstr_width += 1; /* trailing space */
2604 logmsg_x = view->x - unscrolled_refstr_width;
2607 limit = avail - col;
2608 if (view->child && !view_is_hsplit_top(view) && limit > 0)
2609 limit--; /* for the border */
2610 } else
2611 logmsg_x = view->x;
2613 err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, logmsg_x,
2614 limit, col, 1);
2615 if (err)
2616 goto done;
2617 waddwstr(view->window, &wlogmsg[scrollx]);
2618 col += MAX(logmsg_width, 0);
2619 while (col < avail) {
2620 waddch(view->window, ' ');
2621 col++;
2623 done:
2624 free(logmsg0);
2625 free(wlogmsg);
2626 free(wrefstr);
2627 free(refs_str);
2628 free(author);
2629 free(wauthor);
2630 free(line);
2631 return err;
2634 static struct commit_queue_entry *
2635 alloc_commit_queue_entry(struct got_commit_object *commit,
2636 struct got_object_id *id)
2638 struct commit_queue_entry *entry;
2639 struct got_object_id *dup;
2641 entry = calloc(1, sizeof(*entry));
2642 if (entry == NULL)
2643 return NULL;
2645 dup = got_object_id_dup(id);
2646 if (dup == NULL) {
2647 free(entry);
2648 return NULL;
2651 entry->id = dup;
2652 entry->commit = commit;
2653 return entry;
2656 static void
2657 pop_commit(struct commit_queue *commits)
2659 struct commit_queue_entry *entry;
2661 entry = TAILQ_FIRST(&commits->head);
2662 TAILQ_REMOVE(&commits->head, entry, entry);
2663 got_object_commit_close(entry->commit);
2664 commits->ncommits--;
2665 free(entry->id);
2666 free(entry);
2669 static void
2670 free_commits(struct commit_queue *commits)
2672 while (!TAILQ_EMPTY(&commits->head))
2673 pop_commit(commits);
2676 static const struct got_error *
2677 match_commit(int *have_match, struct got_object_id *id,
2678 struct got_commit_object *commit, regex_t *regex)
2680 const struct got_error *err = NULL;
2681 regmatch_t regmatch;
2682 char *id_str = NULL, *logmsg = NULL;
2684 *have_match = 0;
2686 err = got_object_id_str(&id_str, id);
2687 if (err)
2688 return err;
2690 err = got_object_commit_get_logmsg(&logmsg, commit);
2691 if (err)
2692 goto done;
2694 if (regexec(regex, got_object_commit_get_author(commit), 1,
2695 &regmatch, 0) == 0 ||
2696 regexec(regex, got_object_commit_get_committer(commit), 1,
2697 &regmatch, 0) == 0 ||
2698 regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2699 regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2700 *have_match = 1;
2701 done:
2702 free(id_str);
2703 free(logmsg);
2704 return err;
2707 static const struct got_error *
2708 queue_commits(struct tog_log_thread_args *a)
2710 const struct got_error *err = NULL;
2713 * We keep all commits open throughout the lifetime of the log
2714 * view in order to avoid having to re-fetch commits from disk
2715 * while updating the display.
2717 do {
2718 struct got_object_id id;
2719 struct got_commit_object *commit;
2720 struct commit_queue_entry *entry;
2721 int limit_match = 0;
2722 int errcode;
2724 err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2725 NULL, NULL);
2726 if (err)
2727 break;
2729 err = got_object_open_as_commit(&commit, a->repo, &id);
2730 if (err)
2731 break;
2732 entry = alloc_commit_queue_entry(commit, &id);
2733 if (entry == NULL) {
2734 err = got_error_from_errno("alloc_commit_queue_entry");
2735 break;
2738 errcode = pthread_mutex_lock(&tog_mutex);
2739 if (errcode) {
2740 err = got_error_set_errno(errcode,
2741 "pthread_mutex_lock");
2742 break;
2745 entry->idx = a->real_commits->ncommits;
2746 TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2747 a->real_commits->ncommits++;
2749 if (*a->limiting) {
2750 err = match_commit(&limit_match, &id, commit,
2751 a->limit_regex);
2752 if (err)
2753 break;
2755 if (limit_match) {
2756 struct commit_queue_entry *matched;
2758 matched = alloc_commit_queue_entry(
2759 entry->commit, entry->id);
2760 if (matched == NULL) {
2761 err = got_error_from_errno(
2762 "alloc_commit_queue_entry");
2763 break;
2765 matched->commit = entry->commit;
2766 got_object_commit_retain(entry->commit);
2768 matched->idx = a->limit_commits->ncommits;
2769 TAILQ_INSERT_TAIL(&a->limit_commits->head,
2770 matched, entry);
2771 a->limit_commits->ncommits++;
2775 * This is how we signal log_thread() that we
2776 * have found a match, and that it should be
2777 * counted as a new entry for the view.
2779 a->limit_match = limit_match;
2782 if (*a->searching == TOG_SEARCH_FORWARD &&
2783 !*a->search_next_done) {
2784 int have_match;
2785 err = match_commit(&have_match, &id, commit, a->regex);
2786 if (err)
2787 break;
2789 if (*a->limiting) {
2790 if (limit_match && have_match)
2791 *a->search_next_done =
2792 TOG_SEARCH_HAVE_MORE;
2793 } else if (have_match)
2794 *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2797 errcode = pthread_mutex_unlock(&tog_mutex);
2798 if (errcode && err == NULL)
2799 err = got_error_set_errno(errcode,
2800 "pthread_mutex_unlock");
2801 if (err)
2802 break;
2803 } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2805 return err;
2808 static void
2809 select_commit(struct tog_log_view_state *s)
2811 struct commit_queue_entry *entry;
2812 int ncommits = 0;
2814 entry = s->first_displayed_entry;
2815 while (entry) {
2816 if (ncommits == s->selected) {
2817 s->selected_entry = entry;
2818 break;
2820 entry = TAILQ_NEXT(entry, entry);
2821 ncommits++;
2825 static const struct got_error *
2826 draw_commits(struct tog_view *view)
2828 const struct got_error *err = NULL;
2829 struct tog_log_view_state *s = &view->state.log;
2830 struct commit_queue_entry *entry = s->selected_entry;
2831 int limit = view->nlines;
2832 int width;
2833 int ncommits, author_cols = 4, refstr_cols;
2834 char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2835 char *refs_str = NULL;
2836 wchar_t *wline;
2837 struct tog_color *tc;
2838 static const size_t date_display_cols = 12;
2839 struct got_reflist_head *refs;
2841 if (view_is_hsplit_top(view))
2842 --limit; /* account for border */
2844 if (s->selected_entry &&
2845 !(view->searching && view->search_next_done == 0)) {
2846 err = got_object_id_str(&id_str, s->selected_entry->id);
2847 if (err)
2848 return err;
2849 refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2850 s->selected_entry->id);
2851 err = build_refs_str(&refs_str, refs, s->selected_entry->id,
2852 s->repo);
2853 if (err)
2854 goto done;
2857 if (s->thread_args.commits_needed == 0 && !using_mock_io)
2858 halfdelay(10); /* disable fast refresh */
2860 if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2861 if (asprintf(&ncommits_str, " [%d/%d] %s",
2862 entry ? entry->idx + 1 : 0, s->commits->ncommits,
2863 (view->searching && !view->search_next_done) ?
2864 "searching..." : "loading...") == -1) {
2865 err = got_error_from_errno("asprintf");
2866 goto done;
2868 } else {
2869 const char *search_str = NULL;
2870 const char *limit_str = NULL;
2872 if (view->searching) {
2873 if (view->search_next_done == TOG_SEARCH_NO_MORE)
2874 search_str = "no more matches";
2875 else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2876 search_str = "no matches found";
2877 else if (!view->search_next_done)
2878 search_str = "searching...";
2881 if (s->limit_view && s->commits->ncommits == 0)
2882 limit_str = "no matches found";
2884 if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2885 entry ? entry->idx + 1 : 0, s->commits->ncommits,
2886 search_str ? search_str : (refs_str ? refs_str : ""),
2887 limit_str ? limit_str : "") == -1) {
2888 err = got_error_from_errno("asprintf");
2889 goto done;
2893 free(refs_str);
2894 refs_str = NULL;
2896 if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2897 if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2898 "........................................",
2899 s->in_repo_path, ncommits_str) == -1) {
2900 err = got_error_from_errno("asprintf");
2901 header = NULL;
2902 goto done;
2904 } else if (asprintf(&header, "commit %s%s",
2905 id_str ? id_str : "........................................",
2906 ncommits_str) == -1) {
2907 err = got_error_from_errno("asprintf");
2908 header = NULL;
2909 goto done;
2911 err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2912 if (err)
2913 goto done;
2915 werase(view->window);
2917 if (view_needs_focus_indication(view))
2918 wstandout(view->window);
2919 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2920 if (tc)
2921 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2922 waddwstr(view->window, wline);
2923 while (width < view->ncols) {
2924 waddch(view->window, ' ');
2925 width++;
2927 if (tc)
2928 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2929 if (view_needs_focus_indication(view))
2930 wstandend(view->window);
2931 free(wline);
2932 if (limit <= 1)
2933 goto done;
2935 /* Grow author column size if necessary, and set view->maxx. */
2936 entry = s->first_displayed_entry;
2937 ncommits = 0;
2938 view->maxx = 0;
2939 while (entry) {
2940 struct got_commit_object *c = entry->commit;
2941 char *author, *eol, *msg, *msg0;
2942 wchar_t *wauthor, *wmsg;
2943 int width;
2944 if (ncommits >= limit - 1)
2945 break;
2946 if (s->use_committer)
2947 author = strdup(got_object_commit_get_committer(c));
2948 else
2949 author = strdup(got_object_commit_get_author(c));
2950 if (author == NULL) {
2951 err = got_error_from_errno("strdup");
2952 goto done;
2954 err = format_author(&wauthor, &width, author, COLS,
2955 date_display_cols);
2956 if (author_cols < width)
2957 author_cols = width;
2958 free(wauthor);
2959 free(author);
2960 if (err)
2961 goto done;
2962 refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2963 entry->id);
2964 err = build_refs_str(&refs_str, refs, entry->id, s->repo);
2965 if (err)
2966 goto done;
2967 if (refs_str) {
2968 wchar_t *ws;
2969 err = format_line(&ws, &width, NULL, refs_str,
2970 0, INT_MAX, date_display_cols + author_cols, 0);
2971 free(ws);
2972 free(refs_str);
2973 refs_str = NULL;
2974 if (err)
2975 goto done;
2976 refstr_cols = width + 3; /* account for [ ] + space */
2977 } else
2978 refstr_cols = 0;
2979 err = got_object_commit_get_logmsg(&msg0, c);
2980 if (err)
2981 goto done;
2982 msg = msg0;
2983 while (*msg == '\n')
2984 ++msg;
2985 if ((eol = strchr(msg, '\n')))
2986 *eol = '\0';
2987 err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2988 date_display_cols + author_cols + refstr_cols, 0);
2989 if (err)
2990 goto done;
2991 view->maxx = MAX(view->maxx, width + refstr_cols);
2992 free(msg0);
2993 free(wmsg);
2994 ncommits++;
2995 entry = TAILQ_NEXT(entry, entry);
2998 entry = s->first_displayed_entry;
2999 s->last_displayed_entry = s->first_displayed_entry;
3000 ncommits = 0;
3001 while (entry) {
3002 if (ncommits >= limit - 1)
3003 break;
3004 if (ncommits == s->selected)
3005 wstandout(view->window);
3006 err = draw_commit(view, entry, date_display_cols, author_cols);
3007 if (ncommits == s->selected)
3008 wstandend(view->window);
3009 if (err)
3010 goto done;
3011 ncommits++;
3012 s->last_displayed_entry = entry;
3013 entry = TAILQ_NEXT(entry, entry);
3016 view_border(view);
3017 done:
3018 free(id_str);
3019 free(refs_str);
3020 free(ncommits_str);
3021 free(header);
3022 return err;
3025 static void
3026 log_scroll_up(struct tog_log_view_state *s, int maxscroll)
3028 struct commit_queue_entry *entry;
3029 int nscrolled = 0;
3031 entry = TAILQ_FIRST(&s->commits->head);
3032 if (s->first_displayed_entry == entry)
3033 return;
3035 entry = s->first_displayed_entry;
3036 while (entry && nscrolled < maxscroll) {
3037 entry = TAILQ_PREV(entry, commit_queue_head, entry);
3038 if (entry) {
3039 s->first_displayed_entry = entry;
3040 nscrolled++;
3045 static const struct got_error *
3046 trigger_log_thread(struct tog_view *view, int wait)
3048 struct tog_log_thread_args *ta = &view->state.log.thread_args;
3049 int errcode;
3051 if (!using_mock_io)
3052 halfdelay(1); /* fast refresh while loading commits */
3054 while (!ta->log_complete && !tog_thread_error &&
3055 (ta->commits_needed > 0 || ta->load_all)) {
3056 /* Wake the log thread. */
3057 errcode = pthread_cond_signal(&ta->need_commits);
3058 if (errcode)
3059 return got_error_set_errno(errcode,
3060 "pthread_cond_signal");
3063 * The mutex will be released while the view loop waits
3064 * in wgetch(), at which time the log thread will run.
3066 if (!wait)
3067 break;
3069 /* Display progress update in log view. */
3070 show_log_view(view);
3071 update_panels();
3072 doupdate();
3074 /* Wait right here while next commit is being loaded. */
3075 errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
3076 if (errcode)
3077 return got_error_set_errno(errcode,
3078 "pthread_cond_wait");
3080 /* Display progress update in log view. */
3081 show_log_view(view);
3082 update_panels();
3083 doupdate();
3086 return NULL;
3089 static const struct got_error *
3090 request_log_commits(struct tog_view *view)
3092 struct tog_log_view_state *state = &view->state.log;
3093 const struct got_error *err = NULL;
3095 if (state->thread_args.log_complete)
3096 return NULL;
3098 state->thread_args.commits_needed += view->nscrolled;
3099 err = trigger_log_thread(view, 1);
3100 view->nscrolled = 0;
3102 return err;
3105 static const struct got_error *
3106 log_scroll_down(struct tog_view *view, int maxscroll)
3108 struct tog_log_view_state *s = &view->state.log;
3109 const struct got_error *err = NULL;
3110 struct commit_queue_entry *pentry;
3111 int nscrolled = 0, ncommits_needed;
3113 if (s->last_displayed_entry == NULL)
3114 return NULL;
3116 ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
3117 if (s->commits->ncommits < ncommits_needed &&
3118 !s->thread_args.log_complete) {
3120 * Ask the log thread for required amount of commits.
3122 s->thread_args.commits_needed +=
3123 ncommits_needed - s->commits->ncommits;
3124 err = trigger_log_thread(view, 1);
3125 if (err)
3126 return err;
3129 do {
3130 pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
3131 if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
3132 break;
3134 s->last_displayed_entry = pentry ?
3135 pentry : s->last_displayed_entry;
3137 pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
3138 if (pentry == NULL)
3139 break;
3140 s->first_displayed_entry = pentry;
3141 } while (++nscrolled < maxscroll);
3143 if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
3144 view->nscrolled += nscrolled;
3145 else
3146 view->nscrolled = 0;
3148 return err;
3151 static const struct got_error *
3152 open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
3153 struct got_commit_object *commit, struct got_object_id *commit_id,
3154 struct tog_view *log_view, struct got_repository *repo)
3156 const struct got_error *err;
3157 struct got_object_qid *parent_id;
3158 struct tog_view *diff_view;
3160 diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
3161 if (diff_view == NULL)
3162 return got_error_from_errno("view_open");
3164 parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
3165 err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
3166 commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
3167 if (err == NULL)
3168 *new_view = diff_view;
3169 return err;
3172 static const struct got_error *
3173 tree_view_visit_subtree(struct tog_tree_view_state *s,
3174 struct got_tree_object *subtree)
3176 struct tog_parent_tree *parent;
3178 parent = calloc(1, sizeof(*parent));
3179 if (parent == NULL)
3180 return got_error_from_errno("calloc");
3182 parent->tree = s->tree;
3183 parent->first_displayed_entry = s->first_displayed_entry;
3184 parent->selected_entry = s->selected_entry;
3185 parent->selected = s->selected;
3186 TAILQ_INSERT_HEAD(&s->parents, parent, entry);
3187 s->tree = subtree;
3188 s->selected = 0;
3189 s->first_displayed_entry = NULL;
3190 return NULL;
3193 static const struct got_error *
3194 tree_view_walk_path(struct tog_tree_view_state *s,
3195 struct got_commit_object *commit, const char *path)
3197 const struct got_error *err = NULL;
3198 struct got_tree_object *tree = NULL;
3199 const char *p;
3200 char *slash, *subpath = NULL;
3202 /* Walk the path and open corresponding tree objects. */
3203 p = path;
3204 while (*p) {
3205 struct got_tree_entry *te;
3206 struct got_object_id *tree_id;
3207 char *te_name;
3209 while (p[0] == '/')
3210 p++;
3212 /* Ensure the correct subtree entry is selected. */
3213 slash = strchr(p, '/');
3214 if (slash == NULL)
3215 te_name = strdup(p);
3216 else
3217 te_name = strndup(p, slash - p);
3218 if (te_name == NULL) {
3219 err = got_error_from_errno("strndup");
3220 break;
3222 te = got_object_tree_find_entry(s->tree, te_name);
3223 if (te == NULL) {
3224 err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
3225 free(te_name);
3226 break;
3228 free(te_name);
3229 s->first_displayed_entry = s->selected_entry = te;
3231 if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
3232 break; /* jump to this file's entry */
3234 slash = strchr(p, '/');
3235 if (slash)
3236 subpath = strndup(path, slash - path);
3237 else
3238 subpath = strdup(path);
3239 if (subpath == NULL) {
3240 err = got_error_from_errno("strdup");
3241 break;
3244 err = got_object_id_by_path(&tree_id, s->repo, commit,
3245 subpath);
3246 if (err)
3247 break;
3249 err = got_object_open_as_tree(&tree, s->repo, tree_id);
3250 free(tree_id);
3251 if (err)
3252 break;
3254 err = tree_view_visit_subtree(s, tree);
3255 if (err) {
3256 got_object_tree_close(tree);
3257 break;
3259 if (slash == NULL)
3260 break;
3261 free(subpath);
3262 subpath = NULL;
3263 p = slash;
3266 free(subpath);
3267 return err;
3270 static const struct got_error *
3271 browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
3272 struct commit_queue_entry *entry, const char *path,
3273 const char *head_ref_name, struct got_repository *repo)
3275 const struct got_error *err = NULL;
3276 struct tog_tree_view_state *s;
3277 struct tog_view *tree_view;
3279 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
3280 if (tree_view == NULL)
3281 return got_error_from_errno("view_open");
3283 err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
3284 if (err)
3285 return err;
3286 s = &tree_view->state.tree;
3288 *new_view = tree_view;
3290 if (got_path_is_root_dir(path))
3291 return NULL;
3293 return tree_view_walk_path(s, entry->commit, path);
3296 static const struct got_error *
3297 block_signals_used_by_main_thread(void)
3299 sigset_t sigset;
3300 int errcode;
3302 if (sigemptyset(&sigset) == -1)
3303 return got_error_from_errno("sigemptyset");
3305 /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
3306 if (sigaddset(&sigset, SIGWINCH) == -1)
3307 return got_error_from_errno("sigaddset");
3308 if (sigaddset(&sigset, SIGCONT) == -1)
3309 return got_error_from_errno("sigaddset");
3310 if (sigaddset(&sigset, SIGINT) == -1)
3311 return got_error_from_errno("sigaddset");
3312 if (sigaddset(&sigset, SIGTERM) == -1)
3313 return got_error_from_errno("sigaddset");
3315 /* ncurses handles SIGTSTP */
3316 if (sigaddset(&sigset, SIGTSTP) == -1)
3317 return got_error_from_errno("sigaddset");
3319 errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
3320 if (errcode)
3321 return got_error_set_errno(errcode, "pthread_sigmask");
3323 return NULL;
3326 static void *
3327 log_thread(void *arg)
3329 const struct got_error *err = NULL;
3330 int errcode = 0;
3331 struct tog_log_thread_args *a = arg;
3332 int done = 0;
3335 * Sync startup with main thread such that we begin our
3336 * work once view_input() has released the mutex.
3338 errcode = pthread_mutex_lock(&tog_mutex);
3339 if (errcode) {
3340 err = got_error_set_errno(errcode, "pthread_mutex_lock");
3341 return (void *)err;
3344 err = block_signals_used_by_main_thread();
3345 if (err) {
3346 pthread_mutex_unlock(&tog_mutex);
3347 goto done;
3350 while (!done && !err && !tog_fatal_signal_received()) {
3351 errcode = pthread_mutex_unlock(&tog_mutex);
3352 if (errcode) {
3353 err = got_error_set_errno(errcode,
3354 "pthread_mutex_unlock");
3355 goto done;
3357 err = queue_commits(a);
3358 if (err) {
3359 if (err->code != GOT_ERR_ITER_COMPLETED)
3360 goto done;
3361 err = NULL;
3362 done = 1;
3363 a->commits_needed = 0;
3364 } else if (a->commits_needed > 0 && !a->load_all) {
3365 if (*a->limiting) {
3366 if (a->limit_match)
3367 a->commits_needed--;
3368 } else
3369 a->commits_needed--;
3372 errcode = pthread_mutex_lock(&tog_mutex);
3373 if (errcode) {
3374 err = got_error_set_errno(errcode,
3375 "pthread_mutex_lock");
3376 goto done;
3377 } else if (*a->quit)
3378 done = 1;
3379 else if (*a->limiting && *a->first_displayed_entry == NULL) {
3380 *a->first_displayed_entry =
3381 TAILQ_FIRST(&a->limit_commits->head);
3382 *a->selected_entry = *a->first_displayed_entry;
3383 } else if (*a->first_displayed_entry == NULL) {
3384 *a->first_displayed_entry =
3385 TAILQ_FIRST(&a->real_commits->head);
3386 *a->selected_entry = *a->first_displayed_entry;
3389 errcode = pthread_cond_signal(&a->commit_loaded);
3390 if (errcode) {
3391 err = got_error_set_errno(errcode,
3392 "pthread_cond_signal");
3393 pthread_mutex_unlock(&tog_mutex);
3394 goto done;
3397 if (a->commits_needed == 0 &&
3398 a->need_commit_marker && a->worktree) {
3399 errcode = pthread_mutex_unlock(&tog_mutex);
3400 if (errcode) {
3401 err = got_error_set_errno(errcode,
3402 "pthread_mutex_unlock");
3403 goto done;
3405 err = got_worktree_get_state(&tog_base_commit.marker,
3406 a->repo, a->worktree, NULL, NULL);
3407 if (err)
3408 goto done;
3409 errcode = pthread_mutex_lock(&tog_mutex);
3410 if (errcode) {
3411 err = got_error_set_errno(errcode,
3412 "pthread_mutex_lock");
3413 goto done;
3415 a->need_commit_marker = 0;
3417 * The main thread did not close this
3418 * work tree yet. Close it now.
3420 got_worktree_close(a->worktree);
3421 a->worktree = NULL;
3423 if (*a->quit)
3424 done = 1;
3427 if (done)
3428 a->commits_needed = 0;
3429 else {
3430 if (a->commits_needed == 0 && !a->load_all) {
3431 if (tog_io.wait_for_ui) {
3432 errcode = pthread_cond_signal(
3433 &a->log_loaded);
3434 if (errcode && err == NULL)
3435 err = got_error_set_errno(
3436 errcode,
3437 "pthread_cond_signal");
3440 errcode = pthread_cond_wait(&a->need_commits,
3441 &tog_mutex);
3442 if (errcode) {
3443 err = got_error_set_errno(errcode,
3444 "pthread_cond_wait");
3445 pthread_mutex_unlock(&tog_mutex);
3446 goto done;
3448 if (*a->quit)
3449 done = 1;
3453 a->log_complete = 1;
3454 if (tog_io.wait_for_ui) {
3455 errcode = pthread_cond_signal(&a->log_loaded);
3456 if (errcode && err == NULL)
3457 err = got_error_set_errno(errcode,
3458 "pthread_cond_signal");
3461 errcode = pthread_mutex_unlock(&tog_mutex);
3462 if (errcode)
3463 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3464 done:
3465 if (err) {
3466 tog_thread_error = 1;
3467 pthread_cond_signal(&a->commit_loaded);
3468 if (a->worktree) {
3469 got_worktree_close(a->worktree);
3470 a->worktree = NULL;
3473 return (void *)err;
3476 static const struct got_error *
3477 stop_log_thread(struct tog_log_view_state *s)
3479 const struct got_error *err = NULL, *thread_err = NULL;
3480 int errcode;
3482 if (s->thread) {
3483 s->quit = 1;
3484 errcode = pthread_cond_signal(&s->thread_args.need_commits);
3485 if (errcode)
3486 return got_error_set_errno(errcode,
3487 "pthread_cond_signal");
3488 errcode = pthread_mutex_unlock(&tog_mutex);
3489 if (errcode)
3490 return got_error_set_errno(errcode,
3491 "pthread_mutex_unlock");
3492 errcode = pthread_join(s->thread, (void **)&thread_err);
3493 if (errcode)
3494 return got_error_set_errno(errcode, "pthread_join");
3495 errcode = pthread_mutex_lock(&tog_mutex);
3496 if (errcode)
3497 return got_error_set_errno(errcode,
3498 "pthread_mutex_lock");
3499 s->thread = 0; //NULL;
3502 if (s->thread_args.repo) {
3503 err = got_repo_close(s->thread_args.repo);
3504 s->thread_args.repo = NULL;
3507 if (s->thread_args.pack_fds) {
3508 const struct got_error *pack_err =
3509 got_repo_pack_fds_close(s->thread_args.pack_fds);
3510 if (err == NULL)
3511 err = pack_err;
3512 s->thread_args.pack_fds = NULL;
3515 if (s->thread_args.graph) {
3516 got_commit_graph_close(s->thread_args.graph);
3517 s->thread_args.graph = NULL;
3520 return err ? err : thread_err;
3523 static const struct got_error *
3524 close_log_view(struct tog_view *view)
3526 const struct got_error *err = NULL;
3527 struct tog_log_view_state *s = &view->state.log;
3528 int errcode;
3530 err = stop_log_thread(s);
3532 errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3533 if (errcode && err == NULL)
3534 err = got_error_set_errno(errcode, "pthread_cond_destroy");
3536 errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3537 if (errcode && err == NULL)
3538 err = got_error_set_errno(errcode, "pthread_cond_destroy");
3540 free_commits(&s->limit_commits);
3541 free_commits(&s->real_commits);
3542 free_colors(&s->colors);
3543 free(s->in_repo_path);
3544 s->in_repo_path = NULL;
3545 free(s->start_id);
3546 s->start_id = NULL;
3547 free(s->head_ref_name);
3548 s->head_ref_name = NULL;
3549 return err;
3553 * We use two queues to implement the limit feature: first consists of
3554 * commits matching the current limit_regex; second is the real queue
3555 * of all known commits (real_commits). When the user starts limiting,
3556 * we swap queues such that all movement and displaying functionality
3557 * works with very slight change.
3559 static const struct got_error *
3560 limit_log_view(struct tog_view *view)
3562 struct tog_log_view_state *s = &view->state.log;
3563 struct commit_queue_entry *entry;
3564 struct tog_view *v = view;
3565 const struct got_error *err = NULL;
3566 char pattern[1024];
3567 int ret;
3569 if (view_is_hsplit_top(view))
3570 v = view->child;
3571 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3572 v = view->parent;
3574 if (tog_io.input_str != NULL) {
3575 if (strlcpy(pattern, tog_io.input_str, sizeof(pattern)) >=
3576 sizeof(pattern))
3577 return got_error(GOT_ERR_NO_SPACE);
3578 } else {
3579 wmove(v->window, v->nlines - 1, 0);
3580 wclrtoeol(v->window);
3581 mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3582 nodelay(v->window, FALSE);
3583 nocbreak();
3584 echo();
3585 ret = wgetnstr(v->window, pattern, sizeof(pattern));
3586 cbreak();
3587 noecho();
3588 nodelay(v->window, TRUE);
3589 if (ret == ERR)
3590 return NULL;
3593 if (*pattern == '\0') {
3595 * Safety measure for the situation where the user
3596 * resets limit without previously limiting anything.
3598 if (!s->limit_view)
3599 return NULL;
3602 * User could have pressed Ctrl+L, which refreshed the
3603 * commit queues, it means we can't save previously
3604 * (before limit took place) displayed entries,
3605 * because they would point to already free'ed memory,
3606 * so we are forced to always select first entry of
3607 * the queue.
3609 s->commits = &s->real_commits;
3610 s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3611 s->selected_entry = s->first_displayed_entry;
3612 s->selected = 0;
3613 s->limit_view = 0;
3615 return NULL;
3618 if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3619 return NULL;
3621 s->limit_view = 1;
3623 /* Clear the screen while loading limit view */
3624 s->first_displayed_entry = NULL;
3625 s->last_displayed_entry = NULL;
3626 s->selected_entry = NULL;
3627 s->commits = &s->limit_commits;
3629 /* Prepare limit queue for new search */
3630 free_commits(&s->limit_commits);
3631 s->limit_commits.ncommits = 0;
3633 /* First process commits, which are in queue already */
3634 TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3635 int have_match = 0;
3637 err = match_commit(&have_match, entry->id,
3638 entry->commit, &s->limit_regex);
3639 if (err)
3640 return err;
3642 if (have_match) {
3643 struct commit_queue_entry *matched;
3645 matched = alloc_commit_queue_entry(entry->commit,
3646 entry->id);
3647 if (matched == NULL) {
3648 err = got_error_from_errno(
3649 "alloc_commit_queue_entry");
3650 break;
3652 matched->commit = entry->commit;
3653 got_object_commit_retain(entry->commit);
3655 matched->idx = s->limit_commits.ncommits;
3656 TAILQ_INSERT_TAIL(&s->limit_commits.head,
3657 matched, entry);
3658 s->limit_commits.ncommits++;
3662 /* Second process all the commits, until we fill the screen */
3663 if (s->limit_commits.ncommits < view->nlines - 1 &&
3664 !s->thread_args.log_complete) {
3665 s->thread_args.commits_needed +=
3666 view->nlines - s->limit_commits.ncommits - 1;
3667 err = trigger_log_thread(view, 1);
3668 if (err)
3669 return err;
3672 s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3673 s->selected_entry = TAILQ_FIRST(&s->commits->head);
3674 s->selected = 0;
3676 return NULL;
3679 static const struct got_error *
3680 search_start_log_view(struct tog_view *view)
3682 struct tog_log_view_state *s = &view->state.log;
3684 s->matched_entry = NULL;
3685 s->search_entry = NULL;
3686 return NULL;
3689 static const struct got_error *
3690 search_next_log_view(struct tog_view *view)
3692 const struct got_error *err = NULL;
3693 struct tog_log_view_state *s = &view->state.log;
3694 struct commit_queue_entry *entry;
3696 /* Display progress update in log view. */
3697 show_log_view(view);
3698 update_panels();
3699 doupdate();
3701 if (s->search_entry) {
3702 if (!using_mock_io) {
3703 int errcode, ch;
3705 errcode = pthread_mutex_unlock(&tog_mutex);
3706 if (errcode)
3707 return got_error_set_errno(errcode,
3708 "pthread_mutex_unlock");
3709 ch = wgetch(view->window);
3710 errcode = pthread_mutex_lock(&tog_mutex);
3711 if (errcode)
3712 return got_error_set_errno(errcode,
3713 "pthread_mutex_lock");
3714 if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3715 view->search_next_done = TOG_SEARCH_HAVE_MORE;
3716 return NULL;
3719 if (view->searching == TOG_SEARCH_FORWARD)
3720 entry = TAILQ_NEXT(s->search_entry, entry);
3721 else
3722 entry = TAILQ_PREV(s->search_entry,
3723 commit_queue_head, entry);
3724 } else if (s->matched_entry) {
3726 * If the user has moved the cursor after we hit a match,
3727 * the position from where we should continue searching
3728 * might have changed.
3730 if (view->searching == TOG_SEARCH_FORWARD)
3731 entry = TAILQ_NEXT(s->selected_entry, entry);
3732 else
3733 entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3734 entry);
3735 } else {
3736 entry = s->selected_entry;
3739 while (1) {
3740 int have_match = 0;
3742 if (entry == NULL) {
3743 if (s->thread_args.log_complete ||
3744 view->searching == TOG_SEARCH_BACKWARD) {
3745 view->search_next_done =
3746 (s->matched_entry == NULL ?
3747 TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3748 s->search_entry = NULL;
3749 return NULL;
3752 * Poke the log thread for more commits and return,
3753 * allowing the main loop to make progress. Search
3754 * will resume at s->search_entry once we come back.
3756 s->search_entry = s->selected_entry;
3757 s->thread_args.commits_needed++;
3758 return trigger_log_thread(view, 0);
3761 err = match_commit(&have_match, entry->id, entry->commit,
3762 &view->regex);
3763 if (err)
3764 break;
3765 if (have_match) {
3766 view->search_next_done = TOG_SEARCH_HAVE_MORE;
3767 s->matched_entry = entry;
3768 break;
3771 s->search_entry = entry;
3772 if (view->searching == TOG_SEARCH_FORWARD)
3773 entry = TAILQ_NEXT(entry, entry);
3774 else
3775 entry = TAILQ_PREV(entry, commit_queue_head, entry);
3778 if (s->matched_entry) {
3779 int cur = s->selected_entry->idx;
3780 while (cur < s->matched_entry->idx) {
3781 err = input_log_view(NULL, view, KEY_DOWN);
3782 if (err)
3783 return err;
3784 cur++;
3786 while (cur > s->matched_entry->idx) {
3787 err = input_log_view(NULL, view, KEY_UP);
3788 if (err)
3789 return err;
3790 cur--;
3794 s->search_entry = NULL;
3796 return NULL;
3799 static const struct got_error *
3800 open_log_view(struct tog_view *view, struct got_object_id *start_id,
3801 struct got_repository *repo, const char *head_ref_name,
3802 const char *in_repo_path, int log_branches,
3803 struct got_worktree *worktree)
3805 const struct got_error *err = NULL;
3806 struct tog_log_view_state *s = &view->state.log;
3807 struct got_repository *thread_repo = NULL;
3808 struct got_commit_graph *thread_graph = NULL;
3809 int errcode;
3811 if (in_repo_path != s->in_repo_path) {
3812 free(s->in_repo_path);
3813 s->in_repo_path = strdup(in_repo_path);
3814 if (s->in_repo_path == NULL) {
3815 err = got_error_from_errno("strdup");
3816 goto done;
3820 /* The commit queue only contains commits being displayed. */
3821 TAILQ_INIT(&s->real_commits.head);
3822 s->real_commits.ncommits = 0;
3823 s->commits = &s->real_commits;
3825 TAILQ_INIT(&s->limit_commits.head);
3826 s->limit_view = 0;
3827 s->limit_commits.ncommits = 0;
3829 s->repo = repo;
3830 if (head_ref_name) {
3831 s->head_ref_name = strdup(head_ref_name);
3832 if (s->head_ref_name == NULL) {
3833 err = got_error_from_errno("strdup");
3834 goto done;
3837 s->start_id = got_object_id_dup(start_id);
3838 if (s->start_id == NULL) {
3839 err = got_error_from_errno("got_object_id_dup");
3840 goto done;
3842 s->log_branches = log_branches;
3843 s->use_committer = 1;
3845 STAILQ_INIT(&s->colors);
3846 if (has_colors() && getenv("TOG_COLORS") != NULL) {
3847 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3848 get_color_value("TOG_COLOR_COMMIT"));
3849 if (err)
3850 goto done;
3851 err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3852 get_color_value("TOG_COLOR_AUTHOR"));
3853 if (err)
3854 goto done;
3855 err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3856 get_color_value("TOG_COLOR_DATE"));
3857 if (err)
3858 goto done;
3861 view->show = show_log_view;
3862 view->input = input_log_view;
3863 view->resize = resize_log_view;
3864 view->close = close_log_view;
3865 view->search_start = search_start_log_view;
3866 view->search_next = search_next_log_view;
3868 if (s->thread_args.pack_fds == NULL) {
3869 err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3870 if (err)
3871 goto done;
3873 err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3874 s->thread_args.pack_fds);
3875 if (err)
3876 goto done;
3877 err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3878 !s->log_branches);
3879 if (err)
3880 goto done;
3881 err = got_commit_graph_iter_start(thread_graph, s->start_id,
3882 s->repo, NULL, NULL);
3883 if (err)
3884 goto done;
3886 errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3887 if (errcode) {
3888 err = got_error_set_errno(errcode, "pthread_cond_init");
3889 goto done;
3891 errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3892 if (errcode) {
3893 err = got_error_set_errno(errcode, "pthread_cond_init");
3894 goto done;
3897 if (using_mock_io) {
3898 int rc;
3900 rc = pthread_cond_init(&s->thread_args.log_loaded, NULL);
3901 if (rc)
3902 return got_error_set_errno(rc, "pthread_cond_init");
3905 s->thread_args.commits_needed = view->nlines;
3906 s->thread_args.graph = thread_graph;
3907 s->thread_args.real_commits = &s->real_commits;
3908 s->thread_args.limit_commits = &s->limit_commits;
3909 s->thread_args.in_repo_path = s->in_repo_path;
3910 s->thread_args.start_id = s->start_id;
3911 s->thread_args.repo = thread_repo;
3912 s->thread_args.log_complete = 0;
3913 s->thread_args.quit = &s->quit;
3914 s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3915 s->thread_args.selected_entry = &s->selected_entry;
3916 s->thread_args.searching = &view->searching;
3917 s->thread_args.search_next_done = &view->search_next_done;
3918 s->thread_args.regex = &view->regex;
3919 s->thread_args.limiting = &s->limit_view;
3920 s->thread_args.limit_regex = &s->limit_regex;
3921 s->thread_args.limit_commits = &s->limit_commits;
3922 s->thread_args.worktree = worktree;
3923 if (worktree)
3924 s->thread_args.need_commit_marker = 1;
3925 done:
3926 if (err) {
3927 if (view->close == NULL)
3928 close_log_view(view);
3929 view_close(view);
3931 return err;
3934 static const struct got_error *
3935 show_log_view(struct tog_view *view)
3937 const struct got_error *err;
3938 struct tog_log_view_state *s = &view->state.log;
3940 if (s->thread == 0) { //NULL) {
3941 int errcode = pthread_create(&s->thread, NULL, log_thread,
3942 &s->thread_args);
3943 if (errcode)
3944 return got_error_set_errno(errcode, "pthread_create");
3945 if (s->thread_args.commits_needed > 0) {
3946 err = trigger_log_thread(view, 1);
3947 if (err)
3948 return err;
3952 return draw_commits(view);
3955 static void
3956 log_move_cursor_up(struct tog_view *view, int page, int home)
3958 struct tog_log_view_state *s = &view->state.log;
3960 if (s->first_displayed_entry == NULL)
3961 return;
3962 if (s->selected_entry->idx == 0)
3963 view->count = 0;
3965 if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3966 || home)
3967 s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3969 if (!page && !home && s->selected > 0)
3970 --s->selected;
3971 else
3972 log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3974 select_commit(s);
3975 return;
3978 static const struct got_error *
3979 log_move_cursor_down(struct tog_view *view, int page)
3981 struct tog_log_view_state *s = &view->state.log;
3982 const struct got_error *err = NULL;
3983 int eos = view->nlines - 2;
3985 if (s->first_displayed_entry == NULL)
3986 return NULL;
3988 if (s->thread_args.log_complete &&
3989 s->selected_entry->idx >= s->commits->ncommits - 1)
3990 return NULL;
3992 if (view_is_hsplit_top(view))
3993 --eos; /* border consumes the last line */
3995 if (!page) {
3996 if (s->selected < MIN(eos, s->commits->ncommits - 1))
3997 ++s->selected;
3998 else
3999 err = log_scroll_down(view, 1);
4000 } else if (s->thread_args.load_all && s->thread_args.log_complete) {
4001 struct commit_queue_entry *entry;
4002 int n;
4004 s->selected = 0;
4005 entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
4006 s->last_displayed_entry = entry;
4007 for (n = 0; n <= eos; n++) {
4008 if (entry == NULL)
4009 break;
4010 s->first_displayed_entry = entry;
4011 entry = TAILQ_PREV(entry, commit_queue_head, entry);
4013 if (n > 0)
4014 s->selected = n - 1;
4015 } else {
4016 if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
4017 s->thread_args.log_complete)
4018 s->selected += MIN(page,
4019 s->commits->ncommits - s->selected_entry->idx - 1);
4020 else
4021 err = log_scroll_down(view, page);
4023 if (err)
4024 return err;
4027 * We might necessarily overshoot in horizontal
4028 * splits; if so, select the last displayed commit.
4030 if (s->first_displayed_entry && s->last_displayed_entry) {
4031 s->selected = MIN(s->selected,
4032 s->last_displayed_entry->idx -
4033 s->first_displayed_entry->idx);
4036 select_commit(s);
4038 if (s->thread_args.log_complete &&
4039 s->selected_entry->idx == s->commits->ncommits - 1)
4040 view->count = 0;
4042 return NULL;
4045 static void
4046 view_get_split(struct tog_view *view, int *y, int *x)
4048 *x = 0;
4049 *y = 0;
4051 if (view->mode == TOG_VIEW_SPLIT_HRZN) {
4052 if (view->child && view->child->resized_y)
4053 *y = view->child->resized_y;
4054 else if (view->resized_y)
4055 *y = view->resized_y;
4056 else
4057 *y = view_split_begin_y(view->lines);
4058 } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
4059 if (view->child && view->child->resized_x)
4060 *x = view->child->resized_x;
4061 else if (view->resized_x)
4062 *x = view->resized_x;
4063 else
4064 *x = view_split_begin_x(view->begin_x);
4068 /* Split view horizontally at y and offset view->state->selected line. */
4069 static const struct got_error *
4070 view_init_hsplit(struct tog_view *view, int y)
4072 const struct got_error *err = NULL;
4074 view->nlines = y;
4075 view->ncols = COLS;
4076 err = view_resize(view);
4077 if (err)
4078 return err;
4080 err = offset_selection_down(view);
4082 return err;
4085 static const struct got_error *
4086 log_goto_line(struct tog_view *view, int nlines)
4088 const struct got_error *err = NULL;
4089 struct tog_log_view_state *s = &view->state.log;
4090 int g, idx = s->selected_entry->idx;
4092 if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
4093 return NULL;
4095 g = view->gline;
4096 view->gline = 0;
4098 if (g >= s->first_displayed_entry->idx + 1 &&
4099 g <= s->last_displayed_entry->idx + 1 &&
4100 g - s->first_displayed_entry->idx - 1 < nlines) {
4101 s->selected = g - s->first_displayed_entry->idx - 1;
4102 select_commit(s);
4103 return NULL;
4106 if (idx + 1 < g) {
4107 err = log_move_cursor_down(view, g - idx - 1);
4108 if (!err && g > s->selected_entry->idx + 1)
4109 err = log_move_cursor_down(view,
4110 g - s->first_displayed_entry->idx - 1);
4111 if (err)
4112 return err;
4113 } else if (idx + 1 > g)
4114 log_move_cursor_up(view, idx - g + 1, 0);
4116 if (g < nlines && s->first_displayed_entry->idx == 0)
4117 s->selected = g - 1;
4119 select_commit(s);
4120 return NULL;
4124 static void
4125 horizontal_scroll_input(struct tog_view *view, int ch)
4128 switch (ch) {
4129 case KEY_LEFT:
4130 case 'h':
4131 view->x -= MIN(view->x, 2);
4132 if (view->x <= 0)
4133 view->count = 0;
4134 break;
4135 case KEY_RIGHT:
4136 case 'l':
4137 if (view->x + view->ncols / 2 < view->maxx)
4138 view->x += 2;
4139 else
4140 view->count = 0;
4141 break;
4142 case '0':
4143 view->x = 0;
4144 break;
4145 case '$':
4146 view->x = MAX(view->maxx - view->ncols / 2, 0);
4147 view->count = 0;
4148 break;
4149 default:
4150 break;
4154 static const struct got_error *
4155 input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
4157 const struct got_error *err = NULL;
4158 struct tog_log_view_state *s = &view->state.log;
4159 int eos, nscroll;
4161 if (s->thread_args.load_all) {
4162 if (ch == CTRL('g') || ch == KEY_BACKSPACE)
4163 s->thread_args.load_all = 0;
4164 else if (s->thread_args.log_complete) {
4165 err = log_move_cursor_down(view, s->commits->ncommits);
4166 s->thread_args.load_all = 0;
4168 if (err)
4169 return err;
4172 eos = nscroll = view->nlines - 1;
4173 if (view_is_hsplit_top(view))
4174 --eos; /* border */
4176 if (view->gline)
4177 return log_goto_line(view, eos);
4179 switch (ch) {
4180 case '&':
4181 err = limit_log_view(view);
4182 break;
4183 case 'q':
4184 s->quit = 1;
4185 break;
4186 case '0':
4187 case '$':
4188 case KEY_RIGHT:
4189 case 'l':
4190 case KEY_LEFT:
4191 case 'h':
4192 horizontal_scroll_input(view, ch);
4193 break;
4194 case 'k':
4195 case KEY_UP:
4196 case '<':
4197 case ',':
4198 case CTRL('p'):
4199 log_move_cursor_up(view, 0, 0);
4200 break;
4201 case 'g':
4202 case '=':
4203 case KEY_HOME:
4204 log_move_cursor_up(view, 0, 1);
4205 view->count = 0;
4206 break;
4207 case CTRL('u'):
4208 case 'u':
4209 nscroll /= 2;
4210 /* FALL THROUGH */
4211 case KEY_PPAGE:
4212 case CTRL('b'):
4213 case 'b':
4214 log_move_cursor_up(view, nscroll, 0);
4215 break;
4216 case 'j':
4217 case KEY_DOWN:
4218 case '>':
4219 case '.':
4220 case CTRL('n'):
4221 err = log_move_cursor_down(view, 0);
4222 break;
4223 case '@':
4224 s->use_committer = !s->use_committer;
4225 view->action = s->use_committer ?
4226 "show committer" : "show commit author";
4227 break;
4228 case 'G':
4229 case '*':
4230 case KEY_END: {
4231 /* We don't know yet how many commits, so we're forced to
4232 * traverse them all. */
4233 view->count = 0;
4234 s->thread_args.load_all = 1;
4235 if (!s->thread_args.log_complete)
4236 return trigger_log_thread(view, 0);
4237 err = log_move_cursor_down(view, s->commits->ncommits);
4238 s->thread_args.load_all = 0;
4239 break;
4241 case CTRL('d'):
4242 case 'd':
4243 nscroll /= 2;
4244 /* FALL THROUGH */
4245 case KEY_NPAGE:
4246 case CTRL('f'):
4247 case 'f':
4248 case ' ':
4249 err = log_move_cursor_down(view, nscroll);
4250 break;
4251 case KEY_RESIZE:
4252 if (s->selected > view->nlines - 2)
4253 s->selected = view->nlines - 2;
4254 if (s->selected > s->commits->ncommits - 1)
4255 s->selected = s->commits->ncommits - 1;
4256 select_commit(s);
4257 if (s->commits->ncommits < view->nlines - 1 &&
4258 !s->thread_args.log_complete) {
4259 s->thread_args.commits_needed += (view->nlines - 1) -
4260 s->commits->ncommits;
4261 err = trigger_log_thread(view, 1);
4263 break;
4264 case KEY_ENTER:
4265 case '\r':
4266 view->count = 0;
4267 if (s->selected_entry == NULL)
4268 break;
4269 err = view_request_new(new_view, view, TOG_VIEW_DIFF);
4270 break;
4271 case 'T':
4272 view->count = 0;
4273 if (s->selected_entry == NULL)
4274 break;
4275 err = view_request_new(new_view, view, TOG_VIEW_TREE);
4276 break;
4277 case KEY_BACKSPACE:
4278 case CTRL('l'):
4279 case 'B':
4280 view->count = 0;
4281 if (ch == KEY_BACKSPACE &&
4282 got_path_is_root_dir(s->in_repo_path))
4283 break;
4284 err = stop_log_thread(s);
4285 if (err)
4286 return err;
4287 if (ch == KEY_BACKSPACE) {
4288 char *parent_path;
4289 err = got_path_dirname(&parent_path, s->in_repo_path);
4290 if (err)
4291 return err;
4292 free(s->in_repo_path);
4293 s->in_repo_path = parent_path;
4294 s->thread_args.in_repo_path = s->in_repo_path;
4295 } else if (ch == CTRL('l')) {
4296 struct got_object_id *start_id;
4297 err = got_repo_match_object_id(&start_id, NULL,
4298 s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
4299 GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
4300 if (err) {
4301 if (s->head_ref_name == NULL ||
4302 err->code != GOT_ERR_NOT_REF)
4303 return err;
4304 /* Try to cope with deleted references. */
4305 free(s->head_ref_name);
4306 s->head_ref_name = NULL;
4307 err = got_repo_match_object_id(&start_id,
4308 NULL, GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT,
4309 &tog_refs, s->repo);
4310 if (err)
4311 return err;
4313 free(s->start_id);
4314 s->start_id = start_id;
4315 s->thread_args.start_id = s->start_id;
4316 } else /* 'B' */
4317 s->log_branches = !s->log_branches;
4319 if (s->thread_args.pack_fds == NULL) {
4320 err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
4321 if (err)
4322 return err;
4324 err = got_repo_open(&s->thread_args.repo,
4325 got_repo_get_path(s->repo), NULL,
4326 s->thread_args.pack_fds);
4327 if (err)
4328 return err;
4329 tog_free_refs();
4330 err = tog_load_refs(s->repo, 0);
4331 if (err)
4332 return err;
4333 err = got_commit_graph_open(&s->thread_args.graph,
4334 s->in_repo_path, !s->log_branches);
4335 if (err)
4336 return err;
4337 err = got_commit_graph_iter_start(s->thread_args.graph,
4338 s->start_id, s->repo, NULL, NULL);
4339 if (err)
4340 return err;
4341 free_commits(&s->real_commits);
4342 free_commits(&s->limit_commits);
4343 s->first_displayed_entry = NULL;
4344 s->last_displayed_entry = NULL;
4345 s->selected_entry = NULL;
4346 s->selected = 0;
4347 s->thread_args.log_complete = 0;
4348 s->quit = 0;
4349 s->thread_args.commits_needed = view->lines;
4350 s->matched_entry = NULL;
4351 s->search_entry = NULL;
4352 view->offset = 0;
4353 break;
4354 case 'R':
4355 view->count = 0;
4356 err = view_request_new(new_view, view, TOG_VIEW_REF);
4357 break;
4358 default:
4359 view->count = 0;
4360 break;
4363 return err;
4366 static const struct got_error *
4367 apply_unveil(const char *repo_path, const char *worktree_path)
4369 const struct got_error *error;
4371 #ifdef PROFILE
4372 if (unveil("gmon.out", "rwc") != 0)
4373 return got_error_from_errno2("unveil", "gmon.out");
4374 #endif
4375 if (repo_path && unveil(repo_path, "r") != 0)
4376 return got_error_from_errno2("unveil", repo_path);
4378 if (worktree_path && unveil(worktree_path, "rwc") != 0)
4379 return got_error_from_errno2("unveil", worktree_path);
4381 if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
4382 return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
4384 error = got_privsep_unveil_exec_helpers();
4385 if (error != NULL)
4386 return error;
4388 if (unveil(NULL, NULL) != 0)
4389 return got_error_from_errno("unveil");
4391 return NULL;
4394 static const struct got_error *
4395 init_mock_term(const char *test_script_path)
4397 const struct got_error *err = NULL;
4398 const char *screen_dump_path;
4399 int in;
4401 if (test_script_path == NULL || *test_script_path == '\0')
4402 return got_error_msg(GOT_ERR_IO, "TOG_TEST_SCRIPT not defined");
4404 tog_io.f = fopen(test_script_path, "re");
4405 if (tog_io.f == NULL) {
4406 err = got_error_from_errno_fmt("fopen: %s",
4407 test_script_path);
4408 goto done;
4411 /* test mode, we don't want any output */
4412 tog_io.cout = fopen("/dev/null", "w+");
4413 if (tog_io.cout == NULL) {
4414 err = got_error_from_errno2("fopen", "/dev/null");
4415 goto done;
4418 in = dup(fileno(tog_io.cout));
4419 if (in == -1) {
4420 err = got_error_from_errno("dup");
4421 goto done;
4423 tog_io.cin = fdopen(in, "r");
4424 if (tog_io.cin == NULL) {
4425 err = got_error_from_errno("fdopen");
4426 close(in);
4427 goto done;
4430 screen_dump_path = getenv("TOG_SCR_DUMP");
4431 if (screen_dump_path == NULL || *screen_dump_path == '\0')
4432 return got_error_msg(GOT_ERR_IO, "TOG_SCR_DUMP not defined");
4433 tog_io.sdump = fopen(screen_dump_path, "we");
4434 if (tog_io.sdump == NULL) {
4435 err = got_error_from_errno2("fopen", screen_dump_path);
4436 goto done;
4439 if (fseeko(tog_io.f, 0L, SEEK_SET) == -1) {
4440 err = got_error_from_errno("fseeko");
4441 goto done;
4444 if (newterm(NULL, tog_io.cout, tog_io.cin) == NULL)
4445 err = got_error_msg(GOT_ERR_IO,
4446 "newterm: failed to initialise curses");
4448 using_mock_io = 1;
4450 done:
4451 if (err)
4452 tog_io_close();
4453 return err;
4456 static void
4457 init_curses(void)
4459 if (using_mock_io) /* In test mode we use a fake terminal */
4460 return;
4462 initscr();
4464 cbreak();
4465 halfdelay(1); /* Fast refresh while initial view is loading. */
4466 noecho();
4467 nonl();
4468 intrflush(stdscr, FALSE);
4469 keypad(stdscr, TRUE);
4470 curs_set(0);
4471 if (getenv("TOG_COLORS") != NULL) {
4472 start_color();
4473 use_default_colors();
4476 return;
4479 static const struct got_error *
4480 set_tog_base_commit(struct got_repository *repo, struct got_worktree *worktree)
4482 tog_base_commit.id = got_object_id_dup(
4483 got_worktree_get_base_commit_id(worktree));
4484 if (tog_base_commit.id == NULL)
4485 return got_error_from_errno( "got_object_id_dup");
4487 return NULL;
4490 static const struct got_error *
4491 get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
4492 struct got_repository *repo, struct got_worktree *worktree)
4494 const struct got_error *err = NULL;
4496 if (argc == 0) {
4497 *in_repo_path = strdup("/");
4498 if (*in_repo_path == NULL)
4499 return got_error_from_errno("strdup");
4500 return NULL;
4503 if (worktree) {
4504 const char *prefix = got_worktree_get_path_prefix(worktree);
4505 char *p;
4507 err = got_worktree_resolve_path(&p, worktree, argv[0]);
4508 if (err)
4509 return err;
4510 if (asprintf(in_repo_path, "%s%s%s", prefix,
4511 (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
4512 p) == -1) {
4513 err = got_error_from_errno("asprintf");
4514 *in_repo_path = NULL;
4516 free(p);
4517 } else
4518 err = got_repo_map_path(in_repo_path, repo, argv[0]);
4520 return err;
4523 static const struct got_error *
4524 cmd_log(int argc, char *argv[])
4526 const struct got_error *error;
4527 struct got_repository *repo = NULL;
4528 struct got_worktree *worktree = NULL;
4529 struct got_object_id *start_id = NULL;
4530 char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
4531 char *keyword_idstr = NULL, *start_commit = NULL, *label = NULL;
4532 struct got_reference *ref = NULL;
4533 const char *head_ref_name = NULL;
4534 int ch, log_branches = 0;
4535 struct tog_view *view;
4536 int *pack_fds = NULL;
4538 while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
4539 switch (ch) {
4540 case 'b':
4541 log_branches = 1;
4542 break;
4543 case 'c':
4544 start_commit = optarg;
4545 break;
4546 case 'r':
4547 repo_path = realpath(optarg, NULL);
4548 if (repo_path == NULL)
4549 return got_error_from_errno2("realpath",
4550 optarg);
4551 break;
4552 default:
4553 usage_log();
4554 /* NOTREACHED */
4558 argc -= optind;
4559 argv += optind;
4561 if (argc > 1)
4562 usage_log();
4564 error = got_repo_pack_fds_open(&pack_fds);
4565 if (error != NULL)
4566 goto done;
4568 if (repo_path == NULL) {
4569 cwd = getcwd(NULL, 0);
4570 if (cwd == NULL) {
4571 error = got_error_from_errno("getcwd");
4572 goto done;
4574 error = got_worktree_open(&worktree, cwd, NULL);
4575 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4576 goto done;
4577 if (worktree)
4578 repo_path =
4579 strdup(got_worktree_get_repo_path(worktree));
4580 else
4581 repo_path = strdup(cwd);
4582 if (repo_path == NULL) {
4583 error = got_error_from_errno("strdup");
4584 goto done;
4588 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
4589 if (error != NULL)
4590 goto done;
4592 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4593 repo, worktree);
4594 if (error)
4595 goto done;
4597 init_curses();
4599 error = apply_unveil(got_repo_get_path(repo),
4600 worktree ? got_worktree_get_root_path(worktree) : NULL);
4601 if (error)
4602 goto done;
4604 /* already loaded by tog_log_with_path()? */
4605 if (TAILQ_EMPTY(&tog_refs)) {
4606 error = tog_load_refs(repo, 0);
4607 if (error)
4608 goto done;
4611 if (start_commit == NULL) {
4612 error = got_repo_match_object_id(&start_id, &label,
4613 worktree ? got_worktree_get_head_ref_name(worktree) :
4614 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4615 if (error)
4616 goto done;
4617 head_ref_name = label;
4618 } else {
4619 error = got_keyword_to_idstr(&keyword_idstr, start_commit,
4620 repo, worktree);
4621 if (error != NULL)
4622 goto done;
4623 if (keyword_idstr != NULL)
4624 start_commit = keyword_idstr;
4626 error = got_ref_open(&ref, repo, start_commit, 0);
4627 if (error == NULL)
4628 head_ref_name = got_ref_get_name(ref);
4629 else if (error->code != GOT_ERR_NOT_REF)
4630 goto done;
4631 error = got_repo_match_object_id(&start_id, NULL,
4632 start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4633 if (error)
4634 goto done;
4637 view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4638 if (view == NULL) {
4639 error = got_error_from_errno("view_open");
4640 goto done;
4643 if (worktree) {
4644 error = set_tog_base_commit(repo, worktree);
4645 if (error != NULL)
4646 goto done;
4649 error = open_log_view(view, start_id, repo, head_ref_name,
4650 in_repo_path, log_branches, worktree);
4651 if (error)
4652 goto done;
4654 if (worktree) {
4655 /* The work tree will be closed by the log thread. */
4656 worktree = NULL;
4659 error = view_loop(view);
4661 done:
4662 free(tog_base_commit.id);
4663 free(keyword_idstr);
4664 free(in_repo_path);
4665 free(repo_path);
4666 free(cwd);
4667 free(start_id);
4668 free(label);
4669 if (ref)
4670 got_ref_close(ref);
4671 if (repo) {
4672 const struct got_error *close_err = got_repo_close(repo);
4673 if (error == NULL)
4674 error = close_err;
4676 if (worktree)
4677 got_worktree_close(worktree);
4678 if (pack_fds) {
4679 const struct got_error *pack_err =
4680 got_repo_pack_fds_close(pack_fds);
4681 if (error == NULL)
4682 error = pack_err;
4684 tog_free_refs();
4685 return error;
4688 __dead static void
4689 usage_diff(void)
4691 endwin();
4692 fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4693 "object1 object2\n", getprogname());
4694 exit(1);
4697 static int
4698 match_line(const char *line, regex_t *regex, size_t nmatch,
4699 regmatch_t *regmatch)
4701 return regexec(regex, line, nmatch, regmatch, 0) == 0;
4704 static struct tog_color *
4705 match_color(struct tog_colors *colors, const char *line)
4707 struct tog_color *tc = NULL;
4709 STAILQ_FOREACH(tc, colors, entry) {
4710 if (match_line(line, &tc->regex, 0, NULL))
4711 return tc;
4714 return NULL;
4717 static const struct got_error *
4718 add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4719 WINDOW *window, int skipcol, regmatch_t *regmatch)
4721 const struct got_error *err = NULL;
4722 char *exstr = NULL;
4723 wchar_t *wline = NULL;
4724 int rme, rms, n, width, scrollx;
4725 int width0 = 0, width1 = 0, width2 = 0;
4726 char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4728 *wtotal = 0;
4730 rms = regmatch->rm_so;
4731 rme = regmatch->rm_eo;
4733 err = expand_tab(&exstr, line);
4734 if (err)
4735 return err;
4737 /* Split the line into 3 segments, according to match offsets. */
4738 seg0 = strndup(exstr, rms);
4739 if (seg0 == NULL) {
4740 err = got_error_from_errno("strndup");
4741 goto done;
4743 seg1 = strndup(exstr + rms, rme - rms);
4744 if (seg1 == NULL) {
4745 err = got_error_from_errno("strndup");
4746 goto done;
4748 seg2 = strdup(exstr + rme);
4749 if (seg2 == NULL) {
4750 err = got_error_from_errno("strndup");
4751 goto done;
4754 /* draw up to matched token if we haven't scrolled past it */
4755 err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4756 col_tab_align, 1);
4757 if (err)
4758 goto done;
4759 n = MAX(width0 - skipcol, 0);
4760 if (n) {
4761 free(wline);
4762 err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4763 wlimit, col_tab_align, 1);
4764 if (err)
4765 goto done;
4766 waddwstr(window, &wline[scrollx]);
4767 wlimit -= width;
4768 *wtotal += width;
4771 if (wlimit > 0) {
4772 int i = 0, w = 0;
4773 size_t wlen;
4775 free(wline);
4776 err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4777 col_tab_align, 1);
4778 if (err)
4779 goto done;
4780 wlen = wcslen(wline);
4781 while (i < wlen) {
4782 width = wcwidth(wline[i]);
4783 if (width == -1) {
4784 /* should not happen, tabs are expanded */
4785 err = got_error(GOT_ERR_RANGE);
4786 goto done;
4788 if (width0 + w + width > skipcol)
4789 break;
4790 w += width;
4791 i++;
4793 /* draw (visible part of) matched token (if scrolled into it) */
4794 if (width1 - w > 0) {
4795 wattron(window, A_STANDOUT);
4796 waddwstr(window, &wline[i]);
4797 wattroff(window, A_STANDOUT);
4798 wlimit -= (width1 - w);
4799 *wtotal += (width1 - w);
4803 if (wlimit > 0) { /* draw rest of line */
4804 free(wline);
4805 if (skipcol > width0 + width1) {
4806 err = format_line(&wline, &width2, &scrollx, seg2,
4807 skipcol - (width0 + width1), wlimit,
4808 col_tab_align, 1);
4809 if (err)
4810 goto done;
4811 waddwstr(window, &wline[scrollx]);
4812 } else {
4813 err = format_line(&wline, &width2, NULL, seg2, 0,
4814 wlimit, col_tab_align, 1);
4815 if (err)
4816 goto done;
4817 waddwstr(window, wline);
4819 *wtotal += width2;
4821 done:
4822 free(wline);
4823 free(exstr);
4824 free(seg0);
4825 free(seg1);
4826 free(seg2);
4827 return err;
4830 static int
4831 gotoline(struct tog_view *view, int *lineno, int *nprinted)
4833 FILE *f = NULL;
4834 int *eof, *first, *selected;
4836 if (view->type == TOG_VIEW_DIFF) {
4837 struct tog_diff_view_state *s = &view->state.diff;
4839 first = &s->first_displayed_line;
4840 selected = first;
4841 eof = &s->eof;
4842 f = s->f;
4843 } else if (view->type == TOG_VIEW_HELP) {
4844 struct tog_help_view_state *s = &view->state.help;
4846 first = &s->first_displayed_line;
4847 selected = first;
4848 eof = &s->eof;
4849 f = s->f;
4850 } else if (view->type == TOG_VIEW_BLAME) {
4851 struct tog_blame_view_state *s = &view->state.blame;
4853 first = &s->first_displayed_line;
4854 selected = &s->selected_line;
4855 eof = &s->eof;
4856 f = s->blame.f;
4857 } else
4858 return 0;
4860 /* Center gline in the middle of the page like vi(1). */
4861 if (*lineno < view->gline - (view->nlines - 3) / 2)
4862 return 0;
4863 if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4864 rewind(f);
4865 *eof = 0;
4866 *first = 1;
4867 *lineno = 0;
4868 *nprinted = 0;
4869 return 0;
4872 *selected = view->gline <= (view->nlines - 3) / 2 ?
4873 view->gline : (view->nlines - 3) / 2 + 1;
4874 view->gline = 0;
4876 return 1;
4879 static const struct got_error *
4880 draw_file(struct tog_view *view, const char *header)
4882 struct tog_diff_view_state *s = &view->state.diff;
4883 regmatch_t *regmatch = &view->regmatch;
4884 const struct got_error *err;
4885 int nprinted = 0;
4886 char *line;
4887 size_t linesize = 0;
4888 ssize_t linelen;
4889 wchar_t *wline;
4890 int width;
4891 int max_lines = view->nlines;
4892 int nlines = s->nlines;
4893 off_t line_offset;
4895 s->lineno = s->first_displayed_line - 1;
4896 line_offset = s->lines[s->first_displayed_line - 1].offset;
4897 if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4898 return got_error_from_errno("fseek");
4900 werase(view->window);
4902 if (view->gline > s->nlines - 1)
4903 view->gline = s->nlines - 1;
4905 if (header) {
4906 int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4907 1 : view->gline - (view->nlines - 3) / 2 :
4908 s->lineno + s->selected_line;
4910 if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4911 return got_error_from_errno("asprintf");
4912 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4913 0, 0);
4914 free(line);
4915 if (err)
4916 return err;
4918 if (view_needs_focus_indication(view))
4919 wstandout(view->window);
4920 waddwstr(view->window, wline);
4921 free(wline);
4922 wline = NULL;
4923 while (width++ < view->ncols)
4924 waddch(view->window, ' ');
4925 if (view_needs_focus_indication(view))
4926 wstandend(view->window);
4928 if (max_lines <= 1)
4929 return NULL;
4930 max_lines--;
4933 s->eof = 0;
4934 view->maxx = 0;
4935 line = NULL;
4936 while (max_lines > 0 && nprinted < max_lines) {
4937 enum got_diff_line_type linetype;
4938 attr_t attr = 0;
4940 linelen = getline(&line, &linesize, s->f);
4941 if (linelen == -1) {
4942 if (feof(s->f)) {
4943 s->eof = 1;
4944 break;
4946 free(line);
4947 return got_ferror(s->f, GOT_ERR_IO);
4950 if (++s->lineno < s->first_displayed_line)
4951 continue;
4952 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4953 continue;
4954 if (s->lineno == view->hiline)
4955 attr = A_STANDOUT;
4957 /* Set view->maxx based on full line length. */
4958 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4959 view->x ? 1 : 0);
4960 if (err) {
4961 free(line);
4962 return err;
4964 view->maxx = MAX(view->maxx, width);
4965 free(wline);
4966 wline = NULL;
4968 linetype = s->lines[s->lineno].type;
4969 if (linetype > GOT_DIFF_LINE_LOGMSG &&
4970 linetype < GOT_DIFF_LINE_CONTEXT)
4971 attr |= COLOR_PAIR(linetype);
4972 if (attr)
4973 wattron(view->window, attr);
4974 if (s->first_displayed_line + nprinted == s->matched_line &&
4975 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4976 err = add_matched_line(&width, line, view->ncols, 0,
4977 view->window, view->x, regmatch);
4978 if (err) {
4979 free(line);
4980 return err;
4982 } else {
4983 int skip;
4984 err = format_line(&wline, &width, &skip, line,
4985 view->x, view->ncols, 0, view->x ? 1 : 0);
4986 if (err) {
4987 free(line);
4988 return err;
4990 waddwstr(view->window, &wline[skip]);
4991 free(wline);
4992 wline = NULL;
4994 if (s->lineno == view->hiline) {
4995 /* highlight full gline length */
4996 while (width++ < view->ncols)
4997 waddch(view->window, ' ');
4998 } else {
4999 if (width <= view->ncols - 1)
5000 waddch(view->window, '\n');
5002 if (attr)
5003 wattroff(view->window, attr);
5004 if (++nprinted == 1)
5005 s->first_displayed_line = s->lineno;
5007 free(line);
5008 if (nprinted >= 1)
5009 s->last_displayed_line = s->first_displayed_line +
5010 (nprinted - 1);
5011 else
5012 s->last_displayed_line = s->first_displayed_line;
5014 view_border(view);
5016 if (s->eof) {
5017 while (nprinted < view->nlines) {
5018 waddch(view->window, '\n');
5019 nprinted++;
5022 err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
5023 view->ncols, 0, 0);
5024 if (err) {
5025 return err;
5028 wstandout(view->window);
5029 waddwstr(view->window, wline);
5030 free(wline);
5031 wline = NULL;
5032 wstandend(view->window);
5035 return NULL;
5038 static char *
5039 get_datestr(time_t *time, char *datebuf)
5041 struct tm mytm, *tm;
5042 char *p, *s;
5044 tm = gmtime_r(time, &mytm);
5045 if (tm == NULL)
5046 return NULL;
5047 s = asctime_r(tm, datebuf);
5048 if (s == NULL)
5049 return NULL;
5050 p = strchr(s, '\n');
5051 if (p)
5052 *p = '\0';
5053 return s;
5056 static const struct got_error *
5057 add_line_metadata(struct got_diff_line **lines, size_t *nlines,
5058 off_t off, uint8_t type)
5060 struct got_diff_line *p;
5062 p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
5063 if (p == NULL)
5064 return got_error_from_errno("reallocarray");
5065 *lines = p;
5066 (*lines)[*nlines].offset = off;
5067 (*lines)[*nlines].type = type;
5068 (*nlines)++;
5070 return NULL;
5073 static const struct got_error *
5074 cat_diff(FILE *dst, FILE *src, struct got_diff_line **d_lines, size_t *d_nlines,
5075 struct got_diff_line *s_lines, size_t s_nlines)
5077 struct got_diff_line *p;
5078 char buf[BUFSIZ];
5079 size_t i, r;
5081 if (fseeko(src, 0L, SEEK_SET) == -1)
5082 return got_error_from_errno("fseeko");
5084 for (;;) {
5085 r = fread(buf, 1, sizeof(buf), src);
5086 if (r == 0) {
5087 if (ferror(src))
5088 return got_error_from_errno("fread");
5089 if (feof(src))
5090 break;
5092 if (fwrite(buf, 1, r, dst) != r)
5093 return got_ferror(dst, GOT_ERR_IO);
5096 if (s_nlines == 0 && *d_nlines == 0)
5097 return NULL;
5100 * If commit info was in dst, increment line offsets
5101 * of the appended diff content, but skip s_lines[0]
5102 * because offset zero is already in *d_lines.
5104 if (*d_nlines > 0) {
5105 for (i = 1; i < s_nlines; ++i)
5106 s_lines[i].offset += (*d_lines)[*d_nlines - 1].offset;
5108 if (s_nlines > 0) {
5109 --s_nlines;
5110 ++s_lines;
5114 p = reallocarray(*d_lines, *d_nlines + s_nlines, sizeof(*p));
5115 if (p == NULL) {
5116 /* d_lines is freed in close_diff_view() */
5117 return got_error_from_errno("reallocarray");
5120 *d_lines = p;
5122 memcpy(*d_lines + *d_nlines, s_lines, s_nlines * sizeof(*s_lines));
5123 *d_nlines += s_nlines;
5125 return NULL;
5128 static const struct got_error *
5129 write_commit_info(struct got_diff_line **lines, size_t *nlines,
5130 struct got_object_id *commit_id, struct got_reflist_head *refs,
5131 struct got_repository *repo, int ignore_ws, int force_text_diff,
5132 struct got_diffstat_cb_arg *dsa, FILE *outfile)
5134 const struct got_error *err = NULL;
5135 char datebuf[26], *datestr;
5136 struct got_commit_object *commit;
5137 char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
5138 time_t committer_time;
5139 const char *author, *committer;
5140 char *refs_str = NULL;
5141 struct got_pathlist_entry *pe;
5142 off_t outoff = 0;
5143 int n;
5145 err = build_refs_str(&refs_str, refs, commit_id, repo);
5146 if (err)
5147 return err;
5149 err = got_object_open_as_commit(&commit, repo, commit_id);
5150 if (err)
5151 return err;
5153 err = got_object_id_str(&id_str, commit_id);
5154 if (err) {
5155 err = got_error_from_errno("got_object_id_str");
5156 goto done;
5159 err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
5160 if (err)
5161 goto done;
5163 n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
5164 refs_str ? refs_str : "", refs_str ? ")" : "");
5165 if (n < 0) {
5166 err = got_error_from_errno("fprintf");
5167 goto done;
5169 outoff += n;
5170 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
5171 if (err)
5172 goto done;
5174 n = fprintf(outfile, "from: %s\n",
5175 got_object_commit_get_author(commit));
5176 if (n < 0) {
5177 err = got_error_from_errno("fprintf");
5178 goto done;
5180 outoff += n;
5181 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
5182 if (err)
5183 goto done;
5185 author = got_object_commit_get_author(commit);
5186 committer = got_object_commit_get_committer(commit);
5187 if (strcmp(author, committer) != 0) {
5188 n = fprintf(outfile, "via: %s\n", committer);
5189 if (n < 0) {
5190 err = got_error_from_errno("fprintf");
5191 goto done;
5193 outoff += n;
5194 err = add_line_metadata(lines, nlines, outoff,
5195 GOT_DIFF_LINE_AUTHOR);
5196 if (err)
5197 goto done;
5199 committer_time = got_object_commit_get_committer_time(commit);
5200 datestr = get_datestr(&committer_time, datebuf);
5201 if (datestr) {
5202 n = fprintf(outfile, "date: %s UTC\n", datestr);
5203 if (n < 0) {
5204 err = got_error_from_errno("fprintf");
5205 goto done;
5207 outoff += n;
5208 err = add_line_metadata(lines, nlines, outoff,
5209 GOT_DIFF_LINE_DATE);
5210 if (err)
5211 goto done;
5213 if (got_object_commit_get_nparents(commit) > 1) {
5214 const struct got_object_id_queue *parent_ids;
5215 struct got_object_qid *qid;
5216 int pn = 1;
5217 parent_ids = got_object_commit_get_parent_ids(commit);
5218 STAILQ_FOREACH(qid, parent_ids, entry) {
5219 err = got_object_id_str(&id_str, &qid->id);
5220 if (err)
5221 goto done;
5222 n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
5223 if (n < 0) {
5224 err = got_error_from_errno("fprintf");
5225 goto done;
5227 outoff += n;
5228 err = add_line_metadata(lines, nlines, outoff,
5229 GOT_DIFF_LINE_META);
5230 if (err)
5231 goto done;
5232 free(id_str);
5233 id_str = NULL;
5237 err = got_object_commit_get_logmsg(&logmsg, commit);
5238 if (err)
5239 goto done;
5240 s = logmsg;
5241 while ((line = strsep(&s, "\n")) != NULL) {
5242 n = fprintf(outfile, "%s\n", line);
5243 if (n < 0) {
5244 err = got_error_from_errno("fprintf");
5245 goto done;
5247 outoff += n;
5248 err = add_line_metadata(lines, nlines, outoff,
5249 GOT_DIFF_LINE_LOGMSG);
5250 if (err)
5251 goto done;
5254 TAILQ_FOREACH(pe, dsa->paths, entry) {
5255 struct got_diff_changed_path *cp = pe->data;
5256 int pad = dsa->max_path_len - pe->path_len + 1;
5258 n = fprintf(outfile, "%c %s%*c | %*d+ %*d-\n", cp->status,
5259 pe->path, pad, ' ', dsa->add_cols + 1, cp->add,
5260 dsa->rm_cols + 1, cp->rm);
5261 if (n < 0) {
5262 err = got_error_from_errno("fprintf");
5263 goto done;
5265 outoff += n;
5266 err = add_line_metadata(lines, nlines, outoff,
5267 GOT_DIFF_LINE_CHANGES);
5268 if (err)
5269 goto done;
5272 fputc('\n', outfile);
5273 outoff++;
5274 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
5275 if (err)
5276 goto done;
5278 n = fprintf(outfile,
5279 "%d file%s changed, %d insertion%s(+), %d deletion%s(-)\n",
5280 dsa->nfiles, dsa->nfiles > 1 ? "s" : "", dsa->ins,
5281 dsa->ins != 1 ? "s" : "", dsa->del, dsa->del != 1 ? "s" : "");
5282 if (n < 0) {
5283 err = got_error_from_errno("fprintf");
5284 goto done;
5286 outoff += n;
5287 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
5288 if (err)
5289 goto done;
5291 fputc('\n', outfile);
5292 outoff++;
5293 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
5294 done:
5295 free(id_str);
5296 free(logmsg);
5297 free(refs_str);
5298 got_object_commit_close(commit);
5299 if (err) {
5300 free(*lines);
5301 *lines = NULL;
5302 *nlines = 0;
5304 return err;
5307 static const struct got_error *
5308 create_diff(struct tog_diff_view_state *s)
5310 const struct got_error *err = NULL;
5311 FILE *f = NULL, *tmp_diff_file = NULL;
5312 int obj_type;
5313 struct got_diff_line *lines = NULL;
5314 struct got_pathlist_head changed_paths;
5315 struct got_commit_object *commit2 = NULL;
5317 TAILQ_INIT(&changed_paths);
5319 free(s->lines);
5320 s->lines = malloc(sizeof(*s->lines));
5321 if (s->lines == NULL)
5322 return got_error_from_errno("malloc");
5323 s->nlines = 0;
5325 f = got_opentemp();
5326 if (f == NULL) {
5327 err = got_error_from_errno("got_opentemp");
5328 goto done;
5330 tmp_diff_file = got_opentemp();
5331 if (tmp_diff_file == NULL) {
5332 err = got_error_from_errno("got_opentemp");
5333 goto done;
5335 if (s->f && fclose(s->f) == EOF) {
5336 err = got_error_from_errno("fclose");
5337 goto done;
5339 s->f = f;
5341 if (s->id1)
5342 err = got_object_get_type(&obj_type, s->repo, s->id1);
5343 else
5344 err = got_object_get_type(&obj_type, s->repo, s->id2);
5345 if (err)
5346 goto done;
5348 switch (obj_type) {
5349 case GOT_OBJ_TYPE_BLOB:
5350 err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
5351 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
5352 s->label1, s->label2, tog_diff_algo, s->diff_context,
5353 s->ignore_whitespace, s->force_text_diff, NULL, s->repo,
5354 s->f);
5355 break;
5356 case GOT_OBJ_TYPE_TREE:
5357 err = got_diff_objects_as_trees(&s->lines, &s->nlines,
5358 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
5359 tog_diff_algo, s->diff_context, s->ignore_whitespace,
5360 s->force_text_diff, NULL, s->repo, s->f);
5361 break;
5362 case GOT_OBJ_TYPE_COMMIT: {
5363 const struct got_object_id_queue *parent_ids;
5364 struct got_object_qid *pid;
5365 struct got_reflist_head *refs;
5366 size_t nlines = 0;
5367 struct got_diffstat_cb_arg dsa = {
5368 0, 0, 0, 0, 0, 0,
5369 &changed_paths,
5370 s->ignore_whitespace,
5371 s->force_text_diff,
5372 tog_diff_algo
5375 lines = malloc(sizeof(*lines));
5376 if (lines == NULL) {
5377 err = got_error_from_errno("malloc");
5378 goto done;
5381 /* build diff first in tmp file then append to commit info */
5382 err = got_diff_objects_as_commits(&lines, &nlines,
5383 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
5384 tog_diff_algo, s->diff_context, s->ignore_whitespace,
5385 s->force_text_diff, &dsa, s->repo, tmp_diff_file);
5386 if (err)
5387 break;
5389 refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
5390 /* Show commit info if we're diffing to a parent/root commit. */
5391 if (s->id1 == NULL) {
5392 err = write_commit_info(&s->lines, &s->nlines, s->id2,
5393 refs, s->repo, s->ignore_whitespace,
5394 s->force_text_diff, &dsa, s->f);
5395 if (err)
5396 goto done;
5397 } else {
5398 err = got_object_open_as_commit(&commit2, s->repo,
5399 s->id2);
5400 if (err)
5401 goto done;
5403 parent_ids = got_object_commit_get_parent_ids(commit2);
5404 STAILQ_FOREACH(pid, parent_ids, entry) {
5405 if (got_object_id_cmp(s->id1, &pid->id) == 0) {
5406 err = write_commit_info(&s->lines,
5407 &s->nlines, s->id2, refs, s->repo,
5408 s->ignore_whitespace,
5409 s->force_text_diff, &dsa, s->f);
5410 if (err)
5411 goto done;
5412 break;
5417 err = cat_diff(s->f, tmp_diff_file, &s->lines, &s->nlines,
5418 lines, nlines);
5419 break;
5421 default:
5422 err = got_error(GOT_ERR_OBJ_TYPE);
5423 break;
5425 done:
5426 free(lines);
5427 if (commit2 != NULL)
5428 got_object_commit_close(commit2);
5429 got_pathlist_free(&changed_paths, GOT_PATHLIST_FREE_ALL);
5430 if (s->f && fflush(s->f) != 0 && err == NULL)
5431 err = got_error_from_errno("fflush");
5432 if (tmp_diff_file && fclose(tmp_diff_file) == EOF && err == NULL)
5433 err = got_error_from_errno("fclose");
5434 return err;
5437 static void
5438 diff_view_indicate_progress(struct tog_view *view)
5440 mvwaddstr(view->window, 0, 0, "diffing...");
5441 update_panels();
5442 doupdate();
5445 static const struct got_error *
5446 search_start_diff_view(struct tog_view *view)
5448 struct tog_diff_view_state *s = &view->state.diff;
5450 s->matched_line = 0;
5451 return NULL;
5454 static void
5455 search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
5456 size_t *nlines, int **first, int **last, int **match, int **selected)
5458 struct tog_diff_view_state *s = &view->state.diff;
5460 *f = s->f;
5461 *nlines = s->nlines;
5462 *line_offsets = NULL;
5463 *match = &s->matched_line;
5464 *first = &s->first_displayed_line;
5465 *last = &s->last_displayed_line;
5466 *selected = &s->selected_line;
5469 static const struct got_error *
5470 search_next_view_match(struct tog_view *view)
5472 const struct got_error *err = NULL;
5473 FILE *f;
5474 int lineno;
5475 char *line = NULL;
5476 size_t linesize = 0;
5477 ssize_t linelen;
5478 off_t *line_offsets;
5479 size_t nlines = 0;
5480 int *first, *last, *match, *selected;
5482 if (!view->search_setup)
5483 return got_error_msg(GOT_ERR_NOT_IMPL,
5484 "view search not supported");
5485 view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
5486 &match, &selected);
5488 if (!view->searching) {
5489 view->search_next_done = TOG_SEARCH_HAVE_MORE;
5490 return NULL;
5493 if (*match) {
5494 if (view->searching == TOG_SEARCH_FORWARD)
5495 lineno = *first + 1;
5496 else
5497 lineno = *first - 1;
5498 } else
5499 lineno = *first - 1 + *selected;
5501 while (1) {
5502 off_t offset;
5504 if (lineno <= 0 || lineno > nlines) {
5505 if (*match == 0) {
5506 view->search_next_done = TOG_SEARCH_HAVE_MORE;
5507 break;
5510 if (view->searching == TOG_SEARCH_FORWARD)
5511 lineno = 1;
5512 else
5513 lineno = nlines;
5516 offset = view->type == TOG_VIEW_DIFF ?
5517 view->state.diff.lines[lineno - 1].offset :
5518 line_offsets[lineno - 1];
5519 if (fseeko(f, offset, SEEK_SET) != 0) {
5520 free(line);
5521 return got_error_from_errno("fseeko");
5523 linelen = getline(&line, &linesize, f);
5524 if (linelen != -1) {
5525 char *exstr;
5526 err = expand_tab(&exstr, line);
5527 if (err)
5528 break;
5529 if (match_line(exstr, &view->regex, 1,
5530 &view->regmatch)) {
5531 view->search_next_done = TOG_SEARCH_HAVE_MORE;
5532 *match = lineno;
5533 free(exstr);
5534 break;
5536 free(exstr);
5538 if (view->searching == TOG_SEARCH_FORWARD)
5539 lineno++;
5540 else
5541 lineno--;
5543 free(line);
5545 if (*match) {
5546 *first = *match;
5547 *selected = 1;
5550 return err;
5553 static const struct got_error *
5554 close_diff_view(struct tog_view *view)
5556 const struct got_error *err = NULL;
5557 struct tog_diff_view_state *s = &view->state.diff;
5559 free(s->id1);
5560 s->id1 = NULL;
5561 free(s->id2);
5562 s->id2 = NULL;
5563 if (s->f && fclose(s->f) == EOF)
5564 err = got_error_from_errno("fclose");
5565 s->f = NULL;
5566 if (s->f1 && fclose(s->f1) == EOF && err == NULL)
5567 err = got_error_from_errno("fclose");
5568 s->f1 = NULL;
5569 if (s->f2 && fclose(s->f2) == EOF && err == NULL)
5570 err = got_error_from_errno("fclose");
5571 s->f2 = NULL;
5572 if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
5573 err = got_error_from_errno("close");
5574 s->fd1 = -1;
5575 if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
5576 err = got_error_from_errno("close");
5577 s->fd2 = -1;
5578 free(s->lines);
5579 s->lines = NULL;
5580 s->nlines = 0;
5581 return err;
5584 static const struct got_error *
5585 open_diff_view(struct tog_view *view, struct got_object_id *id1,
5586 struct got_object_id *id2, const char *label1, const char *label2,
5587 int diff_context, int ignore_whitespace, int force_text_diff,
5588 struct tog_view *parent_view, struct got_repository *repo)
5590 const struct got_error *err;
5591 struct tog_diff_view_state *s = &view->state.diff;
5593 memset(s, 0, sizeof(*s));
5594 s->fd1 = -1;
5595 s->fd2 = -1;
5597 if (id1 != NULL && id2 != NULL) {
5598 int type1, type2;
5600 err = got_object_get_type(&type1, repo, id1);
5601 if (err)
5602 goto done;
5603 err = got_object_get_type(&type2, repo, id2);
5604 if (err)
5605 goto done;
5607 if (type1 != type2) {
5608 err = got_error(GOT_ERR_OBJ_TYPE);
5609 goto done;
5612 s->first_displayed_line = 1;
5613 s->last_displayed_line = view->nlines;
5614 s->selected_line = 1;
5615 s->repo = repo;
5616 s->label1 = label1;
5617 s->label2 = label2;
5619 if (id1) {
5620 s->id1 = got_object_id_dup(id1);
5621 if (s->id1 == NULL) {
5622 err = got_error_from_errno("got_object_id_dup");
5623 goto done;
5625 } else
5626 s->id1 = NULL;
5628 s->id2 = got_object_id_dup(id2);
5629 if (s->id2 == NULL) {
5630 err = got_error_from_errno("got_object_id_dup");
5631 goto done;
5634 s->f1 = got_opentemp();
5635 if (s->f1 == NULL) {
5636 err = got_error_from_errno("got_opentemp");
5637 goto done;
5640 s->f2 = got_opentemp();
5641 if (s->f2 == NULL) {
5642 err = got_error_from_errno("got_opentemp");
5643 goto done;
5646 s->fd1 = got_opentempfd();
5647 if (s->fd1 == -1) {
5648 err = got_error_from_errno("got_opentempfd");
5649 goto done;
5652 s->fd2 = got_opentempfd();
5653 if (s->fd2 == -1) {
5654 err = got_error_from_errno("got_opentempfd");
5655 goto done;
5658 s->diff_context = diff_context;
5659 s->ignore_whitespace = ignore_whitespace;
5660 s->force_text_diff = force_text_diff;
5661 s->parent_view = parent_view;
5662 s->repo = repo;
5664 if (has_colors() && getenv("TOG_COLORS") != NULL && !using_mock_io) {
5665 int rc;
5667 rc = init_pair(GOT_DIFF_LINE_MINUS,
5668 get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5669 if (rc != ERR)
5670 rc = init_pair(GOT_DIFF_LINE_PLUS,
5671 get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5672 if (rc != ERR)
5673 rc = init_pair(GOT_DIFF_LINE_HUNK,
5674 get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5675 if (rc != ERR)
5676 rc = init_pair(GOT_DIFF_LINE_META,
5677 get_color_value("TOG_COLOR_DIFF_META"), -1);
5678 if (rc != ERR)
5679 rc = init_pair(GOT_DIFF_LINE_CHANGES,
5680 get_color_value("TOG_COLOR_DIFF_META"), -1);
5681 if (rc != ERR)
5682 rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5683 get_color_value("TOG_COLOR_DIFF_META"), -1);
5684 if (rc != ERR)
5685 rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5686 get_color_value("TOG_COLOR_DIFF_META"), -1);
5687 if (rc != ERR)
5688 rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5689 get_color_value("TOG_COLOR_AUTHOR"), -1);
5690 if (rc != ERR)
5691 rc = init_pair(GOT_DIFF_LINE_DATE,
5692 get_color_value("TOG_COLOR_DATE"), -1);
5693 if (rc == ERR) {
5694 err = got_error(GOT_ERR_RANGE);
5695 goto done;
5699 if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5700 view_is_splitscreen(view))
5701 show_log_view(parent_view); /* draw border */
5702 diff_view_indicate_progress(view);
5704 err = create_diff(s);
5706 view->show = show_diff_view;
5707 view->input = input_diff_view;
5708 view->reset = reset_diff_view;
5709 view->close = close_diff_view;
5710 view->search_start = search_start_diff_view;
5711 view->search_setup = search_setup_diff_view;
5712 view->search_next = search_next_view_match;
5713 done:
5714 if (err) {
5715 if (view->close == NULL)
5716 close_diff_view(view);
5717 view_close(view);
5719 return err;
5722 static const struct got_error *
5723 show_diff_view(struct tog_view *view)
5725 const struct got_error *err;
5726 struct tog_diff_view_state *s = &view->state.diff;
5727 char *id_str1 = NULL, *id_str2, *header;
5728 const char *label1, *label2;
5730 if (s->id1) {
5731 err = got_object_id_str(&id_str1, s->id1);
5732 if (err)
5733 return err;
5734 label1 = s->label1 ? s->label1 : id_str1;
5735 } else
5736 label1 = "/dev/null";
5738 err = got_object_id_str(&id_str2, s->id2);
5739 if (err)
5740 return err;
5741 label2 = s->label2 ? s->label2 : id_str2;
5743 if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5744 err = got_error_from_errno("asprintf");
5745 free(id_str1);
5746 free(id_str2);
5747 return err;
5749 free(id_str1);
5750 free(id_str2);
5752 err = draw_file(view, header);
5753 free(header);
5754 return err;
5757 static const struct got_error *
5758 set_selected_commit(struct tog_diff_view_state *s,
5759 struct commit_queue_entry *entry)
5761 const struct got_error *err;
5762 const struct got_object_id_queue *parent_ids;
5763 struct got_commit_object *selected_commit;
5764 struct got_object_qid *pid;
5766 free(s->id2);
5767 s->id2 = got_object_id_dup(entry->id);
5768 if (s->id2 == NULL)
5769 return got_error_from_errno("got_object_id_dup");
5771 err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5772 if (err)
5773 return err;
5774 parent_ids = got_object_commit_get_parent_ids(selected_commit);
5775 free(s->id1);
5776 pid = STAILQ_FIRST(parent_ids);
5777 s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5778 got_object_commit_close(selected_commit);
5779 return NULL;
5782 static const struct got_error *
5783 reset_diff_view(struct tog_view *view)
5785 struct tog_diff_view_state *s = &view->state.diff;
5787 view->count = 0;
5788 wclear(view->window);
5789 s->first_displayed_line = 1;
5790 s->last_displayed_line = view->nlines;
5791 s->matched_line = 0;
5792 diff_view_indicate_progress(view);
5793 return create_diff(s);
5796 static void
5797 diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5799 int start, i;
5801 i = start = s->first_displayed_line - 1;
5803 while (s->lines[i].type != type) {
5804 if (i == 0)
5805 i = s->nlines - 1;
5806 if (--i == start)
5807 return; /* do nothing, requested type not in file */
5810 s->selected_line = 1;
5811 s->first_displayed_line = i;
5814 static void
5815 diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5817 int start, i;
5819 i = start = s->first_displayed_line + 1;
5821 while (s->lines[i].type != type) {
5822 if (i == s->nlines - 1)
5823 i = 0;
5824 if (++i == start)
5825 return; /* do nothing, requested type not in file */
5828 s->selected_line = 1;
5829 s->first_displayed_line = i;
5832 static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5833 int, int, int);
5834 static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5835 int, int);
5837 static const struct got_error *
5838 input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5840 const struct got_error *err = NULL;
5841 struct tog_diff_view_state *s = &view->state.diff;
5842 struct tog_log_view_state *ls;
5843 struct commit_queue_entry *old_selected_entry;
5844 char *line = NULL;
5845 size_t linesize = 0;
5846 ssize_t linelen;
5847 int i, nscroll = view->nlines - 1, up = 0;
5849 s->lineno = s->first_displayed_line - 1 + s->selected_line;
5851 switch (ch) {
5852 case '0':
5853 case '$':
5854 case KEY_RIGHT:
5855 case 'l':
5856 case KEY_LEFT:
5857 case 'h':
5858 horizontal_scroll_input(view, ch);
5859 break;
5860 case 'a':
5861 case 'w':
5862 if (ch == 'a') {
5863 s->force_text_diff = !s->force_text_diff;
5864 view->action = s->force_text_diff ?
5865 "force ASCII text enabled" :
5866 "force ASCII text disabled";
5868 else if (ch == 'w') {
5869 s->ignore_whitespace = !s->ignore_whitespace;
5870 view->action = s->ignore_whitespace ?
5871 "ignore whitespace enabled" :
5872 "ignore whitespace disabled";
5874 err = reset_diff_view(view);
5875 break;
5876 case 'g':
5877 case KEY_HOME:
5878 s->first_displayed_line = 1;
5879 view->count = 0;
5880 break;
5881 case 'G':
5882 case KEY_END:
5883 view->count = 0;
5884 if (s->eof)
5885 break;
5887 s->first_displayed_line = (s->nlines - view->nlines) + 2;
5888 s->eof = 1;
5889 break;
5890 case 'k':
5891 case KEY_UP:
5892 case CTRL('p'):
5893 if (s->first_displayed_line > 1)
5894 s->first_displayed_line--;
5895 else
5896 view->count = 0;
5897 break;
5898 case CTRL('u'):
5899 case 'u':
5900 nscroll /= 2;
5901 /* FALL THROUGH */
5902 case KEY_PPAGE:
5903 case CTRL('b'):
5904 case 'b':
5905 if (s->first_displayed_line == 1) {
5906 view->count = 0;
5907 break;
5909 i = 0;
5910 while (i++ < nscroll && s->first_displayed_line > 1)
5911 s->first_displayed_line--;
5912 break;
5913 case 'j':
5914 case KEY_DOWN:
5915 case CTRL('n'):
5916 if (!s->eof)
5917 s->first_displayed_line++;
5918 else
5919 view->count = 0;
5920 break;
5921 case CTRL('d'):
5922 case 'd':
5923 nscroll /= 2;
5924 /* FALL THROUGH */
5925 case KEY_NPAGE:
5926 case CTRL('f'):
5927 case 'f':
5928 case ' ':
5929 if (s->eof) {
5930 view->count = 0;
5931 break;
5933 i = 0;
5934 while (!s->eof && i++ < nscroll) {
5935 linelen = getline(&line, &linesize, s->f);
5936 s->first_displayed_line++;
5937 if (linelen == -1) {
5938 if (feof(s->f)) {
5939 s->eof = 1;
5940 } else
5941 err = got_ferror(s->f, GOT_ERR_IO);
5942 break;
5945 free(line);
5946 break;
5947 case '(':
5948 diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5949 break;
5950 case ')':
5951 diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5952 break;
5953 case '{':
5954 diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5955 break;
5956 case '}':
5957 diff_next_index(s, GOT_DIFF_LINE_HUNK);
5958 break;
5959 case '[':
5960 if (s->diff_context > 0) {
5961 s->diff_context--;
5962 s->matched_line = 0;
5963 diff_view_indicate_progress(view);
5964 err = create_diff(s);
5965 if (s->first_displayed_line + view->nlines - 1 >
5966 s->nlines) {
5967 s->first_displayed_line = 1;
5968 s->last_displayed_line = view->nlines;
5970 } else
5971 view->count = 0;
5972 break;
5973 case ']':
5974 if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5975 s->diff_context++;
5976 s->matched_line = 0;
5977 diff_view_indicate_progress(view);
5978 err = create_diff(s);
5979 } else
5980 view->count = 0;
5981 break;
5982 case '<':
5983 case ',':
5984 case 'K':
5985 up = 1;
5986 /* FALL THROUGH */
5987 case '>':
5988 case '.':
5989 case 'J':
5990 if (s->parent_view == NULL) {
5991 view->count = 0;
5992 break;
5994 s->parent_view->count = view->count;
5996 if (s->parent_view->type == TOG_VIEW_LOG) {
5997 ls = &s->parent_view->state.log;
5998 old_selected_entry = ls->selected_entry;
6000 err = input_log_view(NULL, s->parent_view,
6001 up ? KEY_UP : KEY_DOWN);
6002 if (err)
6003 break;
6004 view->count = s->parent_view->count;
6006 if (old_selected_entry == ls->selected_entry)
6007 break;
6009 err = set_selected_commit(s, ls->selected_entry);
6010 if (err)
6011 break;
6012 } else if (s->parent_view->type == TOG_VIEW_BLAME) {
6013 struct tog_blame_view_state *bs;
6014 struct got_object_id *id, *prev_id;
6016 bs = &s->parent_view->state.blame;
6017 prev_id = get_annotation_for_line(bs->blame.lines,
6018 bs->blame.nlines, bs->last_diffed_line);
6020 err = input_blame_view(&view, s->parent_view,
6021 up ? KEY_UP : KEY_DOWN);
6022 if (err)
6023 break;
6024 view->count = s->parent_view->count;
6026 if (prev_id == NULL)
6027 break;
6028 id = get_selected_commit_id(bs->blame.lines,
6029 bs->blame.nlines, bs->first_displayed_line,
6030 bs->selected_line);
6031 if (id == NULL)
6032 break;
6034 if (!got_object_id_cmp(prev_id, id))
6035 break;
6037 err = input_blame_view(&view, s->parent_view, KEY_ENTER);
6038 if (err)
6039 break;
6041 s->first_displayed_line = 1;
6042 s->last_displayed_line = view->nlines;
6043 s->matched_line = 0;
6044 view->x = 0;
6046 diff_view_indicate_progress(view);
6047 err = create_diff(s);
6048 break;
6049 default:
6050 view->count = 0;
6051 break;
6054 return err;
6057 static const struct got_error *
6058 cmd_diff(int argc, char *argv[])
6060 const struct got_error *error;
6061 struct got_repository *repo = NULL;
6062 struct got_worktree *worktree = NULL;
6063 struct got_object_id *id1 = NULL, *id2 = NULL;
6064 char *repo_path = NULL, *cwd = NULL;
6065 char *id_str1 = NULL, *id_str2 = NULL;
6066 char *keyword_idstr1 = NULL, *keyword_idstr2 = NULL;
6067 char *label1 = NULL, *label2 = NULL;
6068 int diff_context = 3, ignore_whitespace = 0;
6069 int ch, force_text_diff = 0;
6070 const char *errstr;
6071 struct tog_view *view;
6072 int *pack_fds = NULL;
6074 while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
6075 switch (ch) {
6076 case 'a':
6077 force_text_diff = 1;
6078 break;
6079 case 'C':
6080 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
6081 &errstr);
6082 if (errstr != NULL)
6083 errx(1, "number of context lines is %s: %s",
6084 errstr, errstr);
6085 break;
6086 case 'r':
6087 repo_path = realpath(optarg, NULL);
6088 if (repo_path == NULL)
6089 return got_error_from_errno2("realpath",
6090 optarg);
6091 got_path_strip_trailing_slashes(repo_path);
6092 break;
6093 case 'w':
6094 ignore_whitespace = 1;
6095 break;
6096 default:
6097 usage_diff();
6098 /* NOTREACHED */
6102 argc -= optind;
6103 argv += optind;
6105 if (argc == 0) {
6106 usage_diff(); /* TODO show local worktree changes */
6107 } else if (argc == 2) {
6108 id_str1 = argv[0];
6109 id_str2 = argv[1];
6110 } else
6111 usage_diff();
6113 error = got_repo_pack_fds_open(&pack_fds);
6114 if (error)
6115 goto done;
6117 if (repo_path == NULL) {
6118 cwd = getcwd(NULL, 0);
6119 if (cwd == NULL)
6120 return got_error_from_errno("getcwd");
6121 error = got_worktree_open(&worktree, cwd, NULL);
6122 if (error && error->code != GOT_ERR_NOT_WORKTREE)
6123 goto done;
6124 if (worktree)
6125 repo_path =
6126 strdup(got_worktree_get_repo_path(worktree));
6127 else
6128 repo_path = strdup(cwd);
6129 if (repo_path == NULL) {
6130 error = got_error_from_errno("strdup");
6131 goto done;
6135 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6136 if (error)
6137 goto done;
6139 init_curses();
6141 error = apply_unveil(got_repo_get_path(repo), NULL);
6142 if (error)
6143 goto done;
6145 error = tog_load_refs(repo, 0);
6146 if (error)
6147 goto done;
6149 if (id_str1 != NULL) {
6150 error = got_keyword_to_idstr(&keyword_idstr1, id_str1,
6151 repo, worktree);
6152 if (error != NULL)
6153 goto done;
6154 if (keyword_idstr1 != NULL)
6155 id_str1 = keyword_idstr1;
6157 if (id_str2 != NULL) {
6158 error = got_keyword_to_idstr(&keyword_idstr2, id_str2,
6159 repo, worktree);
6160 if (error != NULL)
6161 goto done;
6162 if (keyword_idstr2 != NULL)
6163 id_str2 = keyword_idstr2;
6166 error = got_repo_match_object_id(&id1, &label1, id_str1,
6167 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
6168 if (error)
6169 goto done;
6171 error = got_repo_match_object_id(&id2, &label2, id_str2,
6172 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
6173 if (error)
6174 goto done;
6176 view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
6177 if (view == NULL) {
6178 error = got_error_from_errno("view_open");
6179 goto done;
6181 error = open_diff_view(view, id1, id2, label1, label2, diff_context,
6182 ignore_whitespace, force_text_diff, NULL, repo);
6183 if (error)
6184 goto done;
6186 if (worktree) {
6187 error = set_tog_base_commit(repo, worktree);
6188 if (error != NULL)
6189 goto done;
6191 /* Release work tree lock. */
6192 got_worktree_close(worktree);
6193 worktree = NULL;
6196 error = view_loop(view);
6198 done:
6199 free(tog_base_commit.id);
6200 free(keyword_idstr1);
6201 free(keyword_idstr2);
6202 free(label1);
6203 free(label2);
6204 free(id1);
6205 free(id2);
6206 free(repo_path);
6207 free(cwd);
6208 if (repo) {
6209 const struct got_error *close_err = got_repo_close(repo);
6210 if (error == NULL)
6211 error = close_err;
6213 if (worktree)
6214 got_worktree_close(worktree);
6215 if (pack_fds) {
6216 const struct got_error *pack_err =
6217 got_repo_pack_fds_close(pack_fds);
6218 if (error == NULL)
6219 error = pack_err;
6221 tog_free_refs();
6222 return error;
6225 __dead static void
6226 usage_blame(void)
6228 endwin();
6229 fprintf(stderr,
6230 "usage: %s blame [-c commit] [-r repository-path] path\n",
6231 getprogname());
6232 exit(1);
6235 struct tog_blame_line {
6236 int annotated;
6237 struct got_object_id *id;
6240 static const struct got_error *
6241 draw_blame(struct tog_view *view)
6243 struct tog_blame_view_state *s = &view->state.blame;
6244 struct tog_blame *blame = &s->blame;
6245 regmatch_t *regmatch = &view->regmatch;
6246 const struct got_error *err;
6247 int lineno = 0, nprinted = 0;
6248 char *line = NULL;
6249 size_t linesize = 0;
6250 ssize_t linelen;
6251 wchar_t *wline;
6252 int width;
6253 struct tog_blame_line *blame_line;
6254 struct got_object_id *prev_id = NULL;
6255 char *id_str;
6256 struct tog_color *tc;
6258 err = got_object_id_str(&id_str, &s->blamed_commit->id);
6259 if (err)
6260 return err;
6262 rewind(blame->f);
6263 werase(view->window);
6265 if (asprintf(&line, "commit %s", id_str) == -1) {
6266 err = got_error_from_errno("asprintf");
6267 free(id_str);
6268 return err;
6271 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
6272 free(line);
6273 line = NULL;
6274 if (err)
6275 return err;
6276 if (view_needs_focus_indication(view))
6277 wstandout(view->window);
6278 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6279 if (tc)
6280 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6281 waddwstr(view->window, wline);
6282 while (width++ < view->ncols)
6283 waddch(view->window, ' ');
6284 if (tc)
6285 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6286 if (view_needs_focus_indication(view))
6287 wstandend(view->window);
6288 free(wline);
6289 wline = NULL;
6291 if (view->gline > blame->nlines)
6292 view->gline = blame->nlines;
6294 if (tog_io.wait_for_ui) {
6295 struct tog_blame_thread_args *bta = &s->blame.thread_args;
6296 int rc;
6298 rc = pthread_cond_wait(&bta->blame_complete, &tog_mutex);
6299 if (rc)
6300 return got_error_set_errno(rc, "pthread_cond_wait");
6301 tog_io.wait_for_ui = 0;
6304 if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
6305 s->first_displayed_line - 1 + s->selected_line, blame->nlines,
6306 s->blame_complete ? "" : "annotating... ", s->path) == -1) {
6307 free(id_str);
6308 return got_error_from_errno("asprintf");
6310 free(id_str);
6311 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
6312 free(line);
6313 line = NULL;
6314 if (err)
6315 return err;
6316 waddwstr(view->window, wline);
6317 free(wline);
6318 wline = NULL;
6319 if (width < view->ncols - 1)
6320 waddch(view->window, '\n');
6322 s->eof = 0;
6323 view->maxx = 0;
6324 while (nprinted < view->nlines - 2) {
6325 linelen = getline(&line, &linesize, blame->f);
6326 if (linelen == -1) {
6327 if (feof(blame->f)) {
6328 s->eof = 1;
6329 break;
6331 free(line);
6332 return got_ferror(blame->f, GOT_ERR_IO);
6334 if (++lineno < s->first_displayed_line)
6335 continue;
6336 if (view->gline && !gotoline(view, &lineno, &nprinted))
6337 continue;
6339 /* Set view->maxx based on full line length. */
6340 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
6341 if (err) {
6342 free(line);
6343 return err;
6345 free(wline);
6346 wline = NULL;
6347 view->maxx = MAX(view->maxx, width);
6349 if (nprinted == s->selected_line - 1)
6350 wstandout(view->window);
6352 if (blame->nlines > 0) {
6353 blame_line = &blame->lines[lineno - 1];
6354 if (blame_line->annotated && prev_id &&
6355 got_object_id_cmp(prev_id, blame_line->id) == 0 &&
6356 !(nprinted == s->selected_line - 1)) {
6357 waddstr(view->window, " ");
6358 } else if (blame_line->annotated) {
6359 char *id_str;
6360 err = got_object_id_str(&id_str,
6361 blame_line->id);
6362 if (err) {
6363 free(line);
6364 return err;
6366 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6367 if (tc)
6368 wattr_on(view->window,
6369 COLOR_PAIR(tc->colorpair), NULL);
6370 wprintw(view->window, "%.8s", id_str);
6371 if (tc)
6372 wattr_off(view->window,
6373 COLOR_PAIR(tc->colorpair), NULL);
6374 free(id_str);
6375 prev_id = blame_line->id;
6376 } else {
6377 waddstr(view->window, "........");
6378 prev_id = NULL;
6380 } else {
6381 waddstr(view->window, "........");
6382 prev_id = NULL;
6385 if (nprinted == s->selected_line - 1)
6386 wstandend(view->window);
6387 waddstr(view->window, " ");
6389 if (view->ncols <= 9) {
6390 width = 9;
6391 } else if (s->first_displayed_line + nprinted ==
6392 s->matched_line &&
6393 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
6394 err = add_matched_line(&width, line, view->ncols - 9, 9,
6395 view->window, view->x, regmatch);
6396 if (err) {
6397 free(line);
6398 return err;
6400 width += 9;
6401 } else {
6402 int skip;
6403 err = format_line(&wline, &width, &skip, line,
6404 view->x, view->ncols - 9, 9, 1);
6405 if (err) {
6406 free(line);
6407 return err;
6409 waddwstr(view->window, &wline[skip]);
6410 width += 9;
6411 free(wline);
6412 wline = NULL;
6415 if (width <= view->ncols - 1)
6416 waddch(view->window, '\n');
6417 if (++nprinted == 1)
6418 s->first_displayed_line = lineno;
6420 free(line);
6421 s->last_displayed_line = lineno;
6423 view_border(view);
6425 return NULL;
6428 static const struct got_error *
6429 blame_cb(void *arg, int nlines, int lineno,
6430 struct got_commit_object *commit, struct got_object_id *id)
6432 const struct got_error *err = NULL;
6433 struct tog_blame_cb_args *a = arg;
6434 struct tog_blame_line *line;
6435 int errcode;
6437 if (nlines != a->nlines ||
6438 (lineno != -1 && lineno < 1) || lineno > a->nlines)
6439 return got_error(GOT_ERR_RANGE);
6441 errcode = pthread_mutex_lock(&tog_mutex);
6442 if (errcode)
6443 return got_error_set_errno(errcode, "pthread_mutex_lock");
6445 if (*a->quit) { /* user has quit the blame view */
6446 err = got_error(GOT_ERR_ITER_COMPLETED);
6447 goto done;
6450 if (lineno == -1)
6451 goto done; /* no change in this commit */
6453 line = &a->lines[lineno - 1];
6454 if (line->annotated)
6455 goto done;
6457 line->id = got_object_id_dup(id);
6458 if (line->id == NULL) {
6459 err = got_error_from_errno("got_object_id_dup");
6460 goto done;
6462 line->annotated = 1;
6463 done:
6464 errcode = pthread_mutex_unlock(&tog_mutex);
6465 if (errcode)
6466 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
6467 return err;
6470 static void *
6471 blame_thread(void *arg)
6473 const struct got_error *err, *close_err;
6474 struct tog_blame_thread_args *ta = arg;
6475 struct tog_blame_cb_args *a = ta->cb_args;
6476 int errcode, fd1 = -1, fd2 = -1;
6477 FILE *f1 = NULL, *f2 = NULL;
6479 fd1 = got_opentempfd();
6480 if (fd1 == -1)
6481 return (void *)got_error_from_errno("got_opentempfd");
6483 fd2 = got_opentempfd();
6484 if (fd2 == -1) {
6485 err = got_error_from_errno("got_opentempfd");
6486 goto done;
6489 f1 = got_opentemp();
6490 if (f1 == NULL) {
6491 err = (void *)got_error_from_errno("got_opentemp");
6492 goto done;
6494 f2 = got_opentemp();
6495 if (f2 == NULL) {
6496 err = (void *)got_error_from_errno("got_opentemp");
6497 goto done;
6500 err = block_signals_used_by_main_thread();
6501 if (err)
6502 goto done;
6504 err = got_blame(ta->path, a->commit_id, ta->repo,
6505 tog_diff_algo, blame_cb, ta->cb_args,
6506 ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
6507 if (err && err->code == GOT_ERR_CANCELLED)
6508 err = NULL;
6510 errcode = pthread_mutex_lock(&tog_mutex);
6511 if (errcode) {
6512 err = got_error_set_errno(errcode, "pthread_mutex_lock");
6513 goto done;
6516 close_err = got_repo_close(ta->repo);
6517 if (err == NULL)
6518 err = close_err;
6519 ta->repo = NULL;
6520 *ta->complete = 1;
6522 if (tog_io.wait_for_ui) {
6523 errcode = pthread_cond_signal(&ta->blame_complete);
6524 if (errcode && err == NULL)
6525 err = got_error_set_errno(errcode,
6526 "pthread_cond_signal");
6529 errcode = pthread_mutex_unlock(&tog_mutex);
6530 if (errcode && err == NULL)
6531 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
6533 done:
6534 if (fd1 != -1 && close(fd1) == -1 && err == NULL)
6535 err = got_error_from_errno("close");
6536 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
6537 err = got_error_from_errno("close");
6538 if (f1 && fclose(f1) == EOF && err == NULL)
6539 err = got_error_from_errno("fclose");
6540 if (f2 && fclose(f2) == EOF && err == NULL)
6541 err = got_error_from_errno("fclose");
6543 return (void *)err;
6546 static struct got_object_id *
6547 get_selected_commit_id(struct tog_blame_line *lines, int nlines,
6548 int first_displayed_line, int selected_line)
6550 struct tog_blame_line *line;
6552 if (nlines <= 0)
6553 return NULL;
6555 line = &lines[first_displayed_line - 1 + selected_line - 1];
6556 if (!line->annotated)
6557 return NULL;
6559 return line->id;
6562 static struct got_object_id *
6563 get_annotation_for_line(struct tog_blame_line *lines, int nlines,
6564 int lineno)
6566 struct tog_blame_line *line;
6568 if (nlines <= 0 || lineno >= nlines)
6569 return NULL;
6571 line = &lines[lineno - 1];
6572 if (!line->annotated)
6573 return NULL;
6575 return line->id;
6578 static const struct got_error *
6579 stop_blame(struct tog_blame *blame)
6581 const struct got_error *err = NULL;
6582 int i;
6584 if (blame->thread) {
6585 int errcode;
6586 errcode = pthread_mutex_unlock(&tog_mutex);
6587 if (errcode)
6588 return got_error_set_errno(errcode,
6589 "pthread_mutex_unlock");
6590 errcode = pthread_join(blame->thread, (void **)&err);
6591 if (errcode)
6592 return got_error_set_errno(errcode, "pthread_join");
6593 errcode = pthread_mutex_lock(&tog_mutex);
6594 if (errcode)
6595 return got_error_set_errno(errcode,
6596 "pthread_mutex_lock");
6597 if (err && err->code == GOT_ERR_ITER_COMPLETED)
6598 err = NULL;
6599 blame->thread = 0; //NULL;
6601 if (blame->thread_args.repo) {
6602 const struct got_error *close_err;
6603 close_err = got_repo_close(blame->thread_args.repo);
6604 if (err == NULL)
6605 err = close_err;
6606 blame->thread_args.repo = NULL;
6608 if (blame->f) {
6609 if (fclose(blame->f) == EOF && err == NULL)
6610 err = got_error_from_errno("fclose");
6611 blame->f = NULL;
6613 if (blame->lines) {
6614 for (i = 0; i < blame->nlines; i++)
6615 free(blame->lines[i].id);
6616 free(blame->lines);
6617 blame->lines = NULL;
6619 free(blame->cb_args.commit_id);
6620 blame->cb_args.commit_id = NULL;
6621 if (blame->pack_fds) {
6622 const struct got_error *pack_err =
6623 got_repo_pack_fds_close(blame->pack_fds);
6624 if (err == NULL)
6625 err = pack_err;
6626 blame->pack_fds = NULL;
6628 free(blame->line_offsets);
6629 blame->line_offsets = NULL;
6630 return err;
6633 static const struct got_error *
6634 cancel_blame_view(void *arg)
6636 const struct got_error *err = NULL;
6637 int *done = arg;
6638 int errcode;
6640 errcode = pthread_mutex_lock(&tog_mutex);
6641 if (errcode)
6642 return got_error_set_errno(errcode,
6643 "pthread_mutex_unlock");
6645 if (*done)
6646 err = got_error(GOT_ERR_CANCELLED);
6648 errcode = pthread_mutex_unlock(&tog_mutex);
6649 if (errcode)
6650 return got_error_set_errno(errcode,
6651 "pthread_mutex_lock");
6653 return err;
6656 static const struct got_error *
6657 run_blame(struct tog_view *view)
6659 struct tog_blame_view_state *s = &view->state.blame;
6660 struct tog_blame *blame = &s->blame;
6661 const struct got_error *err = NULL;
6662 struct got_commit_object *commit = NULL;
6663 struct got_blob_object *blob = NULL;
6664 struct got_repository *thread_repo = NULL;
6665 struct got_object_id *obj_id = NULL;
6666 int obj_type, fd = -1;
6667 int *pack_fds = NULL;
6669 err = got_object_open_as_commit(&commit, s->repo,
6670 &s->blamed_commit->id);
6671 if (err)
6672 return err;
6674 fd = got_opentempfd();
6675 if (fd == -1) {
6676 err = got_error_from_errno("got_opentempfd");
6677 goto done;
6680 err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
6681 if (err)
6682 goto done;
6684 err = got_object_get_type(&obj_type, s->repo, obj_id);
6685 if (err)
6686 goto done;
6688 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6689 err = got_error(GOT_ERR_OBJ_TYPE);
6690 goto done;
6693 err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
6694 if (err)
6695 goto done;
6696 blame->f = got_opentemp();
6697 if (blame->f == NULL) {
6698 err = got_error_from_errno("got_opentemp");
6699 goto done;
6701 err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
6702 &blame->line_offsets, blame->f, blob);
6703 if (err)
6704 goto done;
6705 if (blame->nlines == 0) {
6706 s->blame_complete = 1;
6707 goto done;
6710 /* Don't include \n at EOF in the blame line count. */
6711 if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
6712 blame->nlines--;
6714 blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6715 if (blame->lines == NULL) {
6716 err = got_error_from_errno("calloc");
6717 goto done;
6720 err = got_repo_pack_fds_open(&pack_fds);
6721 if (err)
6722 goto done;
6723 err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6724 pack_fds);
6725 if (err)
6726 goto done;
6728 blame->pack_fds = pack_fds;
6729 blame->cb_args.view = view;
6730 blame->cb_args.lines = blame->lines;
6731 blame->cb_args.nlines = blame->nlines;
6732 blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6733 if (blame->cb_args.commit_id == NULL) {
6734 err = got_error_from_errno("got_object_id_dup");
6735 goto done;
6737 blame->cb_args.quit = &s->done;
6739 blame->thread_args.path = s->path;
6740 blame->thread_args.repo = thread_repo;
6741 blame->thread_args.cb_args = &blame->cb_args;
6742 blame->thread_args.complete = &s->blame_complete;
6743 blame->thread_args.cancel_cb = cancel_blame_view;
6744 blame->thread_args.cancel_arg = &s->done;
6745 s->blame_complete = 0;
6747 if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6748 s->first_displayed_line = 1;
6749 s->last_displayed_line = view->nlines;
6750 s->selected_line = 1;
6752 s->matched_line = 0;
6754 done:
6755 if (commit)
6756 got_object_commit_close(commit);
6757 if (fd != -1 && close(fd) == -1 && err == NULL)
6758 err = got_error_from_errno("close");
6759 if (blob)
6760 got_object_blob_close(blob);
6761 free(obj_id);
6762 if (err)
6763 stop_blame(blame);
6764 return err;
6767 static const struct got_error *
6768 open_blame_view(struct tog_view *view, char *path,
6769 struct got_object_id *commit_id, struct got_repository *repo)
6771 const struct got_error *err = NULL;
6772 struct tog_blame_view_state *s = &view->state.blame;
6774 STAILQ_INIT(&s->blamed_commits);
6776 s->path = strdup(path);
6777 if (s->path == NULL)
6778 return got_error_from_errno("strdup");
6780 err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6781 if (err) {
6782 free(s->path);
6783 return err;
6786 STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6787 s->first_displayed_line = 1;
6788 s->last_displayed_line = view->nlines;
6789 s->selected_line = 1;
6790 s->blame_complete = 0;
6791 s->repo = repo;
6792 s->commit_id = commit_id;
6793 memset(&s->blame, 0, sizeof(s->blame));
6795 STAILQ_INIT(&s->colors);
6796 if (has_colors() && getenv("TOG_COLORS") != NULL) {
6797 err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6798 get_color_value("TOG_COLOR_COMMIT"));
6799 if (err)
6800 return err;
6803 view->show = show_blame_view;
6804 view->input = input_blame_view;
6805 view->reset = reset_blame_view;
6806 view->close = close_blame_view;
6807 view->search_start = search_start_blame_view;
6808 view->search_setup = search_setup_blame_view;
6809 view->search_next = search_next_view_match;
6811 if (using_mock_io) {
6812 struct tog_blame_thread_args *bta = &s->blame.thread_args;
6813 int rc;
6815 rc = pthread_cond_init(&bta->blame_complete, NULL);
6816 if (rc)
6817 return got_error_set_errno(rc, "pthread_cond_init");
6820 return run_blame(view);
6823 static const struct got_error *
6824 close_blame_view(struct tog_view *view)
6826 const struct got_error *err = NULL;
6827 struct tog_blame_view_state *s = &view->state.blame;
6829 if (s->blame.thread)
6830 err = stop_blame(&s->blame);
6832 while (!STAILQ_EMPTY(&s->blamed_commits)) {
6833 struct got_object_qid *blamed_commit;
6834 blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6835 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6836 got_object_qid_free(blamed_commit);
6839 if (using_mock_io) {
6840 struct tog_blame_thread_args *bta = &s->blame.thread_args;
6841 int rc;
6843 rc = pthread_cond_destroy(&bta->blame_complete);
6844 if (rc && err == NULL)
6845 err = got_error_set_errno(rc, "pthread_cond_destroy");
6848 free(s->path);
6849 free_colors(&s->colors);
6850 return err;
6853 static const struct got_error *
6854 search_start_blame_view(struct tog_view *view)
6856 struct tog_blame_view_state *s = &view->state.blame;
6858 s->matched_line = 0;
6859 return NULL;
6862 static void
6863 search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6864 size_t *nlines, int **first, int **last, int **match, int **selected)
6866 struct tog_blame_view_state *s = &view->state.blame;
6868 *f = s->blame.f;
6869 *nlines = s->blame.nlines;
6870 *line_offsets = s->blame.line_offsets;
6871 *match = &s->matched_line;
6872 *first = &s->first_displayed_line;
6873 *last = &s->last_displayed_line;
6874 *selected = &s->selected_line;
6877 static const struct got_error *
6878 show_blame_view(struct tog_view *view)
6880 const struct got_error *err = NULL;
6881 struct tog_blame_view_state *s = &view->state.blame;
6882 int errcode;
6884 if (s->blame.thread == 0 && !s->blame_complete) {
6885 errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6886 &s->blame.thread_args);
6887 if (errcode)
6888 return got_error_set_errno(errcode, "pthread_create");
6890 if (!using_mock_io)
6891 halfdelay(1); /* fast refresh while annotating */
6894 if (s->blame_complete && !using_mock_io)
6895 halfdelay(10); /* disable fast refresh */
6897 err = draw_blame(view);
6899 view_border(view);
6900 return err;
6903 static const struct got_error *
6904 log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6905 struct got_repository *repo, struct got_object_id *id)
6907 struct tog_view *log_view;
6908 const struct got_error *err = NULL;
6910 *new_view = NULL;
6912 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6913 if (log_view == NULL)
6914 return got_error_from_errno("view_open");
6916 err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0, NULL);
6917 if (err)
6918 view_close(log_view);
6919 else
6920 *new_view = log_view;
6922 return err;
6925 static const struct got_error *
6926 input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6928 const struct got_error *err = NULL, *thread_err = NULL;
6929 struct tog_view *diff_view;
6930 struct tog_blame_view_state *s = &view->state.blame;
6931 int eos, nscroll, begin_y = 0, begin_x = 0;
6933 eos = nscroll = view->nlines - 2;
6934 if (view_is_hsplit_top(view))
6935 --eos; /* border */
6937 switch (ch) {
6938 case '0':
6939 case '$':
6940 case KEY_RIGHT:
6941 case 'l':
6942 case KEY_LEFT:
6943 case 'h':
6944 horizontal_scroll_input(view, ch);
6945 break;
6946 case 'q':
6947 s->done = 1;
6948 break;
6949 case 'g':
6950 case KEY_HOME:
6951 s->selected_line = 1;
6952 s->first_displayed_line = 1;
6953 view->count = 0;
6954 break;
6955 case 'G':
6956 case KEY_END:
6957 if (s->blame.nlines < eos) {
6958 s->selected_line = s->blame.nlines;
6959 s->first_displayed_line = 1;
6960 } else {
6961 s->selected_line = eos;
6962 s->first_displayed_line = s->blame.nlines - (eos - 1);
6964 view->count = 0;
6965 break;
6966 case 'k':
6967 case KEY_UP:
6968 case CTRL('p'):
6969 if (s->selected_line > 1)
6970 s->selected_line--;
6971 else if (s->selected_line == 1 &&
6972 s->first_displayed_line > 1)
6973 s->first_displayed_line--;
6974 else
6975 view->count = 0;
6976 break;
6977 case CTRL('u'):
6978 case 'u':
6979 nscroll /= 2;
6980 /* FALL THROUGH */
6981 case KEY_PPAGE:
6982 case CTRL('b'):
6983 case 'b':
6984 if (s->first_displayed_line == 1) {
6985 if (view->count > 1)
6986 nscroll += nscroll;
6987 s->selected_line = MAX(1, s->selected_line - nscroll);
6988 view->count = 0;
6989 break;
6991 if (s->first_displayed_line > nscroll)
6992 s->first_displayed_line -= nscroll;
6993 else
6994 s->first_displayed_line = 1;
6995 break;
6996 case 'j':
6997 case KEY_DOWN:
6998 case CTRL('n'):
6999 if (s->selected_line < eos && s->first_displayed_line +
7000 s->selected_line <= s->blame.nlines)
7001 s->selected_line++;
7002 else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
7003 s->first_displayed_line++;
7004 else
7005 view->count = 0;
7006 break;
7007 case 'c':
7008 case 'p': {
7009 struct got_object_id *id = NULL;
7011 view->count = 0;
7012 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
7013 s->first_displayed_line, s->selected_line);
7014 if (id == NULL)
7015 break;
7016 if (ch == 'p') {
7017 struct got_commit_object *commit, *pcommit;
7018 struct got_object_qid *pid;
7019 struct got_object_id *blob_id = NULL;
7020 int obj_type;
7021 err = got_object_open_as_commit(&commit,
7022 s->repo, id);
7023 if (err)
7024 break;
7025 pid = STAILQ_FIRST(
7026 got_object_commit_get_parent_ids(commit));
7027 if (pid == NULL) {
7028 got_object_commit_close(commit);
7029 break;
7031 /* Check if path history ends here. */
7032 err = got_object_open_as_commit(&pcommit,
7033 s->repo, &pid->id);
7034 if (err)
7035 break;
7036 err = got_object_id_by_path(&blob_id, s->repo,
7037 pcommit, s->path);
7038 got_object_commit_close(pcommit);
7039 if (err) {
7040 if (err->code == GOT_ERR_NO_TREE_ENTRY)
7041 err = NULL;
7042 got_object_commit_close(commit);
7043 break;
7045 err = got_object_get_type(&obj_type, s->repo,
7046 blob_id);
7047 free(blob_id);
7048 /* Can't blame non-blob type objects. */
7049 if (obj_type != GOT_OBJ_TYPE_BLOB) {
7050 got_object_commit_close(commit);
7051 break;
7053 err = got_object_qid_alloc(&s->blamed_commit,
7054 &pid->id);
7055 got_object_commit_close(commit);
7056 } else {
7057 if (got_object_id_cmp(id,
7058 &s->blamed_commit->id) == 0)
7059 break;
7060 err = got_object_qid_alloc(&s->blamed_commit,
7061 id);
7063 if (err)
7064 break;
7065 s->done = 1;
7066 thread_err = stop_blame(&s->blame);
7067 s->done = 0;
7068 if (thread_err)
7069 break;
7070 STAILQ_INSERT_HEAD(&s->blamed_commits,
7071 s->blamed_commit, entry);
7072 err = run_blame(view);
7073 if (err)
7074 break;
7075 break;
7077 case 'C': {
7078 struct got_object_qid *first;
7080 view->count = 0;
7081 first = STAILQ_FIRST(&s->blamed_commits);
7082 if (!got_object_id_cmp(&first->id, s->commit_id))
7083 break;
7084 s->done = 1;
7085 thread_err = stop_blame(&s->blame);
7086 s->done = 0;
7087 if (thread_err)
7088 break;
7089 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
7090 got_object_qid_free(s->blamed_commit);
7091 s->blamed_commit =
7092 STAILQ_FIRST(&s->blamed_commits);
7093 err = run_blame(view);
7094 if (err)
7095 break;
7096 break;
7098 case 'L':
7099 view->count = 0;
7100 s->id_to_log = get_selected_commit_id(s->blame.lines,
7101 s->blame.nlines, s->first_displayed_line, s->selected_line);
7102 if (s->id_to_log)
7103 err = view_request_new(new_view, view, TOG_VIEW_LOG);
7104 break;
7105 case KEY_ENTER:
7106 case '\r': {
7107 struct got_object_id *id = NULL;
7108 struct got_object_qid *pid;
7109 struct got_commit_object *commit = NULL;
7111 view->count = 0;
7112 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
7113 s->first_displayed_line, s->selected_line);
7114 if (id == NULL)
7115 break;
7116 err = got_object_open_as_commit(&commit, s->repo, id);
7117 if (err)
7118 break;
7119 pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
7120 if (*new_view) {
7121 /* traversed from diff view, release diff resources */
7122 err = close_diff_view(*new_view);
7123 if (err)
7124 break;
7125 diff_view = *new_view;
7126 } else {
7127 if (view_is_parent_view(view))
7128 view_get_split(view, &begin_y, &begin_x);
7130 diff_view = view_open(0, 0, begin_y, begin_x,
7131 TOG_VIEW_DIFF);
7132 if (diff_view == NULL) {
7133 got_object_commit_close(commit);
7134 err = got_error_from_errno("view_open");
7135 break;
7138 err = open_diff_view(diff_view, pid ? &pid->id : NULL,
7139 id, NULL, NULL, 3, 0, 0, view, s->repo);
7140 got_object_commit_close(commit);
7141 if (err)
7142 break;
7143 s->last_diffed_line = s->first_displayed_line - 1 +
7144 s->selected_line;
7145 if (*new_view)
7146 break; /* still open from active diff view */
7147 if (view_is_parent_view(view) &&
7148 view->mode == TOG_VIEW_SPLIT_HRZN) {
7149 err = view_init_hsplit(view, begin_y);
7150 if (err)
7151 break;
7154 view->focussed = 0;
7155 diff_view->focussed = 1;
7156 diff_view->mode = view->mode;
7157 diff_view->nlines = view->lines - begin_y;
7158 if (view_is_parent_view(view)) {
7159 view_transfer_size(diff_view, view);
7160 err = view_close_child(view);
7161 if (err)
7162 break;
7163 err = view_set_child(view, diff_view);
7164 if (err)
7165 break;
7166 view->focus_child = 1;
7167 } else
7168 *new_view = diff_view;
7169 if (err)
7170 break;
7171 break;
7173 case CTRL('d'):
7174 case 'd':
7175 nscroll /= 2;
7176 /* FALL THROUGH */
7177 case KEY_NPAGE:
7178 case CTRL('f'):
7179 case 'f':
7180 case ' ':
7181 if (s->last_displayed_line >= s->blame.nlines &&
7182 s->selected_line >= MIN(s->blame.nlines,
7183 view->nlines - 2)) {
7184 view->count = 0;
7185 break;
7187 if (s->last_displayed_line >= s->blame.nlines &&
7188 s->selected_line < view->nlines - 2) {
7189 s->selected_line +=
7190 MIN(nscroll, s->last_displayed_line -
7191 s->first_displayed_line - s->selected_line + 1);
7193 if (s->last_displayed_line + nscroll <= s->blame.nlines)
7194 s->first_displayed_line += nscroll;
7195 else
7196 s->first_displayed_line =
7197 s->blame.nlines - (view->nlines - 3);
7198 break;
7199 case KEY_RESIZE:
7200 if (s->selected_line > view->nlines - 2) {
7201 s->selected_line = MIN(s->blame.nlines,
7202 view->nlines - 2);
7204 break;
7205 default:
7206 view->count = 0;
7207 break;
7209 return thread_err ? thread_err : err;
7212 static const struct got_error *
7213 reset_blame_view(struct tog_view *view)
7215 const struct got_error *err;
7216 struct tog_blame_view_state *s = &view->state.blame;
7218 view->count = 0;
7219 s->done = 1;
7220 err = stop_blame(&s->blame);
7221 s->done = 0;
7222 if (err)
7223 return err;
7224 return run_blame(view);
7227 static const struct got_error *
7228 cmd_blame(int argc, char *argv[])
7230 const struct got_error *error;
7231 struct got_repository *repo = NULL;
7232 struct got_worktree *worktree = NULL;
7233 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7234 char *link_target = NULL;
7235 struct got_object_id *commit_id = NULL;
7236 struct got_commit_object *commit = NULL;
7237 char *keyword_idstr = NULL, *commit_id_str = NULL;
7238 int ch;
7239 struct tog_view *view = NULL;
7240 int *pack_fds = NULL;
7242 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7243 switch (ch) {
7244 case 'c':
7245 commit_id_str = optarg;
7246 break;
7247 case 'r':
7248 repo_path = realpath(optarg, NULL);
7249 if (repo_path == NULL)
7250 return got_error_from_errno2("realpath",
7251 optarg);
7252 break;
7253 default:
7254 usage_blame();
7255 /* NOTREACHED */
7259 argc -= optind;
7260 argv += optind;
7262 if (argc != 1)
7263 usage_blame();
7265 error = got_repo_pack_fds_open(&pack_fds);
7266 if (error != NULL)
7267 goto done;
7269 if (repo_path == NULL) {
7270 cwd = getcwd(NULL, 0);
7271 if (cwd == NULL)
7272 return got_error_from_errno("getcwd");
7273 error = got_worktree_open(&worktree, cwd, NULL);
7274 if (error && error->code != GOT_ERR_NOT_WORKTREE)
7275 goto done;
7276 if (worktree)
7277 repo_path =
7278 strdup(got_worktree_get_repo_path(worktree));
7279 else
7280 repo_path = strdup(cwd);
7281 if (repo_path == NULL) {
7282 error = got_error_from_errno("strdup");
7283 goto done;
7287 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7288 if (error != NULL)
7289 goto done;
7291 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
7292 worktree);
7293 if (error)
7294 goto done;
7296 init_curses();
7298 error = apply_unveil(got_repo_get_path(repo), NULL);
7299 if (error)
7300 goto done;
7302 error = tog_load_refs(repo, 0);
7303 if (error)
7304 goto done;
7306 if (commit_id_str == NULL) {
7307 struct got_reference *head_ref;
7308 error = got_ref_open(&head_ref, repo, worktree ?
7309 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
7310 if (error != NULL)
7311 goto done;
7312 error = got_ref_resolve(&commit_id, repo, head_ref);
7313 got_ref_close(head_ref);
7314 } else {
7315 error = got_keyword_to_idstr(&keyword_idstr, commit_id_str,
7316 repo, worktree);
7317 if (error != NULL)
7318 goto done;
7319 if (keyword_idstr != NULL)
7320 commit_id_str = keyword_idstr;
7322 error = got_repo_match_object_id(&commit_id, NULL,
7323 commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7325 if (error != NULL)
7326 goto done;
7328 error = got_object_open_as_commit(&commit, repo, commit_id);
7329 if (error)
7330 goto done;
7332 error = got_object_resolve_symlinks(&link_target, in_repo_path,
7333 commit, repo);
7334 if (error)
7335 goto done;
7337 view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
7338 if (view == NULL) {
7339 error = got_error_from_errno("view_open");
7340 goto done;
7342 error = open_blame_view(view, link_target ? link_target : in_repo_path,
7343 commit_id, repo);
7344 if (error != NULL) {
7345 if (view->close == NULL)
7346 close_blame_view(view);
7347 view_close(view);
7348 goto done;
7351 if (worktree) {
7352 error = set_tog_base_commit(repo, worktree);
7353 if (error != NULL)
7354 goto done;
7356 /* Release work tree lock. */
7357 got_worktree_close(worktree);
7358 worktree = NULL;
7361 error = view_loop(view);
7363 done:
7364 free(tog_base_commit.id);
7365 free(repo_path);
7366 free(in_repo_path);
7367 free(link_target);
7368 free(cwd);
7369 free(commit_id);
7370 free(keyword_idstr);
7371 if (commit)
7372 got_object_commit_close(commit);
7373 if (worktree)
7374 got_worktree_close(worktree);
7375 if (repo) {
7376 const struct got_error *close_err = got_repo_close(repo);
7377 if (error == NULL)
7378 error = close_err;
7380 if (pack_fds) {
7381 const struct got_error *pack_err =
7382 got_repo_pack_fds_close(pack_fds);
7383 if (error == NULL)
7384 error = pack_err;
7386 tog_free_refs();
7387 return error;
7390 static const struct got_error *
7391 draw_tree_entries(struct tog_view *view, const char *parent_path)
7393 struct tog_tree_view_state *s = &view->state.tree;
7394 const struct got_error *err = NULL;
7395 struct got_tree_entry *te;
7396 wchar_t *wline;
7397 char *index = NULL;
7398 struct tog_color *tc;
7399 int width, n, nentries, scrollx, i = 1;
7400 int limit = view->nlines;
7402 s->ndisplayed = 0;
7403 if (view_is_hsplit_top(view))
7404 --limit; /* border */
7406 werase(view->window);
7408 if (limit == 0)
7409 return NULL;
7411 err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
7412 0, 0);
7413 if (err)
7414 return err;
7415 if (view_needs_focus_indication(view))
7416 wstandout(view->window);
7417 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
7418 if (tc)
7419 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
7420 waddwstr(view->window, wline);
7421 free(wline);
7422 wline = NULL;
7423 while (width++ < view->ncols)
7424 waddch(view->window, ' ');
7425 if (tc)
7426 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
7427 if (view_needs_focus_indication(view))
7428 wstandend(view->window);
7429 if (--limit <= 0)
7430 return NULL;
7432 i += s->selected;
7433 if (s->first_displayed_entry) {
7434 i += got_tree_entry_get_index(s->first_displayed_entry);
7435 if (s->tree != s->root)
7436 ++i; /* account for ".." entry */
7438 nentries = got_object_tree_get_nentries(s->tree);
7439 if (asprintf(&index, "[%d/%d] %s",
7440 i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
7441 return got_error_from_errno("asprintf");
7442 err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
7443 free(index);
7444 if (err)
7445 return err;
7446 waddwstr(view->window, wline);
7447 free(wline);
7448 wline = NULL;
7449 if (width < view->ncols - 1)
7450 waddch(view->window, '\n');
7451 if (--limit <= 0)
7452 return NULL;
7453 waddch(view->window, '\n');
7454 if (--limit <= 0)
7455 return NULL;
7457 if (s->first_displayed_entry == NULL) {
7458 te = got_object_tree_get_first_entry(s->tree);
7459 if (s->selected == 0) {
7460 if (view->focussed)
7461 wstandout(view->window);
7462 s->selected_entry = NULL;
7464 waddstr(view->window, " ..\n"); /* parent directory */
7465 if (s->selected == 0 && view->focussed)
7466 wstandend(view->window);
7467 s->ndisplayed++;
7468 if (--limit <= 0)
7469 return NULL;
7470 n = 1;
7471 } else {
7472 n = 0;
7473 te = s->first_displayed_entry;
7476 view->maxx = 0;
7477 for (i = got_tree_entry_get_index(te); i < nentries; i++) {
7478 char *line = NULL, *id_str = NULL, *link_target = NULL;
7479 const char *modestr = "";
7480 mode_t mode;
7482 te = got_object_tree_get_entry(s->tree, i);
7483 mode = got_tree_entry_get_mode(te);
7485 if (s->show_ids) {
7486 err = got_object_id_str(&id_str,
7487 got_tree_entry_get_id(te));
7488 if (err)
7489 return got_error_from_errno(
7490 "got_object_id_str");
7492 if (got_object_tree_entry_is_submodule(te))
7493 modestr = "$";
7494 else if (S_ISLNK(mode)) {
7495 int i;
7497 err = got_tree_entry_get_symlink_target(&link_target,
7498 te, s->repo);
7499 if (err) {
7500 free(id_str);
7501 return err;
7503 for (i = 0; link_target[i] != '\0'; i++) {
7504 if (!isprint((unsigned char)link_target[i]))
7505 link_target[i] = '?';
7507 modestr = "@";
7509 else if (S_ISDIR(mode))
7510 modestr = "/";
7511 else if (mode & S_IXUSR)
7512 modestr = "*";
7513 if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
7514 got_tree_entry_get_name(te), modestr,
7515 link_target ? " -> ": "",
7516 link_target ? link_target : "") == -1) {
7517 free(id_str);
7518 free(link_target);
7519 return got_error_from_errno("asprintf");
7521 free(id_str);
7522 free(link_target);
7524 /* use full line width to determine view->maxx */
7525 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0, 0);
7526 if (err) {
7527 free(line);
7528 break;
7530 view->maxx = MAX(view->maxx, width);
7531 free(wline);
7532 wline = NULL;
7534 err = format_line(&wline, &width, &scrollx, line, view->x,
7535 view->ncols, 0, 0);
7536 if (err) {
7537 free(line);
7538 break;
7540 if (n == s->selected) {
7541 if (view->focussed)
7542 wstandout(view->window);
7543 s->selected_entry = te;
7545 tc = match_color(&s->colors, line);
7546 if (tc)
7547 wattr_on(view->window,
7548 COLOR_PAIR(tc->colorpair), NULL);
7549 waddwstr(view->window, &wline[scrollx]);
7550 if (tc)
7551 wattr_off(view->window,
7552 COLOR_PAIR(tc->colorpair), NULL);
7553 if (width < view->ncols)
7554 waddch(view->window, '\n');
7555 if (n == s->selected && view->focussed)
7556 wstandend(view->window);
7557 free(line);
7558 free(wline);
7559 wline = NULL;
7560 n++;
7561 s->ndisplayed++;
7562 s->last_displayed_entry = te;
7563 if (--limit <= 0)
7564 break;
7567 return err;
7570 static void
7571 tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
7573 struct got_tree_entry *te;
7574 int isroot = s->tree == s->root;
7575 int i = 0;
7577 if (s->first_displayed_entry == NULL)
7578 return;
7580 te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
7581 while (i++ < maxscroll) {
7582 if (te == NULL) {
7583 if (!isroot)
7584 s->first_displayed_entry = NULL;
7585 break;
7587 s->first_displayed_entry = te;
7588 te = got_tree_entry_get_prev(s->tree, te);
7592 static const struct got_error *
7593 tree_scroll_down(struct tog_view *view, int maxscroll)
7595 struct tog_tree_view_state *s = &view->state.tree;
7596 struct got_tree_entry *next, *last;
7597 int n = 0;
7599 if (s->first_displayed_entry)
7600 next = got_tree_entry_get_next(s->tree,
7601 s->first_displayed_entry);
7602 else
7603 next = got_object_tree_get_first_entry(s->tree);
7605 last = s->last_displayed_entry;
7606 while (next && n++ < maxscroll) {
7607 if (last) {
7608 s->last_displayed_entry = last;
7609 last = got_tree_entry_get_next(s->tree, last);
7611 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
7612 s->first_displayed_entry = next;
7613 next = got_tree_entry_get_next(s->tree, next);
7617 return NULL;
7620 static const struct got_error *
7621 tree_entry_path(char **path, struct tog_parent_trees *parents,
7622 struct got_tree_entry *te)
7624 const struct got_error *err = NULL;
7625 struct tog_parent_tree *pt;
7626 size_t len = 2; /* for leading slash and NUL */
7628 TAILQ_FOREACH(pt, parents, entry)
7629 len += strlen(got_tree_entry_get_name(pt->selected_entry))
7630 + 1 /* slash */;
7631 if (te)
7632 len += strlen(got_tree_entry_get_name(te));
7634 *path = calloc(1, len);
7635 if (path == NULL)
7636 return got_error_from_errno("calloc");
7638 (*path)[0] = '/';
7639 pt = TAILQ_LAST(parents, tog_parent_trees);
7640 while (pt) {
7641 const char *name = got_tree_entry_get_name(pt->selected_entry);
7642 if (strlcat(*path, name, len) >= len) {
7643 err = got_error(GOT_ERR_NO_SPACE);
7644 goto done;
7646 if (strlcat(*path, "/", len) >= len) {
7647 err = got_error(GOT_ERR_NO_SPACE);
7648 goto done;
7650 pt = TAILQ_PREV(pt, tog_parent_trees, entry);
7652 if (te) {
7653 if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
7654 err = got_error(GOT_ERR_NO_SPACE);
7655 goto done;
7658 done:
7659 if (err) {
7660 free(*path);
7661 *path = NULL;
7663 return err;
7666 static const struct got_error *
7667 blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
7668 struct got_tree_entry *te, struct tog_parent_trees *parents,
7669 struct got_object_id *commit_id, struct got_repository *repo)
7671 const struct got_error *err = NULL;
7672 char *path;
7673 struct tog_view *blame_view;
7675 *new_view = NULL;
7677 err = tree_entry_path(&path, parents, te);
7678 if (err)
7679 return err;
7681 blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
7682 if (blame_view == NULL) {
7683 err = got_error_from_errno("view_open");
7684 goto done;
7687 err = open_blame_view(blame_view, path, commit_id, repo);
7688 if (err) {
7689 if (err->code == GOT_ERR_CANCELLED)
7690 err = NULL;
7691 view_close(blame_view);
7692 } else
7693 *new_view = blame_view;
7694 done:
7695 free(path);
7696 return err;
7699 static const struct got_error *
7700 log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
7701 struct tog_tree_view_state *s)
7703 struct tog_view *log_view;
7704 const struct got_error *err = NULL;
7705 char *path;
7707 *new_view = NULL;
7709 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7710 if (log_view == NULL)
7711 return got_error_from_errno("view_open");
7713 err = tree_entry_path(&path, &s->parents, s->selected_entry);
7714 if (err)
7715 return err;
7717 err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
7718 path, 0, NULL);
7719 if (err)
7720 view_close(log_view);
7721 else
7722 *new_view = log_view;
7723 free(path);
7724 return err;
7727 static const struct got_error *
7728 open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
7729 const char *head_ref_name, struct got_repository *repo)
7731 const struct got_error *err = NULL;
7732 char *commit_id_str = NULL;
7733 struct tog_tree_view_state *s = &view->state.tree;
7734 struct got_commit_object *commit = NULL;
7736 TAILQ_INIT(&s->parents);
7737 STAILQ_INIT(&s->colors);
7739 s->commit_id = got_object_id_dup(commit_id);
7740 if (s->commit_id == NULL) {
7741 err = got_error_from_errno("got_object_id_dup");
7742 goto done;
7745 err = got_object_open_as_commit(&commit, repo, commit_id);
7746 if (err)
7747 goto done;
7750 * The root is opened here and will be closed when the view is closed.
7751 * Any visited subtrees and their path-wise parents are opened and
7752 * closed on demand.
7754 err = got_object_open_as_tree(&s->root, repo,
7755 got_object_commit_get_tree_id(commit));
7756 if (err)
7757 goto done;
7758 s->tree = s->root;
7760 err = got_object_id_str(&commit_id_str, commit_id);
7761 if (err != NULL)
7762 goto done;
7764 if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7765 err = got_error_from_errno("asprintf");
7766 goto done;
7769 s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7770 s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7771 if (head_ref_name) {
7772 s->head_ref_name = strdup(head_ref_name);
7773 if (s->head_ref_name == NULL) {
7774 err = got_error_from_errno("strdup");
7775 goto done;
7778 s->repo = repo;
7780 if (has_colors() && getenv("TOG_COLORS") != NULL) {
7781 err = add_color(&s->colors, "\\$$",
7782 TOG_COLOR_TREE_SUBMODULE,
7783 get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7784 if (err)
7785 goto done;
7786 err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7787 get_color_value("TOG_COLOR_TREE_SYMLINK"));
7788 if (err)
7789 goto done;
7790 err = add_color(&s->colors, "/$",
7791 TOG_COLOR_TREE_DIRECTORY,
7792 get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7793 if (err)
7794 goto done;
7796 err = add_color(&s->colors, "\\*$",
7797 TOG_COLOR_TREE_EXECUTABLE,
7798 get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7799 if (err)
7800 goto done;
7802 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7803 get_color_value("TOG_COLOR_COMMIT"));
7804 if (err)
7805 goto done;
7808 view->show = show_tree_view;
7809 view->input = input_tree_view;
7810 view->close = close_tree_view;
7811 view->search_start = search_start_tree_view;
7812 view->search_next = search_next_tree_view;
7813 done:
7814 free(commit_id_str);
7815 if (commit)
7816 got_object_commit_close(commit);
7817 if (err) {
7818 if (view->close == NULL)
7819 close_tree_view(view);
7820 view_close(view);
7822 return err;
7825 static const struct got_error *
7826 close_tree_view(struct tog_view *view)
7828 struct tog_tree_view_state *s = &view->state.tree;
7830 free_colors(&s->colors);
7831 free(s->tree_label);
7832 s->tree_label = NULL;
7833 free(s->commit_id);
7834 s->commit_id = NULL;
7835 free(s->head_ref_name);
7836 s->head_ref_name = NULL;
7837 while (!TAILQ_EMPTY(&s->parents)) {
7838 struct tog_parent_tree *parent;
7839 parent = TAILQ_FIRST(&s->parents);
7840 TAILQ_REMOVE(&s->parents, parent, entry);
7841 if (parent->tree != s->root)
7842 got_object_tree_close(parent->tree);
7843 free(parent);
7846 if (s->tree != NULL && s->tree != s->root)
7847 got_object_tree_close(s->tree);
7848 if (s->root)
7849 got_object_tree_close(s->root);
7850 return NULL;
7853 static const struct got_error *
7854 search_start_tree_view(struct tog_view *view)
7856 struct tog_tree_view_state *s = &view->state.tree;
7858 s->matched_entry = NULL;
7859 return NULL;
7862 static int
7863 match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7865 regmatch_t regmatch;
7867 return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7868 0) == 0;
7871 static const struct got_error *
7872 search_next_tree_view(struct tog_view *view)
7874 struct tog_tree_view_state *s = &view->state.tree;
7875 struct got_tree_entry *te = NULL;
7877 if (!view->searching) {
7878 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7879 return NULL;
7882 if (s->matched_entry) {
7883 if (view->searching == TOG_SEARCH_FORWARD) {
7884 if (s->selected_entry)
7885 te = got_tree_entry_get_next(s->tree,
7886 s->selected_entry);
7887 else
7888 te = got_object_tree_get_first_entry(s->tree);
7889 } else {
7890 if (s->selected_entry == NULL)
7891 te = got_object_tree_get_last_entry(s->tree);
7892 else
7893 te = got_tree_entry_get_prev(s->tree,
7894 s->selected_entry);
7896 } else {
7897 if (s->selected_entry)
7898 te = s->selected_entry;
7899 else if (view->searching == TOG_SEARCH_FORWARD)
7900 te = got_object_tree_get_first_entry(s->tree);
7901 else
7902 te = got_object_tree_get_last_entry(s->tree);
7905 while (1) {
7906 if (te == NULL) {
7907 if (s->matched_entry == NULL) {
7908 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7909 return NULL;
7911 if (view->searching == TOG_SEARCH_FORWARD)
7912 te = got_object_tree_get_first_entry(s->tree);
7913 else
7914 te = got_object_tree_get_last_entry(s->tree);
7917 if (match_tree_entry(te, &view->regex)) {
7918 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7919 s->matched_entry = te;
7920 break;
7923 if (view->searching == TOG_SEARCH_FORWARD)
7924 te = got_tree_entry_get_next(s->tree, te);
7925 else
7926 te = got_tree_entry_get_prev(s->tree, te);
7929 if (s->matched_entry) {
7930 s->first_displayed_entry = s->matched_entry;
7931 s->selected = 0;
7934 return NULL;
7937 static const struct got_error *
7938 show_tree_view(struct tog_view *view)
7940 const struct got_error *err = NULL;
7941 struct tog_tree_view_state *s = &view->state.tree;
7942 char *parent_path;
7944 err = tree_entry_path(&parent_path, &s->parents, NULL);
7945 if (err)
7946 return err;
7948 err = draw_tree_entries(view, parent_path);
7949 free(parent_path);
7951 view_border(view);
7952 return err;
7955 static const struct got_error *
7956 tree_goto_line(struct tog_view *view, int nlines)
7958 const struct got_error *err = NULL;
7959 struct tog_tree_view_state *s = &view->state.tree;
7960 struct got_tree_entry **fte, **lte, **ste;
7961 int g, last, first = 1, i = 1;
7962 int root = s->tree == s->root;
7963 int off = root ? 1 : 2;
7965 g = view->gline;
7966 view->gline = 0;
7968 if (g == 0)
7969 g = 1;
7970 else if (g > got_object_tree_get_nentries(s->tree))
7971 g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7973 fte = &s->first_displayed_entry;
7974 lte = &s->last_displayed_entry;
7975 ste = &s->selected_entry;
7977 if (*fte != NULL) {
7978 first = got_tree_entry_get_index(*fte);
7979 first += off; /* account for ".." */
7981 last = got_tree_entry_get_index(*lte);
7982 last += off;
7984 if (g >= first && g <= last && g - first < nlines) {
7985 s->selected = g - first;
7986 return NULL; /* gline is on the current page */
7989 if (*ste != NULL) {
7990 i = got_tree_entry_get_index(*ste);
7991 i += off;
7994 if (i < g) {
7995 err = tree_scroll_down(view, g - i);
7996 if (err)
7997 return err;
7998 if (got_tree_entry_get_index(*lte) >=
7999 got_object_tree_get_nentries(s->tree) - 1 &&
8000 first + s->selected < g &&
8001 s->selected < s->ndisplayed - 1) {
8002 first = got_tree_entry_get_index(*fte);
8003 first += off;
8004 s->selected = g - first;
8006 } else if (i > g)
8007 tree_scroll_up(s, i - g);
8009 if (g < nlines &&
8010 (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
8011 s->selected = g - 1;
8013 return NULL;
8016 static const struct got_error *
8017 input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
8019 const struct got_error *err = NULL;
8020 struct tog_tree_view_state *s = &view->state.tree;
8021 struct got_tree_entry *te;
8022 int n, nscroll = view->nlines - 3;
8024 if (view->gline)
8025 return tree_goto_line(view, nscroll);
8027 switch (ch) {
8028 case '0':
8029 case '$':
8030 case KEY_RIGHT:
8031 case 'l':
8032 case KEY_LEFT:
8033 case 'h':
8034 horizontal_scroll_input(view, ch);
8035 break;
8036 case 'i':
8037 s->show_ids = !s->show_ids;
8038 view->count = 0;
8039 break;
8040 case 'L':
8041 view->count = 0;
8042 if (!s->selected_entry)
8043 break;
8044 err = view_request_new(new_view, view, TOG_VIEW_LOG);
8045 break;
8046 case 'R':
8047 view->count = 0;
8048 err = view_request_new(new_view, view, TOG_VIEW_REF);
8049 break;
8050 case 'g':
8051 case '=':
8052 case KEY_HOME:
8053 s->selected = 0;
8054 view->count = 0;
8055 if (s->tree == s->root)
8056 s->first_displayed_entry =
8057 got_object_tree_get_first_entry(s->tree);
8058 else
8059 s->first_displayed_entry = NULL;
8060 break;
8061 case 'G':
8062 case '*':
8063 case KEY_END: {
8064 int eos = view->nlines - 3;
8066 if (view->mode == TOG_VIEW_SPLIT_HRZN)
8067 --eos; /* border */
8068 s->selected = 0;
8069 view->count = 0;
8070 te = got_object_tree_get_last_entry(s->tree);
8071 for (n = 0; n < eos; n++) {
8072 if (te == NULL) {
8073 if (s->tree != s->root) {
8074 s->first_displayed_entry = NULL;
8075 n++;
8077 break;
8079 s->first_displayed_entry = te;
8080 te = got_tree_entry_get_prev(s->tree, te);
8082 if (n > 0)
8083 s->selected = n - 1;
8084 break;
8086 case 'k':
8087 case KEY_UP:
8088 case CTRL('p'):
8089 if (s->selected > 0) {
8090 s->selected--;
8091 break;
8093 tree_scroll_up(s, 1);
8094 if (s->selected_entry == NULL ||
8095 (s->tree == s->root && s->selected_entry ==
8096 got_object_tree_get_first_entry(s->tree)))
8097 view->count = 0;
8098 break;
8099 case CTRL('u'):
8100 case 'u':
8101 nscroll /= 2;
8102 /* FALL THROUGH */
8103 case KEY_PPAGE:
8104 case CTRL('b'):
8105 case 'b':
8106 if (s->tree == s->root) {
8107 if (got_object_tree_get_first_entry(s->tree) ==
8108 s->first_displayed_entry)
8109 s->selected -= MIN(s->selected, nscroll);
8110 } else {
8111 if (s->first_displayed_entry == NULL)
8112 s->selected -= MIN(s->selected, nscroll);
8114 tree_scroll_up(s, MAX(0, nscroll));
8115 if (s->selected_entry == NULL ||
8116 (s->tree == s->root && s->selected_entry ==
8117 got_object_tree_get_first_entry(s->tree)))
8118 view->count = 0;
8119 break;
8120 case 'j':
8121 case KEY_DOWN:
8122 case CTRL('n'):
8123 if (s->selected < s->ndisplayed - 1) {
8124 s->selected++;
8125 break;
8127 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
8128 == NULL) {
8129 /* can't scroll any further */
8130 view->count = 0;
8131 break;
8133 tree_scroll_down(view, 1);
8134 break;
8135 case CTRL('d'):
8136 case 'd':
8137 nscroll /= 2;
8138 /* FALL THROUGH */
8139 case KEY_NPAGE:
8140 case CTRL('f'):
8141 case 'f':
8142 case ' ':
8143 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
8144 == NULL) {
8145 /* can't scroll any further; move cursor down */
8146 if (s->selected < s->ndisplayed - 1)
8147 s->selected += MIN(nscroll,
8148 s->ndisplayed - s->selected - 1);
8149 else
8150 view->count = 0;
8151 break;
8153 tree_scroll_down(view, nscroll);
8154 break;
8155 case KEY_ENTER:
8156 case '\r':
8157 case KEY_BACKSPACE:
8158 if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
8159 struct tog_parent_tree *parent;
8160 /* user selected '..' */
8161 if (s->tree == s->root) {
8162 view->count = 0;
8163 break;
8165 parent = TAILQ_FIRST(&s->parents);
8166 TAILQ_REMOVE(&s->parents, parent,
8167 entry);
8168 got_object_tree_close(s->tree);
8169 s->tree = parent->tree;
8170 s->first_displayed_entry =
8171 parent->first_displayed_entry;
8172 s->selected_entry =
8173 parent->selected_entry;
8174 s->selected = parent->selected;
8175 if (s->selected > view->nlines - 3) {
8176 err = offset_selection_down(view);
8177 if (err)
8178 break;
8180 free(parent);
8181 } else if (S_ISDIR(got_tree_entry_get_mode(
8182 s->selected_entry))) {
8183 struct got_tree_object *subtree;
8184 view->count = 0;
8185 err = got_object_open_as_tree(&subtree, s->repo,
8186 got_tree_entry_get_id(s->selected_entry));
8187 if (err)
8188 break;
8189 err = tree_view_visit_subtree(s, subtree);
8190 if (err) {
8191 got_object_tree_close(subtree);
8192 break;
8194 } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
8195 err = view_request_new(new_view, view, TOG_VIEW_BLAME);
8196 break;
8197 case KEY_RESIZE:
8198 if (view->nlines >= 4 && s->selected >= view->nlines - 3)
8199 s->selected = view->nlines - 4;
8200 view->count = 0;
8201 break;
8202 default:
8203 view->count = 0;
8204 break;
8207 return err;
8210 __dead static void
8211 usage_tree(void)
8213 endwin();
8214 fprintf(stderr,
8215 "usage: %s tree [-c commit] [-r repository-path] [path]\n",
8216 getprogname());
8217 exit(1);
8220 static const struct got_error *
8221 cmd_tree(int argc, char *argv[])
8223 const struct got_error *error;
8224 struct got_repository *repo = NULL;
8225 struct got_worktree *worktree = NULL;
8226 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
8227 struct got_object_id *commit_id = NULL;
8228 struct got_commit_object *commit = NULL;
8229 const char *commit_id_arg = NULL;
8230 char *keyword_idstr = NULL, *label = NULL;
8231 struct got_reference *ref = NULL;
8232 const char *head_ref_name = NULL;
8233 int ch;
8234 struct tog_view *view;
8235 int *pack_fds = NULL;
8237 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
8238 switch (ch) {
8239 case 'c':
8240 commit_id_arg = optarg;
8241 break;
8242 case 'r':
8243 repo_path = realpath(optarg, NULL);
8244 if (repo_path == NULL)
8245 return got_error_from_errno2("realpath",
8246 optarg);
8247 break;
8248 default:
8249 usage_tree();
8250 /* NOTREACHED */
8254 argc -= optind;
8255 argv += optind;
8257 if (argc > 1)
8258 usage_tree();
8260 error = got_repo_pack_fds_open(&pack_fds);
8261 if (error != NULL)
8262 goto done;
8264 if (repo_path == NULL) {
8265 cwd = getcwd(NULL, 0);
8266 if (cwd == NULL)
8267 return got_error_from_errno("getcwd");
8268 error = got_worktree_open(&worktree, cwd, NULL);
8269 if (error && error->code != GOT_ERR_NOT_WORKTREE)
8270 goto done;
8271 if (worktree)
8272 repo_path =
8273 strdup(got_worktree_get_repo_path(worktree));
8274 else
8275 repo_path = strdup(cwd);
8276 if (repo_path == NULL) {
8277 error = got_error_from_errno("strdup");
8278 goto done;
8282 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8283 if (error != NULL)
8284 goto done;
8286 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
8287 repo, worktree);
8288 if (error)
8289 goto done;
8291 init_curses();
8293 error = apply_unveil(got_repo_get_path(repo), NULL);
8294 if (error)
8295 goto done;
8297 error = tog_load_refs(repo, 0);
8298 if (error)
8299 goto done;
8301 if (commit_id_arg == NULL) {
8302 error = got_repo_match_object_id(&commit_id, &label,
8303 worktree ? got_worktree_get_head_ref_name(worktree) :
8304 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8305 if (error)
8306 goto done;
8307 head_ref_name = label;
8308 } else {
8309 error = got_keyword_to_idstr(&keyword_idstr, commit_id_arg,
8310 repo, worktree);
8311 if (error != NULL)
8312 goto done;
8313 if (keyword_idstr != NULL)
8314 commit_id_arg = keyword_idstr;
8316 error = got_ref_open(&ref, repo, commit_id_arg, 0);
8317 if (error == NULL)
8318 head_ref_name = got_ref_get_name(ref);
8319 else if (error->code != GOT_ERR_NOT_REF)
8320 goto done;
8321 error = got_repo_match_object_id(&commit_id, NULL,
8322 commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8323 if (error)
8324 goto done;
8327 error = got_object_open_as_commit(&commit, repo, commit_id);
8328 if (error)
8329 goto done;
8331 view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
8332 if (view == NULL) {
8333 error = got_error_from_errno("view_open");
8334 goto done;
8336 error = open_tree_view(view, commit_id, head_ref_name, repo);
8337 if (error)
8338 goto done;
8339 if (!got_path_is_root_dir(in_repo_path)) {
8340 error = tree_view_walk_path(&view->state.tree, commit,
8341 in_repo_path);
8342 if (error)
8343 goto done;
8346 if (worktree) {
8347 error = set_tog_base_commit(repo, worktree);
8348 if (error != NULL)
8349 goto done;
8351 /* Release work tree lock. */
8352 got_worktree_close(worktree);
8353 worktree = NULL;
8356 error = view_loop(view);
8358 done:
8359 free(tog_base_commit.id);
8360 free(keyword_idstr);
8361 free(repo_path);
8362 free(cwd);
8363 free(commit_id);
8364 free(label);
8365 if (commit != NULL)
8366 got_object_commit_close(commit);
8367 if (ref)
8368 got_ref_close(ref);
8369 if (worktree != NULL)
8370 got_worktree_close(worktree);
8371 if (repo) {
8372 const struct got_error *close_err = got_repo_close(repo);
8373 if (error == NULL)
8374 error = close_err;
8376 if (pack_fds) {
8377 const struct got_error *pack_err =
8378 got_repo_pack_fds_close(pack_fds);
8379 if (error == NULL)
8380 error = pack_err;
8382 tog_free_refs();
8383 return error;
8386 static const struct got_error *
8387 ref_view_load_refs(struct tog_ref_view_state *s)
8389 struct got_reflist_entry *sre;
8390 struct tog_reflist_entry *re;
8392 s->nrefs = 0;
8393 TAILQ_FOREACH(sre, &tog_refs, entry) {
8394 if (strncmp(got_ref_get_name(sre->ref),
8395 "refs/got/", 9) == 0 &&
8396 strncmp(got_ref_get_name(sre->ref),
8397 "refs/got/backup/", 16) != 0)
8398 continue;
8400 re = malloc(sizeof(*re));
8401 if (re == NULL)
8402 return got_error_from_errno("malloc");
8404 re->ref = got_ref_dup(sre->ref);
8405 if (re->ref == NULL)
8406 return got_error_from_errno("got_ref_dup");
8407 re->idx = s->nrefs++;
8408 TAILQ_INSERT_TAIL(&s->refs, re, entry);
8411 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8412 return NULL;
8415 static void
8416 ref_view_free_refs(struct tog_ref_view_state *s)
8418 struct tog_reflist_entry *re;
8420 while (!TAILQ_EMPTY(&s->refs)) {
8421 re = TAILQ_FIRST(&s->refs);
8422 TAILQ_REMOVE(&s->refs, re, entry);
8423 got_ref_close(re->ref);
8424 free(re);
8428 static const struct got_error *
8429 open_ref_view(struct tog_view *view, struct got_repository *repo)
8431 const struct got_error *err = NULL;
8432 struct tog_ref_view_state *s = &view->state.ref;
8434 s->selected_entry = 0;
8435 s->repo = repo;
8437 TAILQ_INIT(&s->refs);
8438 STAILQ_INIT(&s->colors);
8440 err = ref_view_load_refs(s);
8441 if (err)
8442 goto done;
8444 if (has_colors() && getenv("TOG_COLORS") != NULL) {
8445 err = add_color(&s->colors, "^refs/heads/",
8446 TOG_COLOR_REFS_HEADS,
8447 get_color_value("TOG_COLOR_REFS_HEADS"));
8448 if (err)
8449 goto done;
8451 err = add_color(&s->colors, "^refs/tags/",
8452 TOG_COLOR_REFS_TAGS,
8453 get_color_value("TOG_COLOR_REFS_TAGS"));
8454 if (err)
8455 goto done;
8457 err = add_color(&s->colors, "^refs/remotes/",
8458 TOG_COLOR_REFS_REMOTES,
8459 get_color_value("TOG_COLOR_REFS_REMOTES"));
8460 if (err)
8461 goto done;
8463 err = add_color(&s->colors, "^refs/got/backup/",
8464 TOG_COLOR_REFS_BACKUP,
8465 get_color_value("TOG_COLOR_REFS_BACKUP"));
8466 if (err)
8467 goto done;
8470 view->show = show_ref_view;
8471 view->input = input_ref_view;
8472 view->close = close_ref_view;
8473 view->search_start = search_start_ref_view;
8474 view->search_next = search_next_ref_view;
8475 done:
8476 if (err) {
8477 if (view->close == NULL)
8478 close_ref_view(view);
8479 view_close(view);
8481 return err;
8484 static const struct got_error *
8485 close_ref_view(struct tog_view *view)
8487 struct tog_ref_view_state *s = &view->state.ref;
8489 ref_view_free_refs(s);
8490 free_colors(&s->colors);
8492 return NULL;
8495 static const struct got_error *
8496 resolve_reflist_entry(struct got_object_id **commit_id,
8497 struct tog_reflist_entry *re, struct got_repository *repo)
8499 const struct got_error *err = NULL;
8500 struct got_object_id *obj_id;
8501 struct got_tag_object *tag = NULL;
8502 int obj_type;
8504 *commit_id = NULL;
8506 err = got_ref_resolve(&obj_id, repo, re->ref);
8507 if (err)
8508 return err;
8510 err = got_object_get_type(&obj_type, repo, obj_id);
8511 if (err)
8512 goto done;
8514 switch (obj_type) {
8515 case GOT_OBJ_TYPE_COMMIT:
8516 *commit_id = obj_id;
8517 break;
8518 case GOT_OBJ_TYPE_TAG:
8519 err = got_object_open_as_tag(&tag, repo, obj_id);
8520 if (err)
8521 goto done;
8522 free(obj_id);
8523 err = got_object_get_type(&obj_type, repo,
8524 got_object_tag_get_object_id(tag));
8525 if (err)
8526 goto done;
8527 if (obj_type != GOT_OBJ_TYPE_COMMIT) {
8528 err = got_error(GOT_ERR_OBJ_TYPE);
8529 goto done;
8531 *commit_id = got_object_id_dup(
8532 got_object_tag_get_object_id(tag));
8533 if (*commit_id == NULL) {
8534 err = got_error_from_errno("got_object_id_dup");
8535 goto done;
8537 break;
8538 default:
8539 err = got_error(GOT_ERR_OBJ_TYPE);
8540 break;
8543 done:
8544 if (tag)
8545 got_object_tag_close(tag);
8546 if (err) {
8547 free(*commit_id);
8548 *commit_id = NULL;
8550 return err;
8553 static const struct got_error *
8554 log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
8555 struct tog_reflist_entry *re, struct got_repository *repo)
8557 struct tog_view *log_view;
8558 const struct got_error *err = NULL;
8559 struct got_object_id *commit_id = NULL;
8561 *new_view = NULL;
8563 err = resolve_reflist_entry(&commit_id, re, repo);
8564 if (err) {
8565 if (err->code != GOT_ERR_OBJ_TYPE)
8566 return err;
8567 else
8568 return NULL;
8571 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
8572 if (log_view == NULL) {
8573 err = got_error_from_errno("view_open");
8574 goto done;
8577 err = open_log_view(log_view, commit_id, repo,
8578 got_ref_get_name(re->ref), "", 0, NULL);
8579 done:
8580 if (err)
8581 view_close(log_view);
8582 else
8583 *new_view = log_view;
8584 free(commit_id);
8585 return err;
8588 static void
8589 ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
8591 struct tog_reflist_entry *re;
8592 int i = 0;
8594 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8595 return;
8597 re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
8598 while (i++ < maxscroll) {
8599 if (re == NULL)
8600 break;
8601 s->first_displayed_entry = re;
8602 re = TAILQ_PREV(re, tog_reflist_head, entry);
8606 static const struct got_error *
8607 ref_scroll_down(struct tog_view *view, int maxscroll)
8609 struct tog_ref_view_state *s = &view->state.ref;
8610 struct tog_reflist_entry *next, *last;
8611 int n = 0;
8613 if (s->first_displayed_entry)
8614 next = TAILQ_NEXT(s->first_displayed_entry, entry);
8615 else
8616 next = TAILQ_FIRST(&s->refs);
8618 last = s->last_displayed_entry;
8619 while (next && n++ < maxscroll) {
8620 if (last) {
8621 s->last_displayed_entry = last;
8622 last = TAILQ_NEXT(last, entry);
8624 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
8625 s->first_displayed_entry = next;
8626 next = TAILQ_NEXT(next, entry);
8630 return NULL;
8633 static const struct got_error *
8634 search_start_ref_view(struct tog_view *view)
8636 struct tog_ref_view_state *s = &view->state.ref;
8638 s->matched_entry = NULL;
8639 return NULL;
8642 static int
8643 match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
8645 regmatch_t regmatch;
8647 return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
8648 0) == 0;
8651 static const struct got_error *
8652 search_next_ref_view(struct tog_view *view)
8654 struct tog_ref_view_state *s = &view->state.ref;
8655 struct tog_reflist_entry *re = NULL;
8657 if (!view->searching) {
8658 view->search_next_done = TOG_SEARCH_HAVE_MORE;
8659 return NULL;
8662 if (s->matched_entry) {
8663 if (view->searching == TOG_SEARCH_FORWARD) {
8664 if (s->selected_entry)
8665 re = TAILQ_NEXT(s->selected_entry, entry);
8666 else
8667 re = TAILQ_PREV(s->selected_entry,
8668 tog_reflist_head, entry);
8669 } else {
8670 if (s->selected_entry == NULL)
8671 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8672 else
8673 re = TAILQ_PREV(s->selected_entry,
8674 tog_reflist_head, entry);
8676 } else {
8677 if (s->selected_entry)
8678 re = s->selected_entry;
8679 else if (view->searching == TOG_SEARCH_FORWARD)
8680 re = TAILQ_FIRST(&s->refs);
8681 else
8682 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8685 while (1) {
8686 if (re == NULL) {
8687 if (s->matched_entry == NULL) {
8688 view->search_next_done = TOG_SEARCH_HAVE_MORE;
8689 return NULL;
8691 if (view->searching == TOG_SEARCH_FORWARD)
8692 re = TAILQ_FIRST(&s->refs);
8693 else
8694 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8697 if (match_reflist_entry(re, &view->regex)) {
8698 view->search_next_done = TOG_SEARCH_HAVE_MORE;
8699 s->matched_entry = re;
8700 break;
8703 if (view->searching == TOG_SEARCH_FORWARD)
8704 re = TAILQ_NEXT(re, entry);
8705 else
8706 re = TAILQ_PREV(re, tog_reflist_head, entry);
8709 if (s->matched_entry) {
8710 s->first_displayed_entry = s->matched_entry;
8711 s->selected = 0;
8714 return NULL;
8717 static const struct got_error *
8718 show_ref_view(struct tog_view *view)
8720 const struct got_error *err = NULL;
8721 struct tog_ref_view_state *s = &view->state.ref;
8722 struct tog_reflist_entry *re;
8723 char *line = NULL;
8724 wchar_t *wline;
8725 struct tog_color *tc;
8726 int width, n, scrollx;
8727 int limit = view->nlines;
8729 werase(view->window);
8731 s->ndisplayed = 0;
8732 if (view_is_hsplit_top(view))
8733 --limit; /* border */
8735 if (limit == 0)
8736 return NULL;
8738 re = s->first_displayed_entry;
8740 if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
8741 s->nrefs) == -1)
8742 return got_error_from_errno("asprintf");
8744 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
8745 if (err) {
8746 free(line);
8747 return err;
8749 if (view_needs_focus_indication(view))
8750 wstandout(view->window);
8751 waddwstr(view->window, wline);
8752 while (width++ < view->ncols)
8753 waddch(view->window, ' ');
8754 if (view_needs_focus_indication(view))
8755 wstandend(view->window);
8756 free(wline);
8757 wline = NULL;
8758 free(line);
8759 line = NULL;
8760 if (--limit <= 0)
8761 return NULL;
8763 n = 0;
8764 view->maxx = 0;
8765 while (re && limit > 0) {
8766 char *line = NULL;
8767 char ymd[13]; /* YYYY-MM-DD + " " + NUL */
8769 if (s->show_date) {
8770 struct got_commit_object *ci;
8771 struct got_tag_object *tag;
8772 struct got_object_id *id;
8773 struct tm tm;
8774 time_t t;
8776 err = got_ref_resolve(&id, s->repo, re->ref);
8777 if (err)
8778 return err;
8779 err = got_object_open_as_tag(&tag, s->repo, id);
8780 if (err) {
8781 if (err->code != GOT_ERR_OBJ_TYPE) {
8782 free(id);
8783 return err;
8785 err = got_object_open_as_commit(&ci, s->repo,
8786 id);
8787 if (err) {
8788 free(id);
8789 return err;
8791 t = got_object_commit_get_committer_time(ci);
8792 got_object_commit_close(ci);
8793 } else {
8794 t = got_object_tag_get_tagger_time(tag);
8795 got_object_tag_close(tag);
8797 free(id);
8798 if (gmtime_r(&t, &tm) == NULL)
8799 return got_error_from_errno("gmtime_r");
8800 if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8801 return got_error(GOT_ERR_NO_SPACE);
8803 if (got_ref_is_symbolic(re->ref)) {
8804 if (asprintf(&line, "%s%s -> %s", s->show_date ?
8805 ymd : "", got_ref_get_name(re->ref),
8806 got_ref_get_symref_target(re->ref)) == -1)
8807 return got_error_from_errno("asprintf");
8808 } else if (s->show_ids) {
8809 struct got_object_id *id;
8810 char *id_str;
8811 err = got_ref_resolve(&id, s->repo, re->ref);
8812 if (err)
8813 return err;
8814 err = got_object_id_str(&id_str, id);
8815 if (err) {
8816 free(id);
8817 return err;
8819 if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8820 got_ref_get_name(re->ref), id_str) == -1) {
8821 err = got_error_from_errno("asprintf");
8822 free(id);
8823 free(id_str);
8824 return err;
8826 free(id);
8827 free(id_str);
8828 } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8829 got_ref_get_name(re->ref)) == -1)
8830 return got_error_from_errno("asprintf");
8832 /* use full line width to determine view->maxx */
8833 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0, 0);
8834 if (err) {
8835 free(line);
8836 return err;
8838 view->maxx = MAX(view->maxx, width);
8839 free(wline);
8840 wline = NULL;
8842 err = format_line(&wline, &width, &scrollx, line, view->x,
8843 view->ncols, 0, 0);
8844 if (err) {
8845 free(line);
8846 return err;
8848 if (n == s->selected) {
8849 if (view->focussed)
8850 wstandout(view->window);
8851 s->selected_entry = re;
8853 tc = match_color(&s->colors, got_ref_get_name(re->ref));
8854 if (tc)
8855 wattr_on(view->window,
8856 COLOR_PAIR(tc->colorpair), NULL);
8857 waddwstr(view->window, &wline[scrollx]);
8858 if (tc)
8859 wattr_off(view->window,
8860 COLOR_PAIR(tc->colorpair), NULL);
8861 if (width < view->ncols)
8862 waddch(view->window, '\n');
8863 if (n == s->selected && view->focussed)
8864 wstandend(view->window);
8865 free(line);
8866 free(wline);
8867 wline = NULL;
8868 n++;
8869 s->ndisplayed++;
8870 s->last_displayed_entry = re;
8872 limit--;
8873 re = TAILQ_NEXT(re, entry);
8876 view_border(view);
8877 return err;
8880 static const struct got_error *
8881 browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8882 struct tog_reflist_entry *re, struct got_repository *repo)
8884 const struct got_error *err = NULL;
8885 struct got_object_id *commit_id = NULL;
8886 struct tog_view *tree_view;
8888 *new_view = NULL;
8890 err = resolve_reflist_entry(&commit_id, re, repo);
8891 if (err) {
8892 if (err->code != GOT_ERR_OBJ_TYPE)
8893 return err;
8894 else
8895 return NULL;
8899 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8900 if (tree_view == NULL) {
8901 err = got_error_from_errno("view_open");
8902 goto done;
8905 err = open_tree_view(tree_view, commit_id,
8906 got_ref_get_name(re->ref), repo);
8907 if (err)
8908 goto done;
8910 *new_view = tree_view;
8911 done:
8912 free(commit_id);
8913 return err;
8916 static const struct got_error *
8917 ref_goto_line(struct tog_view *view, int nlines)
8919 const struct got_error *err = NULL;
8920 struct tog_ref_view_state *s = &view->state.ref;
8921 int g, idx = s->selected_entry->idx;
8923 g = view->gline;
8924 view->gline = 0;
8926 if (g == 0)
8927 g = 1;
8928 else if (g > s->nrefs)
8929 g = s->nrefs;
8931 if (g >= s->first_displayed_entry->idx + 1 &&
8932 g <= s->last_displayed_entry->idx + 1 &&
8933 g - s->first_displayed_entry->idx - 1 < nlines) {
8934 s->selected = g - s->first_displayed_entry->idx - 1;
8935 return NULL;
8938 if (idx + 1 < g) {
8939 err = ref_scroll_down(view, g - idx - 1);
8940 if (err)
8941 return err;
8942 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8943 s->first_displayed_entry->idx + s->selected < g &&
8944 s->selected < s->ndisplayed - 1)
8945 s->selected = g - s->first_displayed_entry->idx - 1;
8946 } else if (idx + 1 > g)
8947 ref_scroll_up(s, idx - g + 1);
8949 if (g < nlines && s->first_displayed_entry->idx == 0)
8950 s->selected = g - 1;
8952 return NULL;
8956 static const struct got_error *
8957 input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8959 const struct got_error *err = NULL;
8960 struct tog_ref_view_state *s = &view->state.ref;
8961 struct tog_reflist_entry *re;
8962 int n, nscroll = view->nlines - 1;
8964 if (view->gline)
8965 return ref_goto_line(view, nscroll);
8967 switch (ch) {
8968 case '0':
8969 case '$':
8970 case KEY_RIGHT:
8971 case 'l':
8972 case KEY_LEFT:
8973 case 'h':
8974 horizontal_scroll_input(view, ch);
8975 break;
8976 case 'i':
8977 s->show_ids = !s->show_ids;
8978 view->count = 0;
8979 break;
8980 case 'm':
8981 s->show_date = !s->show_date;
8982 view->count = 0;
8983 break;
8984 case 'o':
8985 s->sort_by_date = !s->sort_by_date;
8986 view->action = s->sort_by_date ? "sort by date" : "sort by name";
8987 view->count = 0;
8988 err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8989 got_ref_cmp_by_commit_timestamp_descending :
8990 tog_ref_cmp_by_name, s->repo);
8991 if (err)
8992 break;
8993 got_reflist_object_id_map_free(tog_refs_idmap);
8994 err = got_reflist_object_id_map_create(&tog_refs_idmap,
8995 &tog_refs, s->repo);
8996 if (err)
8997 break;
8998 ref_view_free_refs(s);
8999 err = ref_view_load_refs(s);
9000 break;
9001 case KEY_ENTER:
9002 case '\r':
9003 view->count = 0;
9004 if (!s->selected_entry)
9005 break;
9006 err = view_request_new(new_view, view, TOG_VIEW_LOG);
9007 break;
9008 case 'T':
9009 view->count = 0;
9010 if (!s->selected_entry)
9011 break;
9012 err = view_request_new(new_view, view, TOG_VIEW_TREE);
9013 break;
9014 case 'g':
9015 case '=':
9016 case KEY_HOME:
9017 s->selected = 0;
9018 view->count = 0;
9019 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
9020 break;
9021 case 'G':
9022 case '*':
9023 case KEY_END: {
9024 int eos = view->nlines - 1;
9026 if (view->mode == TOG_VIEW_SPLIT_HRZN)
9027 --eos; /* border */
9028 s->selected = 0;
9029 view->count = 0;
9030 re = TAILQ_LAST(&s->refs, tog_reflist_head);
9031 for (n = 0; n < eos; n++) {
9032 if (re == NULL)
9033 break;
9034 s->first_displayed_entry = re;
9035 re = TAILQ_PREV(re, tog_reflist_head, entry);
9037 if (n > 0)
9038 s->selected = n - 1;
9039 break;
9041 case 'k':
9042 case KEY_UP:
9043 case CTRL('p'):
9044 if (s->selected > 0) {
9045 s->selected--;
9046 break;
9048 ref_scroll_up(s, 1);
9049 if (s->selected_entry == TAILQ_FIRST(&s->refs))
9050 view->count = 0;
9051 break;
9052 case CTRL('u'):
9053 case 'u':
9054 nscroll /= 2;
9055 /* FALL THROUGH */
9056 case KEY_PPAGE:
9057 case CTRL('b'):
9058 case 'b':
9059 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
9060 s->selected -= MIN(nscroll, s->selected);
9061 ref_scroll_up(s, MAX(0, nscroll));
9062 if (s->selected_entry == TAILQ_FIRST(&s->refs))
9063 view->count = 0;
9064 break;
9065 case 'j':
9066 case KEY_DOWN:
9067 case CTRL('n'):
9068 if (s->selected < s->ndisplayed - 1) {
9069 s->selected++;
9070 break;
9072 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
9073 /* can't scroll any further */
9074 view->count = 0;
9075 break;
9077 ref_scroll_down(view, 1);
9078 break;
9079 case CTRL('d'):
9080 case 'd':
9081 nscroll /= 2;
9082 /* FALL THROUGH */
9083 case KEY_NPAGE:
9084 case CTRL('f'):
9085 case 'f':
9086 case ' ':
9087 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
9088 /* can't scroll any further; move cursor down */
9089 if (s->selected < s->ndisplayed - 1)
9090 s->selected += MIN(nscroll,
9091 s->ndisplayed - s->selected - 1);
9092 if (view->count > 1 && s->selected < s->ndisplayed - 1)
9093 s->selected += s->ndisplayed - s->selected - 1;
9094 view->count = 0;
9095 break;
9097 ref_scroll_down(view, nscroll);
9098 break;
9099 case CTRL('l'):
9100 view->count = 0;
9101 tog_free_refs();
9102 err = tog_load_refs(s->repo, s->sort_by_date);
9103 if (err)
9104 break;
9105 ref_view_free_refs(s);
9106 err = ref_view_load_refs(s);
9107 break;
9108 case KEY_RESIZE:
9109 if (view->nlines >= 2 && s->selected >= view->nlines - 1)
9110 s->selected = view->nlines - 2;
9111 break;
9112 default:
9113 view->count = 0;
9114 break;
9117 return err;
9120 __dead static void
9121 usage_ref(void)
9123 endwin();
9124 fprintf(stderr, "usage: %s ref [-r repository-path]\n",
9125 getprogname());
9126 exit(1);
9129 static const struct got_error *
9130 cmd_ref(int argc, char *argv[])
9132 const struct got_error *error;
9133 struct got_repository *repo = NULL;
9134 struct got_worktree *worktree = NULL;
9135 char *cwd = NULL, *repo_path = NULL;
9136 int ch;
9137 struct tog_view *view;
9138 int *pack_fds = NULL;
9140 while ((ch = getopt(argc, argv, "r:")) != -1) {
9141 switch (ch) {
9142 case 'r':
9143 repo_path = realpath(optarg, NULL);
9144 if (repo_path == NULL)
9145 return got_error_from_errno2("realpath",
9146 optarg);
9147 break;
9148 default:
9149 usage_ref();
9150 /* NOTREACHED */
9154 argc -= optind;
9155 argv += optind;
9157 if (argc > 1)
9158 usage_ref();
9160 error = got_repo_pack_fds_open(&pack_fds);
9161 if (error != NULL)
9162 goto done;
9164 if (repo_path == NULL) {
9165 cwd = getcwd(NULL, 0);
9166 if (cwd == NULL)
9167 return got_error_from_errno("getcwd");
9168 error = got_worktree_open(&worktree, cwd, NULL);
9169 if (error && error->code != GOT_ERR_NOT_WORKTREE)
9170 goto done;
9171 if (worktree)
9172 repo_path =
9173 strdup(got_worktree_get_repo_path(worktree));
9174 else
9175 repo_path = strdup(cwd);
9176 if (repo_path == NULL) {
9177 error = got_error_from_errno("strdup");
9178 goto done;
9182 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9183 if (error != NULL)
9184 goto done;
9186 init_curses();
9188 error = apply_unveil(got_repo_get_path(repo), NULL);
9189 if (error)
9190 goto done;
9192 error = tog_load_refs(repo, 0);
9193 if (error)
9194 goto done;
9196 view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
9197 if (view == NULL) {
9198 error = got_error_from_errno("view_open");
9199 goto done;
9202 error = open_ref_view(view, repo);
9203 if (error)
9204 goto done;
9206 if (worktree) {
9207 error = set_tog_base_commit(repo, worktree);
9208 if (error != NULL)
9209 goto done;
9211 /* Release work tree lock. */
9212 got_worktree_close(worktree);
9213 worktree = NULL;
9216 error = view_loop(view);
9218 done:
9219 free(tog_base_commit.id);
9220 free(repo_path);
9221 free(cwd);
9222 if (worktree != NULL)
9223 got_worktree_close(worktree);
9224 if (repo) {
9225 const struct got_error *close_err = got_repo_close(repo);
9226 if (close_err)
9227 error = close_err;
9229 if (pack_fds) {
9230 const struct got_error *pack_err =
9231 got_repo_pack_fds_close(pack_fds);
9232 if (error == NULL)
9233 error = pack_err;
9235 tog_free_refs();
9236 return error;
9239 static const struct got_error*
9240 win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
9241 const char *str)
9243 size_t len;
9245 if (win == NULL)
9246 win = stdscr;
9248 len = strlen(str);
9249 x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
9251 if (focus)
9252 wstandout(win);
9253 if (mvwprintw(win, y, x, "%s", str) == ERR)
9254 return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
9255 if (focus)
9256 wstandend(win);
9258 return NULL;
9261 static const struct got_error *
9262 add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
9264 off_t *p;
9266 p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
9267 if (p == NULL) {
9268 free(*line_offsets);
9269 *line_offsets = NULL;
9270 return got_error_from_errno("reallocarray");
9273 *line_offsets = p;
9274 (*line_offsets)[*nlines] = off;
9275 ++(*nlines);
9276 return NULL;
9279 static const struct got_error *
9280 max_key_str(int *ret, const struct tog_key_map *km, size_t n)
9282 *ret = 0;
9284 for (;n > 0; --n, ++km) {
9285 char *t0, *t, *k;
9286 size_t len = 1;
9288 if (km->keys == NULL)
9289 continue;
9291 t = t0 = strdup(km->keys);
9292 if (t0 == NULL)
9293 return got_error_from_errno("strdup");
9295 len += strlen(t);
9296 while ((k = strsep(&t, " ")) != NULL)
9297 len += strlen(k) > 1 ? 2 : 0;
9298 free(t0);
9299 *ret = MAX(*ret, len);
9302 return NULL;
9306 * Write keymap section headers, keys, and key info in km to f.
9307 * Save line offset to *off. If terminal has UTF8 encoding enabled,
9308 * wrap control and symbolic keys in guillemets, else use <>.
9310 static const struct got_error *
9311 format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
9313 int n, len = width;
9315 if (km->keys) {
9316 static const char *u8_glyph[] = {
9317 "\xe2\x80\xb9", /* U+2039 (utf8 <) */
9318 "\xe2\x80\xba" /* U+203A (utf8 >) */
9320 char *t0, *t, *k;
9321 int cs, s, first = 1;
9323 cs = got_locale_is_utf8();
9325 t = t0 = strdup(km->keys);
9326 if (t0 == NULL)
9327 return got_error_from_errno("strdup");
9329 len = strlen(km->keys);
9330 while ((k = strsep(&t, " ")) != NULL) {
9331 s = strlen(k) > 1; /* control or symbolic key */
9332 n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
9333 cs && s ? u8_glyph[0] : s ? "<" : "", k,
9334 cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
9335 if (n < 0) {
9336 free(t0);
9337 return got_error_from_errno("fprintf");
9339 first = 0;
9340 len += s ? 2 : 0;
9341 *off += n;
9343 free(t0);
9345 n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
9346 if (n < 0)
9347 return got_error_from_errno("fprintf");
9348 *off += n;
9350 return NULL;
9353 static const struct got_error *
9354 format_help(struct tog_help_view_state *s)
9356 const struct got_error *err = NULL;
9357 off_t off = 0;
9358 int i, max, n, show = s->all;
9359 static const struct tog_key_map km[] = {
9360 #define KEYMAP_(info, type) { NULL, (info), type }
9361 #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
9362 GENERATE_HELP
9363 #undef KEYMAP_
9364 #undef KEY_
9367 err = add_line_offset(&s->line_offsets, &s->nlines, 0);
9368 if (err)
9369 return err;
9371 n = nitems(km);
9372 err = max_key_str(&max, km, n);
9373 if (err)
9374 return err;
9376 for (i = 0; i < n; ++i) {
9377 if (km[i].keys == NULL) {
9378 show = s->all;
9379 if (km[i].type == TOG_KEYMAP_GLOBAL ||
9380 km[i].type == s->type || s->all)
9381 show = 1;
9383 if (show) {
9384 err = format_help_line(&off, s->f, &km[i], max);
9385 if (err)
9386 return err;
9387 err = add_line_offset(&s->line_offsets, &s->nlines, off);
9388 if (err)
9389 return err;
9392 fputc('\n', s->f);
9393 ++off;
9394 err = add_line_offset(&s->line_offsets, &s->nlines, off);
9395 return err;
9398 static const struct got_error *
9399 create_help(struct tog_help_view_state *s)
9401 FILE *f;
9402 const struct got_error *err;
9404 free(s->line_offsets);
9405 s->line_offsets = NULL;
9406 s->nlines = 0;
9408 f = got_opentemp();
9409 if (f == NULL)
9410 return got_error_from_errno("got_opentemp");
9411 s->f = f;
9413 err = format_help(s);
9414 if (err)
9415 return err;
9417 if (s->f && fflush(s->f) != 0)
9418 return got_error_from_errno("fflush");
9420 return NULL;
9423 static const struct got_error *
9424 search_start_help_view(struct tog_view *view)
9426 view->state.help.matched_line = 0;
9427 return NULL;
9430 static void
9431 search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
9432 size_t *nlines, int **first, int **last, int **match, int **selected)
9434 struct tog_help_view_state *s = &view->state.help;
9436 *f = s->f;
9437 *nlines = s->nlines;
9438 *line_offsets = s->line_offsets;
9439 *match = &s->matched_line;
9440 *first = &s->first_displayed_line;
9441 *last = &s->last_displayed_line;
9442 *selected = &s->selected_line;
9445 static const struct got_error *
9446 show_help_view(struct tog_view *view)
9448 struct tog_help_view_state *s = &view->state.help;
9449 const struct got_error *err;
9450 regmatch_t *regmatch = &view->regmatch;
9451 wchar_t *wline;
9452 char *line;
9453 ssize_t linelen;
9454 size_t linesz = 0;
9455 int width, nprinted = 0, rc = 0;
9456 int eos = view->nlines;
9458 if (view_is_hsplit_top(view))
9459 --eos; /* account for border */
9461 s->lineno = 0;
9462 rewind(s->f);
9463 werase(view->window);
9465 if (view->gline > s->nlines - 1)
9466 view->gline = s->nlines - 1;
9468 err = win_draw_center(view->window, 0, 0, view->ncols,
9469 view_needs_focus_indication(view),
9470 "tog help (press q to return to tog)");
9471 if (err)
9472 return err;
9473 if (eos <= 1)
9474 return NULL;
9475 waddstr(view->window, "\n\n");
9476 eos -= 2;
9478 s->eof = 0;
9479 view->maxx = 0;
9480 line = NULL;
9481 while (eos > 0 && nprinted < eos) {
9482 attr_t attr = 0;
9484 linelen = getline(&line, &linesz, s->f);
9485 if (linelen == -1) {
9486 if (!feof(s->f)) {
9487 free(line);
9488 return got_ferror(s->f, GOT_ERR_IO);
9490 s->eof = 1;
9491 break;
9493 if (++s->lineno < s->first_displayed_line)
9494 continue;
9495 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
9496 continue;
9497 if (s->lineno == view->hiline)
9498 attr = A_STANDOUT;
9500 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
9501 view->x ? 1 : 0);
9502 if (err) {
9503 free(line);
9504 return err;
9506 view->maxx = MAX(view->maxx, width);
9507 free(wline);
9508 wline = NULL;
9510 if (attr)
9511 wattron(view->window, attr);
9512 if (s->first_displayed_line + nprinted == s->matched_line &&
9513 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
9514 err = add_matched_line(&width, line, view->ncols - 1, 0,
9515 view->window, view->x, regmatch);
9516 if (err) {
9517 free(line);
9518 return err;
9520 } else {
9521 int skip;
9523 err = format_line(&wline, &width, &skip, line,
9524 view->x, view->ncols, 0, view->x ? 1 : 0);
9525 if (err) {
9526 free(line);
9527 return err;
9529 waddwstr(view->window, &wline[skip]);
9530 free(wline);
9531 wline = NULL;
9533 if (s->lineno == view->hiline) {
9534 while (width++ < view->ncols)
9535 waddch(view->window, ' ');
9536 } else {
9537 if (width < view->ncols)
9538 waddch(view->window, '\n');
9540 if (attr)
9541 wattroff(view->window, attr);
9542 if (++nprinted == 1)
9543 s->first_displayed_line = s->lineno;
9545 free(line);
9546 if (nprinted > 0)
9547 s->last_displayed_line = s->first_displayed_line + nprinted - 1;
9548 else
9549 s->last_displayed_line = s->first_displayed_line;
9551 view_border(view);
9553 if (s->eof) {
9554 rc = waddnstr(view->window,
9555 "See the tog(1) manual page for full documentation",
9556 view->ncols - 1);
9557 if (rc == ERR)
9558 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
9559 } else {
9560 wmove(view->window, view->nlines - 1, 0);
9561 wclrtoeol(view->window);
9562 wstandout(view->window);
9563 rc = waddnstr(view->window, "scroll down for more...",
9564 view->ncols - 1);
9565 if (rc == ERR)
9566 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
9567 if (getcurx(view->window) < view->ncols - 6) {
9568 rc = wprintw(view->window, "[%.0f%%]",
9569 100.00 * s->last_displayed_line / s->nlines);
9570 if (rc == ERR)
9571 return got_error_msg(GOT_ERR_IO, "wprintw");
9573 wstandend(view->window);
9576 return NULL;
9579 static const struct got_error *
9580 input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
9582 struct tog_help_view_state *s = &view->state.help;
9583 const struct got_error *err = NULL;
9584 char *line = NULL;
9585 ssize_t linelen;
9586 size_t linesz = 0;
9587 int eos, nscroll;
9589 eos = nscroll = view->nlines;
9590 if (view_is_hsplit_top(view))
9591 --eos; /* border */
9593 s->lineno = s->first_displayed_line - 1 + s->selected_line;
9595 switch (ch) {
9596 case '0':
9597 case '$':
9598 case KEY_RIGHT:
9599 case 'l':
9600 case KEY_LEFT:
9601 case 'h':
9602 horizontal_scroll_input(view, ch);
9603 break;
9604 case 'g':
9605 case KEY_HOME:
9606 s->first_displayed_line = 1;
9607 view->count = 0;
9608 break;
9609 case 'G':
9610 case KEY_END:
9611 view->count = 0;
9612 if (s->eof)
9613 break;
9614 s->first_displayed_line = (s->nlines - eos) + 3;
9615 s->eof = 1;
9616 break;
9617 case 'k':
9618 case KEY_UP:
9619 if (s->first_displayed_line > 1)
9620 --s->first_displayed_line;
9621 else
9622 view->count = 0;
9623 break;
9624 case CTRL('u'):
9625 case 'u':
9626 nscroll /= 2;
9627 /* FALL THROUGH */
9628 case KEY_PPAGE:
9629 case CTRL('b'):
9630 case 'b':
9631 if (s->first_displayed_line == 1) {
9632 view->count = 0;
9633 break;
9635 while (--nscroll > 0 && s->first_displayed_line > 1)
9636 s->first_displayed_line--;
9637 break;
9638 case 'j':
9639 case KEY_DOWN:
9640 case CTRL('n'):
9641 if (!s->eof)
9642 ++s->first_displayed_line;
9643 else
9644 view->count = 0;
9645 break;
9646 case CTRL('d'):
9647 case 'd':
9648 nscroll /= 2;
9649 /* FALL THROUGH */
9650 case KEY_NPAGE:
9651 case CTRL('f'):
9652 case 'f':
9653 case ' ':
9654 if (s->eof) {
9655 view->count = 0;
9656 break;
9658 while (!s->eof && --nscroll > 0) {
9659 linelen = getline(&line, &linesz, s->f);
9660 s->first_displayed_line++;
9661 if (linelen == -1) {
9662 if (feof(s->f))
9663 s->eof = 1;
9664 else
9665 err = got_ferror(s->f, GOT_ERR_IO);
9666 break;
9669 free(line);
9670 break;
9671 default:
9672 view->count = 0;
9673 break;
9676 return err;
9679 static const struct got_error *
9680 close_help_view(struct tog_view *view)
9682 struct tog_help_view_state *s = &view->state.help;
9684 free(s->line_offsets);
9685 s->line_offsets = NULL;
9686 if (fclose(s->f) == EOF)
9687 return got_error_from_errno("fclose");
9689 return NULL;
9692 static const struct got_error *
9693 reset_help_view(struct tog_view *view)
9695 struct tog_help_view_state *s = &view->state.help;
9698 if (s->f && fclose(s->f) == EOF)
9699 return got_error_from_errno("fclose");
9701 wclear(view->window);
9702 view->count = 0;
9703 view->x = 0;
9704 s->all = !s->all;
9705 s->first_displayed_line = 1;
9706 s->last_displayed_line = view->nlines;
9707 s->matched_line = 0;
9709 return create_help(s);
9712 static const struct got_error *
9713 open_help_view(struct tog_view *view, struct tog_view *parent)
9715 const struct got_error *err = NULL;
9716 struct tog_help_view_state *s = &view->state.help;
9718 s->type = (enum tog_keymap_type)parent->type;
9719 s->first_displayed_line = 1;
9720 s->last_displayed_line = view->nlines;
9721 s->selected_line = 1;
9723 view->show = show_help_view;
9724 view->input = input_help_view;
9725 view->reset = reset_help_view;
9726 view->close = close_help_view;
9727 view->search_start = search_start_help_view;
9728 view->search_setup = search_setup_help_view;
9729 view->search_next = search_next_view_match;
9731 err = create_help(s);
9732 return err;
9735 static const struct got_error *
9736 view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
9737 enum tog_view_type request, int y, int x)
9739 const struct got_error *err = NULL;
9741 *new_view = NULL;
9743 switch (request) {
9744 case TOG_VIEW_DIFF:
9745 if (view->type == TOG_VIEW_LOG) {
9746 struct tog_log_view_state *s = &view->state.log;
9748 err = open_diff_view_for_commit(new_view, y, x,
9749 s->selected_entry->commit, s->selected_entry->id,
9750 view, s->repo);
9751 } else
9752 return got_error_msg(GOT_ERR_NOT_IMPL,
9753 "parent/child view pair not supported");
9754 break;
9755 case TOG_VIEW_BLAME:
9756 if (view->type == TOG_VIEW_TREE) {
9757 struct tog_tree_view_state *s = &view->state.tree;
9759 err = blame_tree_entry(new_view, y, x,
9760 s->selected_entry, &s->parents, s->commit_id,
9761 s->repo);
9762 } else
9763 return got_error_msg(GOT_ERR_NOT_IMPL,
9764 "parent/child view pair not supported");
9765 break;
9766 case TOG_VIEW_LOG:
9767 if (view->type == TOG_VIEW_BLAME)
9768 err = log_annotated_line(new_view, y, x,
9769 view->state.blame.repo, view->state.blame.id_to_log);
9770 else if (view->type == TOG_VIEW_TREE)
9771 err = log_selected_tree_entry(new_view, y, x,
9772 &view->state.tree);
9773 else if (view->type == TOG_VIEW_REF)
9774 err = log_ref_entry(new_view, y, x,
9775 view->state.ref.selected_entry,
9776 view->state.ref.repo);
9777 else
9778 return got_error_msg(GOT_ERR_NOT_IMPL,
9779 "parent/child view pair not supported");
9780 break;
9781 case TOG_VIEW_TREE:
9782 if (view->type == TOG_VIEW_LOG)
9783 err = browse_commit_tree(new_view, y, x,
9784 view->state.log.selected_entry,
9785 view->state.log.in_repo_path,
9786 view->state.log.head_ref_name,
9787 view->state.log.repo);
9788 else if (view->type == TOG_VIEW_REF)
9789 err = browse_ref_tree(new_view, y, x,
9790 view->state.ref.selected_entry,
9791 view->state.ref.repo);
9792 else
9793 return got_error_msg(GOT_ERR_NOT_IMPL,
9794 "parent/child view pair not supported");
9795 break;
9796 case TOG_VIEW_REF:
9797 *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
9798 if (*new_view == NULL)
9799 return got_error_from_errno("view_open");
9800 if (view->type == TOG_VIEW_LOG)
9801 err = open_ref_view(*new_view, view->state.log.repo);
9802 else if (view->type == TOG_VIEW_TREE)
9803 err = open_ref_view(*new_view, view->state.tree.repo);
9804 else
9805 err = got_error_msg(GOT_ERR_NOT_IMPL,
9806 "parent/child view pair not supported");
9807 if (err)
9808 view_close(*new_view);
9809 break;
9810 case TOG_VIEW_HELP:
9811 *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9812 if (*new_view == NULL)
9813 return got_error_from_errno("view_open");
9814 err = open_help_view(*new_view, view);
9815 if (err)
9816 view_close(*new_view);
9817 break;
9818 default:
9819 return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9822 return err;
9826 * If view was scrolled down to move the selected line into view when opening a
9827 * horizontal split, scroll back up when closing the split/toggling fullscreen.
9829 static void
9830 offset_selection_up(struct tog_view *view)
9832 switch (view->type) {
9833 case TOG_VIEW_BLAME: {
9834 struct tog_blame_view_state *s = &view->state.blame;
9835 if (s->first_displayed_line == 1) {
9836 s->selected_line = MAX(s->selected_line - view->offset,
9837 1);
9838 break;
9840 if (s->first_displayed_line > view->offset)
9841 s->first_displayed_line -= view->offset;
9842 else
9843 s->first_displayed_line = 1;
9844 s->selected_line += view->offset;
9845 break;
9847 case TOG_VIEW_LOG:
9848 log_scroll_up(&view->state.log, view->offset);
9849 view->state.log.selected += view->offset;
9850 break;
9851 case TOG_VIEW_REF:
9852 ref_scroll_up(&view->state.ref, view->offset);
9853 view->state.ref.selected += view->offset;
9854 break;
9855 case TOG_VIEW_TREE:
9856 tree_scroll_up(&view->state.tree, view->offset);
9857 view->state.tree.selected += view->offset;
9858 break;
9859 default:
9860 break;
9863 view->offset = 0;
9867 * If the selected line is in the section of screen covered by the bottom split,
9868 * scroll down offset lines to move it into view and index its new position.
9870 static const struct got_error *
9871 offset_selection_down(struct tog_view *view)
9873 const struct got_error *err = NULL;
9874 const struct got_error *(*scrolld)(struct tog_view *, int);
9875 int *selected = NULL;
9876 int header, offset;
9878 switch (view->type) {
9879 case TOG_VIEW_BLAME: {
9880 struct tog_blame_view_state *s = &view->state.blame;
9881 header = 3;
9882 scrolld = NULL;
9883 if (s->selected_line > view->nlines - header) {
9884 offset = abs(view->nlines - s->selected_line - header);
9885 s->first_displayed_line += offset;
9886 s->selected_line -= offset;
9887 view->offset = offset;
9889 break;
9891 case TOG_VIEW_LOG: {
9892 struct tog_log_view_state *s = &view->state.log;
9893 scrolld = &log_scroll_down;
9894 header = view_is_parent_view(view) ? 3 : 2;
9895 selected = &s->selected;
9896 break;
9898 case TOG_VIEW_REF: {
9899 struct tog_ref_view_state *s = &view->state.ref;
9900 scrolld = &ref_scroll_down;
9901 header = 3;
9902 selected = &s->selected;
9903 break;
9905 case TOG_VIEW_TREE: {
9906 struct tog_tree_view_state *s = &view->state.tree;
9907 scrolld = &tree_scroll_down;
9908 header = 5;
9909 selected = &s->selected;
9910 break;
9912 default:
9913 selected = NULL;
9914 scrolld = NULL;
9915 header = 0;
9916 break;
9919 if (selected && *selected > view->nlines - header) {
9920 offset = abs(view->nlines - *selected - header);
9921 view->offset = offset;
9922 if (scrolld && offset) {
9923 err = scrolld(view, offset);
9924 *selected -= offset;
9928 return err;
9931 static void
9932 list_commands(FILE *fp)
9934 size_t i;
9936 fprintf(fp, "commands:");
9937 for (i = 0; i < nitems(tog_commands); i++) {
9938 const struct tog_cmd *cmd = &tog_commands[i];
9939 fprintf(fp, " %s", cmd->name);
9941 fputc('\n', fp);
9944 __dead static void
9945 usage(int hflag, int status)
9947 FILE *fp = (status == 0) ? stdout : stderr;
9949 fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9950 getprogname());
9951 if (hflag) {
9952 fprintf(fp, "lazy usage: %s path\n", getprogname());
9953 list_commands(fp);
9955 exit(status);
9958 static char **
9959 make_argv(int argc, ...)
9961 va_list ap;
9962 char **argv;
9963 int i;
9965 va_start(ap, argc);
9967 argv = calloc(argc, sizeof(char *));
9968 if (argv == NULL)
9969 err(1, "calloc");
9970 for (i = 0; i < argc; i++) {
9971 argv[i] = strdup(va_arg(ap, char *));
9972 if (argv[i] == NULL)
9973 err(1, "strdup");
9976 va_end(ap);
9977 return argv;
9981 * Try to convert 'tog path' into a 'tog log path' command.
9982 * The user could simply have mistyped the command rather than knowingly
9983 * provided a path. So check whether argv[0] can in fact be resolved
9984 * to a path in the HEAD commit and print a special error if not.
9985 * This hack is for mpi@ <3
9987 static const struct got_error *
9988 tog_log_with_path(int argc, char *argv[])
9990 const struct got_error *error = NULL, *close_err;
9991 const struct tog_cmd *cmd = NULL;
9992 struct got_repository *repo = NULL;
9993 struct got_worktree *worktree = NULL;
9994 struct got_object_id *commit_id = NULL, *id = NULL;
9995 struct got_commit_object *commit = NULL;
9996 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9997 char *commit_id_str = NULL, **cmd_argv = NULL;
9998 int *pack_fds = NULL;
10000 cwd = getcwd(NULL, 0);
10001 if (cwd == NULL)
10002 return got_error_from_errno("getcwd");
10004 error = got_repo_pack_fds_open(&pack_fds);
10005 if (error != NULL)
10006 goto done;
10008 error = got_worktree_open(&worktree, cwd, NULL);
10009 if (error && error->code != GOT_ERR_NOT_WORKTREE)
10010 goto done;
10012 if (worktree)
10013 repo_path = strdup(got_worktree_get_repo_path(worktree));
10014 else
10015 repo_path = strdup(cwd);
10016 if (repo_path == NULL) {
10017 error = got_error_from_errno("strdup");
10018 goto done;
10021 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
10022 if (error != NULL)
10023 goto done;
10025 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
10026 repo, worktree);
10027 if (error)
10028 goto done;
10030 error = tog_load_refs(repo, 0);
10031 if (error)
10032 goto done;
10033 error = got_repo_match_object_id(&commit_id, NULL, worktree ?
10034 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
10035 GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
10036 if (error)
10037 goto done;
10039 if (worktree) {
10040 got_worktree_close(worktree);
10041 worktree = NULL;
10044 error = got_object_open_as_commit(&commit, repo, commit_id);
10045 if (error)
10046 goto done;
10048 error = got_object_id_by_path(&id, repo, commit, in_repo_path);
10049 if (error) {
10050 if (error->code != GOT_ERR_NO_TREE_ENTRY)
10051 goto done;
10052 fprintf(stderr, "%s: '%s' is no known command or path\n",
10053 getprogname(), argv[0]);
10054 usage(1, 1);
10055 /* not reached */
10058 error = got_object_id_str(&commit_id_str, commit_id);
10059 if (error)
10060 goto done;
10062 cmd = &tog_commands[0]; /* log */
10063 argc = 4;
10064 cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
10065 error = cmd->cmd_main(argc, cmd_argv);
10066 done:
10067 if (repo) {
10068 close_err = got_repo_close(repo);
10069 if (error == NULL)
10070 error = close_err;
10072 if (commit)
10073 got_object_commit_close(commit);
10074 if (worktree)
10075 got_worktree_close(worktree);
10076 if (pack_fds) {
10077 const struct got_error *pack_err =
10078 got_repo_pack_fds_close(pack_fds);
10079 if (error == NULL)
10080 error = pack_err;
10082 free(id);
10083 free(commit_id_str);
10084 free(commit_id);
10085 free(cwd);
10086 free(repo_path);
10087 free(in_repo_path);
10088 if (cmd_argv) {
10089 int i;
10090 for (i = 0; i < argc; i++)
10091 free(cmd_argv[i]);
10092 free(cmd_argv);
10094 tog_free_refs();
10095 return error;
10098 int
10099 main(int argc, char *argv[])
10101 const struct got_error *io_err, *error = NULL;
10102 const struct tog_cmd *cmd = NULL;
10103 int ch, hflag = 0, Vflag = 0;
10104 char **cmd_argv = NULL;
10105 static const struct option longopts[] = {
10106 { "version", no_argument, NULL, 'V' },
10107 { NULL, 0, NULL, 0}
10109 char *diff_algo_str = NULL;
10110 const char *test_script_path;
10112 setlocale(LC_CTYPE, "");
10115 * Override default signal handlers before starting ncurses.
10116 * This should prevent ncurses from installing its own
10117 * broken cleanup() signal handler.
10119 signal(SIGWINCH, tog_sigwinch);
10120 signal(SIGPIPE, tog_sigpipe);
10121 signal(SIGCONT, tog_sigcont);
10122 signal(SIGINT, tog_sigint);
10123 signal(SIGTERM, tog_sigterm);
10126 * Test mode init must happen before pledge() because "tty" will
10127 * not allow TTY-related ioctls to occur via regular files.
10129 test_script_path = getenv("TOG_TEST_SCRIPT");
10130 if (test_script_path != NULL) {
10131 error = init_mock_term(test_script_path);
10132 if (error) {
10133 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
10134 return 1;
10136 } else if (!isatty(STDIN_FILENO))
10137 errx(1, "standard input is not a tty");
10139 #if !defined(PROFILE)
10140 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
10141 NULL) == -1)
10142 err(1, "pledge");
10143 #endif
10145 while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
10146 switch (ch) {
10147 case 'h':
10148 hflag = 1;
10149 break;
10150 case 'V':
10151 Vflag = 1;
10152 break;
10153 default:
10154 usage(hflag, 1);
10155 /* NOTREACHED */
10159 argc -= optind;
10160 argv += optind;
10161 optind = 1;
10162 optreset = 1;
10164 if (Vflag) {
10165 got_version_print_str();
10166 return 0;
10169 if (argc == 0) {
10170 if (hflag)
10171 usage(hflag, 0);
10172 /* Build an argument vector which runs a default command. */
10173 cmd = &tog_commands[0];
10174 argc = 1;
10175 cmd_argv = make_argv(argc, cmd->name);
10176 } else {
10177 size_t i;
10179 /* Did the user specify a command? */
10180 for (i = 0; i < nitems(tog_commands); i++) {
10181 if (strncmp(tog_commands[i].name, argv[0],
10182 strlen(argv[0])) == 0) {
10183 cmd = &tog_commands[i];
10184 break;
10189 diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
10190 if (diff_algo_str) {
10191 if (strcasecmp(diff_algo_str, "patience") == 0)
10192 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
10193 if (strcasecmp(diff_algo_str, "myers") == 0)
10194 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
10197 tog_base_commit.idx = -1;
10198 tog_base_commit.marker = GOT_WORKTREE_STATE_UNKNOWN;
10200 if (cmd == NULL) {
10201 if (argc != 1)
10202 usage(0, 1);
10203 /* No command specified; try log with a path */
10204 error = tog_log_with_path(argc, argv);
10205 } else {
10206 if (hflag)
10207 cmd->cmd_usage();
10208 else
10209 error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
10212 if (using_mock_io) {
10213 io_err = tog_io_close();
10214 if (error == NULL)
10215 error = io_err;
10217 endwin();
10218 if (cmd_argv) {
10219 int i;
10220 for (i = 0; i < argc; i++)
10221 free(cmd_argv[i]);
10222 free(cmd_argv);
10225 if (error && error->code != GOT_ERR_CANCELLED &&
10226 error->code != GOT_ERR_EOF &&
10227 error->code != GOT_ERR_PRIVSEP_EXIT &&
10228 error->code != GOT_ERR_PRIVSEP_PIPE &&
10229 !(error->code == GOT_ERR_ERRNO && errno == EINTR)) {
10230 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
10231 return 1;
10233 return 0;