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 <sys/queue.h>
18 #include <sys/stat.h>
19 #include <sys/ioctl.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #if defined(__FreeBSD__) || defined(__APPLE__)
24 #define _XOPEN_SOURCE_EXTENDED /* for ncurses wide-character functions */
25 #endif
26 #include <curses.h>
27 #include <panel.h>
28 #include <locale.h>
29 #include <signal.h>
30 #include <stdlib.h>
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <getopt.h>
34 #include <string.h>
35 #include <err.h>
36 #include <unistd.h>
37 #include <limits.h>
38 #include <wchar.h>
39 #include <time.h>
40 #include <pthread.h>
41 #include <libgen.h>
42 #include <regex.h>
43 #include <sched.h>
45 #include "got_compat.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"
62 #ifndef MIN
63 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
64 #endif
66 #ifndef MAX
67 #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
68 #endif
70 #ifndef CTRL
71 #define CTRL(x) ((x) & 0x1f)
72 #endif
74 #ifndef nitems
75 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
76 #endif
78 struct tog_cmd {
79 const char *name;
80 const struct got_error *(*cmd_main)(int, char *[]);
81 void (*cmd_usage)(void);
82 };
84 __dead static void usage(int, int);
85 __dead static void usage_log(void);
86 __dead static void usage_diff(void);
87 __dead static void usage_blame(void);
88 __dead static void usage_tree(void);
89 __dead static void usage_ref(void);
91 static const struct got_error* cmd_log(int, char *[]);
92 static const struct got_error* cmd_diff(int, char *[]);
93 static const struct got_error* cmd_blame(int, char *[]);
94 static const struct got_error* cmd_tree(int, char *[]);
95 static const struct got_error* cmd_ref(int, char *[]);
97 static const struct tog_cmd tog_commands[] = {
98 { "log", cmd_log, usage_log },
99 { "diff", cmd_diff, usage_diff },
100 { "blame", cmd_blame, usage_blame },
101 { "tree", cmd_tree, usage_tree },
102 { "ref", cmd_ref, usage_ref },
103 };
105 enum tog_view_type {
106 TOG_VIEW_DIFF,
107 TOG_VIEW_LOG,
108 TOG_VIEW_BLAME,
109 TOG_VIEW_TREE,
110 TOG_VIEW_REF,
111 TOG_VIEW_HELP
112 };
114 /* Match _DIFF to _HELP with enum tog_view_type TOG_VIEW_* counterparts. */
115 enum tog_keymap_type {
116 TOG_KEYMAP_KEYS = -2,
117 TOG_KEYMAP_GLOBAL,
118 TOG_KEYMAP_DIFF,
119 TOG_KEYMAP_LOG,
120 TOG_KEYMAP_BLAME,
121 TOG_KEYMAP_TREE,
122 TOG_KEYMAP_REF,
123 TOG_KEYMAP_HELP
124 };
126 enum tog_view_mode {
127 TOG_VIEW_SPLIT_NONE,
128 TOG_VIEW_SPLIT_VERT,
129 TOG_VIEW_SPLIT_HRZN
130 };
132 #define HSPLIT_SCALE 0.3 /* default horizontal split scale */
134 #define TOG_EOF_STRING "(END)"
136 struct commit_queue_entry {
137 TAILQ_ENTRY(commit_queue_entry) entry;
138 struct got_object_id *id;
139 struct got_commit_object *commit;
140 int idx;
141 };
142 TAILQ_HEAD(commit_queue_head, commit_queue_entry);
143 struct commit_queue {
144 int ncommits;
145 struct commit_queue_head head;
146 };
148 struct tog_color {
149 STAILQ_ENTRY(tog_color) entry;
150 regex_t regex;
151 short colorpair;
152 };
153 STAILQ_HEAD(tog_colors, tog_color);
155 static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
156 static struct got_reflist_object_id_map *tog_refs_idmap;
157 static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
159 static const struct got_error *
160 tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
161 struct got_reference* re2)
163 const char *name1 = got_ref_get_name(re1);
164 const char *name2 = got_ref_get_name(re2);
165 int isbackup1, isbackup2;
167 /* Sort backup refs towards the bottom of the list. */
168 isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
169 isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
170 if (!isbackup1 && isbackup2) {
171 *cmp = -1;
172 return NULL;
173 } else if (isbackup1 && !isbackup2) {
174 *cmp = 1;
175 return NULL;
178 *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
179 return NULL;
182 static const struct got_error *
183 tog_load_refs(struct got_repository *repo, int sort_by_date)
185 const struct got_error *err;
187 err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
188 got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
189 repo);
190 if (err)
191 return err;
193 return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
194 repo);
197 static void
198 tog_free_refs(void)
200 if (tog_refs_idmap) {
201 got_reflist_object_id_map_free(tog_refs_idmap);
202 tog_refs_idmap = NULL;
204 got_ref_list_free(&tog_refs);
207 static const struct got_error *
208 add_color(struct tog_colors *colors, const char *pattern,
209 int idx, short color)
211 const struct got_error *err = NULL;
212 struct tog_color *tc;
213 int regerr = 0;
215 if (idx < 1 || idx > COLOR_PAIRS - 1)
216 return NULL;
218 init_pair(idx, color, -1);
220 tc = calloc(1, sizeof(*tc));
221 if (tc == NULL)
222 return got_error_from_errno("calloc");
223 regerr = regcomp(&tc->regex, pattern,
224 REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
225 if (regerr) {
226 static char regerr_msg[512];
227 static char err_msg[512];
228 regerror(regerr, &tc->regex, regerr_msg,
229 sizeof(regerr_msg));
230 snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
231 regerr_msg);
232 err = got_error_msg(GOT_ERR_REGEX, err_msg);
233 free(tc);
234 return err;
236 tc->colorpair = idx;
237 STAILQ_INSERT_HEAD(colors, tc, entry);
238 return NULL;
241 static void
242 free_colors(struct tog_colors *colors)
244 struct tog_color *tc;
246 while (!STAILQ_EMPTY(colors)) {
247 tc = STAILQ_FIRST(colors);
248 STAILQ_REMOVE_HEAD(colors, entry);
249 regfree(&tc->regex);
250 free(tc);
254 static struct tog_color *
255 get_color(struct tog_colors *colors, int colorpair)
257 struct tog_color *tc = NULL;
259 STAILQ_FOREACH(tc, colors, entry) {
260 if (tc->colorpair == colorpair)
261 return tc;
264 return NULL;
267 static int
268 default_color_value(const char *envvar)
270 if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
271 return COLOR_MAGENTA;
272 if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
273 return COLOR_CYAN;
274 if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
275 return COLOR_YELLOW;
276 if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
277 return COLOR_GREEN;
278 if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
279 return COLOR_MAGENTA;
280 if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
281 return COLOR_MAGENTA;
282 if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
283 return COLOR_CYAN;
284 if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
285 return COLOR_GREEN;
286 if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
287 return COLOR_GREEN;
288 if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
289 return COLOR_CYAN;
290 if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
291 return COLOR_YELLOW;
292 if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
293 return COLOR_GREEN;
294 if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
295 return COLOR_MAGENTA;
296 if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
297 return COLOR_YELLOW;
298 if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
299 return COLOR_CYAN;
301 return -1;
304 static int
305 get_color_value(const char *envvar)
307 const char *val = getenv(envvar);
309 if (val == NULL)
310 return default_color_value(envvar);
312 if (strcasecmp(val, "black") == 0)
313 return COLOR_BLACK;
314 if (strcasecmp(val, "red") == 0)
315 return COLOR_RED;
316 if (strcasecmp(val, "green") == 0)
317 return COLOR_GREEN;
318 if (strcasecmp(val, "yellow") == 0)
319 return COLOR_YELLOW;
320 if (strcasecmp(val, "blue") == 0)
321 return COLOR_BLUE;
322 if (strcasecmp(val, "magenta") == 0)
323 return COLOR_MAGENTA;
324 if (strcasecmp(val, "cyan") == 0)
325 return COLOR_CYAN;
326 if (strcasecmp(val, "white") == 0)
327 return COLOR_WHITE;
328 if (strcasecmp(val, "default") == 0)
329 return -1;
331 return default_color_value(envvar);
334 struct tog_diff_view_state {
335 struct got_object_id *id1, *id2;
336 const char *label1, *label2;
337 FILE *f, *f1, *f2;
338 int fd1, fd2;
339 int lineno;
340 int first_displayed_line;
341 int last_displayed_line;
342 int eof;
343 int diff_context;
344 int ignore_whitespace;
345 int force_text_diff;
346 struct got_repository *repo;
347 struct got_diff_line *lines;
348 size_t nlines;
349 int matched_line;
350 int selected_line;
352 /* passed from log or blame view; may be NULL */
353 struct tog_view *parent_view;
354 };
356 pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
357 static volatile sig_atomic_t tog_thread_error;
359 struct tog_log_thread_args {
360 pthread_cond_t need_commits;
361 pthread_cond_t commit_loaded;
362 int commits_needed;
363 int load_all;
364 struct got_commit_graph *graph;
365 struct commit_queue *real_commits;
366 const char *in_repo_path;
367 struct got_object_id *start_id;
368 struct got_repository *repo;
369 int *pack_fds;
370 int log_complete;
371 sig_atomic_t *quit;
372 struct commit_queue_entry **first_displayed_entry;
373 struct commit_queue_entry **selected_entry;
374 int *searching;
375 int *search_next_done;
376 regex_t *regex;
377 int *limiting;
378 int limit_match;
379 regex_t *limit_regex;
380 struct commit_queue *limit_commits;
381 };
383 struct tog_log_view_state {
384 struct commit_queue *commits;
385 struct commit_queue_entry *first_displayed_entry;
386 struct commit_queue_entry *last_displayed_entry;
387 struct commit_queue_entry *selected_entry;
388 struct commit_queue real_commits;
389 int selected;
390 char *in_repo_path;
391 char *head_ref_name;
392 int log_branches;
393 struct got_repository *repo;
394 struct got_object_id *start_id;
395 sig_atomic_t quit;
396 pthread_t thread;
397 struct tog_log_thread_args thread_args;
398 struct commit_queue_entry *matched_entry;
399 struct commit_queue_entry *search_entry;
400 struct tog_colors colors;
401 int use_committer;
402 int limit_view;
403 regex_t limit_regex;
404 struct commit_queue limit_commits;
405 };
407 #define TOG_COLOR_DIFF_MINUS 1
408 #define TOG_COLOR_DIFF_PLUS 2
409 #define TOG_COLOR_DIFF_CHUNK_HEADER 3
410 #define TOG_COLOR_DIFF_META 4
411 #define TOG_COLOR_TREE_SUBMODULE 5
412 #define TOG_COLOR_TREE_SYMLINK 6
413 #define TOG_COLOR_TREE_DIRECTORY 7
414 #define TOG_COLOR_TREE_EXECUTABLE 8
415 #define TOG_COLOR_COMMIT 9
416 #define TOG_COLOR_AUTHOR 10
417 #define TOG_COLOR_DATE 11
418 #define TOG_COLOR_REFS_HEADS 12
419 #define TOG_COLOR_REFS_TAGS 13
420 #define TOG_COLOR_REFS_REMOTES 14
421 #define TOG_COLOR_REFS_BACKUP 15
423 struct tog_blame_cb_args {
424 struct tog_blame_line *lines; /* one per line */
425 int nlines;
427 struct tog_view *view;
428 struct got_object_id *commit_id;
429 int *quit;
430 };
432 struct tog_blame_thread_args {
433 const char *path;
434 struct got_repository *repo;
435 struct tog_blame_cb_args *cb_args;
436 int *complete;
437 got_cancel_cb cancel_cb;
438 void *cancel_arg;
439 };
441 struct tog_blame {
442 FILE *f;
443 off_t filesize;
444 struct tog_blame_line *lines;
445 int nlines;
446 off_t *line_offsets;
447 pthread_t thread;
448 struct tog_blame_thread_args thread_args;
449 struct tog_blame_cb_args cb_args;
450 const char *path;
451 int *pack_fds;
452 };
454 struct tog_blame_view_state {
455 int first_displayed_line;
456 int last_displayed_line;
457 int selected_line;
458 int last_diffed_line;
459 int blame_complete;
460 int eof;
461 int done;
462 struct got_object_id_queue blamed_commits;
463 struct got_object_qid *blamed_commit;
464 char *path;
465 struct got_repository *repo;
466 struct got_object_id *commit_id;
467 struct got_object_id *id_to_log;
468 struct tog_blame blame;
469 int matched_line;
470 struct tog_colors colors;
471 };
473 struct tog_parent_tree {
474 TAILQ_ENTRY(tog_parent_tree) entry;
475 struct got_tree_object *tree;
476 struct got_tree_entry *first_displayed_entry;
477 struct got_tree_entry *selected_entry;
478 int selected;
479 };
481 TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
483 struct tog_tree_view_state {
484 char *tree_label;
485 struct got_object_id *commit_id;/* commit which this tree belongs to */
486 struct got_tree_object *root; /* the commit's root tree entry */
487 struct got_tree_object *tree; /* currently displayed (sub-)tree */
488 struct got_tree_entry *first_displayed_entry;
489 struct got_tree_entry *last_displayed_entry;
490 struct got_tree_entry *selected_entry;
491 int ndisplayed, selected, show_ids;
492 struct tog_parent_trees parents; /* parent trees of current sub-tree */
493 char *head_ref_name;
494 struct got_repository *repo;
495 struct got_tree_entry *matched_entry;
496 struct tog_colors colors;
497 };
499 struct tog_reflist_entry {
500 TAILQ_ENTRY(tog_reflist_entry) entry;
501 struct got_reference *ref;
502 int idx;
503 };
505 TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
507 struct tog_ref_view_state {
508 struct tog_reflist_head refs;
509 struct tog_reflist_entry *first_displayed_entry;
510 struct tog_reflist_entry *last_displayed_entry;
511 struct tog_reflist_entry *selected_entry;
512 int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
513 struct got_repository *repo;
514 struct tog_reflist_entry *matched_entry;
515 struct tog_colors colors;
516 };
518 struct tog_help_view_state {
519 FILE *f;
520 off_t *line_offsets;
521 size_t nlines;
522 int lineno;
523 int first_displayed_line;
524 int last_displayed_line;
525 int eof;
526 int matched_line;
527 int selected_line;
528 int all;
529 enum tog_keymap_type type;
530 };
532 #define GENERATE_HELP \
533 KEYMAP_("Global", TOG_KEYMAP_GLOBAL), \
534 KEY_("H F1", "Open view-specific help (double tap for all help)"), \
535 KEY_("k C-p Up", "Move cursor or page up one line"), \
536 KEY_("j C-n Down", "Move cursor or page down one line"), \
537 KEY_("C-b b PgUp", "Scroll the view up one page"), \
538 KEY_("C-f f PgDn Space", "Scroll the view down one page"), \
539 KEY_("C-u u", "Scroll the view up one half page"), \
540 KEY_("C-d d", "Scroll the view down one half page"), \
541 KEY_("g", "Go to line N (default: first line)"), \
542 KEY_("Home =", "Go to the first line"), \
543 KEY_("G", "Go to line N (default: last line)"), \
544 KEY_("End *", "Go to the last line"), \
545 KEY_("l Right", "Scroll the view right"), \
546 KEY_("h Left", "Scroll the view left"), \
547 KEY_("$", "Scroll view to the rightmost position"), \
548 KEY_("0", "Scroll view to the leftmost position"), \
549 KEY_("-", "Decrease size of the focussed split"), \
550 KEY_("+", "Increase size of the focussed split"), \
551 KEY_("Tab", "Switch focus between views"), \
552 KEY_("F", "Toggle fullscreen mode"), \
553 KEY_("/", "Open prompt to enter search term"), \
554 KEY_("n", "Find next line/token matching the current search term"), \
555 KEY_("N", "Find previous line/token matching the current search term"),\
556 KEY_("q", "Quit the focussed view; Quit help screen"), \
557 KEY_("Q", "Quit tog"), \
559 KEYMAP_("Log view", TOG_KEYMAP_LOG), \
560 KEY_("< ,", "Move cursor up one commit"), \
561 KEY_("> .", "Move cursor down one commit"), \
562 KEY_("Enter", "Open diff view of the selected commit"), \
563 KEY_("B", "Reload the log view and toggle display of merged commits"), \
564 KEY_("R", "Open ref view of all repository references"), \
565 KEY_("T", "Display tree view of the repository from the selected" \
566 " commit"), \
567 KEY_("@", "Toggle between displaying author and committer name"), \
568 KEY_("&", "Open prompt to enter term to limit commits displayed"), \
569 KEY_("C-g Backspace", "Cancel current search or log operation"), \
570 KEY_("C-l", "Reload the log view with new commits in the repository"), \
572 KEYMAP_("Diff view", TOG_KEYMAP_DIFF), \
573 KEY_("K < ,", "Display diff of next line in the file/log entry"), \
574 KEY_("J > .", "Display diff of previous line in the file/log entry"), \
575 KEY_("A", "Toggle between Myers and Patience diff algorithm"), \
576 KEY_("a", "Toggle treatment of file as ASCII irrespective of binary" \
577 " data"), \
578 KEY_("(", "Go to the previous file in the diff"), \
579 KEY_(")", "Go to the next file in the diff"), \
580 KEY_("{", "Go to the previous hunk in the diff"), \
581 KEY_("}", "Go to the next hunk in the diff"), \
582 KEY_("[", "Decrease the number of context lines"), \
583 KEY_("]", "Increase the number of context lines"), \
584 KEY_("w", "Toggle ignore whitespace-only changes in the diff"), \
586 KEYMAP_("Blame view", TOG_KEYMAP_BLAME), \
587 KEY_("Enter", "Display diff view of the selected line's commit"), \
588 KEY_("A", "Toggle diff algorithm between Myers and Patience"), \
589 KEY_("L", "Open log view for the currently selected annotated line"), \
590 KEY_("C", "Reload view with the previously blamed commit"), \
591 KEY_("c", "Reload view with the version of the file found in the" \
592 " selected line's commit"), \
593 KEY_("p", "Reload view with the version of the file found in the" \
594 " selected line's parent commit"), \
596 KEYMAP_("Tree view", TOG_KEYMAP_TREE), \
597 KEY_("Enter", "Enter selected directory or open blame view of the" \
598 " selected file"), \
599 KEY_("L", "Open log view for the selected entry"), \
600 KEY_("R", "Open ref view of all repository references"), \
601 KEY_("i", "Show object IDs for all tree entries"), \
602 KEY_("Backspace", "Return to the parent directory"), \
604 KEYMAP_("Ref view", TOG_KEYMAP_REF), \
605 KEY_("Enter", "Display log view of the selected reference"), \
606 KEY_("T", "Display tree view of the selected reference"), \
607 KEY_("i", "Toggle display of IDs for all non-symbolic references"), \
608 KEY_("m", "Toggle display of last modified date for each reference"), \
609 KEY_("o", "Toggle reference sort order (name -> timestamp)"), \
610 KEY_("C-l", "Reload view with all repository references")
612 struct tog_key_map {
613 const char *keys;
614 const char *info;
615 enum tog_keymap_type type;
616 };
618 /*
619 * We implement two types of views: parent views and child views.
621 * The 'Tab' key switches focus between a parent view and its child view.
622 * Child views are shown side-by-side to their parent view, provided
623 * there is enough screen estate.
625 * When a new view is opened from within a parent view, this new view
626 * becomes a child view of the parent view, replacing any existing child.
628 * When a new view is opened from within a child view, this new view
629 * becomes a parent view which will obscure the views below until the
630 * user quits the new parent view by typing 'q'.
632 * This list of views contains parent views only.
633 * Child views are only pointed to by their parent view.
634 */
635 TAILQ_HEAD(tog_view_list_head, tog_view);
637 struct tog_view {
638 TAILQ_ENTRY(tog_view) entry;
639 WINDOW *window;
640 PANEL *panel;
641 int nlines, ncols, begin_y, begin_x; /* based on split height/width */
642 int resized_y, resized_x; /* begin_y/x based on user resizing */
643 int maxx, x; /* max column and current start column */
644 int lines, cols; /* copies of LINES and COLS */
645 int nscrolled, offset; /* lines scrolled and hsplit line offset */
646 int gline, hiline; /* navigate to and highlight this nG line */
647 int ch, count; /* current keymap and count prefix */
648 int resized; /* set when in a resize event */
649 int focussed; /* Only set on one parent or child view at a time. */
650 int dying;
651 struct tog_view *parent;
652 struct tog_view *child;
654 /*
655 * This flag is initially set on parent views when a new child view
656 * is created. It gets toggled when the 'Tab' key switches focus
657 * between parent and child.
658 * The flag indicates whether focus should be passed on to our child
659 * view if this parent view gets picked for focus after another parent
660 * view was closed. This prevents child views from losing focus in such
661 * situations.
662 */
663 int focus_child;
665 enum tog_view_mode mode;
666 /* type-specific state */
667 enum tog_view_type type;
668 union {
669 struct tog_diff_view_state diff;
670 struct tog_log_view_state log;
671 struct tog_blame_view_state blame;
672 struct tog_tree_view_state tree;
673 struct tog_ref_view_state ref;
674 struct tog_help_view_state help;
675 } state;
677 const struct got_error *(*show)(struct tog_view *);
678 const struct got_error *(*input)(struct tog_view **,
679 struct tog_view *, int);
680 const struct got_error *(*reset)(struct tog_view *);
681 const struct got_error *(*resize)(struct tog_view *, int);
682 const struct got_error *(*close)(struct tog_view *);
684 const struct got_error *(*search_start)(struct tog_view *);
685 const struct got_error *(*search_next)(struct tog_view *);
686 void (*search_setup)(struct tog_view *, FILE **, off_t **, size_t *,
687 int **, int **, int **, int **);
688 int search_started;
689 int searching;
690 #define TOG_SEARCH_FORWARD 1
691 #define TOG_SEARCH_BACKWARD 2
692 int search_next_done;
693 #define TOG_SEARCH_HAVE_MORE 1
694 #define TOG_SEARCH_NO_MORE 2
695 #define TOG_SEARCH_HAVE_NONE 3
696 regex_t regex;
697 regmatch_t regmatch;
698 };
700 static const struct got_error *open_diff_view(struct tog_view *,
701 struct got_object_id *, struct got_object_id *,
702 const char *, const char *, int, int, int, struct tog_view *,
703 struct got_repository *);
704 static const struct got_error *show_diff_view(struct tog_view *);
705 static const struct got_error *input_diff_view(struct tog_view **,
706 struct tog_view *, int);
707 static const struct got_error *reset_diff_view(struct tog_view *);
708 static const struct got_error* close_diff_view(struct tog_view *);
709 static const struct got_error *search_start_diff_view(struct tog_view *);
710 static void search_setup_diff_view(struct tog_view *, FILE **, off_t **,
711 size_t *, int **, int **, int **, int **);
712 static const struct got_error *search_next_view_match(struct tog_view *);
714 static const struct got_error *open_log_view(struct tog_view *,
715 struct got_object_id *, struct got_repository *,
716 const char *, const char *, int);
717 static const struct got_error * show_log_view(struct tog_view *);
718 static const struct got_error *input_log_view(struct tog_view **,
719 struct tog_view *, int);
720 static const struct got_error *resize_log_view(struct tog_view *, int);
721 static const struct got_error *close_log_view(struct tog_view *);
722 static const struct got_error *search_start_log_view(struct tog_view *);
723 static const struct got_error *search_next_log_view(struct tog_view *);
725 static const struct got_error *open_blame_view(struct tog_view *, char *,
726 struct got_object_id *, struct got_repository *);
727 static const struct got_error *show_blame_view(struct tog_view *);
728 static const struct got_error *input_blame_view(struct tog_view **,
729 struct tog_view *, int);
730 static const struct got_error *reset_blame_view(struct tog_view *);
731 static const struct got_error *close_blame_view(struct tog_view *);
732 static const struct got_error *search_start_blame_view(struct tog_view *);
733 static void search_setup_blame_view(struct tog_view *, FILE **, off_t **,
734 size_t *, int **, int **, int **, int **);
736 static const struct got_error *open_tree_view(struct tog_view *,
737 struct got_object_id *, const char *, struct got_repository *);
738 static const struct got_error *show_tree_view(struct tog_view *);
739 static const struct got_error *input_tree_view(struct tog_view **,
740 struct tog_view *, int);
741 static const struct got_error *close_tree_view(struct tog_view *);
742 static const struct got_error *search_start_tree_view(struct tog_view *);
743 static const struct got_error *search_next_tree_view(struct tog_view *);
745 static const struct got_error *open_ref_view(struct tog_view *,
746 struct got_repository *);
747 static const struct got_error *show_ref_view(struct tog_view *);
748 static const struct got_error *input_ref_view(struct tog_view **,
749 struct tog_view *, int);
750 static const struct got_error *close_ref_view(struct tog_view *);
751 static const struct got_error *search_start_ref_view(struct tog_view *);
752 static const struct got_error *search_next_ref_view(struct tog_view *);
754 static const struct got_error *open_help_view(struct tog_view *,
755 struct tog_view *);
756 static const struct got_error *show_help_view(struct tog_view *);
757 static const struct got_error *input_help_view(struct tog_view **,
758 struct tog_view *, int);
759 static const struct got_error *reset_help_view(struct tog_view *);
760 static const struct got_error* close_help_view(struct tog_view *);
761 static const struct got_error *search_start_help_view(struct tog_view *);
762 static void search_setup_help_view(struct tog_view *, FILE **, off_t **,
763 size_t *, int **, int **, int **, int **);
765 static volatile sig_atomic_t tog_sigwinch_received;
766 static volatile sig_atomic_t tog_sigpipe_received;
767 static volatile sig_atomic_t tog_sigcont_received;
768 static volatile sig_atomic_t tog_sigint_received;
769 static volatile sig_atomic_t tog_sigterm_received;
771 static void
772 tog_sigwinch(int signo)
774 tog_sigwinch_received = 1;
777 static void
778 tog_sigpipe(int signo)
780 tog_sigpipe_received = 1;
783 static void
784 tog_sigcont(int signo)
786 tog_sigcont_received = 1;
789 static void
790 tog_sigint(int signo)
792 tog_sigint_received = 1;
795 static void
796 tog_sigterm(int signo)
798 tog_sigterm_received = 1;
801 static int
802 tog_fatal_signal_received(void)
804 return (tog_sigpipe_received ||
805 tog_sigint_received || tog_sigterm_received);
808 static const struct got_error *
809 view_close(struct tog_view *view)
811 const struct got_error *err = NULL, *child_err = NULL;
813 if (view->child) {
814 child_err = view_close(view->child);
815 view->child = NULL;
817 if (view->close)
818 err = view->close(view);
819 if (view->panel)
820 del_panel(view->panel);
821 if (view->window)
822 delwin(view->window);
823 free(view);
824 return err ? err : child_err;
827 static struct tog_view *
828 view_open(int nlines, int ncols, int begin_y, int begin_x,
829 enum tog_view_type type)
831 struct tog_view *view = calloc(1, sizeof(*view));
833 if (view == NULL)
834 return NULL;
836 view->type = type;
837 view->lines = LINES;
838 view->cols = COLS;
839 view->nlines = nlines ? nlines : LINES - begin_y;
840 view->ncols = ncols ? ncols : COLS - begin_x;
841 view->begin_y = begin_y;
842 view->begin_x = begin_x;
843 view->window = newwin(nlines, ncols, begin_y, begin_x);
844 if (view->window == NULL) {
845 view_close(view);
846 return NULL;
848 view->panel = new_panel(view->window);
849 if (view->panel == NULL ||
850 set_panel_userptr(view->panel, view) != OK) {
851 view_close(view);
852 return NULL;
855 keypad(view->window, TRUE);
856 return view;
859 static int
860 view_split_begin_x(int begin_x)
862 if (begin_x > 0 || COLS < 120)
863 return 0;
864 return (COLS - MAX(COLS / 2, 80));
867 /* XXX Stub till we decide what to do. */
868 static int
869 view_split_begin_y(int lines)
871 return lines * HSPLIT_SCALE;
874 static const struct got_error *view_resize(struct tog_view *);
876 static const struct got_error *
877 view_splitscreen(struct tog_view *view)
879 const struct got_error *err = NULL;
881 if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
882 if (view->resized_y && view->resized_y < view->lines)
883 view->begin_y = view->resized_y;
884 else
885 view->begin_y = view_split_begin_y(view->nlines);
886 view->begin_x = 0;
887 } else if (!view->resized) {
888 if (view->resized_x && view->resized_x < view->cols - 1 &&
889 view->cols > 119)
890 view->begin_x = view->resized_x;
891 else
892 view->begin_x = view_split_begin_x(0);
893 view->begin_y = 0;
895 view->nlines = LINES - view->begin_y;
896 view->ncols = COLS - view->begin_x;
897 view->lines = LINES;
898 view->cols = COLS;
899 err = view_resize(view);
900 if (err)
901 return err;
903 if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
904 view->parent->nlines = view->begin_y;
906 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
907 return got_error_from_errno("mvwin");
909 return NULL;
912 static const struct got_error *
913 view_fullscreen(struct tog_view *view)
915 const struct got_error *err = NULL;
917 view->begin_x = 0;
918 view->begin_y = view->resized ? view->begin_y : 0;
919 view->nlines = view->resized ? view->nlines : LINES;
920 view->ncols = COLS;
921 view->lines = LINES;
922 view->cols = COLS;
923 err = view_resize(view);
924 if (err)
925 return err;
927 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
928 return got_error_from_errno("mvwin");
930 return NULL;
933 static int
934 view_is_parent_view(struct tog_view *view)
936 return view->parent == NULL;
939 static int
940 view_is_splitscreen(struct tog_view *view)
942 return view->begin_x > 0 || view->begin_y > 0;
945 static int
946 view_is_fullscreen(struct tog_view *view)
948 return view->nlines == LINES && view->ncols == COLS;
951 static int
952 view_is_hsplit_top(struct tog_view *view)
954 return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
955 view_is_splitscreen(view->child);
958 static void
959 view_border(struct tog_view *view)
961 PANEL *panel;
962 const struct tog_view *view_above;
964 if (view->parent)
965 return view_border(view->parent);
967 panel = panel_above(view->panel);
968 if (panel == NULL)
969 return;
971 view_above = panel_userptr(panel);
972 if (view->mode == TOG_VIEW_SPLIT_HRZN)
973 mvwhline(view->window, view_above->begin_y - 1,
974 view->begin_x, got_locale_is_utf8() ?
975 ACS_HLINE : '-', view->ncols);
976 else
977 mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
978 got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
981 static const struct got_error *view_init_hsplit(struct tog_view *, int);
982 static const struct got_error *request_log_commits(struct tog_view *);
983 static const struct got_error *offset_selection_down(struct tog_view *);
984 static void offset_selection_up(struct tog_view *);
985 static void view_get_split(struct tog_view *, int *, int *);
987 static const struct got_error *
988 view_resize(struct tog_view *view)
990 const struct got_error *err = NULL;
991 int dif, nlines, ncols;
993 dif = LINES - view->lines; /* line difference */
995 if (view->lines > LINES)
996 nlines = view->nlines - (view->lines - LINES);
997 else
998 nlines = view->nlines + (LINES - view->lines);
999 if (view->cols > COLS)
1000 ncols = view->ncols - (view->cols - COLS);
1001 else
1002 ncols = view->ncols + (COLS - view->cols);
1004 if (view->child) {
1005 int hs = view->child->begin_y;
1007 if (!view_is_fullscreen(view))
1008 view->child->begin_x = view_split_begin_x(view->begin_x);
1009 if (view->mode == TOG_VIEW_SPLIT_HRZN ||
1010 view->child->begin_x == 0) {
1011 ncols = COLS;
1013 view_fullscreen(view->child);
1014 if (view->child->focussed)
1015 show_panel(view->child->panel);
1016 else
1017 show_panel(view->panel);
1018 } else {
1019 ncols = view->child->begin_x;
1021 view_splitscreen(view->child);
1022 show_panel(view->child->panel);
1025 * XXX This is ugly and needs to be moved into the above
1026 * logic but "works" for now and my attempts at moving it
1027 * break either 'tab' or 'F' key maps in horizontal splits.
1029 if (hs) {
1030 err = view_splitscreen(view->child);
1031 if (err)
1032 return err;
1033 if (dif < 0) { /* top split decreased */
1034 err = offset_selection_down(view);
1035 if (err)
1036 return err;
1038 view_border(view);
1039 update_panels();
1040 doupdate();
1041 show_panel(view->child->panel);
1042 nlines = view->nlines;
1044 } else if (view->parent == NULL)
1045 ncols = COLS;
1047 if (view->resize && dif > 0) {
1048 err = view->resize(view, dif);
1049 if (err)
1050 return err;
1053 if (wresize(view->window, nlines, ncols) == ERR)
1054 return got_error_from_errno("wresize");
1055 if (replace_panel(view->panel, view->window) == ERR)
1056 return got_error_from_errno("replace_panel");
1057 wclear(view->window);
1059 view->nlines = nlines;
1060 view->ncols = ncols;
1061 view->lines = LINES;
1062 view->cols = COLS;
1064 return NULL;
1067 static const struct got_error *
1068 resize_log_view(struct tog_view *view, int increase)
1070 struct tog_log_view_state *s = &view->state.log;
1071 const struct got_error *err = NULL;
1072 int n = 0;
1074 if (s->selected_entry)
1075 n = s->selected_entry->idx + view->lines - s->selected;
1078 * Request commits to account for the increased
1079 * height so we have enough to populate the view.
1081 if (s->commits->ncommits < n) {
1082 view->nscrolled = n - s->commits->ncommits + increase + 1;
1083 err = request_log_commits(view);
1086 return err;
1089 static void
1090 view_adjust_offset(struct tog_view *view, int n)
1092 if (n == 0)
1093 return;
1095 if (view->parent && view->parent->offset) {
1096 if (view->parent->offset + n >= 0)
1097 view->parent->offset += n;
1098 else
1099 view->parent->offset = 0;
1100 } else if (view->offset) {
1101 if (view->offset - n >= 0)
1102 view->offset -= n;
1103 else
1104 view->offset = 0;
1108 static const struct got_error *
1109 view_resize_split(struct tog_view *view, int resize)
1111 const struct got_error *err = NULL;
1112 struct tog_view *v = NULL;
1114 if (view->parent)
1115 v = view->parent;
1116 else
1117 v = view;
1119 if (!v->child || !view_is_splitscreen(v->child))
1120 return NULL;
1122 v->resized = v->child->resized = resize; /* lock for resize event */
1124 if (view->mode == TOG_VIEW_SPLIT_HRZN) {
1125 if (v->child->resized_y)
1126 v->child->begin_y = v->child->resized_y;
1127 if (view->parent)
1128 v->child->begin_y -= resize;
1129 else
1130 v->child->begin_y += resize;
1131 if (v->child->begin_y < 3) {
1132 view->count = 0;
1133 v->child->begin_y = 3;
1134 } else if (v->child->begin_y > LINES - 1) {
1135 view->count = 0;
1136 v->child->begin_y = LINES - 1;
1138 v->ncols = COLS;
1139 v->child->ncols = COLS;
1140 view_adjust_offset(view, resize);
1141 err = view_init_hsplit(v, v->child->begin_y);
1142 if (err)
1143 return err;
1144 v->child->resized_y = v->child->begin_y;
1145 } else {
1146 if (v->child->resized_x)
1147 v->child->begin_x = v->child->resized_x;
1148 if (view->parent)
1149 v->child->begin_x -= resize;
1150 else
1151 v->child->begin_x += resize;
1152 if (v->child->begin_x < 11) {
1153 view->count = 0;
1154 v->child->begin_x = 11;
1155 } else if (v->child->begin_x > COLS - 1) {
1156 view->count = 0;
1157 v->child->begin_x = COLS - 1;
1159 v->child->resized_x = v->child->begin_x;
1162 v->child->mode = v->mode;
1163 v->child->nlines = v->lines - v->child->begin_y;
1164 v->child->ncols = v->cols - v->child->begin_x;
1165 v->focus_child = 1;
1167 err = view_fullscreen(v);
1168 if (err)
1169 return err;
1170 err = view_splitscreen(v->child);
1171 if (err)
1172 return err;
1174 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1175 err = offset_selection_down(v->child);
1176 if (err)
1177 return err;
1180 if (v->resize)
1181 err = v->resize(v, 0);
1182 else if (v->child->resize)
1183 err = v->child->resize(v->child, 0);
1185 v->resized = v->child->resized = 0;
1187 return err;
1190 static void
1191 view_transfer_size(struct tog_view *dst, struct tog_view *src)
1193 struct tog_view *v = src->child ? src->child : src;
1195 dst->resized_x = v->resized_x;
1196 dst->resized_y = v->resized_y;
1199 static const struct got_error *
1200 view_close_child(struct tog_view *view)
1202 const struct got_error *err = NULL;
1204 if (view->child == NULL)
1205 return NULL;
1207 err = view_close(view->child);
1208 view->child = NULL;
1209 return err;
1212 static const struct got_error *
1213 view_set_child(struct tog_view *view, struct tog_view *child)
1215 const struct got_error *err = NULL;
1217 view->child = child;
1218 child->parent = view;
1220 err = view_resize(view);
1221 if (err)
1222 return err;
1224 if (view->child->resized_x || view->child->resized_y)
1225 err = view_resize_split(view, 0);
1227 return err;
1230 static const struct got_error *view_dispatch_request(struct tog_view **,
1231 struct tog_view *, enum tog_view_type, int, int);
1233 static const struct got_error *
1234 view_request_new(struct tog_view **requested, struct tog_view *view,
1235 enum tog_view_type request)
1237 struct tog_view *new_view = NULL;
1238 const struct got_error *err;
1239 int y = 0, x = 0;
1241 *requested = NULL;
1243 if (view_is_parent_view(view) && request != TOG_VIEW_HELP)
1244 view_get_split(view, &y, &x);
1246 err = view_dispatch_request(&new_view, view, request, y, x);
1247 if (err)
1248 return err;
1250 if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN &&
1251 request != TOG_VIEW_HELP) {
1252 err = view_init_hsplit(view, y);
1253 if (err)
1254 return err;
1257 view->focussed = 0;
1258 new_view->focussed = 1;
1259 new_view->mode = view->mode;
1260 new_view->nlines = request == TOG_VIEW_HELP ?
1261 view->lines : view->lines - y;
1263 if (view_is_parent_view(view) && request != TOG_VIEW_HELP) {
1264 view_transfer_size(new_view, view);
1265 err = view_close_child(view);
1266 if (err)
1267 return err;
1268 err = view_set_child(view, new_view);
1269 if (err)
1270 return err;
1271 view->focus_child = 1;
1272 } else
1273 *requested = new_view;
1275 return NULL;
1278 static void
1279 tog_resizeterm(void)
1281 int cols, lines;
1282 struct winsize size;
1284 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1285 cols = 80; /* Default */
1286 lines = 24;
1287 } else {
1288 cols = size.ws_col;
1289 lines = size.ws_row;
1291 resize_term(lines, cols);
1294 static const struct got_error *
1295 view_search_start(struct tog_view *view)
1297 const struct got_error *err = NULL;
1298 struct tog_view *v = view;
1299 char pattern[1024];
1300 int ret;
1302 if (view->search_started) {
1303 regfree(&view->regex);
1304 view->searching = 0;
1305 memset(&view->regmatch, 0, sizeof(view->regmatch));
1307 view->search_started = 0;
1309 if (view->nlines < 1)
1310 return NULL;
1312 if (view_is_hsplit_top(view))
1313 v = view->child;
1314 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1315 v = view->parent;
1317 mvwaddstr(v->window, v->nlines - 1, 0, "/");
1318 wclrtoeol(v->window);
1320 nodelay(v->window, FALSE); /* block for search term input */
1321 nocbreak();
1322 echo();
1323 ret = wgetnstr(v->window, pattern, sizeof(pattern));
1324 wrefresh(v->window);
1325 cbreak();
1326 noecho();
1327 nodelay(v->window, TRUE);
1328 if (ret == ERR)
1329 return NULL;
1331 if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1332 err = view->search_start(view);
1333 if (err) {
1334 regfree(&view->regex);
1335 return err;
1337 view->search_started = 1;
1338 view->searching = TOG_SEARCH_FORWARD;
1339 view->search_next_done = 0;
1340 view->search_next(view);
1343 return NULL;
1346 /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1347 static const struct got_error *
1348 switch_split(struct tog_view *view)
1350 const struct got_error *err = NULL;
1351 struct tog_view *v = NULL;
1353 if (view->parent)
1354 v = view->parent;
1355 else
1356 v = view;
1358 if (v->mode == TOG_VIEW_SPLIT_HRZN)
1359 v->mode = TOG_VIEW_SPLIT_VERT;
1360 else
1361 v->mode = TOG_VIEW_SPLIT_HRZN;
1363 if (!v->child)
1364 return NULL;
1365 else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1366 v->mode = TOG_VIEW_SPLIT_NONE;
1368 view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1369 if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1370 v->child->begin_y = v->child->resized_y;
1371 else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1372 v->child->begin_x = v->child->resized_x;
1375 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1376 v->ncols = COLS;
1377 v->child->ncols = COLS;
1378 v->child->nscrolled = LINES - v->child->nlines;
1380 err = view_init_hsplit(v, v->child->begin_y);
1381 if (err)
1382 return err;
1384 v->child->mode = v->mode;
1385 v->child->nlines = v->lines - v->child->begin_y;
1386 v->focus_child = 1;
1388 err = view_fullscreen(v);
1389 if (err)
1390 return err;
1391 err = view_splitscreen(v->child);
1392 if (err)
1393 return err;
1395 if (v->mode == TOG_VIEW_SPLIT_NONE)
1396 v->mode = TOG_VIEW_SPLIT_VERT;
1397 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1398 err = offset_selection_down(v);
1399 if (err)
1400 return err;
1401 err = offset_selection_down(v->child);
1402 if (err)
1403 return err;
1404 } else {
1405 offset_selection_up(v);
1406 offset_selection_up(v->child);
1408 if (v->resize)
1409 err = v->resize(v, 0);
1410 else if (v->child->resize)
1411 err = v->child->resize(v->child, 0);
1413 return err;
1417 * Compute view->count from numeric input. Assign total to view->count and
1418 * return first non-numeric key entered.
1420 static int
1421 get_compound_key(struct tog_view *view, int c)
1423 struct tog_view *v = view;
1424 int x, n = 0;
1426 if (view_is_hsplit_top(view))
1427 v = view->child;
1428 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1429 v = view->parent;
1431 view->count = 0;
1432 cbreak(); /* block for input */
1433 nodelay(view->window, FALSE);
1434 wmove(v->window, v->nlines - 1, 0);
1435 wclrtoeol(v->window);
1436 waddch(v->window, ':');
1438 do {
1439 x = getcurx(v->window);
1440 if (x != ERR && x < view->ncols) {
1441 waddch(v->window, c);
1442 wrefresh(v->window);
1446 * Don't overflow. Max valid request should be the greatest
1447 * between the longest and total lines; cap at 10 million.
1449 if (n >= 9999999)
1450 n = 9999999;
1451 else
1452 n = n * 10 + (c - '0');
1453 } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1455 if (c == 'G' || c == 'g') { /* nG key map */
1456 view->gline = view->hiline = n;
1457 n = 0;
1458 c = 0;
1461 /* Massage excessive or inapplicable values at the input handler. */
1462 view->count = n;
1464 return c;
1467 static const struct got_error *
1468 view_input(struct tog_view **new, int *done, struct tog_view *view,
1469 struct tog_view_list_head *views)
1471 const struct got_error *err = NULL;
1472 struct tog_view *v;
1473 int ch, errcode;
1475 *new = NULL;
1477 /* Clear "no matches" indicator. */
1478 if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1479 view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1480 view->search_next_done = TOG_SEARCH_HAVE_MORE;
1481 view->count = 0;
1484 if (view->searching && !view->search_next_done) {
1485 errcode = pthread_mutex_unlock(&tog_mutex);
1486 if (errcode)
1487 return got_error_set_errno(errcode,
1488 "pthread_mutex_unlock");
1489 sched_yield();
1490 errcode = pthread_mutex_lock(&tog_mutex);
1491 if (errcode)
1492 return got_error_set_errno(errcode,
1493 "pthread_mutex_lock");
1494 view->search_next(view);
1495 return NULL;
1498 /* Allow threads to make progress while we are waiting for input. */
1499 errcode = pthread_mutex_unlock(&tog_mutex);
1500 if (errcode)
1501 return got_error_set_errno(errcode, "pthread_mutex_unlock");
1502 /* If we have an unfinished count, let C-g or backspace abort. */
1503 if (view->count && --view->count) {
1504 cbreak();
1505 nodelay(view->window, TRUE);
1506 ch = wgetch(view->window);
1507 if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1508 view->count = 0;
1509 else
1510 ch = view->ch;
1511 } else {
1512 ch = wgetch(view->window);
1513 if (ch >= '1' && ch <= '9')
1514 view->ch = ch = get_compound_key(view, ch);
1516 if (view->hiline && ch != ERR && ch != 0)
1517 view->hiline = 0; /* key pressed, clear line highlight */
1518 nodelay(view->window, TRUE);
1519 errcode = pthread_mutex_lock(&tog_mutex);
1520 if (errcode)
1521 return got_error_set_errno(errcode, "pthread_mutex_lock");
1523 if (tog_sigwinch_received || tog_sigcont_received) {
1524 tog_resizeterm();
1525 tog_sigwinch_received = 0;
1526 tog_sigcont_received = 0;
1527 TAILQ_FOREACH(v, views, entry) {
1528 err = view_resize(v);
1529 if (err)
1530 return err;
1531 err = v->input(new, v, KEY_RESIZE);
1532 if (err)
1533 return err;
1534 if (v->child) {
1535 err = view_resize(v->child);
1536 if (err)
1537 return err;
1538 err = v->child->input(new, v->child,
1539 KEY_RESIZE);
1540 if (err)
1541 return err;
1542 if (v->child->resized_x || v->child->resized_y) {
1543 err = view_resize_split(v, 0);
1544 if (err)
1545 return err;
1551 switch (ch) {
1552 case '?':
1553 case 'H':
1554 case KEY_F(1):
1555 if (view->type == TOG_VIEW_HELP)
1556 err = view->reset(view);
1557 else
1558 err = view_request_new(new, view, TOG_VIEW_HELP);
1559 break;
1560 case '\t':
1561 view->count = 0;
1562 if (view->child) {
1563 view->focussed = 0;
1564 view->child->focussed = 1;
1565 view->focus_child = 1;
1566 } else if (view->parent) {
1567 view->focussed = 0;
1568 view->parent->focussed = 1;
1569 view->parent->focus_child = 0;
1570 if (!view_is_splitscreen(view)) {
1571 if (view->parent->resize) {
1572 err = view->parent->resize(view->parent,
1573 0);
1574 if (err)
1575 return err;
1577 offset_selection_up(view->parent);
1578 err = view_fullscreen(view->parent);
1579 if (err)
1580 return err;
1583 break;
1584 case 'q':
1585 if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1586 if (view->parent->resize) {
1587 /* might need more commits to fill fullscreen */
1588 err = view->parent->resize(view->parent, 0);
1589 if (err)
1590 break;
1592 offset_selection_up(view->parent);
1594 err = view->input(new, view, ch);
1595 view->dying = 1;
1596 break;
1597 case 'Q':
1598 *done = 1;
1599 break;
1600 case 'F':
1601 view->count = 0;
1602 if (view_is_parent_view(view)) {
1603 if (view->child == NULL)
1604 break;
1605 if (view_is_splitscreen(view->child)) {
1606 view->focussed = 0;
1607 view->child->focussed = 1;
1608 err = view_fullscreen(view->child);
1609 } else {
1610 err = view_splitscreen(view->child);
1611 if (!err)
1612 err = view_resize_split(view, 0);
1614 if (err)
1615 break;
1616 err = view->child->input(new, view->child,
1617 KEY_RESIZE);
1618 } else {
1619 if (view_is_splitscreen(view)) {
1620 view->parent->focussed = 0;
1621 view->focussed = 1;
1622 err = view_fullscreen(view);
1623 } else {
1624 err = view_splitscreen(view);
1625 if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1626 err = view_resize(view->parent);
1627 if (!err)
1628 err = view_resize_split(view, 0);
1630 if (err)
1631 break;
1632 err = view->input(new, view, KEY_RESIZE);
1634 if (err)
1635 break;
1636 if (view->resize) {
1637 err = view->resize(view, 0);
1638 if (err)
1639 break;
1641 if (view->parent)
1642 err = offset_selection_down(view->parent);
1643 if (!err)
1644 err = offset_selection_down(view);
1645 break;
1646 case 'S':
1647 view->count = 0;
1648 err = switch_split(view);
1649 break;
1650 case '-':
1651 err = view_resize_split(view, -1);
1652 break;
1653 case '+':
1654 err = view_resize_split(view, 1);
1655 break;
1656 case KEY_RESIZE:
1657 break;
1658 case '/':
1659 view->count = 0;
1660 if (view->search_start)
1661 view_search_start(view);
1662 else
1663 err = view->input(new, view, ch);
1664 break;
1665 case 'N':
1666 case 'n':
1667 if (view->search_started && view->search_next) {
1668 view->searching = (ch == 'n' ?
1669 TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1670 view->search_next_done = 0;
1671 view->search_next(view);
1672 } else
1673 err = view->input(new, view, ch);
1674 break;
1675 case 'A':
1676 if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1677 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1678 else
1679 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1680 TAILQ_FOREACH(v, views, entry) {
1681 if (v->reset) {
1682 err = v->reset(v);
1683 if (err)
1684 return err;
1686 if (v->child && v->child->reset) {
1687 err = v->child->reset(v->child);
1688 if (err)
1689 return err;
1692 break;
1693 default:
1694 err = view->input(new, view, ch);
1695 break;
1698 return err;
1701 static int
1702 view_needs_focus_indication(struct tog_view *view)
1704 if (view_is_parent_view(view)) {
1705 if (view->child == NULL || view->child->focussed)
1706 return 0;
1707 if (!view_is_splitscreen(view->child))
1708 return 0;
1709 } else if (!view_is_splitscreen(view))
1710 return 0;
1712 return view->focussed;
1715 static const struct got_error *
1716 view_loop(struct tog_view *view)
1718 const struct got_error *err = NULL;
1719 struct tog_view_list_head views;
1720 struct tog_view *new_view;
1721 char *mode;
1722 int fast_refresh = 10;
1723 int done = 0, errcode;
1725 mode = getenv("TOG_VIEW_SPLIT_MODE");
1726 if (!mode || !(*mode == 'h' || *mode == 'H'))
1727 view->mode = TOG_VIEW_SPLIT_VERT;
1728 else
1729 view->mode = TOG_VIEW_SPLIT_HRZN;
1731 errcode = pthread_mutex_lock(&tog_mutex);
1732 if (errcode)
1733 return got_error_set_errno(errcode, "pthread_mutex_lock");
1735 TAILQ_INIT(&views);
1736 TAILQ_INSERT_HEAD(&views, view, entry);
1738 view->focussed = 1;
1739 err = view->show(view);
1740 if (err)
1741 return err;
1742 update_panels();
1743 doupdate();
1744 while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1745 !tog_fatal_signal_received()) {
1746 /* Refresh fast during initialization, then become slower. */
1747 if (fast_refresh && fast_refresh-- == 0)
1748 halfdelay(10); /* switch to once per second */
1750 err = view_input(&new_view, &done, view, &views);
1751 if (err)
1752 break;
1753 if (view->dying) {
1754 struct tog_view *v, *prev = NULL;
1756 if (view_is_parent_view(view))
1757 prev = TAILQ_PREV(view, tog_view_list_head,
1758 entry);
1759 else if (view->parent)
1760 prev = view->parent;
1762 if (view->parent) {
1763 view->parent->child = NULL;
1764 view->parent->focus_child = 0;
1765 /* Restore fullscreen line height. */
1766 view->parent->nlines = view->parent->lines;
1767 err = view_resize(view->parent);
1768 if (err)
1769 break;
1770 /* Make resized splits persist. */
1771 view_transfer_size(view->parent, view);
1772 } else
1773 TAILQ_REMOVE(&views, view, entry);
1775 err = view_close(view);
1776 if (err)
1777 goto done;
1779 view = NULL;
1780 TAILQ_FOREACH(v, &views, entry) {
1781 if (v->focussed)
1782 break;
1784 if (view == NULL && new_view == NULL) {
1785 /* No view has focus. Try to pick one. */
1786 if (prev)
1787 view = prev;
1788 else if (!TAILQ_EMPTY(&views)) {
1789 view = TAILQ_LAST(&views,
1790 tog_view_list_head);
1792 if (view) {
1793 if (view->focus_child) {
1794 view->child->focussed = 1;
1795 view = view->child;
1796 } else
1797 view->focussed = 1;
1801 if (new_view) {
1802 struct tog_view *v, *t;
1803 /* Only allow one parent view per type. */
1804 TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1805 if (v->type != new_view->type)
1806 continue;
1807 TAILQ_REMOVE(&views, v, entry);
1808 err = view_close(v);
1809 if (err)
1810 goto done;
1811 break;
1813 TAILQ_INSERT_TAIL(&views, new_view, entry);
1814 view = new_view;
1816 if (view) {
1817 if (view_is_parent_view(view)) {
1818 if (view->child && view->child->focussed)
1819 view = view->child;
1820 } else {
1821 if (view->parent && view->parent->focussed)
1822 view = view->parent;
1824 show_panel(view->panel);
1825 if (view->child && view_is_splitscreen(view->child))
1826 show_panel(view->child->panel);
1827 if (view->parent && view_is_splitscreen(view)) {
1828 err = view->parent->show(view->parent);
1829 if (err)
1830 goto done;
1832 err = view->show(view);
1833 if (err)
1834 goto done;
1835 if (view->child) {
1836 err = view->child->show(view->child);
1837 if (err)
1838 goto done;
1840 update_panels();
1841 doupdate();
1844 done:
1845 while (!TAILQ_EMPTY(&views)) {
1846 const struct got_error *close_err;
1847 view = TAILQ_FIRST(&views);
1848 TAILQ_REMOVE(&views, view, entry);
1849 close_err = view_close(view);
1850 if (close_err && err == NULL)
1851 err = close_err;
1854 errcode = pthread_mutex_unlock(&tog_mutex);
1855 if (errcode && err == NULL)
1856 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1858 return err;
1861 __dead static void
1862 usage_log(void)
1864 endwin();
1865 fprintf(stderr,
1866 "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1867 getprogname());
1868 exit(1);
1871 /* Create newly allocated wide-character string equivalent to a byte string. */
1872 static const struct got_error *
1873 mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1875 char *vis = NULL;
1876 const struct got_error *err = NULL;
1878 *ws = NULL;
1879 *wlen = mbstowcs(NULL, s, 0);
1880 if (*wlen == (size_t)-1) {
1881 int vislen;
1882 if (errno != EILSEQ)
1883 return got_error_from_errno("mbstowcs");
1885 /* byte string invalid in current encoding; try to "fix" it */
1886 err = got_mbsavis(&vis, &vislen, s);
1887 if (err)
1888 return err;
1889 *wlen = mbstowcs(NULL, vis, 0);
1890 if (*wlen == (size_t)-1) {
1891 err = got_error_from_errno("mbstowcs"); /* give up */
1892 goto done;
1896 *ws = calloc(*wlen + 1, sizeof(**ws));
1897 if (*ws == NULL) {
1898 err = got_error_from_errno("calloc");
1899 goto done;
1902 if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1903 err = got_error_from_errno("mbstowcs");
1904 done:
1905 free(vis);
1906 if (err) {
1907 free(*ws);
1908 *ws = NULL;
1909 *wlen = 0;
1911 return err;
1914 static const struct got_error *
1915 expand_tab(char **ptr, const char *src)
1917 char *dst;
1918 size_t len, n, idx = 0, sz = 0;
1920 *ptr = NULL;
1921 n = len = strlen(src);
1922 dst = malloc(n + 1);
1923 if (dst == NULL)
1924 return got_error_from_errno("malloc");
1926 while (idx < len && src[idx]) {
1927 const char c = src[idx];
1929 if (c == '\t') {
1930 size_t nb = TABSIZE - sz % TABSIZE;
1931 char *p;
1933 p = realloc(dst, n + nb);
1934 if (p == NULL) {
1935 free(dst);
1936 return got_error_from_errno("realloc");
1939 dst = p;
1940 n += nb;
1941 memset(dst + sz, ' ', nb);
1942 sz += nb;
1943 } else
1944 dst[sz++] = src[idx];
1945 ++idx;
1948 dst[sz] = '\0';
1949 *ptr = dst;
1950 return NULL;
1954 * Advance at most n columns from wline starting at offset off.
1955 * Return the index to the first character after the span operation.
1956 * Return the combined column width of all spanned wide character in
1957 * *rcol.
1959 static int
1960 span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1962 int width, i, cols = 0;
1964 if (n == 0) {
1965 *rcol = cols;
1966 return off;
1969 for (i = off; wline[i] != L'\0'; ++i) {
1970 if (wline[i] == L'\t')
1971 width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1972 else
1973 width = wcwidth(wline[i]);
1975 if (width == -1) {
1976 width = 1;
1977 wline[i] = L'.';
1980 if (cols + width > n)
1981 break;
1982 cols += width;
1985 *rcol = cols;
1986 return i;
1990 * Format a line for display, ensuring that it won't overflow a width limit.
1991 * With scrolling, the width returned refers to the scrolled version of the
1992 * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1994 static const struct got_error *
1995 format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1996 const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1998 const struct got_error *err = NULL;
1999 int cols;
2000 wchar_t *wline = NULL;
2001 char *exstr = NULL;
2002 size_t wlen;
2003 int i, scrollx;
2005 *wlinep = NULL;
2006 *widthp = 0;
2008 if (expand) {
2009 err = expand_tab(&exstr, line);
2010 if (err)
2011 return err;
2014 err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2015 free(exstr);
2016 if (err)
2017 return err;
2019 scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2021 if (wlen > 0 && wline[wlen - 1] == L'\n') {
2022 wline[wlen - 1] = L'\0';
2023 wlen--;
2025 if (wlen > 0 && wline[wlen - 1] == L'\r') {
2026 wline[wlen - 1] = L'\0';
2027 wlen--;
2030 i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2031 wline[i] = L'\0';
2033 if (widthp)
2034 *widthp = cols;
2035 if (scrollxp)
2036 *scrollxp = scrollx;
2037 if (err)
2038 free(wline);
2039 else
2040 *wlinep = wline;
2041 return err;
2044 static const struct got_error*
2045 build_refs_str(char **refs_str, struct got_reflist_head *refs,
2046 struct got_object_id *id, struct got_repository *repo)
2048 static const struct got_error *err = NULL;
2049 struct got_reflist_entry *re;
2050 char *s;
2051 const char *name;
2053 *refs_str = NULL;
2055 TAILQ_FOREACH(re, refs, entry) {
2056 struct got_tag_object *tag = NULL;
2057 struct got_object_id *ref_id;
2058 int cmp;
2060 name = got_ref_get_name(re->ref);
2061 if (strcmp(name, GOT_REF_HEAD) == 0)
2062 continue;
2063 if (strncmp(name, "refs/", 5) == 0)
2064 name += 5;
2065 if (strncmp(name, "got/", 4) == 0 &&
2066 strncmp(name, "got/backup/", 11) != 0)
2067 continue;
2068 if (strncmp(name, "heads/", 6) == 0)
2069 name += 6;
2070 if (strncmp(name, "remotes/", 8) == 0) {
2071 name += 8;
2072 s = strstr(name, "/" GOT_REF_HEAD);
2073 if (s != NULL && s[strlen(s)] == '\0')
2074 continue;
2076 err = got_ref_resolve(&ref_id, repo, re->ref);
2077 if (err)
2078 break;
2079 if (strncmp(name, "tags/", 5) == 0) {
2080 err = got_object_open_as_tag(&tag, repo, ref_id);
2081 if (err) {
2082 if (err->code != GOT_ERR_OBJ_TYPE) {
2083 free(ref_id);
2084 break;
2086 /* Ref points at something other than a tag. */
2087 err = NULL;
2088 tag = NULL;
2091 cmp = got_object_id_cmp(tag ?
2092 got_object_tag_get_object_id(tag) : ref_id, id);
2093 free(ref_id);
2094 if (tag)
2095 got_object_tag_close(tag);
2096 if (cmp != 0)
2097 continue;
2098 s = *refs_str;
2099 if (asprintf(refs_str, "%s%s%s", s ? s : "",
2100 s ? ", " : "", name) == -1) {
2101 err = got_error_from_errno("asprintf");
2102 free(s);
2103 *refs_str = NULL;
2104 break;
2106 free(s);
2109 return err;
2112 static const struct got_error *
2113 format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2114 int col_tab_align)
2116 char *smallerthan;
2118 smallerthan = strchr(author, '<');
2119 if (smallerthan && smallerthan[1] != '\0')
2120 author = smallerthan + 1;
2121 author[strcspn(author, "@>")] = '\0';
2122 return format_line(wauthor, author_width, NULL, author, 0, limit,
2123 col_tab_align, 0);
2126 static const struct got_error *
2127 draw_commit(struct tog_view *view, struct got_commit_object *commit,
2128 struct got_object_id *id, const size_t date_display_cols,
2129 int author_display_cols)
2131 struct tog_log_view_state *s = &view->state.log;
2132 const struct got_error *err = NULL;
2133 char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2134 char *logmsg0 = NULL, *logmsg = NULL;
2135 char *author = NULL;
2136 wchar_t *wlogmsg = NULL, *wauthor = NULL;
2137 int author_width, logmsg_width;
2138 char *newline, *line = NULL;
2139 int col, limit, scrollx;
2140 const int avail = view->ncols;
2141 struct tm tm;
2142 time_t committer_time;
2143 struct tog_color *tc;
2145 committer_time = got_object_commit_get_committer_time(commit);
2146 if (gmtime_r(&committer_time, &tm) == NULL)
2147 return got_error_from_errno("gmtime_r");
2148 if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2149 return got_error(GOT_ERR_NO_SPACE);
2151 if (avail <= date_display_cols)
2152 limit = MIN(sizeof(datebuf) - 1, avail);
2153 else
2154 limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2155 tc = get_color(&s->colors, TOG_COLOR_DATE);
2156 if (tc)
2157 wattr_on(view->window,
2158 COLOR_PAIR(tc->colorpair), NULL);
2159 waddnstr(view->window, datebuf, limit);
2160 if (tc)
2161 wattr_off(view->window,
2162 COLOR_PAIR(tc->colorpair), NULL);
2163 col = limit;
2164 if (col > avail)
2165 goto done;
2167 if (avail >= 120) {
2168 char *id_str;
2169 err = got_object_id_str(&id_str, id);
2170 if (err)
2171 goto done;
2172 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2173 if (tc)
2174 wattr_on(view->window,
2175 COLOR_PAIR(tc->colorpair), NULL);
2176 wprintw(view->window, "%.8s ", id_str);
2177 if (tc)
2178 wattr_off(view->window,
2179 COLOR_PAIR(tc->colorpair), NULL);
2180 free(id_str);
2181 col += 9;
2182 if (col > avail)
2183 goto done;
2186 if (s->use_committer)
2187 author = strdup(got_object_commit_get_committer(commit));
2188 else
2189 author = strdup(got_object_commit_get_author(commit));
2190 if (author == NULL) {
2191 err = got_error_from_errno("strdup");
2192 goto done;
2194 err = format_author(&wauthor, &author_width, author, avail - col, col);
2195 if (err)
2196 goto done;
2197 tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2198 if (tc)
2199 wattr_on(view->window,
2200 COLOR_PAIR(tc->colorpair), NULL);
2201 waddwstr(view->window, wauthor);
2202 col += author_width;
2203 while (col < avail && author_width < author_display_cols + 2) {
2204 waddch(view->window, ' ');
2205 col++;
2206 author_width++;
2208 if (tc)
2209 wattr_off(view->window,
2210 COLOR_PAIR(tc->colorpair), NULL);
2211 if (col > avail)
2212 goto done;
2214 err = got_object_commit_get_logmsg(&logmsg0, commit);
2215 if (err)
2216 goto done;
2217 logmsg = logmsg0;
2218 while (*logmsg == '\n')
2219 logmsg++;
2220 newline = strchr(logmsg, '\n');
2221 if (newline)
2222 *newline = '\0';
2223 limit = avail - col;
2224 if (view->child && !view_is_hsplit_top(view) && limit > 0)
2225 limit--; /* for the border */
2226 err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2227 limit, col, 1);
2228 if (err)
2229 goto done;
2230 waddwstr(view->window, &wlogmsg[scrollx]);
2231 col += MAX(logmsg_width, 0);
2232 while (col < avail) {
2233 waddch(view->window, ' ');
2234 col++;
2236 done:
2237 free(logmsg0);
2238 free(wlogmsg);
2239 free(author);
2240 free(wauthor);
2241 free(line);
2242 return err;
2245 static struct commit_queue_entry *
2246 alloc_commit_queue_entry(struct got_commit_object *commit,
2247 struct got_object_id *id)
2249 struct commit_queue_entry *entry;
2250 struct got_object_id *dup;
2252 entry = calloc(1, sizeof(*entry));
2253 if (entry == NULL)
2254 return NULL;
2256 dup = got_object_id_dup(id);
2257 if (dup == NULL) {
2258 free(entry);
2259 return NULL;
2262 entry->id = dup;
2263 entry->commit = commit;
2264 return entry;
2267 static void
2268 pop_commit(struct commit_queue *commits)
2270 struct commit_queue_entry *entry;
2272 entry = TAILQ_FIRST(&commits->head);
2273 TAILQ_REMOVE(&commits->head, entry, entry);
2274 got_object_commit_close(entry->commit);
2275 commits->ncommits--;
2276 free(entry->id);
2277 free(entry);
2280 static void
2281 free_commits(struct commit_queue *commits)
2283 while (!TAILQ_EMPTY(&commits->head))
2284 pop_commit(commits);
2287 static const struct got_error *
2288 match_commit(int *have_match, struct got_object_id *id,
2289 struct got_commit_object *commit, regex_t *regex)
2291 const struct got_error *err = NULL;
2292 regmatch_t regmatch;
2293 char *id_str = NULL, *logmsg = NULL;
2295 *have_match = 0;
2297 err = got_object_id_str(&id_str, id);
2298 if (err)
2299 return err;
2301 err = got_object_commit_get_logmsg(&logmsg, commit);
2302 if (err)
2303 goto done;
2305 if (regexec(regex, got_object_commit_get_author(commit), 1,
2306 &regmatch, 0) == 0 ||
2307 regexec(regex, got_object_commit_get_committer(commit), 1,
2308 &regmatch, 0) == 0 ||
2309 regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2310 regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2311 *have_match = 1;
2312 done:
2313 free(id_str);
2314 free(logmsg);
2315 return err;
2318 static const struct got_error *
2319 queue_commits(struct tog_log_thread_args *a)
2321 const struct got_error *err = NULL;
2324 * We keep all commits open throughout the lifetime of the log
2325 * view in order to avoid having to re-fetch commits from disk
2326 * while updating the display.
2328 do {
2329 struct got_object_id id;
2330 struct got_commit_object *commit;
2331 struct commit_queue_entry *entry;
2332 int limit_match = 0;
2333 int errcode;
2335 err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2336 NULL, NULL);
2337 if (err)
2338 break;
2340 err = got_object_open_as_commit(&commit, a->repo, &id);
2341 if (err)
2342 break;
2343 entry = alloc_commit_queue_entry(commit, &id);
2344 if (entry == NULL) {
2345 err = got_error_from_errno("alloc_commit_queue_entry");
2346 break;
2349 errcode = pthread_mutex_lock(&tog_mutex);
2350 if (errcode) {
2351 err = got_error_set_errno(errcode,
2352 "pthread_mutex_lock");
2353 break;
2356 entry->idx = a->real_commits->ncommits;
2357 TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2358 a->real_commits->ncommits++;
2360 if (*a->limiting) {
2361 err = match_commit(&limit_match, &id, commit,
2362 a->limit_regex);
2363 if (err)
2364 break;
2366 if (limit_match) {
2367 struct commit_queue_entry *matched;
2369 matched = alloc_commit_queue_entry(
2370 entry->commit, entry->id);
2371 if (matched == NULL) {
2372 err = got_error_from_errno(
2373 "alloc_commit_queue_entry");
2374 break;
2376 matched->commit = entry->commit;
2377 got_object_commit_retain(entry->commit);
2379 matched->idx = a->limit_commits->ncommits;
2380 TAILQ_INSERT_TAIL(&a->limit_commits->head,
2381 matched, entry);
2382 a->limit_commits->ncommits++;
2386 * This is how we signal log_thread() that we
2387 * have found a match, and that it should be
2388 * counted as a new entry for the view.
2390 a->limit_match = limit_match;
2393 if (*a->searching == TOG_SEARCH_FORWARD &&
2394 !*a->search_next_done) {
2395 int have_match;
2396 err = match_commit(&have_match, &id, commit, a->regex);
2397 if (err)
2398 break;
2400 if (*a->limiting) {
2401 if (limit_match && have_match)
2402 *a->search_next_done =
2403 TOG_SEARCH_HAVE_MORE;
2404 } else if (have_match)
2405 *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2408 errcode = pthread_mutex_unlock(&tog_mutex);
2409 if (errcode && err == NULL)
2410 err = got_error_set_errno(errcode,
2411 "pthread_mutex_unlock");
2412 if (err)
2413 break;
2414 } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2416 return err;
2419 static void
2420 select_commit(struct tog_log_view_state *s)
2422 struct commit_queue_entry *entry;
2423 int ncommits = 0;
2425 entry = s->first_displayed_entry;
2426 while (entry) {
2427 if (ncommits == s->selected) {
2428 s->selected_entry = entry;
2429 break;
2431 entry = TAILQ_NEXT(entry, entry);
2432 ncommits++;
2436 static const struct got_error *
2437 draw_commits(struct tog_view *view)
2439 const struct got_error *err = NULL;
2440 struct tog_log_view_state *s = &view->state.log;
2441 struct commit_queue_entry *entry = s->selected_entry;
2442 int limit = view->nlines;
2443 int width;
2444 int ncommits, author_cols = 4;
2445 char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2446 char *refs_str = NULL;
2447 wchar_t *wline;
2448 struct tog_color *tc;
2449 static const size_t date_display_cols = 12;
2451 if (view_is_hsplit_top(view))
2452 --limit; /* account for border */
2454 if (s->selected_entry &&
2455 !(view->searching && view->search_next_done == 0)) {
2456 struct got_reflist_head *refs;
2457 err = got_object_id_str(&id_str, s->selected_entry->id);
2458 if (err)
2459 return err;
2460 refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2461 s->selected_entry->id);
2462 if (refs) {
2463 err = build_refs_str(&refs_str, refs,
2464 s->selected_entry->id, s->repo);
2465 if (err)
2466 goto done;
2470 if (s->thread_args.commits_needed == 0)
2471 halfdelay(10); /* disable fast refresh */
2473 if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2474 if (asprintf(&ncommits_str, " [%d/%d] %s",
2475 entry ? entry->idx + 1 : 0, s->commits->ncommits,
2476 (view->searching && !view->search_next_done) ?
2477 "searching..." : "loading...") == -1) {
2478 err = got_error_from_errno("asprintf");
2479 goto done;
2481 } else {
2482 const char *search_str = NULL;
2483 const char *limit_str = NULL;
2485 if (view->searching) {
2486 if (view->search_next_done == TOG_SEARCH_NO_MORE)
2487 search_str = "no more matches";
2488 else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2489 search_str = "no matches found";
2490 else if (!view->search_next_done)
2491 search_str = "searching...";
2494 if (s->limit_view && s->commits->ncommits == 0)
2495 limit_str = "no matches found";
2497 if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2498 entry ? entry->idx + 1 : 0, s->commits->ncommits,
2499 search_str ? search_str : (refs_str ? refs_str : ""),
2500 limit_str ? limit_str : "") == -1) {
2501 err = got_error_from_errno("asprintf");
2502 goto done;
2506 if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2507 if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2508 "........................................",
2509 s->in_repo_path, ncommits_str) == -1) {
2510 err = got_error_from_errno("asprintf");
2511 header = NULL;
2512 goto done;
2514 } else if (asprintf(&header, "commit %s%s",
2515 id_str ? id_str : "........................................",
2516 ncommits_str) == -1) {
2517 err = got_error_from_errno("asprintf");
2518 header = NULL;
2519 goto done;
2521 err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2522 if (err)
2523 goto done;
2525 werase(view->window);
2527 if (view_needs_focus_indication(view))
2528 wstandout(view->window);
2529 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2530 if (tc)
2531 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2532 waddwstr(view->window, wline);
2533 while (width < view->ncols) {
2534 waddch(view->window, ' ');
2535 width++;
2537 if (tc)
2538 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2539 if (view_needs_focus_indication(view))
2540 wstandend(view->window);
2541 free(wline);
2542 if (limit <= 1)
2543 goto done;
2545 /* Grow author column size if necessary, and set view->maxx. */
2546 entry = s->first_displayed_entry;
2547 ncommits = 0;
2548 view->maxx = 0;
2549 while (entry) {
2550 struct got_commit_object *c = entry->commit;
2551 char *author, *eol, *msg, *msg0;
2552 wchar_t *wauthor, *wmsg;
2553 int width;
2554 if (ncommits >= limit - 1)
2555 break;
2556 if (s->use_committer)
2557 author = strdup(got_object_commit_get_committer(c));
2558 else
2559 author = strdup(got_object_commit_get_author(c));
2560 if (author == NULL) {
2561 err = got_error_from_errno("strdup");
2562 goto done;
2564 err = format_author(&wauthor, &width, author, COLS,
2565 date_display_cols);
2566 if (author_cols < width)
2567 author_cols = width;
2568 free(wauthor);
2569 free(author);
2570 if (err)
2571 goto done;
2572 err = got_object_commit_get_logmsg(&msg0, c);
2573 if (err)
2574 goto done;
2575 msg = msg0;
2576 while (*msg == '\n')
2577 ++msg;
2578 if ((eol = strchr(msg, '\n')))
2579 *eol = '\0';
2580 err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2581 date_display_cols + author_cols, 0);
2582 if (err)
2583 goto done;
2584 view->maxx = MAX(view->maxx, width);
2585 free(msg0);
2586 free(wmsg);
2587 ncommits++;
2588 entry = TAILQ_NEXT(entry, entry);
2591 entry = s->first_displayed_entry;
2592 s->last_displayed_entry = s->first_displayed_entry;
2593 ncommits = 0;
2594 while (entry) {
2595 if (ncommits >= limit - 1)
2596 break;
2597 if (ncommits == s->selected)
2598 wstandout(view->window);
2599 err = draw_commit(view, entry->commit, entry->id,
2600 date_display_cols, author_cols);
2601 if (ncommits == s->selected)
2602 wstandend(view->window);
2603 if (err)
2604 goto done;
2605 ncommits++;
2606 s->last_displayed_entry = entry;
2607 entry = TAILQ_NEXT(entry, entry);
2610 view_border(view);
2611 done:
2612 free(id_str);
2613 free(refs_str);
2614 free(ncommits_str);
2615 free(header);
2616 return err;
2619 static void
2620 log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2622 struct commit_queue_entry *entry;
2623 int nscrolled = 0;
2625 entry = TAILQ_FIRST(&s->commits->head);
2626 if (s->first_displayed_entry == entry)
2627 return;
2629 entry = s->first_displayed_entry;
2630 while (entry && nscrolled < maxscroll) {
2631 entry = TAILQ_PREV(entry, commit_queue_head, entry);
2632 if (entry) {
2633 s->first_displayed_entry = entry;
2634 nscrolled++;
2639 static const struct got_error *
2640 trigger_log_thread(struct tog_view *view, int wait)
2642 struct tog_log_thread_args *ta = &view->state.log.thread_args;
2643 int errcode;
2645 halfdelay(1); /* fast refresh while loading commits */
2647 while (!ta->log_complete && !tog_thread_error &&
2648 (ta->commits_needed > 0 || ta->load_all)) {
2649 /* Wake the log thread. */
2650 errcode = pthread_cond_signal(&ta->need_commits);
2651 if (errcode)
2652 return got_error_set_errno(errcode,
2653 "pthread_cond_signal");
2656 * The mutex will be released while the view loop waits
2657 * in wgetch(), at which time the log thread will run.
2659 if (!wait)
2660 break;
2662 /* Display progress update in log view. */
2663 show_log_view(view);
2664 update_panels();
2665 doupdate();
2667 /* Wait right here while next commit is being loaded. */
2668 errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2669 if (errcode)
2670 return got_error_set_errno(errcode,
2671 "pthread_cond_wait");
2673 /* Display progress update in log view. */
2674 show_log_view(view);
2675 update_panels();
2676 doupdate();
2679 return NULL;
2682 static const struct got_error *
2683 request_log_commits(struct tog_view *view)
2685 struct tog_log_view_state *state = &view->state.log;
2686 const struct got_error *err = NULL;
2688 if (state->thread_args.log_complete)
2689 return NULL;
2691 state->thread_args.commits_needed += view->nscrolled;
2692 err = trigger_log_thread(view, 1);
2693 view->nscrolled = 0;
2695 return err;
2698 static const struct got_error *
2699 log_scroll_down(struct tog_view *view, int maxscroll)
2701 struct tog_log_view_state *s = &view->state.log;
2702 const struct got_error *err = NULL;
2703 struct commit_queue_entry *pentry;
2704 int nscrolled = 0, ncommits_needed;
2706 if (s->last_displayed_entry == NULL)
2707 return NULL;
2709 ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2710 if (s->commits->ncommits < ncommits_needed &&
2711 !s->thread_args.log_complete) {
2713 * Ask the log thread for required amount of commits.
2715 s->thread_args.commits_needed +=
2716 ncommits_needed - s->commits->ncommits;
2717 err = trigger_log_thread(view, 1);
2718 if (err)
2719 return err;
2722 do {
2723 pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2724 if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2725 break;
2727 s->last_displayed_entry = pentry ?
2728 pentry : s->last_displayed_entry;;
2730 pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2731 if (pentry == NULL)
2732 break;
2733 s->first_displayed_entry = pentry;
2734 } while (++nscrolled < maxscroll);
2736 if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2737 view->nscrolled += nscrolled;
2738 else
2739 view->nscrolled = 0;
2741 return err;
2744 static const struct got_error *
2745 open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2746 struct got_commit_object *commit, struct got_object_id *commit_id,
2747 struct tog_view *log_view, struct got_repository *repo)
2749 const struct got_error *err;
2750 struct got_object_qid *parent_id;
2751 struct tog_view *diff_view;
2753 diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2754 if (diff_view == NULL)
2755 return got_error_from_errno("view_open");
2757 parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2758 err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2759 commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2760 if (err == NULL)
2761 *new_view = diff_view;
2762 return err;
2765 static const struct got_error *
2766 tree_view_visit_subtree(struct tog_tree_view_state *s,
2767 struct got_tree_object *subtree)
2769 struct tog_parent_tree *parent;
2771 parent = calloc(1, sizeof(*parent));
2772 if (parent == NULL)
2773 return got_error_from_errno("calloc");
2775 parent->tree = s->tree;
2776 parent->first_displayed_entry = s->first_displayed_entry;
2777 parent->selected_entry = s->selected_entry;
2778 parent->selected = s->selected;
2779 TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2780 s->tree = subtree;
2781 s->selected = 0;
2782 s->first_displayed_entry = NULL;
2783 return NULL;
2786 static const struct got_error *
2787 tree_view_walk_path(struct tog_tree_view_state *s,
2788 struct got_commit_object *commit, const char *path)
2790 const struct got_error *err = NULL;
2791 struct got_tree_object *tree = NULL;
2792 const char *p;
2793 char *slash, *subpath = NULL;
2795 /* Walk the path and open corresponding tree objects. */
2796 p = path;
2797 while (*p) {
2798 struct got_tree_entry *te;
2799 struct got_object_id *tree_id;
2800 char *te_name;
2802 while (p[0] == '/')
2803 p++;
2805 /* Ensure the correct subtree entry is selected. */
2806 slash = strchr(p, '/');
2807 if (slash == NULL)
2808 te_name = strdup(p);
2809 else
2810 te_name = strndup(p, slash - p);
2811 if (te_name == NULL) {
2812 err = got_error_from_errno("strndup");
2813 break;
2815 te = got_object_tree_find_entry(s->tree, te_name);
2816 if (te == NULL) {
2817 err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2818 free(te_name);
2819 break;
2821 free(te_name);
2822 s->first_displayed_entry = s->selected_entry = te;
2824 if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2825 break; /* jump to this file's entry */
2827 slash = strchr(p, '/');
2828 if (slash)
2829 subpath = strndup(path, slash - path);
2830 else
2831 subpath = strdup(path);
2832 if (subpath == NULL) {
2833 err = got_error_from_errno("strdup");
2834 break;
2837 err = got_object_id_by_path(&tree_id, s->repo, commit,
2838 subpath);
2839 if (err)
2840 break;
2842 err = got_object_open_as_tree(&tree, s->repo, tree_id);
2843 free(tree_id);
2844 if (err)
2845 break;
2847 err = tree_view_visit_subtree(s, tree);
2848 if (err) {
2849 got_object_tree_close(tree);
2850 break;
2852 if (slash == NULL)
2853 break;
2854 free(subpath);
2855 subpath = NULL;
2856 p = slash;
2859 free(subpath);
2860 return err;
2863 static const struct got_error *
2864 browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2865 struct commit_queue_entry *entry, const char *path,
2866 const char *head_ref_name, struct got_repository *repo)
2868 const struct got_error *err = NULL;
2869 struct tog_tree_view_state *s;
2870 struct tog_view *tree_view;
2872 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2873 if (tree_view == NULL)
2874 return got_error_from_errno("view_open");
2876 err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2877 if (err)
2878 return err;
2879 s = &tree_view->state.tree;
2881 *new_view = tree_view;
2883 if (got_path_is_root_dir(path))
2884 return NULL;
2886 return tree_view_walk_path(s, entry->commit, path);
2889 static const struct got_error *
2890 block_signals_used_by_main_thread(void)
2892 sigset_t sigset;
2893 int errcode;
2895 if (sigemptyset(&sigset) == -1)
2896 return got_error_from_errno("sigemptyset");
2898 /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2899 if (sigaddset(&sigset, SIGWINCH) == -1)
2900 return got_error_from_errno("sigaddset");
2901 if (sigaddset(&sigset, SIGCONT) == -1)
2902 return got_error_from_errno("sigaddset");
2903 if (sigaddset(&sigset, SIGINT) == -1)
2904 return got_error_from_errno("sigaddset");
2905 if (sigaddset(&sigset, SIGTERM) == -1)
2906 return got_error_from_errno("sigaddset");
2908 /* ncurses handles SIGTSTP */
2909 if (sigaddset(&sigset, SIGTSTP) == -1)
2910 return got_error_from_errno("sigaddset");
2912 errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2913 if (errcode)
2914 return got_error_set_errno(errcode, "pthread_sigmask");
2916 return NULL;
2919 static void *
2920 log_thread(void *arg)
2922 const struct got_error *err = NULL;
2923 int errcode = 0;
2924 struct tog_log_thread_args *a = arg;
2925 int done = 0;
2928 * Sync startup with main thread such that we begin our
2929 * work once view_input() has released the mutex.
2931 errcode = pthread_mutex_lock(&tog_mutex);
2932 if (errcode) {
2933 err = got_error_set_errno(errcode, "pthread_mutex_lock");
2934 return (void *)err;
2937 err = block_signals_used_by_main_thread();
2938 if (err) {
2939 pthread_mutex_unlock(&tog_mutex);
2940 goto done;
2943 while (!done && !err && !tog_fatal_signal_received()) {
2944 errcode = pthread_mutex_unlock(&tog_mutex);
2945 if (errcode) {
2946 err = got_error_set_errno(errcode,
2947 "pthread_mutex_unlock");
2948 goto done;
2950 err = queue_commits(a);
2951 if (err) {
2952 if (err->code != GOT_ERR_ITER_COMPLETED)
2953 goto done;
2954 err = NULL;
2955 done = 1;
2956 } else if (a->commits_needed > 0 && !a->load_all) {
2957 if (*a->limiting) {
2958 if (a->limit_match)
2959 a->commits_needed--;
2960 } else
2961 a->commits_needed--;
2964 errcode = pthread_mutex_lock(&tog_mutex);
2965 if (errcode) {
2966 err = got_error_set_errno(errcode,
2967 "pthread_mutex_lock");
2968 goto done;
2969 } else if (*a->quit)
2970 done = 1;
2971 else if (*a->limiting && *a->first_displayed_entry == NULL) {
2972 *a->first_displayed_entry =
2973 TAILQ_FIRST(&a->limit_commits->head);
2974 *a->selected_entry = *a->first_displayed_entry;
2975 } else if (*a->first_displayed_entry == NULL) {
2976 *a->first_displayed_entry =
2977 TAILQ_FIRST(&a->real_commits->head);
2978 *a->selected_entry = *a->first_displayed_entry;
2981 errcode = pthread_cond_signal(&a->commit_loaded);
2982 if (errcode) {
2983 err = got_error_set_errno(errcode,
2984 "pthread_cond_signal");
2985 pthread_mutex_unlock(&tog_mutex);
2986 goto done;
2989 if (done)
2990 a->commits_needed = 0;
2991 else {
2992 if (a->commits_needed == 0 && !a->load_all) {
2993 errcode = pthread_cond_wait(&a->need_commits,
2994 &tog_mutex);
2995 if (errcode) {
2996 err = got_error_set_errno(errcode,
2997 "pthread_cond_wait");
2998 pthread_mutex_unlock(&tog_mutex);
2999 goto done;
3001 if (*a->quit)
3002 done = 1;
3006 a->log_complete = 1;
3007 errcode = pthread_mutex_unlock(&tog_mutex);
3008 if (errcode)
3009 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3010 done:
3011 if (err) {
3012 tog_thread_error = 1;
3013 pthread_cond_signal(&a->commit_loaded);
3015 return (void *)err;
3018 static const struct got_error *
3019 stop_log_thread(struct tog_log_view_state *s)
3021 const struct got_error *err = NULL, *thread_err = NULL;
3022 int errcode;
3024 if (s->thread) {
3025 s->quit = 1;
3026 errcode = pthread_cond_signal(&s->thread_args.need_commits);
3027 if (errcode)
3028 return got_error_set_errno(errcode,
3029 "pthread_cond_signal");
3030 errcode = pthread_mutex_unlock(&tog_mutex);
3031 if (errcode)
3032 return got_error_set_errno(errcode,
3033 "pthread_mutex_unlock");
3034 errcode = pthread_join(s->thread, (void **)&thread_err);
3035 if (errcode)
3036 return got_error_set_errno(errcode, "pthread_join");
3037 errcode = pthread_mutex_lock(&tog_mutex);
3038 if (errcode)
3039 return got_error_set_errno(errcode,
3040 "pthread_mutex_lock");
3041 s->thread = 0; //NULL;
3044 if (s->thread_args.repo) {
3045 err = got_repo_close(s->thread_args.repo);
3046 s->thread_args.repo = NULL;
3049 if (s->thread_args.pack_fds) {
3050 const struct got_error *pack_err =
3051 got_repo_pack_fds_close(s->thread_args.pack_fds);
3052 if (err == NULL)
3053 err = pack_err;
3054 s->thread_args.pack_fds = NULL;
3057 if (s->thread_args.graph) {
3058 got_commit_graph_close(s->thread_args.graph);
3059 s->thread_args.graph = NULL;
3062 return err ? err : thread_err;
3065 static const struct got_error *
3066 close_log_view(struct tog_view *view)
3068 const struct got_error *err = NULL;
3069 struct tog_log_view_state *s = &view->state.log;
3070 int errcode;
3072 err = stop_log_thread(s);
3074 errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3075 if (errcode && err == NULL)
3076 err = got_error_set_errno(errcode, "pthread_cond_destroy");
3078 errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3079 if (errcode && err == NULL)
3080 err = got_error_set_errno(errcode, "pthread_cond_destroy");
3082 free_commits(&s->limit_commits);
3083 free_commits(&s->real_commits);
3084 free(s->in_repo_path);
3085 s->in_repo_path = NULL;
3086 free(s->start_id);
3087 s->start_id = NULL;
3088 free(s->head_ref_name);
3089 s->head_ref_name = NULL;
3090 return err;
3094 * We use two queues to implement the limit feature: first consists of
3095 * commits matching the current limit_regex; second is the real queue
3096 * of all known commits (real_commits). When the user starts limiting,
3097 * we swap queues such that all movement and displaying functionality
3098 * works with very slight change.
3100 static const struct got_error *
3101 limit_log_view(struct tog_view *view)
3103 struct tog_log_view_state *s = &view->state.log;
3104 struct commit_queue_entry *entry;
3105 struct tog_view *v = view;
3106 const struct got_error *err = NULL;
3107 char pattern[1024];
3108 int ret;
3110 if (view_is_hsplit_top(view))
3111 v = view->child;
3112 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3113 v = view->parent;
3115 /* Get the pattern */
3116 wmove(v->window, v->nlines - 1, 0);
3117 wclrtoeol(v->window);
3118 mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3119 nodelay(v->window, FALSE);
3120 nocbreak();
3121 echo();
3122 ret = wgetnstr(v->window, pattern, sizeof(pattern));
3123 cbreak();
3124 noecho();
3125 nodelay(v->window, TRUE);
3126 if (ret == ERR)
3127 return NULL;
3129 if (*pattern == '\0') {
3131 * Safety measure for the situation where the user
3132 * resets limit without previously limiting anything.
3134 if (!s->limit_view)
3135 return NULL;
3138 * User could have pressed Ctrl+L, which refreshed the
3139 * commit queues, it means we can't save previously
3140 * (before limit took place) displayed entries,
3141 * because they would point to already free'ed memory,
3142 * so we are forced to always select first entry of
3143 * the queue.
3145 s->commits = &s->real_commits;
3146 s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3147 s->selected_entry = s->first_displayed_entry;
3148 s->selected = 0;
3149 s->limit_view = 0;
3151 return NULL;
3154 if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3155 return NULL;
3157 s->limit_view = 1;
3159 /* Clear the screen while loading limit view */
3160 s->first_displayed_entry = NULL;
3161 s->last_displayed_entry = NULL;
3162 s->selected_entry = NULL;
3163 s->commits = &s->limit_commits;
3165 /* Prepare limit queue for new search */
3166 free_commits(&s->limit_commits);
3167 s->limit_commits.ncommits = 0;
3169 /* First process commits, which are in queue already */
3170 TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3171 int have_match = 0;
3173 err = match_commit(&have_match, entry->id,
3174 entry->commit, &s->limit_regex);
3175 if (err)
3176 return err;
3178 if (have_match) {
3179 struct commit_queue_entry *matched;
3181 matched = alloc_commit_queue_entry(entry->commit,
3182 entry->id);
3183 if (matched == NULL) {
3184 err = got_error_from_errno(
3185 "alloc_commit_queue_entry");
3186 break;
3188 matched->commit = entry->commit;
3189 got_object_commit_retain(entry->commit);
3191 matched->idx = s->limit_commits.ncommits;
3192 TAILQ_INSERT_TAIL(&s->limit_commits.head,
3193 matched, entry);
3194 s->limit_commits.ncommits++;
3198 /* Second process all the commits, until we fill the screen */
3199 if (s->limit_commits.ncommits < view->nlines - 1 &&
3200 !s->thread_args.log_complete) {
3201 s->thread_args.commits_needed +=
3202 view->nlines - s->limit_commits.ncommits - 1;
3203 err = trigger_log_thread(view, 1);
3204 if (err)
3205 return err;
3208 s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3209 s->selected_entry = TAILQ_FIRST(&s->commits->head);
3210 s->selected = 0;
3212 return NULL;
3215 static const struct got_error *
3216 search_start_log_view(struct tog_view *view)
3218 struct tog_log_view_state *s = &view->state.log;
3220 s->matched_entry = NULL;
3221 s->search_entry = NULL;
3222 return NULL;
3225 static const struct got_error *
3226 search_next_log_view(struct tog_view *view)
3228 const struct got_error *err = NULL;
3229 struct tog_log_view_state *s = &view->state.log;
3230 struct commit_queue_entry *entry;
3232 /* Display progress update in log view. */
3233 show_log_view(view);
3234 update_panels();
3235 doupdate();
3237 if (s->search_entry) {
3238 int errcode, ch;
3239 errcode = pthread_mutex_unlock(&tog_mutex);
3240 if (errcode)
3241 return got_error_set_errno(errcode,
3242 "pthread_mutex_unlock");
3243 ch = wgetch(view->window);
3244 errcode = pthread_mutex_lock(&tog_mutex);
3245 if (errcode)
3246 return got_error_set_errno(errcode,
3247 "pthread_mutex_lock");
3248 if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3249 view->search_next_done = TOG_SEARCH_HAVE_MORE;
3250 return NULL;
3252 if (view->searching == TOG_SEARCH_FORWARD)
3253 entry = TAILQ_NEXT(s->search_entry, entry);
3254 else
3255 entry = TAILQ_PREV(s->search_entry,
3256 commit_queue_head, entry);
3257 } else if (s->matched_entry) {
3259 * If the user has moved the cursor after we hit a match,
3260 * the position from where we should continue searching
3261 * might have changed.
3263 if (view->searching == TOG_SEARCH_FORWARD)
3264 entry = TAILQ_NEXT(s->selected_entry, entry);
3265 else
3266 entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3267 entry);
3268 } else {
3269 entry = s->selected_entry;
3272 while (1) {
3273 int have_match = 0;
3275 if (entry == NULL) {
3276 if (s->thread_args.log_complete ||
3277 view->searching == TOG_SEARCH_BACKWARD) {
3278 view->search_next_done =
3279 (s->matched_entry == NULL ?
3280 TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3281 s->search_entry = NULL;
3282 return NULL;
3285 * Poke the log thread for more commits and return,
3286 * allowing the main loop to make progress. Search
3287 * will resume at s->search_entry once we come back.
3289 s->thread_args.commits_needed++;
3290 return trigger_log_thread(view, 0);
3293 err = match_commit(&have_match, entry->id, entry->commit,
3294 &view->regex);
3295 if (err)
3296 break;
3297 if (have_match) {
3298 view->search_next_done = TOG_SEARCH_HAVE_MORE;
3299 s->matched_entry = entry;
3300 break;
3303 s->search_entry = entry;
3304 if (view->searching == TOG_SEARCH_FORWARD)
3305 entry = TAILQ_NEXT(entry, entry);
3306 else
3307 entry = TAILQ_PREV(entry, commit_queue_head, entry);
3310 if (s->matched_entry) {
3311 int cur = s->selected_entry->idx;
3312 while (cur < s->matched_entry->idx) {
3313 err = input_log_view(NULL, view, KEY_DOWN);
3314 if (err)
3315 return err;
3316 cur++;
3318 while (cur > s->matched_entry->idx) {
3319 err = input_log_view(NULL, view, KEY_UP);
3320 if (err)
3321 return err;
3322 cur--;
3326 s->search_entry = NULL;
3328 return NULL;
3331 static const struct got_error *
3332 open_log_view(struct tog_view *view, struct got_object_id *start_id,
3333 struct got_repository *repo, const char *head_ref_name,
3334 const char *in_repo_path, int log_branches)
3336 const struct got_error *err = NULL;
3337 struct tog_log_view_state *s = &view->state.log;
3338 struct got_repository *thread_repo = NULL;
3339 struct got_commit_graph *thread_graph = NULL;
3340 int errcode;
3342 if (in_repo_path != s->in_repo_path) {
3343 free(s->in_repo_path);
3344 s->in_repo_path = strdup(in_repo_path);
3345 if (s->in_repo_path == NULL)
3346 return got_error_from_errno("strdup");
3349 /* The commit queue only contains commits being displayed. */
3350 TAILQ_INIT(&s->real_commits.head);
3351 s->real_commits.ncommits = 0;
3352 s->commits = &s->real_commits;
3354 TAILQ_INIT(&s->limit_commits.head);
3355 s->limit_view = 0;
3356 s->limit_commits.ncommits = 0;
3358 s->repo = repo;
3359 if (head_ref_name) {
3360 s->head_ref_name = strdup(head_ref_name);
3361 if (s->head_ref_name == NULL) {
3362 err = got_error_from_errno("strdup");
3363 goto done;
3366 s->start_id = got_object_id_dup(start_id);
3367 if (s->start_id == NULL) {
3368 err = got_error_from_errno("got_object_id_dup");
3369 goto done;
3371 s->log_branches = log_branches;
3372 s->use_committer = 1;
3374 STAILQ_INIT(&s->colors);
3375 if (has_colors() && getenv("TOG_COLORS") != NULL) {
3376 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3377 get_color_value("TOG_COLOR_COMMIT"));
3378 if (err)
3379 goto done;
3380 err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3381 get_color_value("TOG_COLOR_AUTHOR"));
3382 if (err) {
3383 free_colors(&s->colors);
3384 goto done;
3386 err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3387 get_color_value("TOG_COLOR_DATE"));
3388 if (err) {
3389 free_colors(&s->colors);
3390 goto done;
3394 view->show = show_log_view;
3395 view->input = input_log_view;
3396 view->resize = resize_log_view;
3397 view->close = close_log_view;
3398 view->search_start = search_start_log_view;
3399 view->search_next = search_next_log_view;
3401 if (s->thread_args.pack_fds == NULL) {
3402 err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3403 if (err)
3404 goto done;
3406 err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3407 s->thread_args.pack_fds);
3408 if (err)
3409 goto done;
3410 err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3411 !s->log_branches);
3412 if (err)
3413 goto done;
3414 err = got_commit_graph_iter_start(thread_graph, s->start_id,
3415 s->repo, NULL, NULL);
3416 if (err)
3417 goto done;
3419 errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3420 if (errcode) {
3421 err = got_error_set_errno(errcode, "pthread_cond_init");
3422 goto done;
3424 errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3425 if (errcode) {
3426 err = got_error_set_errno(errcode, "pthread_cond_init");
3427 goto done;
3430 s->thread_args.commits_needed = view->nlines;
3431 s->thread_args.graph = thread_graph;
3432 s->thread_args.real_commits = &s->real_commits;
3433 s->thread_args.limit_commits = &s->limit_commits;
3434 s->thread_args.in_repo_path = s->in_repo_path;
3435 s->thread_args.start_id = s->start_id;
3436 s->thread_args.repo = thread_repo;
3437 s->thread_args.log_complete = 0;
3438 s->thread_args.quit = &s->quit;
3439 s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3440 s->thread_args.selected_entry = &s->selected_entry;
3441 s->thread_args.searching = &view->searching;
3442 s->thread_args.search_next_done = &view->search_next_done;
3443 s->thread_args.regex = &view->regex;
3444 s->thread_args.limiting = &s->limit_view;
3445 s->thread_args.limit_regex = &s->limit_regex;
3446 s->thread_args.limit_commits = &s->limit_commits;
3447 done:
3448 if (err)
3449 close_log_view(view);
3450 return err;
3453 static const struct got_error *
3454 show_log_view(struct tog_view *view)
3456 const struct got_error *err;
3457 struct tog_log_view_state *s = &view->state.log;
3459 if (s->thread == 0) { //NULL) {
3460 int errcode = pthread_create(&s->thread, NULL, log_thread,
3461 &s->thread_args);
3462 if (errcode)
3463 return got_error_set_errno(errcode, "pthread_create");
3464 if (s->thread_args.commits_needed > 0) {
3465 err = trigger_log_thread(view, 1);
3466 if (err)
3467 return err;
3471 return draw_commits(view);
3474 static void
3475 log_move_cursor_up(struct tog_view *view, int page, int home)
3477 struct tog_log_view_state *s = &view->state.log;
3479 if (s->first_displayed_entry == NULL)
3480 return;
3481 if (s->selected_entry->idx == 0)
3482 view->count = 0;
3484 if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3485 || home)
3486 s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3488 if (!page && !home && s->selected > 0)
3489 --s->selected;
3490 else
3491 log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3493 select_commit(s);
3494 return;
3497 static const struct got_error *
3498 log_move_cursor_down(struct tog_view *view, int page)
3500 struct tog_log_view_state *s = &view->state.log;
3501 const struct got_error *err = NULL;
3502 int eos = view->nlines - 2;
3504 if (s->first_displayed_entry == NULL)
3505 return NULL;
3507 if (s->thread_args.log_complete &&
3508 s->selected_entry->idx >= s->commits->ncommits - 1)
3509 return NULL;
3511 if (view_is_hsplit_top(view))
3512 --eos; /* border consumes the last line */
3514 if (!page) {
3515 if (s->selected < MIN(eos, s->commits->ncommits - 1))
3516 ++s->selected;
3517 else
3518 err = log_scroll_down(view, 1);
3519 } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3520 struct commit_queue_entry *entry;
3521 int n;
3523 s->selected = 0;
3524 entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
3525 s->last_displayed_entry = entry;
3526 for (n = 0; n <= eos; n++) {
3527 if (entry == NULL)
3528 break;
3529 s->first_displayed_entry = entry;
3530 entry = TAILQ_PREV(entry, commit_queue_head, entry);
3532 if (n > 0)
3533 s->selected = n - 1;
3534 } else {
3535 if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
3536 s->thread_args.log_complete)
3537 s->selected += MIN(page,
3538 s->commits->ncommits - s->selected_entry->idx - 1);
3539 else
3540 err = log_scroll_down(view, page);
3542 if (err)
3543 return err;
3546 * We might necessarily overshoot in horizontal
3547 * splits; if so, select the last displayed commit.
3549 if (s->first_displayed_entry && s->last_displayed_entry) {
3550 s->selected = MIN(s->selected,
3551 s->last_displayed_entry->idx -
3552 s->first_displayed_entry->idx);
3555 select_commit(s);
3557 if (s->thread_args.log_complete &&
3558 s->selected_entry->idx == s->commits->ncommits - 1)
3559 view->count = 0;
3561 return NULL;
3564 static void
3565 view_get_split(struct tog_view *view, int *y, int *x)
3567 *x = 0;
3568 *y = 0;
3570 if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3571 if (view->child && view->child->resized_y)
3572 *y = view->child->resized_y;
3573 else if (view->resized_y)
3574 *y = view->resized_y;
3575 else
3576 *y = view_split_begin_y(view->lines);
3577 } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3578 if (view->child && view->child->resized_x)
3579 *x = view->child->resized_x;
3580 else if (view->resized_x)
3581 *x = view->resized_x;
3582 else
3583 *x = view_split_begin_x(view->begin_x);
3587 /* Split view horizontally at y and offset view->state->selected line. */
3588 static const struct got_error *
3589 view_init_hsplit(struct tog_view *view, int y)
3591 const struct got_error *err = NULL;
3593 view->nlines = y;
3594 view->ncols = COLS;
3595 err = view_resize(view);
3596 if (err)
3597 return err;
3599 err = offset_selection_down(view);
3601 return err;
3604 static const struct got_error *
3605 log_goto_line(struct tog_view *view, int nlines)
3607 const struct got_error *err = NULL;
3608 struct tog_log_view_state *s = &view->state.log;
3609 int g, idx = s->selected_entry->idx;
3611 if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3612 return NULL;
3614 g = view->gline;
3615 view->gline = 0;
3617 if (g >= s->first_displayed_entry->idx + 1 &&
3618 g <= s->last_displayed_entry->idx + 1 &&
3619 g - s->first_displayed_entry->idx - 1 < nlines) {
3620 s->selected = g - s->first_displayed_entry->idx - 1;
3621 select_commit(s);
3622 return NULL;
3625 if (idx + 1 < g) {
3626 err = log_move_cursor_down(view, g - idx - 1);
3627 if (!err && g > s->selected_entry->idx + 1)
3628 err = log_move_cursor_down(view,
3629 g - s->first_displayed_entry->idx - 1);
3630 if (err)
3631 return err;
3632 } else if (idx + 1 > g)
3633 log_move_cursor_up(view, idx - g + 1, 0);
3635 if (g < nlines && s->first_displayed_entry->idx == 0)
3636 s->selected = g - 1;
3638 select_commit(s);
3639 return NULL;
3643 static const struct got_error *
3644 input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3646 const struct got_error *err = NULL;
3647 struct tog_log_view_state *s = &view->state.log;
3648 int eos, nscroll;
3650 if (s->thread_args.load_all) {
3651 if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3652 s->thread_args.load_all = 0;
3653 else if (s->thread_args.log_complete) {
3654 err = log_move_cursor_down(view, s->commits->ncommits);
3655 s->thread_args.load_all = 0;
3657 if (err)
3658 return err;
3661 eos = nscroll = view->nlines - 1;
3662 if (view_is_hsplit_top(view))
3663 --eos; /* border */
3665 if (view->gline)
3666 return log_goto_line(view, eos);
3668 switch (ch) {
3669 case '&':
3670 err = limit_log_view(view);
3671 break;
3672 case 'q':
3673 s->quit = 1;
3674 break;
3675 case '0':
3676 view->x = 0;
3677 break;
3678 case '$':
3679 view->x = MAX(view->maxx - view->ncols / 2, 0);
3680 view->count = 0;
3681 break;
3682 case KEY_RIGHT:
3683 case 'l':
3684 if (view->x + view->ncols / 2 < view->maxx)
3685 view->x += 2; /* move two columns right */
3686 else
3687 view->count = 0;
3688 break;
3689 case KEY_LEFT:
3690 case 'h':
3691 view->x -= MIN(view->x, 2); /* move two columns back */
3692 if (view->x <= 0)
3693 view->count = 0;
3694 break;
3695 case 'k':
3696 case KEY_UP:
3697 case '<':
3698 case ',':
3699 case CTRL('p'):
3700 log_move_cursor_up(view, 0, 0);
3701 break;
3702 case 'g':
3703 case '=':
3704 case KEY_HOME:
3705 log_move_cursor_up(view, 0, 1);
3706 view->count = 0;
3707 break;
3708 case CTRL('u'):
3709 case 'u':
3710 nscroll /= 2;
3711 /* FALL THROUGH */
3712 case KEY_PPAGE:
3713 case CTRL('b'):
3714 case 'b':
3715 log_move_cursor_up(view, nscroll, 0);
3716 break;
3717 case 'j':
3718 case KEY_DOWN:
3719 case '>':
3720 case '.':
3721 case CTRL('n'):
3722 err = log_move_cursor_down(view, 0);
3723 break;
3724 case '@':
3725 s->use_committer = !s->use_committer;
3726 break;
3727 case 'G':
3728 case '*':
3729 case KEY_END: {
3730 /* We don't know yet how many commits, so we're forced to
3731 * traverse them all. */
3732 view->count = 0;
3733 s->thread_args.load_all = 1;
3734 if (!s->thread_args.log_complete)
3735 return trigger_log_thread(view, 0);
3736 err = log_move_cursor_down(view, s->commits->ncommits);
3737 s->thread_args.load_all = 0;
3738 break;
3740 case CTRL('d'):
3741 case 'd':
3742 nscroll /= 2;
3743 /* FALL THROUGH */
3744 case KEY_NPAGE:
3745 case CTRL('f'):
3746 case 'f':
3747 case ' ':
3748 err = log_move_cursor_down(view, nscroll);
3749 break;
3750 case KEY_RESIZE:
3751 if (s->selected > view->nlines - 2)
3752 s->selected = view->nlines - 2;
3753 if (s->selected > s->commits->ncommits - 1)
3754 s->selected = s->commits->ncommits - 1;
3755 select_commit(s);
3756 if (s->commits->ncommits < view->nlines - 1 &&
3757 !s->thread_args.log_complete) {
3758 s->thread_args.commits_needed += (view->nlines - 1) -
3759 s->commits->ncommits;
3760 err = trigger_log_thread(view, 1);
3762 break;
3763 case KEY_ENTER:
3764 case '\r':
3765 view->count = 0;
3766 if (s->selected_entry == NULL)
3767 break;
3768 err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3769 break;
3770 case 'T':
3771 view->count = 0;
3772 if (s->selected_entry == NULL)
3773 break;
3774 err = view_request_new(new_view, view, TOG_VIEW_TREE);
3775 break;
3776 case KEY_BACKSPACE:
3777 case CTRL('l'):
3778 case 'B':
3779 view->count = 0;
3780 if (ch == KEY_BACKSPACE &&
3781 got_path_is_root_dir(s->in_repo_path))
3782 break;
3783 err = stop_log_thread(s);
3784 if (err)
3785 return err;
3786 if (ch == KEY_BACKSPACE) {
3787 char *parent_path;
3788 err = got_path_dirname(&parent_path, s->in_repo_path);
3789 if (err)
3790 return err;
3791 free(s->in_repo_path);
3792 s->in_repo_path = parent_path;
3793 s->thread_args.in_repo_path = s->in_repo_path;
3794 } else if (ch == CTRL('l')) {
3795 struct got_object_id *start_id;
3796 err = got_repo_match_object_id(&start_id, NULL,
3797 s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3798 GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3799 if (err) {
3800 if (s->head_ref_name == NULL ||
3801 err->code != GOT_ERR_NOT_REF)
3802 return err;
3803 /* Try to cope with deleted references. */
3804 free(s->head_ref_name);
3805 s->head_ref_name = NULL;
3806 err = got_repo_match_object_id(&start_id,
3807 NULL, GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT,
3808 &tog_refs, s->repo);
3809 if (err)
3810 return err;
3812 free(s->start_id);
3813 s->start_id = start_id;
3814 s->thread_args.start_id = s->start_id;
3815 } else /* 'B' */
3816 s->log_branches = !s->log_branches;
3818 if (s->thread_args.pack_fds == NULL) {
3819 err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3820 if (err)
3821 return err;
3823 err = got_repo_open(&s->thread_args.repo,
3824 got_repo_get_path(s->repo), NULL,
3825 s->thread_args.pack_fds);
3826 if (err)
3827 return err;
3828 tog_free_refs();
3829 err = tog_load_refs(s->repo, 0);
3830 if (err)
3831 return err;
3832 err = got_commit_graph_open(&s->thread_args.graph,
3833 s->in_repo_path, !s->log_branches);
3834 if (err)
3835 return err;
3836 err = got_commit_graph_iter_start(s->thread_args.graph,
3837 s->start_id, s->repo, NULL, NULL);
3838 if (err)
3839 return err;
3840 free_commits(&s->real_commits);
3841 free_commits(&s->limit_commits);
3842 s->first_displayed_entry = NULL;
3843 s->last_displayed_entry = NULL;
3844 s->selected_entry = NULL;
3845 s->selected = 0;
3846 s->thread_args.log_complete = 0;
3847 s->quit = 0;
3848 s->thread_args.commits_needed = view->lines;
3849 s->matched_entry = NULL;
3850 s->search_entry = NULL;
3851 view->offset = 0;
3852 break;
3853 case 'R':
3854 view->count = 0;
3855 err = view_request_new(new_view, view, TOG_VIEW_REF);
3856 break;
3857 default:
3858 view->count = 0;
3859 break;
3862 return err;
3865 static const struct got_error *
3866 apply_unveil(const char *repo_path, const char *worktree_path)
3868 const struct got_error *error;
3870 #ifdef PROFILE
3871 if (unveil("gmon.out", "rwc") != 0)
3872 return got_error_from_errno2("unveil", "gmon.out");
3873 #endif
3874 if (repo_path && unveil(repo_path, "r") != 0)
3875 return got_error_from_errno2("unveil", repo_path);
3877 if (worktree_path && unveil(worktree_path, "rwc") != 0)
3878 return got_error_from_errno2("unveil", worktree_path);
3880 if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3881 return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3883 error = got_privsep_unveil_exec_helpers();
3884 if (error != NULL)
3885 return error;
3887 if (unveil(NULL, NULL) != 0)
3888 return got_error_from_errno("unveil");
3890 return NULL;
3893 static void
3894 init_curses(void)
3897 * Override default signal handlers before starting ncurses.
3898 * This should prevent ncurses from installing its own
3899 * broken cleanup() signal handler.
3901 signal(SIGWINCH, tog_sigwinch);
3902 signal(SIGPIPE, tog_sigpipe);
3903 signal(SIGCONT, tog_sigcont);
3904 signal(SIGINT, tog_sigint);
3905 signal(SIGTERM, tog_sigterm);
3907 initscr();
3908 cbreak();
3909 halfdelay(1); /* Do fast refresh while initial view is loading. */
3910 noecho();
3911 nonl();
3912 intrflush(stdscr, FALSE);
3913 keypad(stdscr, TRUE);
3914 curs_set(0);
3915 if (getenv("TOG_COLORS") != NULL) {
3916 start_color();
3917 use_default_colors();
3921 static const struct got_error *
3922 get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3923 struct got_repository *repo, struct got_worktree *worktree)
3925 const struct got_error *err = NULL;
3927 if (argc == 0) {
3928 *in_repo_path = strdup("/");
3929 if (*in_repo_path == NULL)
3930 return got_error_from_errno("strdup");
3931 return NULL;
3934 if (worktree) {
3935 const char *prefix = got_worktree_get_path_prefix(worktree);
3936 char *p;
3938 err = got_worktree_resolve_path(&p, worktree, argv[0]);
3939 if (err)
3940 return err;
3941 if (asprintf(in_repo_path, "%s%s%s", prefix,
3942 (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3943 p) == -1) {
3944 err = got_error_from_errno("asprintf");
3945 *in_repo_path = NULL;
3947 free(p);
3948 } else
3949 err = got_repo_map_path(in_repo_path, repo, argv[0]);
3951 return err;
3954 static const struct got_error *
3955 cmd_log(int argc, char *argv[])
3957 const struct got_error *error;
3958 struct got_repository *repo = NULL;
3959 struct got_worktree *worktree = NULL;
3960 struct got_object_id *start_id = NULL;
3961 char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3962 char *start_commit = NULL, *label = NULL;
3963 struct got_reference *ref = NULL;
3964 const char *head_ref_name = NULL;
3965 int ch, log_branches = 0;
3966 struct tog_view *view;
3967 int *pack_fds = NULL;
3969 while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3970 switch (ch) {
3971 case 'b':
3972 log_branches = 1;
3973 break;
3974 case 'c':
3975 start_commit = optarg;
3976 break;
3977 case 'r':
3978 repo_path = realpath(optarg, NULL);
3979 if (repo_path == NULL)
3980 return got_error_from_errno2("realpath",
3981 optarg);
3982 break;
3983 default:
3984 usage_log();
3985 /* NOTREACHED */
3989 argc -= optind;
3990 argv += optind;
3992 if (argc > 1)
3993 usage_log();
3995 error = got_repo_pack_fds_open(&pack_fds);
3996 if (error != NULL)
3997 goto done;
3999 if (repo_path == NULL) {
4000 cwd = getcwd(NULL, 0);
4001 if (cwd == NULL)
4002 return got_error_from_errno("getcwd");
4003 error = got_worktree_open(&worktree, cwd);
4004 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4005 goto done;
4006 if (worktree)
4007 repo_path =
4008 strdup(got_worktree_get_repo_path(worktree));
4009 else
4010 repo_path = strdup(cwd);
4011 if (repo_path == NULL) {
4012 error = got_error_from_errno("strdup");
4013 goto done;
4017 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
4018 if (error != NULL)
4019 goto done;
4021 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4022 repo, worktree);
4023 if (error)
4024 goto done;
4026 init_curses();
4028 error = apply_unveil(got_repo_get_path(repo),
4029 worktree ? got_worktree_get_root_path(worktree) : NULL);
4030 if (error)
4031 goto done;
4033 /* already loaded by tog_log_with_path()? */
4034 if (TAILQ_EMPTY(&tog_refs)) {
4035 error = tog_load_refs(repo, 0);
4036 if (error)
4037 goto done;
4040 if (start_commit == NULL) {
4041 error = got_repo_match_object_id(&start_id, &label,
4042 worktree ? got_worktree_get_head_ref_name(worktree) :
4043 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4044 if (error)
4045 goto done;
4046 head_ref_name = label;
4047 } else {
4048 error = got_ref_open(&ref, repo, start_commit, 0);
4049 if (error == NULL)
4050 head_ref_name = got_ref_get_name(ref);
4051 else if (error->code != GOT_ERR_NOT_REF)
4052 goto done;
4053 error = got_repo_match_object_id(&start_id, NULL,
4054 start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4055 if (error)
4056 goto done;
4059 view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4060 if (view == NULL) {
4061 error = got_error_from_errno("view_open");
4062 goto done;
4064 error = open_log_view(view, start_id, repo, head_ref_name,
4065 in_repo_path, log_branches);
4066 if (error)
4067 goto done;
4068 if (worktree) {
4069 /* Release work tree lock. */
4070 got_worktree_close(worktree);
4071 worktree = NULL;
4073 error = view_loop(view);
4074 done:
4075 free(in_repo_path);
4076 free(repo_path);
4077 free(cwd);
4078 free(start_id);
4079 free(label);
4080 if (ref)
4081 got_ref_close(ref);
4082 if (repo) {
4083 const struct got_error *close_err = got_repo_close(repo);
4084 if (error == NULL)
4085 error = close_err;
4087 if (worktree)
4088 got_worktree_close(worktree);
4089 if (pack_fds) {
4090 const struct got_error *pack_err =
4091 got_repo_pack_fds_close(pack_fds);
4092 if (error == NULL)
4093 error = pack_err;
4095 tog_free_refs();
4096 return error;
4099 __dead static void
4100 usage_diff(void)
4102 endwin();
4103 fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4104 "object1 object2\n", getprogname());
4105 exit(1);
4108 static int
4109 match_line(const char *line, regex_t *regex, size_t nmatch,
4110 regmatch_t *regmatch)
4112 return regexec(regex, line, nmatch, regmatch, 0) == 0;
4115 static struct tog_color *
4116 match_color(struct tog_colors *colors, const char *line)
4118 struct tog_color *tc = NULL;
4120 STAILQ_FOREACH(tc, colors, entry) {
4121 if (match_line(line, &tc->regex, 0, NULL))
4122 return tc;
4125 return NULL;
4128 static const struct got_error *
4129 add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4130 WINDOW *window, int skipcol, regmatch_t *regmatch)
4132 const struct got_error *err = NULL;
4133 char *exstr = NULL;
4134 wchar_t *wline = NULL;
4135 int rme, rms, n, width, scrollx;
4136 int width0 = 0, width1 = 0, width2 = 0;
4137 char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4139 *wtotal = 0;
4141 rms = regmatch->rm_so;
4142 rme = regmatch->rm_eo;
4144 err = expand_tab(&exstr, line);
4145 if (err)
4146 return err;
4148 /* Split the line into 3 segments, according to match offsets. */
4149 seg0 = strndup(exstr, rms);
4150 if (seg0 == NULL) {
4151 err = got_error_from_errno("strndup");
4152 goto done;
4154 seg1 = strndup(exstr + rms, rme - rms);
4155 if (seg1 == NULL) {
4156 err = got_error_from_errno("strndup");
4157 goto done;
4159 seg2 = strdup(exstr + rme);
4160 if (seg2 == NULL) {
4161 err = got_error_from_errno("strndup");
4162 goto done;
4165 /* draw up to matched token if we haven't scrolled past it */
4166 err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4167 col_tab_align, 1);
4168 if (err)
4169 goto done;
4170 n = MAX(width0 - skipcol, 0);
4171 if (n) {
4172 free(wline);
4173 err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4174 wlimit, col_tab_align, 1);
4175 if (err)
4176 goto done;
4177 waddwstr(window, &wline[scrollx]);
4178 wlimit -= width;
4179 *wtotal += width;
4182 if (wlimit > 0) {
4183 int i = 0, w = 0;
4184 size_t wlen;
4186 free(wline);
4187 err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4188 col_tab_align, 1);
4189 if (err)
4190 goto done;
4191 wlen = wcslen(wline);
4192 while (i < wlen) {
4193 width = wcwidth(wline[i]);
4194 if (width == -1) {
4195 /* should not happen, tabs are expanded */
4196 err = got_error(GOT_ERR_RANGE);
4197 goto done;
4199 if (width0 + w + width > skipcol)
4200 break;
4201 w += width;
4202 i++;
4204 /* draw (visible part of) matched token (if scrolled into it) */
4205 if (width1 - w > 0) {
4206 wattron(window, A_STANDOUT);
4207 waddwstr(window, &wline[i]);
4208 wattroff(window, A_STANDOUT);
4209 wlimit -= (width1 - w);
4210 *wtotal += (width1 - w);
4214 if (wlimit > 0) { /* draw rest of line */
4215 free(wline);
4216 if (skipcol > width0 + width1) {
4217 err = format_line(&wline, &width2, &scrollx, seg2,
4218 skipcol - (width0 + width1), wlimit,
4219 col_tab_align, 1);
4220 if (err)
4221 goto done;
4222 waddwstr(window, &wline[scrollx]);
4223 } else {
4224 err = format_line(&wline, &width2, NULL, seg2, 0,
4225 wlimit, col_tab_align, 1);
4226 if (err)
4227 goto done;
4228 waddwstr(window, wline);
4230 *wtotal += width2;
4232 done:
4233 free(wline);
4234 free(exstr);
4235 free(seg0);
4236 free(seg1);
4237 free(seg2);
4238 return err;
4241 static int
4242 gotoline(struct tog_view *view, int *lineno, int *nprinted)
4244 FILE *f = NULL;
4245 int *eof, *first, *selected;
4247 if (view->type == TOG_VIEW_DIFF) {
4248 struct tog_diff_view_state *s = &view->state.diff;
4250 first = &s->first_displayed_line;
4251 selected = first;
4252 eof = &s->eof;
4253 f = s->f;
4254 } else if (view->type == TOG_VIEW_HELP) {
4255 struct tog_help_view_state *s = &view->state.help;
4257 first = &s->first_displayed_line;
4258 selected = first;
4259 eof = &s->eof;
4260 f = s->f;
4261 } else if (view->type == TOG_VIEW_BLAME) {
4262 struct tog_blame_view_state *s = &view->state.blame;
4264 first = &s->first_displayed_line;
4265 selected = &s->selected_line;
4266 eof = &s->eof;
4267 f = s->blame.f;
4268 } else
4269 return 0;
4271 /* Center gline in the middle of the page like vi(1). */
4272 if (*lineno < view->gline - (view->nlines - 3) / 2)
4273 return 0;
4274 if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4275 rewind(f);
4276 *eof = 0;
4277 *first = 1;
4278 *lineno = 0;
4279 *nprinted = 0;
4280 return 0;
4283 *selected = view->gline <= (view->nlines - 3) / 2 ?
4284 view->gline : (view->nlines - 3) / 2 + 1;
4285 view->gline = 0;
4287 return 1;
4290 static const struct got_error *
4291 draw_file(struct tog_view *view, const char *header)
4293 struct tog_diff_view_state *s = &view->state.diff;
4294 regmatch_t *regmatch = &view->regmatch;
4295 const struct got_error *err;
4296 int nprinted = 0;
4297 char *line;
4298 size_t linesize = 0;
4299 ssize_t linelen;
4300 wchar_t *wline;
4301 int width;
4302 int max_lines = view->nlines;
4303 int nlines = s->nlines;
4304 off_t line_offset;
4306 s->lineno = s->first_displayed_line - 1;
4307 line_offset = s->lines[s->first_displayed_line - 1].offset;
4308 if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4309 return got_error_from_errno("fseek");
4311 werase(view->window);
4313 if (view->gline > s->nlines - 1)
4314 view->gline = s->nlines - 1;
4316 if (header) {
4317 int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4318 1 : view->gline - (view->nlines - 3) / 2 :
4319 s->lineno + s->selected_line;
4321 if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4322 return got_error_from_errno("asprintf");
4323 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4324 0, 0);
4325 free(line);
4326 if (err)
4327 return err;
4329 if (view_needs_focus_indication(view))
4330 wstandout(view->window);
4331 waddwstr(view->window, wline);
4332 free(wline);
4333 wline = NULL;
4334 while (width++ < view->ncols)
4335 waddch(view->window, ' ');
4336 if (view_needs_focus_indication(view))
4337 wstandend(view->window);
4339 if (max_lines <= 1)
4340 return NULL;
4341 max_lines--;
4344 s->eof = 0;
4345 view->maxx = 0;
4346 line = NULL;
4347 while (max_lines > 0 && nprinted < max_lines) {
4348 enum got_diff_line_type linetype;
4349 attr_t attr = 0;
4351 linelen = getline(&line, &linesize, s->f);
4352 if (linelen == -1) {
4353 if (feof(s->f)) {
4354 s->eof = 1;
4355 break;
4357 free(line);
4358 return got_ferror(s->f, GOT_ERR_IO);
4361 if (++s->lineno < s->first_displayed_line)
4362 continue;
4363 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4364 continue;
4365 if (s->lineno == view->hiline)
4366 attr = A_STANDOUT;
4368 /* Set view->maxx based on full line length. */
4369 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4370 view->x ? 1 : 0);
4371 if (err) {
4372 free(line);
4373 return err;
4375 view->maxx = MAX(view->maxx, width);
4376 free(wline);
4377 wline = NULL;
4379 linetype = s->lines[s->lineno].type;
4380 if (linetype > GOT_DIFF_LINE_LOGMSG &&
4381 linetype < GOT_DIFF_LINE_CONTEXT)
4382 attr |= COLOR_PAIR(linetype);
4383 if (attr)
4384 wattron(view->window, attr);
4385 if (s->first_displayed_line + nprinted == s->matched_line &&
4386 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4387 err = add_matched_line(&width, line, view->ncols, 0,
4388 view->window, view->x, regmatch);
4389 if (err) {
4390 free(line);
4391 return err;
4393 } else {
4394 int skip;
4395 err = format_line(&wline, &width, &skip, line,
4396 view->x, view->ncols, 0, view->x ? 1 : 0);
4397 if (err) {
4398 free(line);
4399 return err;
4401 waddwstr(view->window, &wline[skip]);
4402 free(wline);
4403 wline = NULL;
4405 if (s->lineno == view->hiline) {
4406 /* highlight full gline length */
4407 while (width++ < view->ncols)
4408 waddch(view->window, ' ');
4409 } else {
4410 if (width <= view->ncols - 1)
4411 waddch(view->window, '\n');
4413 if (attr)
4414 wattroff(view->window, attr);
4415 if (++nprinted == 1)
4416 s->first_displayed_line = s->lineno;
4418 free(line);
4419 if (nprinted >= 1)
4420 s->last_displayed_line = s->first_displayed_line +
4421 (nprinted - 1);
4422 else
4423 s->last_displayed_line = s->first_displayed_line;
4425 view_border(view);
4427 if (s->eof) {
4428 while (nprinted < view->nlines) {
4429 waddch(view->window, '\n');
4430 nprinted++;
4433 err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4434 view->ncols, 0, 0);
4435 if (err) {
4436 return err;
4439 wstandout(view->window);
4440 waddwstr(view->window, wline);
4441 free(wline);
4442 wline = NULL;
4443 wstandend(view->window);
4446 return NULL;
4449 static char *
4450 get_datestr(time_t *time, char *datebuf)
4452 struct tm mytm, *tm;
4453 char *p, *s;
4455 tm = gmtime_r(time, &mytm);
4456 if (tm == NULL)
4457 return NULL;
4458 s = asctime_r(tm, datebuf);
4459 if (s == NULL)
4460 return NULL;
4461 p = strchr(s, '\n');
4462 if (p)
4463 *p = '\0';
4464 return s;
4467 static const struct got_error *
4468 get_changed_paths(struct got_pathlist_head *paths,
4469 struct got_commit_object *commit, struct got_repository *repo,
4470 struct got_diffstat_cb_arg *dsa)
4472 const struct got_error *err = NULL;
4473 struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4474 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4475 struct got_object_qid *qid;
4476 FILE *f1 = NULL, *f2 = NULL;
4477 int fd1 = -1, fd2 = -1;
4479 f1 = got_opentemp();
4480 if (f1 == NULL) {
4481 err = got_error_from_errno("got_opentemp");
4482 goto done;
4484 f2 = got_opentemp();
4485 if (f2 == NULL) {
4486 err = got_error_from_errno("got_opentemp");
4487 goto done;
4490 fd1 = got_opentempfd();
4491 if (fd1 == -1) {
4492 err = got_error_from_errno("got_opentempfd");
4493 goto done;
4495 fd2 = got_opentempfd();
4496 if (fd2 == -1) {
4497 err = got_error_from_errno("got_opentempfd");
4498 goto done;
4501 qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4502 if (qid != NULL) {
4503 struct got_commit_object *pcommit;
4504 err = got_object_open_as_commit(&pcommit, repo,
4505 &qid->id);
4506 if (err)
4507 return err;
4509 tree_id1 = got_object_id_dup(
4510 got_object_commit_get_tree_id(pcommit));
4511 if (tree_id1 == NULL) {
4512 got_object_commit_close(pcommit);
4513 return got_error_from_errno("got_object_id_dup");
4515 got_object_commit_close(pcommit);
4519 if (tree_id1) {
4520 err = got_object_open_as_tree(&tree1, repo, tree_id1);
4521 if (err)
4522 goto done;
4525 tree_id2 = got_object_commit_get_tree_id(commit);
4526 err = got_object_open_as_tree(&tree2, repo, tree_id2);
4527 if (err)
4528 goto done;
4530 err = got_diff_tree(tree1, tree2, f1, f2, fd1, fd2, "", "", repo,
4531 got_diff_tree_compute_diffstat, dsa, 1);
4532 done:
4533 if (tree1)
4534 got_object_tree_close(tree1);
4535 if (tree2)
4536 got_object_tree_close(tree2);
4537 if (fd1 != -1 && close(fd1) == -1 && err == NULL)
4538 err = got_error_from_errno("close");
4539 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
4540 err = got_error_from_errno("close");
4541 if (f1 && fclose(f1) == EOF && err == NULL)
4542 err = got_error_from_errno("fclose");
4543 if (f2 && fclose(f2) == EOF && err == NULL)
4544 err = got_error_from_errno("fclose");
4545 free(tree_id1);
4546 return err;
4549 static const struct got_error *
4550 add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4551 off_t off, uint8_t type)
4553 struct got_diff_line *p;
4555 p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4556 if (p == NULL)
4557 return got_error_from_errno("reallocarray");
4558 *lines = p;
4559 (*lines)[*nlines].offset = off;
4560 (*lines)[*nlines].type = type;
4561 (*nlines)++;
4563 return NULL;
4566 static const struct got_error *
4567 write_commit_info(struct got_diff_line **lines, size_t *nlines,
4568 struct got_object_id *commit_id, struct got_reflist_head *refs,
4569 struct got_repository *repo, int ignore_ws, int force_text_diff,
4570 FILE *outfile)
4572 const struct got_error *err = NULL;
4573 char datebuf[26], *datestr;
4574 struct got_commit_object *commit;
4575 char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4576 time_t committer_time;
4577 const char *author, *committer;
4578 char *refs_str = NULL;
4579 struct got_pathlist_head changed_paths;
4580 struct got_pathlist_entry *pe;
4581 struct got_diffstat_cb_arg dsa = { 0, 0, 0, 0, 0, 0, &changed_paths,
4582 ignore_ws, force_text_diff, tog_diff_algo };
4583 off_t outoff = 0;
4584 int n;
4586 TAILQ_INIT(&changed_paths);
4588 if (refs) {
4589 err = build_refs_str(&refs_str, refs, commit_id, repo);
4590 if (err)
4591 return err;
4594 err = got_object_open_as_commit(&commit, repo, commit_id);
4595 if (err)
4596 return err;
4598 err = got_object_id_str(&id_str, commit_id);
4599 if (err) {
4600 err = got_error_from_errno("got_object_id_str");
4601 goto done;
4604 err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4605 if (err)
4606 goto done;
4608 n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4609 refs_str ? refs_str : "", refs_str ? ")" : "");
4610 if (n < 0) {
4611 err = got_error_from_errno("fprintf");
4612 goto done;
4614 outoff += n;
4615 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4616 if (err)
4617 goto done;
4619 n = fprintf(outfile, "from: %s\n",
4620 got_object_commit_get_author(commit));
4621 if (n < 0) {
4622 err = got_error_from_errno("fprintf");
4623 goto done;
4625 outoff += n;
4626 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4627 if (err)
4628 goto done;
4630 author = got_object_commit_get_author(commit);
4631 committer = got_object_commit_get_committer(commit);
4632 if (strcmp(author, committer) != 0) {
4633 n = fprintf(outfile, "via: %s\n", committer);
4634 if (n < 0) {
4635 err = got_error_from_errno("fprintf");
4636 goto done;
4638 outoff += n;
4639 err = add_line_metadata(lines, nlines, outoff,
4640 GOT_DIFF_LINE_AUTHOR);
4641 if (err)
4642 goto done;
4644 committer_time = got_object_commit_get_committer_time(commit);
4645 datestr = get_datestr(&committer_time, datebuf);
4646 if (datestr) {
4647 n = fprintf(outfile, "date: %s UTC\n", datestr);
4648 if (n < 0) {
4649 err = got_error_from_errno("fprintf");
4650 goto done;
4652 outoff += n;
4653 err = add_line_metadata(lines, nlines, outoff,
4654 GOT_DIFF_LINE_DATE);
4655 if (err)
4656 goto done;
4658 if (got_object_commit_get_nparents(commit) > 1) {
4659 const struct got_object_id_queue *parent_ids;
4660 struct got_object_qid *qid;
4661 int pn = 1;
4662 parent_ids = got_object_commit_get_parent_ids(commit);
4663 STAILQ_FOREACH(qid, parent_ids, entry) {
4664 err = got_object_id_str(&id_str, &qid->id);
4665 if (err)
4666 goto done;
4667 n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4668 if (n < 0) {
4669 err = got_error_from_errno("fprintf");
4670 goto done;
4672 outoff += n;
4673 err = add_line_metadata(lines, nlines, outoff,
4674 GOT_DIFF_LINE_META);
4675 if (err)
4676 goto done;
4677 free(id_str);
4678 id_str = NULL;
4682 err = got_object_commit_get_logmsg(&logmsg, commit);
4683 if (err)
4684 goto done;
4685 s = logmsg;
4686 while ((line = strsep(&s, "\n")) != NULL) {
4687 n = fprintf(outfile, "%s\n", line);
4688 if (n < 0) {
4689 err = got_error_from_errno("fprintf");
4690 goto done;
4692 outoff += n;
4693 err = add_line_metadata(lines, nlines, outoff,
4694 GOT_DIFF_LINE_LOGMSG);
4695 if (err)
4696 goto done;
4699 err = get_changed_paths(&changed_paths, commit, repo, &dsa);
4700 if (err)
4701 goto done;
4703 TAILQ_FOREACH(pe, &changed_paths, entry) {
4704 struct got_diff_changed_path *cp = pe->data;
4705 int pad = dsa.max_path_len - pe->path_len + 1;
4707 n = fprintf(outfile, "%c %s%*c | %*d+ %*d-\n", cp->status,
4708 pe->path, pad, ' ', dsa.add_cols + 1, cp->add,
4709 dsa.rm_cols + 1, cp->rm);
4710 if (n < 0) {
4711 err = got_error_from_errno("fprintf");
4712 goto done;
4714 outoff += n;
4715 err = add_line_metadata(lines, nlines, outoff,
4716 GOT_DIFF_LINE_CHANGES);
4717 if (err)
4718 goto done;
4721 fputc('\n', outfile);
4722 outoff++;
4723 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4724 if (err)
4725 goto done;
4727 n = fprintf(outfile,
4728 "%d file%s changed, %d insertions(+), %d deletions(-)\n",
4729 dsa.nfiles, dsa.nfiles > 1 ? "s" : "", dsa.ins, dsa.del);
4730 if (n < 0) {
4731 err = got_error_from_errno("fprintf");
4732 goto done;
4734 outoff += n;
4735 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4736 if (err)
4737 goto done;
4739 fputc('\n', outfile);
4740 outoff++;
4741 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4742 done:
4743 got_pathlist_free(&changed_paths, GOT_PATHLIST_FREE_ALL);
4744 free(id_str);
4745 free(logmsg);
4746 free(refs_str);
4747 got_object_commit_close(commit);
4748 if (err) {
4749 free(*lines);
4750 *lines = NULL;
4751 *nlines = 0;
4753 return err;
4756 static const struct got_error *
4757 create_diff(struct tog_diff_view_state *s)
4759 const struct got_error *err = NULL;
4760 FILE *f = NULL;
4761 int obj_type;
4763 free(s->lines);
4764 s->lines = malloc(sizeof(*s->lines));
4765 if (s->lines == NULL)
4766 return got_error_from_errno("malloc");
4767 s->nlines = 0;
4769 f = got_opentemp();
4770 if (f == NULL) {
4771 err = got_error_from_errno("got_opentemp");
4772 goto done;
4774 if (s->f && fclose(s->f) == EOF) {
4775 err = got_error_from_errno("fclose");
4776 goto done;
4778 s->f = f;
4780 if (s->id1)
4781 err = got_object_get_type(&obj_type, s->repo, s->id1);
4782 else
4783 err = got_object_get_type(&obj_type, s->repo, s->id2);
4784 if (err)
4785 goto done;
4787 switch (obj_type) {
4788 case GOT_OBJ_TYPE_BLOB:
4789 err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4790 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4791 s->label1, s->label2, tog_diff_algo, s->diff_context,
4792 s->ignore_whitespace, s->force_text_diff, 0, NULL, s->repo,
4793 s->f);
4794 break;
4795 case GOT_OBJ_TYPE_TREE:
4796 err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4797 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4798 tog_diff_algo, s->diff_context, s->ignore_whitespace,
4799 s->force_text_diff, 0, NULL, s->repo, s->f);
4800 break;
4801 case GOT_OBJ_TYPE_COMMIT: {
4802 const struct got_object_id_queue *parent_ids;
4803 struct got_object_qid *pid;
4804 struct got_commit_object *commit2;
4805 struct got_reflist_head *refs;
4807 err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4808 if (err)
4809 goto done;
4810 refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4811 /* Show commit info if we're diffing to a parent/root commit. */
4812 if (s->id1 == NULL) {
4813 err = write_commit_info(&s->lines, &s->nlines, s->id2,
4814 refs, s->repo, s->ignore_whitespace,
4815 s->force_text_diff, s->f);
4816 if (err)
4817 goto done;
4818 } else {
4819 parent_ids = got_object_commit_get_parent_ids(commit2);
4820 STAILQ_FOREACH(pid, parent_ids, entry) {
4821 if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4822 err = write_commit_info(&s->lines,
4823 &s->nlines, s->id2, refs, s->repo,
4824 s->ignore_whitespace,
4825 s->force_text_diff, s->f);
4826 if (err)
4827 goto done;
4828 break;
4832 got_object_commit_close(commit2);
4834 err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4835 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4836 tog_diff_algo, s->diff_context, s->ignore_whitespace,
4837 s->force_text_diff, 0, NULL, s->repo, s->f);
4838 break;
4840 default:
4841 err = got_error(GOT_ERR_OBJ_TYPE);
4842 break;
4844 done:
4845 if (s->f && fflush(s->f) != 0 && err == NULL)
4846 err = got_error_from_errno("fflush");
4847 return err;
4850 static void
4851 diff_view_indicate_progress(struct tog_view *view)
4853 mvwaddstr(view->window, 0, 0, "diffing...");
4854 update_panels();
4855 doupdate();
4858 static const struct got_error *
4859 search_start_diff_view(struct tog_view *view)
4861 struct tog_diff_view_state *s = &view->state.diff;
4863 s->matched_line = 0;
4864 return NULL;
4867 static void
4868 search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
4869 size_t *nlines, int **first, int **last, int **match, int **selected)
4871 struct tog_diff_view_state *s = &view->state.diff;
4873 *f = s->f;
4874 *nlines = s->nlines;
4875 *line_offsets = NULL;
4876 *match = &s->matched_line;
4877 *first = &s->first_displayed_line;
4878 *last = &s->last_displayed_line;
4879 *selected = &s->selected_line;
4882 static const struct got_error *
4883 search_next_view_match(struct tog_view *view)
4885 const struct got_error *err = NULL;
4886 FILE *f;
4887 int lineno;
4888 char *line = NULL;
4889 size_t linesize = 0;
4890 ssize_t linelen;
4891 off_t *line_offsets;
4892 size_t nlines = 0;
4893 int *first, *last, *match, *selected;
4895 if (!view->search_setup)
4896 return got_error_msg(GOT_ERR_NOT_IMPL,
4897 "view search not supported");
4898 view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
4899 &match, &selected);
4901 if (!view->searching) {
4902 view->search_next_done = TOG_SEARCH_HAVE_MORE;
4903 return NULL;
4906 if (*match) {
4907 if (view->searching == TOG_SEARCH_FORWARD)
4908 lineno = *match + 1;
4909 else
4910 lineno = *match - 1;
4911 } else
4912 lineno = *first - 1 + *selected;
4914 while (1) {
4915 off_t offset;
4917 if (lineno <= 0 || lineno > nlines) {
4918 if (*match == 0) {
4919 view->search_next_done = TOG_SEARCH_HAVE_MORE;
4920 break;
4923 if (view->searching == TOG_SEARCH_FORWARD)
4924 lineno = 1;
4925 else
4926 lineno = nlines;
4929 offset = view->type == TOG_VIEW_DIFF ?
4930 view->state.diff.lines[lineno - 1].offset :
4931 line_offsets[lineno - 1];
4932 if (fseeko(f, offset, SEEK_SET) != 0) {
4933 free(line);
4934 return got_error_from_errno("fseeko");
4936 linelen = getline(&line, &linesize, f);
4937 if (linelen != -1) {
4938 char *exstr;
4939 err = expand_tab(&exstr, line);
4940 if (err)
4941 break;
4942 if (match_line(exstr, &view->regex, 1,
4943 &view->regmatch)) {
4944 view->search_next_done = TOG_SEARCH_HAVE_MORE;
4945 *match = lineno;
4946 free(exstr);
4947 break;
4949 free(exstr);
4951 if (view->searching == TOG_SEARCH_FORWARD)
4952 lineno++;
4953 else
4954 lineno--;
4956 free(line);
4958 if (*match) {
4959 *first = *match;
4960 *selected = 1;
4963 return err;
4966 static const struct got_error *
4967 close_diff_view(struct tog_view *view)
4969 const struct got_error *err = NULL;
4970 struct tog_diff_view_state *s = &view->state.diff;
4972 free(s->id1);
4973 s->id1 = NULL;
4974 free(s->id2);
4975 s->id2 = NULL;
4976 if (s->f && fclose(s->f) == EOF)
4977 err = got_error_from_errno("fclose");
4978 s->f = NULL;
4979 if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4980 err = got_error_from_errno("fclose");
4981 s->f1 = NULL;
4982 if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4983 err = got_error_from_errno("fclose");
4984 s->f2 = NULL;
4985 if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4986 err = got_error_from_errno("close");
4987 s->fd1 = -1;
4988 if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4989 err = got_error_from_errno("close");
4990 s->fd2 = -1;
4991 free(s->lines);
4992 s->lines = NULL;
4993 s->nlines = 0;
4994 return err;
4997 static const struct got_error *
4998 open_diff_view(struct tog_view *view, struct got_object_id *id1,
4999 struct got_object_id *id2, const char *label1, const char *label2,
5000 int diff_context, int ignore_whitespace, int force_text_diff,
5001 struct tog_view *parent_view, struct got_repository *repo)
5003 const struct got_error *err;
5004 struct tog_diff_view_state *s = &view->state.diff;
5006 memset(s, 0, sizeof(*s));
5007 s->fd1 = -1;
5008 s->fd2 = -1;
5010 if (id1 != NULL && id2 != NULL) {
5011 int type1, type2;
5012 err = got_object_get_type(&type1, repo, id1);
5013 if (err)
5014 return err;
5015 err = got_object_get_type(&type2, repo, id2);
5016 if (err)
5017 return err;
5019 if (type1 != type2)
5020 return got_error(GOT_ERR_OBJ_TYPE);
5022 s->first_displayed_line = 1;
5023 s->last_displayed_line = view->nlines;
5024 s->selected_line = 1;
5025 s->repo = repo;
5026 s->id1 = id1;
5027 s->id2 = id2;
5028 s->label1 = label1;
5029 s->label2 = label2;
5031 if (id1) {
5032 s->id1 = got_object_id_dup(id1);
5033 if (s->id1 == NULL)
5034 return got_error_from_errno("got_object_id_dup");
5035 } else
5036 s->id1 = NULL;
5038 s->id2 = got_object_id_dup(id2);
5039 if (s->id2 == NULL) {
5040 err = got_error_from_errno("got_object_id_dup");
5041 goto done;
5044 s->f1 = got_opentemp();
5045 if (s->f1 == NULL) {
5046 err = got_error_from_errno("got_opentemp");
5047 goto done;
5050 s->f2 = got_opentemp();
5051 if (s->f2 == NULL) {
5052 err = got_error_from_errno("got_opentemp");
5053 goto done;
5056 s->fd1 = got_opentempfd();
5057 if (s->fd1 == -1) {
5058 err = got_error_from_errno("got_opentempfd");
5059 goto done;
5062 s->fd2 = got_opentempfd();
5063 if (s->fd2 == -1) {
5064 err = got_error_from_errno("got_opentempfd");
5065 goto done;
5068 s->first_displayed_line = 1;
5069 s->last_displayed_line = view->nlines;
5070 s->diff_context = diff_context;
5071 s->ignore_whitespace = ignore_whitespace;
5072 s->force_text_diff = force_text_diff;
5073 s->parent_view = parent_view;
5074 s->repo = repo;
5076 if (has_colors() && getenv("TOG_COLORS") != NULL) {
5077 int rc;
5079 rc = init_pair(GOT_DIFF_LINE_MINUS,
5080 get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5081 if (rc != ERR)
5082 rc = init_pair(GOT_DIFF_LINE_PLUS,
5083 get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5084 if (rc != ERR)
5085 rc = init_pair(GOT_DIFF_LINE_HUNK,
5086 get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5087 if (rc != ERR)
5088 rc = init_pair(GOT_DIFF_LINE_META,
5089 get_color_value("TOG_COLOR_DIFF_META"), -1);
5090 if (rc != ERR)
5091 rc = init_pair(GOT_DIFF_LINE_CHANGES,
5092 get_color_value("TOG_COLOR_DIFF_META"), -1);
5093 if (rc != ERR)
5094 rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5095 get_color_value("TOG_COLOR_DIFF_META"), -1);
5096 if (rc != ERR)
5097 rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5098 get_color_value("TOG_COLOR_DIFF_META"), -1);
5099 if (rc != ERR)
5100 rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5101 get_color_value("TOG_COLOR_AUTHOR"), -1);
5102 if (rc != ERR)
5103 rc = init_pair(GOT_DIFF_LINE_DATE,
5104 get_color_value("TOG_COLOR_DATE"), -1);
5105 if (rc == ERR) {
5106 err = got_error(GOT_ERR_RANGE);
5107 goto done;
5111 if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5112 view_is_splitscreen(view))
5113 show_log_view(parent_view); /* draw border */
5114 diff_view_indicate_progress(view);
5116 err = create_diff(s);
5118 view->show = show_diff_view;
5119 view->input = input_diff_view;
5120 view->reset = reset_diff_view;
5121 view->close = close_diff_view;
5122 view->search_start = search_start_diff_view;
5123 view->search_setup = search_setup_diff_view;
5124 view->search_next = search_next_view_match;
5125 done:
5126 if (err)
5127 close_diff_view(view);
5128 return err;
5131 static const struct got_error *
5132 show_diff_view(struct tog_view *view)
5134 const struct got_error *err;
5135 struct tog_diff_view_state *s = &view->state.diff;
5136 char *id_str1 = NULL, *id_str2, *header;
5137 const char *label1, *label2;
5139 if (s->id1) {
5140 err = got_object_id_str(&id_str1, s->id1);
5141 if (err)
5142 return err;
5143 label1 = s->label1 ? s->label1 : id_str1;
5144 } else
5145 label1 = "/dev/null";
5147 err = got_object_id_str(&id_str2, s->id2);
5148 if (err)
5149 return err;
5150 label2 = s->label2 ? s->label2 : id_str2;
5152 if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5153 err = got_error_from_errno("asprintf");
5154 free(id_str1);
5155 free(id_str2);
5156 return err;
5158 free(id_str1);
5159 free(id_str2);
5161 err = draw_file(view, header);
5162 free(header);
5163 return err;
5166 static const struct got_error *
5167 set_selected_commit(struct tog_diff_view_state *s,
5168 struct commit_queue_entry *entry)
5170 const struct got_error *err;
5171 const struct got_object_id_queue *parent_ids;
5172 struct got_commit_object *selected_commit;
5173 struct got_object_qid *pid;
5175 free(s->id2);
5176 s->id2 = got_object_id_dup(entry->id);
5177 if (s->id2 == NULL)
5178 return got_error_from_errno("got_object_id_dup");
5180 err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5181 if (err)
5182 return err;
5183 parent_ids = got_object_commit_get_parent_ids(selected_commit);
5184 free(s->id1);
5185 pid = STAILQ_FIRST(parent_ids);
5186 s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5187 got_object_commit_close(selected_commit);
5188 return NULL;
5191 static const struct got_error *
5192 reset_diff_view(struct tog_view *view)
5194 struct tog_diff_view_state *s = &view->state.diff;
5196 view->count = 0;
5197 wclear(view->window);
5198 s->first_displayed_line = 1;
5199 s->last_displayed_line = view->nlines;
5200 s->matched_line = 0;
5201 diff_view_indicate_progress(view);
5202 return create_diff(s);
5205 static void
5206 diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5208 int start, i;
5210 i = start = s->first_displayed_line - 1;
5212 while (s->lines[i].type != type) {
5213 if (i == 0)
5214 i = s->nlines - 1;
5215 if (--i == start)
5216 return; /* do nothing, requested type not in file */
5219 s->selected_line = 1;
5220 s->first_displayed_line = i;
5223 static void
5224 diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5226 int start, i;
5228 i = start = s->first_displayed_line + 1;
5230 while (s->lines[i].type != type) {
5231 if (i == s->nlines - 1)
5232 i = 0;
5233 if (++i == start)
5234 return; /* do nothing, requested type not in file */
5237 s->selected_line = 1;
5238 s->first_displayed_line = i;
5241 static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5242 int, int, int);
5243 static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5244 int, int);
5246 static const struct got_error *
5247 input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5249 const struct got_error *err = NULL;
5250 struct tog_diff_view_state *s = &view->state.diff;
5251 struct tog_log_view_state *ls;
5252 struct commit_queue_entry *old_selected_entry;
5253 char *line = NULL;
5254 size_t linesize = 0;
5255 ssize_t linelen;
5256 int i, nscroll = view->nlines - 1, up = 0;
5258 s->lineno = s->first_displayed_line - 1 + s->selected_line;
5260 switch (ch) {
5261 case '0':
5262 view->x = 0;
5263 break;
5264 case '$':
5265 view->x = MAX(view->maxx - view->ncols / 3, 0);
5266 view->count = 0;
5267 break;
5268 case KEY_RIGHT:
5269 case 'l':
5270 if (view->x + view->ncols / 3 < view->maxx)
5271 view->x += 2; /* move two columns right */
5272 else
5273 view->count = 0;
5274 break;
5275 case KEY_LEFT:
5276 case 'h':
5277 view->x -= MIN(view->x, 2); /* move two columns back */
5278 if (view->x <= 0)
5279 view->count = 0;
5280 break;
5281 case 'a':
5282 case 'w':
5283 if (ch == 'a')
5284 s->force_text_diff = !s->force_text_diff;
5285 else if (ch == 'w')
5286 s->ignore_whitespace = !s->ignore_whitespace;
5287 err = reset_diff_view(view);
5288 break;
5289 case 'g':
5290 case KEY_HOME:
5291 s->first_displayed_line = 1;
5292 view->count = 0;
5293 break;
5294 case 'G':
5295 case KEY_END:
5296 view->count = 0;
5297 if (s->eof)
5298 break;
5300 s->first_displayed_line = (s->nlines - view->nlines) + 2;
5301 s->eof = 1;
5302 break;
5303 case 'k':
5304 case KEY_UP:
5305 case CTRL('p'):
5306 if (s->first_displayed_line > 1)
5307 s->first_displayed_line--;
5308 else
5309 view->count = 0;
5310 break;
5311 case CTRL('u'):
5312 case 'u':
5313 nscroll /= 2;
5314 /* FALL THROUGH */
5315 case KEY_PPAGE:
5316 case CTRL('b'):
5317 case 'b':
5318 if (s->first_displayed_line == 1) {
5319 view->count = 0;
5320 break;
5322 i = 0;
5323 while (i++ < nscroll && s->first_displayed_line > 1)
5324 s->first_displayed_line--;
5325 break;
5326 case 'j':
5327 case KEY_DOWN:
5328 case CTRL('n'):
5329 if (!s->eof)
5330 s->first_displayed_line++;
5331 else
5332 view->count = 0;
5333 break;
5334 case CTRL('d'):
5335 case 'd':
5336 nscroll /= 2;
5337 /* FALL THROUGH */
5338 case KEY_NPAGE:
5339 case CTRL('f'):
5340 case 'f':
5341 case ' ':
5342 if (s->eof) {
5343 view->count = 0;
5344 break;
5346 i = 0;
5347 while (!s->eof && i++ < nscroll) {
5348 linelen = getline(&line, &linesize, s->f);
5349 s->first_displayed_line++;
5350 if (linelen == -1) {
5351 if (feof(s->f)) {
5352 s->eof = 1;
5353 } else
5354 err = got_ferror(s->f, GOT_ERR_IO);
5355 break;
5358 free(line);
5359 break;
5360 case '(':
5361 diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5362 break;
5363 case ')':
5364 diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5365 break;
5366 case '{':
5367 diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5368 break;
5369 case '}':
5370 diff_next_index(s, GOT_DIFF_LINE_HUNK);
5371 break;
5372 case '[':
5373 if (s->diff_context > 0) {
5374 s->diff_context--;
5375 s->matched_line = 0;
5376 diff_view_indicate_progress(view);
5377 err = create_diff(s);
5378 if (s->first_displayed_line + view->nlines - 1 >
5379 s->nlines) {
5380 s->first_displayed_line = 1;
5381 s->last_displayed_line = view->nlines;
5383 } else
5384 view->count = 0;
5385 break;
5386 case ']':
5387 if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5388 s->diff_context++;
5389 s->matched_line = 0;
5390 diff_view_indicate_progress(view);
5391 err = create_diff(s);
5392 } else
5393 view->count = 0;
5394 break;
5395 case '<':
5396 case ',':
5397 case 'K':
5398 up = 1;
5399 /* FALL THROUGH */
5400 case '>':
5401 case '.':
5402 case 'J':
5403 if (s->parent_view == NULL) {
5404 view->count = 0;
5405 break;
5407 s->parent_view->count = view->count;
5409 if (s->parent_view->type == TOG_VIEW_LOG) {
5410 ls = &s->parent_view->state.log;
5411 old_selected_entry = ls->selected_entry;
5413 err = input_log_view(NULL, s->parent_view,
5414 up ? KEY_UP : KEY_DOWN);
5415 if (err)
5416 break;
5417 view->count = s->parent_view->count;
5419 if (old_selected_entry == ls->selected_entry)
5420 break;
5422 err = set_selected_commit(s, ls->selected_entry);
5423 if (err)
5424 break;
5425 } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5426 struct tog_blame_view_state *bs;
5427 struct got_object_id *id, *prev_id;
5429 bs = &s->parent_view->state.blame;
5430 prev_id = get_annotation_for_line(bs->blame.lines,
5431 bs->blame.nlines, bs->last_diffed_line);
5433 err = input_blame_view(&view, s->parent_view,
5434 up ? KEY_UP : KEY_DOWN);
5435 if (err)
5436 break;
5437 view->count = s->parent_view->count;
5439 if (prev_id == NULL)
5440 break;
5441 id = get_selected_commit_id(bs->blame.lines,
5442 bs->blame.nlines, bs->first_displayed_line,
5443 bs->selected_line);
5444 if (id == NULL)
5445 break;
5447 if (!got_object_id_cmp(prev_id, id))
5448 break;
5450 err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5451 if (err)
5452 break;
5454 s->first_displayed_line = 1;
5455 s->last_displayed_line = view->nlines;
5456 s->matched_line = 0;
5457 view->x = 0;
5459 diff_view_indicate_progress(view);
5460 err = create_diff(s);
5461 break;
5462 default:
5463 view->count = 0;
5464 break;
5467 return err;
5470 static const struct got_error *
5471 cmd_diff(int argc, char *argv[])
5473 const struct got_error *error = NULL;
5474 struct got_repository *repo = NULL;
5475 struct got_worktree *worktree = NULL;
5476 struct got_object_id *id1 = NULL, *id2 = NULL;
5477 char *repo_path = NULL, *cwd = NULL;
5478 char *id_str1 = NULL, *id_str2 = NULL;
5479 char *label1 = NULL, *label2 = NULL;
5480 int diff_context = 3, ignore_whitespace = 0;
5481 int ch, force_text_diff = 0;
5482 const char *errstr;
5483 struct tog_view *view;
5484 int *pack_fds = NULL;
5486 while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5487 switch (ch) {
5488 case 'a':
5489 force_text_diff = 1;
5490 break;
5491 case 'C':
5492 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5493 &errstr);
5494 if (errstr != NULL)
5495 errx(1, "number of context lines is %s: %s",
5496 errstr, errstr);
5497 break;
5498 case 'r':
5499 repo_path = realpath(optarg, NULL);
5500 if (repo_path == NULL)
5501 return got_error_from_errno2("realpath",
5502 optarg);
5503 got_path_strip_trailing_slashes(repo_path);
5504 break;
5505 case 'w':
5506 ignore_whitespace = 1;
5507 break;
5508 default:
5509 usage_diff();
5510 /* NOTREACHED */
5514 argc -= optind;
5515 argv += optind;
5517 if (argc == 0) {
5518 usage_diff(); /* TODO show local worktree changes */
5519 } else if (argc == 2) {
5520 id_str1 = argv[0];
5521 id_str2 = argv[1];
5522 } else
5523 usage_diff();
5525 error = got_repo_pack_fds_open(&pack_fds);
5526 if (error)
5527 goto done;
5529 if (repo_path == NULL) {
5530 cwd = getcwd(NULL, 0);
5531 if (cwd == NULL)
5532 return got_error_from_errno("getcwd");
5533 error = got_worktree_open(&worktree, cwd);
5534 if (error && error->code != GOT_ERR_NOT_WORKTREE)
5535 goto done;
5536 if (worktree)
5537 repo_path =
5538 strdup(got_worktree_get_repo_path(worktree));
5539 else
5540 repo_path = strdup(cwd);
5541 if (repo_path == NULL) {
5542 error = got_error_from_errno("strdup");
5543 goto done;
5547 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5548 if (error)
5549 goto done;
5551 init_curses();
5553 error = apply_unveil(got_repo_get_path(repo), NULL);
5554 if (error)
5555 goto done;
5557 error = tog_load_refs(repo, 0);
5558 if (error)
5559 goto done;
5561 error = got_repo_match_object_id(&id1, &label1, id_str1,
5562 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5563 if (error)
5564 goto done;
5566 error = got_repo_match_object_id(&id2, &label2, id_str2,
5567 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5568 if (error)
5569 goto done;
5571 view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5572 if (view == NULL) {
5573 error = got_error_from_errno("view_open");
5574 goto done;
5576 error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5577 ignore_whitespace, force_text_diff, NULL, repo);
5578 if (error)
5579 goto done;
5580 error = view_loop(view);
5581 done:
5582 free(label1);
5583 free(label2);
5584 free(repo_path);
5585 free(cwd);
5586 if (repo) {
5587 const struct got_error *close_err = got_repo_close(repo);
5588 if (error == NULL)
5589 error = close_err;
5591 if (worktree)
5592 got_worktree_close(worktree);
5593 if (pack_fds) {
5594 const struct got_error *pack_err =
5595 got_repo_pack_fds_close(pack_fds);
5596 if (error == NULL)
5597 error = pack_err;
5599 tog_free_refs();
5600 return error;
5603 __dead static void
5604 usage_blame(void)
5606 endwin();
5607 fprintf(stderr,
5608 "usage: %s blame [-c commit] [-r repository-path] path\n",
5609 getprogname());
5610 exit(1);
5613 struct tog_blame_line {
5614 int annotated;
5615 struct got_object_id *id;
5618 static const struct got_error *
5619 draw_blame(struct tog_view *view)
5621 struct tog_blame_view_state *s = &view->state.blame;
5622 struct tog_blame *blame = &s->blame;
5623 regmatch_t *regmatch = &view->regmatch;
5624 const struct got_error *err;
5625 int lineno = 0, nprinted = 0;
5626 char *line = NULL;
5627 size_t linesize = 0;
5628 ssize_t linelen;
5629 wchar_t *wline;
5630 int width;
5631 struct tog_blame_line *blame_line;
5632 struct got_object_id *prev_id = NULL;
5633 char *id_str;
5634 struct tog_color *tc;
5636 err = got_object_id_str(&id_str, &s->blamed_commit->id);
5637 if (err)
5638 return err;
5640 rewind(blame->f);
5641 werase(view->window);
5643 if (asprintf(&line, "commit %s", id_str) == -1) {
5644 err = got_error_from_errno("asprintf");
5645 free(id_str);
5646 return err;
5649 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5650 free(line);
5651 line = NULL;
5652 if (err)
5653 return err;
5654 if (view_needs_focus_indication(view))
5655 wstandout(view->window);
5656 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5657 if (tc)
5658 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5659 waddwstr(view->window, wline);
5660 while (width++ < view->ncols)
5661 waddch(view->window, ' ');
5662 if (tc)
5663 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5664 if (view_needs_focus_indication(view))
5665 wstandend(view->window);
5666 free(wline);
5667 wline = NULL;
5669 if (view->gline > blame->nlines)
5670 view->gline = blame->nlines;
5672 if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5673 s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5674 s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5675 free(id_str);
5676 return got_error_from_errno("asprintf");
5678 free(id_str);
5679 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5680 free(line);
5681 line = NULL;
5682 if (err)
5683 return err;
5684 waddwstr(view->window, wline);
5685 free(wline);
5686 wline = NULL;
5687 if (width < view->ncols - 1)
5688 waddch(view->window, '\n');
5690 s->eof = 0;
5691 view->maxx = 0;
5692 while (nprinted < view->nlines - 2) {
5693 linelen = getline(&line, &linesize, blame->f);
5694 if (linelen == -1) {
5695 if (feof(blame->f)) {
5696 s->eof = 1;
5697 break;
5699 free(line);
5700 return got_ferror(blame->f, GOT_ERR_IO);
5702 if (++lineno < s->first_displayed_line)
5703 continue;
5704 if (view->gline && !gotoline(view, &lineno, &nprinted))
5705 continue;
5707 /* Set view->maxx based on full line length. */
5708 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5709 if (err) {
5710 free(line);
5711 return err;
5713 free(wline);
5714 wline = NULL;
5715 view->maxx = MAX(view->maxx, width);
5717 if (nprinted == s->selected_line - 1)
5718 wstandout(view->window);
5720 if (blame->nlines > 0) {
5721 blame_line = &blame->lines[lineno - 1];
5722 if (blame_line->annotated && prev_id &&
5723 got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5724 !(nprinted == s->selected_line - 1)) {
5725 waddstr(view->window, " ");
5726 } else if (blame_line->annotated) {
5727 char *id_str;
5728 err = got_object_id_str(&id_str,
5729 blame_line->id);
5730 if (err) {
5731 free(line);
5732 return err;
5734 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5735 if (tc)
5736 wattr_on(view->window,
5737 COLOR_PAIR(tc->colorpair), NULL);
5738 wprintw(view->window, "%.8s", id_str);
5739 if (tc)
5740 wattr_off(view->window,
5741 COLOR_PAIR(tc->colorpair), NULL);
5742 free(id_str);
5743 prev_id = blame_line->id;
5744 } else {
5745 waddstr(view->window, "........");
5746 prev_id = NULL;
5748 } else {
5749 waddstr(view->window, "........");
5750 prev_id = NULL;
5753 if (nprinted == s->selected_line - 1)
5754 wstandend(view->window);
5755 waddstr(view->window, " ");
5757 if (view->ncols <= 9) {
5758 width = 9;
5759 } else if (s->first_displayed_line + nprinted ==
5760 s->matched_line &&
5761 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5762 err = add_matched_line(&width, line, view->ncols - 9, 9,
5763 view->window, view->x, regmatch);
5764 if (err) {
5765 free(line);
5766 return err;
5768 width += 9;
5769 } else {
5770 int skip;
5771 err = format_line(&wline, &width, &skip, line,
5772 view->x, view->ncols - 9, 9, 1);
5773 if (err) {
5774 free(line);
5775 return err;
5777 waddwstr(view->window, &wline[skip]);
5778 width += 9;
5779 free(wline);
5780 wline = NULL;
5783 if (width <= view->ncols - 1)
5784 waddch(view->window, '\n');
5785 if (++nprinted == 1)
5786 s->first_displayed_line = lineno;
5788 free(line);
5789 s->last_displayed_line = lineno;
5791 view_border(view);
5793 return NULL;
5796 static const struct got_error *
5797 blame_cb(void *arg, int nlines, int lineno,
5798 struct got_commit_object *commit, struct got_object_id *id)
5800 const struct got_error *err = NULL;
5801 struct tog_blame_cb_args *a = arg;
5802 struct tog_blame_line *line;
5803 int errcode;
5805 if (nlines != a->nlines ||
5806 (lineno != -1 && lineno < 1) || lineno > a->nlines)
5807 return got_error(GOT_ERR_RANGE);
5809 errcode = pthread_mutex_lock(&tog_mutex);
5810 if (errcode)
5811 return got_error_set_errno(errcode, "pthread_mutex_lock");
5813 if (*a->quit) { /* user has quit the blame view */
5814 err = got_error(GOT_ERR_ITER_COMPLETED);
5815 goto done;
5818 if (lineno == -1)
5819 goto done; /* no change in this commit */
5821 line = &a->lines[lineno - 1];
5822 if (line->annotated)
5823 goto done;
5825 line->id = got_object_id_dup(id);
5826 if (line->id == NULL) {
5827 err = got_error_from_errno("got_object_id_dup");
5828 goto done;
5830 line->annotated = 1;
5831 done:
5832 errcode = pthread_mutex_unlock(&tog_mutex);
5833 if (errcode)
5834 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5835 return err;
5838 static void *
5839 blame_thread(void *arg)
5841 const struct got_error *err, *close_err;
5842 struct tog_blame_thread_args *ta = arg;
5843 struct tog_blame_cb_args *a = ta->cb_args;
5844 int errcode, fd1 = -1, fd2 = -1;
5845 FILE *f1 = NULL, *f2 = NULL;
5847 fd1 = got_opentempfd();
5848 if (fd1 == -1)
5849 return (void *)got_error_from_errno("got_opentempfd");
5851 fd2 = got_opentempfd();
5852 if (fd2 == -1) {
5853 err = got_error_from_errno("got_opentempfd");
5854 goto done;
5857 f1 = got_opentemp();
5858 if (f1 == NULL) {
5859 err = (void *)got_error_from_errno("got_opentemp");
5860 goto done;
5862 f2 = got_opentemp();
5863 if (f2 == NULL) {
5864 err = (void *)got_error_from_errno("got_opentemp");
5865 goto done;
5868 err = block_signals_used_by_main_thread();
5869 if (err)
5870 goto done;
5872 err = got_blame(ta->path, a->commit_id, ta->repo,
5873 tog_diff_algo, blame_cb, ta->cb_args,
5874 ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5875 if (err && err->code == GOT_ERR_CANCELLED)
5876 err = NULL;
5878 errcode = pthread_mutex_lock(&tog_mutex);
5879 if (errcode) {
5880 err = got_error_set_errno(errcode, "pthread_mutex_lock");
5881 goto done;
5884 close_err = got_repo_close(ta->repo);
5885 if (err == NULL)
5886 err = close_err;
5887 ta->repo = NULL;
5888 *ta->complete = 1;
5890 errcode = pthread_mutex_unlock(&tog_mutex);
5891 if (errcode && err == NULL)
5892 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5894 done:
5895 if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5896 err = got_error_from_errno("close");
5897 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5898 err = got_error_from_errno("close");
5899 if (f1 && fclose(f1) == EOF && err == NULL)
5900 err = got_error_from_errno("fclose");
5901 if (f2 && fclose(f2) == EOF && err == NULL)
5902 err = got_error_from_errno("fclose");
5904 return (void *)err;
5907 static struct got_object_id *
5908 get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5909 int first_displayed_line, int selected_line)
5911 struct tog_blame_line *line;
5913 if (nlines <= 0)
5914 return NULL;
5916 line = &lines[first_displayed_line - 1 + selected_line - 1];
5917 if (!line->annotated)
5918 return NULL;
5920 return line->id;
5923 static struct got_object_id *
5924 get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5925 int lineno)
5927 struct tog_blame_line *line;
5929 if (nlines <= 0 || lineno >= nlines)
5930 return NULL;
5932 line = &lines[lineno - 1];
5933 if (!line->annotated)
5934 return NULL;
5936 return line->id;
5939 static const struct got_error *
5940 stop_blame(struct tog_blame *blame)
5942 const struct got_error *err = NULL;
5943 int i;
5945 if (blame->thread) {
5946 int errcode;
5947 errcode = pthread_mutex_unlock(&tog_mutex);
5948 if (errcode)
5949 return got_error_set_errno(errcode,
5950 "pthread_mutex_unlock");
5951 errcode = pthread_join(blame->thread, (void **)&err);
5952 if (errcode)
5953 return got_error_set_errno(errcode, "pthread_join");
5954 errcode = pthread_mutex_lock(&tog_mutex);
5955 if (errcode)
5956 return got_error_set_errno(errcode,
5957 "pthread_mutex_lock");
5958 if (err && err->code == GOT_ERR_ITER_COMPLETED)
5959 err = NULL;
5960 blame->thread = 0; //NULL;
5962 if (blame->thread_args.repo) {
5963 const struct got_error *close_err;
5964 close_err = got_repo_close(blame->thread_args.repo);
5965 if (err == NULL)
5966 err = close_err;
5967 blame->thread_args.repo = NULL;
5969 if (blame->f) {
5970 if (fclose(blame->f) == EOF && err == NULL)
5971 err = got_error_from_errno("fclose");
5972 blame->f = NULL;
5974 if (blame->lines) {
5975 for (i = 0; i < blame->nlines; i++)
5976 free(blame->lines[i].id);
5977 free(blame->lines);
5978 blame->lines = NULL;
5980 free(blame->cb_args.commit_id);
5981 blame->cb_args.commit_id = NULL;
5982 if (blame->pack_fds) {
5983 const struct got_error *pack_err =
5984 got_repo_pack_fds_close(blame->pack_fds);
5985 if (err == NULL)
5986 err = pack_err;
5987 blame->pack_fds = NULL;
5989 return err;
5992 static const struct got_error *
5993 cancel_blame_view(void *arg)
5995 const struct got_error *err = NULL;
5996 int *done = arg;
5997 int errcode;
5999 errcode = pthread_mutex_lock(&tog_mutex);
6000 if (errcode)
6001 return got_error_set_errno(errcode,
6002 "pthread_mutex_unlock");
6004 if (*done)
6005 err = got_error(GOT_ERR_CANCELLED);
6007 errcode = pthread_mutex_unlock(&tog_mutex);
6008 if (errcode)
6009 return got_error_set_errno(errcode,
6010 "pthread_mutex_lock");
6012 return err;
6015 static const struct got_error *
6016 run_blame(struct tog_view *view)
6018 struct tog_blame_view_state *s = &view->state.blame;
6019 struct tog_blame *blame = &s->blame;
6020 const struct got_error *err = NULL;
6021 struct got_commit_object *commit = NULL;
6022 struct got_blob_object *blob = NULL;
6023 struct got_repository *thread_repo = NULL;
6024 struct got_object_id *obj_id = NULL;
6025 int obj_type, fd = -1;
6026 int *pack_fds = NULL;
6028 err = got_object_open_as_commit(&commit, s->repo,
6029 &s->blamed_commit->id);
6030 if (err)
6031 return err;
6033 fd = got_opentempfd();
6034 if (fd == -1) {
6035 err = got_error_from_errno("got_opentempfd");
6036 goto done;
6039 err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
6040 if (err)
6041 goto done;
6043 err = got_object_get_type(&obj_type, s->repo, obj_id);
6044 if (err)
6045 goto done;
6047 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6048 err = got_error(GOT_ERR_OBJ_TYPE);
6049 goto done;
6052 err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
6053 if (err)
6054 goto done;
6055 blame->f = got_opentemp();
6056 if (blame->f == NULL) {
6057 err = got_error_from_errno("got_opentemp");
6058 goto done;
6060 err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
6061 &blame->line_offsets, blame->f, blob);
6062 if (err)
6063 goto done;
6064 if (blame->nlines == 0) {
6065 s->blame_complete = 1;
6066 goto done;
6069 /* Don't include \n at EOF in the blame line count. */
6070 if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
6071 blame->nlines--;
6073 blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6074 if (blame->lines == NULL) {
6075 err = got_error_from_errno("calloc");
6076 goto done;
6079 err = got_repo_pack_fds_open(&pack_fds);
6080 if (err)
6081 goto done;
6082 err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6083 pack_fds);
6084 if (err)
6085 goto done;
6087 blame->pack_fds = pack_fds;
6088 blame->cb_args.view = view;
6089 blame->cb_args.lines = blame->lines;
6090 blame->cb_args.nlines = blame->nlines;
6091 blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6092 if (blame->cb_args.commit_id == NULL) {
6093 err = got_error_from_errno("got_object_id_dup");
6094 goto done;
6096 blame->cb_args.quit = &s->done;
6098 blame->thread_args.path = s->path;
6099 blame->thread_args.repo = thread_repo;
6100 blame->thread_args.cb_args = &blame->cb_args;
6101 blame->thread_args.complete = &s->blame_complete;
6102 blame->thread_args.cancel_cb = cancel_blame_view;
6103 blame->thread_args.cancel_arg = &s->done;
6104 s->blame_complete = 0;
6106 if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6107 s->first_displayed_line = 1;
6108 s->last_displayed_line = view->nlines;
6109 s->selected_line = 1;
6111 s->matched_line = 0;
6113 done:
6114 if (commit)
6115 got_object_commit_close(commit);
6116 if (fd != -1 && close(fd) == -1 && err == NULL)
6117 err = got_error_from_errno("close");
6118 if (blob)
6119 got_object_blob_close(blob);
6120 free(obj_id);
6121 if (err)
6122 stop_blame(blame);
6123 return err;
6126 static const struct got_error *
6127 open_blame_view(struct tog_view *view, char *path,
6128 struct got_object_id *commit_id, struct got_repository *repo)
6130 const struct got_error *err = NULL;
6131 struct tog_blame_view_state *s = &view->state.blame;
6133 STAILQ_INIT(&s->blamed_commits);
6135 s->path = strdup(path);
6136 if (s->path == NULL)
6137 return got_error_from_errno("strdup");
6139 err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6140 if (err) {
6141 free(s->path);
6142 return err;
6145 STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6146 s->first_displayed_line = 1;
6147 s->last_displayed_line = view->nlines;
6148 s->selected_line = 1;
6149 s->blame_complete = 0;
6150 s->repo = repo;
6151 s->commit_id = commit_id;
6152 memset(&s->blame, 0, sizeof(s->blame));
6154 STAILQ_INIT(&s->colors);
6155 if (has_colors() && getenv("TOG_COLORS") != NULL) {
6156 err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6157 get_color_value("TOG_COLOR_COMMIT"));
6158 if (err)
6159 return err;
6162 view->show = show_blame_view;
6163 view->input = input_blame_view;
6164 view->reset = reset_blame_view;
6165 view->close = close_blame_view;
6166 view->search_start = search_start_blame_view;
6167 view->search_setup = search_setup_blame_view;
6168 view->search_next = search_next_view_match;
6170 return run_blame(view);
6173 static const struct got_error *
6174 close_blame_view(struct tog_view *view)
6176 const struct got_error *err = NULL;
6177 struct tog_blame_view_state *s = &view->state.blame;
6179 if (s->blame.thread)
6180 err = stop_blame(&s->blame);
6182 while (!STAILQ_EMPTY(&s->blamed_commits)) {
6183 struct got_object_qid *blamed_commit;
6184 blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6185 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6186 got_object_qid_free(blamed_commit);
6189 free(s->path);
6190 free_colors(&s->colors);
6191 return err;
6194 static const struct got_error *
6195 search_start_blame_view(struct tog_view *view)
6197 struct tog_blame_view_state *s = &view->state.blame;
6199 s->matched_line = 0;
6200 return NULL;
6203 static void
6204 search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6205 size_t *nlines, int **first, int **last, int **match, int **selected)
6207 struct tog_blame_view_state *s = &view->state.blame;
6209 *f = s->blame.f;
6210 *nlines = s->blame.nlines;
6211 *line_offsets = s->blame.line_offsets;
6212 *match = &s->matched_line;
6213 *first = &s->first_displayed_line;
6214 *last = &s->last_displayed_line;
6215 *selected = &s->selected_line;
6218 static const struct got_error *
6219 show_blame_view(struct tog_view *view)
6221 const struct got_error *err = NULL;
6222 struct tog_blame_view_state *s = &view->state.blame;
6223 int errcode;
6225 if (s->blame.thread == 0 && !s->blame_complete) {
6226 errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6227 &s->blame.thread_args);
6228 if (errcode)
6229 return got_error_set_errno(errcode, "pthread_create");
6231 halfdelay(1); /* fast refresh while annotating */
6234 if (s->blame_complete)
6235 halfdelay(10); /* disable fast refresh */
6237 err = draw_blame(view);
6239 view_border(view);
6240 return err;
6243 static const struct got_error *
6244 log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6245 struct got_repository *repo, struct got_object_id *id)
6247 struct tog_view *log_view;
6248 const struct got_error *err = NULL;
6250 *new_view = NULL;
6252 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6253 if (log_view == NULL)
6254 return got_error_from_errno("view_open");
6256 err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6257 if (err)
6258 view_close(log_view);
6259 else
6260 *new_view = log_view;
6262 return err;
6265 static const struct got_error *
6266 input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6268 const struct got_error *err = NULL, *thread_err = NULL;
6269 struct tog_view *diff_view;
6270 struct tog_blame_view_state *s = &view->state.blame;
6271 int eos, nscroll, begin_y = 0, begin_x = 0;
6273 eos = nscroll = view->nlines - 2;
6274 if (view_is_hsplit_top(view))
6275 --eos; /* border */
6277 switch (ch) {
6278 case '0':
6279 view->x = 0;
6280 break;
6281 case '$':
6282 view->x = MAX(view->maxx - view->ncols / 3, 0);
6283 view->count = 0;
6284 break;
6285 case KEY_RIGHT:
6286 case 'l':
6287 if (view->x + view->ncols / 3 < view->maxx)
6288 view->x += 2; /* move two columns right */
6289 else
6290 view->count = 0;
6291 break;
6292 case KEY_LEFT:
6293 case 'h':
6294 view->x -= MIN(view->x, 2); /* move two columns back */
6295 if (view->x <= 0)
6296 view->count = 0;
6297 break;
6298 case 'q':
6299 s->done = 1;
6300 break;
6301 case 'g':
6302 case KEY_HOME:
6303 s->selected_line = 1;
6304 s->first_displayed_line = 1;
6305 view->count = 0;
6306 break;
6307 case 'G':
6308 case KEY_END:
6309 if (s->blame.nlines < eos) {
6310 s->selected_line = s->blame.nlines;
6311 s->first_displayed_line = 1;
6312 } else {
6313 s->selected_line = eos;
6314 s->first_displayed_line = s->blame.nlines - (eos - 1);
6316 view->count = 0;
6317 break;
6318 case 'k':
6319 case KEY_UP:
6320 case CTRL('p'):
6321 if (s->selected_line > 1)
6322 s->selected_line--;
6323 else if (s->selected_line == 1 &&
6324 s->first_displayed_line > 1)
6325 s->first_displayed_line--;
6326 else
6327 view->count = 0;
6328 break;
6329 case CTRL('u'):
6330 case 'u':
6331 nscroll /= 2;
6332 /* FALL THROUGH */
6333 case KEY_PPAGE:
6334 case CTRL('b'):
6335 case 'b':
6336 if (s->first_displayed_line == 1) {
6337 if (view->count > 1)
6338 nscroll += nscroll;
6339 s->selected_line = MAX(1, s->selected_line - nscroll);
6340 view->count = 0;
6341 break;
6343 if (s->first_displayed_line > nscroll)
6344 s->first_displayed_line -= nscroll;
6345 else
6346 s->first_displayed_line = 1;
6347 break;
6348 case 'j':
6349 case KEY_DOWN:
6350 case CTRL('n'):
6351 if (s->selected_line < eos && s->first_displayed_line +
6352 s->selected_line <= s->blame.nlines)
6353 s->selected_line++;
6354 else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6355 s->first_displayed_line++;
6356 else
6357 view->count = 0;
6358 break;
6359 case 'c':
6360 case 'p': {
6361 struct got_object_id *id = NULL;
6363 view->count = 0;
6364 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6365 s->first_displayed_line, s->selected_line);
6366 if (id == NULL)
6367 break;
6368 if (ch == 'p') {
6369 struct got_commit_object *commit, *pcommit;
6370 struct got_object_qid *pid;
6371 struct got_object_id *blob_id = NULL;
6372 int obj_type;
6373 err = got_object_open_as_commit(&commit,
6374 s->repo, id);
6375 if (err)
6376 break;
6377 pid = STAILQ_FIRST(
6378 got_object_commit_get_parent_ids(commit));
6379 if (pid == NULL) {
6380 got_object_commit_close(commit);
6381 break;
6383 /* Check if path history ends here. */
6384 err = got_object_open_as_commit(&pcommit,
6385 s->repo, &pid->id);
6386 if (err)
6387 break;
6388 err = got_object_id_by_path(&blob_id, s->repo,
6389 pcommit, s->path);
6390 got_object_commit_close(pcommit);
6391 if (err) {
6392 if (err->code == GOT_ERR_NO_TREE_ENTRY)
6393 err = NULL;
6394 got_object_commit_close(commit);
6395 break;
6397 err = got_object_get_type(&obj_type, s->repo,
6398 blob_id);
6399 free(blob_id);
6400 /* Can't blame non-blob type objects. */
6401 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6402 got_object_commit_close(commit);
6403 break;
6405 err = got_object_qid_alloc(&s->blamed_commit,
6406 &pid->id);
6407 got_object_commit_close(commit);
6408 } else {
6409 if (got_object_id_cmp(id,
6410 &s->blamed_commit->id) == 0)
6411 break;
6412 err = got_object_qid_alloc(&s->blamed_commit,
6413 id);
6415 if (err)
6416 break;
6417 s->done = 1;
6418 thread_err = stop_blame(&s->blame);
6419 s->done = 0;
6420 if (thread_err)
6421 break;
6422 STAILQ_INSERT_HEAD(&s->blamed_commits,
6423 s->blamed_commit, entry);
6424 err = run_blame(view);
6425 if (err)
6426 break;
6427 break;
6429 case 'C': {
6430 struct got_object_qid *first;
6432 view->count = 0;
6433 first = STAILQ_FIRST(&s->blamed_commits);
6434 if (!got_object_id_cmp(&first->id, s->commit_id))
6435 break;
6436 s->done = 1;
6437 thread_err = stop_blame(&s->blame);
6438 s->done = 0;
6439 if (thread_err)
6440 break;
6441 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6442 got_object_qid_free(s->blamed_commit);
6443 s->blamed_commit =
6444 STAILQ_FIRST(&s->blamed_commits);
6445 err = run_blame(view);
6446 if (err)
6447 break;
6448 break;
6450 case 'L':
6451 view->count = 0;
6452 s->id_to_log = get_selected_commit_id(s->blame.lines,
6453 s->blame.nlines, s->first_displayed_line, s->selected_line);
6454 if (s->id_to_log)
6455 err = view_request_new(new_view, view, TOG_VIEW_LOG);
6456 break;
6457 case KEY_ENTER:
6458 case '\r': {
6459 struct got_object_id *id = NULL;
6460 struct got_object_qid *pid;
6461 struct got_commit_object *commit = NULL;
6463 view->count = 0;
6464 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6465 s->first_displayed_line, s->selected_line);
6466 if (id == NULL)
6467 break;
6468 err = got_object_open_as_commit(&commit, s->repo, id);
6469 if (err)
6470 break;
6471 pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6472 if (*new_view) {
6473 /* traversed from diff view, release diff resources */
6474 err = close_diff_view(*new_view);
6475 if (err)
6476 break;
6477 diff_view = *new_view;
6478 } else {
6479 if (view_is_parent_view(view))
6480 view_get_split(view, &begin_y, &begin_x);
6482 diff_view = view_open(0, 0, begin_y, begin_x,
6483 TOG_VIEW_DIFF);
6484 if (diff_view == NULL) {
6485 got_object_commit_close(commit);
6486 err = got_error_from_errno("view_open");
6487 break;
6490 err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6491 id, NULL, NULL, 3, 0, 0, view, s->repo);
6492 got_object_commit_close(commit);
6493 if (err) {
6494 view_close(diff_view);
6495 break;
6497 s->last_diffed_line = s->first_displayed_line - 1 +
6498 s->selected_line;
6499 if (*new_view)
6500 break; /* still open from active diff view */
6501 if (view_is_parent_view(view) &&
6502 view->mode == TOG_VIEW_SPLIT_HRZN) {
6503 err = view_init_hsplit(view, begin_y);
6504 if (err)
6505 break;
6508 view->focussed = 0;
6509 diff_view->focussed = 1;
6510 diff_view->mode = view->mode;
6511 diff_view->nlines = view->lines - begin_y;
6512 if (view_is_parent_view(view)) {
6513 view_transfer_size(diff_view, view);
6514 err = view_close_child(view);
6515 if (err)
6516 break;
6517 err = view_set_child(view, diff_view);
6518 if (err)
6519 break;
6520 view->focus_child = 1;
6521 } else
6522 *new_view = diff_view;
6523 if (err)
6524 break;
6525 break;
6527 case CTRL('d'):
6528 case 'd':
6529 nscroll /= 2;
6530 /* FALL THROUGH */
6531 case KEY_NPAGE:
6532 case CTRL('f'):
6533 case 'f':
6534 case ' ':
6535 if (s->last_displayed_line >= s->blame.nlines &&
6536 s->selected_line >= MIN(s->blame.nlines,
6537 view->nlines - 2)) {
6538 view->count = 0;
6539 break;
6541 if (s->last_displayed_line >= s->blame.nlines &&
6542 s->selected_line < view->nlines - 2) {
6543 s->selected_line +=
6544 MIN(nscroll, s->last_displayed_line -
6545 s->first_displayed_line - s->selected_line + 1);
6547 if (s->last_displayed_line + nscroll <= s->blame.nlines)
6548 s->first_displayed_line += nscroll;
6549 else
6550 s->first_displayed_line =
6551 s->blame.nlines - (view->nlines - 3);
6552 break;
6553 case KEY_RESIZE:
6554 if (s->selected_line > view->nlines - 2) {
6555 s->selected_line = MIN(s->blame.nlines,
6556 view->nlines - 2);
6558 break;
6559 default:
6560 view->count = 0;
6561 break;
6563 return thread_err ? thread_err : err;
6566 static const struct got_error *
6567 reset_blame_view(struct tog_view *view)
6569 const struct got_error *err;
6570 struct tog_blame_view_state *s = &view->state.blame;
6572 view->count = 0;
6573 s->done = 1;
6574 err = stop_blame(&s->blame);
6575 s->done = 0;
6576 if (err)
6577 return err;
6578 return run_blame(view);
6581 static const struct got_error *
6582 cmd_blame(int argc, char *argv[])
6584 const struct got_error *error;
6585 struct got_repository *repo = NULL;
6586 struct got_worktree *worktree = NULL;
6587 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6588 char *link_target = NULL;
6589 struct got_object_id *commit_id = NULL;
6590 struct got_commit_object *commit = NULL;
6591 char *commit_id_str = NULL;
6592 int ch;
6593 struct tog_view *view;
6594 int *pack_fds = NULL;
6596 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6597 switch (ch) {
6598 case 'c':
6599 commit_id_str = optarg;
6600 break;
6601 case 'r':
6602 repo_path = realpath(optarg, NULL);
6603 if (repo_path == NULL)
6604 return got_error_from_errno2("realpath",
6605 optarg);
6606 break;
6607 default:
6608 usage_blame();
6609 /* NOTREACHED */
6613 argc -= optind;
6614 argv += optind;
6616 if (argc != 1)
6617 usage_blame();
6619 error = got_repo_pack_fds_open(&pack_fds);
6620 if (error != NULL)
6621 goto done;
6623 if (repo_path == NULL) {
6624 cwd = getcwd(NULL, 0);
6625 if (cwd == NULL)
6626 return got_error_from_errno("getcwd");
6627 error = got_worktree_open(&worktree, cwd);
6628 if (error && error->code != GOT_ERR_NOT_WORKTREE)
6629 goto done;
6630 if (worktree)
6631 repo_path =
6632 strdup(got_worktree_get_repo_path(worktree));
6633 else
6634 repo_path = strdup(cwd);
6635 if (repo_path == NULL) {
6636 error = got_error_from_errno("strdup");
6637 goto done;
6641 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6642 if (error != NULL)
6643 goto done;
6645 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6646 worktree);
6647 if (error)
6648 goto done;
6650 init_curses();
6652 error = apply_unveil(got_repo_get_path(repo), NULL);
6653 if (error)
6654 goto done;
6656 error = tog_load_refs(repo, 0);
6657 if (error)
6658 goto done;
6660 if (commit_id_str == NULL) {
6661 struct got_reference *head_ref;
6662 error = got_ref_open(&head_ref, repo, worktree ?
6663 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6664 if (error != NULL)
6665 goto done;
6666 error = got_ref_resolve(&commit_id, repo, head_ref);
6667 got_ref_close(head_ref);
6668 } else {
6669 error = got_repo_match_object_id(&commit_id, NULL,
6670 commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6672 if (error != NULL)
6673 goto done;
6675 view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6676 if (view == NULL) {
6677 error = got_error_from_errno("view_open");
6678 goto done;
6681 error = got_object_open_as_commit(&commit, repo, commit_id);
6682 if (error)
6683 goto done;
6685 error = got_object_resolve_symlinks(&link_target, in_repo_path,
6686 commit, repo);
6687 if (error)
6688 goto done;
6690 error = open_blame_view(view, link_target ? link_target : in_repo_path,
6691 commit_id, repo);
6692 if (error)
6693 goto done;
6694 if (worktree) {
6695 /* Release work tree lock. */
6696 got_worktree_close(worktree);
6697 worktree = NULL;
6699 error = view_loop(view);
6700 done:
6701 free(repo_path);
6702 free(in_repo_path);
6703 free(link_target);
6704 free(cwd);
6705 free(commit_id);
6706 if (commit)
6707 got_object_commit_close(commit);
6708 if (worktree)
6709 got_worktree_close(worktree);
6710 if (repo) {
6711 const struct got_error *close_err = got_repo_close(repo);
6712 if (error == NULL)
6713 error = close_err;
6715 if (pack_fds) {
6716 const struct got_error *pack_err =
6717 got_repo_pack_fds_close(pack_fds);
6718 if (error == NULL)
6719 error = pack_err;
6721 tog_free_refs();
6722 return error;
6725 static const struct got_error *
6726 draw_tree_entries(struct tog_view *view, const char *parent_path)
6728 struct tog_tree_view_state *s = &view->state.tree;
6729 const struct got_error *err = NULL;
6730 struct got_tree_entry *te;
6731 wchar_t *wline;
6732 char *index = NULL;
6733 struct tog_color *tc;
6734 int width, n, nentries, i = 1;
6735 int limit = view->nlines;
6737 s->ndisplayed = 0;
6738 if (view_is_hsplit_top(view))
6739 --limit; /* border */
6741 werase(view->window);
6743 if (limit == 0)
6744 return NULL;
6746 err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6747 0, 0);
6748 if (err)
6749 return err;
6750 if (view_needs_focus_indication(view))
6751 wstandout(view->window);
6752 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6753 if (tc)
6754 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6755 waddwstr(view->window, wline);
6756 free(wline);
6757 wline = NULL;
6758 while (width++ < view->ncols)
6759 waddch(view->window, ' ');
6760 if (tc)
6761 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6762 if (view_needs_focus_indication(view))
6763 wstandend(view->window);
6764 if (--limit <= 0)
6765 return NULL;
6767 i += s->selected;
6768 if (s->first_displayed_entry) {
6769 i += got_tree_entry_get_index(s->first_displayed_entry);
6770 if (s->tree != s->root)
6771 ++i; /* account for ".." entry */
6773 nentries = got_object_tree_get_nentries(s->tree);
6774 if (asprintf(&index, "[%d/%d] %s",
6775 i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6776 return got_error_from_errno("asprintf");
6777 err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6778 free(index);
6779 if (err)
6780 return err;
6781 waddwstr(view->window, wline);
6782 free(wline);
6783 wline = NULL;
6784 if (width < view->ncols - 1)
6785 waddch(view->window, '\n');
6786 if (--limit <= 0)
6787 return NULL;
6788 waddch(view->window, '\n');
6789 if (--limit <= 0)
6790 return NULL;
6792 if (s->first_displayed_entry == NULL) {
6793 te = got_object_tree_get_first_entry(s->tree);
6794 if (s->selected == 0) {
6795 if (view->focussed)
6796 wstandout(view->window);
6797 s->selected_entry = NULL;
6799 waddstr(view->window, " ..\n"); /* parent directory */
6800 if (s->selected == 0 && view->focussed)
6801 wstandend(view->window);
6802 s->ndisplayed++;
6803 if (--limit <= 0)
6804 return NULL;
6805 n = 1;
6806 } else {
6807 n = 0;
6808 te = s->first_displayed_entry;
6811 for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6812 char *line = NULL, *id_str = NULL, *link_target = NULL;
6813 const char *modestr = "";
6814 mode_t mode;
6816 te = got_object_tree_get_entry(s->tree, i);
6817 mode = got_tree_entry_get_mode(te);
6819 if (s->show_ids) {
6820 err = got_object_id_str(&id_str,
6821 got_tree_entry_get_id(te));
6822 if (err)
6823 return got_error_from_errno(
6824 "got_object_id_str");
6826 if (got_object_tree_entry_is_submodule(te))
6827 modestr = "$";
6828 else if (S_ISLNK(mode)) {
6829 int i;
6831 err = got_tree_entry_get_symlink_target(&link_target,
6832 te, s->repo);
6833 if (err) {
6834 free(id_str);
6835 return err;
6837 for (i = 0; i < strlen(link_target); i++) {
6838 if (!isprint((unsigned char)link_target[i]))
6839 link_target[i] = '?';
6841 modestr = "@";
6843 else if (S_ISDIR(mode))
6844 modestr = "/";
6845 else if (mode & S_IXUSR)
6846 modestr = "*";
6847 if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6848 got_tree_entry_get_name(te), modestr,
6849 link_target ? " -> ": "",
6850 link_target ? link_target : "") == -1) {
6851 free(id_str);
6852 free(link_target);
6853 return got_error_from_errno("asprintf");
6855 free(id_str);
6856 free(link_target);
6857 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6858 0, 0);
6859 if (err) {
6860 free(line);
6861 break;
6863 if (n == s->selected) {
6864 if (view->focussed)
6865 wstandout(view->window);
6866 s->selected_entry = te;
6868 tc = match_color(&s->colors, line);
6869 if (tc)
6870 wattr_on(view->window,
6871 COLOR_PAIR(tc->colorpair), NULL);
6872 waddwstr(view->window, wline);
6873 if (tc)
6874 wattr_off(view->window,
6875 COLOR_PAIR(tc->colorpair), NULL);
6876 if (width < view->ncols - 1)
6877 waddch(view->window, '\n');
6878 if (n == s->selected && view->focussed)
6879 wstandend(view->window);
6880 free(line);
6881 free(wline);
6882 wline = NULL;
6883 n++;
6884 s->ndisplayed++;
6885 s->last_displayed_entry = te;
6886 if (--limit <= 0)
6887 break;
6890 return err;
6893 static void
6894 tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6896 struct got_tree_entry *te;
6897 int isroot = s->tree == s->root;
6898 int i = 0;
6900 if (s->first_displayed_entry == NULL)
6901 return;
6903 te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6904 while (i++ < maxscroll) {
6905 if (te == NULL) {
6906 if (!isroot)
6907 s->first_displayed_entry = NULL;
6908 break;
6910 s->first_displayed_entry = te;
6911 te = got_tree_entry_get_prev(s->tree, te);
6915 static const struct got_error *
6916 tree_scroll_down(struct tog_view *view, int maxscroll)
6918 struct tog_tree_view_state *s = &view->state.tree;
6919 struct got_tree_entry *next, *last;
6920 int n = 0;
6922 if (s->first_displayed_entry)
6923 next = got_tree_entry_get_next(s->tree,
6924 s->first_displayed_entry);
6925 else
6926 next = got_object_tree_get_first_entry(s->tree);
6928 last = s->last_displayed_entry;
6929 while (next && n++ < maxscroll) {
6930 if (last) {
6931 s->last_displayed_entry = last;
6932 last = got_tree_entry_get_next(s->tree, last);
6934 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6935 s->first_displayed_entry = next;
6936 next = got_tree_entry_get_next(s->tree, next);
6940 return NULL;
6943 static const struct got_error *
6944 tree_entry_path(char **path, struct tog_parent_trees *parents,
6945 struct got_tree_entry *te)
6947 const struct got_error *err = NULL;
6948 struct tog_parent_tree *pt;
6949 size_t len = 2; /* for leading slash and NUL */
6951 TAILQ_FOREACH(pt, parents, entry)
6952 len += strlen(got_tree_entry_get_name(pt->selected_entry))
6953 + 1 /* slash */;
6954 if (te)
6955 len += strlen(got_tree_entry_get_name(te));
6957 *path = calloc(1, len);
6958 if (path == NULL)
6959 return got_error_from_errno("calloc");
6961 (*path)[0] = '/';
6962 pt = TAILQ_LAST(parents, tog_parent_trees);
6963 while (pt) {
6964 const char *name = got_tree_entry_get_name(pt->selected_entry);
6965 if (strlcat(*path, name, len) >= len) {
6966 err = got_error(GOT_ERR_NO_SPACE);
6967 goto done;
6969 if (strlcat(*path, "/", len) >= len) {
6970 err = got_error(GOT_ERR_NO_SPACE);
6971 goto done;
6973 pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6975 if (te) {
6976 if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6977 err = got_error(GOT_ERR_NO_SPACE);
6978 goto done;
6981 done:
6982 if (err) {
6983 free(*path);
6984 *path = NULL;
6986 return err;
6989 static const struct got_error *
6990 blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6991 struct got_tree_entry *te, struct tog_parent_trees *parents,
6992 struct got_object_id *commit_id, struct got_repository *repo)
6994 const struct got_error *err = NULL;
6995 char *path;
6996 struct tog_view *blame_view;
6998 *new_view = NULL;
7000 err = tree_entry_path(&path, parents, te);
7001 if (err)
7002 return err;
7004 blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
7005 if (blame_view == NULL) {
7006 err = got_error_from_errno("view_open");
7007 goto done;
7010 err = open_blame_view(blame_view, path, commit_id, repo);
7011 if (err) {
7012 if (err->code == GOT_ERR_CANCELLED)
7013 err = NULL;
7014 view_close(blame_view);
7015 } else
7016 *new_view = blame_view;
7017 done:
7018 free(path);
7019 return err;
7022 static const struct got_error *
7023 log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
7024 struct tog_tree_view_state *s)
7026 struct tog_view *log_view;
7027 const struct got_error *err = NULL;
7028 char *path;
7030 *new_view = NULL;
7032 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7033 if (log_view == NULL)
7034 return got_error_from_errno("view_open");
7036 err = tree_entry_path(&path, &s->parents, s->selected_entry);
7037 if (err)
7038 return err;
7040 err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
7041 path, 0);
7042 if (err)
7043 view_close(log_view);
7044 else
7045 *new_view = log_view;
7046 free(path);
7047 return err;
7050 static const struct got_error *
7051 open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
7052 const char *head_ref_name, struct got_repository *repo)
7054 const struct got_error *err = NULL;
7055 char *commit_id_str = NULL;
7056 struct tog_tree_view_state *s = &view->state.tree;
7057 struct got_commit_object *commit = NULL;
7059 TAILQ_INIT(&s->parents);
7060 STAILQ_INIT(&s->colors);
7062 s->commit_id = got_object_id_dup(commit_id);
7063 if (s->commit_id == NULL)
7064 return got_error_from_errno("got_object_id_dup");
7066 err = got_object_open_as_commit(&commit, repo, commit_id);
7067 if (err)
7068 goto done;
7071 * The root is opened here and will be closed when the view is closed.
7072 * Any visited subtrees and their path-wise parents are opened and
7073 * closed on demand.
7075 err = got_object_open_as_tree(&s->root, repo,
7076 got_object_commit_get_tree_id(commit));
7077 if (err)
7078 goto done;
7079 s->tree = s->root;
7081 err = got_object_id_str(&commit_id_str, commit_id);
7082 if (err != NULL)
7083 goto done;
7085 if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7086 err = got_error_from_errno("asprintf");
7087 goto done;
7090 s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7091 s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7092 if (head_ref_name) {
7093 s->head_ref_name = strdup(head_ref_name);
7094 if (s->head_ref_name == NULL) {
7095 err = got_error_from_errno("strdup");
7096 goto done;
7099 s->repo = repo;
7101 if (has_colors() && getenv("TOG_COLORS") != NULL) {
7102 err = add_color(&s->colors, "\\$$",
7103 TOG_COLOR_TREE_SUBMODULE,
7104 get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7105 if (err)
7106 goto done;
7107 err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7108 get_color_value("TOG_COLOR_TREE_SYMLINK"));
7109 if (err)
7110 goto done;
7111 err = add_color(&s->colors, "/$",
7112 TOG_COLOR_TREE_DIRECTORY,
7113 get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7114 if (err)
7115 goto done;
7117 err = add_color(&s->colors, "\\*$",
7118 TOG_COLOR_TREE_EXECUTABLE,
7119 get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7120 if (err)
7121 goto done;
7123 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7124 get_color_value("TOG_COLOR_COMMIT"));
7125 if (err)
7126 goto done;
7129 view->show = show_tree_view;
7130 view->input = input_tree_view;
7131 view->close = close_tree_view;
7132 view->search_start = search_start_tree_view;
7133 view->search_next = search_next_tree_view;
7134 done:
7135 free(commit_id_str);
7136 if (commit)
7137 got_object_commit_close(commit);
7138 if (err)
7139 close_tree_view(view);
7140 return err;
7143 static const struct got_error *
7144 close_tree_view(struct tog_view *view)
7146 struct tog_tree_view_state *s = &view->state.tree;
7148 free_colors(&s->colors);
7149 free(s->tree_label);
7150 s->tree_label = NULL;
7151 free(s->commit_id);
7152 s->commit_id = NULL;
7153 free(s->head_ref_name);
7154 s->head_ref_name = NULL;
7155 while (!TAILQ_EMPTY(&s->parents)) {
7156 struct tog_parent_tree *parent;
7157 parent = TAILQ_FIRST(&s->parents);
7158 TAILQ_REMOVE(&s->parents, parent, entry);
7159 if (parent->tree != s->root)
7160 got_object_tree_close(parent->tree);
7161 free(parent);
7164 if (s->tree != NULL && s->tree != s->root)
7165 got_object_tree_close(s->tree);
7166 if (s->root)
7167 got_object_tree_close(s->root);
7168 return NULL;
7171 static const struct got_error *
7172 search_start_tree_view(struct tog_view *view)
7174 struct tog_tree_view_state *s = &view->state.tree;
7176 s->matched_entry = NULL;
7177 return NULL;
7180 static int
7181 match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7183 regmatch_t regmatch;
7185 return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7186 0) == 0;
7189 static const struct got_error *
7190 search_next_tree_view(struct tog_view *view)
7192 struct tog_tree_view_state *s = &view->state.tree;
7193 struct got_tree_entry *te = NULL;
7195 if (!view->searching) {
7196 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7197 return NULL;
7200 if (s->matched_entry) {
7201 if (view->searching == TOG_SEARCH_FORWARD) {
7202 if (s->selected_entry)
7203 te = got_tree_entry_get_next(s->tree,
7204 s->selected_entry);
7205 else
7206 te = got_object_tree_get_first_entry(s->tree);
7207 } else {
7208 if (s->selected_entry == NULL)
7209 te = got_object_tree_get_last_entry(s->tree);
7210 else
7211 te = got_tree_entry_get_prev(s->tree,
7212 s->selected_entry);
7214 } else {
7215 if (s->selected_entry)
7216 te = s->selected_entry;
7217 else if (view->searching == TOG_SEARCH_FORWARD)
7218 te = got_object_tree_get_first_entry(s->tree);
7219 else
7220 te = got_object_tree_get_last_entry(s->tree);
7223 while (1) {
7224 if (te == NULL) {
7225 if (s->matched_entry == NULL) {
7226 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7227 return NULL;
7229 if (view->searching == TOG_SEARCH_FORWARD)
7230 te = got_object_tree_get_first_entry(s->tree);
7231 else
7232 te = got_object_tree_get_last_entry(s->tree);
7235 if (match_tree_entry(te, &view->regex)) {
7236 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7237 s->matched_entry = te;
7238 break;
7241 if (view->searching == TOG_SEARCH_FORWARD)
7242 te = got_tree_entry_get_next(s->tree, te);
7243 else
7244 te = got_tree_entry_get_prev(s->tree, te);
7247 if (s->matched_entry) {
7248 s->first_displayed_entry = s->matched_entry;
7249 s->selected = 0;
7252 return NULL;
7255 static const struct got_error *
7256 show_tree_view(struct tog_view *view)
7258 const struct got_error *err = NULL;
7259 struct tog_tree_view_state *s = &view->state.tree;
7260 char *parent_path;
7262 err = tree_entry_path(&parent_path, &s->parents, NULL);
7263 if (err)
7264 return err;
7266 err = draw_tree_entries(view, parent_path);
7267 free(parent_path);
7269 view_border(view);
7270 return err;
7273 static const struct got_error *
7274 tree_goto_line(struct tog_view *view, int nlines)
7276 const struct got_error *err = NULL;
7277 struct tog_tree_view_state *s = &view->state.tree;
7278 struct got_tree_entry **fte, **lte, **ste;
7279 int g, last, first = 1, i = 1;
7280 int root = s->tree == s->root;
7281 int off = root ? 1 : 2;
7283 g = view->gline;
7284 view->gline = 0;
7286 if (g == 0)
7287 g = 1;
7288 else if (g > got_object_tree_get_nentries(s->tree))
7289 g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7291 fte = &s->first_displayed_entry;
7292 lte = &s->last_displayed_entry;
7293 ste = &s->selected_entry;
7295 if (*fte != NULL) {
7296 first = got_tree_entry_get_index(*fte);
7297 first += off; /* account for ".." */
7299 last = got_tree_entry_get_index(*lte);
7300 last += off;
7302 if (g >= first && g <= last && g - first < nlines) {
7303 s->selected = g - first;
7304 return NULL; /* gline is on the current page */
7307 if (*ste != NULL) {
7308 i = got_tree_entry_get_index(*ste);
7309 i += off;
7312 if (i < g) {
7313 err = tree_scroll_down(view, g - i);
7314 if (err)
7315 return err;
7316 if (got_tree_entry_get_index(*lte) >=
7317 got_object_tree_get_nentries(s->tree) - 1 &&
7318 first + s->selected < g &&
7319 s->selected < s->ndisplayed - 1) {
7320 first = got_tree_entry_get_index(*fte);
7321 first += off;
7322 s->selected = g - first;
7324 } else if (i > g)
7325 tree_scroll_up(s, i - g);
7327 if (g < nlines &&
7328 (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7329 s->selected = g - 1;
7331 return NULL;
7334 static const struct got_error *
7335 input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7337 const struct got_error *err = NULL;
7338 struct tog_tree_view_state *s = &view->state.tree;
7339 struct got_tree_entry *te;
7340 int n, nscroll = view->nlines - 3;
7342 if (view->gline)
7343 return tree_goto_line(view, nscroll);
7345 switch (ch) {
7346 case 'i':
7347 s->show_ids = !s->show_ids;
7348 view->count = 0;
7349 break;
7350 case 'L':
7351 view->count = 0;
7352 if (!s->selected_entry)
7353 break;
7354 err = view_request_new(new_view, view, TOG_VIEW_LOG);
7355 break;
7356 case 'R':
7357 view->count = 0;
7358 err = view_request_new(new_view, view, TOG_VIEW_REF);
7359 break;
7360 case 'g':
7361 case '=':
7362 case KEY_HOME:
7363 s->selected = 0;
7364 view->count = 0;
7365 if (s->tree == s->root)
7366 s->first_displayed_entry =
7367 got_object_tree_get_first_entry(s->tree);
7368 else
7369 s->first_displayed_entry = NULL;
7370 break;
7371 case 'G':
7372 case '*':
7373 case KEY_END: {
7374 int eos = view->nlines - 3;
7376 if (view->mode == TOG_VIEW_SPLIT_HRZN)
7377 --eos; /* border */
7378 s->selected = 0;
7379 view->count = 0;
7380 te = got_object_tree_get_last_entry(s->tree);
7381 for (n = 0; n < eos; n++) {
7382 if (te == NULL) {
7383 if (s->tree != s->root) {
7384 s->first_displayed_entry = NULL;
7385 n++;
7387 break;
7389 s->first_displayed_entry = te;
7390 te = got_tree_entry_get_prev(s->tree, te);
7392 if (n > 0)
7393 s->selected = n - 1;
7394 break;
7396 case 'k':
7397 case KEY_UP:
7398 case CTRL('p'):
7399 if (s->selected > 0) {
7400 s->selected--;
7401 break;
7403 tree_scroll_up(s, 1);
7404 if (s->selected_entry == NULL ||
7405 (s->tree == s->root && s->selected_entry ==
7406 got_object_tree_get_first_entry(s->tree)))
7407 view->count = 0;
7408 break;
7409 case CTRL('u'):
7410 case 'u':
7411 nscroll /= 2;
7412 /* FALL THROUGH */
7413 case KEY_PPAGE:
7414 case CTRL('b'):
7415 case 'b':
7416 if (s->tree == s->root) {
7417 if (got_object_tree_get_first_entry(s->tree) ==
7418 s->first_displayed_entry)
7419 s->selected -= MIN(s->selected, nscroll);
7420 } else {
7421 if (s->first_displayed_entry == NULL)
7422 s->selected -= MIN(s->selected, nscroll);
7424 tree_scroll_up(s, MAX(0, nscroll));
7425 if (s->selected_entry == NULL ||
7426 (s->tree == s->root && s->selected_entry ==
7427 got_object_tree_get_first_entry(s->tree)))
7428 view->count = 0;
7429 break;
7430 case 'j':
7431 case KEY_DOWN:
7432 case CTRL('n'):
7433 if (s->selected < s->ndisplayed - 1) {
7434 s->selected++;
7435 break;
7437 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7438 == NULL) {
7439 /* can't scroll any further */
7440 view->count = 0;
7441 break;
7443 tree_scroll_down(view, 1);
7444 break;
7445 case CTRL('d'):
7446 case 'd':
7447 nscroll /= 2;
7448 /* FALL THROUGH */
7449 case KEY_NPAGE:
7450 case CTRL('f'):
7451 case 'f':
7452 case ' ':
7453 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7454 == NULL) {
7455 /* can't scroll any further; move cursor down */
7456 if (s->selected < s->ndisplayed - 1)
7457 s->selected += MIN(nscroll,
7458 s->ndisplayed - s->selected - 1);
7459 else
7460 view->count = 0;
7461 break;
7463 tree_scroll_down(view, nscroll);
7464 break;
7465 case KEY_ENTER:
7466 case '\r':
7467 case KEY_BACKSPACE:
7468 if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7469 struct tog_parent_tree *parent;
7470 /* user selected '..' */
7471 if (s->tree == s->root) {
7472 view->count = 0;
7473 break;
7475 parent = TAILQ_FIRST(&s->parents);
7476 TAILQ_REMOVE(&s->parents, parent,
7477 entry);
7478 got_object_tree_close(s->tree);
7479 s->tree = parent->tree;
7480 s->first_displayed_entry =
7481 parent->first_displayed_entry;
7482 s->selected_entry =
7483 parent->selected_entry;
7484 s->selected = parent->selected;
7485 if (s->selected > view->nlines - 3) {
7486 err = offset_selection_down(view);
7487 if (err)
7488 break;
7490 free(parent);
7491 } else if (S_ISDIR(got_tree_entry_get_mode(
7492 s->selected_entry))) {
7493 struct got_tree_object *subtree;
7494 view->count = 0;
7495 err = got_object_open_as_tree(&subtree, s->repo,
7496 got_tree_entry_get_id(s->selected_entry));
7497 if (err)
7498 break;
7499 err = tree_view_visit_subtree(s, subtree);
7500 if (err) {
7501 got_object_tree_close(subtree);
7502 break;
7504 } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7505 err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7506 break;
7507 case KEY_RESIZE:
7508 if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7509 s->selected = view->nlines - 4;
7510 view->count = 0;
7511 break;
7512 default:
7513 view->count = 0;
7514 break;
7517 return err;
7520 __dead static void
7521 usage_tree(void)
7523 endwin();
7524 fprintf(stderr,
7525 "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7526 getprogname());
7527 exit(1);
7530 static const struct got_error *
7531 cmd_tree(int argc, char *argv[])
7533 const struct got_error *error;
7534 struct got_repository *repo = NULL;
7535 struct got_worktree *worktree = NULL;
7536 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7537 struct got_object_id *commit_id = NULL;
7538 struct got_commit_object *commit = NULL;
7539 const char *commit_id_arg = NULL;
7540 char *label = NULL;
7541 struct got_reference *ref = NULL;
7542 const char *head_ref_name = NULL;
7543 int ch;
7544 struct tog_view *view;
7545 int *pack_fds = NULL;
7547 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7548 switch (ch) {
7549 case 'c':
7550 commit_id_arg = optarg;
7551 break;
7552 case 'r':
7553 repo_path = realpath(optarg, NULL);
7554 if (repo_path == NULL)
7555 return got_error_from_errno2("realpath",
7556 optarg);
7557 break;
7558 default:
7559 usage_tree();
7560 /* NOTREACHED */
7564 argc -= optind;
7565 argv += optind;
7567 if (argc > 1)
7568 usage_tree();
7570 error = got_repo_pack_fds_open(&pack_fds);
7571 if (error != NULL)
7572 goto done;
7574 if (repo_path == NULL) {
7575 cwd = getcwd(NULL, 0);
7576 if (cwd == NULL)
7577 return got_error_from_errno("getcwd");
7578 error = got_worktree_open(&worktree, cwd);
7579 if (error && error->code != GOT_ERR_NOT_WORKTREE)
7580 goto done;
7581 if (worktree)
7582 repo_path =
7583 strdup(got_worktree_get_repo_path(worktree));
7584 else
7585 repo_path = strdup(cwd);
7586 if (repo_path == NULL) {
7587 error = got_error_from_errno("strdup");
7588 goto done;
7592 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7593 if (error != NULL)
7594 goto done;
7596 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7597 repo, worktree);
7598 if (error)
7599 goto done;
7601 init_curses();
7603 error = apply_unveil(got_repo_get_path(repo), NULL);
7604 if (error)
7605 goto done;
7607 error = tog_load_refs(repo, 0);
7608 if (error)
7609 goto done;
7611 if (commit_id_arg == NULL) {
7612 error = got_repo_match_object_id(&commit_id, &label,
7613 worktree ? got_worktree_get_head_ref_name(worktree) :
7614 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7615 if (error)
7616 goto done;
7617 head_ref_name = label;
7618 } else {
7619 error = got_ref_open(&ref, repo, commit_id_arg, 0);
7620 if (error == NULL)
7621 head_ref_name = got_ref_get_name(ref);
7622 else if (error->code != GOT_ERR_NOT_REF)
7623 goto done;
7624 error = got_repo_match_object_id(&commit_id, NULL,
7625 commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7626 if (error)
7627 goto done;
7630 error = got_object_open_as_commit(&commit, repo, commit_id);
7631 if (error)
7632 goto done;
7634 view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7635 if (view == NULL) {
7636 error = got_error_from_errno("view_open");
7637 goto done;
7639 error = open_tree_view(view, commit_id, head_ref_name, repo);
7640 if (error)
7641 goto done;
7642 if (!got_path_is_root_dir(in_repo_path)) {
7643 error = tree_view_walk_path(&view->state.tree, commit,
7644 in_repo_path);
7645 if (error)
7646 goto done;
7649 if (worktree) {
7650 /* Release work tree lock. */
7651 got_worktree_close(worktree);
7652 worktree = NULL;
7654 error = view_loop(view);
7655 done:
7656 free(repo_path);
7657 free(cwd);
7658 free(commit_id);
7659 free(label);
7660 if (ref)
7661 got_ref_close(ref);
7662 if (repo) {
7663 const struct got_error *close_err = got_repo_close(repo);
7664 if (error == NULL)
7665 error = close_err;
7667 if (pack_fds) {
7668 const struct got_error *pack_err =
7669 got_repo_pack_fds_close(pack_fds);
7670 if (error == NULL)
7671 error = pack_err;
7673 tog_free_refs();
7674 return error;
7677 static const struct got_error *
7678 ref_view_load_refs(struct tog_ref_view_state *s)
7680 struct got_reflist_entry *sre;
7681 struct tog_reflist_entry *re;
7683 s->nrefs = 0;
7684 TAILQ_FOREACH(sre, &tog_refs, entry) {
7685 if (strncmp(got_ref_get_name(sre->ref),
7686 "refs/got/", 9) == 0 &&
7687 strncmp(got_ref_get_name(sre->ref),
7688 "refs/got/backup/", 16) != 0)
7689 continue;
7691 re = malloc(sizeof(*re));
7692 if (re == NULL)
7693 return got_error_from_errno("malloc");
7695 re->ref = got_ref_dup(sre->ref);
7696 if (re->ref == NULL)
7697 return got_error_from_errno("got_ref_dup");
7698 re->idx = s->nrefs++;
7699 TAILQ_INSERT_TAIL(&s->refs, re, entry);
7702 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7703 return NULL;
7706 static void
7707 ref_view_free_refs(struct tog_ref_view_state *s)
7709 struct tog_reflist_entry *re;
7711 while (!TAILQ_EMPTY(&s->refs)) {
7712 re = TAILQ_FIRST(&s->refs);
7713 TAILQ_REMOVE(&s->refs, re, entry);
7714 got_ref_close(re->ref);
7715 free(re);
7719 static const struct got_error *
7720 open_ref_view(struct tog_view *view, struct got_repository *repo)
7722 const struct got_error *err = NULL;
7723 struct tog_ref_view_state *s = &view->state.ref;
7725 s->selected_entry = 0;
7726 s->repo = repo;
7728 TAILQ_INIT(&s->refs);
7729 STAILQ_INIT(&s->colors);
7731 err = ref_view_load_refs(s);
7732 if (err)
7733 return err;
7735 if (has_colors() && getenv("TOG_COLORS") != NULL) {
7736 err = add_color(&s->colors, "^refs/heads/",
7737 TOG_COLOR_REFS_HEADS,
7738 get_color_value("TOG_COLOR_REFS_HEADS"));
7739 if (err)
7740 goto done;
7742 err = add_color(&s->colors, "^refs/tags/",
7743 TOG_COLOR_REFS_TAGS,
7744 get_color_value("TOG_COLOR_REFS_TAGS"));
7745 if (err)
7746 goto done;
7748 err = add_color(&s->colors, "^refs/remotes/",
7749 TOG_COLOR_REFS_REMOTES,
7750 get_color_value("TOG_COLOR_REFS_REMOTES"));
7751 if (err)
7752 goto done;
7754 err = add_color(&s->colors, "^refs/got/backup/",
7755 TOG_COLOR_REFS_BACKUP,
7756 get_color_value("TOG_COLOR_REFS_BACKUP"));
7757 if (err)
7758 goto done;
7761 view->show = show_ref_view;
7762 view->input = input_ref_view;
7763 view->close = close_ref_view;
7764 view->search_start = search_start_ref_view;
7765 view->search_next = search_next_ref_view;
7766 done:
7767 if (err)
7768 free_colors(&s->colors);
7769 return err;
7772 static const struct got_error *
7773 close_ref_view(struct tog_view *view)
7775 struct tog_ref_view_state *s = &view->state.ref;
7777 ref_view_free_refs(s);
7778 free_colors(&s->colors);
7780 return NULL;
7783 static const struct got_error *
7784 resolve_reflist_entry(struct got_object_id **commit_id,
7785 struct tog_reflist_entry *re, struct got_repository *repo)
7787 const struct got_error *err = NULL;
7788 struct got_object_id *obj_id;
7789 struct got_tag_object *tag = NULL;
7790 int obj_type;
7792 *commit_id = NULL;
7794 err = got_ref_resolve(&obj_id, repo, re->ref);
7795 if (err)
7796 return err;
7798 err = got_object_get_type(&obj_type, repo, obj_id);
7799 if (err)
7800 goto done;
7802 switch (obj_type) {
7803 case GOT_OBJ_TYPE_COMMIT:
7804 *commit_id = obj_id;
7805 break;
7806 case GOT_OBJ_TYPE_TAG:
7807 err = got_object_open_as_tag(&tag, repo, obj_id);
7808 if (err)
7809 goto done;
7810 free(obj_id);
7811 err = got_object_get_type(&obj_type, repo,
7812 got_object_tag_get_object_id(tag));
7813 if (err)
7814 goto done;
7815 if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7816 err = got_error(GOT_ERR_OBJ_TYPE);
7817 goto done;
7819 *commit_id = got_object_id_dup(
7820 got_object_tag_get_object_id(tag));
7821 if (*commit_id == NULL) {
7822 err = got_error_from_errno("got_object_id_dup");
7823 goto done;
7825 break;
7826 default:
7827 err = got_error(GOT_ERR_OBJ_TYPE);
7828 break;
7831 done:
7832 if (tag)
7833 got_object_tag_close(tag);
7834 if (err) {
7835 free(*commit_id);
7836 *commit_id = NULL;
7838 return err;
7841 static const struct got_error *
7842 log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7843 struct tog_reflist_entry *re, struct got_repository *repo)
7845 struct tog_view *log_view;
7846 const struct got_error *err = NULL;
7847 struct got_object_id *commit_id = NULL;
7849 *new_view = NULL;
7851 err = resolve_reflist_entry(&commit_id, re, repo);
7852 if (err) {
7853 if (err->code != GOT_ERR_OBJ_TYPE)
7854 return err;
7855 else
7856 return NULL;
7859 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7860 if (log_view == NULL) {
7861 err = got_error_from_errno("view_open");
7862 goto done;
7865 err = open_log_view(log_view, commit_id, repo,
7866 got_ref_get_name(re->ref), "", 0);
7867 done:
7868 if (err)
7869 view_close(log_view);
7870 else
7871 *new_view = log_view;
7872 free(commit_id);
7873 return err;
7876 static void
7877 ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7879 struct tog_reflist_entry *re;
7880 int i = 0;
7882 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7883 return;
7885 re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7886 while (i++ < maxscroll) {
7887 if (re == NULL)
7888 break;
7889 s->first_displayed_entry = re;
7890 re = TAILQ_PREV(re, tog_reflist_head, entry);
7894 static const struct got_error *
7895 ref_scroll_down(struct tog_view *view, int maxscroll)
7897 struct tog_ref_view_state *s = &view->state.ref;
7898 struct tog_reflist_entry *next, *last;
7899 int n = 0;
7901 if (s->first_displayed_entry)
7902 next = TAILQ_NEXT(s->first_displayed_entry, entry);
7903 else
7904 next = TAILQ_FIRST(&s->refs);
7906 last = s->last_displayed_entry;
7907 while (next && n++ < maxscroll) {
7908 if (last) {
7909 s->last_displayed_entry = last;
7910 last = TAILQ_NEXT(last, entry);
7912 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7913 s->first_displayed_entry = next;
7914 next = TAILQ_NEXT(next, entry);
7918 return NULL;
7921 static const struct got_error *
7922 search_start_ref_view(struct tog_view *view)
7924 struct tog_ref_view_state *s = &view->state.ref;
7926 s->matched_entry = NULL;
7927 return NULL;
7930 static int
7931 match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7933 regmatch_t regmatch;
7935 return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7936 0) == 0;
7939 static const struct got_error *
7940 search_next_ref_view(struct tog_view *view)
7942 struct tog_ref_view_state *s = &view->state.ref;
7943 struct tog_reflist_entry *re = NULL;
7945 if (!view->searching) {
7946 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7947 return NULL;
7950 if (s->matched_entry) {
7951 if (view->searching == TOG_SEARCH_FORWARD) {
7952 if (s->selected_entry)
7953 re = TAILQ_NEXT(s->selected_entry, entry);
7954 else
7955 re = TAILQ_PREV(s->selected_entry,
7956 tog_reflist_head, entry);
7957 } else {
7958 if (s->selected_entry == NULL)
7959 re = TAILQ_LAST(&s->refs, tog_reflist_head);
7960 else
7961 re = TAILQ_PREV(s->selected_entry,
7962 tog_reflist_head, entry);
7964 } else {
7965 if (s->selected_entry)
7966 re = s->selected_entry;
7967 else if (view->searching == TOG_SEARCH_FORWARD)
7968 re = TAILQ_FIRST(&s->refs);
7969 else
7970 re = TAILQ_LAST(&s->refs, tog_reflist_head);
7973 while (1) {
7974 if (re == NULL) {
7975 if (s->matched_entry == NULL) {
7976 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7977 return NULL;
7979 if (view->searching == TOG_SEARCH_FORWARD)
7980 re = TAILQ_FIRST(&s->refs);
7981 else
7982 re = TAILQ_LAST(&s->refs, tog_reflist_head);
7985 if (match_reflist_entry(re, &view->regex)) {
7986 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7987 s->matched_entry = re;
7988 break;
7991 if (view->searching == TOG_SEARCH_FORWARD)
7992 re = TAILQ_NEXT(re, entry);
7993 else
7994 re = TAILQ_PREV(re, tog_reflist_head, entry);
7997 if (s->matched_entry) {
7998 s->first_displayed_entry = s->matched_entry;
7999 s->selected = 0;
8002 return NULL;
8005 static const struct got_error *
8006 show_ref_view(struct tog_view *view)
8008 const struct got_error *err = NULL;
8009 struct tog_ref_view_state *s = &view->state.ref;
8010 struct tog_reflist_entry *re;
8011 char *line = NULL;
8012 wchar_t *wline;
8013 struct tog_color *tc;
8014 int width, n;
8015 int limit = view->nlines;
8017 werase(view->window);
8019 s->ndisplayed = 0;
8020 if (view_is_hsplit_top(view))
8021 --limit; /* border */
8023 if (limit == 0)
8024 return NULL;
8026 re = s->first_displayed_entry;
8028 if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
8029 s->nrefs) == -1)
8030 return got_error_from_errno("asprintf");
8032 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
8033 if (err) {
8034 free(line);
8035 return err;
8037 if (view_needs_focus_indication(view))
8038 wstandout(view->window);
8039 waddwstr(view->window, wline);
8040 while (width++ < view->ncols)
8041 waddch(view->window, ' ');
8042 if (view_needs_focus_indication(view))
8043 wstandend(view->window);
8044 free(wline);
8045 wline = NULL;
8046 free(line);
8047 line = NULL;
8048 if (--limit <= 0)
8049 return NULL;
8051 n = 0;
8052 while (re && limit > 0) {
8053 char *line = NULL;
8054 char ymd[13]; /* YYYY-MM-DD + " " + NUL */
8056 if (s->show_date) {
8057 struct got_commit_object *ci;
8058 struct got_tag_object *tag;
8059 struct got_object_id *id;
8060 struct tm tm;
8061 time_t t;
8063 err = got_ref_resolve(&id, s->repo, re->ref);
8064 if (err)
8065 return err;
8066 err = got_object_open_as_tag(&tag, s->repo, id);
8067 if (err) {
8068 if (err->code != GOT_ERR_OBJ_TYPE) {
8069 free(id);
8070 return err;
8072 err = got_object_open_as_commit(&ci, s->repo,
8073 id);
8074 if (err) {
8075 free(id);
8076 return err;
8078 t = got_object_commit_get_committer_time(ci);
8079 got_object_commit_close(ci);
8080 } else {
8081 t = got_object_tag_get_tagger_time(tag);
8082 got_object_tag_close(tag);
8084 free(id);
8085 if (gmtime_r(&t, &tm) == NULL)
8086 return got_error_from_errno("gmtime_r");
8087 if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8088 return got_error(GOT_ERR_NO_SPACE);
8090 if (got_ref_is_symbolic(re->ref)) {
8091 if (asprintf(&line, "%s%s -> %s", s->show_date ?
8092 ymd : "", got_ref_get_name(re->ref),
8093 got_ref_get_symref_target(re->ref)) == -1)
8094 return got_error_from_errno("asprintf");
8095 } else if (s->show_ids) {
8096 struct got_object_id *id;
8097 char *id_str;
8098 err = got_ref_resolve(&id, s->repo, re->ref);
8099 if (err)
8100 return err;
8101 err = got_object_id_str(&id_str, id);
8102 if (err) {
8103 free(id);
8104 return err;
8106 if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8107 got_ref_get_name(re->ref), id_str) == -1) {
8108 err = got_error_from_errno("asprintf");
8109 free(id);
8110 free(id_str);
8111 return err;
8113 free(id);
8114 free(id_str);
8115 } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8116 got_ref_get_name(re->ref)) == -1)
8117 return got_error_from_errno("asprintf");
8119 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
8120 0, 0);
8121 if (err) {
8122 free(line);
8123 return err;
8125 if (n == s->selected) {
8126 if (view->focussed)
8127 wstandout(view->window);
8128 s->selected_entry = re;
8130 tc = match_color(&s->colors, got_ref_get_name(re->ref));
8131 if (tc)
8132 wattr_on(view->window,
8133 COLOR_PAIR(tc->colorpair), NULL);
8134 waddwstr(view->window, wline);
8135 if (tc)
8136 wattr_off(view->window,
8137 COLOR_PAIR(tc->colorpair), NULL);
8138 if (width < view->ncols - 1)
8139 waddch(view->window, '\n');
8140 if (n == s->selected && view->focussed)
8141 wstandend(view->window);
8142 free(line);
8143 free(wline);
8144 wline = NULL;
8145 n++;
8146 s->ndisplayed++;
8147 s->last_displayed_entry = re;
8149 limit--;
8150 re = TAILQ_NEXT(re, entry);
8153 view_border(view);
8154 return err;
8157 static const struct got_error *
8158 browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8159 struct tog_reflist_entry *re, struct got_repository *repo)
8161 const struct got_error *err = NULL;
8162 struct got_object_id *commit_id = NULL;
8163 struct tog_view *tree_view;
8165 *new_view = NULL;
8167 err = resolve_reflist_entry(&commit_id, re, repo);
8168 if (err) {
8169 if (err->code != GOT_ERR_OBJ_TYPE)
8170 return err;
8171 else
8172 return NULL;
8176 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8177 if (tree_view == NULL) {
8178 err = got_error_from_errno("view_open");
8179 goto done;
8182 err = open_tree_view(tree_view, commit_id,
8183 got_ref_get_name(re->ref), repo);
8184 if (err)
8185 goto done;
8187 *new_view = tree_view;
8188 done:
8189 free(commit_id);
8190 return err;
8193 static const struct got_error *
8194 ref_goto_line(struct tog_view *view, int nlines)
8196 const struct got_error *err = NULL;
8197 struct tog_ref_view_state *s = &view->state.ref;
8198 int g, idx = s->selected_entry->idx;
8200 g = view->gline;
8201 view->gline = 0;
8203 if (g == 0)
8204 g = 1;
8205 else if (g > s->nrefs)
8206 g = s->nrefs;
8208 if (g >= s->first_displayed_entry->idx + 1 &&
8209 g <= s->last_displayed_entry->idx + 1 &&
8210 g - s->first_displayed_entry->idx - 1 < nlines) {
8211 s->selected = g - s->first_displayed_entry->idx - 1;
8212 return NULL;
8215 if (idx + 1 < g) {
8216 err = ref_scroll_down(view, g - idx - 1);
8217 if (err)
8218 return err;
8219 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8220 s->first_displayed_entry->idx + s->selected < g &&
8221 s->selected < s->ndisplayed - 1)
8222 s->selected = g - s->first_displayed_entry->idx - 1;
8223 } else if (idx + 1 > g)
8224 ref_scroll_up(s, idx - g + 1);
8226 if (g < nlines && s->first_displayed_entry->idx == 0)
8227 s->selected = g - 1;
8229 return NULL;
8233 static const struct got_error *
8234 input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8236 const struct got_error *err = NULL;
8237 struct tog_ref_view_state *s = &view->state.ref;
8238 struct tog_reflist_entry *re;
8239 int n, nscroll = view->nlines - 1;
8241 if (view->gline)
8242 return ref_goto_line(view, nscroll);
8244 switch (ch) {
8245 case 'i':
8246 s->show_ids = !s->show_ids;
8247 view->count = 0;
8248 break;
8249 case 'm':
8250 s->show_date = !s->show_date;
8251 view->count = 0;
8252 break;
8253 case 'o':
8254 s->sort_by_date = !s->sort_by_date;
8255 view->count = 0;
8256 err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8257 got_ref_cmp_by_commit_timestamp_descending :
8258 tog_ref_cmp_by_name, s->repo);
8259 if (err)
8260 break;
8261 got_reflist_object_id_map_free(tog_refs_idmap);
8262 err = got_reflist_object_id_map_create(&tog_refs_idmap,
8263 &tog_refs, s->repo);
8264 if (err)
8265 break;
8266 ref_view_free_refs(s);
8267 err = ref_view_load_refs(s);
8268 break;
8269 case KEY_ENTER:
8270 case '\r':
8271 view->count = 0;
8272 if (!s->selected_entry)
8273 break;
8274 err = view_request_new(new_view, view, TOG_VIEW_LOG);
8275 break;
8276 case 'T':
8277 view->count = 0;
8278 if (!s->selected_entry)
8279 break;
8280 err = view_request_new(new_view, view, TOG_VIEW_TREE);
8281 break;
8282 case 'g':
8283 case '=':
8284 case KEY_HOME:
8285 s->selected = 0;
8286 view->count = 0;
8287 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8288 break;
8289 case 'G':
8290 case '*':
8291 case KEY_END: {
8292 int eos = view->nlines - 1;
8294 if (view->mode == TOG_VIEW_SPLIT_HRZN)
8295 --eos; /* border */
8296 s->selected = 0;
8297 view->count = 0;
8298 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8299 for (n = 0; n < eos; n++) {
8300 if (re == NULL)
8301 break;
8302 s->first_displayed_entry = re;
8303 re = TAILQ_PREV(re, tog_reflist_head, entry);
8305 if (n > 0)
8306 s->selected = n - 1;
8307 break;
8309 case 'k':
8310 case KEY_UP:
8311 case CTRL('p'):
8312 if (s->selected > 0) {
8313 s->selected--;
8314 break;
8316 ref_scroll_up(s, 1);
8317 if (s->selected_entry == TAILQ_FIRST(&s->refs))
8318 view->count = 0;
8319 break;
8320 case CTRL('u'):
8321 case 'u':
8322 nscroll /= 2;
8323 /* FALL THROUGH */
8324 case KEY_PPAGE:
8325 case CTRL('b'):
8326 case 'b':
8327 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8328 s->selected -= MIN(nscroll, s->selected);
8329 ref_scroll_up(s, MAX(0, nscroll));
8330 if (s->selected_entry == TAILQ_FIRST(&s->refs))
8331 view->count = 0;
8332 break;
8333 case 'j':
8334 case KEY_DOWN:
8335 case CTRL('n'):
8336 if (s->selected < s->ndisplayed - 1) {
8337 s->selected++;
8338 break;
8340 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8341 /* can't scroll any further */
8342 view->count = 0;
8343 break;
8345 ref_scroll_down(view, 1);
8346 break;
8347 case CTRL('d'):
8348 case 'd':
8349 nscroll /= 2;
8350 /* FALL THROUGH */
8351 case KEY_NPAGE:
8352 case CTRL('f'):
8353 case 'f':
8354 case ' ':
8355 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8356 /* can't scroll any further; move cursor down */
8357 if (s->selected < s->ndisplayed - 1)
8358 s->selected += MIN(nscroll,
8359 s->ndisplayed - s->selected - 1);
8360 if (view->count > 1 && s->selected < s->ndisplayed - 1)
8361 s->selected += s->ndisplayed - s->selected - 1;
8362 view->count = 0;
8363 break;
8365 ref_scroll_down(view, nscroll);
8366 break;
8367 case CTRL('l'):
8368 view->count = 0;
8369 tog_free_refs();
8370 err = tog_load_refs(s->repo, s->sort_by_date);
8371 if (err)
8372 break;
8373 ref_view_free_refs(s);
8374 err = ref_view_load_refs(s);
8375 break;
8376 case KEY_RESIZE:
8377 if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8378 s->selected = view->nlines - 2;
8379 break;
8380 default:
8381 view->count = 0;
8382 break;
8385 return err;
8388 __dead static void
8389 usage_ref(void)
8391 endwin();
8392 fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8393 getprogname());
8394 exit(1);
8397 static const struct got_error *
8398 cmd_ref(int argc, char *argv[])
8400 const struct got_error *error;
8401 struct got_repository *repo = NULL;
8402 struct got_worktree *worktree = NULL;
8403 char *cwd = NULL, *repo_path = NULL;
8404 int ch;
8405 struct tog_view *view;
8406 int *pack_fds = NULL;
8408 while ((ch = getopt(argc, argv, "r:")) != -1) {
8409 switch (ch) {
8410 case 'r':
8411 repo_path = realpath(optarg, NULL);
8412 if (repo_path == NULL)
8413 return got_error_from_errno2("realpath",
8414 optarg);
8415 break;
8416 default:
8417 usage_ref();
8418 /* NOTREACHED */
8422 argc -= optind;
8423 argv += optind;
8425 if (argc > 1)
8426 usage_ref();
8428 error = got_repo_pack_fds_open(&pack_fds);
8429 if (error != NULL)
8430 goto done;
8432 if (repo_path == NULL) {
8433 cwd = getcwd(NULL, 0);
8434 if (cwd == NULL)
8435 return got_error_from_errno("getcwd");
8436 error = got_worktree_open(&worktree, cwd);
8437 if (error && error->code != GOT_ERR_NOT_WORKTREE)
8438 goto done;
8439 if (worktree)
8440 repo_path =
8441 strdup(got_worktree_get_repo_path(worktree));
8442 else
8443 repo_path = strdup(cwd);
8444 if (repo_path == NULL) {
8445 error = got_error_from_errno("strdup");
8446 goto done;
8450 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8451 if (error != NULL)
8452 goto done;
8454 init_curses();
8456 error = apply_unveil(got_repo_get_path(repo), NULL);
8457 if (error)
8458 goto done;
8460 error = tog_load_refs(repo, 0);
8461 if (error)
8462 goto done;
8464 view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8465 if (view == NULL) {
8466 error = got_error_from_errno("view_open");
8467 goto done;
8470 error = open_ref_view(view, repo);
8471 if (error)
8472 goto done;
8474 if (worktree) {
8475 /* Release work tree lock. */
8476 got_worktree_close(worktree);
8477 worktree = NULL;
8479 error = view_loop(view);
8480 done:
8481 free(repo_path);
8482 free(cwd);
8483 if (repo) {
8484 const struct got_error *close_err = got_repo_close(repo);
8485 if (close_err)
8486 error = close_err;
8488 if (pack_fds) {
8489 const struct got_error *pack_err =
8490 got_repo_pack_fds_close(pack_fds);
8491 if (error == NULL)
8492 error = pack_err;
8494 tog_free_refs();
8495 return error;
8498 static const struct got_error*
8499 win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8500 const char *str)
8502 size_t len;
8504 if (win == NULL)
8505 win = stdscr;
8507 len = strlen(str);
8508 x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8510 if (focus)
8511 wstandout(win);
8512 if (mvwprintw(win, y, x, "%s", str) == ERR)
8513 return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
8514 if (focus)
8515 wstandend(win);
8517 return NULL;
8520 static const struct got_error *
8521 add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
8523 off_t *p;
8525 p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
8526 if (p == NULL) {
8527 free(*line_offsets);
8528 *line_offsets = NULL;
8529 return got_error_from_errno("reallocarray");
8532 *line_offsets = p;
8533 (*line_offsets)[*nlines] = off;
8534 ++(*nlines);
8535 return NULL;
8538 static const struct got_error *
8539 max_key_str(int *ret, const struct tog_key_map *km, size_t n)
8541 *ret = 0;
8543 for (;n > 0; --n, ++km) {
8544 char *t0, *t, *k;
8545 size_t len = 1;
8547 if (km->keys == NULL)
8548 continue;
8550 t = t0 = strdup(km->keys);
8551 if (t0 == NULL)
8552 return got_error_from_errno("strdup");
8554 len += strlen(t);
8555 while ((k = strsep(&t, " ")) != NULL)
8556 len += strlen(k) > 1 ? 2 : 0;
8557 free(t0);
8558 *ret = MAX(*ret, len);
8561 return NULL;
8565 * Write keymap section headers, keys, and key info in km to f.
8566 * Save line offset to *off. If terminal has UTF8 encoding enabled,
8567 * wrap control and symbolic keys in guillemets, else use <>.
8569 static const struct got_error *
8570 format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
8572 int n, len = width;
8574 if (km->keys) {
8575 static const char *u8_glyph[] = {
8576 "\xe2\x80\xb9", /* U+2039 (utf8 <) */
8577 "\xe2\x80\xba" /* U+203A (utf8 >) */
8579 char *t0, *t, *k;
8580 int cs, s, first = 1;
8582 cs = got_locale_is_utf8();
8584 t = t0 = strdup(km->keys);
8585 if (t0 == NULL)
8586 return got_error_from_errno("strdup");
8588 len = strlen(km->keys);
8589 while ((k = strsep(&t, " ")) != NULL) {
8590 s = strlen(k) > 1; /* control or symbolic key */
8591 n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
8592 cs && s ? u8_glyph[0] : s ? "<" : "", k,
8593 cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
8594 if (n < 0) {
8595 free(t0);
8596 return got_error_from_errno("fprintf");
8598 first = 0;
8599 len += s ? 2 : 0;
8600 *off += n;
8602 free(t0);
8604 n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
8605 if (n < 0)
8606 return got_error_from_errno("fprintf");
8607 *off += n;
8609 return NULL;
8612 static const struct got_error *
8613 format_help(struct tog_help_view_state *s)
8615 const struct got_error *err = NULL;
8616 off_t off = 0;
8617 int i, max, n, show = s->all;
8618 static const struct tog_key_map km[] = {
8619 #define KEYMAP_(info, type) { NULL, (info), type }
8620 #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
8621 GENERATE_HELP
8622 #undef KEYMAP_
8623 #undef KEY_
8626 err = add_line_offset(&s->line_offsets, &s->nlines, 0);
8627 if (err)
8628 return err;
8630 n = nitems(km);
8631 err = max_key_str(&max, km, n);
8632 if (err)
8633 return err;
8635 for (i = 0; i < n; ++i) {
8636 if (km[i].keys == NULL) {
8637 show = s->all;
8638 if (km[i].type == TOG_KEYMAP_GLOBAL ||
8639 km[i].type == s->type || s->all)
8640 show = 1;
8642 if (show) {
8643 err = format_help_line(&off, s->f, &km[i], max);
8644 if (err)
8645 return err;
8646 err = add_line_offset(&s->line_offsets, &s->nlines, off);
8647 if (err)
8648 return err;
8651 fputc('\n', s->f);
8652 ++off;
8653 err = add_line_offset(&s->line_offsets, &s->nlines, off);
8654 return err;
8657 static const struct got_error *
8658 create_help(struct tog_help_view_state *s)
8660 FILE *f;
8661 const struct got_error *err;
8663 free(s->line_offsets);
8664 s->line_offsets = NULL;
8665 s->nlines = 0;
8667 f = got_opentemp();
8668 if (f == NULL)
8669 return got_error_from_errno("got_opentemp");
8670 s->f = f;
8672 err = format_help(s);
8673 if (err)
8674 return err;
8676 if (s->f && fflush(s->f) != 0)
8677 return got_error_from_errno("fflush");
8679 return NULL;
8682 static const struct got_error *
8683 search_start_help_view(struct tog_view *view)
8685 view->state.help.matched_line = 0;
8686 return NULL;
8689 static void
8690 search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
8691 size_t *nlines, int **first, int **last, int **match, int **selected)
8693 struct tog_help_view_state *s = &view->state.help;
8695 *f = s->f;
8696 *nlines = s->nlines;
8697 *line_offsets = s->line_offsets;
8698 *match = &s->matched_line;
8699 *first = &s->first_displayed_line;
8700 *last = &s->last_displayed_line;
8701 *selected = &s->selected_line;
8704 static const struct got_error *
8705 show_help_view(struct tog_view *view)
8707 struct tog_help_view_state *s = &view->state.help;
8708 const struct got_error *err;
8709 regmatch_t *regmatch = &view->regmatch;
8710 wchar_t *wline;
8711 char *line;
8712 ssize_t linelen;
8713 size_t linesz = 0;
8714 int width, nprinted = 0, rc = 0;
8715 int eos = view->nlines;
8717 if (view_is_hsplit_top(view))
8718 --eos; /* account for border */
8720 s->lineno = 0;
8721 rewind(s->f);
8722 werase(view->window);
8724 if (view->gline > s->nlines - 1)
8725 view->gline = s->nlines - 1;
8727 err = win_draw_center(view->window, 0, 0, view->ncols,
8728 view_needs_focus_indication(view),
8729 "tog help (press q to return to tog)");
8730 if (err)
8731 return err;
8732 if (eos <= 1)
8733 return NULL;
8734 waddstr(view->window, "\n\n");
8735 eos -= 2;
8737 s->eof = 0;
8738 view->maxx = 0;
8739 line = NULL;
8740 while (eos > 0 && nprinted < eos) {
8741 attr_t attr = 0;
8743 linelen = getline(&line, &linesz, s->f);
8744 if (linelen == -1) {
8745 if (!feof(s->f)) {
8746 free(line);
8747 return got_ferror(s->f, GOT_ERR_IO);
8749 s->eof = 1;
8750 break;
8752 if (++s->lineno < s->first_displayed_line)
8753 continue;
8754 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
8755 continue;
8756 if (s->lineno == view->hiline)
8757 attr = A_STANDOUT;
8759 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
8760 view->x ? 1 : 0);
8761 if (err) {
8762 free(line);
8763 return err;
8765 view->maxx = MAX(view->maxx, width);
8766 free(wline);
8767 wline = NULL;
8769 if (attr)
8770 wattron(view->window, attr);
8771 if (s->first_displayed_line + nprinted == s->matched_line &&
8772 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
8773 err = add_matched_line(&width, line, view->ncols - 1, 0,
8774 view->window, view->x, regmatch);
8775 if (err) {
8776 free(line);
8777 return err;
8779 } else {
8780 int skip;
8782 err = format_line(&wline, &width, &skip, line,
8783 view->x, view->ncols - 1, 0, view->x ? 1 : 0);
8784 if (err) {
8785 free(line);
8786 return err;
8788 rc = waddwstr(view->window, &wline[skip]);
8789 free(wline);
8790 wline = NULL;
8791 if (rc == ERR)
8792 return got_error_msg(GOT_ERR_IO, "waddwstr");
8794 if (s->lineno == view->hiline) {
8795 while (width++ < view->ncols)
8796 waddch(view->window, ' ');
8797 } else {
8798 if (width <= view->ncols)
8799 waddch(view->window, '\n');
8801 if (attr)
8802 wattroff(view->window, attr);
8803 if (++nprinted == 1)
8804 s->first_displayed_line = s->lineno;
8806 free(line);
8807 if (nprinted > 0)
8808 s->last_displayed_line = s->first_displayed_line + nprinted - 1;
8809 else
8810 s->last_displayed_line = s->first_displayed_line;
8812 view_border(view);
8814 if (s->eof) {
8815 rc = waddnstr(view->window,
8816 "See the tog(1) manual page for full documentation",
8817 view->ncols - 1);
8818 if (rc == ERR)
8819 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8820 } else {
8821 wmove(view->window, view->nlines - 1, 0);
8822 wclrtoeol(view->window);
8823 wstandout(view->window);
8824 rc = waddnstr(view->window, "scroll down for more...",
8825 view->ncols - 1);
8826 if (rc == ERR)
8827 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8828 if (getcurx(view->window) < view->ncols - 6) {
8829 rc = wprintw(view->window, "[%.0f%%]",
8830 100.00 * s->last_displayed_line / s->nlines);
8831 if (rc == ERR)
8832 return got_error_msg(GOT_ERR_IO, "wprintw");
8834 wstandend(view->window);
8837 return NULL;
8840 static const struct got_error *
8841 input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
8843 struct tog_help_view_state *s = &view->state.help;
8844 const struct got_error *err = NULL;
8845 char *line = NULL;
8846 ssize_t linelen;
8847 size_t linesz = 0;
8848 int eos, nscroll;
8850 eos = nscroll = view->nlines;
8851 if (view_is_hsplit_top(view))
8852 --eos; /* border */
8854 s->lineno = s->first_displayed_line - 1 + s->selected_line;
8856 switch (ch) {
8857 case '0':
8858 view->x = 0;
8859 break;
8860 case '$':
8861 view->x = MAX(view->maxx - view->ncols / 3, 0);
8862 view->count = 0;
8863 break;
8864 case KEY_RIGHT:
8865 case 'l':
8866 if (view->x + view->ncols / 3 < view->maxx)
8867 view->x += 2;
8868 else
8869 view->count = 0;
8870 break;
8871 case KEY_LEFT:
8872 case 'h':
8873 view->x -= MIN(view->x, 2);
8874 if (view->x <= 0)
8875 view->count = 0;
8876 break;
8877 case 'g':
8878 case KEY_HOME:
8879 s->first_displayed_line = 1;
8880 view->count = 0;
8881 break;
8882 case 'G':
8883 case KEY_END:
8884 view->count = 0;
8885 if (s->eof)
8886 break;
8887 s->first_displayed_line = (s->nlines - eos) + 3;
8888 s->eof = 1;
8889 break;
8890 case 'k':
8891 case KEY_UP:
8892 if (s->first_displayed_line > 1)
8893 --s->first_displayed_line;
8894 else
8895 view->count = 0;
8896 break;
8897 case CTRL('u'):
8898 case 'u':
8899 nscroll /= 2;
8900 /* FALL THROUGH */
8901 case KEY_PPAGE:
8902 case CTRL('b'):
8903 case 'b':
8904 if (s->first_displayed_line == 1) {
8905 view->count = 0;
8906 break;
8908 while (--nscroll > 0 && s->first_displayed_line > 1)
8909 s->first_displayed_line--;
8910 break;
8911 case 'j':
8912 case KEY_DOWN:
8913 case CTRL('n'):
8914 if (!s->eof)
8915 ++s->first_displayed_line;
8916 else
8917 view->count = 0;
8918 break;
8919 case CTRL('d'):
8920 case 'd':
8921 nscroll /= 2;
8922 /* FALL THROUGH */
8923 case KEY_NPAGE:
8924 case CTRL('f'):
8925 case 'f':
8926 case ' ':
8927 if (s->eof) {
8928 view->count = 0;
8929 break;
8931 while (!s->eof && --nscroll > 0) {
8932 linelen = getline(&line, &linesz, s->f);
8933 s->first_displayed_line++;
8934 if (linelen == -1) {
8935 if (feof(s->f))
8936 s->eof = 1;
8937 else
8938 err = got_ferror(s->f, GOT_ERR_IO);
8939 break;
8942 free(line);
8943 break;
8944 default:
8945 view->count = 0;
8946 break;
8949 return err;
8952 static const struct got_error *
8953 close_help_view(struct tog_view *view)
8955 struct tog_help_view_state *s = &view->state.help;
8957 free(s->line_offsets);
8958 s->line_offsets = NULL;
8959 if (fclose(s->f) == EOF)
8960 return got_error_from_errno("fclose");
8962 return NULL;
8965 static const struct got_error *
8966 reset_help_view(struct tog_view *view)
8968 struct tog_help_view_state *s = &view->state.help;
8971 if (s->f && fclose(s->f) == EOF)
8972 return got_error_from_errno("fclose");
8974 wclear(view->window);
8975 view->count = 0;
8976 view->x = 0;
8977 s->all = !s->all;
8978 s->first_displayed_line = 1;
8979 s->last_displayed_line = view->nlines;
8980 s->matched_line = 0;
8982 return create_help(s);
8985 static const struct got_error *
8986 open_help_view(struct tog_view *view, struct tog_view *parent)
8988 const struct got_error *err = NULL;
8989 struct tog_help_view_state *s = &view->state.help;
8991 s->type = (enum tog_keymap_type)parent->type;
8992 s->first_displayed_line = 1;
8993 s->last_displayed_line = view->nlines;
8994 s->selected_line = 1;
8996 view->show = show_help_view;
8997 view->input = input_help_view;
8998 view->reset = reset_help_view;
8999 view->close = close_help_view;
9000 view->search_start = search_start_help_view;
9001 view->search_setup = search_setup_help_view;
9002 view->search_next = search_next_view_match;
9004 err = create_help(s);
9005 return err;
9008 static const struct got_error *
9009 view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
9010 enum tog_view_type request, int y, int x)
9012 const struct got_error *err = NULL;
9014 *new_view = NULL;
9016 switch (request) {
9017 case TOG_VIEW_DIFF:
9018 if (view->type == TOG_VIEW_LOG) {
9019 struct tog_log_view_state *s = &view->state.log;
9021 err = open_diff_view_for_commit(new_view, y, x,
9022 s->selected_entry->commit, s->selected_entry->id,
9023 view, s->repo);
9024 } else
9025 return got_error_msg(GOT_ERR_NOT_IMPL,
9026 "parent/child view pair not supported");
9027 break;
9028 case TOG_VIEW_BLAME:
9029 if (view->type == TOG_VIEW_TREE) {
9030 struct tog_tree_view_state *s = &view->state.tree;
9032 err = blame_tree_entry(new_view, y, x,
9033 s->selected_entry, &s->parents, s->commit_id,
9034 s->repo);
9035 } else
9036 return got_error_msg(GOT_ERR_NOT_IMPL,
9037 "parent/child view pair not supported");
9038 break;
9039 case TOG_VIEW_LOG:
9040 if (view->type == TOG_VIEW_BLAME)
9041 err = log_annotated_line(new_view, y, x,
9042 view->state.blame.repo, view->state.blame.id_to_log);
9043 else if (view->type == TOG_VIEW_TREE)
9044 err = log_selected_tree_entry(new_view, y, x,
9045 &view->state.tree);
9046 else if (view->type == TOG_VIEW_REF)
9047 err = log_ref_entry(new_view, y, x,
9048 view->state.ref.selected_entry,
9049 view->state.ref.repo);
9050 else
9051 return got_error_msg(GOT_ERR_NOT_IMPL,
9052 "parent/child view pair not supported");
9053 break;
9054 case TOG_VIEW_TREE:
9055 if (view->type == TOG_VIEW_LOG)
9056 err = browse_commit_tree(new_view, y, x,
9057 view->state.log.selected_entry,
9058 view->state.log.in_repo_path,
9059 view->state.log.head_ref_name,
9060 view->state.log.repo);
9061 else if (view->type == TOG_VIEW_REF)
9062 err = browse_ref_tree(new_view, y, x,
9063 view->state.ref.selected_entry,
9064 view->state.ref.repo);
9065 else
9066 return got_error_msg(GOT_ERR_NOT_IMPL,
9067 "parent/child view pair not supported");
9068 break;
9069 case TOG_VIEW_REF:
9070 *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
9071 if (*new_view == NULL)
9072 return got_error_from_errno("view_open");
9073 if (view->type == TOG_VIEW_LOG)
9074 err = open_ref_view(*new_view, view->state.log.repo);
9075 else if (view->type == TOG_VIEW_TREE)
9076 err = open_ref_view(*new_view, view->state.tree.repo);
9077 else
9078 err = got_error_msg(GOT_ERR_NOT_IMPL,
9079 "parent/child view pair not supported");
9080 if (err)
9081 view_close(*new_view);
9082 break;
9083 case TOG_VIEW_HELP:
9084 *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9085 if (*new_view == NULL)
9086 return got_error_from_errno("view_open");
9087 err = open_help_view(*new_view, view);
9088 if (err)
9089 view_close(*new_view);
9090 break;
9091 default:
9092 return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9095 return err;
9099 * If view was scrolled down to move the selected line into view when opening a
9100 * horizontal split, scroll back up when closing the split/toggling fullscreen.
9102 static void
9103 offset_selection_up(struct tog_view *view)
9105 switch (view->type) {
9106 case TOG_VIEW_BLAME: {
9107 struct tog_blame_view_state *s = &view->state.blame;
9108 if (s->first_displayed_line == 1) {
9109 s->selected_line = MAX(s->selected_line - view->offset,
9110 1);
9111 break;
9113 if (s->first_displayed_line > view->offset)
9114 s->first_displayed_line -= view->offset;
9115 else
9116 s->first_displayed_line = 1;
9117 s->selected_line += view->offset;
9118 break;
9120 case TOG_VIEW_LOG:
9121 log_scroll_up(&view->state.log, view->offset);
9122 view->state.log.selected += view->offset;
9123 break;
9124 case TOG_VIEW_REF:
9125 ref_scroll_up(&view->state.ref, view->offset);
9126 view->state.ref.selected += view->offset;
9127 break;
9128 case TOG_VIEW_TREE:
9129 tree_scroll_up(&view->state.tree, view->offset);
9130 view->state.tree.selected += view->offset;
9131 break;
9132 default:
9133 break;
9136 view->offset = 0;
9140 * If the selected line is in the section of screen covered by the bottom split,
9141 * scroll down offset lines to move it into view and index its new position.
9143 static const struct got_error *
9144 offset_selection_down(struct tog_view *view)
9146 const struct got_error *err = NULL;
9147 const struct got_error *(*scrolld)(struct tog_view *, int);
9148 int *selected = NULL;
9149 int header, offset;
9151 switch (view->type) {
9152 case TOG_VIEW_BLAME: {
9153 struct tog_blame_view_state *s = &view->state.blame;
9154 header = 3;
9155 scrolld = NULL;
9156 if (s->selected_line > view->nlines - header) {
9157 offset = abs(view->nlines - s->selected_line - header);
9158 s->first_displayed_line += offset;
9159 s->selected_line -= offset;
9160 view->offset = offset;
9162 break;
9164 case TOG_VIEW_LOG: {
9165 struct tog_log_view_state *s = &view->state.log;
9166 scrolld = &log_scroll_down;
9167 header = view_is_parent_view(view) ? 3 : 2;
9168 selected = &s->selected;
9169 break;
9171 case TOG_VIEW_REF: {
9172 struct tog_ref_view_state *s = &view->state.ref;
9173 scrolld = &ref_scroll_down;
9174 header = 3;
9175 selected = &s->selected;
9176 break;
9178 case TOG_VIEW_TREE: {
9179 struct tog_tree_view_state *s = &view->state.tree;
9180 scrolld = &tree_scroll_down;
9181 header = 5;
9182 selected = &s->selected;
9183 break;
9185 default:
9186 selected = NULL;
9187 scrolld = NULL;
9188 header = 0;
9189 break;
9192 if (selected && *selected > view->nlines - header) {
9193 offset = abs(view->nlines - *selected - header);
9194 view->offset = offset;
9195 if (scrolld && offset) {
9196 err = scrolld(view, offset);
9197 *selected -= offset;
9201 return err;
9204 static void
9205 list_commands(FILE *fp)
9207 size_t i;
9209 fprintf(fp, "commands:");
9210 for (i = 0; i < nitems(tog_commands); i++) {
9211 const struct tog_cmd *cmd = &tog_commands[i];
9212 fprintf(fp, " %s", cmd->name);
9214 fputc('\n', fp);
9217 __dead static void
9218 usage(int hflag, int status)
9220 FILE *fp = (status == 0) ? stdout : stderr;
9222 fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9223 getprogname());
9224 if (hflag) {
9225 fprintf(fp, "lazy usage: %s path\n", getprogname());
9226 list_commands(fp);
9228 exit(status);
9231 static char **
9232 make_argv(int argc, ...)
9234 va_list ap;
9235 char **argv;
9236 int i;
9238 va_start(ap, argc);
9240 argv = calloc(argc, sizeof(char *));
9241 if (argv == NULL)
9242 err(1, "calloc");
9243 for (i = 0; i < argc; i++) {
9244 argv[i] = strdup(va_arg(ap, char *));
9245 if (argv[i] == NULL)
9246 err(1, "strdup");
9249 va_end(ap);
9250 return argv;
9254 * Try to convert 'tog path' into a 'tog log path' command.
9255 * The user could simply have mistyped the command rather than knowingly
9256 * provided a path. So check whether argv[0] can in fact be resolved
9257 * to a path in the HEAD commit and print a special error if not.
9258 * This hack is for mpi@ <3
9260 static const struct got_error *
9261 tog_log_with_path(int argc, char *argv[])
9263 const struct got_error *error = NULL, *close_err;
9264 const struct tog_cmd *cmd = NULL;
9265 struct got_repository *repo = NULL;
9266 struct got_worktree *worktree = NULL;
9267 struct got_object_id *commit_id = NULL, *id = NULL;
9268 struct got_commit_object *commit = NULL;
9269 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9270 char *commit_id_str = NULL, **cmd_argv = NULL;
9271 int *pack_fds = NULL;
9273 cwd = getcwd(NULL, 0);
9274 if (cwd == NULL)
9275 return got_error_from_errno("getcwd");
9277 error = got_repo_pack_fds_open(&pack_fds);
9278 if (error != NULL)
9279 goto done;
9281 error = got_worktree_open(&worktree, cwd);
9282 if (error && error->code != GOT_ERR_NOT_WORKTREE)
9283 goto done;
9285 if (worktree)
9286 repo_path = strdup(got_worktree_get_repo_path(worktree));
9287 else
9288 repo_path = strdup(cwd);
9289 if (repo_path == NULL) {
9290 error = got_error_from_errno("strdup");
9291 goto done;
9294 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9295 if (error != NULL)
9296 goto done;
9298 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9299 repo, worktree);
9300 if (error)
9301 goto done;
9303 error = tog_load_refs(repo, 0);
9304 if (error)
9305 goto done;
9306 error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9307 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9308 GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9309 if (error)
9310 goto done;
9312 if (worktree) {
9313 got_worktree_close(worktree);
9314 worktree = NULL;
9317 error = got_object_open_as_commit(&commit, repo, commit_id);
9318 if (error)
9319 goto done;
9321 error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9322 if (error) {
9323 if (error->code != GOT_ERR_NO_TREE_ENTRY)
9324 goto done;
9325 fprintf(stderr, "%s: '%s' is no known command or path\n",
9326 getprogname(), argv[0]);
9327 usage(1, 1);
9328 /* not reached */
9331 error = got_object_id_str(&commit_id_str, commit_id);
9332 if (error)
9333 goto done;
9335 cmd = &tog_commands[0]; /* log */
9336 argc = 4;
9337 cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9338 error = cmd->cmd_main(argc, cmd_argv);
9339 done:
9340 if (repo) {
9341 close_err = got_repo_close(repo);
9342 if (error == NULL)
9343 error = close_err;
9345 if (commit)
9346 got_object_commit_close(commit);
9347 if (worktree)
9348 got_worktree_close(worktree);
9349 if (pack_fds) {
9350 const struct got_error *pack_err =
9351 got_repo_pack_fds_close(pack_fds);
9352 if (error == NULL)
9353 error = pack_err;
9355 free(id);
9356 free(commit_id_str);
9357 free(commit_id);
9358 free(cwd);
9359 free(repo_path);
9360 free(in_repo_path);
9361 if (cmd_argv) {
9362 int i;
9363 for (i = 0; i < argc; i++)
9364 free(cmd_argv[i]);
9365 free(cmd_argv);
9367 tog_free_refs();
9368 return error;
9371 int
9372 main(int argc, char *argv[])
9374 const struct got_error *error = NULL;
9375 const struct tog_cmd *cmd = NULL;
9376 int ch, hflag = 0, Vflag = 0;
9377 char **cmd_argv = NULL;
9378 static const struct option longopts[] = {
9379 { "version", no_argument, NULL, 'V' },
9380 { NULL, 0, NULL, 0}
9382 char *diff_algo_str = NULL;
9384 if (!isatty(STDIN_FILENO))
9385 errx(1, "standard input is not a tty");
9387 setlocale(LC_CTYPE, "");
9389 while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9390 switch (ch) {
9391 case 'h':
9392 hflag = 1;
9393 break;
9394 case 'V':
9395 Vflag = 1;
9396 break;
9397 default:
9398 usage(hflag, 1);
9399 /* NOTREACHED */
9403 argc -= optind;
9404 argv += optind;
9405 optind = 1;
9406 optreset = 1;
9408 if (Vflag) {
9409 got_version_print_str();
9410 return 0;
9413 #ifndef PROFILE
9414 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9415 NULL) == -1)
9416 err(1, "pledge");
9417 #endif
9419 if (argc == 0) {
9420 if (hflag)
9421 usage(hflag, 0);
9422 /* Build an argument vector which runs a default command. */
9423 cmd = &tog_commands[0];
9424 argc = 1;
9425 cmd_argv = make_argv(argc, cmd->name);
9426 } else {
9427 size_t i;
9429 /* Did the user specify a command? */
9430 for (i = 0; i < nitems(tog_commands); i++) {
9431 if (strncmp(tog_commands[i].name, argv[0],
9432 strlen(argv[0])) == 0) {
9433 cmd = &tog_commands[i];
9434 break;
9439 diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9440 if (diff_algo_str) {
9441 if (strcasecmp(diff_algo_str, "patience") == 0)
9442 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9443 if (strcasecmp(diff_algo_str, "myers") == 0)
9444 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9447 if (cmd == NULL) {
9448 if (argc != 1)
9449 usage(0, 1);
9450 /* No command specified; try log with a path */
9451 error = tog_log_with_path(argc, argv);
9452 } else {
9453 if (hflag)
9454 cmd->cmd_usage();
9455 else
9456 error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9459 endwin();
9460 putchar('\n');
9461 if (cmd_argv) {
9462 int i;
9463 for (i = 0; i < argc; i++)
9464 free(cmd_argv[i]);
9465 free(cmd_argv);
9468 if (error && error->code != GOT_ERR_CANCELLED &&
9469 error->code != GOT_ERR_EOF &&
9470 error->code != GOT_ERR_PRIVSEP_EXIT &&
9471 error->code != GOT_ERR_PRIVSEP_PIPE &&
9472 !(error->code == GOT_ERR_ERRNO && errno == EINTR))
9473 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9474 return 0;