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;
4719 free((char *)pe->path);
4720 free(pe->data);
4723 fputc('\n', outfile);
4724 outoff++;
4725 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4726 if (err)
4727 goto done;
4729 n = fprintf(outfile,
4730 "%d file%s changed, %d insertions(+), %d deletions(-)\n",
4731 dsa.nfiles, dsa.nfiles > 1 ? "s" : "", dsa.ins, dsa.del);
4732 if (n < 0) {
4733 err = got_error_from_errno("fprintf");
4734 goto done;
4736 outoff += n;
4737 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4738 if (err)
4739 goto done;
4741 fputc('\n', outfile);
4742 outoff++;
4743 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4744 done:
4745 got_pathlist_free(&changed_paths);
4746 free(id_str);
4747 free(logmsg);
4748 free(refs_str);
4749 got_object_commit_close(commit);
4750 if (err) {
4751 free(*lines);
4752 *lines = NULL;
4753 *nlines = 0;
4755 return err;
4758 static const struct got_error *
4759 create_diff(struct tog_diff_view_state *s)
4761 const struct got_error *err = NULL;
4762 FILE *f = NULL;
4763 int obj_type;
4765 free(s->lines);
4766 s->lines = malloc(sizeof(*s->lines));
4767 if (s->lines == NULL)
4768 return got_error_from_errno("malloc");
4769 s->nlines = 0;
4771 f = got_opentemp();
4772 if (f == NULL) {
4773 err = got_error_from_errno("got_opentemp");
4774 goto done;
4776 if (s->f && fclose(s->f) == EOF) {
4777 err = got_error_from_errno("fclose");
4778 goto done;
4780 s->f = f;
4782 if (s->id1)
4783 err = got_object_get_type(&obj_type, s->repo, s->id1);
4784 else
4785 err = got_object_get_type(&obj_type, s->repo, s->id2);
4786 if (err)
4787 goto done;
4789 switch (obj_type) {
4790 case GOT_OBJ_TYPE_BLOB:
4791 err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4792 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4793 s->label1, s->label2, tog_diff_algo, s->diff_context,
4794 s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4795 break;
4796 case GOT_OBJ_TYPE_TREE:
4797 err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4798 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4799 tog_diff_algo, s->diff_context, s->ignore_whitespace,
4800 s->force_text_diff, s->repo, s->f);
4801 break;
4802 case GOT_OBJ_TYPE_COMMIT: {
4803 const struct got_object_id_queue *parent_ids;
4804 struct got_object_qid *pid;
4805 struct got_commit_object *commit2;
4806 struct got_reflist_head *refs;
4808 err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4809 if (err)
4810 goto done;
4811 refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4812 /* Show commit info if we're diffing to a parent/root commit. */
4813 if (s->id1 == NULL) {
4814 err = write_commit_info(&s->lines, &s->nlines, s->id2,
4815 refs, s->repo, s->ignore_whitespace,
4816 s->force_text_diff, s->f);
4817 if (err)
4818 goto done;
4819 } else {
4820 parent_ids = got_object_commit_get_parent_ids(commit2);
4821 STAILQ_FOREACH(pid, parent_ids, entry) {
4822 if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4823 err = write_commit_info(&s->lines,
4824 &s->nlines, s->id2, refs, s->repo,
4825 s->ignore_whitespace,
4826 s->force_text_diff, s->f);
4827 if (err)
4828 goto done;
4829 break;
4833 got_object_commit_close(commit2);
4835 err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4836 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4837 tog_diff_algo, s->diff_context, s->ignore_whitespace,
4838 s->force_text_diff, s->repo, s->f);
4839 break;
4841 default:
4842 err = got_error(GOT_ERR_OBJ_TYPE);
4843 break;
4845 done:
4846 if (s->f && fflush(s->f) != 0 && err == NULL)
4847 err = got_error_from_errno("fflush");
4848 return err;
4851 static void
4852 diff_view_indicate_progress(struct tog_view *view)
4854 mvwaddstr(view->window, 0, 0, "diffing...");
4855 update_panels();
4856 doupdate();
4859 static const struct got_error *
4860 search_start_diff_view(struct tog_view *view)
4862 struct tog_diff_view_state *s = &view->state.diff;
4864 s->matched_line = 0;
4865 return NULL;
4868 static void
4869 search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
4870 size_t *nlines, int **first, int **last, int **match, int **selected)
4872 struct tog_diff_view_state *s = &view->state.diff;
4874 *f = s->f;
4875 *nlines = s->nlines;
4876 *line_offsets = NULL;
4877 *match = &s->matched_line;
4878 *first = &s->first_displayed_line;
4879 *last = &s->last_displayed_line;
4880 *selected = &s->selected_line;
4883 static const struct got_error *
4884 search_next_view_match(struct tog_view *view)
4886 const struct got_error *err = NULL;
4887 FILE *f;
4888 int lineno;
4889 char *line = NULL;
4890 size_t linesize = 0;
4891 ssize_t linelen;
4892 off_t *line_offsets;
4893 size_t nlines = 0;
4894 int *first, *last, *match, *selected;
4896 if (!view->search_setup)
4897 return got_error_msg(GOT_ERR_NOT_IMPL,
4898 "view search not supported");
4899 view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
4900 &match, &selected);
4902 if (!view->searching) {
4903 view->search_next_done = TOG_SEARCH_HAVE_MORE;
4904 return NULL;
4907 if (*match) {
4908 if (view->searching == TOG_SEARCH_FORWARD)
4909 lineno = *match + 1;
4910 else
4911 lineno = *match - 1;
4912 } else
4913 lineno = *first - 1 + *selected;
4915 while (1) {
4916 off_t offset;
4918 if (lineno <= 0 || lineno > nlines) {
4919 if (*match == 0) {
4920 view->search_next_done = TOG_SEARCH_HAVE_MORE;
4921 break;
4924 if (view->searching == TOG_SEARCH_FORWARD)
4925 lineno = 1;
4926 else
4927 lineno = nlines;
4930 offset = view->type == TOG_VIEW_DIFF ?
4931 view->state.diff.lines[lineno - 1].offset :
4932 line_offsets[lineno - 1];
4933 if (fseeko(f, offset, SEEK_SET) != 0) {
4934 free(line);
4935 return got_error_from_errno("fseeko");
4937 linelen = getline(&line, &linesize, f);
4938 if (linelen != -1) {
4939 char *exstr;
4940 err = expand_tab(&exstr, line);
4941 if (err)
4942 break;
4943 if (match_line(exstr, &view->regex, 1,
4944 &view->regmatch)) {
4945 view->search_next_done = TOG_SEARCH_HAVE_MORE;
4946 *match = lineno;
4947 free(exstr);
4948 break;
4950 free(exstr);
4952 if (view->searching == TOG_SEARCH_FORWARD)
4953 lineno++;
4954 else
4955 lineno--;
4957 free(line);
4959 if (*match) {
4960 *first = *match;
4961 *selected = 1;
4964 return err;
4967 static const struct got_error *
4968 close_diff_view(struct tog_view *view)
4970 const struct got_error *err = NULL;
4971 struct tog_diff_view_state *s = &view->state.diff;
4973 free(s->id1);
4974 s->id1 = NULL;
4975 free(s->id2);
4976 s->id2 = NULL;
4977 if (s->f && fclose(s->f) == EOF)
4978 err = got_error_from_errno("fclose");
4979 s->f = NULL;
4980 if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4981 err = got_error_from_errno("fclose");
4982 s->f1 = NULL;
4983 if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4984 err = got_error_from_errno("fclose");
4985 s->f2 = NULL;
4986 if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4987 err = got_error_from_errno("close");
4988 s->fd1 = -1;
4989 if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4990 err = got_error_from_errno("close");
4991 s->fd2 = -1;
4992 free(s->lines);
4993 s->lines = NULL;
4994 s->nlines = 0;
4995 return err;
4998 static const struct got_error *
4999 open_diff_view(struct tog_view *view, struct got_object_id *id1,
5000 struct got_object_id *id2, const char *label1, const char *label2,
5001 int diff_context, int ignore_whitespace, int force_text_diff,
5002 struct tog_view *parent_view, struct got_repository *repo)
5004 const struct got_error *err;
5005 struct tog_diff_view_state *s = &view->state.diff;
5007 memset(s, 0, sizeof(*s));
5008 s->fd1 = -1;
5009 s->fd2 = -1;
5011 if (id1 != NULL && id2 != NULL) {
5012 int type1, type2;
5013 err = got_object_get_type(&type1, repo, id1);
5014 if (err)
5015 return err;
5016 err = got_object_get_type(&type2, repo, id2);
5017 if (err)
5018 return err;
5020 if (type1 != type2)
5021 return got_error(GOT_ERR_OBJ_TYPE);
5023 s->first_displayed_line = 1;
5024 s->last_displayed_line = view->nlines;
5025 s->selected_line = 1;
5026 s->repo = repo;
5027 s->id1 = id1;
5028 s->id2 = id2;
5029 s->label1 = label1;
5030 s->label2 = label2;
5032 if (id1) {
5033 s->id1 = got_object_id_dup(id1);
5034 if (s->id1 == NULL)
5035 return got_error_from_errno("got_object_id_dup");
5036 } else
5037 s->id1 = NULL;
5039 s->id2 = got_object_id_dup(id2);
5040 if (s->id2 == NULL) {
5041 err = got_error_from_errno("got_object_id_dup");
5042 goto done;
5045 s->f1 = got_opentemp();
5046 if (s->f1 == NULL) {
5047 err = got_error_from_errno("got_opentemp");
5048 goto done;
5051 s->f2 = got_opentemp();
5052 if (s->f2 == NULL) {
5053 err = got_error_from_errno("got_opentemp");
5054 goto done;
5057 s->fd1 = got_opentempfd();
5058 if (s->fd1 == -1) {
5059 err = got_error_from_errno("got_opentempfd");
5060 goto done;
5063 s->fd2 = got_opentempfd();
5064 if (s->fd2 == -1) {
5065 err = got_error_from_errno("got_opentempfd");
5066 goto done;
5069 s->first_displayed_line = 1;
5070 s->last_displayed_line = view->nlines;
5071 s->diff_context = diff_context;
5072 s->ignore_whitespace = ignore_whitespace;
5073 s->force_text_diff = force_text_diff;
5074 s->parent_view = parent_view;
5075 s->repo = repo;
5077 if (has_colors() && getenv("TOG_COLORS") != NULL) {
5078 int rc;
5080 rc = init_pair(GOT_DIFF_LINE_MINUS,
5081 get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5082 if (rc != ERR)
5083 rc = init_pair(GOT_DIFF_LINE_PLUS,
5084 get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5085 if (rc != ERR)
5086 rc = init_pair(GOT_DIFF_LINE_HUNK,
5087 get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5088 if (rc != ERR)
5089 rc = init_pair(GOT_DIFF_LINE_META,
5090 get_color_value("TOG_COLOR_DIFF_META"), -1);
5091 if (rc != ERR)
5092 rc = init_pair(GOT_DIFF_LINE_CHANGES,
5093 get_color_value("TOG_COLOR_DIFF_META"), -1);
5094 if (rc != ERR)
5095 rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5096 get_color_value("TOG_COLOR_DIFF_META"), -1);
5097 if (rc != ERR)
5098 rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5099 get_color_value("TOG_COLOR_DIFF_META"), -1);
5100 if (rc != ERR)
5101 rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5102 get_color_value("TOG_COLOR_AUTHOR"), -1);
5103 if (rc != ERR)
5104 rc = init_pair(GOT_DIFF_LINE_DATE,
5105 get_color_value("TOG_COLOR_DATE"), -1);
5106 if (rc == ERR) {
5107 err = got_error(GOT_ERR_RANGE);
5108 goto done;
5112 if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5113 view_is_splitscreen(view))
5114 show_log_view(parent_view); /* draw border */
5115 diff_view_indicate_progress(view);
5117 err = create_diff(s);
5119 view->show = show_diff_view;
5120 view->input = input_diff_view;
5121 view->reset = reset_diff_view;
5122 view->close = close_diff_view;
5123 view->search_start = search_start_diff_view;
5124 view->search_setup = search_setup_diff_view;
5125 view->search_next = search_next_view_match;
5126 done:
5127 if (err)
5128 close_diff_view(view);
5129 return err;
5132 static const struct got_error *
5133 show_diff_view(struct tog_view *view)
5135 const struct got_error *err;
5136 struct tog_diff_view_state *s = &view->state.diff;
5137 char *id_str1 = NULL, *id_str2, *header;
5138 const char *label1, *label2;
5140 if (s->id1) {
5141 err = got_object_id_str(&id_str1, s->id1);
5142 if (err)
5143 return err;
5144 label1 = s->label1 ? s->label1 : id_str1;
5145 } else
5146 label1 = "/dev/null";
5148 err = got_object_id_str(&id_str2, s->id2);
5149 if (err)
5150 return err;
5151 label2 = s->label2 ? s->label2 : id_str2;
5153 if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5154 err = got_error_from_errno("asprintf");
5155 free(id_str1);
5156 free(id_str2);
5157 return err;
5159 free(id_str1);
5160 free(id_str2);
5162 err = draw_file(view, header);
5163 free(header);
5164 return err;
5167 static const struct got_error *
5168 set_selected_commit(struct tog_diff_view_state *s,
5169 struct commit_queue_entry *entry)
5171 const struct got_error *err;
5172 const struct got_object_id_queue *parent_ids;
5173 struct got_commit_object *selected_commit;
5174 struct got_object_qid *pid;
5176 free(s->id2);
5177 s->id2 = got_object_id_dup(entry->id);
5178 if (s->id2 == NULL)
5179 return got_error_from_errno("got_object_id_dup");
5181 err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5182 if (err)
5183 return err;
5184 parent_ids = got_object_commit_get_parent_ids(selected_commit);
5185 free(s->id1);
5186 pid = STAILQ_FIRST(parent_ids);
5187 s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5188 got_object_commit_close(selected_commit);
5189 return NULL;
5192 static const struct got_error *
5193 reset_diff_view(struct tog_view *view)
5195 struct tog_diff_view_state *s = &view->state.diff;
5197 view->count = 0;
5198 wclear(view->window);
5199 s->first_displayed_line = 1;
5200 s->last_displayed_line = view->nlines;
5201 s->matched_line = 0;
5202 diff_view_indicate_progress(view);
5203 return create_diff(s);
5206 static void
5207 diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5209 int start, i;
5211 i = start = s->first_displayed_line - 1;
5213 while (s->lines[i].type != type) {
5214 if (i == 0)
5215 i = s->nlines - 1;
5216 if (--i == start)
5217 return; /* do nothing, requested type not in file */
5220 s->selected_line = 1;
5221 s->first_displayed_line = i;
5224 static void
5225 diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5227 int start, i;
5229 i = start = s->first_displayed_line + 1;
5231 while (s->lines[i].type != type) {
5232 if (i == s->nlines - 1)
5233 i = 0;
5234 if (++i == start)
5235 return; /* do nothing, requested type not in file */
5238 s->selected_line = 1;
5239 s->first_displayed_line = i;
5242 static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5243 int, int, int);
5244 static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5245 int, int);
5247 static const struct got_error *
5248 input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5250 const struct got_error *err = NULL;
5251 struct tog_diff_view_state *s = &view->state.diff;
5252 struct tog_log_view_state *ls;
5253 struct commit_queue_entry *old_selected_entry;
5254 char *line = NULL;
5255 size_t linesize = 0;
5256 ssize_t linelen;
5257 int i, nscroll = view->nlines - 1, up = 0;
5259 s->lineno = s->first_displayed_line - 1 + s->selected_line;
5261 switch (ch) {
5262 case '0':
5263 view->x = 0;
5264 break;
5265 case '$':
5266 view->x = MAX(view->maxx - view->ncols / 3, 0);
5267 view->count = 0;
5268 break;
5269 case KEY_RIGHT:
5270 case 'l':
5271 if (view->x + view->ncols / 3 < view->maxx)
5272 view->x += 2; /* move two columns right */
5273 else
5274 view->count = 0;
5275 break;
5276 case KEY_LEFT:
5277 case 'h':
5278 view->x -= MIN(view->x, 2); /* move two columns back */
5279 if (view->x <= 0)
5280 view->count = 0;
5281 break;
5282 case 'a':
5283 case 'w':
5284 if (ch == 'a')
5285 s->force_text_diff = !s->force_text_diff;
5286 else if (ch == 'w')
5287 s->ignore_whitespace = !s->ignore_whitespace;
5288 err = reset_diff_view(view);
5289 break;
5290 case 'g':
5291 case KEY_HOME:
5292 s->first_displayed_line = 1;
5293 view->count = 0;
5294 break;
5295 case 'G':
5296 case KEY_END:
5297 view->count = 0;
5298 if (s->eof)
5299 break;
5301 s->first_displayed_line = (s->nlines - view->nlines) + 2;
5302 s->eof = 1;
5303 break;
5304 case 'k':
5305 case KEY_UP:
5306 case CTRL('p'):
5307 if (s->first_displayed_line > 1)
5308 s->first_displayed_line--;
5309 else
5310 view->count = 0;
5311 break;
5312 case CTRL('u'):
5313 case 'u':
5314 nscroll /= 2;
5315 /* FALL THROUGH */
5316 case KEY_PPAGE:
5317 case CTRL('b'):
5318 case 'b':
5319 if (s->first_displayed_line == 1) {
5320 view->count = 0;
5321 break;
5323 i = 0;
5324 while (i++ < nscroll && s->first_displayed_line > 1)
5325 s->first_displayed_line--;
5326 break;
5327 case 'j':
5328 case KEY_DOWN:
5329 case CTRL('n'):
5330 if (!s->eof)
5331 s->first_displayed_line++;
5332 else
5333 view->count = 0;
5334 break;
5335 case CTRL('d'):
5336 case 'd':
5337 nscroll /= 2;
5338 /* FALL THROUGH */
5339 case KEY_NPAGE:
5340 case CTRL('f'):
5341 case 'f':
5342 case ' ':
5343 if (s->eof) {
5344 view->count = 0;
5345 break;
5347 i = 0;
5348 while (!s->eof && i++ < nscroll) {
5349 linelen = getline(&line, &linesize, s->f);
5350 s->first_displayed_line++;
5351 if (linelen == -1) {
5352 if (feof(s->f)) {
5353 s->eof = 1;
5354 } else
5355 err = got_ferror(s->f, GOT_ERR_IO);
5356 break;
5359 free(line);
5360 break;
5361 case '(':
5362 diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5363 break;
5364 case ')':
5365 diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5366 break;
5367 case '{':
5368 diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5369 break;
5370 case '}':
5371 diff_next_index(s, GOT_DIFF_LINE_HUNK);
5372 break;
5373 case '[':
5374 if (s->diff_context > 0) {
5375 s->diff_context--;
5376 s->matched_line = 0;
5377 diff_view_indicate_progress(view);
5378 err = create_diff(s);
5379 if (s->first_displayed_line + view->nlines - 1 >
5380 s->nlines) {
5381 s->first_displayed_line = 1;
5382 s->last_displayed_line = view->nlines;
5384 } else
5385 view->count = 0;
5386 break;
5387 case ']':
5388 if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5389 s->diff_context++;
5390 s->matched_line = 0;
5391 diff_view_indicate_progress(view);
5392 err = create_diff(s);
5393 } else
5394 view->count = 0;
5395 break;
5396 case '<':
5397 case ',':
5398 case 'K':
5399 up = 1;
5400 /* FALL THROUGH */
5401 case '>':
5402 case '.':
5403 case 'J':
5404 if (s->parent_view == NULL) {
5405 view->count = 0;
5406 break;
5408 s->parent_view->count = view->count;
5410 if (s->parent_view->type == TOG_VIEW_LOG) {
5411 ls = &s->parent_view->state.log;
5412 old_selected_entry = ls->selected_entry;
5414 err = input_log_view(NULL, s->parent_view,
5415 up ? KEY_UP : KEY_DOWN);
5416 if (err)
5417 break;
5418 view->count = s->parent_view->count;
5420 if (old_selected_entry == ls->selected_entry)
5421 break;
5423 err = set_selected_commit(s, ls->selected_entry);
5424 if (err)
5425 break;
5426 } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5427 struct tog_blame_view_state *bs;
5428 struct got_object_id *id, *prev_id;
5430 bs = &s->parent_view->state.blame;
5431 prev_id = get_annotation_for_line(bs->blame.lines,
5432 bs->blame.nlines, bs->last_diffed_line);
5434 err = input_blame_view(&view, s->parent_view,
5435 up ? KEY_UP : KEY_DOWN);
5436 if (err)
5437 break;
5438 view->count = s->parent_view->count;
5440 if (prev_id == NULL)
5441 break;
5442 id = get_selected_commit_id(bs->blame.lines,
5443 bs->blame.nlines, bs->first_displayed_line,
5444 bs->selected_line);
5445 if (id == NULL)
5446 break;
5448 if (!got_object_id_cmp(prev_id, id))
5449 break;
5451 err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5452 if (err)
5453 break;
5455 s->first_displayed_line = 1;
5456 s->last_displayed_line = view->nlines;
5457 s->matched_line = 0;
5458 view->x = 0;
5460 diff_view_indicate_progress(view);
5461 err = create_diff(s);
5462 break;
5463 default:
5464 view->count = 0;
5465 break;
5468 return err;
5471 static const struct got_error *
5472 cmd_diff(int argc, char *argv[])
5474 const struct got_error *error = NULL;
5475 struct got_repository *repo = NULL;
5476 struct got_worktree *worktree = NULL;
5477 struct got_object_id *id1 = NULL, *id2 = NULL;
5478 char *repo_path = NULL, *cwd = NULL;
5479 char *id_str1 = NULL, *id_str2 = NULL;
5480 char *label1 = NULL, *label2 = NULL;
5481 int diff_context = 3, ignore_whitespace = 0;
5482 int ch, force_text_diff = 0;
5483 const char *errstr;
5484 struct tog_view *view;
5485 int *pack_fds = NULL;
5487 while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5488 switch (ch) {
5489 case 'a':
5490 force_text_diff = 1;
5491 break;
5492 case 'C':
5493 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5494 &errstr);
5495 if (errstr != NULL)
5496 errx(1, "number of context lines is %s: %s",
5497 errstr, errstr);
5498 break;
5499 case 'r':
5500 repo_path = realpath(optarg, NULL);
5501 if (repo_path == NULL)
5502 return got_error_from_errno2("realpath",
5503 optarg);
5504 got_path_strip_trailing_slashes(repo_path);
5505 break;
5506 case 'w':
5507 ignore_whitespace = 1;
5508 break;
5509 default:
5510 usage_diff();
5511 /* NOTREACHED */
5515 argc -= optind;
5516 argv += optind;
5518 if (argc == 0) {
5519 usage_diff(); /* TODO show local worktree changes */
5520 } else if (argc == 2) {
5521 id_str1 = argv[0];
5522 id_str2 = argv[1];
5523 } else
5524 usage_diff();
5526 error = got_repo_pack_fds_open(&pack_fds);
5527 if (error)
5528 goto done;
5530 if (repo_path == NULL) {
5531 cwd = getcwd(NULL, 0);
5532 if (cwd == NULL)
5533 return got_error_from_errno("getcwd");
5534 error = got_worktree_open(&worktree, cwd);
5535 if (error && error->code != GOT_ERR_NOT_WORKTREE)
5536 goto done;
5537 if (worktree)
5538 repo_path =
5539 strdup(got_worktree_get_repo_path(worktree));
5540 else
5541 repo_path = strdup(cwd);
5542 if (repo_path == NULL) {
5543 error = got_error_from_errno("strdup");
5544 goto done;
5548 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5549 if (error)
5550 goto done;
5552 init_curses();
5554 error = apply_unveil(got_repo_get_path(repo), NULL);
5555 if (error)
5556 goto done;
5558 error = tog_load_refs(repo, 0);
5559 if (error)
5560 goto done;
5562 error = got_repo_match_object_id(&id1, &label1, id_str1,
5563 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5564 if (error)
5565 goto done;
5567 error = got_repo_match_object_id(&id2, &label2, id_str2,
5568 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5569 if (error)
5570 goto done;
5572 view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5573 if (view == NULL) {
5574 error = got_error_from_errno("view_open");
5575 goto done;
5577 error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5578 ignore_whitespace, force_text_diff, NULL, repo);
5579 if (error)
5580 goto done;
5581 error = view_loop(view);
5582 done:
5583 free(label1);
5584 free(label2);
5585 free(repo_path);
5586 free(cwd);
5587 if (repo) {
5588 const struct got_error *close_err = got_repo_close(repo);
5589 if (error == NULL)
5590 error = close_err;
5592 if (worktree)
5593 got_worktree_close(worktree);
5594 if (pack_fds) {
5595 const struct got_error *pack_err =
5596 got_repo_pack_fds_close(pack_fds);
5597 if (error == NULL)
5598 error = pack_err;
5600 tog_free_refs();
5601 return error;
5604 __dead static void
5605 usage_blame(void)
5607 endwin();
5608 fprintf(stderr,
5609 "usage: %s blame [-c commit] [-r repository-path] path\n",
5610 getprogname());
5611 exit(1);
5614 struct tog_blame_line {
5615 int annotated;
5616 struct got_object_id *id;
5619 static const struct got_error *
5620 draw_blame(struct tog_view *view)
5622 struct tog_blame_view_state *s = &view->state.blame;
5623 struct tog_blame *blame = &s->blame;
5624 regmatch_t *regmatch = &view->regmatch;
5625 const struct got_error *err;
5626 int lineno = 0, nprinted = 0;
5627 char *line = NULL;
5628 size_t linesize = 0;
5629 ssize_t linelen;
5630 wchar_t *wline;
5631 int width;
5632 struct tog_blame_line *blame_line;
5633 struct got_object_id *prev_id = NULL;
5634 char *id_str;
5635 struct tog_color *tc;
5637 err = got_object_id_str(&id_str, &s->blamed_commit->id);
5638 if (err)
5639 return err;
5641 rewind(blame->f);
5642 werase(view->window);
5644 if (asprintf(&line, "commit %s", id_str) == -1) {
5645 err = got_error_from_errno("asprintf");
5646 free(id_str);
5647 return err;
5650 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5651 free(line);
5652 line = NULL;
5653 if (err)
5654 return err;
5655 if (view_needs_focus_indication(view))
5656 wstandout(view->window);
5657 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5658 if (tc)
5659 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5660 waddwstr(view->window, wline);
5661 while (width++ < view->ncols)
5662 waddch(view->window, ' ');
5663 if (tc)
5664 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5665 if (view_needs_focus_indication(view))
5666 wstandend(view->window);
5667 free(wline);
5668 wline = NULL;
5670 if (view->gline > blame->nlines)
5671 view->gline = blame->nlines;
5673 if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5674 s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5675 s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5676 free(id_str);
5677 return got_error_from_errno("asprintf");
5679 free(id_str);
5680 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5681 free(line);
5682 line = NULL;
5683 if (err)
5684 return err;
5685 waddwstr(view->window, wline);
5686 free(wline);
5687 wline = NULL;
5688 if (width < view->ncols - 1)
5689 waddch(view->window, '\n');
5691 s->eof = 0;
5692 view->maxx = 0;
5693 while (nprinted < view->nlines - 2) {
5694 linelen = getline(&line, &linesize, blame->f);
5695 if (linelen == -1) {
5696 if (feof(blame->f)) {
5697 s->eof = 1;
5698 break;
5700 free(line);
5701 return got_ferror(blame->f, GOT_ERR_IO);
5703 if (++lineno < s->first_displayed_line)
5704 continue;
5705 if (view->gline && !gotoline(view, &lineno, &nprinted))
5706 continue;
5708 /* Set view->maxx based on full line length. */
5709 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5710 if (err) {
5711 free(line);
5712 return err;
5714 free(wline);
5715 wline = NULL;
5716 view->maxx = MAX(view->maxx, width);
5718 if (nprinted == s->selected_line - 1)
5719 wstandout(view->window);
5721 if (blame->nlines > 0) {
5722 blame_line = &blame->lines[lineno - 1];
5723 if (blame_line->annotated && prev_id &&
5724 got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5725 !(nprinted == s->selected_line - 1)) {
5726 waddstr(view->window, " ");
5727 } else if (blame_line->annotated) {
5728 char *id_str;
5729 err = got_object_id_str(&id_str,
5730 blame_line->id);
5731 if (err) {
5732 free(line);
5733 return err;
5735 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5736 if (tc)
5737 wattr_on(view->window,
5738 COLOR_PAIR(tc->colorpair), NULL);
5739 wprintw(view->window, "%.8s", id_str);
5740 if (tc)
5741 wattr_off(view->window,
5742 COLOR_PAIR(tc->colorpair), NULL);
5743 free(id_str);
5744 prev_id = blame_line->id;
5745 } else {
5746 waddstr(view->window, "........");
5747 prev_id = NULL;
5749 } else {
5750 waddstr(view->window, "........");
5751 prev_id = NULL;
5754 if (nprinted == s->selected_line - 1)
5755 wstandend(view->window);
5756 waddstr(view->window, " ");
5758 if (view->ncols <= 9) {
5759 width = 9;
5760 } else if (s->first_displayed_line + nprinted ==
5761 s->matched_line &&
5762 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5763 err = add_matched_line(&width, line, view->ncols - 9, 9,
5764 view->window, view->x, regmatch);
5765 if (err) {
5766 free(line);
5767 return err;
5769 width += 9;
5770 } else {
5771 int skip;
5772 err = format_line(&wline, &width, &skip, line,
5773 view->x, view->ncols - 9, 9, 1);
5774 if (err) {
5775 free(line);
5776 return err;
5778 waddwstr(view->window, &wline[skip]);
5779 width += 9;
5780 free(wline);
5781 wline = NULL;
5784 if (width <= view->ncols - 1)
5785 waddch(view->window, '\n');
5786 if (++nprinted == 1)
5787 s->first_displayed_line = lineno;
5789 free(line);
5790 s->last_displayed_line = lineno;
5792 view_border(view);
5794 return NULL;
5797 static const struct got_error *
5798 blame_cb(void *arg, int nlines, int lineno,
5799 struct got_commit_object *commit, struct got_object_id *id)
5801 const struct got_error *err = NULL;
5802 struct tog_blame_cb_args *a = arg;
5803 struct tog_blame_line *line;
5804 int errcode;
5806 if (nlines != a->nlines ||
5807 (lineno != -1 && lineno < 1) || lineno > a->nlines)
5808 return got_error(GOT_ERR_RANGE);
5810 errcode = pthread_mutex_lock(&tog_mutex);
5811 if (errcode)
5812 return got_error_set_errno(errcode, "pthread_mutex_lock");
5814 if (*a->quit) { /* user has quit the blame view */
5815 err = got_error(GOT_ERR_ITER_COMPLETED);
5816 goto done;
5819 if (lineno == -1)
5820 goto done; /* no change in this commit */
5822 line = &a->lines[lineno - 1];
5823 if (line->annotated)
5824 goto done;
5826 line->id = got_object_id_dup(id);
5827 if (line->id == NULL) {
5828 err = got_error_from_errno("got_object_id_dup");
5829 goto done;
5831 line->annotated = 1;
5832 done:
5833 errcode = pthread_mutex_unlock(&tog_mutex);
5834 if (errcode)
5835 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5836 return err;
5839 static void *
5840 blame_thread(void *arg)
5842 const struct got_error *err, *close_err;
5843 struct tog_blame_thread_args *ta = arg;
5844 struct tog_blame_cb_args *a = ta->cb_args;
5845 int errcode, fd1 = -1, fd2 = -1;
5846 FILE *f1 = NULL, *f2 = NULL;
5848 fd1 = got_opentempfd();
5849 if (fd1 == -1)
5850 return (void *)got_error_from_errno("got_opentempfd");
5852 fd2 = got_opentempfd();
5853 if (fd2 == -1) {
5854 err = got_error_from_errno("got_opentempfd");
5855 goto done;
5858 f1 = got_opentemp();
5859 if (f1 == NULL) {
5860 err = (void *)got_error_from_errno("got_opentemp");
5861 goto done;
5863 f2 = got_opentemp();
5864 if (f2 == NULL) {
5865 err = (void *)got_error_from_errno("got_opentemp");
5866 goto done;
5869 err = block_signals_used_by_main_thread();
5870 if (err)
5871 goto done;
5873 err = got_blame(ta->path, a->commit_id, ta->repo,
5874 tog_diff_algo, blame_cb, ta->cb_args,
5875 ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5876 if (err && err->code == GOT_ERR_CANCELLED)
5877 err = NULL;
5879 errcode = pthread_mutex_lock(&tog_mutex);
5880 if (errcode) {
5881 err = got_error_set_errno(errcode, "pthread_mutex_lock");
5882 goto done;
5885 close_err = got_repo_close(ta->repo);
5886 if (err == NULL)
5887 err = close_err;
5888 ta->repo = NULL;
5889 *ta->complete = 1;
5891 errcode = pthread_mutex_unlock(&tog_mutex);
5892 if (errcode && err == NULL)
5893 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5895 done:
5896 if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5897 err = got_error_from_errno("close");
5898 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5899 err = got_error_from_errno("close");
5900 if (f1 && fclose(f1) == EOF && err == NULL)
5901 err = got_error_from_errno("fclose");
5902 if (f2 && fclose(f2) == EOF && err == NULL)
5903 err = got_error_from_errno("fclose");
5905 return (void *)err;
5908 static struct got_object_id *
5909 get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5910 int first_displayed_line, int selected_line)
5912 struct tog_blame_line *line;
5914 if (nlines <= 0)
5915 return NULL;
5917 line = &lines[first_displayed_line - 1 + selected_line - 1];
5918 if (!line->annotated)
5919 return NULL;
5921 return line->id;
5924 static struct got_object_id *
5925 get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5926 int lineno)
5928 struct tog_blame_line *line;
5930 if (nlines <= 0 || lineno >= nlines)
5931 return NULL;
5933 line = &lines[lineno - 1];
5934 if (!line->annotated)
5935 return NULL;
5937 return line->id;
5940 static const struct got_error *
5941 stop_blame(struct tog_blame *blame)
5943 const struct got_error *err = NULL;
5944 int i;
5946 if (blame->thread) {
5947 int errcode;
5948 errcode = pthread_mutex_unlock(&tog_mutex);
5949 if (errcode)
5950 return got_error_set_errno(errcode,
5951 "pthread_mutex_unlock");
5952 errcode = pthread_join(blame->thread, (void **)&err);
5953 if (errcode)
5954 return got_error_set_errno(errcode, "pthread_join");
5955 errcode = pthread_mutex_lock(&tog_mutex);
5956 if (errcode)
5957 return got_error_set_errno(errcode,
5958 "pthread_mutex_lock");
5959 if (err && err->code == GOT_ERR_ITER_COMPLETED)
5960 err = NULL;
5961 blame->thread = 0; //NULL;
5963 if (blame->thread_args.repo) {
5964 const struct got_error *close_err;
5965 close_err = got_repo_close(blame->thread_args.repo);
5966 if (err == NULL)
5967 err = close_err;
5968 blame->thread_args.repo = NULL;
5970 if (blame->f) {
5971 if (fclose(blame->f) == EOF && err == NULL)
5972 err = got_error_from_errno("fclose");
5973 blame->f = NULL;
5975 if (blame->lines) {
5976 for (i = 0; i < blame->nlines; i++)
5977 free(blame->lines[i].id);
5978 free(blame->lines);
5979 blame->lines = NULL;
5981 free(blame->cb_args.commit_id);
5982 blame->cb_args.commit_id = NULL;
5983 if (blame->pack_fds) {
5984 const struct got_error *pack_err =
5985 got_repo_pack_fds_close(blame->pack_fds);
5986 if (err == NULL)
5987 err = pack_err;
5988 blame->pack_fds = NULL;
5990 return err;
5993 static const struct got_error *
5994 cancel_blame_view(void *arg)
5996 const struct got_error *err = NULL;
5997 int *done = arg;
5998 int errcode;
6000 errcode = pthread_mutex_lock(&tog_mutex);
6001 if (errcode)
6002 return got_error_set_errno(errcode,
6003 "pthread_mutex_unlock");
6005 if (*done)
6006 err = got_error(GOT_ERR_CANCELLED);
6008 errcode = pthread_mutex_unlock(&tog_mutex);
6009 if (errcode)
6010 return got_error_set_errno(errcode,
6011 "pthread_mutex_lock");
6013 return err;
6016 static const struct got_error *
6017 run_blame(struct tog_view *view)
6019 struct tog_blame_view_state *s = &view->state.blame;
6020 struct tog_blame *blame = &s->blame;
6021 const struct got_error *err = NULL;
6022 struct got_commit_object *commit = NULL;
6023 struct got_blob_object *blob = NULL;
6024 struct got_repository *thread_repo = NULL;
6025 struct got_object_id *obj_id = NULL;
6026 int obj_type, fd = -1;
6027 int *pack_fds = NULL;
6029 err = got_object_open_as_commit(&commit, s->repo,
6030 &s->blamed_commit->id);
6031 if (err)
6032 return err;
6034 fd = got_opentempfd();
6035 if (fd == -1) {
6036 err = got_error_from_errno("got_opentempfd");
6037 goto done;
6040 err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
6041 if (err)
6042 goto done;
6044 err = got_object_get_type(&obj_type, s->repo, obj_id);
6045 if (err)
6046 goto done;
6048 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6049 err = got_error(GOT_ERR_OBJ_TYPE);
6050 goto done;
6053 err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
6054 if (err)
6055 goto done;
6056 blame->f = got_opentemp();
6057 if (blame->f == NULL) {
6058 err = got_error_from_errno("got_opentemp");
6059 goto done;
6061 err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
6062 &blame->line_offsets, blame->f, blob);
6063 if (err)
6064 goto done;
6065 if (blame->nlines == 0) {
6066 s->blame_complete = 1;
6067 goto done;
6070 /* Don't include \n at EOF in the blame line count. */
6071 if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
6072 blame->nlines--;
6074 blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6075 if (blame->lines == NULL) {
6076 err = got_error_from_errno("calloc");
6077 goto done;
6080 err = got_repo_pack_fds_open(&pack_fds);
6081 if (err)
6082 goto done;
6083 err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6084 pack_fds);
6085 if (err)
6086 goto done;
6088 blame->pack_fds = pack_fds;
6089 blame->cb_args.view = view;
6090 blame->cb_args.lines = blame->lines;
6091 blame->cb_args.nlines = blame->nlines;
6092 blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6093 if (blame->cb_args.commit_id == NULL) {
6094 err = got_error_from_errno("got_object_id_dup");
6095 goto done;
6097 blame->cb_args.quit = &s->done;
6099 blame->thread_args.path = s->path;
6100 blame->thread_args.repo = thread_repo;
6101 blame->thread_args.cb_args = &blame->cb_args;
6102 blame->thread_args.complete = &s->blame_complete;
6103 blame->thread_args.cancel_cb = cancel_blame_view;
6104 blame->thread_args.cancel_arg = &s->done;
6105 s->blame_complete = 0;
6107 if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6108 s->first_displayed_line = 1;
6109 s->last_displayed_line = view->nlines;
6110 s->selected_line = 1;
6112 s->matched_line = 0;
6114 done:
6115 if (commit)
6116 got_object_commit_close(commit);
6117 if (fd != -1 && close(fd) == -1 && err == NULL)
6118 err = got_error_from_errno("close");
6119 if (blob)
6120 got_object_blob_close(blob);
6121 free(obj_id);
6122 if (err)
6123 stop_blame(blame);
6124 return err;
6127 static const struct got_error *
6128 open_blame_view(struct tog_view *view, char *path,
6129 struct got_object_id *commit_id, struct got_repository *repo)
6131 const struct got_error *err = NULL;
6132 struct tog_blame_view_state *s = &view->state.blame;
6134 STAILQ_INIT(&s->blamed_commits);
6136 s->path = strdup(path);
6137 if (s->path == NULL)
6138 return got_error_from_errno("strdup");
6140 err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6141 if (err) {
6142 free(s->path);
6143 return err;
6146 STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6147 s->first_displayed_line = 1;
6148 s->last_displayed_line = view->nlines;
6149 s->selected_line = 1;
6150 s->blame_complete = 0;
6151 s->repo = repo;
6152 s->commit_id = commit_id;
6153 memset(&s->blame, 0, sizeof(s->blame));
6155 STAILQ_INIT(&s->colors);
6156 if (has_colors() && getenv("TOG_COLORS") != NULL) {
6157 err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6158 get_color_value("TOG_COLOR_COMMIT"));
6159 if (err)
6160 return err;
6163 view->show = show_blame_view;
6164 view->input = input_blame_view;
6165 view->reset = reset_blame_view;
6166 view->close = close_blame_view;
6167 view->search_start = search_start_blame_view;
6168 view->search_setup = search_setup_blame_view;
6169 view->search_next = search_next_view_match;
6171 return run_blame(view);
6174 static const struct got_error *
6175 close_blame_view(struct tog_view *view)
6177 const struct got_error *err = NULL;
6178 struct tog_blame_view_state *s = &view->state.blame;
6180 if (s->blame.thread)
6181 err = stop_blame(&s->blame);
6183 while (!STAILQ_EMPTY(&s->blamed_commits)) {
6184 struct got_object_qid *blamed_commit;
6185 blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6186 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6187 got_object_qid_free(blamed_commit);
6190 free(s->path);
6191 free_colors(&s->colors);
6192 return err;
6195 static const struct got_error *
6196 search_start_blame_view(struct tog_view *view)
6198 struct tog_blame_view_state *s = &view->state.blame;
6200 s->matched_line = 0;
6201 return NULL;
6204 static void
6205 search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6206 size_t *nlines, int **first, int **last, int **match, int **selected)
6208 struct tog_blame_view_state *s = &view->state.blame;
6210 *f = s->blame.f;
6211 *nlines = s->blame.nlines;
6212 *line_offsets = s->blame.line_offsets;
6213 *match = &s->matched_line;
6214 *first = &s->first_displayed_line;
6215 *last = &s->last_displayed_line;
6216 *selected = &s->selected_line;
6219 static const struct got_error *
6220 show_blame_view(struct tog_view *view)
6222 const struct got_error *err = NULL;
6223 struct tog_blame_view_state *s = &view->state.blame;
6224 int errcode;
6226 if (s->blame.thread == 0 && !s->blame_complete) {
6227 errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6228 &s->blame.thread_args);
6229 if (errcode)
6230 return got_error_set_errno(errcode, "pthread_create");
6232 halfdelay(1); /* fast refresh while annotating */
6235 if (s->blame_complete)
6236 halfdelay(10); /* disable fast refresh */
6238 err = draw_blame(view);
6240 view_border(view);
6241 return err;
6244 static const struct got_error *
6245 log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6246 struct got_repository *repo, struct got_object_id *id)
6248 struct tog_view *log_view;
6249 const struct got_error *err = NULL;
6251 *new_view = NULL;
6253 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6254 if (log_view == NULL)
6255 return got_error_from_errno("view_open");
6257 err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6258 if (err)
6259 view_close(log_view);
6260 else
6261 *new_view = log_view;
6263 return err;
6266 static const struct got_error *
6267 input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6269 const struct got_error *err = NULL, *thread_err = NULL;
6270 struct tog_view *diff_view;
6271 struct tog_blame_view_state *s = &view->state.blame;
6272 int eos, nscroll, begin_y = 0, begin_x = 0;
6274 eos = nscroll = view->nlines - 2;
6275 if (view_is_hsplit_top(view))
6276 --eos; /* border */
6278 switch (ch) {
6279 case '0':
6280 view->x = 0;
6281 break;
6282 case '$':
6283 view->x = MAX(view->maxx - view->ncols / 3, 0);
6284 view->count = 0;
6285 break;
6286 case KEY_RIGHT:
6287 case 'l':
6288 if (view->x + view->ncols / 3 < view->maxx)
6289 view->x += 2; /* move two columns right */
6290 else
6291 view->count = 0;
6292 break;
6293 case KEY_LEFT:
6294 case 'h':
6295 view->x -= MIN(view->x, 2); /* move two columns back */
6296 if (view->x <= 0)
6297 view->count = 0;
6298 break;
6299 case 'q':
6300 s->done = 1;
6301 break;
6302 case 'g':
6303 case KEY_HOME:
6304 s->selected_line = 1;
6305 s->first_displayed_line = 1;
6306 view->count = 0;
6307 break;
6308 case 'G':
6309 case KEY_END:
6310 if (s->blame.nlines < eos) {
6311 s->selected_line = s->blame.nlines;
6312 s->first_displayed_line = 1;
6313 } else {
6314 s->selected_line = eos;
6315 s->first_displayed_line = s->blame.nlines - (eos - 1);
6317 view->count = 0;
6318 break;
6319 case 'k':
6320 case KEY_UP:
6321 case CTRL('p'):
6322 if (s->selected_line > 1)
6323 s->selected_line--;
6324 else if (s->selected_line == 1 &&
6325 s->first_displayed_line > 1)
6326 s->first_displayed_line--;
6327 else
6328 view->count = 0;
6329 break;
6330 case CTRL('u'):
6331 case 'u':
6332 nscroll /= 2;
6333 /* FALL THROUGH */
6334 case KEY_PPAGE:
6335 case CTRL('b'):
6336 case 'b':
6337 if (s->first_displayed_line == 1) {
6338 if (view->count > 1)
6339 nscroll += nscroll;
6340 s->selected_line = MAX(1, s->selected_line - nscroll);
6341 view->count = 0;
6342 break;
6344 if (s->first_displayed_line > nscroll)
6345 s->first_displayed_line -= nscroll;
6346 else
6347 s->first_displayed_line = 1;
6348 break;
6349 case 'j':
6350 case KEY_DOWN:
6351 case CTRL('n'):
6352 if (s->selected_line < eos && s->first_displayed_line +
6353 s->selected_line <= s->blame.nlines)
6354 s->selected_line++;
6355 else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6356 s->first_displayed_line++;
6357 else
6358 view->count = 0;
6359 break;
6360 case 'c':
6361 case 'p': {
6362 struct got_object_id *id = NULL;
6364 view->count = 0;
6365 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6366 s->first_displayed_line, s->selected_line);
6367 if (id == NULL)
6368 break;
6369 if (ch == 'p') {
6370 struct got_commit_object *commit, *pcommit;
6371 struct got_object_qid *pid;
6372 struct got_object_id *blob_id = NULL;
6373 int obj_type;
6374 err = got_object_open_as_commit(&commit,
6375 s->repo, id);
6376 if (err)
6377 break;
6378 pid = STAILQ_FIRST(
6379 got_object_commit_get_parent_ids(commit));
6380 if (pid == NULL) {
6381 got_object_commit_close(commit);
6382 break;
6384 /* Check if path history ends here. */
6385 err = got_object_open_as_commit(&pcommit,
6386 s->repo, &pid->id);
6387 if (err)
6388 break;
6389 err = got_object_id_by_path(&blob_id, s->repo,
6390 pcommit, s->path);
6391 got_object_commit_close(pcommit);
6392 if (err) {
6393 if (err->code == GOT_ERR_NO_TREE_ENTRY)
6394 err = NULL;
6395 got_object_commit_close(commit);
6396 break;
6398 err = got_object_get_type(&obj_type, s->repo,
6399 blob_id);
6400 free(blob_id);
6401 /* Can't blame non-blob type objects. */
6402 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6403 got_object_commit_close(commit);
6404 break;
6406 err = got_object_qid_alloc(&s->blamed_commit,
6407 &pid->id);
6408 got_object_commit_close(commit);
6409 } else {
6410 if (got_object_id_cmp(id,
6411 &s->blamed_commit->id) == 0)
6412 break;
6413 err = got_object_qid_alloc(&s->blamed_commit,
6414 id);
6416 if (err)
6417 break;
6418 s->done = 1;
6419 thread_err = stop_blame(&s->blame);
6420 s->done = 0;
6421 if (thread_err)
6422 break;
6423 STAILQ_INSERT_HEAD(&s->blamed_commits,
6424 s->blamed_commit, entry);
6425 err = run_blame(view);
6426 if (err)
6427 break;
6428 break;
6430 case 'C': {
6431 struct got_object_qid *first;
6433 view->count = 0;
6434 first = STAILQ_FIRST(&s->blamed_commits);
6435 if (!got_object_id_cmp(&first->id, s->commit_id))
6436 break;
6437 s->done = 1;
6438 thread_err = stop_blame(&s->blame);
6439 s->done = 0;
6440 if (thread_err)
6441 break;
6442 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6443 got_object_qid_free(s->blamed_commit);
6444 s->blamed_commit =
6445 STAILQ_FIRST(&s->blamed_commits);
6446 err = run_blame(view);
6447 if (err)
6448 break;
6449 break;
6451 case 'L':
6452 view->count = 0;
6453 s->id_to_log = get_selected_commit_id(s->blame.lines,
6454 s->blame.nlines, s->first_displayed_line, s->selected_line);
6455 if (s->id_to_log)
6456 err = view_request_new(new_view, view, TOG_VIEW_LOG);
6457 break;
6458 case KEY_ENTER:
6459 case '\r': {
6460 struct got_object_id *id = NULL;
6461 struct got_object_qid *pid;
6462 struct got_commit_object *commit = NULL;
6464 view->count = 0;
6465 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6466 s->first_displayed_line, s->selected_line);
6467 if (id == NULL)
6468 break;
6469 err = got_object_open_as_commit(&commit, s->repo, id);
6470 if (err)
6471 break;
6472 pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6473 if (*new_view) {
6474 /* traversed from diff view, release diff resources */
6475 err = close_diff_view(*new_view);
6476 if (err)
6477 break;
6478 diff_view = *new_view;
6479 } else {
6480 if (view_is_parent_view(view))
6481 view_get_split(view, &begin_y, &begin_x);
6483 diff_view = view_open(0, 0, begin_y, begin_x,
6484 TOG_VIEW_DIFF);
6485 if (diff_view == NULL) {
6486 got_object_commit_close(commit);
6487 err = got_error_from_errno("view_open");
6488 break;
6491 err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6492 id, NULL, NULL, 3, 0, 0, view, s->repo);
6493 got_object_commit_close(commit);
6494 if (err) {
6495 view_close(diff_view);
6496 break;
6498 s->last_diffed_line = s->first_displayed_line - 1 +
6499 s->selected_line;
6500 if (*new_view)
6501 break; /* still open from active diff view */
6502 if (view_is_parent_view(view) &&
6503 view->mode == TOG_VIEW_SPLIT_HRZN) {
6504 err = view_init_hsplit(view, begin_y);
6505 if (err)
6506 break;
6509 view->focussed = 0;
6510 diff_view->focussed = 1;
6511 diff_view->mode = view->mode;
6512 diff_view->nlines = view->lines - begin_y;
6513 if (view_is_parent_view(view)) {
6514 view_transfer_size(diff_view, view);
6515 err = view_close_child(view);
6516 if (err)
6517 break;
6518 err = view_set_child(view, diff_view);
6519 if (err)
6520 break;
6521 view->focus_child = 1;
6522 } else
6523 *new_view = diff_view;
6524 if (err)
6525 break;
6526 break;
6528 case CTRL('d'):
6529 case 'd':
6530 nscroll /= 2;
6531 /* FALL THROUGH */
6532 case KEY_NPAGE:
6533 case CTRL('f'):
6534 case 'f':
6535 case ' ':
6536 if (s->last_displayed_line >= s->blame.nlines &&
6537 s->selected_line >= MIN(s->blame.nlines,
6538 view->nlines - 2)) {
6539 view->count = 0;
6540 break;
6542 if (s->last_displayed_line >= s->blame.nlines &&
6543 s->selected_line < view->nlines - 2) {
6544 s->selected_line +=
6545 MIN(nscroll, s->last_displayed_line -
6546 s->first_displayed_line - s->selected_line + 1);
6548 if (s->last_displayed_line + nscroll <= s->blame.nlines)
6549 s->first_displayed_line += nscroll;
6550 else
6551 s->first_displayed_line =
6552 s->blame.nlines - (view->nlines - 3);
6553 break;
6554 case KEY_RESIZE:
6555 if (s->selected_line > view->nlines - 2) {
6556 s->selected_line = MIN(s->blame.nlines,
6557 view->nlines - 2);
6559 break;
6560 default:
6561 view->count = 0;
6562 break;
6564 return thread_err ? thread_err : err;
6567 static const struct got_error *
6568 reset_blame_view(struct tog_view *view)
6570 const struct got_error *err;
6571 struct tog_blame_view_state *s = &view->state.blame;
6573 view->count = 0;
6574 s->done = 1;
6575 err = stop_blame(&s->blame);
6576 s->done = 0;
6577 if (err)
6578 return err;
6579 return run_blame(view);
6582 static const struct got_error *
6583 cmd_blame(int argc, char *argv[])
6585 const struct got_error *error;
6586 struct got_repository *repo = NULL;
6587 struct got_worktree *worktree = NULL;
6588 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6589 char *link_target = NULL;
6590 struct got_object_id *commit_id = NULL;
6591 struct got_commit_object *commit = NULL;
6592 char *commit_id_str = NULL;
6593 int ch;
6594 struct tog_view *view;
6595 int *pack_fds = NULL;
6597 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6598 switch (ch) {
6599 case 'c':
6600 commit_id_str = optarg;
6601 break;
6602 case 'r':
6603 repo_path = realpath(optarg, NULL);
6604 if (repo_path == NULL)
6605 return got_error_from_errno2("realpath",
6606 optarg);
6607 break;
6608 default:
6609 usage_blame();
6610 /* NOTREACHED */
6614 argc -= optind;
6615 argv += optind;
6617 if (argc != 1)
6618 usage_blame();
6620 error = got_repo_pack_fds_open(&pack_fds);
6621 if (error != NULL)
6622 goto done;
6624 if (repo_path == NULL) {
6625 cwd = getcwd(NULL, 0);
6626 if (cwd == NULL)
6627 return got_error_from_errno("getcwd");
6628 error = got_worktree_open(&worktree, cwd);
6629 if (error && error->code != GOT_ERR_NOT_WORKTREE)
6630 goto done;
6631 if (worktree)
6632 repo_path =
6633 strdup(got_worktree_get_repo_path(worktree));
6634 else
6635 repo_path = strdup(cwd);
6636 if (repo_path == NULL) {
6637 error = got_error_from_errno("strdup");
6638 goto done;
6642 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6643 if (error != NULL)
6644 goto done;
6646 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6647 worktree);
6648 if (error)
6649 goto done;
6651 init_curses();
6653 error = apply_unveil(got_repo_get_path(repo), NULL);
6654 if (error)
6655 goto done;
6657 error = tog_load_refs(repo, 0);
6658 if (error)
6659 goto done;
6661 if (commit_id_str == NULL) {
6662 struct got_reference *head_ref;
6663 error = got_ref_open(&head_ref, repo, worktree ?
6664 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6665 if (error != NULL)
6666 goto done;
6667 error = got_ref_resolve(&commit_id, repo, head_ref);
6668 got_ref_close(head_ref);
6669 } else {
6670 error = got_repo_match_object_id(&commit_id, NULL,
6671 commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6673 if (error != NULL)
6674 goto done;
6676 view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6677 if (view == NULL) {
6678 error = got_error_from_errno("view_open");
6679 goto done;
6682 error = got_object_open_as_commit(&commit, repo, commit_id);
6683 if (error)
6684 goto done;
6686 error = got_object_resolve_symlinks(&link_target, in_repo_path,
6687 commit, repo);
6688 if (error)
6689 goto done;
6691 error = open_blame_view(view, link_target ? link_target : in_repo_path,
6692 commit_id, repo);
6693 if (error)
6694 goto done;
6695 if (worktree) {
6696 /* Release work tree lock. */
6697 got_worktree_close(worktree);
6698 worktree = NULL;
6700 error = view_loop(view);
6701 done:
6702 free(repo_path);
6703 free(in_repo_path);
6704 free(link_target);
6705 free(cwd);
6706 free(commit_id);
6707 if (commit)
6708 got_object_commit_close(commit);
6709 if (worktree)
6710 got_worktree_close(worktree);
6711 if (repo) {
6712 const struct got_error *close_err = got_repo_close(repo);
6713 if (error == NULL)
6714 error = close_err;
6716 if (pack_fds) {
6717 const struct got_error *pack_err =
6718 got_repo_pack_fds_close(pack_fds);
6719 if (error == NULL)
6720 error = pack_err;
6722 tog_free_refs();
6723 return error;
6726 static const struct got_error *
6727 draw_tree_entries(struct tog_view *view, const char *parent_path)
6729 struct tog_tree_view_state *s = &view->state.tree;
6730 const struct got_error *err = NULL;
6731 struct got_tree_entry *te;
6732 wchar_t *wline;
6733 char *index = NULL;
6734 struct tog_color *tc;
6735 int width, n, nentries, i = 1;
6736 int limit = view->nlines;
6738 s->ndisplayed = 0;
6739 if (view_is_hsplit_top(view))
6740 --limit; /* border */
6742 werase(view->window);
6744 if (limit == 0)
6745 return NULL;
6747 err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6748 0, 0);
6749 if (err)
6750 return err;
6751 if (view_needs_focus_indication(view))
6752 wstandout(view->window);
6753 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6754 if (tc)
6755 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6756 waddwstr(view->window, wline);
6757 free(wline);
6758 wline = NULL;
6759 while (width++ < view->ncols)
6760 waddch(view->window, ' ');
6761 if (tc)
6762 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6763 if (view_needs_focus_indication(view))
6764 wstandend(view->window);
6765 if (--limit <= 0)
6766 return NULL;
6768 i += s->selected;
6769 if (s->first_displayed_entry) {
6770 i += got_tree_entry_get_index(s->first_displayed_entry);
6771 if (s->tree != s->root)
6772 ++i; /* account for ".." entry */
6774 nentries = got_object_tree_get_nentries(s->tree);
6775 if (asprintf(&index, "[%d/%d] %s",
6776 i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6777 return got_error_from_errno("asprintf");
6778 err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6779 free(index);
6780 if (err)
6781 return err;
6782 waddwstr(view->window, wline);
6783 free(wline);
6784 wline = NULL;
6785 if (width < view->ncols - 1)
6786 waddch(view->window, '\n');
6787 if (--limit <= 0)
6788 return NULL;
6789 waddch(view->window, '\n');
6790 if (--limit <= 0)
6791 return NULL;
6793 if (s->first_displayed_entry == NULL) {
6794 te = got_object_tree_get_first_entry(s->tree);
6795 if (s->selected == 0) {
6796 if (view->focussed)
6797 wstandout(view->window);
6798 s->selected_entry = NULL;
6800 waddstr(view->window, " ..\n"); /* parent directory */
6801 if (s->selected == 0 && view->focussed)
6802 wstandend(view->window);
6803 s->ndisplayed++;
6804 if (--limit <= 0)
6805 return NULL;
6806 n = 1;
6807 } else {
6808 n = 0;
6809 te = s->first_displayed_entry;
6812 for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6813 char *line = NULL, *id_str = NULL, *link_target = NULL;
6814 const char *modestr = "";
6815 mode_t mode;
6817 te = got_object_tree_get_entry(s->tree, i);
6818 mode = got_tree_entry_get_mode(te);
6820 if (s->show_ids) {
6821 err = got_object_id_str(&id_str,
6822 got_tree_entry_get_id(te));
6823 if (err)
6824 return got_error_from_errno(
6825 "got_object_id_str");
6827 if (got_object_tree_entry_is_submodule(te))
6828 modestr = "$";
6829 else if (S_ISLNK(mode)) {
6830 int i;
6832 err = got_tree_entry_get_symlink_target(&link_target,
6833 te, s->repo);
6834 if (err) {
6835 free(id_str);
6836 return err;
6838 for (i = 0; i < strlen(link_target); i++) {
6839 if (!isprint((unsigned char)link_target[i]))
6840 link_target[i] = '?';
6842 modestr = "@";
6844 else if (S_ISDIR(mode))
6845 modestr = "/";
6846 else if (mode & S_IXUSR)
6847 modestr = "*";
6848 if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6849 got_tree_entry_get_name(te), modestr,
6850 link_target ? " -> ": "",
6851 link_target ? link_target : "") == -1) {
6852 free(id_str);
6853 free(link_target);
6854 return got_error_from_errno("asprintf");
6856 free(id_str);
6857 free(link_target);
6858 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6859 0, 0);
6860 if (err) {
6861 free(line);
6862 break;
6864 if (n == s->selected) {
6865 if (view->focussed)
6866 wstandout(view->window);
6867 s->selected_entry = te;
6869 tc = match_color(&s->colors, line);
6870 if (tc)
6871 wattr_on(view->window,
6872 COLOR_PAIR(tc->colorpair), NULL);
6873 waddwstr(view->window, wline);
6874 if (tc)
6875 wattr_off(view->window,
6876 COLOR_PAIR(tc->colorpair), NULL);
6877 if (width < view->ncols - 1)
6878 waddch(view->window, '\n');
6879 if (n == s->selected && view->focussed)
6880 wstandend(view->window);
6881 free(line);
6882 free(wline);
6883 wline = NULL;
6884 n++;
6885 s->ndisplayed++;
6886 s->last_displayed_entry = te;
6887 if (--limit <= 0)
6888 break;
6891 return err;
6894 static void
6895 tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6897 struct got_tree_entry *te;
6898 int isroot = s->tree == s->root;
6899 int i = 0;
6901 if (s->first_displayed_entry == NULL)
6902 return;
6904 te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6905 while (i++ < maxscroll) {
6906 if (te == NULL) {
6907 if (!isroot)
6908 s->first_displayed_entry = NULL;
6909 break;
6911 s->first_displayed_entry = te;
6912 te = got_tree_entry_get_prev(s->tree, te);
6916 static const struct got_error *
6917 tree_scroll_down(struct tog_view *view, int maxscroll)
6919 struct tog_tree_view_state *s = &view->state.tree;
6920 struct got_tree_entry *next, *last;
6921 int n = 0;
6923 if (s->first_displayed_entry)
6924 next = got_tree_entry_get_next(s->tree,
6925 s->first_displayed_entry);
6926 else
6927 next = got_object_tree_get_first_entry(s->tree);
6929 last = s->last_displayed_entry;
6930 while (next && n++ < maxscroll) {
6931 if (last) {
6932 s->last_displayed_entry = last;
6933 last = got_tree_entry_get_next(s->tree, last);
6935 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6936 s->first_displayed_entry = next;
6937 next = got_tree_entry_get_next(s->tree, next);
6941 return NULL;
6944 static const struct got_error *
6945 tree_entry_path(char **path, struct tog_parent_trees *parents,
6946 struct got_tree_entry *te)
6948 const struct got_error *err = NULL;
6949 struct tog_parent_tree *pt;
6950 size_t len = 2; /* for leading slash and NUL */
6952 TAILQ_FOREACH(pt, parents, entry)
6953 len += strlen(got_tree_entry_get_name(pt->selected_entry))
6954 + 1 /* slash */;
6955 if (te)
6956 len += strlen(got_tree_entry_get_name(te));
6958 *path = calloc(1, len);
6959 if (path == NULL)
6960 return got_error_from_errno("calloc");
6962 (*path)[0] = '/';
6963 pt = TAILQ_LAST(parents, tog_parent_trees);
6964 while (pt) {
6965 const char *name = got_tree_entry_get_name(pt->selected_entry);
6966 if (strlcat(*path, name, len) >= len) {
6967 err = got_error(GOT_ERR_NO_SPACE);
6968 goto done;
6970 if (strlcat(*path, "/", len) >= len) {
6971 err = got_error(GOT_ERR_NO_SPACE);
6972 goto done;
6974 pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6976 if (te) {
6977 if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6978 err = got_error(GOT_ERR_NO_SPACE);
6979 goto done;
6982 done:
6983 if (err) {
6984 free(*path);
6985 *path = NULL;
6987 return err;
6990 static const struct got_error *
6991 blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6992 struct got_tree_entry *te, struct tog_parent_trees *parents,
6993 struct got_object_id *commit_id, struct got_repository *repo)
6995 const struct got_error *err = NULL;
6996 char *path;
6997 struct tog_view *blame_view;
6999 *new_view = NULL;
7001 err = tree_entry_path(&path, parents, te);
7002 if (err)
7003 return err;
7005 blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
7006 if (blame_view == NULL) {
7007 err = got_error_from_errno("view_open");
7008 goto done;
7011 err = open_blame_view(blame_view, path, commit_id, repo);
7012 if (err) {
7013 if (err->code == GOT_ERR_CANCELLED)
7014 err = NULL;
7015 view_close(blame_view);
7016 } else
7017 *new_view = blame_view;
7018 done:
7019 free(path);
7020 return err;
7023 static const struct got_error *
7024 log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
7025 struct tog_tree_view_state *s)
7027 struct tog_view *log_view;
7028 const struct got_error *err = NULL;
7029 char *path;
7031 *new_view = NULL;
7033 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7034 if (log_view == NULL)
7035 return got_error_from_errno("view_open");
7037 err = tree_entry_path(&path, &s->parents, s->selected_entry);
7038 if (err)
7039 return err;
7041 err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
7042 path, 0);
7043 if (err)
7044 view_close(log_view);
7045 else
7046 *new_view = log_view;
7047 free(path);
7048 return err;
7051 static const struct got_error *
7052 open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
7053 const char *head_ref_name, struct got_repository *repo)
7055 const struct got_error *err = NULL;
7056 char *commit_id_str = NULL;
7057 struct tog_tree_view_state *s = &view->state.tree;
7058 struct got_commit_object *commit = NULL;
7060 TAILQ_INIT(&s->parents);
7061 STAILQ_INIT(&s->colors);
7063 s->commit_id = got_object_id_dup(commit_id);
7064 if (s->commit_id == NULL)
7065 return got_error_from_errno("got_object_id_dup");
7067 err = got_object_open_as_commit(&commit, repo, commit_id);
7068 if (err)
7069 goto done;
7072 * The root is opened here and will be closed when the view is closed.
7073 * Any visited subtrees and their path-wise parents are opened and
7074 * closed on demand.
7076 err = got_object_open_as_tree(&s->root, repo,
7077 got_object_commit_get_tree_id(commit));
7078 if (err)
7079 goto done;
7080 s->tree = s->root;
7082 err = got_object_id_str(&commit_id_str, commit_id);
7083 if (err != NULL)
7084 goto done;
7086 if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7087 err = got_error_from_errno("asprintf");
7088 goto done;
7091 s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7092 s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7093 if (head_ref_name) {
7094 s->head_ref_name = strdup(head_ref_name);
7095 if (s->head_ref_name == NULL) {
7096 err = got_error_from_errno("strdup");
7097 goto done;
7100 s->repo = repo;
7102 if (has_colors() && getenv("TOG_COLORS") != NULL) {
7103 err = add_color(&s->colors, "\\$$",
7104 TOG_COLOR_TREE_SUBMODULE,
7105 get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7106 if (err)
7107 goto done;
7108 err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7109 get_color_value("TOG_COLOR_TREE_SYMLINK"));
7110 if (err)
7111 goto done;
7112 err = add_color(&s->colors, "/$",
7113 TOG_COLOR_TREE_DIRECTORY,
7114 get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7115 if (err)
7116 goto done;
7118 err = add_color(&s->colors, "\\*$",
7119 TOG_COLOR_TREE_EXECUTABLE,
7120 get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7121 if (err)
7122 goto done;
7124 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7125 get_color_value("TOG_COLOR_COMMIT"));
7126 if (err)
7127 goto done;
7130 view->show = show_tree_view;
7131 view->input = input_tree_view;
7132 view->close = close_tree_view;
7133 view->search_start = search_start_tree_view;
7134 view->search_next = search_next_tree_view;
7135 done:
7136 free(commit_id_str);
7137 if (commit)
7138 got_object_commit_close(commit);
7139 if (err)
7140 close_tree_view(view);
7141 return err;
7144 static const struct got_error *
7145 close_tree_view(struct tog_view *view)
7147 struct tog_tree_view_state *s = &view->state.tree;
7149 free_colors(&s->colors);
7150 free(s->tree_label);
7151 s->tree_label = NULL;
7152 free(s->commit_id);
7153 s->commit_id = NULL;
7154 free(s->head_ref_name);
7155 s->head_ref_name = NULL;
7156 while (!TAILQ_EMPTY(&s->parents)) {
7157 struct tog_parent_tree *parent;
7158 parent = TAILQ_FIRST(&s->parents);
7159 TAILQ_REMOVE(&s->parents, parent, entry);
7160 if (parent->tree != s->root)
7161 got_object_tree_close(parent->tree);
7162 free(parent);
7165 if (s->tree != NULL && s->tree != s->root)
7166 got_object_tree_close(s->tree);
7167 if (s->root)
7168 got_object_tree_close(s->root);
7169 return NULL;
7172 static const struct got_error *
7173 search_start_tree_view(struct tog_view *view)
7175 struct tog_tree_view_state *s = &view->state.tree;
7177 s->matched_entry = NULL;
7178 return NULL;
7181 static int
7182 match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7184 regmatch_t regmatch;
7186 return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7187 0) == 0;
7190 static const struct got_error *
7191 search_next_tree_view(struct tog_view *view)
7193 struct tog_tree_view_state *s = &view->state.tree;
7194 struct got_tree_entry *te = NULL;
7196 if (!view->searching) {
7197 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7198 return NULL;
7201 if (s->matched_entry) {
7202 if (view->searching == TOG_SEARCH_FORWARD) {
7203 if (s->selected_entry)
7204 te = got_tree_entry_get_next(s->tree,
7205 s->selected_entry);
7206 else
7207 te = got_object_tree_get_first_entry(s->tree);
7208 } else {
7209 if (s->selected_entry == NULL)
7210 te = got_object_tree_get_last_entry(s->tree);
7211 else
7212 te = got_tree_entry_get_prev(s->tree,
7213 s->selected_entry);
7215 } else {
7216 if (s->selected_entry)
7217 te = s->selected_entry;
7218 else if (view->searching == TOG_SEARCH_FORWARD)
7219 te = got_object_tree_get_first_entry(s->tree);
7220 else
7221 te = got_object_tree_get_last_entry(s->tree);
7224 while (1) {
7225 if (te == NULL) {
7226 if (s->matched_entry == NULL) {
7227 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7228 return NULL;
7230 if (view->searching == TOG_SEARCH_FORWARD)
7231 te = got_object_tree_get_first_entry(s->tree);
7232 else
7233 te = got_object_tree_get_last_entry(s->tree);
7236 if (match_tree_entry(te, &view->regex)) {
7237 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7238 s->matched_entry = te;
7239 break;
7242 if (view->searching == TOG_SEARCH_FORWARD)
7243 te = got_tree_entry_get_next(s->tree, te);
7244 else
7245 te = got_tree_entry_get_prev(s->tree, te);
7248 if (s->matched_entry) {
7249 s->first_displayed_entry = s->matched_entry;
7250 s->selected = 0;
7253 return NULL;
7256 static const struct got_error *
7257 show_tree_view(struct tog_view *view)
7259 const struct got_error *err = NULL;
7260 struct tog_tree_view_state *s = &view->state.tree;
7261 char *parent_path;
7263 err = tree_entry_path(&parent_path, &s->parents, NULL);
7264 if (err)
7265 return err;
7267 err = draw_tree_entries(view, parent_path);
7268 free(parent_path);
7270 view_border(view);
7271 return err;
7274 static const struct got_error *
7275 tree_goto_line(struct tog_view *view, int nlines)
7277 const struct got_error *err = NULL;
7278 struct tog_tree_view_state *s = &view->state.tree;
7279 struct got_tree_entry **fte, **lte, **ste;
7280 int g, last, first = 1, i = 1;
7281 int root = s->tree == s->root;
7282 int off = root ? 1 : 2;
7284 g = view->gline;
7285 view->gline = 0;
7287 if (g == 0)
7288 g = 1;
7289 else if (g > got_object_tree_get_nentries(s->tree))
7290 g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7292 fte = &s->first_displayed_entry;
7293 lte = &s->last_displayed_entry;
7294 ste = &s->selected_entry;
7296 if (*fte != NULL) {
7297 first = got_tree_entry_get_index(*fte);
7298 first += off; /* account for ".." */
7300 last = got_tree_entry_get_index(*lte);
7301 last += off;
7303 if (g >= first && g <= last && g - first < nlines) {
7304 s->selected = g - first;
7305 return NULL; /* gline is on the current page */
7308 if (*ste != NULL) {
7309 i = got_tree_entry_get_index(*ste);
7310 i += off;
7313 if (i < g) {
7314 err = tree_scroll_down(view, g - i);
7315 if (err)
7316 return err;
7317 if (got_tree_entry_get_index(*lte) >=
7318 got_object_tree_get_nentries(s->tree) - 1 &&
7319 first + s->selected < g &&
7320 s->selected < s->ndisplayed - 1) {
7321 first = got_tree_entry_get_index(*fte);
7322 first += off;
7323 s->selected = g - first;
7325 } else if (i > g)
7326 tree_scroll_up(s, i - g);
7328 if (g < nlines &&
7329 (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7330 s->selected = g - 1;
7332 return NULL;
7335 static const struct got_error *
7336 input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7338 const struct got_error *err = NULL;
7339 struct tog_tree_view_state *s = &view->state.tree;
7340 struct got_tree_entry *te;
7341 int n, nscroll = view->nlines - 3;
7343 if (view->gline)
7344 return tree_goto_line(view, nscroll);
7346 switch (ch) {
7347 case 'i':
7348 s->show_ids = !s->show_ids;
7349 view->count = 0;
7350 break;
7351 case 'L':
7352 view->count = 0;
7353 if (!s->selected_entry)
7354 break;
7355 err = view_request_new(new_view, view, TOG_VIEW_LOG);
7356 break;
7357 case 'R':
7358 view->count = 0;
7359 err = view_request_new(new_view, view, TOG_VIEW_REF);
7360 break;
7361 case 'g':
7362 case '=':
7363 case KEY_HOME:
7364 s->selected = 0;
7365 view->count = 0;
7366 if (s->tree == s->root)
7367 s->first_displayed_entry =
7368 got_object_tree_get_first_entry(s->tree);
7369 else
7370 s->first_displayed_entry = NULL;
7371 break;
7372 case 'G':
7373 case '*':
7374 case KEY_END: {
7375 int eos = view->nlines - 3;
7377 if (view->mode == TOG_VIEW_SPLIT_HRZN)
7378 --eos; /* border */
7379 s->selected = 0;
7380 view->count = 0;
7381 te = got_object_tree_get_last_entry(s->tree);
7382 for (n = 0; n < eos; n++) {
7383 if (te == NULL) {
7384 if (s->tree != s->root) {
7385 s->first_displayed_entry = NULL;
7386 n++;
7388 break;
7390 s->first_displayed_entry = te;
7391 te = got_tree_entry_get_prev(s->tree, te);
7393 if (n > 0)
7394 s->selected = n - 1;
7395 break;
7397 case 'k':
7398 case KEY_UP:
7399 case CTRL('p'):
7400 if (s->selected > 0) {
7401 s->selected--;
7402 break;
7404 tree_scroll_up(s, 1);
7405 if (s->selected_entry == NULL ||
7406 (s->tree == s->root && s->selected_entry ==
7407 got_object_tree_get_first_entry(s->tree)))
7408 view->count = 0;
7409 break;
7410 case CTRL('u'):
7411 case 'u':
7412 nscroll /= 2;
7413 /* FALL THROUGH */
7414 case KEY_PPAGE:
7415 case CTRL('b'):
7416 case 'b':
7417 if (s->tree == s->root) {
7418 if (got_object_tree_get_first_entry(s->tree) ==
7419 s->first_displayed_entry)
7420 s->selected -= MIN(s->selected, nscroll);
7421 } else {
7422 if (s->first_displayed_entry == NULL)
7423 s->selected -= MIN(s->selected, nscroll);
7425 tree_scroll_up(s, MAX(0, nscroll));
7426 if (s->selected_entry == NULL ||
7427 (s->tree == s->root && s->selected_entry ==
7428 got_object_tree_get_first_entry(s->tree)))
7429 view->count = 0;
7430 break;
7431 case 'j':
7432 case KEY_DOWN:
7433 case CTRL('n'):
7434 if (s->selected < s->ndisplayed - 1) {
7435 s->selected++;
7436 break;
7438 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7439 == NULL) {
7440 /* can't scroll any further */
7441 view->count = 0;
7442 break;
7444 tree_scroll_down(view, 1);
7445 break;
7446 case CTRL('d'):
7447 case 'd':
7448 nscroll /= 2;
7449 /* FALL THROUGH */
7450 case KEY_NPAGE:
7451 case CTRL('f'):
7452 case 'f':
7453 case ' ':
7454 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7455 == NULL) {
7456 /* can't scroll any further; move cursor down */
7457 if (s->selected < s->ndisplayed - 1)
7458 s->selected += MIN(nscroll,
7459 s->ndisplayed - s->selected - 1);
7460 else
7461 view->count = 0;
7462 break;
7464 tree_scroll_down(view, nscroll);
7465 break;
7466 case KEY_ENTER:
7467 case '\r':
7468 case KEY_BACKSPACE:
7469 if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7470 struct tog_parent_tree *parent;
7471 /* user selected '..' */
7472 if (s->tree == s->root) {
7473 view->count = 0;
7474 break;
7476 parent = TAILQ_FIRST(&s->parents);
7477 TAILQ_REMOVE(&s->parents, parent,
7478 entry);
7479 got_object_tree_close(s->tree);
7480 s->tree = parent->tree;
7481 s->first_displayed_entry =
7482 parent->first_displayed_entry;
7483 s->selected_entry =
7484 parent->selected_entry;
7485 s->selected = parent->selected;
7486 if (s->selected > view->nlines - 3) {
7487 err = offset_selection_down(view);
7488 if (err)
7489 break;
7491 free(parent);
7492 } else if (S_ISDIR(got_tree_entry_get_mode(
7493 s->selected_entry))) {
7494 struct got_tree_object *subtree;
7495 view->count = 0;
7496 err = got_object_open_as_tree(&subtree, s->repo,
7497 got_tree_entry_get_id(s->selected_entry));
7498 if (err)
7499 break;
7500 err = tree_view_visit_subtree(s, subtree);
7501 if (err) {
7502 got_object_tree_close(subtree);
7503 break;
7505 } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7506 err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7507 break;
7508 case KEY_RESIZE:
7509 if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7510 s->selected = view->nlines - 4;
7511 view->count = 0;
7512 break;
7513 default:
7514 view->count = 0;
7515 break;
7518 return err;
7521 __dead static void
7522 usage_tree(void)
7524 endwin();
7525 fprintf(stderr,
7526 "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7527 getprogname());
7528 exit(1);
7531 static const struct got_error *
7532 cmd_tree(int argc, char *argv[])
7534 const struct got_error *error;
7535 struct got_repository *repo = NULL;
7536 struct got_worktree *worktree = NULL;
7537 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7538 struct got_object_id *commit_id = NULL;
7539 struct got_commit_object *commit = NULL;
7540 const char *commit_id_arg = NULL;
7541 char *label = NULL;
7542 struct got_reference *ref = NULL;
7543 const char *head_ref_name = NULL;
7544 int ch;
7545 struct tog_view *view;
7546 int *pack_fds = NULL;
7548 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7549 switch (ch) {
7550 case 'c':
7551 commit_id_arg = optarg;
7552 break;
7553 case 'r':
7554 repo_path = realpath(optarg, NULL);
7555 if (repo_path == NULL)
7556 return got_error_from_errno2("realpath",
7557 optarg);
7558 break;
7559 default:
7560 usage_tree();
7561 /* NOTREACHED */
7565 argc -= optind;
7566 argv += optind;
7568 if (argc > 1)
7569 usage_tree();
7571 error = got_repo_pack_fds_open(&pack_fds);
7572 if (error != NULL)
7573 goto done;
7575 if (repo_path == NULL) {
7576 cwd = getcwd(NULL, 0);
7577 if (cwd == NULL)
7578 return got_error_from_errno("getcwd");
7579 error = got_worktree_open(&worktree, cwd);
7580 if (error && error->code != GOT_ERR_NOT_WORKTREE)
7581 goto done;
7582 if (worktree)
7583 repo_path =
7584 strdup(got_worktree_get_repo_path(worktree));
7585 else
7586 repo_path = strdup(cwd);
7587 if (repo_path == NULL) {
7588 error = got_error_from_errno("strdup");
7589 goto done;
7593 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7594 if (error != NULL)
7595 goto done;
7597 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7598 repo, worktree);
7599 if (error)
7600 goto done;
7602 init_curses();
7604 error = apply_unveil(got_repo_get_path(repo), NULL);
7605 if (error)
7606 goto done;
7608 error = tog_load_refs(repo, 0);
7609 if (error)
7610 goto done;
7612 if (commit_id_arg == NULL) {
7613 error = got_repo_match_object_id(&commit_id, &label,
7614 worktree ? got_worktree_get_head_ref_name(worktree) :
7615 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7616 if (error)
7617 goto done;
7618 head_ref_name = label;
7619 } else {
7620 error = got_ref_open(&ref, repo, commit_id_arg, 0);
7621 if (error == NULL)
7622 head_ref_name = got_ref_get_name(ref);
7623 else if (error->code != GOT_ERR_NOT_REF)
7624 goto done;
7625 error = got_repo_match_object_id(&commit_id, NULL,
7626 commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7627 if (error)
7628 goto done;
7631 error = got_object_open_as_commit(&commit, repo, commit_id);
7632 if (error)
7633 goto done;
7635 view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7636 if (view == NULL) {
7637 error = got_error_from_errno("view_open");
7638 goto done;
7640 error = open_tree_view(view, commit_id, head_ref_name, repo);
7641 if (error)
7642 goto done;
7643 if (!got_path_is_root_dir(in_repo_path)) {
7644 error = tree_view_walk_path(&view->state.tree, commit,
7645 in_repo_path);
7646 if (error)
7647 goto done;
7650 if (worktree) {
7651 /* Release work tree lock. */
7652 got_worktree_close(worktree);
7653 worktree = NULL;
7655 error = view_loop(view);
7656 done:
7657 free(repo_path);
7658 free(cwd);
7659 free(commit_id);
7660 free(label);
7661 if (ref)
7662 got_ref_close(ref);
7663 if (repo) {
7664 const struct got_error *close_err = got_repo_close(repo);
7665 if (error == NULL)
7666 error = close_err;
7668 if (pack_fds) {
7669 const struct got_error *pack_err =
7670 got_repo_pack_fds_close(pack_fds);
7671 if (error == NULL)
7672 error = pack_err;
7674 tog_free_refs();
7675 return error;
7678 static const struct got_error *
7679 ref_view_load_refs(struct tog_ref_view_state *s)
7681 struct got_reflist_entry *sre;
7682 struct tog_reflist_entry *re;
7684 s->nrefs = 0;
7685 TAILQ_FOREACH(sre, &tog_refs, entry) {
7686 if (strncmp(got_ref_get_name(sre->ref),
7687 "refs/got/", 9) == 0 &&
7688 strncmp(got_ref_get_name(sre->ref),
7689 "refs/got/backup/", 16) != 0)
7690 continue;
7692 re = malloc(sizeof(*re));
7693 if (re == NULL)
7694 return got_error_from_errno("malloc");
7696 re->ref = got_ref_dup(sre->ref);
7697 if (re->ref == NULL)
7698 return got_error_from_errno("got_ref_dup");
7699 re->idx = s->nrefs++;
7700 TAILQ_INSERT_TAIL(&s->refs, re, entry);
7703 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7704 return NULL;
7707 static void
7708 ref_view_free_refs(struct tog_ref_view_state *s)
7710 struct tog_reflist_entry *re;
7712 while (!TAILQ_EMPTY(&s->refs)) {
7713 re = TAILQ_FIRST(&s->refs);
7714 TAILQ_REMOVE(&s->refs, re, entry);
7715 got_ref_close(re->ref);
7716 free(re);
7720 static const struct got_error *
7721 open_ref_view(struct tog_view *view, struct got_repository *repo)
7723 const struct got_error *err = NULL;
7724 struct tog_ref_view_state *s = &view->state.ref;
7726 s->selected_entry = 0;
7727 s->repo = repo;
7729 TAILQ_INIT(&s->refs);
7730 STAILQ_INIT(&s->colors);
7732 err = ref_view_load_refs(s);
7733 if (err)
7734 return err;
7736 if (has_colors() && getenv("TOG_COLORS") != NULL) {
7737 err = add_color(&s->colors, "^refs/heads/",
7738 TOG_COLOR_REFS_HEADS,
7739 get_color_value("TOG_COLOR_REFS_HEADS"));
7740 if (err)
7741 goto done;
7743 err = add_color(&s->colors, "^refs/tags/",
7744 TOG_COLOR_REFS_TAGS,
7745 get_color_value("TOG_COLOR_REFS_TAGS"));
7746 if (err)
7747 goto done;
7749 err = add_color(&s->colors, "^refs/remotes/",
7750 TOG_COLOR_REFS_REMOTES,
7751 get_color_value("TOG_COLOR_REFS_REMOTES"));
7752 if (err)
7753 goto done;
7755 err = add_color(&s->colors, "^refs/got/backup/",
7756 TOG_COLOR_REFS_BACKUP,
7757 get_color_value("TOG_COLOR_REFS_BACKUP"));
7758 if (err)
7759 goto done;
7762 view->show = show_ref_view;
7763 view->input = input_ref_view;
7764 view->close = close_ref_view;
7765 view->search_start = search_start_ref_view;
7766 view->search_next = search_next_ref_view;
7767 done:
7768 if (err)
7769 free_colors(&s->colors);
7770 return err;
7773 static const struct got_error *
7774 close_ref_view(struct tog_view *view)
7776 struct tog_ref_view_state *s = &view->state.ref;
7778 ref_view_free_refs(s);
7779 free_colors(&s->colors);
7781 return NULL;
7784 static const struct got_error *
7785 resolve_reflist_entry(struct got_object_id **commit_id,
7786 struct tog_reflist_entry *re, struct got_repository *repo)
7788 const struct got_error *err = NULL;
7789 struct got_object_id *obj_id;
7790 struct got_tag_object *tag = NULL;
7791 int obj_type;
7793 *commit_id = NULL;
7795 err = got_ref_resolve(&obj_id, repo, re->ref);
7796 if (err)
7797 return err;
7799 err = got_object_get_type(&obj_type, repo, obj_id);
7800 if (err)
7801 goto done;
7803 switch (obj_type) {
7804 case GOT_OBJ_TYPE_COMMIT:
7805 *commit_id = obj_id;
7806 break;
7807 case GOT_OBJ_TYPE_TAG:
7808 err = got_object_open_as_tag(&tag, repo, obj_id);
7809 if (err)
7810 goto done;
7811 free(obj_id);
7812 err = got_object_get_type(&obj_type, repo,
7813 got_object_tag_get_object_id(tag));
7814 if (err)
7815 goto done;
7816 if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7817 err = got_error(GOT_ERR_OBJ_TYPE);
7818 goto done;
7820 *commit_id = got_object_id_dup(
7821 got_object_tag_get_object_id(tag));
7822 if (*commit_id == NULL) {
7823 err = got_error_from_errno("got_object_id_dup");
7824 goto done;
7826 break;
7827 default:
7828 err = got_error(GOT_ERR_OBJ_TYPE);
7829 break;
7832 done:
7833 if (tag)
7834 got_object_tag_close(tag);
7835 if (err) {
7836 free(*commit_id);
7837 *commit_id = NULL;
7839 return err;
7842 static const struct got_error *
7843 log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7844 struct tog_reflist_entry *re, struct got_repository *repo)
7846 struct tog_view *log_view;
7847 const struct got_error *err = NULL;
7848 struct got_object_id *commit_id = NULL;
7850 *new_view = NULL;
7852 err = resolve_reflist_entry(&commit_id, re, repo);
7853 if (err) {
7854 if (err->code != GOT_ERR_OBJ_TYPE)
7855 return err;
7856 else
7857 return NULL;
7860 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7861 if (log_view == NULL) {
7862 err = got_error_from_errno("view_open");
7863 goto done;
7866 err = open_log_view(log_view, commit_id, repo,
7867 got_ref_get_name(re->ref), "", 0);
7868 done:
7869 if (err)
7870 view_close(log_view);
7871 else
7872 *new_view = log_view;
7873 free(commit_id);
7874 return err;
7877 static void
7878 ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7880 struct tog_reflist_entry *re;
7881 int i = 0;
7883 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7884 return;
7886 re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7887 while (i++ < maxscroll) {
7888 if (re == NULL)
7889 break;
7890 s->first_displayed_entry = re;
7891 re = TAILQ_PREV(re, tog_reflist_head, entry);
7895 static const struct got_error *
7896 ref_scroll_down(struct tog_view *view, int maxscroll)
7898 struct tog_ref_view_state *s = &view->state.ref;
7899 struct tog_reflist_entry *next, *last;
7900 int n = 0;
7902 if (s->first_displayed_entry)
7903 next = TAILQ_NEXT(s->first_displayed_entry, entry);
7904 else
7905 next = TAILQ_FIRST(&s->refs);
7907 last = s->last_displayed_entry;
7908 while (next && n++ < maxscroll) {
7909 if (last) {
7910 s->last_displayed_entry = last;
7911 last = TAILQ_NEXT(last, entry);
7913 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7914 s->first_displayed_entry = next;
7915 next = TAILQ_NEXT(next, entry);
7919 return NULL;
7922 static const struct got_error *
7923 search_start_ref_view(struct tog_view *view)
7925 struct tog_ref_view_state *s = &view->state.ref;
7927 s->matched_entry = NULL;
7928 return NULL;
7931 static int
7932 match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7934 regmatch_t regmatch;
7936 return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7937 0) == 0;
7940 static const struct got_error *
7941 search_next_ref_view(struct tog_view *view)
7943 struct tog_ref_view_state *s = &view->state.ref;
7944 struct tog_reflist_entry *re = NULL;
7946 if (!view->searching) {
7947 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7948 return NULL;
7951 if (s->matched_entry) {
7952 if (view->searching == TOG_SEARCH_FORWARD) {
7953 if (s->selected_entry)
7954 re = TAILQ_NEXT(s->selected_entry, entry);
7955 else
7956 re = TAILQ_PREV(s->selected_entry,
7957 tog_reflist_head, entry);
7958 } else {
7959 if (s->selected_entry == NULL)
7960 re = TAILQ_LAST(&s->refs, tog_reflist_head);
7961 else
7962 re = TAILQ_PREV(s->selected_entry,
7963 tog_reflist_head, entry);
7965 } else {
7966 if (s->selected_entry)
7967 re = s->selected_entry;
7968 else if (view->searching == TOG_SEARCH_FORWARD)
7969 re = TAILQ_FIRST(&s->refs);
7970 else
7971 re = TAILQ_LAST(&s->refs, tog_reflist_head);
7974 while (1) {
7975 if (re == NULL) {
7976 if (s->matched_entry == NULL) {
7977 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7978 return NULL;
7980 if (view->searching == TOG_SEARCH_FORWARD)
7981 re = TAILQ_FIRST(&s->refs);
7982 else
7983 re = TAILQ_LAST(&s->refs, tog_reflist_head);
7986 if (match_reflist_entry(re, &view->regex)) {
7987 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7988 s->matched_entry = re;
7989 break;
7992 if (view->searching == TOG_SEARCH_FORWARD)
7993 re = TAILQ_NEXT(re, entry);
7994 else
7995 re = TAILQ_PREV(re, tog_reflist_head, entry);
7998 if (s->matched_entry) {
7999 s->first_displayed_entry = s->matched_entry;
8000 s->selected = 0;
8003 return NULL;
8006 static const struct got_error *
8007 show_ref_view(struct tog_view *view)
8009 const struct got_error *err = NULL;
8010 struct tog_ref_view_state *s = &view->state.ref;
8011 struct tog_reflist_entry *re;
8012 char *line = NULL;
8013 wchar_t *wline;
8014 struct tog_color *tc;
8015 int width, n;
8016 int limit = view->nlines;
8018 werase(view->window);
8020 s->ndisplayed = 0;
8021 if (view_is_hsplit_top(view))
8022 --limit; /* border */
8024 if (limit == 0)
8025 return NULL;
8027 re = s->first_displayed_entry;
8029 if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
8030 s->nrefs) == -1)
8031 return got_error_from_errno("asprintf");
8033 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
8034 if (err) {
8035 free(line);
8036 return err;
8038 if (view_needs_focus_indication(view))
8039 wstandout(view->window);
8040 waddwstr(view->window, wline);
8041 while (width++ < view->ncols)
8042 waddch(view->window, ' ');
8043 if (view_needs_focus_indication(view))
8044 wstandend(view->window);
8045 free(wline);
8046 wline = NULL;
8047 free(line);
8048 line = NULL;
8049 if (--limit <= 0)
8050 return NULL;
8052 n = 0;
8053 while (re && limit > 0) {
8054 char *line = NULL;
8055 char ymd[13]; /* YYYY-MM-DD + " " + NUL */
8057 if (s->show_date) {
8058 struct got_commit_object *ci;
8059 struct got_tag_object *tag;
8060 struct got_object_id *id;
8061 struct tm tm;
8062 time_t t;
8064 err = got_ref_resolve(&id, s->repo, re->ref);
8065 if (err)
8066 return err;
8067 err = got_object_open_as_tag(&tag, s->repo, id);
8068 if (err) {
8069 if (err->code != GOT_ERR_OBJ_TYPE) {
8070 free(id);
8071 return err;
8073 err = got_object_open_as_commit(&ci, s->repo,
8074 id);
8075 if (err) {
8076 free(id);
8077 return err;
8079 t = got_object_commit_get_committer_time(ci);
8080 got_object_commit_close(ci);
8081 } else {
8082 t = got_object_tag_get_tagger_time(tag);
8083 got_object_tag_close(tag);
8085 free(id);
8086 if (gmtime_r(&t, &tm) == NULL)
8087 return got_error_from_errno("gmtime_r");
8088 if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8089 return got_error(GOT_ERR_NO_SPACE);
8091 if (got_ref_is_symbolic(re->ref)) {
8092 if (asprintf(&line, "%s%s -> %s", s->show_date ?
8093 ymd : "", got_ref_get_name(re->ref),
8094 got_ref_get_symref_target(re->ref)) == -1)
8095 return got_error_from_errno("asprintf");
8096 } else if (s->show_ids) {
8097 struct got_object_id *id;
8098 char *id_str;
8099 err = got_ref_resolve(&id, s->repo, re->ref);
8100 if (err)
8101 return err;
8102 err = got_object_id_str(&id_str, id);
8103 if (err) {
8104 free(id);
8105 return err;
8107 if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8108 got_ref_get_name(re->ref), id_str) == -1) {
8109 err = got_error_from_errno("asprintf");
8110 free(id);
8111 free(id_str);
8112 return err;
8114 free(id);
8115 free(id_str);
8116 } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8117 got_ref_get_name(re->ref)) == -1)
8118 return got_error_from_errno("asprintf");
8120 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
8121 0, 0);
8122 if (err) {
8123 free(line);
8124 return err;
8126 if (n == s->selected) {
8127 if (view->focussed)
8128 wstandout(view->window);
8129 s->selected_entry = re;
8131 tc = match_color(&s->colors, got_ref_get_name(re->ref));
8132 if (tc)
8133 wattr_on(view->window,
8134 COLOR_PAIR(tc->colorpair), NULL);
8135 waddwstr(view->window, wline);
8136 if (tc)
8137 wattr_off(view->window,
8138 COLOR_PAIR(tc->colorpair), NULL);
8139 if (width < view->ncols - 1)
8140 waddch(view->window, '\n');
8141 if (n == s->selected && view->focussed)
8142 wstandend(view->window);
8143 free(line);
8144 free(wline);
8145 wline = NULL;
8146 n++;
8147 s->ndisplayed++;
8148 s->last_displayed_entry = re;
8150 limit--;
8151 re = TAILQ_NEXT(re, entry);
8154 view_border(view);
8155 return err;
8158 static const struct got_error *
8159 browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8160 struct tog_reflist_entry *re, struct got_repository *repo)
8162 const struct got_error *err = NULL;
8163 struct got_object_id *commit_id = NULL;
8164 struct tog_view *tree_view;
8166 *new_view = NULL;
8168 err = resolve_reflist_entry(&commit_id, re, repo);
8169 if (err) {
8170 if (err->code != GOT_ERR_OBJ_TYPE)
8171 return err;
8172 else
8173 return NULL;
8177 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8178 if (tree_view == NULL) {
8179 err = got_error_from_errno("view_open");
8180 goto done;
8183 err = open_tree_view(tree_view, commit_id,
8184 got_ref_get_name(re->ref), repo);
8185 if (err)
8186 goto done;
8188 *new_view = tree_view;
8189 done:
8190 free(commit_id);
8191 return err;
8194 static const struct got_error *
8195 ref_goto_line(struct tog_view *view, int nlines)
8197 const struct got_error *err = NULL;
8198 struct tog_ref_view_state *s = &view->state.ref;
8199 int g, idx = s->selected_entry->idx;
8201 g = view->gline;
8202 view->gline = 0;
8204 if (g == 0)
8205 g = 1;
8206 else if (g > s->nrefs)
8207 g = s->nrefs;
8209 if (g >= s->first_displayed_entry->idx + 1 &&
8210 g <= s->last_displayed_entry->idx + 1 &&
8211 g - s->first_displayed_entry->idx - 1 < nlines) {
8212 s->selected = g - s->first_displayed_entry->idx - 1;
8213 return NULL;
8216 if (idx + 1 < g) {
8217 err = ref_scroll_down(view, g - idx - 1);
8218 if (err)
8219 return err;
8220 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8221 s->first_displayed_entry->idx + s->selected < g &&
8222 s->selected < s->ndisplayed - 1)
8223 s->selected = g - s->first_displayed_entry->idx - 1;
8224 } else if (idx + 1 > g)
8225 ref_scroll_up(s, idx - g + 1);
8227 if (g < nlines && s->first_displayed_entry->idx == 0)
8228 s->selected = g - 1;
8230 return NULL;
8234 static const struct got_error *
8235 input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8237 const struct got_error *err = NULL;
8238 struct tog_ref_view_state *s = &view->state.ref;
8239 struct tog_reflist_entry *re;
8240 int n, nscroll = view->nlines - 1;
8242 if (view->gline)
8243 return ref_goto_line(view, nscroll);
8245 switch (ch) {
8246 case 'i':
8247 s->show_ids = !s->show_ids;
8248 view->count = 0;
8249 break;
8250 case 'm':
8251 s->show_date = !s->show_date;
8252 view->count = 0;
8253 break;
8254 case 'o':
8255 s->sort_by_date = !s->sort_by_date;
8256 view->count = 0;
8257 err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8258 got_ref_cmp_by_commit_timestamp_descending :
8259 tog_ref_cmp_by_name, s->repo);
8260 if (err)
8261 break;
8262 got_reflist_object_id_map_free(tog_refs_idmap);
8263 err = got_reflist_object_id_map_create(&tog_refs_idmap,
8264 &tog_refs, s->repo);
8265 if (err)
8266 break;
8267 ref_view_free_refs(s);
8268 err = ref_view_load_refs(s);
8269 break;
8270 case KEY_ENTER:
8271 case '\r':
8272 view->count = 0;
8273 if (!s->selected_entry)
8274 break;
8275 err = view_request_new(new_view, view, TOG_VIEW_LOG);
8276 break;
8277 case 'T':
8278 view->count = 0;
8279 if (!s->selected_entry)
8280 break;
8281 err = view_request_new(new_view, view, TOG_VIEW_TREE);
8282 break;
8283 case 'g':
8284 case '=':
8285 case KEY_HOME:
8286 s->selected = 0;
8287 view->count = 0;
8288 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8289 break;
8290 case 'G':
8291 case '*':
8292 case KEY_END: {
8293 int eos = view->nlines - 1;
8295 if (view->mode == TOG_VIEW_SPLIT_HRZN)
8296 --eos; /* border */
8297 s->selected = 0;
8298 view->count = 0;
8299 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8300 for (n = 0; n < eos; n++) {
8301 if (re == NULL)
8302 break;
8303 s->first_displayed_entry = re;
8304 re = TAILQ_PREV(re, tog_reflist_head, entry);
8306 if (n > 0)
8307 s->selected = n - 1;
8308 break;
8310 case 'k':
8311 case KEY_UP:
8312 case CTRL('p'):
8313 if (s->selected > 0) {
8314 s->selected--;
8315 break;
8317 ref_scroll_up(s, 1);
8318 if (s->selected_entry == TAILQ_FIRST(&s->refs))
8319 view->count = 0;
8320 break;
8321 case CTRL('u'):
8322 case 'u':
8323 nscroll /= 2;
8324 /* FALL THROUGH */
8325 case KEY_PPAGE:
8326 case CTRL('b'):
8327 case 'b':
8328 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8329 s->selected -= MIN(nscroll, s->selected);
8330 ref_scroll_up(s, MAX(0, nscroll));
8331 if (s->selected_entry == TAILQ_FIRST(&s->refs))
8332 view->count = 0;
8333 break;
8334 case 'j':
8335 case KEY_DOWN:
8336 case CTRL('n'):
8337 if (s->selected < s->ndisplayed - 1) {
8338 s->selected++;
8339 break;
8341 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8342 /* can't scroll any further */
8343 view->count = 0;
8344 break;
8346 ref_scroll_down(view, 1);
8347 break;
8348 case CTRL('d'):
8349 case 'd':
8350 nscroll /= 2;
8351 /* FALL THROUGH */
8352 case KEY_NPAGE:
8353 case CTRL('f'):
8354 case 'f':
8355 case ' ':
8356 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8357 /* can't scroll any further; move cursor down */
8358 if (s->selected < s->ndisplayed - 1)
8359 s->selected += MIN(nscroll,
8360 s->ndisplayed - s->selected - 1);
8361 if (view->count > 1 && s->selected < s->ndisplayed - 1)
8362 s->selected += s->ndisplayed - s->selected - 1;
8363 view->count = 0;
8364 break;
8366 ref_scroll_down(view, nscroll);
8367 break;
8368 case CTRL('l'):
8369 view->count = 0;
8370 tog_free_refs();
8371 err = tog_load_refs(s->repo, s->sort_by_date);
8372 if (err)
8373 break;
8374 ref_view_free_refs(s);
8375 err = ref_view_load_refs(s);
8376 break;
8377 case KEY_RESIZE:
8378 if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8379 s->selected = view->nlines - 2;
8380 break;
8381 default:
8382 view->count = 0;
8383 break;
8386 return err;
8389 __dead static void
8390 usage_ref(void)
8392 endwin();
8393 fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8394 getprogname());
8395 exit(1);
8398 static const struct got_error *
8399 cmd_ref(int argc, char *argv[])
8401 const struct got_error *error;
8402 struct got_repository *repo = NULL;
8403 struct got_worktree *worktree = NULL;
8404 char *cwd = NULL, *repo_path = NULL;
8405 int ch;
8406 struct tog_view *view;
8407 int *pack_fds = NULL;
8409 while ((ch = getopt(argc, argv, "r:")) != -1) {
8410 switch (ch) {
8411 case 'r':
8412 repo_path = realpath(optarg, NULL);
8413 if (repo_path == NULL)
8414 return got_error_from_errno2("realpath",
8415 optarg);
8416 break;
8417 default:
8418 usage_ref();
8419 /* NOTREACHED */
8423 argc -= optind;
8424 argv += optind;
8426 if (argc > 1)
8427 usage_ref();
8429 error = got_repo_pack_fds_open(&pack_fds);
8430 if (error != NULL)
8431 goto done;
8433 if (repo_path == NULL) {
8434 cwd = getcwd(NULL, 0);
8435 if (cwd == NULL)
8436 return got_error_from_errno("getcwd");
8437 error = got_worktree_open(&worktree, cwd);
8438 if (error && error->code != GOT_ERR_NOT_WORKTREE)
8439 goto done;
8440 if (worktree)
8441 repo_path =
8442 strdup(got_worktree_get_repo_path(worktree));
8443 else
8444 repo_path = strdup(cwd);
8445 if (repo_path == NULL) {
8446 error = got_error_from_errno("strdup");
8447 goto done;
8451 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8452 if (error != NULL)
8453 goto done;
8455 init_curses();
8457 error = apply_unveil(got_repo_get_path(repo), NULL);
8458 if (error)
8459 goto done;
8461 error = tog_load_refs(repo, 0);
8462 if (error)
8463 goto done;
8465 view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8466 if (view == NULL) {
8467 error = got_error_from_errno("view_open");
8468 goto done;
8471 error = open_ref_view(view, repo);
8472 if (error)
8473 goto done;
8475 if (worktree) {
8476 /* Release work tree lock. */
8477 got_worktree_close(worktree);
8478 worktree = NULL;
8480 error = view_loop(view);
8481 done:
8482 free(repo_path);
8483 free(cwd);
8484 if (repo) {
8485 const struct got_error *close_err = got_repo_close(repo);
8486 if (close_err)
8487 error = close_err;
8489 if (pack_fds) {
8490 const struct got_error *pack_err =
8491 got_repo_pack_fds_close(pack_fds);
8492 if (error == NULL)
8493 error = pack_err;
8495 tog_free_refs();
8496 return error;
8499 static const struct got_error*
8500 win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8501 const char *str)
8503 size_t len;
8505 if (win == NULL)
8506 win = stdscr;
8508 len = strlen(str);
8509 x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8511 if (focus)
8512 wstandout(win);
8513 if (mvwprintw(win, y, x, "%s", str) == ERR)
8514 return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
8515 if (focus)
8516 wstandend(win);
8518 return NULL;
8521 static const struct got_error *
8522 add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
8524 off_t *p;
8526 p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
8527 if (p == NULL) {
8528 free(*line_offsets);
8529 *line_offsets = NULL;
8530 return got_error_from_errno("reallocarray");
8533 *line_offsets = p;
8534 (*line_offsets)[*nlines] = off;
8535 ++(*nlines);
8536 return NULL;
8539 static const struct got_error *
8540 max_key_str(int *ret, const struct tog_key_map *km, size_t n)
8542 *ret = 0;
8544 for (;n > 0; --n, ++km) {
8545 char *t0, *t, *k;
8546 size_t len = 1;
8548 if (km->keys == NULL)
8549 continue;
8551 t = t0 = strdup(km->keys);
8552 if (t0 == NULL)
8553 return got_error_from_errno("strdup");
8555 len += strlen(t);
8556 while ((k = strsep(&t, " ")) != NULL)
8557 len += strlen(k) > 1 ? 2 : 0;
8558 free(t0);
8559 *ret = MAX(*ret, len);
8562 return NULL;
8566 * Write keymap section headers, keys, and key info in km to f.
8567 * Save line offset to *off. If terminal has UTF8 encoding enabled,
8568 * wrap control and symbolic keys in guillemets, else use <>.
8570 static const struct got_error *
8571 format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
8573 int n, len = width;
8575 if (km->keys) {
8576 static const char *u8_glyph[] = {
8577 "\xe2\x80\xb9", /* U+2039 (utf8 <) */
8578 "\xe2\x80\xba" /* U+203A (utf8 >) */
8580 char *t0, *t, *k;
8581 int cs, s, first = 1;
8583 cs = got_locale_is_utf8();
8585 t = t0 = strdup(km->keys);
8586 if (t0 == NULL)
8587 return got_error_from_errno("strdup");
8589 len = strlen(km->keys);
8590 while ((k = strsep(&t, " ")) != NULL) {
8591 s = strlen(k) > 1; /* control or symbolic key */
8592 n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
8593 cs && s ? u8_glyph[0] : s ? "<" : "", k,
8594 cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
8595 if (n < 0) {
8596 free(t0);
8597 return got_error_from_errno("fprintf");
8599 first = 0;
8600 len += s ? 2 : 0;
8601 *off += n;
8603 free(t0);
8605 n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
8606 if (n < 0)
8607 return got_error_from_errno("fprintf");
8608 *off += n;
8610 return NULL;
8613 static const struct got_error *
8614 format_help(struct tog_help_view_state *s)
8616 const struct got_error *err = NULL;
8617 off_t off = 0;
8618 int i, max, n, show = s->all;
8619 static const struct tog_key_map km[] = {
8620 #define KEYMAP_(info, type) { NULL, (info), type }
8621 #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
8622 GENERATE_HELP
8623 #undef KEYMAP_
8624 #undef KEY_
8627 err = add_line_offset(&s->line_offsets, &s->nlines, 0);
8628 if (err)
8629 return err;
8631 n = nitems(km);
8632 err = max_key_str(&max, km, n);
8633 if (err)
8634 return err;
8636 for (i = 0; i < n; ++i) {
8637 if (km[i].keys == NULL) {
8638 show = s->all;
8639 if (km[i].type == TOG_KEYMAP_GLOBAL ||
8640 km[i].type == s->type || s->all)
8641 show = 1;
8643 if (show) {
8644 err = format_help_line(&off, s->f, &km[i], max);
8645 if (err)
8646 return err;
8647 err = add_line_offset(&s->line_offsets, &s->nlines, off);
8648 if (err)
8649 return err;
8652 fputc('\n', s->f);
8653 ++off;
8654 err = add_line_offset(&s->line_offsets, &s->nlines, off);
8655 return err;
8658 static const struct got_error *
8659 create_help(struct tog_help_view_state *s)
8661 FILE *f;
8662 const struct got_error *err;
8664 free(s->line_offsets);
8665 s->line_offsets = NULL;
8666 s->nlines = 0;
8668 f = got_opentemp();
8669 if (f == NULL)
8670 return got_error_from_errno("got_opentemp");
8671 s->f = f;
8673 err = format_help(s);
8674 if (err)
8675 return err;
8677 if (s->f && fflush(s->f) != 0)
8678 return got_error_from_errno("fflush");
8680 return NULL;
8683 static const struct got_error *
8684 search_start_help_view(struct tog_view *view)
8686 view->state.help.matched_line = 0;
8687 return NULL;
8690 static void
8691 search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
8692 size_t *nlines, int **first, int **last, int **match, int **selected)
8694 struct tog_help_view_state *s = &view->state.help;
8696 *f = s->f;
8697 *nlines = s->nlines;
8698 *line_offsets = s->line_offsets;
8699 *match = &s->matched_line;
8700 *first = &s->first_displayed_line;
8701 *last = &s->last_displayed_line;
8702 *selected = &s->selected_line;
8705 static const struct got_error *
8706 show_help_view(struct tog_view *view)
8708 struct tog_help_view_state *s = &view->state.help;
8709 const struct got_error *err;
8710 regmatch_t *regmatch = &view->regmatch;
8711 wchar_t *wline;
8712 char *line;
8713 ssize_t linelen;
8714 size_t linesz = 0;
8715 int width, nprinted = 0, rc = 0;
8716 int eos = view->nlines;
8718 if (view_is_hsplit_top(view))
8719 --eos; /* account for border */
8721 s->lineno = 0;
8722 rewind(s->f);
8723 werase(view->window);
8725 if (view->gline > s->nlines - 1)
8726 view->gline = s->nlines - 1;
8728 err = win_draw_center(view->window, 0, 0, view->ncols,
8729 view_needs_focus_indication(view),
8730 "tog help (press q to return to tog)");
8731 if (err)
8732 return err;
8733 if (eos <= 1)
8734 return NULL;
8735 waddstr(view->window, "\n\n");
8736 eos -= 2;
8738 s->eof = 0;
8739 view->maxx = 0;
8740 line = NULL;
8741 while (eos > 0 && nprinted < eos) {
8742 attr_t attr = 0;
8744 linelen = getline(&line, &linesz, s->f);
8745 if (linelen == -1) {
8746 if (!feof(s->f)) {
8747 free(line);
8748 return got_ferror(s->f, GOT_ERR_IO);
8750 s->eof = 1;
8751 break;
8753 if (++s->lineno < s->first_displayed_line)
8754 continue;
8755 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
8756 continue;
8757 if (s->lineno == view->hiline)
8758 attr = A_STANDOUT;
8760 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
8761 view->x ? 1 : 0);
8762 if (err) {
8763 free(line);
8764 return err;
8766 view->maxx = MAX(view->maxx, width);
8767 free(wline);
8768 wline = NULL;
8770 if (attr)
8771 wattron(view->window, attr);
8772 if (s->first_displayed_line + nprinted == s->matched_line &&
8773 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
8774 err = add_matched_line(&width, line, view->ncols - 1, 0,
8775 view->window, view->x, regmatch);
8776 if (err) {
8777 free(line);
8778 return err;
8780 } else {
8781 int skip;
8783 err = format_line(&wline, &width, &skip, line,
8784 view->x, view->ncols - 1, 0, view->x ? 1 : 0);
8785 if (err) {
8786 free(line);
8787 return err;
8789 rc = waddwstr(view->window, &wline[skip]);
8790 free(wline);
8791 wline = NULL;
8792 if (rc == ERR)
8793 return got_error_msg(GOT_ERR_IO, "waddwstr");
8795 if (s->lineno == view->hiline) {
8796 while (width++ < view->ncols)
8797 waddch(view->window, ' ');
8798 } else {
8799 if (width <= view->ncols)
8800 waddch(view->window, '\n');
8802 if (attr)
8803 wattroff(view->window, attr);
8804 if (++nprinted == 1)
8805 s->first_displayed_line = s->lineno;
8807 free(line);
8808 if (nprinted > 0)
8809 s->last_displayed_line = s->first_displayed_line + nprinted - 1;
8810 else
8811 s->last_displayed_line = s->first_displayed_line;
8813 view_border(view);
8815 if (s->eof) {
8816 rc = waddnstr(view->window,
8817 "See the tog(1) manual page for full documentation",
8818 view->ncols - 1);
8819 if (rc == ERR)
8820 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8821 } else {
8822 wmove(view->window, view->nlines - 1, 0);
8823 wclrtoeol(view->window);
8824 wstandout(view->window);
8825 rc = waddnstr(view->window, "scroll down for more...",
8826 view->ncols - 1);
8827 if (rc == ERR)
8828 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8829 if (getcurx(view->window) < view->ncols - 6) {
8830 rc = wprintw(view->window, "[%.0f%%]",
8831 100.00 * s->last_displayed_line / s->nlines);
8832 if (rc == ERR)
8833 return got_error_msg(GOT_ERR_IO, "wprintw");
8835 wstandend(view->window);
8838 return NULL;
8841 static const struct got_error *
8842 input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
8844 struct tog_help_view_state *s = &view->state.help;
8845 const struct got_error *err = NULL;
8846 char *line = NULL;
8847 ssize_t linelen;
8848 size_t linesz = 0;
8849 int eos, nscroll;
8851 eos = nscroll = view->nlines;
8852 if (view_is_hsplit_top(view))
8853 --eos; /* border */
8855 s->lineno = s->first_displayed_line - 1 + s->selected_line;
8857 switch (ch) {
8858 case '0':
8859 view->x = 0;
8860 break;
8861 case '$':
8862 view->x = MAX(view->maxx - view->ncols / 3, 0);
8863 view->count = 0;
8864 break;
8865 case KEY_RIGHT:
8866 case 'l':
8867 if (view->x + view->ncols / 3 < view->maxx)
8868 view->x += 2;
8869 else
8870 view->count = 0;
8871 break;
8872 case KEY_LEFT:
8873 case 'h':
8874 view->x -= MIN(view->x, 2);
8875 if (view->x <= 0)
8876 view->count = 0;
8877 break;
8878 case 'g':
8879 case KEY_HOME:
8880 s->first_displayed_line = 1;
8881 view->count = 0;
8882 break;
8883 case 'G':
8884 case KEY_END:
8885 view->count = 0;
8886 if (s->eof)
8887 break;
8888 s->first_displayed_line = (s->nlines - eos) + 3;
8889 s->eof = 1;
8890 break;
8891 case 'k':
8892 case KEY_UP:
8893 if (s->first_displayed_line > 1)
8894 --s->first_displayed_line;
8895 else
8896 view->count = 0;
8897 break;
8898 case CTRL('u'):
8899 case 'u':
8900 nscroll /= 2;
8901 /* FALL THROUGH */
8902 case KEY_PPAGE:
8903 case CTRL('b'):
8904 case 'b':
8905 if (s->first_displayed_line == 1) {
8906 view->count = 0;
8907 break;
8909 while (--nscroll > 0 && s->first_displayed_line > 1)
8910 s->first_displayed_line--;
8911 break;
8912 case 'j':
8913 case KEY_DOWN:
8914 case CTRL('n'):
8915 if (!s->eof)
8916 ++s->first_displayed_line;
8917 else
8918 view->count = 0;
8919 break;
8920 case CTRL('d'):
8921 case 'd':
8922 nscroll /= 2;
8923 /* FALL THROUGH */
8924 case KEY_NPAGE:
8925 case CTRL('f'):
8926 case 'f':
8927 case ' ':
8928 if (s->eof) {
8929 view->count = 0;
8930 break;
8932 while (!s->eof && --nscroll > 0) {
8933 linelen = getline(&line, &linesz, s->f);
8934 s->first_displayed_line++;
8935 if (linelen == -1) {
8936 if (feof(s->f))
8937 s->eof = 1;
8938 else
8939 err = got_ferror(s->f, GOT_ERR_IO);
8940 break;
8943 free(line);
8944 break;
8945 default:
8946 view->count = 0;
8947 break;
8950 return err;
8953 static const struct got_error *
8954 close_help_view(struct tog_view *view)
8956 struct tog_help_view_state *s = &view->state.help;
8958 free(s->line_offsets);
8959 s->line_offsets = NULL;
8960 if (fclose(s->f) == EOF)
8961 return got_error_from_errno("fclose");
8963 return NULL;
8966 static const struct got_error *
8967 reset_help_view(struct tog_view *view)
8969 struct tog_help_view_state *s = &view->state.help;
8972 if (s->f && fclose(s->f) == EOF)
8973 return got_error_from_errno("fclose");
8975 wclear(view->window);
8976 view->count = 0;
8977 view->x = 0;
8978 s->all = !s->all;
8979 s->first_displayed_line = 1;
8980 s->last_displayed_line = view->nlines;
8981 s->matched_line = 0;
8983 return create_help(s);
8986 static const struct got_error *
8987 open_help_view(struct tog_view *view, struct tog_view *parent)
8989 const struct got_error *err = NULL;
8990 struct tog_help_view_state *s = &view->state.help;
8992 s->type = (enum tog_keymap_type)parent->type;
8993 s->first_displayed_line = 1;
8994 s->last_displayed_line = view->nlines;
8995 s->selected_line = 1;
8997 view->show = show_help_view;
8998 view->input = input_help_view;
8999 view->reset = reset_help_view;
9000 view->close = close_help_view;
9001 view->search_start = search_start_help_view;
9002 view->search_setup = search_setup_help_view;
9003 view->search_next = search_next_view_match;
9005 err = create_help(s);
9006 return err;
9009 static const struct got_error *
9010 view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
9011 enum tog_view_type request, int y, int x)
9013 const struct got_error *err = NULL;
9015 *new_view = NULL;
9017 switch (request) {
9018 case TOG_VIEW_DIFF:
9019 if (view->type == TOG_VIEW_LOG) {
9020 struct tog_log_view_state *s = &view->state.log;
9022 err = open_diff_view_for_commit(new_view, y, x,
9023 s->selected_entry->commit, s->selected_entry->id,
9024 view, s->repo);
9025 } else
9026 return got_error_msg(GOT_ERR_NOT_IMPL,
9027 "parent/child view pair not supported");
9028 break;
9029 case TOG_VIEW_BLAME:
9030 if (view->type == TOG_VIEW_TREE) {
9031 struct tog_tree_view_state *s = &view->state.tree;
9033 err = blame_tree_entry(new_view, y, x,
9034 s->selected_entry, &s->parents, s->commit_id,
9035 s->repo);
9036 } else
9037 return got_error_msg(GOT_ERR_NOT_IMPL,
9038 "parent/child view pair not supported");
9039 break;
9040 case TOG_VIEW_LOG:
9041 if (view->type == TOG_VIEW_BLAME)
9042 err = log_annotated_line(new_view, y, x,
9043 view->state.blame.repo, view->state.blame.id_to_log);
9044 else if (view->type == TOG_VIEW_TREE)
9045 err = log_selected_tree_entry(new_view, y, x,
9046 &view->state.tree);
9047 else if (view->type == TOG_VIEW_REF)
9048 err = log_ref_entry(new_view, y, x,
9049 view->state.ref.selected_entry,
9050 view->state.ref.repo);
9051 else
9052 return got_error_msg(GOT_ERR_NOT_IMPL,
9053 "parent/child view pair not supported");
9054 break;
9055 case TOG_VIEW_TREE:
9056 if (view->type == TOG_VIEW_LOG)
9057 err = browse_commit_tree(new_view, y, x,
9058 view->state.log.selected_entry,
9059 view->state.log.in_repo_path,
9060 view->state.log.head_ref_name,
9061 view->state.log.repo);
9062 else if (view->type == TOG_VIEW_REF)
9063 err = browse_ref_tree(new_view, y, x,
9064 view->state.ref.selected_entry,
9065 view->state.ref.repo);
9066 else
9067 return got_error_msg(GOT_ERR_NOT_IMPL,
9068 "parent/child view pair not supported");
9069 break;
9070 case TOG_VIEW_REF:
9071 *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
9072 if (*new_view == NULL)
9073 return got_error_from_errno("view_open");
9074 if (view->type == TOG_VIEW_LOG)
9075 err = open_ref_view(*new_view, view->state.log.repo);
9076 else if (view->type == TOG_VIEW_TREE)
9077 err = open_ref_view(*new_view, view->state.tree.repo);
9078 else
9079 err = got_error_msg(GOT_ERR_NOT_IMPL,
9080 "parent/child view pair not supported");
9081 if (err)
9082 view_close(*new_view);
9083 break;
9084 case TOG_VIEW_HELP:
9085 *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9086 if (*new_view == NULL)
9087 return got_error_from_errno("view_open");
9088 err = open_help_view(*new_view, view);
9089 if (err)
9090 view_close(*new_view);
9091 break;
9092 default:
9093 return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9096 return err;
9100 * If view was scrolled down to move the selected line into view when opening a
9101 * horizontal split, scroll back up when closing the split/toggling fullscreen.
9103 static void
9104 offset_selection_up(struct tog_view *view)
9106 switch (view->type) {
9107 case TOG_VIEW_BLAME: {
9108 struct tog_blame_view_state *s = &view->state.blame;
9109 if (s->first_displayed_line == 1) {
9110 s->selected_line = MAX(s->selected_line - view->offset,
9111 1);
9112 break;
9114 if (s->first_displayed_line > view->offset)
9115 s->first_displayed_line -= view->offset;
9116 else
9117 s->first_displayed_line = 1;
9118 s->selected_line += view->offset;
9119 break;
9121 case TOG_VIEW_LOG:
9122 log_scroll_up(&view->state.log, view->offset);
9123 view->state.log.selected += view->offset;
9124 break;
9125 case TOG_VIEW_REF:
9126 ref_scroll_up(&view->state.ref, view->offset);
9127 view->state.ref.selected += view->offset;
9128 break;
9129 case TOG_VIEW_TREE:
9130 tree_scroll_up(&view->state.tree, view->offset);
9131 view->state.tree.selected += view->offset;
9132 break;
9133 default:
9134 break;
9137 view->offset = 0;
9141 * If the selected line is in the section of screen covered by the bottom split,
9142 * scroll down offset lines to move it into view and index its new position.
9144 static const struct got_error *
9145 offset_selection_down(struct tog_view *view)
9147 const struct got_error *err = NULL;
9148 const struct got_error *(*scrolld)(struct tog_view *, int);
9149 int *selected = NULL;
9150 int header, offset;
9152 switch (view->type) {
9153 case TOG_VIEW_BLAME: {
9154 struct tog_blame_view_state *s = &view->state.blame;
9155 header = 3;
9156 scrolld = NULL;
9157 if (s->selected_line > view->nlines - header) {
9158 offset = abs(view->nlines - s->selected_line - header);
9159 s->first_displayed_line += offset;
9160 s->selected_line -= offset;
9161 view->offset = offset;
9163 break;
9165 case TOG_VIEW_LOG: {
9166 struct tog_log_view_state *s = &view->state.log;
9167 scrolld = &log_scroll_down;
9168 header = view_is_parent_view(view) ? 3 : 2;
9169 selected = &s->selected;
9170 break;
9172 case TOG_VIEW_REF: {
9173 struct tog_ref_view_state *s = &view->state.ref;
9174 scrolld = &ref_scroll_down;
9175 header = 3;
9176 selected = &s->selected;
9177 break;
9179 case TOG_VIEW_TREE: {
9180 struct tog_tree_view_state *s = &view->state.tree;
9181 scrolld = &tree_scroll_down;
9182 header = 5;
9183 selected = &s->selected;
9184 break;
9186 default:
9187 selected = NULL;
9188 scrolld = NULL;
9189 header = 0;
9190 break;
9193 if (selected && *selected > view->nlines - header) {
9194 offset = abs(view->nlines - *selected - header);
9195 view->offset = offset;
9196 if (scrolld && offset) {
9197 err = scrolld(view, offset);
9198 *selected -= offset;
9202 return err;
9205 static void
9206 list_commands(FILE *fp)
9208 size_t i;
9210 fprintf(fp, "commands:");
9211 for (i = 0; i < nitems(tog_commands); i++) {
9212 const struct tog_cmd *cmd = &tog_commands[i];
9213 fprintf(fp, " %s", cmd->name);
9215 fputc('\n', fp);
9218 __dead static void
9219 usage(int hflag, int status)
9221 FILE *fp = (status == 0) ? stdout : stderr;
9223 fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9224 getprogname());
9225 if (hflag) {
9226 fprintf(fp, "lazy usage: %s path\n", getprogname());
9227 list_commands(fp);
9229 exit(status);
9232 static char **
9233 make_argv(int argc, ...)
9235 va_list ap;
9236 char **argv;
9237 int i;
9239 va_start(ap, argc);
9241 argv = calloc(argc, sizeof(char *));
9242 if (argv == NULL)
9243 err(1, "calloc");
9244 for (i = 0; i < argc; i++) {
9245 argv[i] = strdup(va_arg(ap, char *));
9246 if (argv[i] == NULL)
9247 err(1, "strdup");
9250 va_end(ap);
9251 return argv;
9255 * Try to convert 'tog path' into a 'tog log path' command.
9256 * The user could simply have mistyped the command rather than knowingly
9257 * provided a path. So check whether argv[0] can in fact be resolved
9258 * to a path in the HEAD commit and print a special error if not.
9259 * This hack is for mpi@ <3
9261 static const struct got_error *
9262 tog_log_with_path(int argc, char *argv[])
9264 const struct got_error *error = NULL, *close_err;
9265 const struct tog_cmd *cmd = NULL;
9266 struct got_repository *repo = NULL;
9267 struct got_worktree *worktree = NULL;
9268 struct got_object_id *commit_id = NULL, *id = NULL;
9269 struct got_commit_object *commit = NULL;
9270 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9271 char *commit_id_str = NULL, **cmd_argv = NULL;
9272 int *pack_fds = NULL;
9274 cwd = getcwd(NULL, 0);
9275 if (cwd == NULL)
9276 return got_error_from_errno("getcwd");
9278 error = got_repo_pack_fds_open(&pack_fds);
9279 if (error != NULL)
9280 goto done;
9282 error = got_worktree_open(&worktree, cwd);
9283 if (error && error->code != GOT_ERR_NOT_WORKTREE)
9284 goto done;
9286 if (worktree)
9287 repo_path = strdup(got_worktree_get_repo_path(worktree));
9288 else
9289 repo_path = strdup(cwd);
9290 if (repo_path == NULL) {
9291 error = got_error_from_errno("strdup");
9292 goto done;
9295 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9296 if (error != NULL)
9297 goto done;
9299 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9300 repo, worktree);
9301 if (error)
9302 goto done;
9304 error = tog_load_refs(repo, 0);
9305 if (error)
9306 goto done;
9307 error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9308 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9309 GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9310 if (error)
9311 goto done;
9313 if (worktree) {
9314 got_worktree_close(worktree);
9315 worktree = NULL;
9318 error = got_object_open_as_commit(&commit, repo, commit_id);
9319 if (error)
9320 goto done;
9322 error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9323 if (error) {
9324 if (error->code != GOT_ERR_NO_TREE_ENTRY)
9325 goto done;
9326 fprintf(stderr, "%s: '%s' is no known command or path\n",
9327 getprogname(), argv[0]);
9328 usage(1, 1);
9329 /* not reached */
9332 error = got_object_id_str(&commit_id_str, commit_id);
9333 if (error)
9334 goto done;
9336 cmd = &tog_commands[0]; /* log */
9337 argc = 4;
9338 cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9339 error = cmd->cmd_main(argc, cmd_argv);
9340 done:
9341 if (repo) {
9342 close_err = got_repo_close(repo);
9343 if (error == NULL)
9344 error = close_err;
9346 if (commit)
9347 got_object_commit_close(commit);
9348 if (worktree)
9349 got_worktree_close(worktree);
9350 if (pack_fds) {
9351 const struct got_error *pack_err =
9352 got_repo_pack_fds_close(pack_fds);
9353 if (error == NULL)
9354 error = pack_err;
9356 free(id);
9357 free(commit_id_str);
9358 free(commit_id);
9359 free(cwd);
9360 free(repo_path);
9361 free(in_repo_path);
9362 if (cmd_argv) {
9363 int i;
9364 for (i = 0; i < argc; i++)
9365 free(cmd_argv[i]);
9366 free(cmd_argv);
9368 tog_free_refs();
9369 return error;
9372 int
9373 main(int argc, char *argv[])
9375 const struct got_error *error = NULL;
9376 const struct tog_cmd *cmd = NULL;
9377 int ch, hflag = 0, Vflag = 0;
9378 char **cmd_argv = NULL;
9379 static const struct option longopts[] = {
9380 { "version", no_argument, NULL, 'V' },
9381 { NULL, 0, NULL, 0}
9383 char *diff_algo_str = NULL;
9385 if (!isatty(STDIN_FILENO))
9386 errx(1, "standard input is not a tty");
9388 setlocale(LC_CTYPE, "");
9390 while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9391 switch (ch) {
9392 case 'h':
9393 hflag = 1;
9394 break;
9395 case 'V':
9396 Vflag = 1;
9397 break;
9398 default:
9399 usage(hflag, 1);
9400 /* NOTREACHED */
9404 argc -= optind;
9405 argv += optind;
9406 optind = 1;
9407 optreset = 1;
9409 if (Vflag) {
9410 got_version_print_str();
9411 return 0;
9414 #ifndef PROFILE
9415 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9416 NULL) == -1)
9417 err(1, "pledge");
9418 #endif
9420 if (argc == 0) {
9421 if (hflag)
9422 usage(hflag, 0);
9423 /* Build an argument vector which runs a default command. */
9424 cmd = &tog_commands[0];
9425 argc = 1;
9426 cmd_argv = make_argv(argc, cmd->name);
9427 } else {
9428 size_t i;
9430 /* Did the user specify a command? */
9431 for (i = 0; i < nitems(tog_commands); i++) {
9432 if (strncmp(tog_commands[i].name, argv[0],
9433 strlen(argv[0])) == 0) {
9434 cmd = &tog_commands[i];
9435 break;
9440 diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9441 if (diff_algo_str) {
9442 if (strcasecmp(diff_algo_str, "patience") == 0)
9443 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9444 if (strcasecmp(diff_algo_str, "myers") == 0)
9445 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9448 if (cmd == NULL) {
9449 if (argc != 1)
9450 usage(0, 1);
9451 /* No command specified; try log with a path */
9452 error = tog_log_with_path(argc, argv);
9453 } else {
9454 if (hflag)
9455 cmd->cmd_usage();
9456 else
9457 error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9460 endwin();
9461 putchar('\n');
9462 if (cmd_argv) {
9463 int i;
9464 for (i = 0; i < argc; i++)
9465 free(cmd_argv[i]);
9466 free(cmd_argv);
9469 if (error && error->code != GOT_ERR_CANCELLED &&
9470 error->code != GOT_ERR_EOF &&
9471 error->code != GOT_ERR_PRIVSEP_EXIT &&
9472 error->code != GOT_ERR_PRIVSEP_PIPE &&
9473 !(error->code == GOT_ERR_ERRNO && errno == EINTR))
9474 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9475 return 0;