Blob


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