Blob


1 /*
2 * Copyright (c) 2018 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>
20 #include <errno.h>
21 #define _XOPEN_SOURCE_EXTENDED
22 #include <curses.h>
23 #undef _XOPEN_SOURCE_EXTENDED
24 #include <panel.h>
25 #include <locale.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <getopt.h>
29 #include <string.h>
30 #include <err.h>
31 #include <unistd.h>
32 #include <util.h>
33 #include <limits.h>
34 #include <wchar.h>
35 #include <time.h>
36 #include <pthread.h>
38 #include "got_error.h"
39 #include "got_object.h"
40 #include "got_reference.h"
41 #include "got_repository.h"
42 #include "got_diff.h"
43 #include "got_opentemp.h"
44 #include "got_commit_graph.h"
45 #include "got_utf8.h"
46 #include "got_blame.h"
48 #ifndef MIN
49 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
50 #endif
52 #ifndef nitems
53 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
54 #endif
56 struct tog_cmd {
57 const char *name;
58 const struct got_error *(*cmd_main)(int, char *[]);
59 void (*cmd_usage)(void);
60 const char *descr;
61 };
63 __dead static void usage(void);
64 __dead static void usage_log(void);
65 __dead static void usage_diff(void);
66 __dead static void usage_blame(void);
67 __dead static void usage_tree(void);
69 static const struct got_error* cmd_log(int, char *[]);
70 static const struct got_error* cmd_diff(int, char *[]);
71 static const struct got_error* cmd_blame(int, char *[]);
72 static const struct got_error* cmd_tree(int, char *[]);
74 static struct tog_cmd tog_commands[] = {
75 { "log", cmd_log, usage_log,
76 "show repository history" },
77 { "diff", cmd_diff, usage_diff,
78 "compare files and directories" },
79 { "blame", cmd_blame, usage_blame,
80 "show line-by-line file history" },
81 { "tree", cmd_tree, usage_tree,
82 "browse trees in repository" },
83 };
85 static struct tog_view {
86 WINDOW *window;
87 PANEL *panel;
88 } tog_log_view, tog_diff_view, tog_blame_view, tog_tree_view;
90 static const struct got_error *
91 show_diff_view(struct got_object *, struct got_object *,
92 struct got_repository *);
93 static const struct got_error *
94 show_log_view(struct got_object_id *, struct got_repository *);
95 static const struct got_error *
96 show_blame_view(const char *, struct got_object_id *, struct got_repository *);
97 static const struct got_error *
98 show_tree_view(struct got_tree_object *, struct got_object_id *,
99 struct got_repository *);
101 __dead static void
102 usage_log(void)
104 endwin();
105 fprintf(stderr, "usage: %s log [-c commit] [repository-path]\n",
106 getprogname());
107 exit(1);
110 /* Create newly allocated wide-character string equivalent to a byte string. */
111 static const struct got_error *
112 mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
114 char *vis = NULL;
115 const struct got_error *err = NULL;
117 *ws = NULL;
118 *wlen = mbstowcs(NULL, s, 0);
119 if (*wlen == (size_t)-1) {
120 int vislen;
121 if (errno != EILSEQ)
122 return got_error_from_errno();
124 /* byte string invalid in current encoding; try to "fix" it */
125 err = got_mbsavis(&vis, &vislen, s);
126 if (err)
127 return err;
128 *wlen = mbstowcs(NULL, vis, 0);
129 if (*wlen == (size_t)-1) {
130 err = got_error_from_errno(); /* give up */
131 goto done;
135 *ws = calloc(*wlen + 1, sizeof(*ws));
136 if (*ws == NULL) {
137 err = got_error_from_errno();
138 goto done;
141 if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
142 err = got_error_from_errno();
143 done:
144 free(vis);
145 if (err) {
146 free(*ws);
147 *ws = NULL;
148 *wlen = 0;
150 return err;
153 /* Format a line for display, ensuring that it won't overflow a width limit. */
154 static const struct got_error *
155 format_line(wchar_t **wlinep, int *widthp, const char *line, int wlimit)
157 const struct got_error *err = NULL;
158 int cols = 0;
159 wchar_t *wline = NULL;
160 size_t wlen;
161 int i;
163 *wlinep = NULL;
165 err = mbs2ws(&wline, &wlen, line);
166 if (err)
167 return err;
169 i = 0;
170 while (i < wlen && cols <= wlimit) {
171 int width = wcwidth(wline[i]);
172 switch (width) {
173 case 0:
174 break;
175 case 1:
176 case 2:
177 cols += width;
178 break;
179 case -1:
180 if (wline[i] == L'\t')
181 cols += TABSIZE - (cols % TABSIZE);
182 break;
183 default:
184 err = got_error_from_errno();
185 goto done;
187 if (cols <= COLS) {
188 i++;
189 if (widthp)
190 *widthp = cols;
193 wline[i] = L'\0';
194 done:
195 if (err)
196 free(wline);
197 else
198 *wlinep = wline;
199 return err;
202 static const struct got_error *
203 draw_commit(struct got_commit_object *commit, struct got_object_id *id)
205 const struct got_error *err = NULL;
206 char *logmsg0 = NULL, *logmsg = NULL;
207 char *author0 = NULL, *author = NULL;
208 wchar_t *wlogmsg = NULL, *wauthor = NULL;
209 int author_width, logmsg_width;
210 char *newline, *smallerthan;
211 char *line = NULL;
212 char *id_str = NULL;
213 size_t id_len;
214 int col, limit;
215 static const size_t id_display_cols = 8;
216 static const size_t author_display_cols = 16;
217 const int avail = COLS;
219 err = got_object_id_str(&id_str, id);
220 if (err)
221 return err;
222 id_len = strlen(id_str);
223 if (avail < id_display_cols) {
224 limit = MIN(id_len, avail);
225 waddnstr(tog_log_view.window, id_str, limit);
226 } else {
227 limit = MIN(id_display_cols, id_len);
228 waddnstr(tog_log_view.window, id_str, limit);
230 col = limit + 1;
231 while (col <= avail && col < id_display_cols + 2) {
232 waddch(tog_log_view.window, ' ');
233 col++;
235 if (col > avail)
236 goto done;
238 author0 = strdup(commit->author);
239 if (author0 == NULL) {
240 err = got_error_from_errno();
241 goto done;
243 author = author0;
244 smallerthan = strchr(author, '<');
245 if (smallerthan)
246 *smallerthan = '\0';
247 else {
248 char *at = strchr(author, '@');
249 if (at)
250 *at = '\0';
252 limit = MIN(avail, author_display_cols);
253 err = format_line(&wauthor, &author_width, author, limit);
254 if (err)
255 goto done;
256 waddwstr(tog_log_view.window, wauthor);
257 col += author_width;
258 while (col <= avail && author_width < author_display_cols + 1) {
259 waddch(tog_log_view.window, ' ');
260 col++;
261 author_width++;
263 if (col > avail)
264 goto done;
266 logmsg0 = strdup(commit->logmsg);
267 if (logmsg0 == NULL) {
268 err = got_error_from_errno();
269 goto done;
271 logmsg = logmsg0;
272 while (*logmsg == '\n')
273 logmsg++;
274 newline = strchr(logmsg, '\n');
275 if (newline)
276 *newline = '\0';
277 limit = avail - col;
278 err = format_line(&wlogmsg, &logmsg_width, logmsg, limit);
279 if (err)
280 goto done;
281 waddwstr(tog_log_view.window, wlogmsg);
282 col += logmsg_width;
283 while (col <= avail) {
284 waddch(tog_log_view.window, ' ');
285 col++;
287 done:
288 free(logmsg0);
289 free(wlogmsg);
290 free(author0);
291 free(wauthor);
292 free(line);
293 free(id_str);
294 return err;
297 struct commit_queue_entry {
298 TAILQ_ENTRY(commit_queue_entry) entry;
299 struct got_object_id *id;
300 struct got_commit_object *commit;
301 };
302 TAILQ_HEAD(commit_queue, commit_queue_entry);
304 static struct commit_queue_entry *
305 alloc_commit_queue_entry(struct got_commit_object *commit,
306 struct got_object_id *id)
308 struct commit_queue_entry *entry;
310 entry = calloc(1, sizeof(*entry));
311 if (entry == NULL)
312 return NULL;
314 entry->id = id;
315 entry->commit = commit;
316 return entry;
319 static void
320 pop_commit(struct commit_queue *commits)
322 struct commit_queue_entry *entry;
324 entry = TAILQ_FIRST(commits);
325 TAILQ_REMOVE(commits, entry, entry);
326 got_object_commit_close(entry->commit);
327 /* Don't free entry->id! It is owned by the commit graph. */
328 free(entry);
331 static void
332 free_commits(struct commit_queue *commits)
334 while (!TAILQ_EMPTY(commits))
335 pop_commit(commits);
338 static const struct got_error *
339 queue_commits(struct got_commit_graph *graph, struct commit_queue *commits,
340 struct got_object_id *start_id, struct got_repository *repo)
342 const struct got_error *err = NULL;
343 struct got_object_id *id;
344 struct commit_queue_entry *entry;
346 err = got_commit_graph_iter_start(graph, start_id);
347 if (err)
348 return err;
350 entry = TAILQ_LAST(commits, commit_queue);
351 if (entry && got_object_id_cmp(entry->id, start_id) == 0) {
352 int nfetched;
354 /* Start ID's commit is already on the queue; skip over it. */
355 err = got_commit_graph_iter_next(&id, graph);
356 if (err && err->code != GOT_ERR_ITER_NEED_MORE)
357 return err;
359 err = got_commit_graph_fetch_commits(&nfetched, graph, 1, repo);
360 if (err)
361 return err;
364 while (1) {
365 struct got_commit_object *commit;
367 err = got_commit_graph_iter_next(&id, graph);
368 if (err) {
369 if (err->code == GOT_ERR_ITER_NEED_MORE)
370 err = NULL;
371 break;
374 err = got_object_open_as_commit(&commit, repo, id);
375 if (err)
376 break;
378 entry = alloc_commit_queue_entry(commit, id);
379 if (entry == NULL) {
380 err = got_error_from_errno();
381 break;
384 TAILQ_INSERT_TAIL(commits, entry, entry);
387 return err;
390 static const struct got_error *
391 fetch_next_commit(struct commit_queue_entry **pentry,
392 struct commit_queue_entry *entry, struct commit_queue *commits,
393 struct got_commit_graph *graph, struct got_repository *repo)
395 const struct got_error *err = NULL;
396 struct got_object_qid *qid;
398 *pentry = NULL;
400 /* Populate commit graph with entry's parent commits. */
401 SIMPLEQ_FOREACH(qid, &entry->commit->parent_ids, entry) {
402 int nfetched;
403 err = got_commit_graph_fetch_commits_up_to(&nfetched,
404 graph, qid->id, repo);
405 if (err)
406 return err;
409 /* Append outstanding commits to queue in graph sort order. */
410 err = queue_commits(graph, commits, entry->id, repo);
411 if (err) {
412 if (err->code == GOT_ERR_ITER_COMPLETED)
413 err = NULL;
414 return err;
417 /* Next entry to display should now be available. */
418 *pentry = TAILQ_NEXT(entry, entry);
419 if (*pentry == NULL)
420 return got_error(GOT_ERR_NO_OBJ);
422 return NULL;
425 static const struct got_error *
426 get_head_commit_id(struct got_object_id **head_id, struct got_repository *repo)
428 const struct got_error *err = NULL;
429 struct got_reference *head_ref;
431 *head_id = NULL;
433 err = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
434 if (err)
435 return err;
437 err = got_ref_resolve(head_id, repo, head_ref);
438 got_ref_close(head_ref);
439 if (err) {
440 *head_id = NULL;
441 return err;
444 return NULL;
447 static const struct got_error *
448 draw_commits(struct commit_queue_entry **last, struct commit_queue_entry **selected,
449 struct commit_queue_entry *first, int selected_idx, int limit)
451 const struct got_error *err = NULL;
452 struct commit_queue_entry *entry;
453 int ncommits = 0;
455 werase(tog_log_view.window);
457 entry = first;
458 *last = first;
459 while (entry) {
460 if (ncommits == limit)
461 break;
462 if (ncommits == selected_idx) {
463 wstandout(tog_log_view.window);
464 *selected = entry;
466 err = draw_commit(entry->commit, entry->id);
467 if (ncommits == selected_idx)
468 wstandend(tog_log_view.window);
469 if (err)
470 break;
471 ncommits++;
472 *last = entry;
473 entry = TAILQ_NEXT(entry, entry);
476 update_panels();
477 doupdate();
479 return err;
482 static void
483 scroll_up(struct commit_queue_entry **first_displayed_entry, int maxscroll,
484 struct commit_queue *commits)
486 struct commit_queue_entry *entry;
487 int nscrolled = 0;
489 entry = TAILQ_FIRST(commits);
490 if (*first_displayed_entry == entry)
491 return;
493 entry = *first_displayed_entry;
494 while (entry && nscrolled < maxscroll) {
495 entry = TAILQ_PREV(entry, commit_queue, entry);
496 if (entry) {
497 *first_displayed_entry = entry;
498 nscrolled++;
503 static const struct got_error *
504 scroll_down(struct commit_queue_entry **first_displayed_entry, int maxscroll,
505 struct commit_queue_entry *last_displayed_entry,
506 struct commit_queue *commits, struct got_commit_graph *graph,
507 struct got_repository *repo)
509 const struct got_error *err = NULL;
510 struct commit_queue_entry *pentry;
511 int nscrolled = 0;
513 do {
514 pentry = TAILQ_NEXT(last_displayed_entry, entry);
515 if (pentry == NULL) {
516 err = fetch_next_commit(&pentry, last_displayed_entry,
517 commits, graph, repo);
518 if (err || pentry == NULL)
519 break;
521 last_displayed_entry = pentry;
523 pentry = TAILQ_NEXT(*first_displayed_entry, entry);
524 if (pentry == NULL)
525 break;
526 *first_displayed_entry = pentry;
527 } while (++nscrolled < maxscroll);
529 return err;
532 static int
533 num_parents(struct commit_queue_entry *entry)
535 int nparents = 0;
537 while (entry) {
538 entry = TAILQ_NEXT(entry, entry);
539 nparents++;
542 return nparents;
545 static const struct got_error *
546 show_commit(struct commit_queue_entry *entry, struct got_repository *repo)
548 const struct got_error *err;
549 struct got_object *obj1 = NULL, *obj2 = NULL;
550 struct got_object_qid *parent_id;
552 err = got_object_open(&obj2, repo, entry->id);
553 if (err)
554 return err;
556 parent_id = SIMPLEQ_FIRST(&entry->commit->parent_ids);
557 if (parent_id) {
558 err = got_object_open(&obj1, repo, parent_id->id);
559 if (err)
560 goto done;
563 err = show_diff_view(obj1, obj2, repo);
564 done:
565 if (obj1)
566 got_object_close(obj1);
567 if (obj2)
568 got_object_close(obj2);
569 return err;
572 static const struct got_error *
573 browse_commit(struct commit_queue_entry *entry, struct got_repository *repo)
575 const struct got_error *err = NULL;
576 struct got_tree_object *tree;
578 err = got_object_open_as_tree(&tree, repo, entry->commit->tree_id);
579 if (err)
580 return err;
582 err = show_tree_view(tree, entry->id, repo);
583 got_object_tree_close(tree);
584 return err;
587 static const struct got_error *
588 show_log_view(struct got_object_id *start_id, struct got_repository *repo)
590 const struct got_error *err = NULL;
591 struct got_object_id *head_id = NULL;
592 int ch, done = 0, selected = 0, nparents, nfetched;
593 struct got_commit_graph *graph;
594 struct commit_queue commits;
595 struct commit_queue_entry *entry = NULL;
596 struct commit_queue_entry *first_displayed_entry = NULL;
597 struct commit_queue_entry *last_displayed_entry = NULL;
598 struct commit_queue_entry *selected_entry = NULL;
600 if (tog_log_view.window == NULL) {
601 tog_log_view.window = newwin(0, 0, 0, 0);
602 if (tog_log_view.window == NULL)
603 return got_error_from_errno();
604 keypad(tog_log_view.window, TRUE);
606 if (tog_log_view.panel == NULL) {
607 tog_log_view.panel = new_panel(tog_log_view.window);
608 if (tog_log_view.panel == NULL)
609 return got_error_from_errno();
610 } else
611 show_panel(tog_log_view.panel);
613 err = get_head_commit_id(&head_id, repo);
614 if (err)
615 return err;
617 TAILQ_INIT(&commits);
619 err = got_commit_graph_open(&graph, head_id, 0, repo);
620 if (err)
621 goto done;
623 /* Populate commit graph with a sufficient number of commits. */
624 err = got_commit_graph_fetch_commits_up_to(&nfetched, graph, start_id,
625 repo);
626 if (err)
627 goto done;
628 err = got_commit_graph_fetch_commits(&nfetched, graph, LINES, repo);
629 if (err)
630 goto done;
632 /*
633 * Open the initial batch of commits, sorted in commit graph order.
634 * We keep all commits open throughout the lifetime of the log view
635 * in order to avoid having to re-fetch commits from disk while
636 * updating the display.
637 */
638 err = queue_commits(graph, &commits, head_id, repo);
639 if (err && err->code != GOT_ERR_ITER_COMPLETED)
640 goto done;
642 /* Find entry corresponding to the first commit to display. */
643 TAILQ_FOREACH(entry, &commits, entry) {
644 if (got_object_id_cmp(entry->id, start_id) == 0) {
645 first_displayed_entry = entry;
646 break;
649 if (first_displayed_entry == NULL) {
650 err = got_error(GOT_ERR_NO_OBJ);
651 goto done;
654 while (!done) {
655 err = draw_commits(&last_displayed_entry, &selected_entry,
656 first_displayed_entry, selected, LINES);
657 if (err)
658 goto done;
660 nodelay(stdscr, FALSE);
661 ch = wgetch(tog_log_view.window);
662 nodelay(stdscr, TRUE);
663 switch (ch) {
664 case ERR:
665 if (errno) {
666 err = got_error_from_errno();
667 goto done;
669 break;
670 case 'q':
671 done = 1;
672 break;
673 case 'k':
674 case KEY_UP:
675 if (selected > 0)
676 selected--;
677 if (selected > 0)
678 break;
679 scroll_up(&first_displayed_entry, 1, &commits);
680 break;
681 case KEY_PPAGE:
682 if (TAILQ_FIRST(&commits) ==
683 first_displayed_entry) {
684 selected = 0;
685 break;
687 scroll_up(&first_displayed_entry, LINES,
688 &commits);
689 break;
690 case 'j':
691 case KEY_DOWN:
692 nparents = num_parents(first_displayed_entry);
693 if (selected < LINES - 1 &&
694 selected < nparents - 1) {
695 selected++;
696 break;
698 err = scroll_down(&first_displayed_entry, 1,
699 last_displayed_entry, &commits, graph,
700 repo);
701 if (err)
702 goto done;
703 break;
704 case KEY_NPAGE:
705 err = scroll_down(&first_displayed_entry, LINES,
706 last_displayed_entry, &commits, graph,
707 repo);
708 if (err)
709 goto done;
710 if (last_displayed_entry->commit->nparents > 0)
711 break;
712 /* can't scroll any further; move cursor down */
713 nparents = num_parents(first_displayed_entry);
714 if (selected < LINES - 1 ||
715 selected < nparents - 1)
716 selected = MIN(LINES - 1, nparents - 1);
717 break;
718 case KEY_RESIZE:
719 if (selected > LINES)
720 selected = LINES - 1;
721 break;
722 case KEY_ENTER:
723 case '\r':
724 err = show_commit(selected_entry, repo);
725 if (err)
726 goto done;
727 show_panel(tog_log_view.panel);
728 break;
729 case 't':
730 err = browse_commit(selected_entry, repo);
731 if (err)
732 goto done;
733 show_panel(tog_log_view.panel);
734 break;
735 default:
736 break;
739 done:
740 free(head_id);
741 if (graph)
742 got_commit_graph_close(graph);
743 free_commits(&commits);
744 return err;
747 static const struct got_error *
748 cmd_log(int argc, char *argv[])
750 const struct got_error *error;
751 struct got_repository *repo;
752 struct got_object_id *start_id = NULL;
753 char *repo_path = NULL;
754 char *start_commit = NULL;
755 int ch;
757 #ifndef PROFILE
758 if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
759 err(1, "pledge");
760 #endif
762 while ((ch = getopt(argc, argv, "c:")) != -1) {
763 switch (ch) {
764 case 'c':
765 start_commit = optarg;
766 break;
767 default:
768 usage();
769 /* NOTREACHED */
773 argc -= optind;
774 argv += optind;
776 if (argc == 0) {
777 repo_path = getcwd(NULL, 0);
778 if (repo_path == NULL)
779 return got_error_from_errno();
780 } else if (argc == 1) {
781 repo_path = realpath(argv[0], NULL);
782 if (repo_path == NULL)
783 return got_error_from_errno();
784 } else
785 usage_log();
787 error = got_repo_open(&repo, repo_path);
788 free(repo_path);
789 if (error != NULL)
790 return error;
792 if (start_commit == NULL) {
793 error = get_head_commit_id(&start_id, repo);
794 if (error != NULL)
795 return error;
796 } else {
797 struct got_object *obj;
798 error = got_object_open_by_id_str(&obj, repo, start_commit);
799 if (error == NULL) {
800 start_id = got_object_get_id(obj);
801 if (start_id == NULL)
802 error = got_error_from_errno();
805 if (error != NULL)
806 return error;
807 error = show_log_view(start_id, repo);
808 free(start_id);
809 got_repo_close(repo);
810 return error;
813 __dead static void
814 usage_diff(void)
816 endwin();
817 fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
818 getprogname());
819 exit(1);
822 static char *
823 parse_next_line(FILE *f, size_t *len)
825 char *line;
826 size_t linelen;
827 size_t lineno;
828 const char delim[3] = { '\0', '\0', '\0'};
830 line = fparseln(f, &linelen, &lineno, delim, 0);
831 if (len)
832 *len = linelen;
833 return line;
836 static const struct got_error *
837 draw_file(WINDOW *window, FILE *f, int *first_displayed_line,
838 int *last_displayed_line, int *eof, int max_lines)
840 const struct got_error *err;
841 int nlines = 0, nprinted = 0;
842 char *line;
843 size_t len;
844 wchar_t *wline;
845 int width;
847 rewind(f);
848 werase(window);
850 *eof = 0;
851 while (nprinted < max_lines) {
852 line = parse_next_line(f, &len);
853 if (line == NULL) {
854 *eof = 1;
855 break;
857 if (++nlines < *first_displayed_line) {
858 free(line);
859 continue;
862 err = format_line(&wline, &width, line, COLS);
863 if (err) {
864 free(line);
865 return err;
867 waddwstr(window, wline);
868 if (width < COLS)
869 waddch(window, '\n');
870 if (++nprinted == 1)
871 *first_displayed_line = nlines;
872 free(line);
874 *last_displayed_line = nlines;
876 update_panels();
877 doupdate();
879 return NULL;
882 static const struct got_error *
883 show_diff_view(struct got_object *obj1, struct got_object *obj2,
884 struct got_repository *repo)
886 const struct got_error *err;
887 FILE *f;
888 int ch, done = 0, first_displayed_line = 1, last_displayed_line = LINES;
889 int eof, i;
891 if (obj1 != NULL && obj2 != NULL &&
892 got_object_get_type(obj1) != got_object_get_type(obj2))
893 return got_error(GOT_ERR_OBJ_TYPE);
895 f = got_opentemp();
896 if (f == NULL)
897 return got_error_from_errno();
899 switch (got_object_get_type(obj1 ? obj1 : obj2)) {
900 case GOT_OBJ_TYPE_BLOB:
901 err = got_diff_objects_as_blobs(obj1, obj2, repo, f);
902 break;
903 case GOT_OBJ_TYPE_TREE:
904 err = got_diff_objects_as_trees(obj1, obj2, repo, f);
905 break;
906 case GOT_OBJ_TYPE_COMMIT:
907 err = got_diff_objects_as_commits(obj1, obj2, repo, f);
908 break;
909 default:
910 return got_error(GOT_ERR_OBJ_TYPE);
913 fflush(f);
915 if (tog_diff_view.window == NULL) {
916 tog_diff_view.window = newwin(0, 0, 0, 0);
917 if (tog_diff_view.window == NULL)
918 return got_error_from_errno();
919 keypad(tog_diff_view.window, TRUE);
921 if (tog_diff_view.panel == NULL) {
922 tog_diff_view.panel = new_panel(tog_diff_view.window);
923 if (tog_diff_view.panel == NULL)
924 return got_error_from_errno();
925 } else
926 show_panel(tog_diff_view.panel);
928 while (!done) {
929 err = draw_file(tog_diff_view.window, f, &first_displayed_line,
930 &last_displayed_line, &eof, LINES);
931 if (err)
932 break;
933 nodelay(stdscr, FALSE);
934 ch = wgetch(tog_diff_view.window);
935 nodelay(stdscr, TRUE);
936 switch (ch) {
937 case 'q':
938 done = 1;
939 break;
940 case 'k':
941 case KEY_UP:
942 case KEY_BACKSPACE:
943 if (first_displayed_line > 1)
944 first_displayed_line--;
945 break;
946 case KEY_PPAGE:
947 i = 0;
948 while (i++ < LINES - 1 &&
949 first_displayed_line > 1)
950 first_displayed_line--;
951 break;
952 case 'j':
953 case KEY_DOWN:
954 case KEY_ENTER:
955 case '\r':
956 if (!eof)
957 first_displayed_line++;
958 break;
959 case KEY_NPAGE:
960 case ' ':
961 i = 0;
962 while (!eof && i++ < LINES - 1) {
963 char *line = parse_next_line(f, NULL);
964 first_displayed_line++;
965 if (line == NULL)
966 break;
968 break;
969 default:
970 break;
973 fclose(f);
974 return err;
977 static const struct got_error *
978 cmd_diff(int argc, char *argv[])
980 const struct got_error *error = NULL;
981 struct got_repository *repo = NULL;
982 struct got_object *obj1 = NULL, *obj2 = NULL;
983 char *repo_path = NULL;
984 char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
985 int ch;
987 #ifndef PROFILE
988 if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
989 err(1, "pledge");
990 #endif
992 while ((ch = getopt(argc, argv, "")) != -1) {
993 switch (ch) {
994 default:
995 usage();
996 /* NOTREACHED */
1000 argc -= optind;
1001 argv += optind;
1003 if (argc == 0) {
1004 usage_diff(); /* TODO show local worktree changes */
1005 } else if (argc == 2) {
1006 repo_path = getcwd(NULL, 0);
1007 if (repo_path == NULL)
1008 return got_error_from_errno();
1009 obj_id_str1 = argv[0];
1010 obj_id_str2 = argv[1];
1011 } else if (argc == 3) {
1012 repo_path = realpath(argv[0], NULL);
1013 if (repo_path == NULL)
1014 return got_error_from_errno();
1015 obj_id_str1 = argv[1];
1016 obj_id_str2 = argv[2];
1017 } else
1018 usage_diff();
1020 error = got_repo_open(&repo, repo_path);
1021 free(repo_path);
1022 if (error)
1023 goto done;
1025 error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
1026 if (error)
1027 goto done;
1029 error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
1030 if (error)
1031 goto done;
1033 error = show_diff_view(obj1, obj2, repo);
1034 done:
1035 got_repo_close(repo);
1036 if (obj1)
1037 got_object_close(obj1);
1038 if (obj2)
1039 got_object_close(obj2);
1040 return error;
1043 __dead static void
1044 usage_blame(void)
1046 endwin();
1047 fprintf(stderr, "usage: %s blame [-c commit] [repository-path] path\n",
1048 getprogname());
1049 exit(1);
1052 struct tog_blame_line {
1053 int annotated;
1054 struct got_object_id *id;
1057 static const struct got_error *
1058 draw_blame(WINDOW *window, FILE *f, struct tog_blame_line *lines, int nlines,
1059 int *first_displayed_line, int *last_displayed_line, int *eof,
1060 int max_lines)
1062 const struct got_error *err;
1063 int lineno = 0, nprinted = 0;
1064 char *line;
1065 size_t len;
1066 wchar_t *wline;
1067 int width;
1068 struct tog_blame_line *blame_line;
1070 rewind(f);
1071 werase(window);
1073 *eof = 0;
1074 while (nprinted < max_lines) {
1075 line = parse_next_line(f, &len);
1076 if (line == NULL) {
1077 *eof = 1;
1078 break;
1080 if (++lineno < *first_displayed_line) {
1081 free(line);
1082 continue;
1085 err = format_line(&wline, &width, line, COLS - 9);
1086 if (err) {
1087 free(line);
1088 return err;
1091 blame_line = &lines[lineno - 1];
1092 if (blame_line->annotated) {
1093 char *id_str;
1094 err = got_object_id_str(&id_str, blame_line->id);
1095 if (err) {
1096 free(line);
1097 return err;
1099 wprintw(window, "%.8s ", id_str);
1100 free(id_str);
1101 } else
1102 waddstr(window, " ");
1104 waddwstr(window, wline);
1105 if (width < COLS - 9)
1106 waddch(window, '\n');
1107 if (++nprinted == 1)
1108 *first_displayed_line = lineno;
1109 free(line);
1111 *last_displayed_line = lineno;
1113 update_panels();
1114 doupdate();
1116 return NULL;
1119 struct tog_blame_cb_args {
1120 pthread_mutex_t *mutex;
1121 struct tog_blame_line *lines; /* one per line */
1122 int nlines;
1124 FILE *f;
1125 WINDOW *window;
1126 int *first_displayed_line;
1127 int *last_displayed_line;
1130 static const struct got_error *
1131 blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
1133 const struct got_error *err = NULL;
1134 struct tog_blame_cb_args *a = arg;
1135 struct tog_blame_line *line;
1136 int eof;
1138 if (nlines != a->nlines || lineno < 1 || lineno > a->nlines)
1139 return got_error(GOT_ERR_RANGE);
1141 if (pthread_mutex_lock(a->mutex) != 0)
1142 return got_error_from_errno();
1144 line = &a->lines[lineno - 1];
1145 line->id = got_object_id_dup(id);
1146 if (line->id == NULL) {
1147 err = got_error_from_errno();
1148 goto done;
1150 line->annotated = 1;
1152 err = draw_blame(a->window, a->f, a->lines, a->nlines,
1153 a->first_displayed_line, a->last_displayed_line, &eof, LINES);
1154 done:
1155 if (pthread_mutex_unlock(a->mutex) != 0)
1156 return got_error_from_errno();
1157 return err;
1160 struct tog_blame_thread_args {
1161 const char *path;
1162 struct got_object_id *commit_id;
1163 struct got_repository *repo;
1164 void *blame_cb_args;
1167 static void *
1168 blame_thread(void *arg)
1170 struct tog_blame_thread_args *a = arg;
1171 return (void *)got_blame_incremental(a->path, a->commit_id, a->repo,
1172 blame_cb, a->blame_cb_args);
1175 static const struct got_error *
1176 show_blame_view(const char *path, struct got_object_id *commit_id,
1177 struct got_repository *repo)
1179 const struct got_error *err = NULL;
1180 int ch, done = 0, first_displayed_line = 1, last_displayed_line = LINES;
1181 int eof, i;
1182 struct got_object *obj = NULL;
1183 struct got_blob_object *blob = NULL;
1184 FILE *f = NULL;
1185 size_t filesize, nlines;
1186 struct tog_blame_line *lines = NULL;
1187 pthread_t thread = NULL;
1188 pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
1189 struct tog_blame_cb_args blame_cb_args;
1190 struct tog_blame_thread_args blame_thread_args;
1192 err = got_object_open_by_path(&obj, repo, commit_id, path);
1193 if (err)
1194 goto done;
1195 if (got_object_get_type(obj) != GOT_OBJ_TYPE_BLOB) {
1196 err = got_error(GOT_ERR_OBJ_TYPE);
1197 got_object_close(obj);
1198 goto done;
1201 err = got_object_blob_open(&blob, repo, obj, 8192);
1202 got_object_close(obj);
1203 if (err)
1204 goto done;
1205 f = got_opentemp();
1206 if (f == NULL) {
1207 err = got_error_from_errno();
1208 goto done;
1210 err = got_object_blob_dump_to_file(&filesize, &nlines, f, blob);
1211 if (err)
1212 goto done;
1214 lines = calloc(nlines, sizeof(*lines));
1215 if (lines == NULL) {
1216 err = got_error_from_errno();
1217 goto done;
1220 if (tog_blame_view.window == NULL) {
1221 tog_blame_view.window = newwin(0, 0, 0, 0);
1222 if (tog_blame_view.window == NULL)
1223 return got_error_from_errno();
1224 keypad(tog_blame_view.window, TRUE);
1226 if (tog_blame_view.panel == NULL) {
1227 tog_blame_view.panel = new_panel(tog_blame_view.window);
1228 if (tog_blame_view.panel == NULL)
1229 return got_error_from_errno();
1230 } else
1231 show_panel(tog_blame_view.panel);
1233 if (pthread_mutex_init(&mutex, NULL) != 0) {
1234 err = got_error_from_errno();
1235 goto done;
1237 blame_cb_args.lines = lines;
1238 blame_cb_args.nlines = nlines;
1239 blame_cb_args.mutex = &mutex;
1240 blame_cb_args.f = f;
1241 blame_cb_args.window = tog_blame_view.window;
1242 blame_cb_args.first_displayed_line = &first_displayed_line;
1243 blame_cb_args.last_displayed_line = &last_displayed_line;
1245 blame_thread_args.path = path;
1246 blame_thread_args.commit_id = commit_id;
1247 blame_thread_args.repo = repo;
1248 blame_thread_args.blame_cb_args = &blame_cb_args;
1250 if (pthread_create(&thread, NULL, blame_thread,
1251 &blame_thread_args) != 0) {
1252 err = got_error_from_errno();
1253 goto done;
1256 while (!done) {
1257 if (pthread_mutex_lock(&mutex) != 0) {
1258 err = got_error_from_errno();
1259 goto done;
1261 err = draw_blame(tog_blame_view.window, f, lines, nlines,
1262 &first_displayed_line, &last_displayed_line, &eof, LINES);
1263 if (pthread_mutex_unlock(&mutex) != 0) {
1264 err = got_error_from_errno();
1265 goto done;
1267 if (err)
1268 break;
1269 nodelay(stdscr, FALSE);
1270 ch = wgetch(tog_blame_view.window);
1271 nodelay(stdscr, TRUE);
1272 if (pthread_mutex_lock(&mutex) != 0) {
1273 err = got_error_from_errno();
1274 goto done;
1276 switch (ch) {
1277 case 'q':
1278 done = 1;
1279 break;
1280 case 'k':
1281 case KEY_UP:
1282 case KEY_BACKSPACE:
1283 if (first_displayed_line > 1)
1284 first_displayed_line--;
1285 break;
1286 case KEY_PPAGE:
1287 i = 0;
1288 while (i++ < LINES - 1 &&
1289 first_displayed_line > 1)
1290 first_displayed_line--;
1291 break;
1292 case 'j':
1293 case KEY_DOWN:
1294 case KEY_ENTER:
1295 case '\r':
1296 if (!eof)
1297 first_displayed_line++;
1298 break;
1299 case KEY_NPAGE:
1300 case ' ':
1301 i = 0;
1302 while (!eof && i++ < LINES - 1) {
1303 char *line = parse_next_line(f, NULL);
1304 first_displayed_line++;
1305 if (line == NULL)
1306 break;
1308 break;
1309 default:
1310 break;
1312 if (pthread_mutex_unlock(&mutex) != 0) {
1313 err = got_error_from_errno();
1314 goto done;
1317 done:
1318 if (blob)
1319 got_object_blob_close(blob);
1320 if (f)
1321 fclose(f);
1322 free(lines);
1323 if (thread) {
1324 if (pthread_join(thread, (void **)&err) != 0)
1325 err = got_error_from_errno();
1327 return err;
1330 static const struct got_error *
1331 cmd_blame(int argc, char *argv[])
1333 const struct got_error *error;
1334 struct got_repository *repo = NULL;
1335 char *repo_path = NULL;
1336 char *path = NULL;
1337 struct got_object_id *commit_id = NULL;
1338 char *commit_id_str = NULL;
1339 int ch;
1341 #ifndef PROFILE
1342 if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
1343 err(1, "pledge");
1344 #endif
1346 while ((ch = getopt(argc, argv, "c:")) != -1) {
1347 switch (ch) {
1348 case 'c':
1349 commit_id_str = optarg;
1350 break;
1351 default:
1352 usage();
1353 /* NOTREACHED */
1357 argc -= optind;
1358 argv += optind;
1360 if (argc == 0) {
1361 usage_blame();
1362 } else if (argc == 1) {
1363 repo_path = getcwd(NULL, 0);
1364 if (repo_path == NULL)
1365 return got_error_from_errno();
1366 path = argv[0];
1367 } else if (argc == 2) {
1368 repo_path = realpath(argv[0], NULL);
1369 if (repo_path == NULL)
1370 return got_error_from_errno();
1371 path = argv[1];
1372 } else
1373 usage_blame();
1375 error = got_repo_open(&repo, repo_path);
1376 free(repo_path);
1377 if (error != NULL)
1378 return error;
1380 if (commit_id_str == NULL) {
1381 struct got_reference *head_ref;
1382 error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1383 if (error != NULL)
1384 goto done;
1385 error = got_ref_resolve(&commit_id, repo, head_ref);
1386 got_ref_close(head_ref);
1387 } else {
1388 struct got_object *obj;
1389 error = got_object_open_by_id_str(&obj, repo, commit_id_str);
1390 if (error != NULL)
1391 goto done;
1392 commit_id = got_object_get_id(obj);
1393 if (commit_id == NULL)
1394 error = got_error_from_errno();
1395 got_object_close(obj);
1397 if (error != NULL)
1398 goto done;
1400 error = show_blame_view(path, commit_id, repo);
1401 done:
1402 free(commit_id);
1403 if (repo)
1404 got_repo_close(repo);
1405 return error;
1408 static const struct got_error *
1409 draw_tree_entries(struct got_tree_entry **first_displayed_entry,
1410 struct got_tree_entry **last_displayed_entry,
1411 struct got_tree_entry **selected_entry, int *ndisplayed,
1412 WINDOW *window, const char *label, const char *parent_path,
1413 const struct got_tree_entries *entries, int selected, int limit, int isroot)
1415 const struct got_error *err = NULL;
1416 struct got_tree_entry *te;
1417 wchar_t *wline;
1418 int width, n;
1420 *ndisplayed = 0;
1422 werase(window);
1424 if (limit == 0)
1425 return NULL;
1427 err = format_line(&wline, &width, label, COLS);
1428 if (err)
1429 return err;
1430 waddwstr(window, wline);
1431 if (width < COLS)
1432 waddch(window, '\n');
1433 if (--limit <= 0)
1434 return NULL;
1435 err = format_line(&wline, &width, parent_path, COLS);
1436 if (err)
1437 return err;
1438 waddwstr(window, wline);
1439 if (width < COLS)
1440 waddch(window, '\n');
1441 if (--limit <= 0)
1442 return NULL;
1443 waddch(window, '\n');
1444 if (--limit <= 0)
1445 return NULL;
1447 te = SIMPLEQ_FIRST(&entries->head);
1448 if (*first_displayed_entry == NULL) {
1449 if (selected == 0) {
1450 wstandout(window);
1451 *selected_entry = NULL;
1453 waddstr(window, " ..\n"); /* parent directory */
1454 if (selected == 0)
1455 wstandend(window);
1456 (*ndisplayed)++;
1457 if (--limit <= 0)
1458 return NULL;
1459 n = 1;
1460 } else {
1461 n = 0;
1462 while (te != *first_displayed_entry)
1463 te = SIMPLEQ_NEXT(te, entry);
1466 while (te) {
1467 char *line = NULL;
1468 if (asprintf(&line, " %s%s",
1469 te->name, S_ISDIR(te->mode) ? "/" : "") == -1)
1470 return got_error_from_errno();
1471 err = format_line(&wline, &width, line, COLS);
1472 if (err) {
1473 free(line);
1474 break;
1476 if (n == selected) {
1477 wstandout(window);
1478 *selected_entry = te;
1480 waddwstr(window, wline);
1481 if (width < COLS)
1482 waddch(window, '\n');
1483 if (n == selected)
1484 wstandend(window);
1485 free(line);
1486 n++;
1487 (*ndisplayed)++;
1488 *last_displayed_entry = te;
1489 if (--limit <= 0)
1490 break;
1491 te = SIMPLEQ_NEXT(te, entry);
1494 return err;
1497 static void
1498 tree_scroll_up(struct got_tree_entry **first_displayed_entry, int maxscroll,
1499 const struct got_tree_entries *entries, int isroot)
1501 struct got_tree_entry *te, *prev;
1502 int i;
1504 if (*first_displayed_entry == NULL)
1505 return;
1507 te = SIMPLEQ_FIRST(&entries->head);
1508 if (*first_displayed_entry == te) {
1509 if (!isroot)
1510 *first_displayed_entry = NULL;
1511 return;
1514 /* XXX this is stupid... switch to TAILQ? */
1515 for (i = 0; i < maxscroll; i++) {
1516 while (te != *first_displayed_entry) {
1517 prev = te;
1518 te = SIMPLEQ_NEXT(te, entry);
1520 *first_displayed_entry = prev;
1521 te = SIMPLEQ_FIRST(&entries->head);
1523 if (!isroot && te == SIMPLEQ_FIRST(&entries->head) && i < maxscroll)
1524 *first_displayed_entry = NULL;
1527 static void
1528 tree_scroll_down(struct got_tree_entry **first_displayed_entry, int maxscroll,
1529 struct got_tree_entry *last_displayed_entry,
1530 const struct got_tree_entries *entries)
1532 struct got_tree_entry *next;
1533 int n = 0;
1535 if (SIMPLEQ_NEXT(last_displayed_entry, entry) == NULL)
1536 return;
1538 if (*first_displayed_entry)
1539 next = SIMPLEQ_NEXT(*first_displayed_entry, entry);
1540 else
1541 next = SIMPLEQ_FIRST(&entries->head);
1542 while (next) {
1543 *first_displayed_entry = next;
1544 if (++n >= maxscroll)
1545 break;
1546 next = SIMPLEQ_NEXT(next, entry);
1550 struct tog_parent_tree {
1551 TAILQ_ENTRY(tog_parent_tree) entry;
1552 struct got_tree_object *tree;
1553 struct got_tree_entry *first_displayed_entry;
1554 struct got_tree_entry *selected_entry;
1555 int selected;
1558 TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
1560 static const struct got_error *
1561 tree_entry_path(char **path, struct tog_parent_trees *parents,
1562 struct got_tree_entry *te)
1564 const struct got_error *err = NULL;
1565 struct tog_parent_tree *pt;
1566 size_t len = 2; /* for leading slash and NUL */
1568 TAILQ_FOREACH(pt, parents, entry)
1569 len += strlen(pt->selected_entry->name) + 1 /* slash */;
1570 if (te)
1571 len += strlen(te->name);
1573 *path = calloc(1, len);
1574 if (path == NULL)
1575 return got_error_from_errno();
1577 (*path)[0] = '/';
1578 pt = TAILQ_LAST(parents, tog_parent_trees);
1579 while (pt) {
1580 if (strlcat(*path, pt->selected_entry->name, len) >= len) {
1581 err = got_error(GOT_ERR_NO_SPACE);
1582 goto done;
1584 if (strlcat(*path, "/", len) >= len) {
1585 err = got_error(GOT_ERR_NO_SPACE);
1586 goto done;
1588 pt = TAILQ_PREV(pt, tog_parent_trees, entry);
1590 if (te) {
1591 if (strlcat(*path, te->name, len) >= len) {
1592 err = got_error(GOT_ERR_NO_SPACE);
1593 goto done;
1596 done:
1597 if (err) {
1598 free(*path);
1599 *path = NULL;
1601 return err;
1604 static const struct got_error *
1605 blame_tree_entry(struct got_tree_entry *te, struct tog_parent_trees *parents,
1606 struct got_object_id *commit_id, struct got_repository *repo)
1608 const struct got_error *err = NULL;
1609 char *path;
1611 err = tree_entry_path(&path, parents, te);
1612 if (err)
1613 return err;
1615 err = show_blame_view(path, commit_id, repo);
1616 free(path);
1617 return err;
1620 static const struct got_error *
1621 show_tree_view(struct got_tree_object *root, struct got_object_id *commit_id,
1622 struct got_repository *repo)
1624 const struct got_error *err = NULL;
1625 int ch, done = 0, selected = 0;
1626 struct got_tree_object *tree = root;
1627 const struct got_tree_entries *entries;
1628 struct got_tree_entry *first_displayed_entry = NULL;
1629 struct got_tree_entry *last_displayed_entry = NULL;
1630 struct got_tree_entry *selected_entry = NULL;
1631 char *commit_id_str = NULL, *tree_label = NULL;
1632 int nentries, ndisplayed;
1633 struct tog_parent_trees parents;
1635 TAILQ_INIT(&parents);
1637 err = got_object_id_str(&commit_id_str, commit_id);
1638 if (err != NULL)
1639 goto done;
1641 if (asprintf(&tree_label, "tree of commit %s", commit_id_str) == -1) {
1642 err = got_error_from_errno();
1643 goto done;
1646 if (tog_tree_view.window == NULL) {
1647 tog_tree_view.window = newwin(0, 0, 0, 0);
1648 if (tog_tree_view.window == NULL)
1649 return got_error_from_errno();
1650 keypad(tog_tree_view.window, TRUE);
1652 if (tog_tree_view.panel == NULL) {
1653 tog_tree_view.panel = new_panel(tog_tree_view.window);
1654 if (tog_tree_view.panel == NULL)
1655 return got_error_from_errno();
1656 } else
1657 show_panel(tog_tree_view.panel);
1659 entries = got_object_tree_get_entries(root);
1660 first_displayed_entry = SIMPLEQ_FIRST(&entries->head);
1661 while (!done) {
1662 char *parent_path;
1663 entries = got_object_tree_get_entries(tree);
1664 nentries = entries->nentries;
1665 if (tree != root)
1666 nentries++; /* '..' directory */
1668 err = tree_entry_path(&parent_path, &parents, NULL);
1669 if (err)
1670 goto done;
1672 err = draw_tree_entries(&first_displayed_entry,
1673 &last_displayed_entry, &selected_entry, &ndisplayed,
1674 tog_tree_view.window, tree_label, parent_path, entries,
1675 selected, LINES, tree == root);
1676 free(parent_path);
1677 if (err)
1678 break;
1680 nodelay(stdscr, FALSE);
1681 ch = wgetch(tog_tree_view.window);
1682 nodelay(stdscr, TRUE);
1683 switch (ch) {
1684 case 'q':
1685 done = 1;
1686 break;
1687 case 'k':
1688 case KEY_UP:
1689 if (selected > 0)
1690 selected--;
1691 if (selected > 0)
1692 break;
1693 tree_scroll_up(&first_displayed_entry, 1,
1694 entries, tree == root);
1695 break;
1696 case KEY_PPAGE:
1697 if (SIMPLEQ_FIRST(&entries->head) ==
1698 first_displayed_entry) {
1699 if (tree != root)
1700 first_displayed_entry = NULL;
1701 selected = 0;
1702 break;
1704 tree_scroll_up(&first_displayed_entry, LINES,
1705 entries, tree == root);
1706 break;
1707 case 'j':
1708 case KEY_DOWN:
1709 if (selected < ndisplayed - 1) {
1710 selected++;
1711 break;
1713 tree_scroll_down(&first_displayed_entry, 1,
1714 last_displayed_entry, entries);
1715 break;
1716 case KEY_NPAGE:
1717 tree_scroll_down(&first_displayed_entry, LINES,
1718 last_displayed_entry, entries);
1719 if (SIMPLEQ_NEXT(last_displayed_entry, entry))
1720 break;
1721 /* can't scroll any further; move cursor down */
1722 if (selected < ndisplayed - 1)
1723 selected = ndisplayed - 1;
1724 break;
1725 case KEY_ENTER:
1726 case '\r':
1727 if (selected_entry == NULL) {
1728 struct tog_parent_tree *parent;
1729 case KEY_BACKSPACE:
1730 /* user selected '..' */
1731 if (tree == root)
1732 break;
1733 parent = TAILQ_FIRST(&parents);
1734 TAILQ_REMOVE(&parents, parent, entry);
1735 got_object_tree_close(tree);
1736 tree = parent->tree;
1737 first_displayed_entry =
1738 parent->first_displayed_entry;
1739 selected_entry = parent->selected_entry;
1740 selected = parent->selected;
1741 free(parent);
1742 } else if (S_ISDIR(selected_entry->mode)) {
1743 struct tog_parent_tree *parent;
1744 struct got_tree_object *child;
1745 err = got_object_open_as_tree(
1746 &child, repo, selected_entry->id);
1747 if (err)
1748 goto done;
1749 parent = calloc(1, sizeof(*parent));
1750 if (parent == NULL) {
1751 err = got_error_from_errno();
1752 goto done;
1754 parent->tree = tree;
1755 parent->first_displayed_entry =
1756 first_displayed_entry;
1757 parent->selected_entry = selected_entry;
1758 parent->selected = selected;
1759 TAILQ_INSERT_HEAD(&parents, parent,
1760 entry);
1761 tree = child;
1762 selected = 0;
1763 first_displayed_entry = NULL;
1764 } else if (S_ISREG(selected_entry->mode)) {
1765 err = blame_tree_entry(selected_entry,
1766 &parents, commit_id, repo);
1767 if (err)
1768 goto done;
1770 break;
1771 case KEY_RESIZE:
1772 if (selected > LINES)
1773 selected = ndisplayed - 1;
1774 break;
1775 default:
1776 break;
1779 done:
1780 free(tree_label);
1781 free(commit_id_str);
1782 while (!TAILQ_EMPTY(&parents)) {
1783 struct tog_parent_tree *parent;
1784 parent = TAILQ_FIRST(&parents);
1785 TAILQ_REMOVE(&parents, parent, entry);
1786 free(parent);
1789 if (tree != root)
1790 got_object_tree_close(tree);
1791 return err;
1794 __dead static void
1795 usage_tree(void)
1797 endwin();
1798 fprintf(stderr, "usage: %s tree [-c commit] [repository-path]\n",
1799 getprogname());
1800 exit(1);
1803 static const struct got_error *
1804 cmd_tree(int argc, char *argv[])
1806 const struct got_error *error;
1807 struct got_repository *repo = NULL;
1808 char *repo_path = NULL;
1809 struct got_object_id *commit_id = NULL;
1810 char *commit_id_arg = NULL;
1811 struct got_commit_object *commit = NULL;
1812 struct got_tree_object *tree = NULL;
1813 int ch;
1815 #ifndef PROFILE
1816 if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
1817 err(1, "pledge");
1818 #endif
1820 while ((ch = getopt(argc, argv, "c:")) != -1) {
1821 switch (ch) {
1822 case 'c':
1823 commit_id_arg = optarg;
1824 break;
1825 default:
1826 usage();
1827 /* NOTREACHED */
1831 argc -= optind;
1832 argv += optind;
1834 if (argc == 0) {
1835 repo_path = getcwd(NULL, 0);
1836 if (repo_path == NULL)
1837 return got_error_from_errno();
1838 } else if (argc == 1) {
1839 repo_path = realpath(argv[0], NULL);
1840 if (repo_path == NULL)
1841 return got_error_from_errno();
1842 } else
1843 usage_log();
1845 error = got_repo_open(&repo, repo_path);
1846 free(repo_path);
1847 if (error != NULL)
1848 return error;
1850 if (commit_id_arg == NULL) {
1851 error = get_head_commit_id(&commit_id, repo);
1852 if (error != NULL)
1853 goto done;
1854 } else {
1855 struct got_object *obj;
1856 error = got_object_open_by_id_str(&obj, repo, commit_id_arg);
1857 if (error == NULL) {
1858 commit_id = got_object_get_id(obj);
1859 if (commit_id == NULL)
1860 error = got_error_from_errno();
1863 if (error != NULL)
1864 goto done;
1866 error = got_object_open_as_commit(&commit, repo, commit_id);
1867 if (error != NULL)
1868 goto done;
1870 error = got_object_open_as_tree(&tree, repo, commit->tree_id);
1871 if (error != NULL)
1872 goto done;
1874 error = show_tree_view(tree, commit_id, repo);
1875 done:
1876 free(commit_id);
1877 if (commit)
1878 got_object_commit_close(commit);
1879 if (tree)
1880 got_object_tree_close(tree);
1881 if (repo)
1882 got_repo_close(repo);
1883 return error;
1885 static void
1886 init_curses(void)
1888 initscr();
1889 cbreak();
1890 noecho();
1891 nonl();
1892 intrflush(stdscr, FALSE);
1893 keypad(stdscr, TRUE);
1894 curs_set(0);
1897 __dead static void
1898 usage(void)
1900 int i;
1902 fprintf(stderr, "usage: %s [-h] [command] [arg ...]\n\n"
1903 "Available commands:\n", getprogname());
1904 for (i = 0; i < nitems(tog_commands); i++) {
1905 struct tog_cmd *cmd = &tog_commands[i];
1906 fprintf(stderr, " %s: %s\n", cmd->name, cmd->descr);
1908 exit(1);
1911 static char **
1912 make_argv(const char *arg0, const char *arg1)
1914 char **argv;
1915 int argc = (arg1 == NULL ? 1 : 2);
1917 argv = calloc(argc, sizeof(char *));
1918 if (argv == NULL)
1919 err(1, "calloc");
1920 argv[0] = strdup(arg0);
1921 if (argv[0] == NULL)
1922 err(1, "calloc");
1923 if (arg1) {
1924 argv[1] = strdup(arg1);
1925 if (argv[1] == NULL)
1926 err(1, "calloc");
1929 return argv;
1932 int
1933 main(int argc, char *argv[])
1935 const struct got_error *error = NULL;
1936 struct tog_cmd *cmd = NULL;
1937 int ch, hflag = 0;
1938 char **cmd_argv = NULL;
1940 setlocale(LC_ALL, "");
1942 while ((ch = getopt(argc, argv, "h")) != -1) {
1943 switch (ch) {
1944 case 'h':
1945 hflag = 1;
1946 break;
1947 default:
1948 usage();
1949 /* NOTREACHED */
1953 argc -= optind;
1954 argv += optind;
1955 optind = 0;
1956 optreset = 1;
1958 if (argc == 0) {
1959 if (hflag)
1960 usage();
1961 /* Build an argument vector which runs a default command. */
1962 cmd = &tog_commands[0];
1963 cmd_argv = make_argv(cmd->name, NULL);
1964 argc = 1;
1965 } else {
1966 int i;
1968 /* Did the user specific a command? */
1969 for (i = 0; i < nitems(tog_commands); i++) {
1970 if (strncmp(tog_commands[i].name, argv[0],
1971 strlen(argv[0])) == 0) {
1972 cmd = &tog_commands[i];
1973 if (hflag)
1974 tog_commands[i].cmd_usage();
1975 break;
1978 if (cmd == NULL) {
1979 /* Did the user specify a repository? */
1980 char *repo_path = realpath(argv[0], NULL);
1981 if (repo_path) {
1982 struct got_repository *repo;
1983 error = got_repo_open(&repo, repo_path);
1984 if (error == NULL)
1985 got_repo_close(repo);
1986 } else
1987 error = got_error_from_errno();
1988 if (error) {
1989 if (hflag) {
1990 fprintf(stderr, "%s: '%s' is not a "
1991 "known command\n", getprogname(),
1992 argv[0]);
1993 usage();
1995 fprintf(stderr, "%s: '%s' is neither a known "
1996 "command nor a path to a repository\n",
1997 getprogname(), argv[0]);
1998 free(repo_path);
1999 return 1;
2001 cmd = &tog_commands[0];
2002 cmd_argv = make_argv(cmd->name, repo_path);
2003 argc = 2;
2004 free(repo_path);
2008 init_curses();
2010 error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
2011 if (error)
2012 goto done;
2013 done:
2014 endwin();
2015 free(cmd_argv);
2016 if (error)
2017 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
2018 return 0;