Blob


1 /*
2 * Copyright (c) 2018, 2019 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 <errno.h>
22 #define _XOPEN_SOURCE_EXTENDED
23 #include <curses.h>
24 #undef _XOPEN_SOURCE_EXTENDED
25 #include <panel.h>
26 #include <locale.h>
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <getopt.h>
30 #include <string.h>
31 #include <err.h>
32 #include <unistd.h>
33 #include <util.h>
34 #include <limits.h>
35 #include <wchar.h>
36 #include <time.h>
37 #include <pthread.h>
38 #include <libgen.h>
40 #include "got_error.h"
41 #include "got_object.h"
42 #include "got_reference.h"
43 #include "got_repository.h"
44 #include "got_diff.h"
45 #include "got_opentemp.h"
46 #include "got_commit_graph.h"
47 #include "got_utf8.h"
48 #include "got_blame.h"
49 #include "got_privsep.h"
50 #include "got_worktree.h"
52 #ifndef MIN
53 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
54 #endif
56 #ifndef MAX
57 #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
58 #endif
61 #ifndef nitems
62 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
63 #endif
65 struct tog_cmd {
66 const char *name;
67 const struct got_error *(*cmd_main)(int, char *[]);
68 void (*cmd_usage)(void);
69 const char *descr;
70 };
72 __dead static void usage(void);
73 __dead static void usage_log(void);
74 __dead static void usage_diff(void);
75 __dead static void usage_blame(void);
76 __dead static void usage_tree(void);
78 static const struct got_error* cmd_log(int, char *[]);
79 static const struct got_error* cmd_diff(int, char *[]);
80 static const struct got_error* cmd_blame(int, char *[]);
81 static const struct got_error* cmd_tree(int, char *[]);
83 static struct tog_cmd tog_commands[] = {
84 { "log", cmd_log, usage_log,
85 "show repository history" },
86 { "diff", cmd_diff, usage_diff,
87 "compare files and directories" },
88 { "blame", cmd_blame, usage_blame,
89 "show line-by-line file history" },
90 { "tree", cmd_tree, usage_tree,
91 "browse trees in repository" },
92 };
94 enum tog_view_type {
95 TOG_VIEW_DIFF,
96 TOG_VIEW_LOG,
97 TOG_VIEW_BLAME,
98 TOG_VIEW_TREE
99 };
101 struct commit_queue_entry {
102 TAILQ_ENTRY(commit_queue_entry) entry;
103 struct got_object_id *id;
104 struct got_commit_object *commit;
105 int idx;
106 };
107 TAILQ_HEAD(commit_queue_head, commit_queue_entry);
108 struct commit_queue {
109 int ncommits;
110 struct commit_queue_head head;
111 };
113 struct tog_diff_view_state {
114 struct got_object_id *id1, *id2;
115 FILE *f;
116 int first_displayed_line;
117 int last_displayed_line;
118 int eof;
119 int diff_context;
120 struct got_repository *repo;
121 struct got_reflist_head *refs;
123 /* passed from log view; may be NULL */
124 struct tog_view *log_view;
125 };
127 pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
129 struct tog_log_thread_args {
130 pthread_cond_t need_commits;
131 int commits_needed;
132 struct got_commit_graph *graph;
133 struct commit_queue *commits;
134 const char *in_repo_path;
135 struct got_object_id *start_id;
136 struct got_repository *repo;
137 int log_complete;
138 sig_atomic_t *quit;
139 struct tog_view *view;
140 struct commit_queue_entry **first_displayed_entry;
141 struct commit_queue_entry **selected_entry;
142 };
144 struct tog_log_view_state {
145 struct commit_queue commits;
146 struct commit_queue_entry *first_displayed_entry;
147 struct commit_queue_entry *last_displayed_entry;
148 struct commit_queue_entry *selected_entry;
149 int selected;
150 char *in_repo_path;
151 struct got_repository *repo;
152 struct got_reflist_head *refs;
153 struct got_object_id *start_id;
154 sig_atomic_t quit;
155 pthread_t thread;
156 struct tog_log_thread_args thread_args;
157 };
159 struct tog_blame_cb_args {
160 struct tog_blame_line *lines; /* one per line */
161 int nlines;
163 struct tog_view *view;
164 struct got_object_id *commit_id;
165 int *quit;
166 };
168 struct tog_blame_thread_args {
169 const char *path;
170 struct got_repository *repo;
171 struct tog_blame_cb_args *cb_args;
172 int *complete;
173 };
175 struct tog_blame {
176 FILE *f;
177 size_t filesize;
178 struct tog_blame_line *lines;
179 int nlines;
180 pthread_t thread;
181 struct tog_blame_thread_args thread_args;
182 struct tog_blame_cb_args cb_args;
183 const char *path;
184 };
186 struct tog_blame_view_state {
187 int first_displayed_line;
188 int last_displayed_line;
189 int selected_line;
190 int blame_complete;
191 int eof;
192 int done;
193 struct got_object_id_queue blamed_commits;
194 struct got_object_qid *blamed_commit;
195 char *path;
196 struct got_repository *repo;
197 struct got_reflist_head *refs;
198 struct got_object_id *commit_id;
199 struct tog_blame blame;
200 };
202 struct tog_parent_tree {
203 TAILQ_ENTRY(tog_parent_tree) entry;
204 struct got_tree_object *tree;
205 struct got_tree_entry *first_displayed_entry;
206 struct got_tree_entry *selected_entry;
207 int selected;
208 };
210 TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
212 struct tog_tree_view_state {
213 char *tree_label;
214 struct got_tree_object *root;
215 struct got_tree_object *tree;
216 const struct got_tree_entries *entries;
217 struct got_tree_entry *first_displayed_entry;
218 struct got_tree_entry *last_displayed_entry;
219 struct got_tree_entry *selected_entry;
220 int ndisplayed, selected, show_ids;
221 struct tog_parent_trees parents;
222 struct got_object_id *commit_id;
223 struct got_repository *repo;
224 struct got_reflist_head *refs;
225 };
227 /*
228 * We implement two types of views: parent views and child views.
230 * The 'Tab' key switches between a parent view and its child view.
231 * Child views are shown side-by-side to their parent view, provided
232 * there is enough screen estate.
234 * When a new view is opened from within a parent view, this new view
235 * becomes a child view of the parent view, replacing any existing child.
237 * When a new view is opened from within a child view, this new view
238 * becomes a parent view which will obscure the views below until the
239 * user quits the new parent view by typing 'q'.
241 * This list of views contains parent views only.
242 * Child views are only pointed to by their parent view.
243 */
244 TAILQ_HEAD(tog_view_list_head, tog_view);
246 struct tog_view {
247 TAILQ_ENTRY(tog_view) entry;
248 WINDOW *window;
249 PANEL *panel;
250 int nlines, ncols, begin_y, begin_x;
251 int lines, cols; /* copies of LINES and COLS */
252 int focussed;
253 struct tog_view *parent;
254 struct tog_view *child;
255 int child_focussed;
257 /* type-specific state */
258 enum tog_view_type type;
259 union {
260 struct tog_diff_view_state diff;
261 struct tog_log_view_state log;
262 struct tog_blame_view_state blame;
263 struct tog_tree_view_state tree;
264 } state;
266 const struct got_error *(*show)(struct tog_view *);
267 const struct got_error *(*input)(struct tog_view **,
268 struct tog_view **, struct tog_view**, struct tog_view *, int);
269 const struct got_error *(*close)(struct tog_view *);
270 };
272 static const struct got_error *open_diff_view(struct tog_view *,
273 struct got_object_id *, struct got_object_id *, struct tog_view *,
274 struct got_reflist_head *, struct got_repository *);
275 static const struct got_error *show_diff_view(struct tog_view *);
276 static const struct got_error *input_diff_view(struct tog_view **,
277 struct tog_view **, struct tog_view **, struct tog_view *, int);
278 static const struct got_error* close_diff_view(struct tog_view *);
280 static const struct got_error *open_log_view(struct tog_view *,
281 struct got_object_id *, struct got_reflist_head *,
282 struct got_repository *, const char *, int);
283 static const struct got_error * show_log_view(struct tog_view *);
284 static const struct got_error *input_log_view(struct tog_view **,
285 struct tog_view **, struct tog_view **, struct tog_view *, int);
286 static const struct got_error *close_log_view(struct tog_view *);
288 static const struct got_error *open_blame_view(struct tog_view *, char *,
289 struct got_object_id *, struct got_reflist_head *, struct got_repository *);
290 static const struct got_error *show_blame_view(struct tog_view *);
291 static const struct got_error *input_blame_view(struct tog_view **,
292 struct tog_view **, struct tog_view **, struct tog_view *, int);
293 static const struct got_error *close_blame_view(struct tog_view *);
295 static const struct got_error *open_tree_view(struct tog_view *,
296 struct got_tree_object *, struct got_object_id *,
297 struct got_reflist_head *, struct got_repository *);
298 static const struct got_error *show_tree_view(struct tog_view *);
299 static const struct got_error *input_tree_view(struct tog_view **,
300 struct tog_view **, struct tog_view **, struct tog_view *, int);
301 static const struct got_error *close_tree_view(struct tog_view *);
303 static volatile sig_atomic_t tog_sigwinch_received;
305 static void
306 tog_sigwinch(int signo)
308 tog_sigwinch_received = 1;
311 static const struct got_error *
312 view_close(struct tog_view *view)
314 const struct got_error *err = NULL;
316 if (view->child) {
317 view_close(view->child);
318 view->child = NULL;
320 if (view->close)
321 err = view->close(view);
322 if (view->panel)
323 del_panel(view->panel);
324 if (view->window)
325 delwin(view->window);
326 free(view);
327 return err;
330 static struct tog_view *
331 view_open(int nlines, int ncols, int begin_y, int begin_x,
332 enum tog_view_type type)
334 struct tog_view *view = calloc(1, sizeof(*view));
336 if (view == NULL)
337 return NULL;
339 view->type = type;
340 view->lines = LINES;
341 view->cols = COLS;
342 view->nlines = nlines ? nlines : LINES - begin_y;
343 view->ncols = ncols ? ncols : COLS - begin_x;
344 view->begin_y = begin_y;
345 view->begin_x = begin_x;
346 view->window = newwin(nlines, ncols, begin_y, begin_x);
347 if (view->window == NULL) {
348 view_close(view);
349 return NULL;
351 view->panel = new_panel(view->window);
352 if (view->panel == NULL ||
353 set_panel_userptr(view->panel, view) != OK) {
354 view_close(view);
355 return NULL;
358 keypad(view->window, TRUE);
359 return view;
362 static int
363 view_split_begin_x(int begin_x)
365 if (begin_x > 0 || COLS < 120)
366 return 0;
367 return (COLS - MAX(COLS / 2, 80));
370 static const struct got_error *view_resize(struct tog_view *);
372 static const struct got_error *
373 view_splitscreen(struct tog_view *view)
375 const struct got_error *err = NULL;
377 view->begin_y = 0;
378 view->begin_x = view_split_begin_x(0);
379 view->nlines = LINES;
380 view->ncols = COLS - view->begin_x;
381 view->lines = LINES;
382 view->cols = COLS;
383 err = view_resize(view);
384 if (err)
385 return err;
387 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
388 return got_error_from_errno();
390 return NULL;
393 static const struct got_error *
394 view_fullscreen(struct tog_view *view)
396 const struct got_error *err = NULL;
398 view->begin_x = 0;
399 view->begin_y = 0;
400 view->nlines = LINES;
401 view->ncols = COLS;
402 view->lines = LINES;
403 view->cols = COLS;
404 err = view_resize(view);
405 if (err)
406 return err;
408 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
409 return got_error_from_errno();
411 return NULL;
414 static int
415 view_is_parent_view(struct tog_view *view)
417 return view->parent == NULL;
420 static const struct got_error *
421 view_resize(struct tog_view *view)
423 int nlines, ncols;
425 if (view->lines > LINES)
426 nlines = view->nlines - (view->lines - LINES);
427 else
428 nlines = view->nlines + (LINES - view->lines);
430 if (view->cols > COLS)
431 ncols = view->ncols - (view->cols - COLS);
432 else
433 ncols = view->ncols + (COLS - view->cols);
435 if (wresize(view->window, nlines, ncols) == ERR)
436 return got_error_from_errno();
437 if (replace_panel(view->panel, view->window) == ERR)
438 return got_error_from_errno();
439 wclear(view->window);
441 view->nlines = nlines;
442 view->ncols = ncols;
443 view->lines = LINES;
444 view->cols = COLS;
446 if (view->child) {
447 view->child->begin_x = view_split_begin_x(view->begin_x);
448 if (view->child->begin_x == 0) {
449 view_fullscreen(view->child);
450 if (view->child->focussed)
451 show_panel(view->child->panel);
452 else
453 show_panel(view->panel);
454 } else {
455 view_splitscreen(view->child);
456 show_panel(view->child->panel);
460 return NULL;
463 static const struct got_error *
464 view_close_child(struct tog_view *view)
466 const struct got_error *err = NULL;
468 if (view->child == NULL)
469 return NULL;
471 err = view_close(view->child);
472 view->child = NULL;
473 return err;
476 static const struct got_error *
477 view_set_child(struct tog_view *view, struct tog_view *child)
479 const struct got_error *err = NULL;
481 view->child = child;
482 child->parent = view;
483 return err;
486 static int
487 view_is_splitscreen(struct tog_view *view)
489 return view->begin_x > 0;
492 /*
493 * Erase all content of the view. Can be used to "flash" the view because
494 * the view loop will redraw it quickly, providing a more subtle visual
495 * effect than curs_flash(3) would provide.
496 */
497 static void
498 view_flash(struct tog_view *view)
500 werase(view->window);
501 update_panels();
502 doupdate();
505 static void
506 tog_resizeterm(void)
508 int cols, lines;
509 struct winsize size;
511 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
512 cols = 80; /* Default */
513 lines = 24;
514 } else {
515 cols = size.ws_col;
516 lines = size.ws_row;
518 resize_term(lines, cols);
521 static const struct got_error *
522 view_input(struct tog_view **new, struct tog_view **dead,
523 struct tog_view **focus, int *done, struct tog_view *view,
524 struct tog_view_list_head *views)
526 const struct got_error *err = NULL;
527 struct tog_view *v;
528 int ch, errcode;
530 *new = NULL;
531 *dead = NULL;
532 *focus = NULL;
534 nodelay(stdscr, FALSE);
535 /* Allow threads to make progress while we are waiting for input. */
536 errcode = pthread_mutex_unlock(&tog_mutex);
537 if (errcode)
538 return got_error_set_errno(errcode);
539 ch = wgetch(view->window);
540 errcode = pthread_mutex_lock(&tog_mutex);
541 if (errcode)
542 return got_error_set_errno(errcode);
543 nodelay(stdscr, TRUE);
545 if (tog_sigwinch_received) {
546 tog_resizeterm();
547 tog_sigwinch_received = 0;
548 TAILQ_FOREACH(v, views, entry) {
549 err = view_resize(v);
550 if (err)
551 return err;
552 err = v->input(new, dead, focus, v, KEY_RESIZE);
553 if (err)
554 return err;
558 switch (ch) {
559 case ERR:
560 break;
561 case '\t':
562 if (view->child) {
563 *focus = view->child;
564 view->child_focussed = 1;
565 } else if (view->parent) {
566 *focus = view->parent;
567 view->parent->child_focussed = 0;
569 break;
570 case 'q':
571 err = view->input(new, dead, focus, view, ch);
572 *dead = view;
573 break;
574 case 'Q':
575 *done = 1;
576 break;
577 case 'f':
578 if (view_is_parent_view(view)) {
579 if (view->child == NULL)
580 break;
581 if (view_is_splitscreen(view->child)) {
582 *focus = view->child;
583 view->child_focussed = 1;
584 err = view_fullscreen(view->child);
585 } else
586 err = view_splitscreen(view->child);
587 if (err)
588 break;
589 err = view->child->input(new, dead, focus,
590 view->child, KEY_RESIZE);
591 } else {
592 if (view_is_splitscreen(view)) {
593 *focus = view;
594 view->parent->child_focussed = 1;
595 err = view_fullscreen(view);
596 } else {
597 err = view_splitscreen(view);
599 if (err)
600 break;
601 err = view->input(new, dead, focus, view,
602 KEY_RESIZE);
604 break;
605 case KEY_RESIZE:
606 break;
607 default:
608 err = view->input(new, dead, focus, view, ch);
609 break;
612 return err;
615 void
616 view_vborder(struct tog_view *view)
618 PANEL *panel;
619 struct tog_view *view_above;
621 if (view->parent)
622 return view_vborder(view->parent);
624 panel = panel_above(view->panel);
625 if (panel == NULL)
626 return;
628 view_above = panel_userptr(panel);
629 mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
630 got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
633 int
634 view_needs_focus_indication(struct tog_view *view)
636 if (view_is_parent_view(view)) {
637 if (view->child == NULL || view->child_focussed)
638 return 0;
639 if (!view_is_splitscreen(view->child))
640 return 0;
641 } else if (!view_is_splitscreen(view))
642 return 0;
644 return view->focussed;
647 static const struct got_error *
648 view_loop(struct tog_view *view)
650 const struct got_error *err = NULL;
651 struct tog_view_list_head views;
652 struct tog_view *new_view, *dead_view, *focus_view, *main_view;
653 int fast_refresh = 10;
654 int done = 0, errcode;
656 errcode = pthread_mutex_lock(&tog_mutex);
657 if (errcode)
658 return got_error_set_errno(errcode);
660 TAILQ_INIT(&views);
661 TAILQ_INSERT_HEAD(&views, view, entry);
663 main_view = view;
664 view->focussed = 1;
665 err = view->show(view);
666 if (err)
667 return err;
668 update_panels();
669 doupdate();
670 while (!TAILQ_EMPTY(&views) && !done) {
671 /* Refresh fast during initialization, then become slower. */
672 if (fast_refresh && fast_refresh-- == 0)
673 halfdelay(10); /* switch to once per second */
675 err = view_input(&new_view, &dead_view, &focus_view, &done,
676 view, &views);
677 if (err)
678 break;
679 if (dead_view) {
680 struct tog_view *prev = NULL;
682 if (view_is_parent_view(dead_view))
683 prev = TAILQ_PREV(dead_view,
684 tog_view_list_head, entry);
685 else if (view->parent != dead_view)
686 prev = view->parent;
688 if (dead_view->parent)
689 dead_view->parent->child = NULL;
690 else
691 TAILQ_REMOVE(&views, dead_view, entry);
693 err = view_close(dead_view);
694 if (err || dead_view == main_view)
695 goto done;
697 if (view == dead_view) {
698 if (focus_view)
699 view = focus_view;
700 else if (prev)
701 view = prev;
702 else if (!TAILQ_EMPTY(&views))
703 view = TAILQ_LAST(&views,
704 tog_view_list_head);
705 else
706 view = NULL;
707 if (view) {
708 if (view->child && view->child_focussed)
709 focus_view = view->child;
710 else
711 focus_view = view;
715 if (new_view) {
716 struct tog_view *v, *t;
717 /* Only allow one parent view per type. */
718 TAILQ_FOREACH_SAFE(v, &views, entry, t) {
719 if (v->type != new_view->type)
720 continue;
721 TAILQ_REMOVE(&views, v, entry);
722 err = view_close(v);
723 if (err)
724 goto done;
725 break;
727 TAILQ_INSERT_TAIL(&views, new_view, entry);
728 view = new_view;
729 if (focus_view == NULL)
730 focus_view = new_view;
732 if (focus_view) {
733 show_panel(focus_view->panel);
734 if (view)
735 view->focussed = 0;
736 focus_view->focussed = 1;
737 view = focus_view;
738 if (new_view)
739 show_panel(new_view->panel);
740 if (view->child && view_is_splitscreen(view->child))
741 show_panel(view->child->panel);
743 if (view) {
744 if (focus_view == NULL) {
745 view->focussed = 1;
746 show_panel(view->panel);
747 if (view->child && view_is_splitscreen(view->child))
748 show_panel(view->child->panel);
749 focus_view = view;
751 if (view->parent) {
752 err = view->parent->show(view->parent);
753 if (err)
754 goto done;
756 err = view->show(view);
757 if (err)
758 goto done;
759 if (view->child) {
760 err = view->child->show(view->child);
761 if (err)
762 goto done;
764 update_panels();
765 doupdate();
768 done:
769 while (!TAILQ_EMPTY(&views)) {
770 view = TAILQ_FIRST(&views);
771 TAILQ_REMOVE(&views, view, entry);
772 view_close(view);
775 errcode = pthread_mutex_unlock(&tog_mutex);
776 if (errcode)
777 return got_error_set_errno(errcode);
779 return err;
782 __dead static void
783 usage_log(void)
785 endwin();
786 fprintf(stderr,
787 "usage: %s log [-c commit] [-r repository-path] [path]\n",
788 getprogname());
789 exit(1);
792 /* Create newly allocated wide-character string equivalent to a byte string. */
793 static const struct got_error *
794 mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
796 char *vis = NULL;
797 const struct got_error *err = NULL;
799 *ws = NULL;
800 *wlen = mbstowcs(NULL, s, 0);
801 if (*wlen == (size_t)-1) {
802 int vislen;
803 if (errno != EILSEQ)
804 return got_error_from_errno();
806 /* byte string invalid in current encoding; try to "fix" it */
807 err = got_mbsavis(&vis, &vislen, s);
808 if (err)
809 return err;
810 *wlen = mbstowcs(NULL, vis, 0);
811 if (*wlen == (size_t)-1) {
812 err = got_error_from_errno(); /* give up */
813 goto done;
817 *ws = calloc(*wlen + 1, sizeof(*ws));
818 if (*ws == NULL) {
819 err = got_error_from_errno();
820 goto done;
823 if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
824 err = got_error_from_errno();
825 done:
826 free(vis);
827 if (err) {
828 free(*ws);
829 *ws = NULL;
830 *wlen = 0;
832 return err;
835 /* Format a line for display, ensuring that it won't overflow a width limit. */
836 static const struct got_error *
837 format_line(wchar_t **wlinep, int *widthp, const char *line, int wlimit)
839 const struct got_error *err = NULL;
840 int cols = 0;
841 wchar_t *wline = NULL;
842 size_t wlen;
843 int i;
845 *wlinep = NULL;
846 *widthp = 0;
848 err = mbs2ws(&wline, &wlen, line);
849 if (err)
850 return err;
852 i = 0;
853 while (i < wlen && cols < wlimit) {
854 int width = wcwidth(wline[i]);
855 switch (width) {
856 case 0:
857 i++;
858 break;
859 case 1:
860 case 2:
861 if (cols + width <= wlimit)
862 cols += width;
863 i++;
864 break;
865 case -1:
866 if (wline[i] == L'\t')
867 cols += TABSIZE - ((cols + 1) % TABSIZE);
868 i++;
869 break;
870 default:
871 err = got_error_from_errno();
872 goto done;
875 wline[i] = L'\0';
876 if (widthp)
877 *widthp = cols;
878 done:
879 if (err)
880 free(wline);
881 else
882 *wlinep = wline;
883 return err;
886 static const struct got_error*
887 build_refs_str(char **refs_str, struct got_reflist_head *refs,
888 struct got_object_id *id)
890 static const struct got_error *err = NULL;
891 struct got_reflist_entry *re;
892 char *s;
893 const char *name;
895 *refs_str = NULL;
897 SIMPLEQ_FOREACH(re, refs, entry) {
898 if (got_object_id_cmp(re->id, id) != 0)
899 continue;
900 name = got_ref_get_name(re->ref);
901 if (strcmp(name, GOT_REF_HEAD) == 0)
902 continue;
903 if (strncmp(name, "refs/", 5) == 0)
904 name += 5;
905 if (strncmp(name, "got/", 4) == 0)
906 continue;
907 if (strncmp(name, "heads/", 6) == 0)
908 name += 6;
909 if (strncmp(name, "remotes/", 8) == 0)
910 name += 8;
911 s = *refs_str;
912 if (asprintf(refs_str, "%s%s%s", s ? s : "",
913 s ? ", " : "", name) == -1) {
914 err = got_error_from_errno();
915 free(s);
916 *refs_str = NULL;
917 break;
919 free(s);
922 return err;
925 static const struct got_error *
926 format_author(wchar_t **wauthor, int *author_width, char *author, int limit)
928 char *smallerthan, *at;
930 smallerthan = strchr(author, '<');
931 if (smallerthan && smallerthan[1] != '\0')
932 author = smallerthan + 1;
933 at = strchr(author, '@');
934 if (at)
935 *at = '\0';
936 return format_line(wauthor, author_width, author, limit);
939 static const struct got_error *
940 draw_commit(struct tog_view *view, struct got_commit_object *commit,
941 struct got_object_id *id, struct got_reflist_head *refs,
942 int author_display_cols)
944 const struct got_error *err = NULL;
945 char datebuf[10]; /* YY-MM-DD + SPACE + NUL */
946 char *logmsg0 = NULL, *logmsg = NULL;
947 char *author = NULL;
948 wchar_t *wlogmsg = NULL, *wauthor = NULL;
949 int author_width, logmsg_width;
950 char *newline, *line = NULL;
951 int col, limit;
952 static const size_t date_display_cols = 9;
953 const int avail = view->ncols;
954 struct tm tm;
955 time_t committer_time;
957 committer_time = got_object_commit_get_committer_time(commit);
958 if (localtime_r(&committer_time, &tm) == NULL)
959 return got_error_from_errno();
960 if (strftime(datebuf, sizeof(datebuf), "%g/%m/%d ", &tm)
961 >= sizeof(datebuf))
962 return got_error(GOT_ERR_NO_SPACE);
964 if (avail < date_display_cols)
965 limit = MIN(sizeof(datebuf) - 1, avail);
966 else
967 limit = MIN(date_display_cols, sizeof(datebuf) - 1);
968 waddnstr(view->window, datebuf, limit);
969 col = limit + 1;
970 if (col > avail)
971 goto done;
973 author = strdup(got_object_commit_get_author(commit));
974 if (author == NULL) {
975 err = got_error_from_errno();
976 goto done;
978 err = format_author(&wauthor, &author_width, author, avail - col);
979 if (err)
980 goto done;
981 waddwstr(view->window, wauthor);
982 col += author_width;
983 while (col <= avail && author_width < author_display_cols + 2) {
984 waddch(view->window, ' ');
985 col++;
986 author_width++;
988 if (col > avail)
989 goto done;
991 logmsg0 = strdup(got_object_commit_get_logmsg(commit));
992 if (logmsg0 == NULL) {
993 err = got_error_from_errno();
994 goto done;
996 logmsg = logmsg0;
997 while (*logmsg == '\n')
998 logmsg++;
999 newline = strchr(logmsg, '\n');
1000 if (newline)
1001 *newline = '\0';
1002 limit = avail - col;
1003 err = format_line(&wlogmsg, &logmsg_width, logmsg, limit);
1004 if (err)
1005 goto done;
1006 waddwstr(view->window, wlogmsg);
1007 col += logmsg_width;
1008 while (col <= avail) {
1009 waddch(view->window, ' ');
1010 col++;
1012 done:
1013 free(logmsg0);
1014 free(wlogmsg);
1015 free(author);
1016 free(wauthor);
1017 free(line);
1018 return err;
1021 static struct commit_queue_entry *
1022 alloc_commit_queue_entry(struct got_commit_object *commit,
1023 struct got_object_id *id)
1025 struct commit_queue_entry *entry;
1027 entry = calloc(1, sizeof(*entry));
1028 if (entry == NULL)
1029 return NULL;
1031 entry->id = id;
1032 entry->commit = commit;
1033 return entry;
1036 static void
1037 pop_commit(struct commit_queue *commits)
1039 struct commit_queue_entry *entry;
1041 entry = TAILQ_FIRST(&commits->head);
1042 TAILQ_REMOVE(&commits->head, entry, entry);
1043 got_object_commit_close(entry->commit);
1044 commits->ncommits--;
1045 /* Don't free entry->id! It is owned by the commit graph. */
1046 free(entry);
1049 static void
1050 free_commits(struct commit_queue *commits)
1052 while (!TAILQ_EMPTY(&commits->head))
1053 pop_commit(commits);
1056 static const struct got_error *
1057 queue_commits(struct got_commit_graph *graph, struct commit_queue *commits,
1058 int minqueue, struct got_repository *repo, const char *path)
1060 const struct got_error *err = NULL;
1061 int nqueued = 0;
1064 * We keep all commits open throughout the lifetime of the log
1065 * view in order to avoid having to re-fetch commits from disk
1066 * while updating the display.
1068 while (nqueued < minqueue) {
1069 struct got_object_id *id;
1070 struct got_commit_object *commit;
1071 struct commit_queue_entry *entry;
1072 int errcode;
1074 err = got_commit_graph_iter_next(&id, graph);
1075 if (err) {
1076 if (err->code != GOT_ERR_ITER_NEED_MORE)
1077 break;
1078 err = got_commit_graph_fetch_commits(graph,
1079 minqueue, repo);
1080 if (err)
1081 return err;
1082 continue;
1085 if (id == NULL)
1086 break;
1088 err = got_object_open_as_commit(&commit, repo, id);
1089 if (err)
1090 break;
1091 entry = alloc_commit_queue_entry(commit, id);
1092 if (entry == NULL) {
1093 err = got_error_from_errno();
1094 break;
1097 errcode = pthread_mutex_lock(&tog_mutex);
1098 if (errcode) {
1099 err = got_error_set_errno(errcode);
1100 break;
1103 entry->idx = commits->ncommits;
1104 TAILQ_INSERT_TAIL(&commits->head, entry, entry);
1105 nqueued++;
1106 commits->ncommits++;
1108 errcode = pthread_mutex_unlock(&tog_mutex);
1109 if (errcode && err == NULL)
1110 err = got_error_set_errno(errcode);
1113 return err;
1116 static const struct got_error *
1117 get_head_commit_id(struct got_object_id **head_id, struct got_repository *repo)
1119 const struct got_error *err = NULL;
1120 struct got_reference *head_ref;
1122 *head_id = NULL;
1124 err = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1125 if (err)
1126 return err;
1128 err = got_ref_resolve(head_id, repo, head_ref);
1129 got_ref_close(head_ref);
1130 if (err) {
1131 *head_id = NULL;
1132 return err;
1135 return NULL;
1138 static const struct got_error *
1139 draw_commits(struct tog_view *view, struct commit_queue_entry **last,
1140 struct commit_queue_entry **selected, struct commit_queue_entry *first,
1141 struct commit_queue *commits, int selected_idx, int limit,
1142 struct got_reflist_head *refs, const char *path, int commits_needed)
1144 const struct got_error *err = NULL;
1145 struct commit_queue_entry *entry;
1146 int ncommits, width;
1147 int author_cols = 10;
1148 char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
1149 char *refs_str = NULL;
1150 wchar_t *wline;
1152 entry = first;
1153 ncommits = 0;
1154 while (entry) {
1155 if (ncommits == selected_idx) {
1156 *selected = entry;
1157 break;
1159 entry = TAILQ_NEXT(entry, entry);
1160 ncommits++;
1163 if (*selected) {
1164 err = got_object_id_str(&id_str, (*selected)->id);
1165 if (err)
1166 return err;
1167 if (refs) {
1168 err = build_refs_str(&refs_str, refs, (*selected)->id);
1169 if (err)
1170 goto done;
1174 if (commits_needed == 0)
1175 halfdelay(10); /* disable fast refresh */
1177 if (asprintf(&ncommits_str, " [%d/%d] %s",
1178 entry ? entry->idx + 1 : 0, commits->ncommits,
1179 commits_needed > 0 ? "loading... " :
1180 (refs_str ? refs_str : "")) == -1) {
1181 err = got_error_from_errno();
1182 goto done;
1185 if (path && strcmp(path, "/") != 0) {
1186 if (asprintf(&header, "commit %s %s%s",
1187 id_str ? id_str : "........................................",
1188 path, ncommits_str) == -1) {
1189 err = got_error_from_errno();
1190 header = NULL;
1191 goto done;
1193 } else if (asprintf(&header, "commit %s%s",
1194 id_str ? id_str : "........................................",
1195 ncommits_str) == -1) {
1196 err = got_error_from_errno();
1197 header = NULL;
1198 goto done;
1200 err = format_line(&wline, &width, header, view->ncols);
1201 if (err)
1202 goto done;
1204 werase(view->window);
1206 if (view_needs_focus_indication(view))
1207 wstandout(view->window);
1208 waddwstr(view->window, wline);
1209 while (width < view->ncols) {
1210 waddch(view->window, ' ');
1211 width++;
1213 if (view_needs_focus_indication(view))
1214 wstandend(view->window);
1215 free(wline);
1216 if (limit <= 1)
1217 goto done;
1219 /* Grow author column size if necessary. */
1220 entry = first;
1221 ncommits = 0;
1222 while (entry) {
1223 char *author;
1224 wchar_t *wauthor;
1225 int width;
1226 if (ncommits >= limit - 1)
1227 break;
1228 author = strdup(got_object_commit_get_author(entry->commit));
1229 if (author == NULL) {
1230 err = got_error_from_errno();
1231 goto done;
1233 err = format_author(&wauthor, &width, author, COLS);
1234 if (author_cols < width)
1235 author_cols = width;
1236 free(wauthor);
1237 free(author);
1238 entry = TAILQ_NEXT(entry, entry);
1241 entry = first;
1242 *last = first;
1243 ncommits = 0;
1244 while (entry) {
1245 if (ncommits >= limit - 1)
1246 break;
1247 if (ncommits == selected_idx)
1248 wstandout(view->window);
1249 err = draw_commit(view, entry->commit, entry->id, refs,
1250 author_cols);
1251 if (ncommits == selected_idx)
1252 wstandend(view->window);
1253 if (err)
1254 break;
1255 ncommits++;
1256 *last = entry;
1257 entry = TAILQ_NEXT(entry, entry);
1260 view_vborder(view);
1261 done:
1262 free(id_str);
1263 free(refs_str);
1264 free(ncommits_str);
1265 free(header);
1266 return err;
1269 static void
1270 scroll_up(struct tog_view *view,
1271 struct commit_queue_entry **first_displayed_entry, int maxscroll,
1272 struct commit_queue *commits)
1274 struct commit_queue_entry *entry;
1275 int nscrolled = 0;
1277 entry = TAILQ_FIRST(&commits->head);
1278 if (*first_displayed_entry == entry) {
1279 view_flash(view);
1280 return;
1283 entry = *first_displayed_entry;
1284 while (entry && nscrolled < maxscroll) {
1285 entry = TAILQ_PREV(entry, commit_queue_head, entry);
1286 if (entry) {
1287 *first_displayed_entry = entry;
1288 nscrolled++;
1293 static const struct got_error *
1294 trigger_log_thread(int load_all, int *commits_needed, int *log_complete,
1295 pthread_cond_t *need_commits)
1297 int errcode;
1298 int max_wait = 20;
1300 halfdelay(1); /* fast refresh while loading commits */
1302 while (*commits_needed > 0) {
1303 if (*log_complete)
1304 break;
1306 /* Wake the log thread. */
1307 errcode = pthread_cond_signal(need_commits);
1308 if (errcode)
1309 return got_error_set_errno(errcode);
1310 errcode = pthread_mutex_unlock(&tog_mutex);
1311 if (errcode)
1312 return got_error_set_errno(errcode);
1313 pthread_yield();
1314 errcode = pthread_mutex_lock(&tog_mutex);
1315 if (errcode)
1316 return got_error_set_errno(errcode);
1318 if (*commits_needed > 0 && (!load_all || --max_wait <= 0)) {
1320 * Thread is not done yet; lose a key press
1321 * and let the user retry... this way the GUI
1322 * remains interactive while logging deep paths
1323 * with few commits in history.
1325 return NULL;
1329 return NULL;
1332 static const struct got_error *
1333 scroll_down(struct tog_view *view,
1334 struct commit_queue_entry **first_displayed_entry, int maxscroll,
1335 struct commit_queue_entry **last_displayed_entry,
1336 struct commit_queue *commits, int *log_complete, int *commits_needed,
1337 pthread_cond_t *need_commits)
1339 const struct got_error *err = NULL;
1340 struct commit_queue_entry *pentry;
1341 int nscrolled = 0;
1343 if (*last_displayed_entry == NULL)
1344 return NULL;
1346 pentry = TAILQ_NEXT(*last_displayed_entry, entry);
1347 if (pentry == NULL && !*log_complete) {
1349 * Ask the log thread for required amount of commits
1350 * plus some amount of pre-fetching.
1352 (*commits_needed) += maxscroll + 20;
1353 err = trigger_log_thread(0, commits_needed, log_complete,
1354 need_commits);
1355 if (err)
1356 return err;
1359 do {
1360 pentry = TAILQ_NEXT(*last_displayed_entry, entry);
1361 if (pentry == NULL) {
1362 if (*log_complete)
1363 view_flash(view);
1364 break;
1367 *last_displayed_entry = pentry;
1369 pentry = TAILQ_NEXT(*first_displayed_entry, entry);
1370 if (pentry == NULL)
1371 break;
1372 *first_displayed_entry = pentry;
1373 } while (++nscrolled < maxscroll);
1375 return err;
1378 static const struct got_error *
1379 open_diff_view_for_commit(struct tog_view **new_view, int begin_x,
1380 struct got_commit_object *commit, struct got_object_id *commit_id,
1381 struct tog_view *log_view, struct got_reflist_head *refs,
1382 struct got_repository *repo)
1384 const struct got_error *err;
1385 struct got_object_qid *parent_id;
1386 struct tog_view *diff_view;
1388 diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
1389 if (diff_view == NULL)
1390 return got_error_from_errno();
1392 parent_id = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
1393 err = open_diff_view(diff_view, parent_id ? parent_id->id : NULL,
1394 commit_id, log_view, refs, repo);
1395 if (err == NULL)
1396 *new_view = diff_view;
1397 return err;
1400 static const struct got_error *
1401 browse_commit(struct tog_view **new_view, int begin_x,
1402 struct commit_queue_entry *entry, struct got_reflist_head *refs,
1403 struct got_repository *repo)
1405 const struct got_error *err = NULL;
1406 struct got_tree_object *tree;
1407 struct tog_view *tree_view;
1409 err = got_object_open_as_tree(&tree, repo,
1410 got_object_commit_get_tree_id(entry->commit));
1411 if (err)
1412 return err;
1414 tree_view = view_open(0, 0, 0, begin_x, TOG_VIEW_TREE);
1415 if (tree_view == NULL)
1416 return got_error_from_errno();
1418 err = open_tree_view(tree_view, tree, entry->id, refs, repo);
1419 if (err)
1420 got_object_tree_close(tree);
1421 else
1422 *new_view = tree_view;
1423 return err;
1426 static void *
1427 log_thread(void *arg)
1429 const struct got_error *err = NULL;
1430 int errcode = 0;
1431 struct tog_log_thread_args *a = arg;
1432 int done = 0;
1434 err = got_commit_graph_iter_start(a->graph, a->start_id, a->repo);
1435 if (err)
1436 return (void *)err;
1438 while (!done && !err) {
1439 err = queue_commits(a->graph, a->commits, 1, a->repo,
1440 a->in_repo_path);
1441 if (err) {
1442 if (err->code != GOT_ERR_ITER_COMPLETED)
1443 return (void *)err;
1444 err = NULL;
1445 done = 1;
1446 } else if (a->commits_needed > 0)
1447 a->commits_needed--;
1449 errcode = pthread_mutex_lock(&tog_mutex);
1450 if (errcode)
1451 return (void *)got_error_set_errno(errcode);
1453 if (done)
1454 a->log_complete = 1;
1455 else if (*a->quit) {
1456 done = 1;
1457 a->log_complete = 1;
1458 } else if (*a->first_displayed_entry == NULL) {
1459 *a->first_displayed_entry =
1460 TAILQ_FIRST(&a->commits->head);
1461 *a->selected_entry = *a->first_displayed_entry;
1464 if (done)
1465 a->commits_needed = 0;
1466 else if (a->commits_needed == 0) {
1467 errcode = pthread_cond_wait(&a->need_commits,
1468 &tog_mutex);
1469 if (errcode)
1470 err = got_error_set_errno(errcode);
1473 errcode = pthread_mutex_unlock(&tog_mutex);
1474 if (errcode && err == NULL)
1475 err = got_error_set_errno(errcode);
1477 return (void *)err;
1480 static const struct got_error *
1481 stop_log_thread(struct tog_log_view_state *s)
1483 const struct got_error *err = NULL;
1484 int errcode;
1486 if (s->thread) {
1487 s->quit = 1;
1488 errcode = pthread_cond_signal(&s->thread_args.need_commits);
1489 if (errcode)
1490 return got_error_set_errno(errcode);
1491 errcode = pthread_mutex_unlock(&tog_mutex);
1492 if (errcode)
1493 return got_error_set_errno(errcode);
1494 errcode = pthread_join(s->thread, (void **)&err);
1495 if (errcode)
1496 return got_error_set_errno(errcode);
1497 errcode = pthread_mutex_lock(&tog_mutex);
1498 if (errcode)
1499 return got_error_set_errno(errcode);
1500 s->thread = NULL;
1503 errcode = pthread_cond_destroy(&s->thread_args.need_commits);
1504 if (errcode && err == NULL)
1505 err = got_error_set_errno(errcode);
1507 if (s->thread_args.repo) {
1508 got_repo_close(s->thread_args.repo);
1509 s->thread_args.repo = NULL;
1512 if (s->thread_args.graph) {
1513 got_commit_graph_close(s->thread_args.graph);
1514 s->thread_args.graph = NULL;
1517 return err;
1520 static const struct got_error *
1521 close_log_view(struct tog_view *view)
1523 const struct got_error *err = NULL;
1524 struct tog_log_view_state *s = &view->state.log;
1526 err = stop_log_thread(s);
1527 free_commits(&s->commits);
1528 free(s->in_repo_path);
1529 s->in_repo_path = NULL;
1530 free(s->start_id);
1531 s->start_id = NULL;
1532 return err;
1535 static const struct got_error *
1536 open_log_view(struct tog_view *view, struct got_object_id *start_id,
1537 struct got_reflist_head *refs, struct got_repository *repo,
1538 const char *path, int check_disk)
1540 const struct got_error *err = NULL;
1541 struct tog_log_view_state *s = &view->state.log;
1542 struct got_repository *thread_repo = NULL;
1543 struct got_commit_graph *thread_graph = NULL;
1544 int errcode;
1546 err = got_repo_map_path(&s->in_repo_path, repo, path, check_disk);
1547 if (err != NULL)
1548 goto done;
1550 /* The commit queue only contains commits being displayed. */
1551 TAILQ_INIT(&s->commits.head);
1552 s->commits.ncommits = 0;
1554 s->refs = refs;
1555 s->repo = repo;
1556 s->start_id = got_object_id_dup(start_id);
1557 if (s->start_id == NULL) {
1558 err = got_error_from_errno();
1559 goto done;
1562 view->show = show_log_view;
1563 view->input = input_log_view;
1564 view->close = close_log_view;
1566 err = got_repo_open(&thread_repo, got_repo_get_path(repo));
1567 if (err)
1568 goto done;
1569 err = got_commit_graph_open(&thread_graph, start_id, s->in_repo_path,
1570 0, thread_repo);
1571 if (err)
1572 goto done;
1574 errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
1575 if (errcode) {
1576 err = got_error_set_errno(errcode);
1577 goto done;
1580 s->thread_args.commits_needed = view->nlines;
1581 s->thread_args.graph = thread_graph;
1582 s->thread_args.commits = &s->commits;
1583 s->thread_args.in_repo_path = s->in_repo_path;
1584 s->thread_args.start_id = s->start_id;
1585 s->thread_args.repo = thread_repo;
1586 s->thread_args.log_complete = 0;
1587 s->thread_args.quit = &s->quit;
1588 s->thread_args.view = view;
1589 s->thread_args.first_displayed_entry = &s->first_displayed_entry;
1590 s->thread_args.selected_entry = &s->selected_entry;
1591 done:
1592 if (err)
1593 close_log_view(view);
1594 return err;
1597 static const struct got_error *
1598 show_log_view(struct tog_view *view)
1600 struct tog_log_view_state *s = &view->state.log;
1602 if (s->thread == NULL) {
1603 int errcode = pthread_create(&s->thread, NULL, log_thread,
1604 &s->thread_args);
1605 if (errcode)
1606 return got_error_set_errno(errcode);
1609 return draw_commits(view, &s->last_displayed_entry,
1610 &s->selected_entry, s->first_displayed_entry,
1611 &s->commits, s->selected, view->nlines, s->refs,
1612 s->in_repo_path, s->thread_args.commits_needed);
1615 static const struct got_error *
1616 input_log_view(struct tog_view **new_view, struct tog_view **dead_view,
1617 struct tog_view **focus_view, struct tog_view *view, int ch)
1619 const struct got_error *err = NULL;
1620 struct tog_log_view_state *s = &view->state.log;
1621 char *parent_path;
1622 struct tog_view *diff_view = NULL, *tree_view = NULL;
1623 int begin_x = 0;
1625 switch (ch) {
1626 case 'q':
1627 s->quit = 1;
1628 break;
1629 case 'k':
1630 case KEY_UP:
1631 case '<':
1632 case ',':
1633 if (s->first_displayed_entry == NULL)
1634 break;
1635 if (s->selected > 0)
1636 s->selected--;
1637 if (s->selected > 0)
1638 break;
1639 scroll_up(view, &s->first_displayed_entry, 1,
1640 &s->commits);
1641 break;
1642 case KEY_PPAGE:
1643 if (s->first_displayed_entry == NULL)
1644 break;
1645 if (TAILQ_FIRST(&s->commits.head) ==
1646 s->first_displayed_entry) {
1647 if (s->selected == 0) {
1648 view_flash(view);
1649 break;
1651 s->selected = 0;
1652 break;
1654 scroll_up(view, &s->first_displayed_entry,
1655 view->nlines, &s->commits);
1656 break;
1657 case 'j':
1658 case KEY_DOWN:
1659 case '>':
1660 case '.':
1661 if (s->first_displayed_entry == NULL)
1662 break;
1663 if (s->selected < MIN(view->nlines - 2,
1664 s->commits.ncommits - 1)) {
1665 s->selected++;
1666 break;
1668 err = scroll_down(view, &s->first_displayed_entry, 1,
1669 &s->last_displayed_entry, &s->commits,
1670 &s->thread_args.log_complete,
1671 &s->thread_args.commits_needed,
1672 &s->thread_args.need_commits);
1673 break;
1674 case KEY_NPAGE: {
1675 struct commit_queue_entry *first;
1676 first = s->first_displayed_entry;
1677 if (first == NULL)
1678 break;
1679 err = scroll_down(view, &s->first_displayed_entry,
1680 view->nlines, &s->last_displayed_entry,
1681 &s->commits, &s->thread_args.log_complete,
1682 &s->thread_args.commits_needed,
1683 &s->thread_args.need_commits);
1684 if (first == s->first_displayed_entry &&
1685 s->selected < MIN(view->nlines - 2,
1686 s->commits.ncommits - 1)) {
1687 /* can't scroll further down */
1688 s->selected = MIN(view->nlines - 2,
1689 s->commits.ncommits - 1);
1691 err = NULL;
1692 break;
1694 case KEY_RESIZE:
1695 if (s->selected > view->nlines - 2)
1696 s->selected = view->nlines - 2;
1697 if (s->selected > s->commits.ncommits - 1)
1698 s->selected = s->commits.ncommits - 1;
1699 break;
1700 case KEY_ENTER:
1701 case '\r':
1702 if (s->selected_entry == NULL)
1703 break;
1704 if (view_is_parent_view(view))
1705 begin_x = view_split_begin_x(view->begin_x);
1706 err = open_diff_view_for_commit(&diff_view, begin_x,
1707 s->selected_entry->commit, s->selected_entry->id,
1708 view, s->refs, s->repo);
1709 if (err)
1710 break;
1711 if (view_is_parent_view(view)) {
1712 err = view_close_child(view);
1713 if (err)
1714 return err;
1715 err = view_set_child(view, diff_view);
1716 if (err) {
1717 view_close(diff_view);
1718 break;
1720 *focus_view = diff_view;
1721 view->child_focussed = 1;
1722 } else
1723 *new_view = diff_view;
1724 break;
1725 case 't':
1726 if (s->selected_entry == NULL)
1727 break;
1728 if (view_is_parent_view(view))
1729 begin_x = view_split_begin_x(view->begin_x);
1730 err = browse_commit(&tree_view, begin_x,
1731 s->selected_entry, s->refs, s->repo);
1732 if (err)
1733 break;
1734 if (view_is_parent_view(view)) {
1735 err = view_close_child(view);
1736 if (err)
1737 return err;
1738 err = view_set_child(view, tree_view);
1739 if (err) {
1740 view_close(tree_view);
1741 break;
1743 *focus_view = tree_view;
1744 view->child_focussed = 1;
1745 } else
1746 *new_view = tree_view;
1747 break;
1748 case KEY_BACKSPACE:
1749 if (strcmp(s->in_repo_path, "/") == 0)
1750 break;
1751 parent_path = dirname(s->in_repo_path);
1752 if (parent_path && strcmp(parent_path, ".") != 0) {
1753 struct tog_view *lv;
1754 err = stop_log_thread(s);
1755 if (err)
1756 return err;
1757 lv = view_open(view->nlines, view->ncols,
1758 view->begin_y, view->begin_x, TOG_VIEW_LOG);
1759 if (lv == NULL)
1760 return got_error_from_errno();
1761 err = open_log_view(lv, s->start_id, s->refs,
1762 s->repo, parent_path, 0);
1763 if (err)
1764 return err;;
1765 if (view_is_parent_view(view))
1766 *new_view = lv;
1767 else {
1768 view_set_child(view->parent, lv);
1769 *focus_view = lv;
1771 return NULL;
1773 break;
1774 default:
1775 break;
1778 return err;
1781 static const struct got_error *
1782 apply_unveil(const char *repo_path, const char *worktree_path)
1784 const struct got_error *error;
1786 if (repo_path && unveil(repo_path, "r") != 0)
1787 return got_error_from_errno();
1789 if (worktree_path && unveil(worktree_path, "rwc") != 0)
1790 return got_error_from_errno();
1792 if (unveil("/tmp", "rwc") != 0)
1793 return got_error_from_errno();
1795 error = got_privsep_unveil_exec_helpers();
1796 if (error != NULL)
1797 return error;
1799 if (unveil(NULL, NULL) != 0)
1800 return got_error_from_errno();
1802 return NULL;
1805 static void
1806 init_curses(void)
1808 initscr();
1809 cbreak();
1810 halfdelay(1); /* Do fast refresh while initial view is loading. */
1811 noecho();
1812 nonl();
1813 intrflush(stdscr, FALSE);
1814 keypad(stdscr, TRUE);
1815 curs_set(0);
1816 signal(SIGWINCH, tog_sigwinch);
1819 static const struct got_error *
1820 cmd_log(int argc, char *argv[])
1822 const struct got_error *error;
1823 struct got_repository *repo = NULL;
1824 struct got_worktree *worktree = NULL;
1825 struct got_reflist_head refs;
1826 struct got_object_id *start_id = NULL;
1827 char *path = NULL, *repo_path = NULL, *cwd = NULL;
1828 char *start_commit = NULL;
1829 int ch;
1830 struct tog_view *view;
1832 SIMPLEQ_INIT(&refs);
1834 #ifndef PROFILE
1835 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
1836 NULL) == -1)
1837 err(1, "pledge");
1838 #endif
1840 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
1841 switch (ch) {
1842 case 'c':
1843 start_commit = optarg;
1844 break;
1845 case 'r':
1846 repo_path = realpath(optarg, NULL);
1847 if (repo_path == NULL)
1848 err(1, "-r option");
1849 break;
1850 default:
1851 usage_log();
1852 /* NOTREACHED */
1856 argc -= optind;
1857 argv += optind;
1859 cwd = getcwd(NULL, 0);
1860 if (cwd == NULL) {
1861 error = got_error_from_errno();
1862 goto done;
1864 error = got_worktree_open(&worktree, cwd);
1865 if (error && error->code != GOT_ERR_NOT_WORKTREE)
1866 goto done;
1867 error = NULL;
1869 if (argc == 0) {
1870 path = strdup("");
1871 if (path == NULL) {
1872 error = got_error_from_errno();
1873 goto done;
1875 } else if (argc == 1) {
1876 if (worktree) {
1877 error = got_worktree_resolve_path(&path, worktree,
1878 argv[0]);
1879 if (error)
1880 goto done;
1881 } else {
1882 path = strdup(argv[0]);
1883 if (path == NULL) {
1884 error = got_error_from_errno();
1885 goto done;
1888 } else
1889 usage_log();
1891 repo_path = worktree ?
1892 strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
1893 if (repo_path == NULL) {
1894 error = got_error_from_errno();
1895 goto done;
1898 init_curses();
1900 error = apply_unveil(repo_path,
1901 worktree ? got_worktree_get_root_path(worktree) : NULL);
1902 if (error)
1903 goto done;
1905 error = got_repo_open(&repo, repo_path);
1906 if (error != NULL)
1907 goto done;
1909 if (start_commit == NULL)
1910 error = get_head_commit_id(&start_id, repo);
1911 else
1912 error = got_object_resolve_id_str(&start_id, repo,
1913 start_commit);
1914 if (error != NULL)
1915 goto done;
1917 error = got_ref_list(&refs, repo);
1918 if (error)
1919 goto done;
1921 view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
1922 if (view == NULL) {
1923 error = got_error_from_errno();
1924 goto done;
1926 error = open_log_view(view, start_id, &refs, repo, path, 1);
1927 if (error)
1928 goto done;
1929 error = view_loop(view);
1930 done:
1931 free(repo_path);
1932 free(cwd);
1933 free(path);
1934 free(start_id);
1935 if (repo)
1936 got_repo_close(repo);
1937 if (worktree)
1938 got_worktree_close(worktree);
1939 got_ref_list_free(&refs);
1940 return error;
1943 __dead static void
1944 usage_diff(void)
1946 endwin();
1947 fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
1948 getprogname());
1949 exit(1);
1952 static char *
1953 parse_next_line(FILE *f, size_t *len)
1955 char *line;
1956 size_t linelen;
1957 size_t lineno;
1958 const char delim[3] = { '\0', '\0', '\0'};
1960 line = fparseln(f, &linelen, &lineno, delim, 0);
1961 if (len)
1962 *len = linelen;
1963 return line;
1966 static const struct got_error *
1967 draw_file(struct tog_view *view, FILE *f, int *first_displayed_line,
1968 int *last_displayed_line, int *eof, int max_lines,
1969 char * header)
1971 const struct got_error *err;
1972 int nlines = 0, nprinted = 0;
1973 char *line;
1974 size_t len;
1975 wchar_t *wline;
1976 int width;
1978 rewind(f);
1979 werase(view->window);
1981 if (header) {
1982 err = format_line(&wline, &width, header, view->ncols);
1983 if (err) {
1984 return err;
1987 if (view_needs_focus_indication(view))
1988 wstandout(view->window);
1989 waddwstr(view->window, wline);
1990 if (view_needs_focus_indication(view))
1991 wstandend(view->window);
1992 if (width < view->ncols)
1993 waddch(view->window, '\n');
1995 if (max_lines <= 1)
1996 return NULL;
1997 max_lines--;
2000 *eof = 0;
2001 while (nprinted < max_lines) {
2002 line = parse_next_line(f, &len);
2003 if (line == NULL) {
2004 *eof = 1;
2005 break;
2007 if (++nlines < *first_displayed_line) {
2008 free(line);
2009 continue;
2012 err = format_line(&wline, &width, line, view->ncols);
2013 if (err) {
2014 free(line);
2015 return err;
2017 waddwstr(view->window, wline);
2018 if (width < view->ncols)
2019 waddch(view->window, '\n');
2020 if (++nprinted == 1)
2021 *first_displayed_line = nlines;
2022 free(line);
2023 free(wline);
2024 wline = NULL;
2026 *last_displayed_line = nlines;
2028 view_vborder(view);
2030 return NULL;
2033 static char *
2034 get_datestr(time_t *time, char *datebuf)
2036 char *p, *s = ctime_r(time, datebuf);
2037 p = strchr(s, '\n');
2038 if (p)
2039 *p = '\0';
2040 return s;
2043 static const struct got_error *
2044 write_commit_info(struct got_object_id *commit_id,
2045 struct got_reflist_head *refs, struct got_repository *repo, FILE *outfile)
2047 const struct got_error *err = NULL;
2048 char datebuf[26];
2049 struct got_commit_object *commit;
2050 char *id_str = NULL;
2051 time_t committer_time;
2052 const char *author, *committer;
2053 char *refs_str = NULL;
2055 if (refs) {
2056 err = build_refs_str(&refs_str, refs, commit_id);
2057 if (err)
2058 return err;
2061 err = got_object_open_as_commit(&commit, repo, commit_id);
2062 if (err)
2063 return err;
2065 err = got_object_id_str(&id_str, commit_id);
2066 if (err) {
2067 err = got_error_from_errno();
2068 goto done;
2071 if (fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
2072 refs_str ? refs_str : "", refs_str ? ")" : "") < 0) {
2073 err = got_error_from_errno();
2074 goto done;
2076 if (fprintf(outfile, "from: %s\n",
2077 got_object_commit_get_author(commit)) < 0) {
2078 err = got_error_from_errno();
2079 goto done;
2081 committer_time = got_object_commit_get_committer_time(commit);
2082 if (fprintf(outfile, "date: %s UTC\n",
2083 get_datestr(&committer_time, datebuf)) < 0) {
2084 err = got_error_from_errno();
2085 goto done;
2087 author = got_object_commit_get_author(commit);
2088 committer = got_object_commit_get_committer(commit);
2089 if (strcmp(author, committer) != 0 &&
2090 fprintf(outfile, "via: %s\n", committer) < 0) {
2091 err = got_error_from_errno();
2092 goto done;
2094 if (fprintf(outfile, "%s\n",
2095 got_object_commit_get_logmsg(commit)) < 0) {
2096 err = got_error_from_errno();
2097 goto done;
2099 done:
2100 free(id_str);
2101 free(refs_str);
2102 got_object_commit_close(commit);
2103 return err;
2106 static const struct got_error *
2107 create_diff(struct tog_diff_view_state *s)
2109 const struct got_error *err = NULL;
2110 FILE *f = NULL;
2111 int obj_type;
2113 f = got_opentemp();
2114 if (f == NULL) {
2115 err = got_error_from_errno();
2116 goto done;
2118 if (s->f && fclose(s->f) != 0) {
2119 err = got_error_from_errno();
2120 goto done;
2122 s->f = f;
2124 if (s->id1)
2125 err = got_object_get_type(&obj_type, s->repo, s->id1);
2126 else
2127 err = got_object_get_type(&obj_type, s->repo, s->id2);
2128 if (err)
2129 goto done;
2131 switch (obj_type) {
2132 case GOT_OBJ_TYPE_BLOB:
2133 err = got_diff_objects_as_blobs(s->id1, s->id2, NULL, NULL,
2134 s->diff_context, s->repo, f);
2135 break;
2136 case GOT_OBJ_TYPE_TREE:
2137 err = got_diff_objects_as_trees(s->id1, s->id2, "", "",
2138 s->diff_context, s->repo, f);
2139 break;
2140 case GOT_OBJ_TYPE_COMMIT: {
2141 const struct got_object_id_queue *parent_ids;
2142 struct got_object_qid *pid;
2143 struct got_commit_object *commit2;
2145 err = got_object_open_as_commit(&commit2, s->repo, s->id2);
2146 if (err)
2147 break;
2148 /* Show commit info if we're diffing to a parent/root commit. */
2149 if (s->id1 == NULL)
2150 write_commit_info(s->id2, s->refs, s->repo, f);
2151 else {
2152 parent_ids = got_object_commit_get_parent_ids(commit2);
2153 SIMPLEQ_FOREACH(pid, parent_ids, entry) {
2154 if (got_object_id_cmp(s->id1, pid->id) == 0) {
2155 write_commit_info(s->id2, s->refs,
2156 s->repo, f);
2157 break;
2161 got_object_commit_close(commit2);
2163 err = got_diff_objects_as_commits(s->id1, s->id2,
2164 s->diff_context, s->repo, f);
2165 break;
2167 default:
2168 err = got_error(GOT_ERR_OBJ_TYPE);
2169 break;
2171 done:
2172 if (f && fflush(f) != 0 && err == NULL)
2173 err = got_error_from_errno();
2174 return err;
2177 static void
2178 diff_view_indicate_progress(struct tog_view *view)
2180 werase(view->window);
2181 waddstr(view->window, "diffing...");
2182 update_panels();
2183 doupdate();
2186 static const struct got_error *
2187 open_diff_view(struct tog_view *view, struct got_object_id *id1,
2188 struct got_object_id *id2, struct tog_view *log_view,
2189 struct got_reflist_head *refs, struct got_repository *repo)
2191 const struct got_error *err;
2193 if (id1 != NULL && id2 != NULL) {
2194 int type1, type2;
2195 err = got_object_get_type(&type1, repo, id1);
2196 if (err)
2197 return err;
2198 err = got_object_get_type(&type2, repo, id2);
2199 if (err)
2200 return err;
2202 if (type1 != type2)
2203 return got_error(GOT_ERR_OBJ_TYPE);
2206 if (id1) {
2207 view->state.diff.id1 = got_object_id_dup(id1);
2208 if (view->state.diff.id1 == NULL)
2209 return got_error_from_errno();
2210 } else
2211 view->state.diff.id1 = NULL;
2213 view->state.diff.id2 = got_object_id_dup(id2);
2214 if (view->state.diff.id2 == NULL) {
2215 free(view->state.diff.id1);
2216 view->state.diff.id1 = NULL;
2217 return got_error_from_errno();
2219 view->state.diff.f = NULL;
2220 view->state.diff.first_displayed_line = 1;
2221 view->state.diff.last_displayed_line = view->nlines;
2222 view->state.diff.diff_context = 3;
2223 view->state.diff.log_view = log_view;
2224 view->state.diff.repo = repo;
2225 view->state.diff.refs = refs;
2227 if (log_view && view_is_splitscreen(view))
2228 show_log_view(log_view); /* draw vborder */
2229 diff_view_indicate_progress(view);
2231 err = create_diff(&view->state.diff);
2232 if (err) {
2233 free(view->state.diff.id1);
2234 view->state.diff.id1 = NULL;
2235 free(view->state.diff.id2);
2236 view->state.diff.id2 = NULL;
2237 return err;
2240 view->show = show_diff_view;
2241 view->input = input_diff_view;
2242 view->close = close_diff_view;
2244 return NULL;
2247 static const struct got_error *
2248 close_diff_view(struct tog_view *view)
2250 const struct got_error *err = NULL;
2252 free(view->state.diff.id1);
2253 view->state.diff.id1 = NULL;
2254 free(view->state.diff.id2);
2255 view->state.diff.id2 = NULL;
2256 if (view->state.diff.f && fclose(view->state.diff.f) == EOF)
2257 err = got_error_from_errno();
2258 return err;
2261 static const struct got_error *
2262 show_diff_view(struct tog_view *view)
2264 const struct got_error *err;
2265 struct tog_diff_view_state *s = &view->state.diff;
2266 char *id_str1 = NULL, *id_str2, *header;
2268 if (s->id1) {
2269 err = got_object_id_str(&id_str1, s->id1);
2270 if (err)
2271 return err;
2273 err = got_object_id_str(&id_str2, s->id2);
2274 if (err)
2275 return err;
2277 if (asprintf(&header, "diff %s %s",
2278 id_str1 ? id_str1 : "/dev/null", id_str2) == -1) {
2279 err = got_error_from_errno();
2280 free(id_str1);
2281 free(id_str2);
2282 return err;
2284 free(id_str1);
2285 free(id_str2);
2287 return draw_file(view, s->f, &s->first_displayed_line,
2288 &s->last_displayed_line, &s->eof, view->nlines,
2289 header);
2292 static const struct got_error *
2293 set_selected_commit(struct tog_diff_view_state *s,
2294 struct commit_queue_entry *entry)
2296 const struct got_error *err;
2297 const struct got_object_id_queue *parent_ids;
2298 struct got_commit_object *selected_commit;
2299 struct got_object_qid *pid;
2301 free(s->id2);
2302 s->id2 = got_object_id_dup(entry->id);
2303 if (s->id2 == NULL)
2304 return got_error_from_errno();
2306 err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
2307 if (err)
2308 return err;
2309 parent_ids = got_object_commit_get_parent_ids(selected_commit);
2310 free(s->id1);
2311 pid = SIMPLEQ_FIRST(parent_ids);
2312 s->id1 = pid ? got_object_id_dup(pid->id) : NULL;
2313 got_object_commit_close(selected_commit);
2314 return NULL;
2317 static const struct got_error *
2318 input_diff_view(struct tog_view **new_view, struct tog_view **dead_view,
2319 struct tog_view **focus_view, struct tog_view *view, int ch)
2321 const struct got_error *err = NULL;
2322 struct tog_diff_view_state *s = &view->state.diff;
2323 struct tog_log_view_state *ls;
2324 struct commit_queue_entry *entry;
2325 int i;
2327 switch (ch) {
2328 case 'k':
2329 case KEY_UP:
2330 if (s->first_displayed_line > 1)
2331 s->first_displayed_line--;
2332 else
2333 view_flash(view);
2334 break;
2335 case KEY_PPAGE:
2336 if (s->first_displayed_line == 1) {
2337 view_flash(view);
2338 break;
2340 i = 0;
2341 while (i++ < view->nlines - 1 &&
2342 s->first_displayed_line > 1)
2343 s->first_displayed_line--;
2344 break;
2345 case 'j':
2346 case KEY_DOWN:
2347 if (!s->eof)
2348 s->first_displayed_line++;
2349 else
2350 view_flash(view);
2351 break;
2352 case KEY_NPAGE:
2353 case ' ':
2354 if (s->eof) {
2355 view_flash(view);
2356 break;
2358 i = 0;
2359 while (!s->eof && i++ < view->nlines - 1) {
2360 char *line;
2361 line = parse_next_line(s->f, NULL);
2362 s->first_displayed_line++;
2363 if (line == NULL)
2364 break;
2366 break;
2367 case '[':
2368 if (s->diff_context > 0) {
2369 s->diff_context--;
2370 diff_view_indicate_progress(view);
2371 err = create_diff(s);
2373 break;
2374 case ']':
2375 if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
2376 s->diff_context++;
2377 diff_view_indicate_progress(view);
2378 err = create_diff(s);
2380 break;
2381 case '<':
2382 case ',':
2383 if (s->log_view == NULL)
2384 break;
2385 ls = &s->log_view->state.log;
2386 entry = TAILQ_PREV(ls->selected_entry,
2387 commit_queue_head, entry);
2388 if (entry == NULL)
2389 break;
2391 err = input_log_view(NULL, NULL, NULL, s->log_view,
2392 KEY_UP);
2393 if (err)
2394 break;
2396 err = set_selected_commit(s, entry);
2397 if (err)
2398 break;
2400 s->first_displayed_line = 1;
2401 s->last_displayed_line = view->nlines;
2403 diff_view_indicate_progress(view);
2404 err = create_diff(s);
2405 break;
2406 case '>':
2407 case '.':
2408 if (s->log_view == NULL)
2409 break;
2410 ls = &s->log_view->state.log;
2412 if (TAILQ_NEXT(ls->selected_entry, entry) == NULL) {
2413 ls->thread_args.commits_needed++;
2415 /* Display "loading..." in log view. */
2416 show_log_view(s->log_view);
2417 update_panels();
2418 doupdate();
2420 err = trigger_log_thread(1 /* load_all */,
2421 &ls->thread_args.commits_needed,
2422 &ls->thread_args.log_complete,
2423 &ls->thread_args.need_commits);
2424 if (err)
2425 break;
2427 err = input_log_view(NULL, NULL, NULL, s->log_view,
2428 KEY_DOWN);
2429 if (err)
2430 break;
2432 entry = TAILQ_NEXT(ls->selected_entry, entry);
2433 if (entry == NULL)
2434 break;
2436 err = set_selected_commit(s, entry);
2437 if (err)
2438 break;
2440 s->first_displayed_line = 1;
2441 s->last_displayed_line = view->nlines;
2443 diff_view_indicate_progress(view);
2444 err = create_diff(s);
2445 break;
2446 default:
2447 break;
2450 return err;
2453 static const struct got_error *
2454 cmd_diff(int argc, char *argv[])
2456 const struct got_error *error = NULL;
2457 struct got_repository *repo = NULL;
2458 struct got_reflist_head refs;
2459 struct got_object_id *id1 = NULL, *id2 = NULL;
2460 char *repo_path = NULL;
2461 char *id_str1 = NULL, *id_str2 = NULL;
2462 int ch;
2463 struct tog_view *view;
2465 #ifndef PROFILE
2466 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
2467 NULL) == -1)
2468 err(1, "pledge");
2469 #endif
2471 while ((ch = getopt(argc, argv, "")) != -1) {
2472 switch (ch) {
2473 default:
2474 usage_diff();
2475 /* NOTREACHED */
2479 argc -= optind;
2480 argv += optind;
2482 if (argc == 0) {
2483 usage_diff(); /* TODO show local worktree changes */
2484 } else if (argc == 2) {
2485 repo_path = getcwd(NULL, 0);
2486 if (repo_path == NULL)
2487 return got_error_from_errno();
2488 id_str1 = argv[0];
2489 id_str2 = argv[1];
2490 } else if (argc == 3) {
2491 repo_path = realpath(argv[0], NULL);
2492 if (repo_path == NULL)
2493 return got_error_from_errno();
2494 id_str1 = argv[1];
2495 id_str2 = argv[2];
2496 } else
2497 usage_diff();
2499 init_curses();
2501 error = apply_unveil(repo_path, NULL);
2502 if (error)
2503 goto done;
2505 error = got_repo_open(&repo, repo_path);
2506 free(repo_path);
2507 if (error)
2508 goto done;
2510 error = got_object_resolve_id_str(&id1, repo, id_str1);
2511 if (error)
2512 goto done;
2514 error = got_object_resolve_id_str(&id2, repo, id_str2);
2515 if (error)
2516 goto done;
2518 SIMPLEQ_INIT(&refs);
2519 error = got_ref_list(&refs, repo);
2520 if (error)
2521 goto done;
2523 view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
2524 if (view == NULL) {
2525 error = got_error_from_errno();
2526 goto done;
2528 error = open_diff_view(view, id1, id2, NULL, &refs, repo);
2529 if (error)
2530 goto done;
2531 error = view_loop(view);
2532 done:
2533 got_repo_close(repo);
2534 got_ref_list_free(&refs);
2535 return error;
2538 __dead static void
2539 usage_blame(void)
2541 endwin();
2542 fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
2543 getprogname());
2544 exit(1);
2547 struct tog_blame_line {
2548 int annotated;
2549 struct got_object_id *id;
2552 static const struct got_error *
2553 draw_blame(struct tog_view *view, struct got_object_id *id, FILE *f,
2554 const char *path, struct tog_blame_line *lines, int nlines,
2555 int blame_complete, int selected_line, int *first_displayed_line,
2556 int *last_displayed_line, int *eof, int max_lines)
2558 const struct got_error *err;
2559 int lineno = 0, nprinted = 0;
2560 char *line;
2561 size_t len;
2562 wchar_t *wline;
2563 int width, wlimit;
2564 struct tog_blame_line *blame_line;
2565 struct got_object_id *prev_id = NULL;
2566 char *id_str;
2568 err = got_object_id_str(&id_str, id);
2569 if (err)
2570 return err;
2572 rewind(f);
2573 werase(view->window);
2575 if (asprintf(&line, "commit %s", id_str) == -1) {
2576 err = got_error_from_errno();
2577 free(id_str);
2578 return err;
2581 err = format_line(&wline, &width, line, view->ncols);
2582 free(line);
2583 line = NULL;
2584 if (view_needs_focus_indication(view))
2585 wstandout(view->window);
2586 waddwstr(view->window, wline);
2587 if (view_needs_focus_indication(view))
2588 wstandend(view->window);
2589 free(wline);
2590 wline = NULL;
2591 if (width < view->ncols)
2592 waddch(view->window, '\n');
2594 if (asprintf(&line, "[%d/%d] %s%s",
2595 *first_displayed_line - 1 + selected_line, nlines,
2596 blame_complete ? "" : "annotating... ", path) == -1) {
2597 free(id_str);
2598 return got_error_from_errno();
2600 free(id_str);
2601 err = format_line(&wline, &width, line, view->ncols);
2602 free(line);
2603 line = NULL;
2604 if (err)
2605 return err;
2606 waddwstr(view->window, wline);
2607 free(wline);
2608 wline = NULL;
2609 if (width < view->ncols)
2610 waddch(view->window, '\n');
2612 *eof = 0;
2613 while (nprinted < max_lines - 2) {
2614 line = parse_next_line(f, &len);
2615 if (line == NULL) {
2616 *eof = 1;
2617 break;
2619 if (++lineno < *first_displayed_line) {
2620 free(line);
2621 continue;
2624 wlimit = view->ncols < 9 ? 0 : view->ncols - 9;
2625 err = format_line(&wline, &width, line, wlimit);
2626 if (err) {
2627 free(line);
2628 return err;
2631 if (view->focussed && nprinted == selected_line - 1)
2632 wstandout(view->window);
2634 blame_line = &lines[lineno - 1];
2635 if (blame_line->annotated && prev_id &&
2636 got_object_id_cmp(prev_id, blame_line->id) == 0)
2637 waddstr(view->window, " ");
2638 else if (blame_line->annotated) {
2639 char *id_str;
2640 err = got_object_id_str(&id_str, blame_line->id);
2641 if (err) {
2642 free(line);
2643 free(wline);
2644 return err;
2646 wprintw(view->window, "%.8s ", id_str);
2647 free(id_str);
2648 prev_id = blame_line->id;
2649 } else {
2650 waddstr(view->window, "........ ");
2651 prev_id = NULL;
2654 waddwstr(view->window, wline);
2655 while (width < wlimit) {
2656 waddch(view->window, ' ');
2657 width++;
2659 if (view->focussed && nprinted == selected_line - 1)
2660 wstandend(view->window);
2661 if (++nprinted == 1)
2662 *first_displayed_line = lineno;
2663 free(line);
2664 free(wline);
2665 wline = NULL;
2667 *last_displayed_line = lineno;
2669 view_vborder(view);
2671 return NULL;
2674 static const struct got_error *
2675 blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
2677 const struct got_error *err = NULL;
2678 struct tog_blame_cb_args *a = arg;
2679 struct tog_blame_line *line;
2680 int errcode;
2682 if (nlines != a->nlines ||
2683 (lineno != -1 && lineno < 1) || lineno > a->nlines)
2684 return got_error(GOT_ERR_RANGE);
2686 errcode = pthread_mutex_lock(&tog_mutex);
2687 if (errcode)
2688 return got_error_set_errno(errcode);
2690 if (*a->quit) { /* user has quit the blame view */
2691 err = got_error(GOT_ERR_ITER_COMPLETED);
2692 goto done;
2695 if (lineno == -1)
2696 goto done; /* no change in this commit */
2698 line = &a->lines[lineno - 1];
2699 if (line->annotated)
2700 goto done;
2702 line->id = got_object_id_dup(id);
2703 if (line->id == NULL) {
2704 err = got_error_from_errno();
2705 goto done;
2707 line->annotated = 1;
2708 done:
2709 errcode = pthread_mutex_unlock(&tog_mutex);
2710 if (errcode)
2711 err = got_error_set_errno(errcode);
2712 return err;
2715 static void *
2716 blame_thread(void *arg)
2718 const struct got_error *err;
2719 struct tog_blame_thread_args *ta = arg;
2720 struct tog_blame_cb_args *a = ta->cb_args;
2721 int errcode;
2723 err = got_blame_incremental(ta->path, a->commit_id, ta->repo,
2724 blame_cb, ta->cb_args);
2726 errcode = pthread_mutex_lock(&tog_mutex);
2727 if (errcode)
2728 return (void *)got_error_set_errno(errcode);
2730 got_repo_close(ta->repo);
2731 ta->repo = NULL;
2732 *ta->complete = 1;
2734 errcode = pthread_mutex_unlock(&tog_mutex);
2735 if (errcode && err == NULL)
2736 err = got_error_set_errno(errcode);
2738 return (void *)err;
2741 static struct got_object_id *
2742 get_selected_commit_id(struct tog_blame_line *lines, int first_displayed_line,
2743 int selected_line)
2745 struct tog_blame_line *line;
2747 line = &lines[first_displayed_line - 1 + selected_line - 1];
2748 if (!line->annotated)
2749 return NULL;
2751 return line->id;
2754 static const struct got_error *
2755 stop_blame(struct tog_blame *blame)
2757 const struct got_error *err = NULL;
2758 int i;
2760 if (blame->thread) {
2761 int errcode;
2762 errcode = pthread_mutex_unlock(&tog_mutex);
2763 if (errcode)
2764 return got_error_set_errno(errcode);
2765 errcode = pthread_join(blame->thread, (void **)&err);
2766 if (errcode)
2767 return got_error_set_errno(errcode);
2768 errcode = pthread_mutex_lock(&tog_mutex);
2769 if (errcode)
2770 return got_error_set_errno(errcode);
2771 if (err && err->code == GOT_ERR_ITER_COMPLETED)
2772 err = NULL;
2773 blame->thread = NULL;
2775 if (blame->thread_args.repo) {
2776 got_repo_close(blame->thread_args.repo);
2777 blame->thread_args.repo = NULL;
2779 if (blame->f) {
2780 if (fclose(blame->f) != 0 && err == NULL)
2781 err = got_error_from_errno();
2782 blame->f = NULL;
2784 if (blame->lines) {
2785 for (i = 0; i < blame->nlines; i++)
2786 free(blame->lines[i].id);
2787 free(blame->lines);
2788 blame->lines = NULL;
2790 free(blame->cb_args.commit_id);
2791 blame->cb_args.commit_id = NULL;
2793 return err;
2796 static const struct got_error *
2797 run_blame(struct tog_blame *blame, struct tog_view *view, int *blame_complete,
2798 int *first_displayed_line, int *last_displayed_line, int *selected_line,
2799 int *done, int *eof, const char *path, struct got_object_id *commit_id,
2800 struct got_repository *repo)
2802 const struct got_error *err = NULL;
2803 struct got_blob_object *blob = NULL;
2804 struct got_repository *thread_repo = NULL;
2805 struct got_object_id *obj_id = NULL;
2806 int obj_type;
2808 err = got_object_id_by_path(&obj_id, repo, commit_id, path);
2809 if (err)
2810 return err;
2811 if (obj_id == NULL)
2812 return got_error(GOT_ERR_NO_OBJ);
2814 err = got_object_get_type(&obj_type, repo, obj_id);
2815 if (err)
2816 goto done;
2818 if (obj_type != GOT_OBJ_TYPE_BLOB) {
2819 err = got_error(GOT_ERR_OBJ_TYPE);
2820 goto done;
2823 err = got_object_open_as_blob(&blob, repo, obj_id, 8192);
2824 if (err)
2825 goto done;
2826 blame->f = got_opentemp();
2827 if (blame->f == NULL) {
2828 err = got_error_from_errno();
2829 goto done;
2831 err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
2832 blame->f, blob);
2833 if (err)
2834 goto done;
2836 blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
2837 if (blame->lines == NULL) {
2838 err = got_error_from_errno();
2839 goto done;
2842 err = got_repo_open(&thread_repo, got_repo_get_path(repo));
2843 if (err)
2844 goto done;
2846 blame->cb_args.view = view;
2847 blame->cb_args.lines = blame->lines;
2848 blame->cb_args.nlines = blame->nlines;
2849 blame->cb_args.commit_id = got_object_id_dup(commit_id);
2850 if (blame->cb_args.commit_id == NULL) {
2851 err = got_error_from_errno();
2852 goto done;
2854 blame->cb_args.quit = done;
2856 blame->thread_args.path = path;
2857 blame->thread_args.repo = thread_repo;
2858 blame->thread_args.cb_args = &blame->cb_args;
2859 blame->thread_args.complete = blame_complete;
2860 *blame_complete = 0;
2862 done:
2863 if (blob)
2864 got_object_blob_close(blob);
2865 free(obj_id);
2866 if (err)
2867 stop_blame(blame);
2868 return err;
2871 static const struct got_error *
2872 open_blame_view(struct tog_view *view, char *path,
2873 struct got_object_id *commit_id, struct got_reflist_head *refs,
2874 struct got_repository *repo)
2876 const struct got_error *err = NULL;
2877 struct tog_blame_view_state *s = &view->state.blame;
2879 SIMPLEQ_INIT(&s->blamed_commits);
2881 err = got_object_qid_alloc(&s->blamed_commit, commit_id);
2882 if (err)
2883 return err;
2885 SIMPLEQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
2886 s->first_displayed_line = 1;
2887 s->last_displayed_line = view->nlines;
2888 s->selected_line = 1;
2889 s->blame_complete = 0;
2890 s->path = path;
2891 if (s->path == NULL)
2892 return got_error_from_errno();
2893 s->repo = repo;
2894 s->refs = refs;
2895 s->commit_id = commit_id;
2896 memset(&s->blame, 0, sizeof(s->blame));
2898 view->show = show_blame_view;
2899 view->input = input_blame_view;
2900 view->close = close_blame_view;
2902 return run_blame(&s->blame, view, &s->blame_complete,
2903 &s->first_displayed_line, &s->last_displayed_line,
2904 &s->selected_line, &s->done, &s->eof, s->path,
2905 s->blamed_commit->id, s->repo);
2908 static const struct got_error *
2909 close_blame_view(struct tog_view *view)
2911 const struct got_error *err = NULL;
2912 struct tog_blame_view_state *s = &view->state.blame;
2914 if (s->blame.thread)
2915 err = stop_blame(&s->blame);
2917 while (!SIMPLEQ_EMPTY(&s->blamed_commits)) {
2918 struct got_object_qid *blamed_commit;
2919 blamed_commit = SIMPLEQ_FIRST(&s->blamed_commits);
2920 SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
2921 got_object_qid_free(blamed_commit);
2924 free(s->path);
2926 return err;
2929 static const struct got_error *
2930 show_blame_view(struct tog_view *view)
2932 const struct got_error *err = NULL;
2933 struct tog_blame_view_state *s = &view->state.blame;
2934 int errcode;
2936 if (s->blame.thread == NULL) {
2937 errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
2938 &s->blame.thread_args);
2939 if (errcode)
2940 return got_error_set_errno(errcode);
2943 err = draw_blame(view, s->blamed_commit->id, s->blame.f,
2944 s->path, s->blame.lines, s->blame.nlines, s->blame_complete,
2945 s->selected_line, &s->first_displayed_line,
2946 &s->last_displayed_line, &s->eof, view->nlines);
2948 view_vborder(view);
2949 return err;
2952 static const struct got_error *
2953 input_blame_view(struct tog_view **new_view, struct tog_view **dead_view,
2954 struct tog_view **focus_view, struct tog_view *view, int ch)
2956 const struct got_error *err = NULL, *thread_err = NULL;
2957 struct tog_view *diff_view;
2958 struct tog_blame_view_state *s = &view->state.blame;
2959 int begin_x = 0;
2961 switch (ch) {
2962 case 'q':
2963 s->done = 1;
2964 break;
2965 case 'k':
2966 case KEY_UP:
2967 if (s->selected_line > 1)
2968 s->selected_line--;
2969 else if (s->selected_line == 1 &&
2970 s->first_displayed_line > 1)
2971 s->first_displayed_line--;
2972 else
2973 view_flash(view);
2974 break;
2975 case KEY_PPAGE:
2976 if (s->first_displayed_line == 1) {
2977 if (s->selected_line == 1) {
2978 view_flash(view);
2979 break;
2981 s->selected_line = 1;
2982 break;
2984 if (s->first_displayed_line > view->nlines - 2)
2985 s->first_displayed_line -=
2986 (view->nlines - 2);
2987 else
2988 s->first_displayed_line = 1;
2989 break;
2990 case 'j':
2991 case KEY_DOWN:
2992 if (s->selected_line < view->nlines - 2 &&
2993 s->first_displayed_line +
2994 s->selected_line <= s->blame.nlines)
2995 s->selected_line++;
2996 else if (s->last_displayed_line <
2997 s->blame.nlines)
2998 s->first_displayed_line++;
2999 else
3000 view_flash(view);
3001 break;
3002 case 'b':
3003 case 'p': {
3004 struct got_object_id *id = NULL;
3005 id = get_selected_commit_id(s->blame.lines,
3006 s->first_displayed_line, s->selected_line);
3007 if (id == NULL)
3008 break;
3009 if (ch == 'p') {
3010 struct got_commit_object *commit;
3011 struct got_object_qid *pid;
3012 struct got_object_id *blob_id = NULL;
3013 int obj_type;
3014 err = got_object_open_as_commit(&commit,
3015 s->repo, id);
3016 if (err)
3017 break;
3018 pid = SIMPLEQ_FIRST(
3019 got_object_commit_get_parent_ids(commit));
3020 if (pid == NULL) {
3021 got_object_commit_close(commit);
3022 break;
3024 /* Check if path history ends here. */
3025 err = got_object_id_by_path(&blob_id, s->repo,
3026 pid->id, s->path);
3027 if (err) {
3028 if (err->code == GOT_ERR_NO_TREE_ENTRY)
3029 err = NULL;
3030 got_object_commit_close(commit);
3031 break;
3033 err = got_object_get_type(&obj_type, s->repo,
3034 blob_id);
3035 free(blob_id);
3036 /* Can't blame non-blob type objects. */
3037 if (obj_type != GOT_OBJ_TYPE_BLOB) {
3038 got_object_commit_close(commit);
3039 break;
3041 err = got_object_qid_alloc(&s->blamed_commit,
3042 pid->id);
3043 got_object_commit_close(commit);
3044 } else {
3045 if (got_object_id_cmp(id,
3046 s->blamed_commit->id) == 0)
3047 break;
3048 err = got_object_qid_alloc(&s->blamed_commit,
3049 id);
3051 if (err)
3052 break;
3053 s->done = 1;
3054 thread_err = stop_blame(&s->blame);
3055 s->done = 0;
3056 if (thread_err)
3057 break;
3058 SIMPLEQ_INSERT_HEAD(&s->blamed_commits,
3059 s->blamed_commit, entry);
3060 err = run_blame(&s->blame, view, &s->blame_complete,
3061 &s->first_displayed_line, &s->last_displayed_line,
3062 &s->selected_line, &s->done, &s->eof,
3063 s->path, s->blamed_commit->id, s->repo);
3064 if (err)
3065 break;
3066 break;
3068 case 'B': {
3069 struct got_object_qid *first;
3070 first = SIMPLEQ_FIRST(&s->blamed_commits);
3071 if (!got_object_id_cmp(first->id, s->commit_id))
3072 break;
3073 s->done = 1;
3074 thread_err = stop_blame(&s->blame);
3075 s->done = 0;
3076 if (thread_err)
3077 break;
3078 SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
3079 got_object_qid_free(s->blamed_commit);
3080 s->blamed_commit =
3081 SIMPLEQ_FIRST(&s->blamed_commits);
3082 err = run_blame(&s->blame, view, &s->blame_complete,
3083 &s->first_displayed_line, &s->last_displayed_line,
3084 &s->selected_line, &s->done, &s->eof, s->path,
3085 s->blamed_commit->id, s->repo);
3086 if (err)
3087 break;
3088 break;
3090 case KEY_ENTER:
3091 case '\r': {
3092 struct got_object_id *id = NULL;
3093 struct got_object_qid *pid;
3094 struct got_commit_object *commit = NULL;
3095 id = get_selected_commit_id(s->blame.lines,
3096 s->first_displayed_line, s->selected_line);
3097 if (id == NULL)
3098 break;
3099 err = got_object_open_as_commit(&commit, s->repo, id);
3100 if (err)
3101 break;
3102 pid = SIMPLEQ_FIRST(
3103 got_object_commit_get_parent_ids(commit));
3104 if (view_is_parent_view(view))
3105 begin_x = view_split_begin_x(view->begin_x);
3106 diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
3107 if (diff_view == NULL) {
3108 got_object_commit_close(commit);
3109 err = got_error_from_errno();
3110 break;
3112 err = open_diff_view(diff_view, pid ? pid->id : NULL,
3113 id, NULL, s->refs, s->repo);
3114 got_object_commit_close(commit);
3115 if (err) {
3116 view_close(diff_view);
3117 break;
3119 if (view_is_parent_view(view)) {
3120 err = view_close_child(view);
3121 if (err)
3122 break;
3123 err = view_set_child(view, diff_view);
3124 if (err) {
3125 view_close(diff_view);
3126 break;
3128 *focus_view = diff_view;
3129 view->child_focussed = 1;
3130 } else
3131 *new_view = diff_view;
3132 if (err)
3133 break;
3134 break;
3136 case KEY_NPAGE:
3137 case ' ':
3138 if (s->last_displayed_line >= s->blame.nlines &&
3139 s->selected_line >= MIN(s->blame.nlines,
3140 view->nlines - 2)) {
3141 view_flash(view);
3142 break;
3144 if (s->last_displayed_line >= s->blame.nlines &&
3145 s->selected_line < view->nlines - 2) {
3146 s->selected_line = MIN(s->blame.nlines,
3147 view->nlines - 2);
3148 break;
3150 if (s->last_displayed_line + view->nlines - 2
3151 <= s->blame.nlines)
3152 s->first_displayed_line +=
3153 view->nlines - 2;
3154 else
3155 s->first_displayed_line =
3156 s->blame.nlines -
3157 (view->nlines - 3);
3158 break;
3159 case KEY_RESIZE:
3160 if (s->selected_line > view->nlines - 2) {
3161 s->selected_line = MIN(s->blame.nlines,
3162 view->nlines - 2);
3164 break;
3165 default:
3166 break;
3168 return thread_err ? thread_err : err;
3171 static const struct got_error *
3172 cmd_blame(int argc, char *argv[])
3174 const struct got_error *error;
3175 struct got_repository *repo = NULL;
3176 struct got_reflist_head refs;
3177 struct got_worktree *worktree = NULL;
3178 char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
3179 struct got_object_id *commit_id = NULL;
3180 char *commit_id_str = NULL;
3181 int ch;
3182 struct tog_view *view;
3184 #ifndef PROFILE
3185 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
3186 NULL) == -1)
3187 err(1, "pledge");
3188 #endif
3190 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
3191 switch (ch) {
3192 case 'c':
3193 commit_id_str = optarg;
3194 break;
3195 case 'r':
3196 repo_path = realpath(optarg, NULL);
3197 if (repo_path == NULL)
3198 err(1, "-r option");
3199 break;
3200 default:
3201 usage_blame();
3202 /* NOTREACHED */
3206 argc -= optind;
3207 argv += optind;
3209 if (argc == 1)
3210 path = argv[0];
3211 else
3212 usage_blame();
3214 cwd = getcwd(NULL, 0);
3215 if (cwd == NULL) {
3216 error = got_error_from_errno();
3217 goto done;
3219 if (repo_path == NULL) {
3220 error = got_worktree_open(&worktree, cwd);
3221 if (error && error->code != GOT_ERR_NOT_WORKTREE)
3222 goto done;
3223 else
3224 error = NULL;
3225 if (worktree) {
3226 repo_path =
3227 strdup(got_worktree_get_repo_path(worktree));
3228 if (repo_path == NULL)
3229 error = got_error_from_errno();
3230 if (error)
3231 goto done;
3232 } else {
3233 repo_path = strdup(cwd);
3234 if (repo_path == NULL) {
3235 error = got_error_from_errno();
3236 goto done;
3241 init_curses();
3243 error = apply_unveil(repo_path, NULL);
3244 if (error)
3245 goto done;
3247 error = got_repo_open(&repo, repo_path);
3248 if (error != NULL)
3249 goto done;
3251 if (worktree) {
3252 const char *prefix = got_worktree_get_path_prefix(worktree);
3253 char *p, *worktree_subdir = cwd +
3254 strlen(got_worktree_get_root_path(worktree));
3255 if (asprintf(&p, "%s%s%s%s%s",
3256 prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
3257 worktree_subdir, worktree_subdir[0] ? "/" : "",
3258 path) == -1) {
3259 error = got_error_from_errno();
3260 goto done;
3262 error = got_repo_map_path(&in_repo_path, repo, p, 0);
3263 free(p);
3264 } else {
3265 error = got_repo_map_path(&in_repo_path, repo, path, 1);
3267 if (error)
3268 goto done;
3270 if (commit_id_str == NULL) {
3271 struct got_reference *head_ref;
3272 error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
3273 if (error != NULL)
3274 goto done;
3275 error = got_ref_resolve(&commit_id, repo, head_ref);
3276 got_ref_close(head_ref);
3277 } else {
3278 error = got_object_resolve_id_str(&commit_id, repo,
3279 commit_id_str);
3281 if (error != NULL)
3282 goto done;
3284 SIMPLEQ_INIT(&refs);
3285 error = got_ref_list(&refs, repo);
3286 if (error)
3287 goto done;
3289 view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
3290 if (view == NULL) {
3291 error = got_error_from_errno();
3292 goto done;
3294 error = open_blame_view(view, in_repo_path, commit_id, &refs, repo);
3295 if (error)
3296 goto done;
3297 error = view_loop(view);
3298 done:
3299 free(repo_path);
3300 free(cwd);
3301 free(commit_id);
3302 if (worktree)
3303 got_worktree_close(worktree);
3304 if (repo)
3305 got_repo_close(repo);
3306 got_ref_list_free(&refs);
3307 return error;
3310 static const struct got_error *
3311 draw_tree_entries(struct tog_view *view,
3312 struct got_tree_entry **first_displayed_entry,
3313 struct got_tree_entry **last_displayed_entry,
3314 struct got_tree_entry **selected_entry, int *ndisplayed,
3315 const char *label, int show_ids, const char *parent_path,
3316 const struct got_tree_entries *entries, int selected, int limit, int isroot)
3318 const struct got_error *err = NULL;
3319 struct got_tree_entry *te;
3320 wchar_t *wline;
3321 int width, n;
3323 *ndisplayed = 0;
3325 werase(view->window);
3327 if (limit == 0)
3328 return NULL;
3330 err = format_line(&wline, &width, label, view->ncols);
3331 if (err)
3332 return err;
3333 if (view_needs_focus_indication(view))
3334 wstandout(view->window);
3335 waddwstr(view->window, wline);
3336 if (view_needs_focus_indication(view))
3337 wstandend(view->window);
3338 free(wline);
3339 wline = NULL;
3340 if (width < view->ncols)
3341 waddch(view->window, '\n');
3342 if (--limit <= 0)
3343 return NULL;
3344 err = format_line(&wline, &width, parent_path, view->ncols);
3345 if (err)
3346 return err;
3347 waddwstr(view->window, wline);
3348 free(wline);
3349 wline = NULL;
3350 if (width < view->ncols)
3351 waddch(view->window, '\n');
3352 if (--limit <= 0)
3353 return NULL;
3354 waddch(view->window, '\n');
3355 if (--limit <= 0)
3356 return NULL;
3358 te = SIMPLEQ_FIRST(&entries->head);
3359 if (*first_displayed_entry == NULL) {
3360 if (selected == 0) {
3361 if (view->focussed)
3362 wstandout(view->window);
3363 *selected_entry = NULL;
3365 waddstr(view->window, " ..\n"); /* parent directory */
3366 if (selected == 0 && view->focussed)
3367 wstandend(view->window);
3368 (*ndisplayed)++;
3369 if (--limit <= 0)
3370 return NULL;
3371 n = 1;
3372 } else {
3373 n = 0;
3374 while (te != *first_displayed_entry)
3375 te = SIMPLEQ_NEXT(te, entry);
3378 while (te) {
3379 char *line = NULL, *id_str = NULL;
3381 if (show_ids) {
3382 err = got_object_id_str(&id_str, te->id);
3383 if (err)
3384 return got_error_from_errno();
3386 if (asprintf(&line, "%s %s%s", id_str ? id_str : "",
3387 te->name, S_ISDIR(te->mode) ? "/" :
3388 ((te->mode & S_IXUSR) ? "*" : "")) == -1) {
3389 free(id_str);
3390 return got_error_from_errno();
3392 free(id_str);
3393 err = format_line(&wline, &width, line, view->ncols);
3394 if (err) {
3395 free(line);
3396 break;
3398 if (n == selected) {
3399 if (view->focussed)
3400 wstandout(view->window);
3401 *selected_entry = te;
3403 waddwstr(view->window, wline);
3404 if (width < view->ncols)
3405 waddch(view->window, '\n');
3406 if (n == selected && view->focussed)
3407 wstandend(view->window);
3408 free(line);
3409 free(wline);
3410 wline = NULL;
3411 n++;
3412 (*ndisplayed)++;
3413 *last_displayed_entry = te;
3414 if (--limit <= 0)
3415 break;
3416 te = SIMPLEQ_NEXT(te, entry);
3419 return err;
3422 static void
3423 tree_scroll_up(struct tog_view *view,
3424 struct got_tree_entry **first_displayed_entry, int maxscroll,
3425 const struct got_tree_entries *entries, int isroot)
3427 struct got_tree_entry *te, *prev;
3428 int i;
3430 if (*first_displayed_entry == NULL) {
3431 view_flash(view);
3432 return;
3435 te = SIMPLEQ_FIRST(&entries->head);
3436 if (*first_displayed_entry == te) {
3437 view_flash(view);
3438 if (!isroot)
3439 *first_displayed_entry = NULL;
3440 return;
3443 /* XXX this is stupid... switch to TAILQ? */
3444 for (i = 0; i < maxscroll; i++) {
3445 while (te != *first_displayed_entry) {
3446 prev = te;
3447 te = SIMPLEQ_NEXT(te, entry);
3449 *first_displayed_entry = prev;
3450 te = SIMPLEQ_FIRST(&entries->head);
3452 if (!isroot && te == SIMPLEQ_FIRST(&entries->head) && i < maxscroll)
3453 *first_displayed_entry = NULL;
3456 static int
3457 tree_scroll_down(struct got_tree_entry **first_displayed_entry, int maxscroll,
3458 struct got_tree_entry *last_displayed_entry,
3459 const struct got_tree_entries *entries)
3461 struct got_tree_entry *next, *last;
3462 int n = 0;
3464 if (*first_displayed_entry)
3465 next = SIMPLEQ_NEXT(*first_displayed_entry, entry);
3466 else
3467 next = SIMPLEQ_FIRST(&entries->head);
3468 last = last_displayed_entry;
3469 while (next && last && n++ < maxscroll) {
3470 last = SIMPLEQ_NEXT(last, entry);
3471 if (last) {
3472 *first_displayed_entry = next;
3473 next = SIMPLEQ_NEXT(next, entry);
3476 return n;
3479 static const struct got_error *
3480 tree_entry_path(char **path, struct tog_parent_trees *parents,
3481 struct got_tree_entry *te)
3483 const struct got_error *err = NULL;
3484 struct tog_parent_tree *pt;
3485 size_t len = 2; /* for leading slash and NUL */
3487 TAILQ_FOREACH(pt, parents, entry)
3488 len += strlen(pt->selected_entry->name) + 1 /* slash */;
3489 if (te)
3490 len += strlen(te->name);
3492 *path = calloc(1, len);
3493 if (path == NULL)
3494 return got_error_from_errno();
3496 (*path)[0] = '/';
3497 pt = TAILQ_LAST(parents, tog_parent_trees);
3498 while (pt) {
3499 if (strlcat(*path, pt->selected_entry->name, len) >= len) {
3500 err = got_error(GOT_ERR_NO_SPACE);
3501 goto done;
3503 if (strlcat(*path, "/", len) >= len) {
3504 err = got_error(GOT_ERR_NO_SPACE);
3505 goto done;
3507 pt = TAILQ_PREV(pt, tog_parent_trees, entry);
3509 if (te) {
3510 if (strlcat(*path, te->name, len) >= len) {
3511 err = got_error(GOT_ERR_NO_SPACE);
3512 goto done;
3515 done:
3516 if (err) {
3517 free(*path);
3518 *path = NULL;
3520 return err;
3523 static const struct got_error *
3524 blame_tree_entry(struct tog_view **new_view, int begin_x,
3525 struct got_tree_entry *te, struct tog_parent_trees *parents,
3526 struct got_object_id *commit_id, struct got_reflist_head *refs,
3527 struct got_repository *repo)
3529 const struct got_error *err = NULL;
3530 char *path;
3531 struct tog_view *blame_view;
3533 err = tree_entry_path(&path, parents, te);
3534 if (err)
3535 return err;
3537 blame_view = view_open(0, 0, 0, begin_x, TOG_VIEW_BLAME);
3538 if (blame_view == NULL)
3539 return got_error_from_errno();
3541 err = open_blame_view(blame_view, path, commit_id, refs, repo);
3542 if (err) {
3543 view_close(blame_view);
3544 free(path);
3545 } else
3546 *new_view = blame_view;
3547 return err;
3550 static const struct got_error *
3551 log_tree_entry(struct tog_view **new_view, int begin_x,
3552 struct got_tree_entry *te, struct tog_parent_trees *parents,
3553 struct got_object_id *commit_id, struct got_reflist_head *refs,
3554 struct got_repository *repo)
3556 struct tog_view *log_view;
3557 const struct got_error *err = NULL;
3558 char *path;
3560 log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
3561 if (log_view == NULL)
3562 return got_error_from_errno();
3564 err = tree_entry_path(&path, parents, te);
3565 if (err)
3566 return err;
3568 err = open_log_view(log_view, commit_id, refs, repo, path, 0);
3569 if (err)
3570 view_close(log_view);
3571 else
3572 *new_view = log_view;
3573 free(path);
3574 return err;
3577 static const struct got_error *
3578 open_tree_view(struct tog_view *view, struct got_tree_object *root,
3579 struct got_object_id *commit_id, struct got_reflist_head *refs,
3580 struct got_repository *repo)
3582 const struct got_error *err = NULL;
3583 char *commit_id_str = NULL;
3584 struct tog_tree_view_state *s = &view->state.tree;
3586 TAILQ_INIT(&s->parents);
3588 err = got_object_id_str(&commit_id_str, commit_id);
3589 if (err != NULL)
3590 goto done;
3592 if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
3593 err = got_error_from_errno();
3594 goto done;
3597 s->root = s->tree = root;
3598 s->entries = got_object_tree_get_entries(root);
3599 s->first_displayed_entry = SIMPLEQ_FIRST(&s->entries->head);
3600 s->commit_id = got_object_id_dup(commit_id);
3601 if (s->commit_id == NULL) {
3602 err = got_error_from_errno();
3603 goto done;
3605 s->refs = refs;
3606 s->repo = repo;
3608 view->show = show_tree_view;
3609 view->input = input_tree_view;
3610 view->close = close_tree_view;
3611 done:
3612 free(commit_id_str);
3613 if (err) {
3614 free(s->tree_label);
3615 s->tree_label = NULL;
3617 return err;
3620 static const struct got_error *
3621 close_tree_view(struct tog_view *view)
3623 struct tog_tree_view_state *s = &view->state.tree;
3625 free(s->tree_label);
3626 s->tree_label = NULL;
3627 free(s->commit_id);
3628 s->commit_id = NULL;
3629 while (!TAILQ_EMPTY(&s->parents)) {
3630 struct tog_parent_tree *parent;
3631 parent = TAILQ_FIRST(&s->parents);
3632 TAILQ_REMOVE(&s->parents, parent, entry);
3633 free(parent);
3636 if (s->tree != s->root)
3637 got_object_tree_close(s->tree);
3638 got_object_tree_close(s->root);
3640 return NULL;
3643 static const struct got_error *
3644 show_tree_view(struct tog_view *view)
3646 const struct got_error *err = NULL;
3647 struct tog_tree_view_state *s = &view->state.tree;
3648 char *parent_path;
3650 err = tree_entry_path(&parent_path, &s->parents, NULL);
3651 if (err)
3652 return err;
3654 err = draw_tree_entries(view, &s->first_displayed_entry,
3655 &s->last_displayed_entry, &s->selected_entry,
3656 &s->ndisplayed, s->tree_label, s->show_ids, parent_path,
3657 s->entries, s->selected, view->nlines, s->tree == s->root);
3658 free(parent_path);
3660 view_vborder(view);
3661 return err;
3664 static const struct got_error *
3665 input_tree_view(struct tog_view **new_view, struct tog_view **dead_view,
3666 struct tog_view **focus_view, struct tog_view *view, int ch)
3668 const struct got_error *err = NULL;
3669 struct tog_tree_view_state *s = &view->state.tree;
3670 struct tog_view *log_view;
3671 int begin_x = 0, nscrolled;
3673 switch (ch) {
3674 case 'i':
3675 s->show_ids = !s->show_ids;
3676 break;
3677 case 'l':
3678 if (!s->selected_entry)
3679 break;
3680 if (view_is_parent_view(view))
3681 begin_x = view_split_begin_x(view->begin_x);
3682 err = log_tree_entry(&log_view, begin_x,
3683 s->selected_entry, &s->parents,
3684 s->commit_id, s->refs, s->repo);
3685 if (view_is_parent_view(view)) {
3686 err = view_close_child(view);
3687 if (err)
3688 return err;
3689 err = view_set_child(view, log_view);
3690 if (err) {
3691 view_close(log_view);
3692 break;
3694 *focus_view = log_view;
3695 view->child_focussed = 1;
3696 } else
3697 *new_view = log_view;
3698 break;
3699 case 'k':
3700 case KEY_UP:
3701 if (s->selected > 0) {
3702 s->selected--;
3703 if (s->selected == 0)
3704 break;
3706 if (s->selected > 0)
3707 break;
3708 tree_scroll_up(view, &s->first_displayed_entry, 1,
3709 s->entries, s->tree == s->root);
3710 break;
3711 case KEY_PPAGE:
3712 tree_scroll_up(view, &s->first_displayed_entry,
3713 MAX(0, view->nlines - 4 - s->selected), s->entries,
3714 s->tree == s->root);
3715 s->selected = 0;
3716 if (SIMPLEQ_FIRST(&s->entries->head) ==
3717 s->first_displayed_entry && s->tree != s->root)
3718 s->first_displayed_entry = NULL;
3719 break;
3720 case 'j':
3721 case KEY_DOWN:
3722 if (s->selected < s->ndisplayed - 1) {
3723 s->selected++;
3724 break;
3726 if (SIMPLEQ_NEXT(s->last_displayed_entry, entry)
3727 == NULL) {
3728 /* can't scroll any further */
3729 view_flash(view);
3730 break;
3732 tree_scroll_down(&s->first_displayed_entry, 1,
3733 s->last_displayed_entry, s->entries);
3734 break;
3735 case KEY_NPAGE:
3736 if (SIMPLEQ_NEXT(s->last_displayed_entry, entry)
3737 == NULL) {
3738 /* can't scroll any further; move cursor down */
3739 if (s->selected < s->ndisplayed - 1)
3740 s->selected = s->ndisplayed - 1;
3741 else
3742 view_flash(view);
3743 break;
3745 nscrolled = tree_scroll_down(&s->first_displayed_entry,
3746 view->nlines, s->last_displayed_entry, s->entries);
3747 if (nscrolled < view->nlines) {
3748 int ndisplayed = 0;
3749 struct got_tree_entry *te;
3750 te = s->first_displayed_entry;
3751 do {
3752 ndisplayed++;
3753 te = SIMPLEQ_NEXT(te, entry);
3754 } while (te);
3755 s->selected = ndisplayed - 1;
3757 break;
3758 case KEY_ENTER:
3759 case '\r':
3760 if (s->selected_entry == NULL) {
3761 struct tog_parent_tree *parent;
3762 case KEY_BACKSPACE:
3763 /* user selected '..' */
3764 if (s->tree == s->root)
3765 break;
3766 parent = TAILQ_FIRST(&s->parents);
3767 TAILQ_REMOVE(&s->parents, parent,
3768 entry);
3769 got_object_tree_close(s->tree);
3770 s->tree = parent->tree;
3771 s->entries =
3772 got_object_tree_get_entries(s->tree);
3773 s->first_displayed_entry =
3774 parent->first_displayed_entry;
3775 s->selected_entry =
3776 parent->selected_entry;
3777 s->selected = parent->selected;
3778 free(parent);
3779 } else if (S_ISDIR(s->selected_entry->mode)) {
3780 struct tog_parent_tree *parent;
3781 struct got_tree_object *child;
3782 err = got_object_open_as_tree(&child,
3783 s->repo, s->selected_entry->id);
3784 if (err)
3785 break;
3786 parent = calloc(1, sizeof(*parent));
3787 if (parent == NULL) {
3788 err = got_error_from_errno();
3789 break;
3791 parent->tree = s->tree;
3792 parent->first_displayed_entry =
3793 s->first_displayed_entry;
3794 parent->selected_entry = s->selected_entry;
3795 parent->selected = s->selected;
3796 TAILQ_INSERT_HEAD(&s->parents, parent, entry);
3797 s->tree = child;
3798 s->entries =
3799 got_object_tree_get_entries(s->tree);
3800 s->selected = 0;
3801 s->first_displayed_entry = NULL;
3802 } else if (S_ISREG(s->selected_entry->mode)) {
3803 struct tog_view *blame_view;
3804 int begin_x = view_is_parent_view(view) ?
3805 view_split_begin_x(view->begin_x) : 0;
3807 err = blame_tree_entry(&blame_view, begin_x,
3808 s->selected_entry, &s->parents,
3809 s->commit_id, s->refs, s->repo);
3810 if (err)
3811 break;
3812 if (view_is_parent_view(view)) {
3813 err = view_close_child(view);
3814 if (err)
3815 return err;
3816 err = view_set_child(view, blame_view);
3817 if (err) {
3818 view_close(blame_view);
3819 break;
3821 *focus_view = blame_view;
3822 view->child_focussed = 1;
3823 } else
3824 *new_view = blame_view;
3826 break;
3827 case KEY_RESIZE:
3828 if (s->selected > view->nlines)
3829 s->selected = s->ndisplayed - 1;
3830 break;
3831 default:
3832 break;
3835 return err;
3838 __dead static void
3839 usage_tree(void)
3841 endwin();
3842 fprintf(stderr, "usage: %s tree [-c commit] [repository-path]\n",
3843 getprogname());
3844 exit(1);
3847 static const struct got_error *
3848 cmd_tree(int argc, char *argv[])
3850 const struct got_error *error;
3851 struct got_repository *repo = NULL;
3852 struct got_reflist_head refs;
3853 char *repo_path = NULL;
3854 struct got_object_id *commit_id = NULL;
3855 char *commit_id_arg = NULL;
3856 struct got_commit_object *commit = NULL;
3857 struct got_tree_object *tree = NULL;
3858 int ch;
3859 struct tog_view *view;
3861 #ifndef PROFILE
3862 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
3863 NULL) == -1)
3864 err(1, "pledge");
3865 #endif
3867 while ((ch = getopt(argc, argv, "c:")) != -1) {
3868 switch (ch) {
3869 case 'c':
3870 commit_id_arg = optarg;
3871 break;
3872 default:
3873 usage_tree();
3874 /* NOTREACHED */
3878 argc -= optind;
3879 argv += optind;
3881 if (argc == 0) {
3882 struct got_worktree *worktree;
3883 char *cwd = getcwd(NULL, 0);
3884 if (cwd == NULL)
3885 return got_error_from_errno();
3886 error = got_worktree_open(&worktree, cwd);
3887 if (error && error->code != GOT_ERR_NOT_WORKTREE)
3888 goto done;
3889 if (worktree) {
3890 free(cwd);
3891 repo_path =
3892 strdup(got_worktree_get_repo_path(worktree));
3893 got_worktree_close(worktree);
3894 } else
3895 repo_path = cwd;
3896 if (repo_path == NULL) {
3897 error = got_error_from_errno();
3898 goto done;
3900 } else if (argc == 1) {
3901 repo_path = realpath(argv[0], NULL);
3902 if (repo_path == NULL)
3903 return got_error_from_errno();
3904 } else
3905 usage_log();
3907 init_curses();
3909 error = apply_unveil(repo_path, NULL);
3910 if (error)
3911 goto done;
3913 error = got_repo_open(&repo, repo_path);
3914 if (error != NULL)
3915 goto done;
3917 if (commit_id_arg == NULL)
3918 error = get_head_commit_id(&commit_id, repo);
3919 else
3920 error = got_object_resolve_id_str(&commit_id, repo,
3921 commit_id_arg);
3922 if (error != NULL)
3923 goto done;
3925 error = got_object_open_as_commit(&commit, repo, commit_id);
3926 if (error != NULL)
3927 goto done;
3929 error = got_object_open_as_tree(&tree, repo,
3930 got_object_commit_get_tree_id(commit));
3931 if (error != NULL)
3932 goto done;
3934 SIMPLEQ_INIT(&refs);
3935 error = got_ref_list(&refs, repo);
3936 if (error)
3937 goto done;
3939 view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
3940 if (view == NULL) {
3941 error = got_error_from_errno();
3942 goto done;
3944 error = open_tree_view(view, tree, commit_id, &refs, repo);
3945 if (error)
3946 goto done;
3947 error = view_loop(view);
3948 done:
3949 free(repo_path);
3950 free(commit_id);
3951 if (commit)
3952 got_object_commit_close(commit);
3953 if (tree)
3954 got_object_tree_close(tree);
3955 if (repo)
3956 got_repo_close(repo);
3957 got_ref_list_free(&refs);
3958 return error;
3961 __dead static void
3962 usage(void)
3964 int i;
3966 fprintf(stderr, "usage: %s [-h] [command] [arg ...]\n\n"
3967 "Available commands:\n", getprogname());
3968 for (i = 0; i < nitems(tog_commands); i++) {
3969 struct tog_cmd *cmd = &tog_commands[i];
3970 fprintf(stderr, " %s: %s\n", cmd->name, cmd->descr);
3972 exit(1);
3975 static char **
3976 make_argv(const char *arg0, const char *arg1)
3978 char **argv;
3979 int argc = (arg1 == NULL ? 1 : 2);
3981 argv = calloc(argc, sizeof(char *));
3982 if (argv == NULL)
3983 err(1, "calloc");
3984 argv[0] = strdup(arg0);
3985 if (argv[0] == NULL)
3986 err(1, "calloc");
3987 if (arg1) {
3988 argv[1] = strdup(arg1);
3989 if (argv[1] == NULL)
3990 err(1, "calloc");
3993 return argv;
3996 int
3997 main(int argc, char *argv[])
3999 const struct got_error *error = NULL;
4000 struct tog_cmd *cmd = NULL;
4001 int ch, hflag = 0;
4002 char **cmd_argv = NULL;
4004 setlocale(LC_CTYPE, "");
4006 while ((ch = getopt(argc, argv, "h")) != -1) {
4007 switch (ch) {
4008 case 'h':
4009 hflag = 1;
4010 break;
4011 default:
4012 usage();
4013 /* NOTREACHED */
4017 argc -= optind;
4018 argv += optind;
4019 optind = 0;
4020 optreset = 1;
4022 if (argc == 0) {
4023 if (hflag)
4024 usage();
4025 /* Build an argument vector which runs a default command. */
4026 cmd = &tog_commands[0];
4027 cmd_argv = make_argv(cmd->name, NULL);
4028 argc = 1;
4029 } else {
4030 int i;
4032 /* Did the user specific a command? */
4033 for (i = 0; i < nitems(tog_commands); i++) {
4034 if (strncmp(tog_commands[i].name, argv[0],
4035 strlen(argv[0])) == 0) {
4036 cmd = &tog_commands[i];
4037 if (hflag)
4038 tog_commands[i].cmd_usage();
4039 break;
4042 if (cmd == NULL) {
4043 /* Did the user specify a repository? */
4044 char *repo_path = realpath(argv[0], NULL);
4045 if (repo_path) {
4046 struct got_repository *repo;
4047 error = got_repo_open(&repo, repo_path);
4048 if (error == NULL)
4049 got_repo_close(repo);
4050 } else
4051 error = got_error_from_errno();
4052 if (error) {
4053 if (hflag) {
4054 fprintf(stderr, "%s: '%s' is not a "
4055 "known command\n", getprogname(),
4056 argv[0]);
4057 usage();
4059 fprintf(stderr, "%s: '%s' is neither a known "
4060 "command nor a path to a repository\n",
4061 getprogname(), argv[0]);
4062 free(repo_path);
4063 return 1;
4065 cmd = &tog_commands[0];
4066 cmd_argv = make_argv(cmd->name, repo_path);
4067 argc = 2;
4068 free(repo_path);
4072 error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
4073 if (error)
4074 goto done;
4075 done:
4076 endwin();
4077 free(cmd_argv);
4078 if (error)
4079 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
4080 return 0;