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 #define _XOPEN_SOURCE_EXTENDED /* for ncurses wide-character functions */
24 #include <curses.h>
25 #include <panel.h>
26 #include <locale.h>
27 #include <sha1.h>
28 #include <sha2.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_version.h"
46 #include "got_error.h"
47 #include "got_object.h"
48 #include "got_reference.h"
49 #include "got_repository.h"
50 #include "got_diff.h"
51 #include "got_opentemp.h"
52 #include "got_utf8.h"
53 #include "got_cancel.h"
54 #include "got_commit_graph.h"
55 #include "got_blame.h"
56 #include "got_privsep.h"
57 #include "got_path.h"
58 #include "got_worktree.h"
60 #ifndef MIN
61 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
62 #endif
64 #ifndef MAX
65 #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
66 #endif
68 #define CTRL(x) ((x) & 0x1f)
70 #ifndef nitems
71 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
72 #endif
74 struct tog_cmd {
75 const char *name;
76 const struct got_error *(*cmd_main)(int, char *[]);
77 void (*cmd_usage)(void);
78 };
80 __dead static void usage(int, int);
81 __dead static void usage_log(void);
82 __dead static void usage_diff(void);
83 __dead static void usage_blame(void);
84 __dead static void usage_tree(void);
85 __dead static void usage_ref(void);
87 static const struct got_error* cmd_log(int, char *[]);
88 static const struct got_error* cmd_diff(int, char *[]);
89 static const struct got_error* cmd_blame(int, char *[]);
90 static const struct got_error* cmd_tree(int, char *[]);
91 static const struct got_error* cmd_ref(int, char *[]);
93 static const struct tog_cmd tog_commands[] = {
94 { "log", cmd_log, usage_log },
95 { "diff", cmd_diff, usage_diff },
96 { "blame", cmd_blame, usage_blame },
97 { "tree", cmd_tree, usage_tree },
98 { "ref", cmd_ref, usage_ref },
99 };
101 enum tog_view_type {
102 TOG_VIEW_DIFF,
103 TOG_VIEW_LOG,
104 TOG_VIEW_BLAME,
105 TOG_VIEW_TREE,
106 TOG_VIEW_REF,
107 TOG_VIEW_HELP
108 };
110 /* Match _DIFF to _HELP with enum tog_view_type TOG_VIEW_* counterparts. */
111 enum tog_keymap_type {
112 TOG_KEYMAP_KEYS = -2,
113 TOG_KEYMAP_GLOBAL,
114 TOG_KEYMAP_DIFF,
115 TOG_KEYMAP_LOG,
116 TOG_KEYMAP_BLAME,
117 TOG_KEYMAP_TREE,
118 TOG_KEYMAP_REF,
119 TOG_KEYMAP_HELP
120 };
122 enum tog_view_mode {
123 TOG_VIEW_SPLIT_NONE,
124 TOG_VIEW_SPLIT_VERT,
125 TOG_VIEW_SPLIT_HRZN
126 };
128 #define HSPLIT_SCALE 0.3f /* default horizontal split scale */
130 #define TOG_EOF_STRING "(END)"
132 struct commit_queue_entry {
133 TAILQ_ENTRY(commit_queue_entry) entry;
134 struct got_object_id *id;
135 struct got_commit_object *commit;
136 int idx;
137 };
138 TAILQ_HEAD(commit_queue_head, commit_queue_entry);
139 struct commit_queue {
140 int ncommits;
141 struct commit_queue_head head;
142 };
144 struct tog_color {
145 STAILQ_ENTRY(tog_color) entry;
146 regex_t regex;
147 short colorpair;
148 };
149 STAILQ_HEAD(tog_colors, tog_color);
151 static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
152 static struct got_reflist_object_id_map *tog_refs_idmap;
153 static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
155 static const struct got_error *
156 tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
157 struct got_reference* re2)
159 const char *name1 = got_ref_get_name(re1);
160 const char *name2 = got_ref_get_name(re2);
161 int isbackup1, isbackup2;
163 /* Sort backup refs towards the bottom of the list. */
164 isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
165 isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
166 if (!isbackup1 && isbackup2) {
167 *cmp = -1;
168 return NULL;
169 } else if (isbackup1 && !isbackup2) {
170 *cmp = 1;
171 return NULL;
174 *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
175 return NULL;
178 static const struct got_error *
179 tog_load_refs(struct got_repository *repo, int sort_by_date)
181 const struct got_error *err;
183 err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
184 got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
185 repo);
186 if (err)
187 return err;
189 return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
190 repo);
193 static void
194 tog_free_refs(void)
196 if (tog_refs_idmap) {
197 got_reflist_object_id_map_free(tog_refs_idmap);
198 tog_refs_idmap = NULL;
200 got_ref_list_free(&tog_refs);
203 static const struct got_error *
204 add_color(struct tog_colors *colors, const char *pattern,
205 int idx, short color)
207 const struct got_error *err = NULL;
208 struct tog_color *tc;
209 int regerr = 0;
211 if (idx < 1 || idx > COLOR_PAIRS - 1)
212 return NULL;
214 init_pair(idx, color, -1);
216 tc = calloc(1, sizeof(*tc));
217 if (tc == NULL)
218 return got_error_from_errno("calloc");
219 regerr = regcomp(&tc->regex, pattern,
220 REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
221 if (regerr) {
222 static char regerr_msg[512];
223 static char err_msg[512];
224 regerror(regerr, &tc->regex, regerr_msg,
225 sizeof(regerr_msg));
226 snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
227 regerr_msg);
228 err = got_error_msg(GOT_ERR_REGEX, err_msg);
229 free(tc);
230 return err;
232 tc->colorpair = idx;
233 STAILQ_INSERT_HEAD(colors, tc, entry);
234 return NULL;
237 static void
238 free_colors(struct tog_colors *colors)
240 struct tog_color *tc;
242 while (!STAILQ_EMPTY(colors)) {
243 tc = STAILQ_FIRST(colors);
244 STAILQ_REMOVE_HEAD(colors, entry);
245 regfree(&tc->regex);
246 free(tc);
250 static struct tog_color *
251 get_color(struct tog_colors *colors, int colorpair)
253 struct tog_color *tc = NULL;
255 STAILQ_FOREACH(tc, colors, entry) {
256 if (tc->colorpair == colorpair)
257 return tc;
260 return NULL;
263 static int
264 default_color_value(const char *envvar)
266 if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
267 return COLOR_MAGENTA;
268 if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
269 return COLOR_CYAN;
270 if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
271 return COLOR_YELLOW;
272 if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
273 return COLOR_GREEN;
274 if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
275 return COLOR_MAGENTA;
276 if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
277 return COLOR_MAGENTA;
278 if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
279 return COLOR_CYAN;
280 if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
281 return COLOR_GREEN;
282 if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
283 return COLOR_GREEN;
284 if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
285 return COLOR_CYAN;
286 if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
287 return COLOR_YELLOW;
288 if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
289 return COLOR_GREEN;
290 if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
291 return COLOR_MAGENTA;
292 if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
293 return COLOR_YELLOW;
294 if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
295 return COLOR_CYAN;
297 return -1;
300 static int
301 get_color_value(const char *envvar)
303 const char *val = getenv(envvar);
305 if (val == NULL)
306 return default_color_value(envvar);
308 if (strcasecmp(val, "black") == 0)
309 return COLOR_BLACK;
310 if (strcasecmp(val, "red") == 0)
311 return COLOR_RED;
312 if (strcasecmp(val, "green") == 0)
313 return COLOR_GREEN;
314 if (strcasecmp(val, "yellow") == 0)
315 return COLOR_YELLOW;
316 if (strcasecmp(val, "blue") == 0)
317 return COLOR_BLUE;
318 if (strcasecmp(val, "magenta") == 0)
319 return COLOR_MAGENTA;
320 if (strcasecmp(val, "cyan") == 0)
321 return COLOR_CYAN;
322 if (strcasecmp(val, "white") == 0)
323 return COLOR_WHITE;
324 if (strcasecmp(val, "default") == 0)
325 return -1;
327 return default_color_value(envvar);
330 struct tog_diff_view_state {
331 struct got_object_id *id1, *id2;
332 const char *label1, *label2;
333 FILE *f, *f1, *f2;
334 int fd1, fd2;
335 int lineno;
336 int first_displayed_line;
337 int last_displayed_line;
338 int eof;
339 int diff_context;
340 int ignore_whitespace;
341 int force_text_diff;
342 struct got_repository *repo;
343 struct got_diff_line *lines;
344 size_t nlines;
345 int matched_line;
346 int selected_line;
348 /* passed from log or blame view; may be NULL */
349 struct tog_view *parent_view;
350 };
352 pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
353 static volatile sig_atomic_t tog_thread_error;
355 struct tog_log_thread_args {
356 pthread_cond_t need_commits;
357 pthread_cond_t commit_loaded;
358 int commits_needed;
359 int load_all;
360 struct got_commit_graph *graph;
361 struct commit_queue *real_commits;
362 const char *in_repo_path;
363 struct got_object_id *start_id;
364 struct got_repository *repo;
365 int *pack_fds;
366 int log_complete;
367 sig_atomic_t *quit;
368 struct commit_queue_entry **first_displayed_entry;
369 struct commit_queue_entry **selected_entry;
370 int *searching;
371 int *search_next_done;
372 regex_t *regex;
373 int *limiting;
374 int limit_match;
375 regex_t *limit_regex;
376 struct commit_queue *limit_commits;
377 };
379 struct tog_log_view_state {
380 struct commit_queue *commits;
381 struct commit_queue_entry *first_displayed_entry;
382 struct commit_queue_entry *last_displayed_entry;
383 struct commit_queue_entry *selected_entry;
384 struct commit_queue real_commits;
385 int selected;
386 char *in_repo_path;
387 char *head_ref_name;
388 int log_branches;
389 struct got_repository *repo;
390 struct got_object_id *start_id;
391 sig_atomic_t quit;
392 pthread_t thread;
393 struct tog_log_thread_args thread_args;
394 struct commit_queue_entry *matched_entry;
395 struct commit_queue_entry *search_entry;
396 struct tog_colors colors;
397 int use_committer;
398 int limit_view;
399 regex_t limit_regex;
400 struct commit_queue limit_commits;
401 };
403 #define TOG_COLOR_DIFF_MINUS 1
404 #define TOG_COLOR_DIFF_PLUS 2
405 #define TOG_COLOR_DIFF_CHUNK_HEADER 3
406 #define TOG_COLOR_DIFF_META 4
407 #define TOG_COLOR_TREE_SUBMODULE 5
408 #define TOG_COLOR_TREE_SYMLINK 6
409 #define TOG_COLOR_TREE_DIRECTORY 7
410 #define TOG_COLOR_TREE_EXECUTABLE 8
411 #define TOG_COLOR_COMMIT 9
412 #define TOG_COLOR_AUTHOR 10
413 #define TOG_COLOR_DATE 11
414 #define TOG_COLOR_REFS_HEADS 12
415 #define TOG_COLOR_REFS_TAGS 13
416 #define TOG_COLOR_REFS_REMOTES 14
417 #define TOG_COLOR_REFS_BACKUP 15
419 struct tog_blame_cb_args {
420 struct tog_blame_line *lines; /* one per line */
421 int nlines;
423 struct tog_view *view;
424 struct got_object_id *commit_id;
425 int *quit;
426 };
428 struct tog_blame_thread_args {
429 const char *path;
430 struct got_repository *repo;
431 struct tog_blame_cb_args *cb_args;
432 int *complete;
433 got_cancel_cb cancel_cb;
434 void *cancel_arg;
435 pthread_cond_t blame_complete;
436 };
438 struct tog_blame {
439 FILE *f;
440 off_t filesize;
441 struct tog_blame_line *lines;
442 int nlines;
443 off_t *line_offsets;
444 pthread_t thread;
445 struct tog_blame_thread_args thread_args;
446 struct tog_blame_cb_args cb_args;
447 const char *path;
448 int *pack_fds;
449 };
451 struct tog_blame_view_state {
452 int first_displayed_line;
453 int last_displayed_line;
454 int selected_line;
455 int last_diffed_line;
456 int blame_complete;
457 int eof;
458 int done;
459 struct got_object_id_queue blamed_commits;
460 struct got_object_qid *blamed_commit;
461 char *path;
462 struct got_repository *repo;
463 struct got_object_id *commit_id;
464 struct got_object_id *id_to_log;
465 struct tog_blame blame;
466 int matched_line;
467 struct tog_colors colors;
468 };
470 struct tog_parent_tree {
471 TAILQ_ENTRY(tog_parent_tree) entry;
472 struct got_tree_object *tree;
473 struct got_tree_entry *first_displayed_entry;
474 struct got_tree_entry *selected_entry;
475 int selected;
476 };
478 TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
480 struct tog_tree_view_state {
481 char *tree_label;
482 struct got_object_id *commit_id;/* commit which this tree belongs to */
483 struct got_tree_object *root; /* the commit's root tree entry */
484 struct got_tree_object *tree; /* currently displayed (sub-)tree */
485 struct got_tree_entry *first_displayed_entry;
486 struct got_tree_entry *last_displayed_entry;
487 struct got_tree_entry *selected_entry;
488 int ndisplayed, selected, show_ids;
489 struct tog_parent_trees parents; /* parent trees of current sub-tree */
490 char *head_ref_name;
491 struct got_repository *repo;
492 struct got_tree_entry *matched_entry;
493 struct tog_colors colors;
494 };
496 struct tog_reflist_entry {
497 TAILQ_ENTRY(tog_reflist_entry) entry;
498 struct got_reference *ref;
499 int idx;
500 };
502 TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
504 struct tog_ref_view_state {
505 struct tog_reflist_head refs;
506 struct tog_reflist_entry *first_displayed_entry;
507 struct tog_reflist_entry *last_displayed_entry;
508 struct tog_reflist_entry *selected_entry;
509 int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
510 struct got_repository *repo;
511 struct tog_reflist_entry *matched_entry;
512 struct tog_colors colors;
513 };
515 struct tog_help_view_state {
516 FILE *f;
517 off_t *line_offsets;
518 size_t nlines;
519 int lineno;
520 int first_displayed_line;
521 int last_displayed_line;
522 int eof;
523 int matched_line;
524 int selected_line;
525 int all;
526 enum tog_keymap_type type;
527 };
529 #define GENERATE_HELP \
530 KEYMAP_("Global", TOG_KEYMAP_GLOBAL), \
531 KEY_("H F1", "Open view-specific help (double tap for all help)"), \
532 KEY_("k C-p Up", "Move cursor or page up one line"), \
533 KEY_("j C-n Down", "Move cursor or page down one line"), \
534 KEY_("C-b b PgUp", "Scroll the view up one page"), \
535 KEY_("C-f f PgDn Space", "Scroll the view down one page"), \
536 KEY_("C-u u", "Scroll the view up one half page"), \
537 KEY_("C-d d", "Scroll the view down one half page"), \
538 KEY_("g", "Go to line N (default: first line)"), \
539 KEY_("Home =", "Go to the first line"), \
540 KEY_("G", "Go to line N (default: last line)"), \
541 KEY_("End *", "Go to the last line"), \
542 KEY_("l Right", "Scroll the view right"), \
543 KEY_("h Left", "Scroll the view left"), \
544 KEY_("$", "Scroll view to the rightmost position"), \
545 KEY_("0", "Scroll view to the leftmost position"), \
546 KEY_("-", "Decrease size of the focussed split"), \
547 KEY_("+", "Increase size of the focussed split"), \
548 KEY_("Tab", "Switch focus between views"), \
549 KEY_("F", "Toggle fullscreen mode"), \
550 KEY_("S", "Switch split-screen layout"), \
551 KEY_("/", "Open prompt to enter search term"), \
552 KEY_("n", "Find next line/token matching the current search term"), \
553 KEY_("N", "Find previous line/token matching the current search term"),\
554 KEY_("q", "Quit the focussed view; Quit help screen"), \
555 KEY_("Q", "Quit tog"), \
557 KEYMAP_("Log view", TOG_KEYMAP_LOG), \
558 KEY_("< ,", "Move cursor up one commit"), \
559 KEY_("> .", "Move cursor down one commit"), \
560 KEY_("Enter", "Open diff view of the selected commit"), \
561 KEY_("B", "Reload the log view and toggle display of merged commits"), \
562 KEY_("R", "Open ref view of all repository references"), \
563 KEY_("T", "Display tree view of the repository from the selected" \
564 " commit"), \
565 KEY_("@", "Toggle between displaying author and committer name"), \
566 KEY_("&", "Open prompt to enter term to limit commits displayed"), \
567 KEY_("C-g Backspace", "Cancel current search or log operation"), \
568 KEY_("C-l", "Reload the log view with new commits in the repository"), \
570 KEYMAP_("Diff view", TOG_KEYMAP_DIFF), \
571 KEY_("K < ,", "Display diff of next line in the file/log entry"), \
572 KEY_("J > .", "Display diff of previous line in the file/log entry"), \
573 KEY_("A", "Toggle between Myers and Patience diff algorithm"), \
574 KEY_("a", "Toggle treatment of file as ASCII irrespective of binary" \
575 " data"), \
576 KEY_("(", "Go to the previous file in the diff"), \
577 KEY_(")", "Go to the next file in the diff"), \
578 KEY_("{", "Go to the previous hunk in the diff"), \
579 KEY_("}", "Go to the next hunk in the diff"), \
580 KEY_("[", "Decrease the number of context lines"), \
581 KEY_("]", "Increase the number of context lines"), \
582 KEY_("w", "Toggle ignore whitespace-only changes in the diff"), \
584 KEYMAP_("Blame view", TOG_KEYMAP_BLAME), \
585 KEY_("Enter", "Display diff view of the selected line's commit"), \
586 KEY_("A", "Toggle diff algorithm between Myers and Patience"), \
587 KEY_("L", "Open log view for the currently selected annotated line"), \
588 KEY_("C", "Reload view with the previously blamed commit"), \
589 KEY_("c", "Reload view with the version of the file found in the" \
590 " selected line's commit"), \
591 KEY_("p", "Reload view with the version of the file found in the" \
592 " selected line's parent commit"), \
594 KEYMAP_("Tree view", TOG_KEYMAP_TREE), \
595 KEY_("Enter", "Enter selected directory or open blame view of the" \
596 " selected file"), \
597 KEY_("L", "Open log view for the selected entry"), \
598 KEY_("R", "Open ref view of all repository references"), \
599 KEY_("i", "Show object IDs for all tree entries"), \
600 KEY_("Backspace", "Return to the parent directory"), \
602 KEYMAP_("Ref view", TOG_KEYMAP_REF), \
603 KEY_("Enter", "Display log view of the selected reference"), \
604 KEY_("T", "Display tree view of the selected reference"), \
605 KEY_("i", "Toggle display of IDs for all non-symbolic references"), \
606 KEY_("m", "Toggle display of last modified date for each reference"), \
607 KEY_("o", "Toggle reference sort order (name -> timestamp)"), \
608 KEY_("C-l", "Reload view with all repository references")
610 struct tog_key_map {
611 const char *keys;
612 const char *info;
613 enum tog_keymap_type type;
614 };
616 /* curses io for tog regress */
617 struct tog_io {
618 FILE *cin;
619 FILE *cout;
620 FILE *f;
621 FILE *sdump;
622 int wait_for_ui;
623 } tog_io;
624 static int using_mock_io;
626 #define TOG_KEY_SCRDUMP SHRT_MIN
628 /*
629 * We implement two types of views: parent views and child views.
631 * The 'Tab' key switches focus between a parent view and its child view.
632 * Child views are shown side-by-side to their parent view, provided
633 * there is enough screen estate.
635 * When a new view is opened from within a parent view, this new view
636 * becomes a child view of the parent view, replacing any existing child.
638 * When a new view is opened from within a child view, this new view
639 * becomes a parent view which will obscure the views below until the
640 * user quits the new parent view by typing 'q'.
642 * This list of views contains parent views only.
643 * Child views are only pointed to by their parent view.
644 */
645 TAILQ_HEAD(tog_view_list_head, tog_view);
647 struct tog_view {
648 TAILQ_ENTRY(tog_view) entry;
649 WINDOW *window;
650 PANEL *panel;
651 int nlines, ncols, begin_y, begin_x; /* based on split height/width */
652 int resized_y, resized_x; /* begin_y/x based on user resizing */
653 int maxx, x; /* max column and current start column */
654 int lines, cols; /* copies of LINES and COLS */
655 int nscrolled, offset; /* lines scrolled and hsplit line offset */
656 int gline, hiline; /* navigate to and highlight this nG line */
657 int ch, count; /* current keymap and count prefix */
658 int resized; /* set when in a resize event */
659 int focussed; /* Only set on one parent or child view at a time. */
660 int dying;
661 struct tog_view *parent;
662 struct tog_view *child;
664 /*
665 * This flag is initially set on parent views when a new child view
666 * is created. It gets toggled when the 'Tab' key switches focus
667 * between parent and child.
668 * The flag indicates whether focus should be passed on to our child
669 * view if this parent view gets picked for focus after another parent
670 * view was closed. This prevents child views from losing focus in such
671 * situations.
672 */
673 int focus_child;
675 enum tog_view_mode mode;
676 /* type-specific state */
677 enum tog_view_type type;
678 union {
679 struct tog_diff_view_state diff;
680 struct tog_log_view_state log;
681 struct tog_blame_view_state blame;
682 struct tog_tree_view_state tree;
683 struct tog_ref_view_state ref;
684 struct tog_help_view_state help;
685 } state;
687 const struct got_error *(*show)(struct tog_view *);
688 const struct got_error *(*input)(struct tog_view **,
689 struct tog_view *, int);
690 const struct got_error *(*reset)(struct tog_view *);
691 const struct got_error *(*resize)(struct tog_view *, int);
692 const struct got_error *(*close)(struct tog_view *);
694 const struct got_error *(*search_start)(struct tog_view *);
695 const struct got_error *(*search_next)(struct tog_view *);
696 void (*search_setup)(struct tog_view *, FILE **, off_t **, size_t *,
697 int **, int **, int **, int **);
698 int search_started;
699 int searching;
700 #define TOG_SEARCH_FORWARD 1
701 #define TOG_SEARCH_BACKWARD 2
702 int search_next_done;
703 #define TOG_SEARCH_HAVE_MORE 1
704 #define TOG_SEARCH_NO_MORE 2
705 #define TOG_SEARCH_HAVE_NONE 3
706 regex_t regex;
707 regmatch_t regmatch;
708 const char *action;
709 };
711 static const struct got_error *open_diff_view(struct tog_view *,
712 struct got_object_id *, struct got_object_id *,
713 const char *, const char *, int, int, int, struct tog_view *,
714 struct got_repository *);
715 static const struct got_error *show_diff_view(struct tog_view *);
716 static const struct got_error *input_diff_view(struct tog_view **,
717 struct tog_view *, int);
718 static const struct got_error *reset_diff_view(struct tog_view *);
719 static const struct got_error* close_diff_view(struct tog_view *);
720 static const struct got_error *search_start_diff_view(struct tog_view *);
721 static void search_setup_diff_view(struct tog_view *, FILE **, off_t **,
722 size_t *, int **, int **, int **, int **);
723 static const struct got_error *search_next_view_match(struct tog_view *);
725 static const struct got_error *open_log_view(struct tog_view *,
726 struct got_object_id *, struct got_repository *,
727 const char *, const char *, int);
728 static const struct got_error * show_log_view(struct tog_view *);
729 static const struct got_error *input_log_view(struct tog_view **,
730 struct tog_view *, int);
731 static const struct got_error *resize_log_view(struct tog_view *, int);
732 static const struct got_error *close_log_view(struct tog_view *);
733 static const struct got_error *search_start_log_view(struct tog_view *);
734 static const struct got_error *search_next_log_view(struct tog_view *);
736 static const struct got_error *open_blame_view(struct tog_view *, char *,
737 struct got_object_id *, struct got_repository *);
738 static const struct got_error *show_blame_view(struct tog_view *);
739 static const struct got_error *input_blame_view(struct tog_view **,
740 struct tog_view *, int);
741 static const struct got_error *reset_blame_view(struct tog_view *);
742 static const struct got_error *close_blame_view(struct tog_view *);
743 static const struct got_error *search_start_blame_view(struct tog_view *);
744 static void search_setup_blame_view(struct tog_view *, FILE **, off_t **,
745 size_t *, int **, int **, int **, int **);
747 static const struct got_error *open_tree_view(struct tog_view *,
748 struct got_object_id *, const char *, struct got_repository *);
749 static const struct got_error *show_tree_view(struct tog_view *);
750 static const struct got_error *input_tree_view(struct tog_view **,
751 struct tog_view *, int);
752 static const struct got_error *close_tree_view(struct tog_view *);
753 static const struct got_error *search_start_tree_view(struct tog_view *);
754 static const struct got_error *search_next_tree_view(struct tog_view *);
756 static const struct got_error *open_ref_view(struct tog_view *,
757 struct got_repository *);
758 static const struct got_error *show_ref_view(struct tog_view *);
759 static const struct got_error *input_ref_view(struct tog_view **,
760 struct tog_view *, int);
761 static const struct got_error *close_ref_view(struct tog_view *);
762 static const struct got_error *search_start_ref_view(struct tog_view *);
763 static const struct got_error *search_next_ref_view(struct tog_view *);
765 static const struct got_error *open_help_view(struct tog_view *,
766 struct tog_view *);
767 static const struct got_error *show_help_view(struct tog_view *);
768 static const struct got_error *input_help_view(struct tog_view **,
769 struct tog_view *, int);
770 static const struct got_error *reset_help_view(struct tog_view *);
771 static const struct got_error* close_help_view(struct tog_view *);
772 static const struct got_error *search_start_help_view(struct tog_view *);
773 static void search_setup_help_view(struct tog_view *, FILE **, off_t **,
774 size_t *, int **, int **, int **, int **);
776 static volatile sig_atomic_t tog_sigwinch_received;
777 static volatile sig_atomic_t tog_sigpipe_received;
778 static volatile sig_atomic_t tog_sigcont_received;
779 static volatile sig_atomic_t tog_sigint_received;
780 static volatile sig_atomic_t tog_sigterm_received;
782 static void
783 tog_sigwinch(int signo)
785 tog_sigwinch_received = 1;
788 static void
789 tog_sigpipe(int signo)
791 tog_sigpipe_received = 1;
794 static void
795 tog_sigcont(int signo)
797 tog_sigcont_received = 1;
800 static void
801 tog_sigint(int signo)
803 tog_sigint_received = 1;
806 static void
807 tog_sigterm(int signo)
809 tog_sigterm_received = 1;
812 static int
813 tog_fatal_signal_received(void)
815 return (tog_sigpipe_received ||
816 tog_sigint_received || tog_sigterm_received);
819 static const struct got_error *
820 view_close(struct tog_view *view)
822 const struct got_error *err = NULL, *child_err = NULL;
824 if (view->child) {
825 child_err = view_close(view->child);
826 view->child = NULL;
828 if (view->close)
829 err = view->close(view);
830 if (view->panel)
831 del_panel(view->panel);
832 if (view->window)
833 delwin(view->window);
834 free(view);
835 return err ? err : child_err;
838 static struct tog_view *
839 view_open(int nlines, int ncols, int begin_y, int begin_x,
840 enum tog_view_type type)
842 struct tog_view *view = calloc(1, sizeof(*view));
844 if (view == NULL)
845 return NULL;
847 view->type = type;
848 view->lines = LINES;
849 view->cols = COLS;
850 view->nlines = nlines ? nlines : LINES - begin_y;
851 view->ncols = ncols ? ncols : COLS - begin_x;
852 view->begin_y = begin_y;
853 view->begin_x = begin_x;
854 view->window = newwin(nlines, ncols, begin_y, begin_x);
855 if (view->window == NULL) {
856 view_close(view);
857 return NULL;
859 view->panel = new_panel(view->window);
860 if (view->panel == NULL ||
861 set_panel_userptr(view->panel, view) != OK) {
862 view_close(view);
863 return NULL;
866 keypad(view->window, TRUE);
867 return view;
870 static int
871 view_split_begin_x(int begin_x)
873 if (begin_x > 0 || COLS < 120)
874 return 0;
875 return (COLS - MAX(COLS / 2, 80));
878 /* XXX Stub till we decide what to do. */
879 static int
880 view_split_begin_y(int lines)
882 return lines * HSPLIT_SCALE;
885 static const struct got_error *view_resize(struct tog_view *);
887 static const struct got_error *
888 view_splitscreen(struct tog_view *view)
890 const struct got_error *err = NULL;
892 if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
893 if (view->resized_y && view->resized_y < view->lines)
894 view->begin_y = view->resized_y;
895 else
896 view->begin_y = view_split_begin_y(view->nlines);
897 view->begin_x = 0;
898 } else if (!view->resized) {
899 if (view->resized_x && view->resized_x < view->cols - 1 &&
900 view->cols > 119)
901 view->begin_x = view->resized_x;
902 else
903 view->begin_x = view_split_begin_x(0);
904 view->begin_y = 0;
906 view->nlines = LINES - view->begin_y;
907 view->ncols = COLS - view->begin_x;
908 view->lines = LINES;
909 view->cols = COLS;
910 err = view_resize(view);
911 if (err)
912 return err;
914 if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
915 view->parent->nlines = view->begin_y;
917 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
918 return got_error_from_errno("mvwin");
920 return NULL;
923 static const struct got_error *
924 view_fullscreen(struct tog_view *view)
926 const struct got_error *err = NULL;
928 view->begin_x = 0;
929 view->begin_y = view->resized ? view->begin_y : 0;
930 view->nlines = view->resized ? view->nlines : LINES;
931 view->ncols = COLS;
932 view->lines = LINES;
933 view->cols = COLS;
934 err = view_resize(view);
935 if (err)
936 return err;
938 if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
939 return got_error_from_errno("mvwin");
941 return NULL;
944 static int
945 view_is_parent_view(struct tog_view *view)
947 return view->parent == NULL;
950 static int
951 view_is_splitscreen(struct tog_view *view)
953 return view->begin_x > 0 || view->begin_y > 0;
956 static int
957 view_is_fullscreen(struct tog_view *view)
959 return view->nlines == LINES && view->ncols == COLS;
962 static int
963 view_is_hsplit_top(struct tog_view *view)
965 return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
966 view_is_splitscreen(view->child);
969 static void
970 view_border(struct tog_view *view)
972 PANEL *panel;
973 const struct tog_view *view_above;
975 if (view->parent)
976 return view_border(view->parent);
978 panel = panel_above(view->panel);
979 if (panel == NULL)
980 return;
982 view_above = panel_userptr(panel);
983 if (view->mode == TOG_VIEW_SPLIT_HRZN)
984 mvwhline(view->window, view_above->begin_y - 1,
985 view->begin_x, ACS_HLINE, view->ncols);
986 else
987 mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
988 ACS_VLINE, view->nlines);
991 static const struct got_error *view_init_hsplit(struct tog_view *, int);
992 static const struct got_error *request_log_commits(struct tog_view *);
993 static const struct got_error *offset_selection_down(struct tog_view *);
994 static void offset_selection_up(struct tog_view *);
995 static void view_get_split(struct tog_view *, int *, int *);
997 static const struct got_error *
998 view_resize(struct tog_view *view)
1000 const struct got_error *err = NULL;
1001 int dif, nlines, ncols;
1003 dif = LINES - view->lines; /* line difference */
1005 if (view->lines > LINES)
1006 nlines = view->nlines - (view->lines - LINES);
1007 else
1008 nlines = view->nlines + (LINES - view->lines);
1009 if (view->cols > COLS)
1010 ncols = view->ncols - (view->cols - COLS);
1011 else
1012 ncols = view->ncols + (COLS - view->cols);
1014 if (view->child) {
1015 int hs = view->child->begin_y;
1017 if (!view_is_fullscreen(view))
1018 view->child->begin_x = view_split_begin_x(view->begin_x);
1019 if (view->mode == TOG_VIEW_SPLIT_HRZN ||
1020 view->child->begin_x == 0) {
1021 ncols = COLS;
1023 view_fullscreen(view->child);
1024 if (view->child->focussed)
1025 show_panel(view->child->panel);
1026 else
1027 show_panel(view->panel);
1028 } else {
1029 ncols = view->child->begin_x;
1031 view_splitscreen(view->child);
1032 show_panel(view->child->panel);
1035 * XXX This is ugly and needs to be moved into the above
1036 * logic but "works" for now and my attempts at moving it
1037 * break either 'tab' or 'F' key maps in horizontal splits.
1039 if (hs) {
1040 err = view_splitscreen(view->child);
1041 if (err)
1042 return err;
1043 if (dif < 0) { /* top split decreased */
1044 err = offset_selection_down(view);
1045 if (err)
1046 return err;
1048 view_border(view);
1049 update_panels();
1050 doupdate();
1051 show_panel(view->child->panel);
1052 nlines = view->nlines;
1054 } else if (view->parent == NULL)
1055 ncols = COLS;
1057 if (view->resize && dif > 0) {
1058 err = view->resize(view, dif);
1059 if (err)
1060 return err;
1063 if (wresize(view->window, nlines, ncols) == ERR)
1064 return got_error_from_errno("wresize");
1065 if (replace_panel(view->panel, view->window) == ERR)
1066 return got_error_from_errno("replace_panel");
1067 wclear(view->window);
1069 view->nlines = nlines;
1070 view->ncols = ncols;
1071 view->lines = LINES;
1072 view->cols = COLS;
1074 return NULL;
1077 static const struct got_error *
1078 resize_log_view(struct tog_view *view, int increase)
1080 struct tog_log_view_state *s = &view->state.log;
1081 const struct got_error *err = NULL;
1082 int n = 0;
1084 if (s->selected_entry)
1085 n = s->selected_entry->idx + view->lines - s->selected;
1088 * Request commits to account for the increased
1089 * height so we have enough to populate the view.
1091 if (s->commits->ncommits < n) {
1092 view->nscrolled = n - s->commits->ncommits + increase + 1;
1093 err = request_log_commits(view);
1096 return err;
1099 static void
1100 view_adjust_offset(struct tog_view *view, int n)
1102 if (n == 0)
1103 return;
1105 if (view->parent && view->parent->offset) {
1106 if (view->parent->offset + n >= 0)
1107 view->parent->offset += n;
1108 else
1109 view->parent->offset = 0;
1110 } else if (view->offset) {
1111 if (view->offset - n >= 0)
1112 view->offset -= n;
1113 else
1114 view->offset = 0;
1118 static const struct got_error *
1119 view_resize_split(struct tog_view *view, int resize)
1121 const struct got_error *err = NULL;
1122 struct tog_view *v = NULL;
1124 if (view->parent)
1125 v = view->parent;
1126 else
1127 v = view;
1129 if (!v->child || !view_is_splitscreen(v->child))
1130 return NULL;
1132 v->resized = v->child->resized = resize; /* lock for resize event */
1134 if (view->mode == TOG_VIEW_SPLIT_HRZN) {
1135 if (v->child->resized_y)
1136 v->child->begin_y = v->child->resized_y;
1137 if (view->parent)
1138 v->child->begin_y -= resize;
1139 else
1140 v->child->begin_y += resize;
1141 if (v->child->begin_y < 3) {
1142 view->count = 0;
1143 v->child->begin_y = 3;
1144 } else if (v->child->begin_y > LINES - 1) {
1145 view->count = 0;
1146 v->child->begin_y = LINES - 1;
1148 v->ncols = COLS;
1149 v->child->ncols = COLS;
1150 view_adjust_offset(view, resize);
1151 err = view_init_hsplit(v, v->child->begin_y);
1152 if (err)
1153 return err;
1154 v->child->resized_y = v->child->begin_y;
1155 } else {
1156 if (v->child->resized_x)
1157 v->child->begin_x = v->child->resized_x;
1158 if (view->parent)
1159 v->child->begin_x -= resize;
1160 else
1161 v->child->begin_x += resize;
1162 if (v->child->begin_x < 11) {
1163 view->count = 0;
1164 v->child->begin_x = 11;
1165 } else if (v->child->begin_x > COLS - 1) {
1166 view->count = 0;
1167 v->child->begin_x = COLS - 1;
1169 v->child->resized_x = v->child->begin_x;
1172 v->child->mode = v->mode;
1173 v->child->nlines = v->lines - v->child->begin_y;
1174 v->child->ncols = v->cols - v->child->begin_x;
1175 v->focus_child = 1;
1177 err = view_fullscreen(v);
1178 if (err)
1179 return err;
1180 err = view_splitscreen(v->child);
1181 if (err)
1182 return err;
1184 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1185 err = offset_selection_down(v->child);
1186 if (err)
1187 return err;
1190 if (v->resize)
1191 err = v->resize(v, 0);
1192 else if (v->child->resize)
1193 err = v->child->resize(v->child, 0);
1195 v->resized = v->child->resized = 0;
1197 return err;
1200 static void
1201 view_transfer_size(struct tog_view *dst, struct tog_view *src)
1203 struct tog_view *v = src->child ? src->child : src;
1205 dst->resized_x = v->resized_x;
1206 dst->resized_y = v->resized_y;
1209 static const struct got_error *
1210 view_close_child(struct tog_view *view)
1212 const struct got_error *err = NULL;
1214 if (view->child == NULL)
1215 return NULL;
1217 err = view_close(view->child);
1218 view->child = NULL;
1219 return err;
1222 static const struct got_error *
1223 view_set_child(struct tog_view *view, struct tog_view *child)
1225 const struct got_error *err = NULL;
1227 view->child = child;
1228 child->parent = view;
1230 err = view_resize(view);
1231 if (err)
1232 return err;
1234 if (view->child->resized_x || view->child->resized_y)
1235 err = view_resize_split(view, 0);
1237 return err;
1240 static const struct got_error *view_dispatch_request(struct tog_view **,
1241 struct tog_view *, enum tog_view_type, int, int);
1243 static const struct got_error *
1244 view_request_new(struct tog_view **requested, struct tog_view *view,
1245 enum tog_view_type request)
1247 struct tog_view *new_view = NULL;
1248 const struct got_error *err;
1249 int y = 0, x = 0;
1251 *requested = NULL;
1253 if (view_is_parent_view(view) && request != TOG_VIEW_HELP)
1254 view_get_split(view, &y, &x);
1256 err = view_dispatch_request(&new_view, view, request, y, x);
1257 if (err)
1258 return err;
1260 if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN &&
1261 request != TOG_VIEW_HELP) {
1262 err = view_init_hsplit(view, y);
1263 if (err)
1264 return err;
1267 view->focussed = 0;
1268 new_view->focussed = 1;
1269 new_view->mode = view->mode;
1270 new_view->nlines = request == TOG_VIEW_HELP ?
1271 view->lines : view->lines - y;
1273 if (view_is_parent_view(view) && request != TOG_VIEW_HELP) {
1274 view_transfer_size(new_view, view);
1275 err = view_close_child(view);
1276 if (err)
1277 return err;
1278 err = view_set_child(view, new_view);
1279 if (err)
1280 return err;
1281 view->focus_child = 1;
1282 } else
1283 *requested = new_view;
1285 return NULL;
1288 static void
1289 tog_resizeterm(void)
1291 int cols, lines;
1292 struct winsize size;
1294 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1295 cols = 80; /* Default */
1296 lines = 24;
1297 } else {
1298 cols = size.ws_col;
1299 lines = size.ws_row;
1301 resize_term(lines, cols);
1304 static const struct got_error *
1305 view_search_start(struct tog_view *view, int fast_refresh)
1307 const struct got_error *err = NULL;
1308 struct tog_view *v = view;
1309 char pattern[1024];
1310 int ret;
1312 if (view->search_started) {
1313 regfree(&view->regex);
1314 view->searching = 0;
1315 memset(&view->regmatch, 0, sizeof(view->regmatch));
1317 view->search_started = 0;
1319 if (view->nlines < 1)
1320 return NULL;
1322 if (view_is_hsplit_top(view))
1323 v = view->child;
1324 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1325 v = view->parent;
1327 mvwaddstr(v->window, v->nlines - 1, 0, "/");
1328 wclrtoeol(v->window);
1330 nodelay(v->window, FALSE); /* block for search term input */
1331 nocbreak();
1332 echo();
1333 ret = wgetnstr(v->window, pattern, sizeof(pattern));
1334 wrefresh(v->window);
1335 cbreak();
1336 noecho();
1337 nodelay(v->window, TRUE);
1338 if (!fast_refresh && !using_mock_io)
1339 halfdelay(10);
1340 if (ret == ERR)
1341 return NULL;
1343 if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1344 err = view->search_start(view);
1345 if (err) {
1346 regfree(&view->regex);
1347 return err;
1349 view->search_started = 1;
1350 view->searching = TOG_SEARCH_FORWARD;
1351 view->search_next_done = 0;
1352 view->search_next(view);
1355 return NULL;
1358 /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1359 static const struct got_error *
1360 switch_split(struct tog_view *view)
1362 const struct got_error *err = NULL;
1363 struct tog_view *v = NULL;
1365 if (view->parent)
1366 v = view->parent;
1367 else
1368 v = view;
1370 if (v->mode == TOG_VIEW_SPLIT_HRZN)
1371 v->mode = TOG_VIEW_SPLIT_VERT;
1372 else
1373 v->mode = TOG_VIEW_SPLIT_HRZN;
1375 if (!v->child)
1376 return NULL;
1377 else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1378 v->mode = TOG_VIEW_SPLIT_NONE;
1380 view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1381 if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1382 v->child->begin_y = v->child->resized_y;
1383 else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1384 v->child->begin_x = v->child->resized_x;
1387 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1388 v->ncols = COLS;
1389 v->child->ncols = COLS;
1390 v->child->nscrolled = LINES - v->child->nlines;
1392 err = view_init_hsplit(v, v->child->begin_y);
1393 if (err)
1394 return err;
1396 v->child->mode = v->mode;
1397 v->child->nlines = v->lines - v->child->begin_y;
1398 v->focus_child = 1;
1400 err = view_fullscreen(v);
1401 if (err)
1402 return err;
1403 err = view_splitscreen(v->child);
1404 if (err)
1405 return err;
1407 if (v->mode == TOG_VIEW_SPLIT_NONE)
1408 v->mode = TOG_VIEW_SPLIT_VERT;
1409 if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1410 err = offset_selection_down(v);
1411 if (err)
1412 return err;
1413 err = offset_selection_down(v->child);
1414 if (err)
1415 return err;
1416 } else {
1417 offset_selection_up(v);
1418 offset_selection_up(v->child);
1420 if (v->resize)
1421 err = v->resize(v, 0);
1422 else if (v->child->resize)
1423 err = v->child->resize(v->child, 0);
1425 return err;
1429 * Strip trailing whitespace from str starting at byte *n;
1430 * if *n < 0, use strlen(str). Return new str length in *n.
1432 static void
1433 strip_trailing_ws(char *str, int *n)
1435 size_t x = *n;
1437 if (str == NULL || *str == '\0')
1438 return;
1440 if (x < 0)
1441 x = strlen(str);
1443 while (x-- > 0 && isspace((unsigned char)str[x]))
1444 str[x] = '\0';
1446 *n = x + 1;
1450 * Extract visible substring of line y from the curses screen
1451 * and strip trailing whitespace. If vline is set, overwrite
1452 * line[vline] with '|' because the ACS_VLINE character is
1453 * written out as 'x'. Write the line to file f.
1455 static const struct got_error *
1456 view_write_line(FILE *f, int y, int vline)
1458 char line[COLS * MB_LEN_MAX]; /* allow for multibyte chars */
1459 int r, w;
1461 r = mvwinnstr(curscr, y, 0, line, sizeof(line));
1462 if (r == ERR)
1463 return got_error_fmt(GOT_ERR_RANGE,
1464 "failed to extract line %d", y);
1467 * In some views, lines are padded with blanks to COLS width.
1468 * Strip them so we can diff without the -b flag when testing.
1470 strip_trailing_ws(line, &r);
1472 if (vline > 0)
1473 line[vline] = '|';
1475 w = fprintf(f, "%s\n", line);
1476 if (w != r + 1) /* \n */
1477 return got_ferror(f, GOT_ERR_IO);
1479 return NULL;
1483 * Capture the visible curses screen by writing each line to the
1484 * file at the path set via the TOG_SCR_DUMP environment variable.
1486 static const struct got_error *
1487 screendump(struct tog_view *view)
1489 const struct got_error *err;
1490 int i;
1492 err = got_opentemp_truncate(tog_io.sdump);
1493 if (err)
1494 return err;
1496 if ((view->child && view->child->begin_x) ||
1497 (view->parent && view->begin_x)) {
1498 int ncols = view->child ? view->ncols : view->parent->ncols;
1500 /* vertical splitscreen */
1501 for (i = 0; i < view->nlines; ++i) {
1502 err = view_write_line(tog_io.sdump, i, ncols - 1);
1503 if (err)
1504 goto done;
1506 } else {
1507 int hline = 0;
1509 /* fullscreen or horizontal splitscreen */
1510 if ((view->child && view->child->begin_y) ||
1511 (view->parent && view->begin_y)) /* hsplit */
1512 hline = view->child ?
1513 view->child->begin_y : view->begin_y;
1515 for (i = 0; i < view->lines; i++) {
1516 if (hline && i == hline - 1) {
1517 int c;
1519 /* ACS_HLINE writes out as 'q', overwrite it */
1520 for (c = 0; c < view->cols; ++c)
1521 fputc('-', tog_io.sdump);
1522 fputc('\n', tog_io.sdump);
1523 continue;
1526 err = view_write_line(tog_io.sdump, i, 0);
1527 if (err)
1528 goto done;
1532 done:
1533 return err;
1537 * Compute view->count from numeric input. Assign total to view->count and
1538 * return first non-numeric key entered.
1540 static int
1541 get_compound_key(struct tog_view *view, int c)
1543 struct tog_view *v = view;
1544 int x, n = 0;
1546 if (view_is_hsplit_top(view))
1547 v = view->child;
1548 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1549 v = view->parent;
1551 view->count = 0;
1552 cbreak(); /* block for input */
1553 nodelay(view->window, FALSE);
1554 wmove(v->window, v->nlines - 1, 0);
1555 wclrtoeol(v->window);
1556 waddch(v->window, ':');
1558 do {
1559 x = getcurx(v->window);
1560 if (x != ERR && x < view->ncols) {
1561 waddch(v->window, c);
1562 wrefresh(v->window);
1566 * Don't overflow. Max valid request should be the greatest
1567 * between the longest and total lines; cap at 10 million.
1569 if (n >= 9999999)
1570 n = 9999999;
1571 else
1572 n = n * 10 + (c - '0');
1573 } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1575 if (c == 'G' || c == 'g') { /* nG key map */
1576 view->gline = view->hiline = n;
1577 n = 0;
1578 c = 0;
1581 /* Massage excessive or inapplicable values at the input handler. */
1582 view->count = n;
1584 return c;
1587 static void
1588 action_report(struct tog_view *view)
1590 struct tog_view *v = view;
1592 if (view_is_hsplit_top(view))
1593 v = view->child;
1594 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1595 v = view->parent;
1597 wmove(v->window, v->nlines - 1, 0);
1598 wclrtoeol(v->window);
1599 wprintw(v->window, ":%s", view->action);
1600 wrefresh(v->window);
1603 * Clear action status report. Only clear in blame view
1604 * once annotating is complete, otherwise it's too fast.
1606 if (view->type == TOG_VIEW_BLAME) {
1607 if (view->state.blame.blame_complete)
1608 view->action = NULL;
1609 } else
1610 view->action = NULL;
1614 * Read the next line from the test script and assign
1615 * key instruction to *ch. If at EOF, set the *done flag.
1617 static const struct got_error *
1618 tog_read_script_key(FILE *script, struct tog_view *view, int *ch, int *done)
1620 const struct got_error *err = NULL;
1621 char *line = NULL;
1622 size_t linesz = 0;
1624 if (view->count && --view->count) {
1625 *ch = view->ch;
1626 return NULL;
1627 } else
1628 *ch = -1;
1630 if (getline(&line, &linesz, script) == -1) {
1631 if (feof(script)) {
1632 *done = 1;
1633 goto done;
1634 } else {
1635 err = got_ferror(script, GOT_ERR_IO);
1636 goto done;
1640 if (strncasecmp(line, "WAIT_FOR_UI", 11) == 0)
1641 tog_io.wait_for_ui = 1;
1642 else if (strncasecmp(line, "KEY_ENTER", 9) == 0)
1643 *ch = KEY_ENTER;
1644 else if (strncasecmp(line, "KEY_RIGHT", 9) == 0)
1645 *ch = KEY_RIGHT;
1646 else if (strncasecmp(line, "KEY_LEFT", 8) == 0)
1647 *ch = KEY_LEFT;
1648 else if (strncasecmp(line, "KEY_DOWN", 8) == 0)
1649 *ch = KEY_DOWN;
1650 else if (strncasecmp(line, "KEY_UP", 6) == 0)
1651 *ch = KEY_UP;
1652 else if (strncasecmp(line, "TAB", 3) == 0)
1653 *ch = '\t';
1654 else if (strncasecmp(line, "SCREENDUMP", 10) == 0)
1655 *ch = TOG_KEY_SCRDUMP;
1656 else if (isdigit((unsigned char)*line)) {
1657 char *t = line;
1659 while (isdigit((unsigned char)*t))
1660 ++t;
1661 view->ch = *ch = *t;
1662 *t = '\0';
1663 /* ignore error, view->count is 0 if instruction is invalid */
1664 view->count = strtonum(line, 0, INT_MAX, NULL);
1665 } else
1666 *ch = *line;
1668 done:
1669 free(line);
1670 return err;
1673 static const struct got_error *
1674 view_input(struct tog_view **new, int *done, struct tog_view *view,
1675 struct tog_view_list_head *views, int fast_refresh)
1677 const struct got_error *err = NULL;
1678 struct tog_view *v;
1679 int ch, errcode;
1681 *new = NULL;
1683 if (view->action)
1684 action_report(view);
1686 /* Clear "no matches" indicator. */
1687 if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1688 view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1689 view->search_next_done = TOG_SEARCH_HAVE_MORE;
1690 view->count = 0;
1693 if (view->searching && !view->search_next_done) {
1694 errcode = pthread_mutex_unlock(&tog_mutex);
1695 if (errcode)
1696 return got_error_set_errno(errcode,
1697 "pthread_mutex_unlock");
1698 sched_yield();
1699 errcode = pthread_mutex_lock(&tog_mutex);
1700 if (errcode)
1701 return got_error_set_errno(errcode,
1702 "pthread_mutex_lock");
1703 view->search_next(view);
1704 return NULL;
1707 /* Allow threads to make progress while we are waiting for input. */
1708 errcode = pthread_mutex_unlock(&tog_mutex);
1709 if (errcode)
1710 return got_error_set_errno(errcode, "pthread_mutex_unlock");
1712 if (using_mock_io) {
1713 err = tog_read_script_key(tog_io.f, view, &ch, done);
1714 if (err) {
1715 errcode = pthread_mutex_lock(&tog_mutex);
1716 return err;
1718 } else if (view->count && --view->count) {
1719 cbreak();
1720 nodelay(view->window, TRUE);
1721 ch = wgetch(view->window);
1722 /* let C-g or backspace abort unfinished count */
1723 if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1724 view->count = 0;
1725 else
1726 ch = view->ch;
1727 } else {
1728 ch = wgetch(view->window);
1729 if (ch >= '1' && ch <= '9')
1730 view->ch = ch = get_compound_key(view, ch);
1732 if (view->hiline && ch != ERR && ch != 0)
1733 view->hiline = 0; /* key pressed, clear line highlight */
1734 nodelay(view->window, TRUE);
1735 errcode = pthread_mutex_lock(&tog_mutex);
1736 if (errcode)
1737 return got_error_set_errno(errcode, "pthread_mutex_lock");
1739 if (tog_sigwinch_received || tog_sigcont_received) {
1740 tog_resizeterm();
1741 tog_sigwinch_received = 0;
1742 tog_sigcont_received = 0;
1743 TAILQ_FOREACH(v, views, entry) {
1744 err = view_resize(v);
1745 if (err)
1746 return err;
1747 err = v->input(new, v, KEY_RESIZE);
1748 if (err)
1749 return err;
1750 if (v->child) {
1751 err = view_resize(v->child);
1752 if (err)
1753 return err;
1754 err = v->child->input(new, v->child,
1755 KEY_RESIZE);
1756 if (err)
1757 return err;
1758 if (v->child->resized_x || v->child->resized_y) {
1759 err = view_resize_split(v, 0);
1760 if (err)
1761 return err;
1767 switch (ch) {
1768 case '?':
1769 case 'H':
1770 case KEY_F(1):
1771 if (view->type == TOG_VIEW_HELP)
1772 err = view->reset(view);
1773 else
1774 err = view_request_new(new, view, TOG_VIEW_HELP);
1775 break;
1776 case '\t':
1777 view->count = 0;
1778 if (view->child) {
1779 view->focussed = 0;
1780 view->child->focussed = 1;
1781 view->focus_child = 1;
1782 } else if (view->parent) {
1783 view->focussed = 0;
1784 view->parent->focussed = 1;
1785 view->parent->focus_child = 0;
1786 if (!view_is_splitscreen(view)) {
1787 if (view->parent->resize) {
1788 err = view->parent->resize(view->parent,
1789 0);
1790 if (err)
1791 return err;
1793 offset_selection_up(view->parent);
1794 err = view_fullscreen(view->parent);
1795 if (err)
1796 return err;
1799 break;
1800 case 'q':
1801 if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1802 if (view->parent->resize) {
1803 /* might need more commits to fill fullscreen */
1804 err = view->parent->resize(view->parent, 0);
1805 if (err)
1806 break;
1808 offset_selection_up(view->parent);
1810 err = view->input(new, view, ch);
1811 view->dying = 1;
1812 break;
1813 case 'Q':
1814 *done = 1;
1815 break;
1816 case 'F':
1817 view->count = 0;
1818 if (view_is_parent_view(view)) {
1819 if (view->child == NULL)
1820 break;
1821 if (view_is_splitscreen(view->child)) {
1822 view->focussed = 0;
1823 view->child->focussed = 1;
1824 err = view_fullscreen(view->child);
1825 } else {
1826 err = view_splitscreen(view->child);
1827 if (!err)
1828 err = view_resize_split(view, 0);
1830 if (err)
1831 break;
1832 err = view->child->input(new, view->child,
1833 KEY_RESIZE);
1834 } else {
1835 if (view_is_splitscreen(view)) {
1836 view->parent->focussed = 0;
1837 view->focussed = 1;
1838 err = view_fullscreen(view);
1839 } else {
1840 err = view_splitscreen(view);
1841 if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1842 err = view_resize(view->parent);
1843 if (!err)
1844 err = view_resize_split(view, 0);
1846 if (err)
1847 break;
1848 err = view->input(new, view, KEY_RESIZE);
1850 if (err)
1851 break;
1852 if (view->resize) {
1853 err = view->resize(view, 0);
1854 if (err)
1855 break;
1857 if (view->parent) {
1858 if (view->parent->resize) {
1859 err = view->parent->resize(view->parent, 0);
1860 if (err != NULL)
1861 break;
1863 err = offset_selection_down(view->parent);
1864 if (err != NULL)
1865 break;
1867 err = offset_selection_down(view);
1868 break;
1869 case 'S':
1870 view->count = 0;
1871 err = switch_split(view);
1872 break;
1873 case '-':
1874 err = view_resize_split(view, -1);
1875 break;
1876 case '+':
1877 err = view_resize_split(view, 1);
1878 break;
1879 case KEY_RESIZE:
1880 break;
1881 case '/':
1882 view->count = 0;
1883 if (view->search_start)
1884 view_search_start(view, fast_refresh);
1885 else
1886 err = view->input(new, view, ch);
1887 break;
1888 case 'N':
1889 case 'n':
1890 if (view->search_started && view->search_next) {
1891 view->searching = (ch == 'n' ?
1892 TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1893 view->search_next_done = 0;
1894 view->search_next(view);
1895 } else
1896 err = view->input(new, view, ch);
1897 break;
1898 case 'A':
1899 if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS) {
1900 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1901 view->action = "Patience diff algorithm";
1902 } else {
1903 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1904 view->action = "Myers diff algorithm";
1906 TAILQ_FOREACH(v, views, entry) {
1907 if (v->reset) {
1908 err = v->reset(v);
1909 if (err)
1910 return err;
1912 if (v->child && v->child->reset) {
1913 err = v->child->reset(v->child);
1914 if (err)
1915 return err;
1918 break;
1919 case TOG_KEY_SCRDUMP:
1920 err = screendump(view);
1921 break;
1922 default:
1923 err = view->input(new, view, ch);
1924 break;
1927 return err;
1930 static int
1931 view_needs_focus_indication(struct tog_view *view)
1933 if (view_is_parent_view(view)) {
1934 if (view->child == NULL || view->child->focussed)
1935 return 0;
1936 if (!view_is_splitscreen(view->child))
1937 return 0;
1938 } else if (!view_is_splitscreen(view))
1939 return 0;
1941 return view->focussed;
1944 static const struct got_error *
1945 tog_io_close(void)
1947 const struct got_error *err = NULL;
1949 if (tog_io.cin && fclose(tog_io.cin) == EOF)
1950 err = got_ferror(tog_io.cin, GOT_ERR_IO);
1951 if (tog_io.cout && fclose(tog_io.cout) == EOF && err == NULL)
1952 err = got_ferror(tog_io.cout, GOT_ERR_IO);
1953 if (tog_io.f && fclose(tog_io.f) == EOF && err == NULL)
1954 err = got_ferror(tog_io.f, GOT_ERR_IO);
1955 if (tog_io.sdump && fclose(tog_io.sdump) == EOF && err == NULL)
1956 err = got_ferror(tog_io.sdump, GOT_ERR_IO);
1958 return err;
1961 static const struct got_error *
1962 view_loop(struct tog_view *view)
1964 const struct got_error *err = NULL;
1965 struct tog_view_list_head views;
1966 struct tog_view *new_view;
1967 char *mode;
1968 int fast_refresh = 10;
1969 int done = 0, errcode;
1971 mode = getenv("TOG_VIEW_SPLIT_MODE");
1972 if (!mode || !(*mode == 'h' || *mode == 'H'))
1973 view->mode = TOG_VIEW_SPLIT_VERT;
1974 else
1975 view->mode = TOG_VIEW_SPLIT_HRZN;
1977 errcode = pthread_mutex_lock(&tog_mutex);
1978 if (errcode)
1979 return got_error_set_errno(errcode, "pthread_mutex_lock");
1981 TAILQ_INIT(&views);
1982 TAILQ_INSERT_HEAD(&views, view, entry);
1984 view->focussed = 1;
1985 err = view->show(view);
1986 if (err)
1987 return err;
1988 update_panels();
1989 doupdate();
1990 while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1991 !tog_fatal_signal_received()) {
1992 /* Refresh fast during initialization, then become slower. */
1993 if (fast_refresh && --fast_refresh == 0 && !using_mock_io)
1994 halfdelay(10); /* switch to once per second */
1996 err = view_input(&new_view, &done, view, &views, fast_refresh);
1997 if (err)
1998 break;
2000 if (view->dying && view == TAILQ_FIRST(&views) &&
2001 TAILQ_NEXT(view, entry) == NULL)
2002 done = 1;
2003 if (done) {
2004 struct tog_view *v;
2007 * When we quit, scroll the screen up a single line
2008 * so we don't lose any information.
2010 TAILQ_FOREACH(v, &views, entry) {
2011 wmove(v->window, 0, 0);
2012 wdeleteln(v->window);
2013 wnoutrefresh(v->window);
2014 if (v->child && !view_is_fullscreen(v)) {
2015 wmove(v->child->window, 0, 0);
2016 wdeleteln(v->child->window);
2017 wnoutrefresh(v->child->window);
2020 doupdate();
2023 if (view->dying) {
2024 struct tog_view *v, *prev = NULL;
2026 if (view_is_parent_view(view))
2027 prev = TAILQ_PREV(view, tog_view_list_head,
2028 entry);
2029 else if (view->parent)
2030 prev = view->parent;
2032 if (view->parent) {
2033 view->parent->child = NULL;
2034 view->parent->focus_child = 0;
2035 /* Restore fullscreen line height. */
2036 view->parent->nlines = view->parent->lines;
2037 err = view_resize(view->parent);
2038 if (err)
2039 break;
2040 /* Make resized splits persist. */
2041 view_transfer_size(view->parent, view);
2042 } else
2043 TAILQ_REMOVE(&views, view, entry);
2045 err = view_close(view);
2046 if (err)
2047 goto done;
2049 view = NULL;
2050 TAILQ_FOREACH(v, &views, entry) {
2051 if (v->focussed)
2052 break;
2054 if (view == NULL && new_view == NULL) {
2055 /* No view has focus. Try to pick one. */
2056 if (prev)
2057 view = prev;
2058 else if (!TAILQ_EMPTY(&views)) {
2059 view = TAILQ_LAST(&views,
2060 tog_view_list_head);
2062 if (view) {
2063 if (view->focus_child) {
2064 view->child->focussed = 1;
2065 view = view->child;
2066 } else
2067 view->focussed = 1;
2071 if (new_view) {
2072 struct tog_view *v, *t;
2073 /* Only allow one parent view per type. */
2074 TAILQ_FOREACH_SAFE(v, &views, entry, t) {
2075 if (v->type != new_view->type)
2076 continue;
2077 TAILQ_REMOVE(&views, v, entry);
2078 err = view_close(v);
2079 if (err)
2080 goto done;
2081 break;
2083 TAILQ_INSERT_TAIL(&views, new_view, entry);
2084 view = new_view;
2086 if (view && !done) {
2087 if (view_is_parent_view(view)) {
2088 if (view->child && view->child->focussed)
2089 view = view->child;
2090 } else {
2091 if (view->parent && view->parent->focussed)
2092 view = view->parent;
2094 show_panel(view->panel);
2095 if (view->child && view_is_splitscreen(view->child))
2096 show_panel(view->child->panel);
2097 if (view->parent && view_is_splitscreen(view)) {
2098 err = view->parent->show(view->parent);
2099 if (err)
2100 goto done;
2102 err = view->show(view);
2103 if (err)
2104 goto done;
2105 if (view->child) {
2106 err = view->child->show(view->child);
2107 if (err)
2108 goto done;
2110 update_panels();
2111 doupdate();
2114 done:
2115 while (!TAILQ_EMPTY(&views)) {
2116 const struct got_error *close_err;
2117 view = TAILQ_FIRST(&views);
2118 TAILQ_REMOVE(&views, view, entry);
2119 close_err = view_close(view);
2120 if (close_err && err == NULL)
2121 err = close_err;
2124 errcode = pthread_mutex_unlock(&tog_mutex);
2125 if (errcode && err == NULL)
2126 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
2128 return err;
2131 __dead static void
2132 usage_log(void)
2134 endwin();
2135 fprintf(stderr,
2136 "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
2137 getprogname());
2138 exit(1);
2141 /* Create newly allocated wide-character string equivalent to a byte string. */
2142 static const struct got_error *
2143 mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
2145 char *vis = NULL;
2146 const struct got_error *err = NULL;
2148 *ws = NULL;
2149 *wlen = mbstowcs(NULL, s, 0);
2150 if (*wlen == (size_t)-1) {
2151 int vislen;
2152 if (errno != EILSEQ)
2153 return got_error_from_errno("mbstowcs");
2155 /* byte string invalid in current encoding; try to "fix" it */
2156 err = got_mbsavis(&vis, &vislen, s);
2157 if (err)
2158 return err;
2159 *wlen = mbstowcs(NULL, vis, 0);
2160 if (*wlen == (size_t)-1) {
2161 err = got_error_from_errno("mbstowcs"); /* give up */
2162 goto done;
2166 *ws = calloc(*wlen + 1, sizeof(**ws));
2167 if (*ws == NULL) {
2168 err = got_error_from_errno("calloc");
2169 goto done;
2172 if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
2173 err = got_error_from_errno("mbstowcs");
2174 done:
2175 free(vis);
2176 if (err) {
2177 free(*ws);
2178 *ws = NULL;
2179 *wlen = 0;
2181 return err;
2184 static const struct got_error *
2185 expand_tab(char **ptr, const char *src)
2187 char *dst;
2188 size_t len, n, idx = 0, sz = 0;
2190 *ptr = NULL;
2191 n = len = strlen(src);
2192 dst = malloc(n + 1);
2193 if (dst == NULL)
2194 return got_error_from_errno("malloc");
2196 while (idx < len && src[idx]) {
2197 const char c = src[idx];
2199 if (c == '\t') {
2200 size_t nb = TABSIZE - sz % TABSIZE;
2201 char *p;
2203 p = realloc(dst, n + nb);
2204 if (p == NULL) {
2205 free(dst);
2206 return got_error_from_errno("realloc");
2209 dst = p;
2210 n += nb;
2211 memset(dst + sz, ' ', nb);
2212 sz += nb;
2213 } else
2214 dst[sz++] = src[idx];
2215 ++idx;
2218 dst[sz] = '\0';
2219 *ptr = dst;
2220 return NULL;
2224 * Advance at most n columns from wline starting at offset off.
2225 * Return the index to the first character after the span operation.
2226 * Return the combined column width of all spanned wide character in
2227 * *rcol.
2229 static int
2230 span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
2232 int width, i, cols = 0;
2234 if (n == 0) {
2235 *rcol = cols;
2236 return off;
2239 for (i = off; wline[i] != L'\0'; ++i) {
2240 if (wline[i] == L'\t')
2241 width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
2242 else
2243 width = wcwidth(wline[i]);
2245 if (width == -1) {
2246 width = 1;
2247 wline[i] = L'.';
2250 if (cols + width > n)
2251 break;
2252 cols += width;
2255 *rcol = cols;
2256 return i;
2260 * Format a line for display, ensuring that it won't overflow a width limit.
2261 * With scrolling, the width returned refers to the scrolled version of the
2262 * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
2264 static const struct got_error *
2265 format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
2266 const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
2268 const struct got_error *err = NULL;
2269 int cols;
2270 wchar_t *wline = NULL;
2271 char *exstr = NULL;
2272 size_t wlen;
2273 int i, scrollx;
2275 *wlinep = NULL;
2276 *widthp = 0;
2278 if (expand) {
2279 err = expand_tab(&exstr, line);
2280 if (err)
2281 return err;
2284 err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2285 free(exstr);
2286 if (err)
2287 return err;
2289 scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2291 if (wlen > 0 && wline[wlen - 1] == L'\n') {
2292 wline[wlen - 1] = L'\0';
2293 wlen--;
2295 if (wlen > 0 && wline[wlen - 1] == L'\r') {
2296 wline[wlen - 1] = L'\0';
2297 wlen--;
2300 i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2301 wline[i] = L'\0';
2303 if (widthp)
2304 *widthp = cols;
2305 if (scrollxp)
2306 *scrollxp = scrollx;
2307 if (err)
2308 free(wline);
2309 else
2310 *wlinep = wline;
2311 return err;
2314 static const struct got_error*
2315 build_refs_str(char **refs_str, struct got_reflist_head *refs,
2316 struct got_object_id *id, struct got_repository *repo)
2318 static const struct got_error *err = NULL;
2319 struct got_reflist_entry *re;
2320 char *s;
2321 const char *name;
2323 *refs_str = NULL;
2325 TAILQ_FOREACH(re, refs, entry) {
2326 struct got_tag_object *tag = NULL;
2327 struct got_object_id *ref_id;
2328 int cmp;
2330 name = got_ref_get_name(re->ref);
2331 if (strcmp(name, GOT_REF_HEAD) == 0)
2332 continue;
2333 if (strncmp(name, "refs/", 5) == 0)
2334 name += 5;
2335 if (strncmp(name, "got/", 4) == 0 &&
2336 strncmp(name, "got/backup/", 11) != 0)
2337 continue;
2338 if (strncmp(name, "heads/", 6) == 0)
2339 name += 6;
2340 if (strncmp(name, "remotes/", 8) == 0) {
2341 name += 8;
2342 s = strstr(name, "/" GOT_REF_HEAD);
2343 if (s != NULL && s[strlen(s)] == '\0')
2344 continue;
2346 err = got_ref_resolve(&ref_id, repo, re->ref);
2347 if (err)
2348 break;
2349 if (strncmp(name, "tags/", 5) == 0) {
2350 err = got_object_open_as_tag(&tag, repo, ref_id);
2351 if (err) {
2352 if (err->code != GOT_ERR_OBJ_TYPE) {
2353 free(ref_id);
2354 break;
2356 /* Ref points at something other than a tag. */
2357 err = NULL;
2358 tag = NULL;
2361 cmp = got_object_id_cmp(tag ?
2362 got_object_tag_get_object_id(tag) : ref_id, id);
2363 free(ref_id);
2364 if (tag)
2365 got_object_tag_close(tag);
2366 if (cmp != 0)
2367 continue;
2368 s = *refs_str;
2369 if (asprintf(refs_str, "%s%s%s", s ? s : "",
2370 s ? ", " : "", name) == -1) {
2371 err = got_error_from_errno("asprintf");
2372 free(s);
2373 *refs_str = NULL;
2374 break;
2376 free(s);
2379 return err;
2382 static const struct got_error *
2383 format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2384 int col_tab_align)
2386 char *smallerthan;
2388 smallerthan = strchr(author, '<');
2389 if (smallerthan && smallerthan[1] != '\0')
2390 author = smallerthan + 1;
2391 author[strcspn(author, "@>")] = '\0';
2392 return format_line(wauthor, author_width, NULL, author, 0, limit,
2393 col_tab_align, 0);
2396 static const struct got_error *
2397 draw_commit(struct tog_view *view, struct got_commit_object *commit,
2398 struct got_object_id *id, const size_t date_display_cols,
2399 int author_display_cols)
2401 struct tog_log_view_state *s = &view->state.log;
2402 const struct got_error *err = NULL;
2403 char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2404 char *refs_str = NULL;
2405 char *logmsg0 = NULL, *logmsg = NULL;
2406 char *author = NULL;
2407 wchar_t *wlogmsg = NULL, *wauthor = NULL;
2408 int author_width, logmsg_width;
2409 size_t wrefstr_len = 0;
2410 char *newline, *line = NULL;
2411 int col, limit, scrollx;
2412 const int avail = view->ncols;
2413 struct tm tm;
2414 time_t committer_time;
2415 struct tog_color *tc;
2416 struct got_reflist_head *refs;
2418 committer_time = got_object_commit_get_committer_time(commit);
2419 if (gmtime_r(&committer_time, &tm) == NULL)
2420 return got_error_from_errno("gmtime_r");
2421 if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2422 return got_error(GOT_ERR_NO_SPACE);
2424 if (avail <= date_display_cols)
2425 limit = MIN(sizeof(datebuf) - 1, avail);
2426 else
2427 limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2428 tc = get_color(&s->colors, TOG_COLOR_DATE);
2429 if (tc)
2430 wattr_on(view->window,
2431 COLOR_PAIR(tc->colorpair), NULL);
2432 waddnstr(view->window, datebuf, limit);
2433 if (tc)
2434 wattr_off(view->window,
2435 COLOR_PAIR(tc->colorpair), NULL);
2436 col = limit;
2437 if (col > avail)
2438 goto done;
2440 if (avail >= 120) {
2441 char *id_str;
2442 err = got_object_id_str(&id_str, id);
2443 if (err)
2444 goto done;
2445 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2446 if (tc)
2447 wattr_on(view->window,
2448 COLOR_PAIR(tc->colorpair), NULL);
2449 wprintw(view->window, "%.8s ", id_str);
2450 if (tc)
2451 wattr_off(view->window,
2452 COLOR_PAIR(tc->colorpair), NULL);
2453 free(id_str);
2454 col += 9;
2455 if (col > avail)
2456 goto done;
2459 if (s->use_committer)
2460 author = strdup(got_object_commit_get_committer(commit));
2461 else
2462 author = strdup(got_object_commit_get_author(commit));
2463 if (author == NULL) {
2464 err = got_error_from_errno("strdup");
2465 goto done;
2467 err = format_author(&wauthor, &author_width, author, avail - col, col);
2468 if (err)
2469 goto done;
2470 tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2471 if (tc)
2472 wattr_on(view->window,
2473 COLOR_PAIR(tc->colorpair), NULL);
2474 waddwstr(view->window, wauthor);
2475 col += author_width;
2476 while (col < avail && author_width < author_display_cols + 2) {
2477 waddch(view->window, ' ');
2478 col++;
2479 author_width++;
2481 if (tc)
2482 wattr_off(view->window,
2483 COLOR_PAIR(tc->colorpair), NULL);
2484 if (col > avail)
2485 goto done;
2487 err = got_object_commit_get_logmsg(&logmsg0, commit);
2488 if (err)
2489 goto done;
2490 logmsg = logmsg0;
2491 while (*logmsg == '\n')
2492 logmsg++;
2493 newline = strchr(logmsg, '\n');
2494 if (newline)
2495 *newline = '\0';
2497 /* Prepend reference labels to log message if possible .*/
2498 refs = got_reflist_object_id_map_lookup(tog_refs_idmap, id);
2499 if (refs)
2500 err = build_refs_str(&refs_str, refs, id, s->repo);
2501 if (err)
2502 goto done;
2503 if (refs_str) {
2504 char *newlogmsg;
2505 wchar_t *ws;
2508 * The length of this wide-char sub-string will be
2509 * needed later for colorization.
2511 err = mbs2ws(&ws, &wrefstr_len, refs_str);
2512 if (err)
2513 goto done;
2514 free(ws);
2516 wrefstr_len += 2; /* account for '[' and ']' */
2518 if (asprintf(&newlogmsg, "[%s] %s", refs_str, logmsg) == -1) {
2519 err = got_error_from_errno("asprintf");
2520 goto done;
2523 free(logmsg0);
2524 logmsg0 = newlogmsg;
2525 logmsg = logmsg0;
2528 limit = avail - col;
2529 if (view->child && !view_is_hsplit_top(view) && limit > 0)
2530 limit--; /* for the border */
2531 err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2532 limit, col, 1);
2533 if (err)
2534 goto done;
2535 if (wrefstr_len > 0 && scrollx < wrefstr_len) {
2536 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2537 if (tc)
2538 wattr_on(view->window,
2539 COLOR_PAIR(tc->colorpair), NULL);
2540 waddnwstr(view->window, &wlogmsg[scrollx],
2541 wrefstr_len - scrollx);
2542 if (tc)
2543 wattr_off(view->window,
2544 COLOR_PAIR(tc->colorpair), NULL);
2545 waddwstr(view->window, &wlogmsg[wrefstr_len]);
2546 } else
2547 waddwstr(view->window, &wlogmsg[scrollx]);
2548 col += MAX(logmsg_width, 0);
2549 while (col < avail) {
2550 waddch(view->window, ' ');
2551 col++;
2553 done:
2554 free(logmsg0);
2555 free(wlogmsg);
2556 free(refs_str);
2557 free(author);
2558 free(wauthor);
2559 free(line);
2560 return err;
2563 static struct commit_queue_entry *
2564 alloc_commit_queue_entry(struct got_commit_object *commit,
2565 struct got_object_id *id)
2567 struct commit_queue_entry *entry;
2568 struct got_object_id *dup;
2570 entry = calloc(1, sizeof(*entry));
2571 if (entry == NULL)
2572 return NULL;
2574 dup = got_object_id_dup(id);
2575 if (dup == NULL) {
2576 free(entry);
2577 return NULL;
2580 entry->id = dup;
2581 entry->commit = commit;
2582 return entry;
2585 static void
2586 pop_commit(struct commit_queue *commits)
2588 struct commit_queue_entry *entry;
2590 entry = TAILQ_FIRST(&commits->head);
2591 TAILQ_REMOVE(&commits->head, entry, entry);
2592 got_object_commit_close(entry->commit);
2593 commits->ncommits--;
2594 free(entry->id);
2595 free(entry);
2598 static void
2599 free_commits(struct commit_queue *commits)
2601 while (!TAILQ_EMPTY(&commits->head))
2602 pop_commit(commits);
2605 static const struct got_error *
2606 match_commit(int *have_match, struct got_object_id *id,
2607 struct got_commit_object *commit, regex_t *regex)
2609 const struct got_error *err = NULL;
2610 regmatch_t regmatch;
2611 char *id_str = NULL, *logmsg = NULL;
2613 *have_match = 0;
2615 err = got_object_id_str(&id_str, id);
2616 if (err)
2617 return err;
2619 err = got_object_commit_get_logmsg(&logmsg, commit);
2620 if (err)
2621 goto done;
2623 if (regexec(regex, got_object_commit_get_author(commit), 1,
2624 &regmatch, 0) == 0 ||
2625 regexec(regex, got_object_commit_get_committer(commit), 1,
2626 &regmatch, 0) == 0 ||
2627 regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2628 regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2629 *have_match = 1;
2630 done:
2631 free(id_str);
2632 free(logmsg);
2633 return err;
2636 static const struct got_error *
2637 queue_commits(struct tog_log_thread_args *a)
2639 const struct got_error *err = NULL;
2642 * We keep all commits open throughout the lifetime of the log
2643 * view in order to avoid having to re-fetch commits from disk
2644 * while updating the display.
2646 do {
2647 struct got_object_id id;
2648 struct got_commit_object *commit;
2649 struct commit_queue_entry *entry;
2650 int limit_match = 0;
2651 int errcode;
2653 err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2654 NULL, NULL);
2655 if (err)
2656 break;
2658 err = got_object_open_as_commit(&commit, a->repo, &id);
2659 if (err)
2660 break;
2661 entry = alloc_commit_queue_entry(commit, &id);
2662 if (entry == NULL) {
2663 err = got_error_from_errno("alloc_commit_queue_entry");
2664 break;
2667 errcode = pthread_mutex_lock(&tog_mutex);
2668 if (errcode) {
2669 err = got_error_set_errno(errcode,
2670 "pthread_mutex_lock");
2671 break;
2674 entry->idx = a->real_commits->ncommits;
2675 TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2676 a->real_commits->ncommits++;
2678 if (*a->limiting) {
2679 err = match_commit(&limit_match, &id, commit,
2680 a->limit_regex);
2681 if (err)
2682 break;
2684 if (limit_match) {
2685 struct commit_queue_entry *matched;
2687 matched = alloc_commit_queue_entry(
2688 entry->commit, entry->id);
2689 if (matched == NULL) {
2690 err = got_error_from_errno(
2691 "alloc_commit_queue_entry");
2692 break;
2694 matched->commit = entry->commit;
2695 got_object_commit_retain(entry->commit);
2697 matched->idx = a->limit_commits->ncommits;
2698 TAILQ_INSERT_TAIL(&a->limit_commits->head,
2699 matched, entry);
2700 a->limit_commits->ncommits++;
2704 * This is how we signal log_thread() that we
2705 * have found a match, and that it should be
2706 * counted as a new entry for the view.
2708 a->limit_match = limit_match;
2711 if (*a->searching == TOG_SEARCH_FORWARD &&
2712 !*a->search_next_done) {
2713 int have_match;
2714 err = match_commit(&have_match, &id, commit, a->regex);
2715 if (err)
2716 break;
2718 if (*a->limiting) {
2719 if (limit_match && have_match)
2720 *a->search_next_done =
2721 TOG_SEARCH_HAVE_MORE;
2722 } else if (have_match)
2723 *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2726 errcode = pthread_mutex_unlock(&tog_mutex);
2727 if (errcode && err == NULL)
2728 err = got_error_set_errno(errcode,
2729 "pthread_mutex_unlock");
2730 if (err)
2731 break;
2732 } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2734 return err;
2737 static void
2738 select_commit(struct tog_log_view_state *s)
2740 struct commit_queue_entry *entry;
2741 int ncommits = 0;
2743 entry = s->first_displayed_entry;
2744 while (entry) {
2745 if (ncommits == s->selected) {
2746 s->selected_entry = entry;
2747 break;
2749 entry = TAILQ_NEXT(entry, entry);
2750 ncommits++;
2754 static const struct got_error *
2755 draw_commits(struct tog_view *view)
2757 const struct got_error *err = NULL;
2758 struct tog_log_view_state *s = &view->state.log;
2759 struct commit_queue_entry *entry = s->selected_entry;
2760 int limit = view->nlines;
2761 int width;
2762 int ncommits, author_cols = 4;
2763 char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2764 char *refs_str = NULL;
2765 wchar_t *wline;
2766 struct tog_color *tc;
2767 static const size_t date_display_cols = 12;
2769 if (view_is_hsplit_top(view))
2770 --limit; /* account for border */
2772 if (s->selected_entry &&
2773 !(view->searching && view->search_next_done == 0)) {
2774 struct got_reflist_head *refs;
2775 err = got_object_id_str(&id_str, s->selected_entry->id);
2776 if (err)
2777 return err;
2778 refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2779 s->selected_entry->id);
2780 if (refs) {
2781 err = build_refs_str(&refs_str, refs,
2782 s->selected_entry->id, s->repo);
2783 if (err)
2784 goto done;
2788 if (s->thread_args.commits_needed == 0 && !using_mock_io)
2789 halfdelay(10); /* disable fast refresh */
2791 if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2792 if (asprintf(&ncommits_str, " [%d/%d] %s",
2793 entry ? entry->idx + 1 : 0, s->commits->ncommits,
2794 (view->searching && !view->search_next_done) ?
2795 "searching..." : "loading...") == -1) {
2796 err = got_error_from_errno("asprintf");
2797 goto done;
2799 } else {
2800 const char *search_str = NULL;
2801 const char *limit_str = NULL;
2803 if (view->searching) {
2804 if (view->search_next_done == TOG_SEARCH_NO_MORE)
2805 search_str = "no more matches";
2806 else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2807 search_str = "no matches found";
2808 else if (!view->search_next_done)
2809 search_str = "searching...";
2812 if (s->limit_view && s->commits->ncommits == 0)
2813 limit_str = "no matches found";
2815 if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2816 entry ? entry->idx + 1 : 0, s->commits->ncommits,
2817 search_str ? search_str : (refs_str ? refs_str : ""),
2818 limit_str ? limit_str : "") == -1) {
2819 err = got_error_from_errno("asprintf");
2820 goto done;
2824 if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2825 if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2826 "........................................",
2827 s->in_repo_path, ncommits_str) == -1) {
2828 err = got_error_from_errno("asprintf");
2829 header = NULL;
2830 goto done;
2832 } else if (asprintf(&header, "commit %s%s",
2833 id_str ? id_str : "........................................",
2834 ncommits_str) == -1) {
2835 err = got_error_from_errno("asprintf");
2836 header = NULL;
2837 goto done;
2839 err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2840 if (err)
2841 goto done;
2843 werase(view->window);
2845 if (view_needs_focus_indication(view))
2846 wstandout(view->window);
2847 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2848 if (tc)
2849 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2850 waddwstr(view->window, wline);
2851 while (width < view->ncols) {
2852 waddch(view->window, ' ');
2853 width++;
2855 if (tc)
2856 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2857 if (view_needs_focus_indication(view))
2858 wstandend(view->window);
2859 free(wline);
2860 if (limit <= 1)
2861 goto done;
2863 /* Grow author column size if necessary, and set view->maxx. */
2864 entry = s->first_displayed_entry;
2865 ncommits = 0;
2866 view->maxx = 0;
2867 while (entry) {
2868 struct got_commit_object *c = entry->commit;
2869 char *author, *eol, *msg, *msg0;
2870 wchar_t *wauthor, *wmsg;
2871 int width;
2872 if (ncommits >= limit - 1)
2873 break;
2874 if (s->use_committer)
2875 author = strdup(got_object_commit_get_committer(c));
2876 else
2877 author = strdup(got_object_commit_get_author(c));
2878 if (author == NULL) {
2879 err = got_error_from_errno("strdup");
2880 goto done;
2882 err = format_author(&wauthor, &width, author, COLS,
2883 date_display_cols);
2884 if (author_cols < width)
2885 author_cols = width;
2886 free(wauthor);
2887 free(author);
2888 if (err)
2889 goto done;
2890 err = got_object_commit_get_logmsg(&msg0, c);
2891 if (err)
2892 goto done;
2893 msg = msg0;
2894 while (*msg == '\n')
2895 ++msg;
2896 if ((eol = strchr(msg, '\n')))
2897 *eol = '\0';
2898 err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2899 date_display_cols + author_cols, 0);
2900 if (err)
2901 goto done;
2902 view->maxx = MAX(view->maxx, width);
2903 free(msg0);
2904 free(wmsg);
2905 ncommits++;
2906 entry = TAILQ_NEXT(entry, entry);
2909 entry = s->first_displayed_entry;
2910 s->last_displayed_entry = s->first_displayed_entry;
2911 ncommits = 0;
2912 while (entry) {
2913 if (ncommits >= limit - 1)
2914 break;
2915 if (ncommits == s->selected)
2916 wstandout(view->window);
2917 err = draw_commit(view, entry->commit, entry->id,
2918 date_display_cols, author_cols);
2919 if (ncommits == s->selected)
2920 wstandend(view->window);
2921 if (err)
2922 goto done;
2923 ncommits++;
2924 s->last_displayed_entry = entry;
2925 entry = TAILQ_NEXT(entry, entry);
2928 view_border(view);
2929 done:
2930 free(id_str);
2931 free(refs_str);
2932 free(ncommits_str);
2933 free(header);
2934 return err;
2937 static void
2938 log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2940 struct commit_queue_entry *entry;
2941 int nscrolled = 0;
2943 entry = TAILQ_FIRST(&s->commits->head);
2944 if (s->first_displayed_entry == entry)
2945 return;
2947 entry = s->first_displayed_entry;
2948 while (entry && nscrolled < maxscroll) {
2949 entry = TAILQ_PREV(entry, commit_queue_head, entry);
2950 if (entry) {
2951 s->first_displayed_entry = entry;
2952 nscrolled++;
2957 static const struct got_error *
2958 trigger_log_thread(struct tog_view *view, int wait)
2960 struct tog_log_thread_args *ta = &view->state.log.thread_args;
2961 int errcode;
2963 if (!using_mock_io)
2964 halfdelay(1); /* fast refresh while loading commits */
2966 while (!ta->log_complete && !tog_thread_error &&
2967 (ta->commits_needed > 0 || ta->load_all)) {
2968 /* Wake the log thread. */
2969 errcode = pthread_cond_signal(&ta->need_commits);
2970 if (errcode)
2971 return got_error_set_errno(errcode,
2972 "pthread_cond_signal");
2975 * The mutex will be released while the view loop waits
2976 * in wgetch(), at which time the log thread will run.
2978 if (!wait)
2979 break;
2981 /* Display progress update in log view. */
2982 show_log_view(view);
2983 update_panels();
2984 doupdate();
2986 /* Wait right here while next commit is being loaded. */
2987 errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2988 if (errcode)
2989 return got_error_set_errno(errcode,
2990 "pthread_cond_wait");
2992 /* Display progress update in log view. */
2993 show_log_view(view);
2994 update_panels();
2995 doupdate();
2998 return NULL;
3001 static const struct got_error *
3002 request_log_commits(struct tog_view *view)
3004 struct tog_log_view_state *state = &view->state.log;
3005 const struct got_error *err = NULL;
3007 if (state->thread_args.log_complete)
3008 return NULL;
3010 state->thread_args.commits_needed += view->nscrolled;
3011 err = trigger_log_thread(view, 1);
3012 view->nscrolled = 0;
3014 return err;
3017 static const struct got_error *
3018 log_scroll_down(struct tog_view *view, int maxscroll)
3020 struct tog_log_view_state *s = &view->state.log;
3021 const struct got_error *err = NULL;
3022 struct commit_queue_entry *pentry;
3023 int nscrolled = 0, ncommits_needed;
3025 if (s->last_displayed_entry == NULL)
3026 return NULL;
3028 ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
3029 if (s->commits->ncommits < ncommits_needed &&
3030 !s->thread_args.log_complete) {
3032 * Ask the log thread for required amount of commits.
3034 s->thread_args.commits_needed +=
3035 ncommits_needed - s->commits->ncommits;
3036 err = trigger_log_thread(view, 1);
3037 if (err)
3038 return err;
3041 do {
3042 pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
3043 if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
3044 break;
3046 s->last_displayed_entry = pentry ?
3047 pentry : s->last_displayed_entry;
3049 pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
3050 if (pentry == NULL)
3051 break;
3052 s->first_displayed_entry = pentry;
3053 } while (++nscrolled < maxscroll);
3055 if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
3056 view->nscrolled += nscrolled;
3057 else
3058 view->nscrolled = 0;
3060 return err;
3063 static const struct got_error *
3064 open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
3065 struct got_commit_object *commit, struct got_object_id *commit_id,
3066 struct tog_view *log_view, struct got_repository *repo)
3068 const struct got_error *err;
3069 struct got_object_qid *parent_id;
3070 struct tog_view *diff_view;
3072 diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
3073 if (diff_view == NULL)
3074 return got_error_from_errno("view_open");
3076 parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
3077 err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
3078 commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
3079 if (err == NULL)
3080 *new_view = diff_view;
3081 return err;
3084 static const struct got_error *
3085 tree_view_visit_subtree(struct tog_tree_view_state *s,
3086 struct got_tree_object *subtree)
3088 struct tog_parent_tree *parent;
3090 parent = calloc(1, sizeof(*parent));
3091 if (parent == NULL)
3092 return got_error_from_errno("calloc");
3094 parent->tree = s->tree;
3095 parent->first_displayed_entry = s->first_displayed_entry;
3096 parent->selected_entry = s->selected_entry;
3097 parent->selected = s->selected;
3098 TAILQ_INSERT_HEAD(&s->parents, parent, entry);
3099 s->tree = subtree;
3100 s->selected = 0;
3101 s->first_displayed_entry = NULL;
3102 return NULL;
3105 static const struct got_error *
3106 tree_view_walk_path(struct tog_tree_view_state *s,
3107 struct got_commit_object *commit, const char *path)
3109 const struct got_error *err = NULL;
3110 struct got_tree_object *tree = NULL;
3111 const char *p;
3112 char *slash, *subpath = NULL;
3114 /* Walk the path and open corresponding tree objects. */
3115 p = path;
3116 while (*p) {
3117 struct got_tree_entry *te;
3118 struct got_object_id *tree_id;
3119 char *te_name;
3121 while (p[0] == '/')
3122 p++;
3124 /* Ensure the correct subtree entry is selected. */
3125 slash = strchr(p, '/');
3126 if (slash == NULL)
3127 te_name = strdup(p);
3128 else
3129 te_name = strndup(p, slash - p);
3130 if (te_name == NULL) {
3131 err = got_error_from_errno("strndup");
3132 break;
3134 te = got_object_tree_find_entry(s->tree, te_name);
3135 if (te == NULL) {
3136 err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
3137 free(te_name);
3138 break;
3140 free(te_name);
3141 s->first_displayed_entry = s->selected_entry = te;
3143 if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
3144 break; /* jump to this file's entry */
3146 slash = strchr(p, '/');
3147 if (slash)
3148 subpath = strndup(path, slash - path);
3149 else
3150 subpath = strdup(path);
3151 if (subpath == NULL) {
3152 err = got_error_from_errno("strdup");
3153 break;
3156 err = got_object_id_by_path(&tree_id, s->repo, commit,
3157 subpath);
3158 if (err)
3159 break;
3161 err = got_object_open_as_tree(&tree, s->repo, tree_id);
3162 free(tree_id);
3163 if (err)
3164 break;
3166 err = tree_view_visit_subtree(s, tree);
3167 if (err) {
3168 got_object_tree_close(tree);
3169 break;
3171 if (slash == NULL)
3172 break;
3173 free(subpath);
3174 subpath = NULL;
3175 p = slash;
3178 free(subpath);
3179 return err;
3182 static const struct got_error *
3183 browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
3184 struct commit_queue_entry *entry, const char *path,
3185 const char *head_ref_name, struct got_repository *repo)
3187 const struct got_error *err = NULL;
3188 struct tog_tree_view_state *s;
3189 struct tog_view *tree_view;
3191 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
3192 if (tree_view == NULL)
3193 return got_error_from_errno("view_open");
3195 err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
3196 if (err)
3197 return err;
3198 s = &tree_view->state.tree;
3200 *new_view = tree_view;
3202 if (got_path_is_root_dir(path))
3203 return NULL;
3205 return tree_view_walk_path(s, entry->commit, path);
3208 static const struct got_error *
3209 block_signals_used_by_main_thread(void)
3211 sigset_t sigset;
3212 int errcode;
3214 if (sigemptyset(&sigset) == -1)
3215 return got_error_from_errno("sigemptyset");
3217 /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
3218 if (sigaddset(&sigset, SIGWINCH) == -1)
3219 return got_error_from_errno("sigaddset");
3220 if (sigaddset(&sigset, SIGCONT) == -1)
3221 return got_error_from_errno("sigaddset");
3222 if (sigaddset(&sigset, SIGINT) == -1)
3223 return got_error_from_errno("sigaddset");
3224 if (sigaddset(&sigset, SIGTERM) == -1)
3225 return got_error_from_errno("sigaddset");
3227 /* ncurses handles SIGTSTP */
3228 if (sigaddset(&sigset, SIGTSTP) == -1)
3229 return got_error_from_errno("sigaddset");
3231 errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
3232 if (errcode)
3233 return got_error_set_errno(errcode, "pthread_sigmask");
3235 return NULL;
3238 static void *
3239 log_thread(void *arg)
3241 const struct got_error *err = NULL;
3242 int errcode = 0;
3243 struct tog_log_thread_args *a = arg;
3244 int done = 0;
3247 * Sync startup with main thread such that we begin our
3248 * work once view_input() has released the mutex.
3250 errcode = pthread_mutex_lock(&tog_mutex);
3251 if (errcode) {
3252 err = got_error_set_errno(errcode, "pthread_mutex_lock");
3253 return (void *)err;
3256 err = block_signals_used_by_main_thread();
3257 if (err) {
3258 pthread_mutex_unlock(&tog_mutex);
3259 goto done;
3262 while (!done && !err && !tog_fatal_signal_received()) {
3263 errcode = pthread_mutex_unlock(&tog_mutex);
3264 if (errcode) {
3265 err = got_error_set_errno(errcode,
3266 "pthread_mutex_unlock");
3267 goto done;
3269 err = queue_commits(a);
3270 if (err) {
3271 if (err->code != GOT_ERR_ITER_COMPLETED)
3272 goto done;
3273 err = NULL;
3274 done = 1;
3275 } else if (a->commits_needed > 0 && !a->load_all) {
3276 if (*a->limiting) {
3277 if (a->limit_match)
3278 a->commits_needed--;
3279 } else
3280 a->commits_needed--;
3283 errcode = pthread_mutex_lock(&tog_mutex);
3284 if (errcode) {
3285 err = got_error_set_errno(errcode,
3286 "pthread_mutex_lock");
3287 goto done;
3288 } else if (*a->quit)
3289 done = 1;
3290 else if (*a->limiting && *a->first_displayed_entry == NULL) {
3291 *a->first_displayed_entry =
3292 TAILQ_FIRST(&a->limit_commits->head);
3293 *a->selected_entry = *a->first_displayed_entry;
3294 } else if (*a->first_displayed_entry == NULL) {
3295 *a->first_displayed_entry =
3296 TAILQ_FIRST(&a->real_commits->head);
3297 *a->selected_entry = *a->first_displayed_entry;
3300 errcode = pthread_cond_signal(&a->commit_loaded);
3301 if (errcode) {
3302 err = got_error_set_errno(errcode,
3303 "pthread_cond_signal");
3304 pthread_mutex_unlock(&tog_mutex);
3305 goto done;
3308 if (done)
3309 a->commits_needed = 0;
3310 else {
3311 if (a->commits_needed == 0 && !a->load_all) {
3312 errcode = pthread_cond_wait(&a->need_commits,
3313 &tog_mutex);
3314 if (errcode) {
3315 err = got_error_set_errno(errcode,
3316 "pthread_cond_wait");
3317 pthread_mutex_unlock(&tog_mutex);
3318 goto done;
3320 if (*a->quit)
3321 done = 1;
3325 a->log_complete = 1;
3326 errcode = pthread_mutex_unlock(&tog_mutex);
3327 if (errcode)
3328 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3329 done:
3330 if (err) {
3331 tog_thread_error = 1;
3332 pthread_cond_signal(&a->commit_loaded);
3334 return (void *)err;
3337 static const struct got_error *
3338 stop_log_thread(struct tog_log_view_state *s)
3340 const struct got_error *err = NULL, *thread_err = NULL;
3341 int errcode;
3343 if (s->thread) {
3344 s->quit = 1;
3345 errcode = pthread_cond_signal(&s->thread_args.need_commits);
3346 if (errcode)
3347 return got_error_set_errno(errcode,
3348 "pthread_cond_signal");
3349 errcode = pthread_mutex_unlock(&tog_mutex);
3350 if (errcode)
3351 return got_error_set_errno(errcode,
3352 "pthread_mutex_unlock");
3353 errcode = pthread_join(s->thread, (void **)&thread_err);
3354 if (errcode)
3355 return got_error_set_errno(errcode, "pthread_join");
3356 errcode = pthread_mutex_lock(&tog_mutex);
3357 if (errcode)
3358 return got_error_set_errno(errcode,
3359 "pthread_mutex_lock");
3360 s->thread = NULL;
3363 if (s->thread_args.repo) {
3364 err = got_repo_close(s->thread_args.repo);
3365 s->thread_args.repo = NULL;
3368 if (s->thread_args.pack_fds) {
3369 const struct got_error *pack_err =
3370 got_repo_pack_fds_close(s->thread_args.pack_fds);
3371 if (err == NULL)
3372 err = pack_err;
3373 s->thread_args.pack_fds = NULL;
3376 if (s->thread_args.graph) {
3377 got_commit_graph_close(s->thread_args.graph);
3378 s->thread_args.graph = NULL;
3381 return err ? err : thread_err;
3384 static const struct got_error *
3385 close_log_view(struct tog_view *view)
3387 const struct got_error *err = NULL;
3388 struct tog_log_view_state *s = &view->state.log;
3389 int errcode;
3391 err = stop_log_thread(s);
3393 errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3394 if (errcode && err == NULL)
3395 err = got_error_set_errno(errcode, "pthread_cond_destroy");
3397 errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3398 if (errcode && err == NULL)
3399 err = got_error_set_errno(errcode, "pthread_cond_destroy");
3401 free_commits(&s->limit_commits);
3402 free_commits(&s->real_commits);
3403 free(s->in_repo_path);
3404 s->in_repo_path = NULL;
3405 free(s->start_id);
3406 s->start_id = NULL;
3407 free(s->head_ref_name);
3408 s->head_ref_name = NULL;
3409 return err;
3413 * We use two queues to implement the limit feature: first consists of
3414 * commits matching the current limit_regex; second is the real queue
3415 * of all known commits (real_commits). When the user starts limiting,
3416 * we swap queues such that all movement and displaying functionality
3417 * works with very slight change.
3419 static const struct got_error *
3420 limit_log_view(struct tog_view *view)
3422 struct tog_log_view_state *s = &view->state.log;
3423 struct commit_queue_entry *entry;
3424 struct tog_view *v = view;
3425 const struct got_error *err = NULL;
3426 char pattern[1024];
3427 int ret;
3429 if (view_is_hsplit_top(view))
3430 v = view->child;
3431 else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3432 v = view->parent;
3434 /* Get the pattern */
3435 wmove(v->window, v->nlines - 1, 0);
3436 wclrtoeol(v->window);
3437 mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3438 nodelay(v->window, FALSE);
3439 nocbreak();
3440 echo();
3441 ret = wgetnstr(v->window, pattern, sizeof(pattern));
3442 cbreak();
3443 noecho();
3444 nodelay(v->window, TRUE);
3445 if (ret == ERR)
3446 return NULL;
3448 if (*pattern == '\0') {
3450 * Safety measure for the situation where the user
3451 * resets limit without previously limiting anything.
3453 if (!s->limit_view)
3454 return NULL;
3457 * User could have pressed Ctrl+L, which refreshed the
3458 * commit queues, it means we can't save previously
3459 * (before limit took place) displayed entries,
3460 * because they would point to already free'ed memory,
3461 * so we are forced to always select first entry of
3462 * the queue.
3464 s->commits = &s->real_commits;
3465 s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3466 s->selected_entry = s->first_displayed_entry;
3467 s->selected = 0;
3468 s->limit_view = 0;
3470 return NULL;
3473 if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3474 return NULL;
3476 s->limit_view = 1;
3478 /* Clear the screen while loading limit view */
3479 s->first_displayed_entry = NULL;
3480 s->last_displayed_entry = NULL;
3481 s->selected_entry = NULL;
3482 s->commits = &s->limit_commits;
3484 /* Prepare limit queue for new search */
3485 free_commits(&s->limit_commits);
3486 s->limit_commits.ncommits = 0;
3488 /* First process commits, which are in queue already */
3489 TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3490 int have_match = 0;
3492 err = match_commit(&have_match, entry->id,
3493 entry->commit, &s->limit_regex);
3494 if (err)
3495 return err;
3497 if (have_match) {
3498 struct commit_queue_entry *matched;
3500 matched = alloc_commit_queue_entry(entry->commit,
3501 entry->id);
3502 if (matched == NULL) {
3503 err = got_error_from_errno(
3504 "alloc_commit_queue_entry");
3505 break;
3507 matched->commit = entry->commit;
3508 got_object_commit_retain(entry->commit);
3510 matched->idx = s->limit_commits.ncommits;
3511 TAILQ_INSERT_TAIL(&s->limit_commits.head,
3512 matched, entry);
3513 s->limit_commits.ncommits++;
3517 /* Second process all the commits, until we fill the screen */
3518 if (s->limit_commits.ncommits < view->nlines - 1 &&
3519 !s->thread_args.log_complete) {
3520 s->thread_args.commits_needed +=
3521 view->nlines - s->limit_commits.ncommits - 1;
3522 err = trigger_log_thread(view, 1);
3523 if (err)
3524 return err;
3527 s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3528 s->selected_entry = TAILQ_FIRST(&s->commits->head);
3529 s->selected = 0;
3531 return NULL;
3534 static const struct got_error *
3535 search_start_log_view(struct tog_view *view)
3537 struct tog_log_view_state *s = &view->state.log;
3539 s->matched_entry = NULL;
3540 s->search_entry = NULL;
3541 return NULL;
3544 static const struct got_error *
3545 search_next_log_view(struct tog_view *view)
3547 const struct got_error *err = NULL;
3548 struct tog_log_view_state *s = &view->state.log;
3549 struct commit_queue_entry *entry;
3551 /* Display progress update in log view. */
3552 show_log_view(view);
3553 update_panels();
3554 doupdate();
3556 if (s->search_entry) {
3557 int errcode, ch;
3558 errcode = pthread_mutex_unlock(&tog_mutex);
3559 if (errcode)
3560 return got_error_set_errno(errcode,
3561 "pthread_mutex_unlock");
3562 ch = wgetch(view->window);
3563 errcode = pthread_mutex_lock(&tog_mutex);
3564 if (errcode)
3565 return got_error_set_errno(errcode,
3566 "pthread_mutex_lock");
3567 if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3568 view->search_next_done = TOG_SEARCH_HAVE_MORE;
3569 return NULL;
3571 if (view->searching == TOG_SEARCH_FORWARD)
3572 entry = TAILQ_NEXT(s->search_entry, entry);
3573 else
3574 entry = TAILQ_PREV(s->search_entry,
3575 commit_queue_head, entry);
3576 } else if (s->matched_entry) {
3578 * If the user has moved the cursor after we hit a match,
3579 * the position from where we should continue searching
3580 * might have changed.
3582 if (view->searching == TOG_SEARCH_FORWARD)
3583 entry = TAILQ_NEXT(s->selected_entry, entry);
3584 else
3585 entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3586 entry);
3587 } else {
3588 entry = s->selected_entry;
3591 while (1) {
3592 int have_match = 0;
3594 if (entry == NULL) {
3595 if (s->thread_args.log_complete ||
3596 view->searching == TOG_SEARCH_BACKWARD) {
3597 view->search_next_done =
3598 (s->matched_entry == NULL ?
3599 TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3600 s->search_entry = NULL;
3601 return NULL;
3604 * Poke the log thread for more commits and return,
3605 * allowing the main loop to make progress. Search
3606 * will resume at s->search_entry once we come back.
3608 s->thread_args.commits_needed++;
3609 return trigger_log_thread(view, 0);
3612 err = match_commit(&have_match, entry->id, entry->commit,
3613 &view->regex);
3614 if (err)
3615 break;
3616 if (have_match) {
3617 view->search_next_done = TOG_SEARCH_HAVE_MORE;
3618 s->matched_entry = entry;
3619 break;
3622 s->search_entry = entry;
3623 if (view->searching == TOG_SEARCH_FORWARD)
3624 entry = TAILQ_NEXT(entry, entry);
3625 else
3626 entry = TAILQ_PREV(entry, commit_queue_head, entry);
3629 if (s->matched_entry) {
3630 int cur = s->selected_entry->idx;
3631 while (cur < s->matched_entry->idx) {
3632 err = input_log_view(NULL, view, KEY_DOWN);
3633 if (err)
3634 return err;
3635 cur++;
3637 while (cur > s->matched_entry->idx) {
3638 err = input_log_view(NULL, view, KEY_UP);
3639 if (err)
3640 return err;
3641 cur--;
3645 s->search_entry = NULL;
3647 return NULL;
3650 static const struct got_error *
3651 open_log_view(struct tog_view *view, struct got_object_id *start_id,
3652 struct got_repository *repo, const char *head_ref_name,
3653 const char *in_repo_path, int log_branches)
3655 const struct got_error *err = NULL;
3656 struct tog_log_view_state *s = &view->state.log;
3657 struct got_repository *thread_repo = NULL;
3658 struct got_commit_graph *thread_graph = NULL;
3659 int errcode;
3661 if (in_repo_path != s->in_repo_path) {
3662 free(s->in_repo_path);
3663 s->in_repo_path = strdup(in_repo_path);
3664 if (s->in_repo_path == NULL) {
3665 err = got_error_from_errno("strdup");
3666 goto done;
3670 /* The commit queue only contains commits being displayed. */
3671 TAILQ_INIT(&s->real_commits.head);
3672 s->real_commits.ncommits = 0;
3673 s->commits = &s->real_commits;
3675 TAILQ_INIT(&s->limit_commits.head);
3676 s->limit_view = 0;
3677 s->limit_commits.ncommits = 0;
3679 s->repo = repo;
3680 if (head_ref_name) {
3681 s->head_ref_name = strdup(head_ref_name);
3682 if (s->head_ref_name == NULL) {
3683 err = got_error_from_errno("strdup");
3684 goto done;
3687 s->start_id = got_object_id_dup(start_id);
3688 if (s->start_id == NULL) {
3689 err = got_error_from_errno("got_object_id_dup");
3690 goto done;
3692 s->log_branches = log_branches;
3693 s->use_committer = 1;
3695 STAILQ_INIT(&s->colors);
3696 if (has_colors() && getenv("TOG_COLORS") != NULL) {
3697 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3698 get_color_value("TOG_COLOR_COMMIT"));
3699 if (err)
3700 goto done;
3701 err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3702 get_color_value("TOG_COLOR_AUTHOR"));
3703 if (err) {
3704 free_colors(&s->colors);
3705 goto done;
3707 err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3708 get_color_value("TOG_COLOR_DATE"));
3709 if (err) {
3710 free_colors(&s->colors);
3711 goto done;
3715 view->show = show_log_view;
3716 view->input = input_log_view;
3717 view->resize = resize_log_view;
3718 view->close = close_log_view;
3719 view->search_start = search_start_log_view;
3720 view->search_next = search_next_log_view;
3722 if (s->thread_args.pack_fds == NULL) {
3723 err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3724 if (err)
3725 goto done;
3727 err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3728 s->thread_args.pack_fds);
3729 if (err)
3730 goto done;
3731 err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3732 !s->log_branches);
3733 if (err)
3734 goto done;
3735 err = got_commit_graph_iter_start(thread_graph, s->start_id,
3736 s->repo, NULL, NULL);
3737 if (err)
3738 goto done;
3740 errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3741 if (errcode) {
3742 err = got_error_set_errno(errcode, "pthread_cond_init");
3743 goto done;
3745 errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3746 if (errcode) {
3747 err = got_error_set_errno(errcode, "pthread_cond_init");
3748 goto done;
3751 s->thread_args.commits_needed = view->nlines;
3752 s->thread_args.graph = thread_graph;
3753 s->thread_args.real_commits = &s->real_commits;
3754 s->thread_args.limit_commits = &s->limit_commits;
3755 s->thread_args.in_repo_path = s->in_repo_path;
3756 s->thread_args.start_id = s->start_id;
3757 s->thread_args.repo = thread_repo;
3758 s->thread_args.log_complete = 0;
3759 s->thread_args.quit = &s->quit;
3760 s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3761 s->thread_args.selected_entry = &s->selected_entry;
3762 s->thread_args.searching = &view->searching;
3763 s->thread_args.search_next_done = &view->search_next_done;
3764 s->thread_args.regex = &view->regex;
3765 s->thread_args.limiting = &s->limit_view;
3766 s->thread_args.limit_regex = &s->limit_regex;
3767 s->thread_args.limit_commits = &s->limit_commits;
3768 done:
3769 if (err) {
3770 if (view->close == NULL)
3771 close_log_view(view);
3772 view_close(view);
3774 return err;
3777 static const struct got_error *
3778 show_log_view(struct tog_view *view)
3780 const struct got_error *err;
3781 struct tog_log_view_state *s = &view->state.log;
3783 if (s->thread == NULL) {
3784 int errcode = pthread_create(&s->thread, NULL, log_thread,
3785 &s->thread_args);
3786 if (errcode)
3787 return got_error_set_errno(errcode, "pthread_create");
3788 if (s->thread_args.commits_needed > 0) {
3789 err = trigger_log_thread(view, 1);
3790 if (err)
3791 return err;
3795 return draw_commits(view);
3798 static void
3799 log_move_cursor_up(struct tog_view *view, int page, int home)
3801 struct tog_log_view_state *s = &view->state.log;
3803 if (s->first_displayed_entry == NULL)
3804 return;
3805 if (s->selected_entry->idx == 0)
3806 view->count = 0;
3808 if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3809 || home)
3810 s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3812 if (!page && !home && s->selected > 0)
3813 --s->selected;
3814 else
3815 log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3817 select_commit(s);
3818 return;
3821 static const struct got_error *
3822 log_move_cursor_down(struct tog_view *view, int page)
3824 struct tog_log_view_state *s = &view->state.log;
3825 const struct got_error *err = NULL;
3826 int eos = view->nlines - 2;
3828 if (s->first_displayed_entry == NULL)
3829 return NULL;
3831 if (s->thread_args.log_complete &&
3832 s->selected_entry->idx >= s->commits->ncommits - 1)
3833 return NULL;
3835 if (view_is_hsplit_top(view))
3836 --eos; /* border consumes the last line */
3838 if (!page) {
3839 if (s->selected < MIN(eos, s->commits->ncommits - 1))
3840 ++s->selected;
3841 else
3842 err = log_scroll_down(view, 1);
3843 } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3844 struct commit_queue_entry *entry;
3845 int n;
3847 s->selected = 0;
3848 entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
3849 s->last_displayed_entry = entry;
3850 for (n = 0; n <= eos; n++) {
3851 if (entry == NULL)
3852 break;
3853 s->first_displayed_entry = entry;
3854 entry = TAILQ_PREV(entry, commit_queue_head, entry);
3856 if (n > 0)
3857 s->selected = n - 1;
3858 } else {
3859 if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
3860 s->thread_args.log_complete)
3861 s->selected += MIN(page,
3862 s->commits->ncommits - s->selected_entry->idx - 1);
3863 else
3864 err = log_scroll_down(view, page);
3866 if (err)
3867 return err;
3870 * We might necessarily overshoot in horizontal
3871 * splits; if so, select the last displayed commit.
3873 if (s->first_displayed_entry && s->last_displayed_entry) {
3874 s->selected = MIN(s->selected,
3875 s->last_displayed_entry->idx -
3876 s->first_displayed_entry->idx);
3879 select_commit(s);
3881 if (s->thread_args.log_complete &&
3882 s->selected_entry->idx == s->commits->ncommits - 1)
3883 view->count = 0;
3885 return NULL;
3888 static void
3889 view_get_split(struct tog_view *view, int *y, int *x)
3891 *x = 0;
3892 *y = 0;
3894 if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3895 if (view->child && view->child->resized_y)
3896 *y = view->child->resized_y;
3897 else if (view->resized_y)
3898 *y = view->resized_y;
3899 else
3900 *y = view_split_begin_y(view->lines);
3901 } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3902 if (view->child && view->child->resized_x)
3903 *x = view->child->resized_x;
3904 else if (view->resized_x)
3905 *x = view->resized_x;
3906 else
3907 *x = view_split_begin_x(view->begin_x);
3911 /* Split view horizontally at y and offset view->state->selected line. */
3912 static const struct got_error *
3913 view_init_hsplit(struct tog_view *view, int y)
3915 const struct got_error *err = NULL;
3917 view->nlines = y;
3918 view->ncols = COLS;
3919 err = view_resize(view);
3920 if (err)
3921 return err;
3923 err = offset_selection_down(view);
3925 return err;
3928 static const struct got_error *
3929 log_goto_line(struct tog_view *view, int nlines)
3931 const struct got_error *err = NULL;
3932 struct tog_log_view_state *s = &view->state.log;
3933 int g, idx = s->selected_entry->idx;
3935 if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3936 return NULL;
3938 g = view->gline;
3939 view->gline = 0;
3941 if (g >= s->first_displayed_entry->idx + 1 &&
3942 g <= s->last_displayed_entry->idx + 1 &&
3943 g - s->first_displayed_entry->idx - 1 < nlines) {
3944 s->selected = g - s->first_displayed_entry->idx - 1;
3945 select_commit(s);
3946 return NULL;
3949 if (idx + 1 < g) {
3950 err = log_move_cursor_down(view, g - idx - 1);
3951 if (!err && g > s->selected_entry->idx + 1)
3952 err = log_move_cursor_down(view,
3953 g - s->first_displayed_entry->idx - 1);
3954 if (err)
3955 return err;
3956 } else if (idx + 1 > g)
3957 log_move_cursor_up(view, idx - g + 1, 0);
3959 if (g < nlines && s->first_displayed_entry->idx == 0)
3960 s->selected = g - 1;
3962 select_commit(s);
3963 return NULL;
3967 static void
3968 horizontal_scroll_input(struct tog_view *view, int ch)
3971 switch (ch) {
3972 case KEY_LEFT:
3973 case 'h':
3974 view->x -= MIN(view->x, 2);
3975 if (view->x <= 0)
3976 view->count = 0;
3977 break;
3978 case KEY_RIGHT:
3979 case 'l':
3980 if (view->x + view->ncols / 2 < view->maxx)
3981 view->x += 2;
3982 else
3983 view->count = 0;
3984 break;
3985 case '0':
3986 view->x = 0;
3987 break;
3988 case '$':
3989 view->x = MAX(view->maxx - view->ncols / 2, 0);
3990 view->count = 0;
3991 break;
3992 default:
3993 break;
3997 static const struct got_error *
3998 input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
4000 const struct got_error *err = NULL;
4001 struct tog_log_view_state *s = &view->state.log;
4002 int eos, nscroll;
4004 if (s->thread_args.load_all) {
4005 if (ch == CTRL('g') || ch == KEY_BACKSPACE)
4006 s->thread_args.load_all = 0;
4007 else if (s->thread_args.log_complete) {
4008 err = log_move_cursor_down(view, s->commits->ncommits);
4009 s->thread_args.load_all = 0;
4011 if (err)
4012 return err;
4015 eos = nscroll = view->nlines - 1;
4016 if (view_is_hsplit_top(view))
4017 --eos; /* border */
4019 if (view->gline)
4020 return log_goto_line(view, eos);
4022 switch (ch) {
4023 case '&':
4024 err = limit_log_view(view);
4025 break;
4026 case 'q':
4027 s->quit = 1;
4028 break;
4029 case '0':
4030 case '$':
4031 case KEY_RIGHT:
4032 case 'l':
4033 case KEY_LEFT:
4034 case 'h':
4035 horizontal_scroll_input(view, ch);
4036 break;
4037 case 'k':
4038 case KEY_UP:
4039 case '<':
4040 case ',':
4041 case CTRL('p'):
4042 log_move_cursor_up(view, 0, 0);
4043 break;
4044 case 'g':
4045 case '=':
4046 case KEY_HOME:
4047 log_move_cursor_up(view, 0, 1);
4048 view->count = 0;
4049 break;
4050 case CTRL('u'):
4051 case 'u':
4052 nscroll /= 2;
4053 /* FALL THROUGH */
4054 case KEY_PPAGE:
4055 case CTRL('b'):
4056 case 'b':
4057 log_move_cursor_up(view, nscroll, 0);
4058 break;
4059 case 'j':
4060 case KEY_DOWN:
4061 case '>':
4062 case '.':
4063 case CTRL('n'):
4064 err = log_move_cursor_down(view, 0);
4065 break;
4066 case '@':
4067 s->use_committer = !s->use_committer;
4068 view->action = s->use_committer ?
4069 "show committer" : "show commit author";
4070 break;
4071 case 'G':
4072 case '*':
4073 case KEY_END: {
4074 /* We don't know yet how many commits, so we're forced to
4075 * traverse them all. */
4076 view->count = 0;
4077 s->thread_args.load_all = 1;
4078 if (!s->thread_args.log_complete)
4079 return trigger_log_thread(view, 0);
4080 err = log_move_cursor_down(view, s->commits->ncommits);
4081 s->thread_args.load_all = 0;
4082 break;
4084 case CTRL('d'):
4085 case 'd':
4086 nscroll /= 2;
4087 /* FALL THROUGH */
4088 case KEY_NPAGE:
4089 case CTRL('f'):
4090 case 'f':
4091 case ' ':
4092 err = log_move_cursor_down(view, nscroll);
4093 break;
4094 case KEY_RESIZE:
4095 if (s->selected > view->nlines - 2)
4096 s->selected = view->nlines - 2;
4097 if (s->selected > s->commits->ncommits - 1)
4098 s->selected = s->commits->ncommits - 1;
4099 select_commit(s);
4100 if (s->commits->ncommits < view->nlines - 1 &&
4101 !s->thread_args.log_complete) {
4102 s->thread_args.commits_needed += (view->nlines - 1) -
4103 s->commits->ncommits;
4104 err = trigger_log_thread(view, 1);
4106 break;
4107 case KEY_ENTER:
4108 case '\r':
4109 view->count = 0;
4110 if (s->selected_entry == NULL)
4111 break;
4112 err = view_request_new(new_view, view, TOG_VIEW_DIFF);
4113 break;
4114 case 'T':
4115 view->count = 0;
4116 if (s->selected_entry == NULL)
4117 break;
4118 err = view_request_new(new_view, view, TOG_VIEW_TREE);
4119 break;
4120 case KEY_BACKSPACE:
4121 case CTRL('l'):
4122 case 'B':
4123 view->count = 0;
4124 if (ch == KEY_BACKSPACE &&
4125 got_path_is_root_dir(s->in_repo_path))
4126 break;
4127 err = stop_log_thread(s);
4128 if (err)
4129 return err;
4130 if (ch == KEY_BACKSPACE) {
4131 char *parent_path;
4132 err = got_path_dirname(&parent_path, s->in_repo_path);
4133 if (err)
4134 return err;
4135 free(s->in_repo_path);
4136 s->in_repo_path = parent_path;
4137 s->thread_args.in_repo_path = s->in_repo_path;
4138 } else if (ch == CTRL('l')) {
4139 struct got_object_id *start_id;
4140 err = got_repo_match_object_id(&start_id, NULL,
4141 s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
4142 GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
4143 if (err) {
4144 if (s->head_ref_name == NULL ||
4145 err->code != GOT_ERR_NOT_REF)
4146 return err;
4147 /* Try to cope with deleted references. */
4148 free(s->head_ref_name);
4149 s->head_ref_name = NULL;
4150 err = got_repo_match_object_id(&start_id,
4151 NULL, GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT,
4152 &tog_refs, s->repo);
4153 if (err)
4154 return err;
4156 free(s->start_id);
4157 s->start_id = start_id;
4158 s->thread_args.start_id = s->start_id;
4159 } else /* 'B' */
4160 s->log_branches = !s->log_branches;
4162 if (s->thread_args.pack_fds == NULL) {
4163 err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
4164 if (err)
4165 return err;
4167 err = got_repo_open(&s->thread_args.repo,
4168 got_repo_get_path(s->repo), NULL,
4169 s->thread_args.pack_fds);
4170 if (err)
4171 return err;
4172 tog_free_refs();
4173 err = tog_load_refs(s->repo, 0);
4174 if (err)
4175 return err;
4176 err = got_commit_graph_open(&s->thread_args.graph,
4177 s->in_repo_path, !s->log_branches);
4178 if (err)
4179 return err;
4180 err = got_commit_graph_iter_start(s->thread_args.graph,
4181 s->start_id, s->repo, NULL, NULL);
4182 if (err)
4183 return err;
4184 free_commits(&s->real_commits);
4185 free_commits(&s->limit_commits);
4186 s->first_displayed_entry = NULL;
4187 s->last_displayed_entry = NULL;
4188 s->selected_entry = NULL;
4189 s->selected = 0;
4190 s->thread_args.log_complete = 0;
4191 s->quit = 0;
4192 s->thread_args.commits_needed = view->lines;
4193 s->matched_entry = NULL;
4194 s->search_entry = NULL;
4195 view->offset = 0;
4196 break;
4197 case 'R':
4198 view->count = 0;
4199 err = view_request_new(new_view, view, TOG_VIEW_REF);
4200 break;
4201 default:
4202 view->count = 0;
4203 break;
4206 return err;
4209 static const struct got_error *
4210 apply_unveil(const char *repo_path, const char *worktree_path)
4212 const struct got_error *error;
4214 #ifdef PROFILE
4215 if (unveil("gmon.out", "rwc") != 0)
4216 return got_error_from_errno2("unveil", "gmon.out");
4217 #endif
4218 if (repo_path && unveil(repo_path, "r") != 0)
4219 return got_error_from_errno2("unveil", repo_path);
4221 if (worktree_path && unveil(worktree_path, "rwc") != 0)
4222 return got_error_from_errno2("unveil", worktree_path);
4224 if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
4225 return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
4227 error = got_privsep_unveil_exec_helpers();
4228 if (error != NULL)
4229 return error;
4231 if (unveil(NULL, NULL) != 0)
4232 return got_error_from_errno("unveil");
4234 return NULL;
4237 static const struct got_error *
4238 init_mock_term(const char *test_script_path)
4240 const struct got_error *err = NULL;
4241 const char *screen_dump_path;
4242 int in;
4244 if (test_script_path == NULL || *test_script_path == '\0')
4245 return got_error_msg(GOT_ERR_IO, "TOG_TEST_SCRIPT not defined");
4247 tog_io.f = fopen(test_script_path, "re");
4248 if (tog_io.f == NULL) {
4249 err = got_error_from_errno_fmt("fopen: %s",
4250 test_script_path);
4251 goto done;
4254 /* test mode, we don't want any output */
4255 tog_io.cout = fopen("/dev/null", "w+");
4256 if (tog_io.cout == NULL) {
4257 err = got_error_from_errno2("fopen", "/dev/null");
4258 goto done;
4261 in = dup(fileno(tog_io.cout));
4262 if (in == -1) {
4263 err = got_error_from_errno("dup");
4264 goto done;
4266 tog_io.cin = fdopen(in, "r");
4267 if (tog_io.cin == NULL) {
4268 err = got_error_from_errno("fdopen");
4269 close(in);
4270 goto done;
4273 screen_dump_path = getenv("TOG_SCR_DUMP");
4274 if (screen_dump_path == NULL || *screen_dump_path == '\0')
4275 return got_error_msg(GOT_ERR_IO, "TOG_SCR_DUMP not defined");
4276 tog_io.sdump = fopen(screen_dump_path, "wex");
4277 if (tog_io.sdump == NULL) {
4278 err = got_error_from_errno2("fopen", screen_dump_path);
4279 goto done;
4282 if (fseeko(tog_io.f, 0L, SEEK_SET) == -1) {
4283 err = got_error_from_errno("fseeko");
4284 goto done;
4287 if (newterm(NULL, tog_io.cout, tog_io.cin) == NULL)
4288 err = got_error_msg(GOT_ERR_IO,
4289 "newterm: failed to initialise curses");
4291 using_mock_io = 1;
4293 done:
4294 if (err)
4295 tog_io_close();
4296 return err;
4299 static void
4300 init_curses(void)
4303 * Override default signal handlers before starting ncurses.
4304 * This should prevent ncurses from installing its own
4305 * broken cleanup() signal handler.
4307 signal(SIGWINCH, tog_sigwinch);
4308 signal(SIGPIPE, tog_sigpipe);
4309 signal(SIGCONT, tog_sigcont);
4310 signal(SIGINT, tog_sigint);
4311 signal(SIGTERM, tog_sigterm);
4313 if (using_mock_io) /* In test mode we use a fake terminal */
4314 return;
4316 initscr();
4318 cbreak();
4319 halfdelay(1); /* Fast refresh while initial view is loading. */
4320 noecho();
4321 nonl();
4322 intrflush(stdscr, FALSE);
4323 keypad(stdscr, TRUE);
4324 curs_set(0);
4325 if (getenv("TOG_COLORS") != NULL) {
4326 start_color();
4327 use_default_colors();
4330 return;
4333 static const struct got_error *
4334 get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
4335 struct got_repository *repo, struct got_worktree *worktree)
4337 const struct got_error *err = NULL;
4339 if (argc == 0) {
4340 *in_repo_path = strdup("/");
4341 if (*in_repo_path == NULL)
4342 return got_error_from_errno("strdup");
4343 return NULL;
4346 if (worktree) {
4347 const char *prefix = got_worktree_get_path_prefix(worktree);
4348 char *p;
4350 err = got_worktree_resolve_path(&p, worktree, argv[0]);
4351 if (err)
4352 return err;
4353 if (asprintf(in_repo_path, "%s%s%s", prefix,
4354 (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
4355 p) == -1) {
4356 err = got_error_from_errno("asprintf");
4357 *in_repo_path = NULL;
4359 free(p);
4360 } else
4361 err = got_repo_map_path(in_repo_path, repo, argv[0]);
4363 return err;
4366 static const struct got_error *
4367 cmd_log(int argc, char *argv[])
4369 const struct got_error *error;
4370 struct got_repository *repo = NULL;
4371 struct got_worktree *worktree = NULL;
4372 struct got_object_id *start_id = NULL;
4373 char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
4374 char *start_commit = NULL, *label = NULL;
4375 struct got_reference *ref = NULL;
4376 const char *head_ref_name = NULL;
4377 int ch, log_branches = 0;
4378 struct tog_view *view;
4379 int *pack_fds = NULL;
4381 while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
4382 switch (ch) {
4383 case 'b':
4384 log_branches = 1;
4385 break;
4386 case 'c':
4387 start_commit = optarg;
4388 break;
4389 case 'r':
4390 repo_path = realpath(optarg, NULL);
4391 if (repo_path == NULL)
4392 return got_error_from_errno2("realpath",
4393 optarg);
4394 break;
4395 default:
4396 usage_log();
4397 /* NOTREACHED */
4401 argc -= optind;
4402 argv += optind;
4404 if (argc > 1)
4405 usage_log();
4407 error = got_repo_pack_fds_open(&pack_fds);
4408 if (error != NULL)
4409 goto done;
4411 if (repo_path == NULL) {
4412 cwd = getcwd(NULL, 0);
4413 if (cwd == NULL)
4414 return got_error_from_errno("getcwd");
4415 error = got_worktree_open(&worktree, cwd);
4416 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4417 goto done;
4418 if (worktree)
4419 repo_path =
4420 strdup(got_worktree_get_repo_path(worktree));
4421 else
4422 repo_path = strdup(cwd);
4423 if (repo_path == NULL) {
4424 error = got_error_from_errno("strdup");
4425 goto done;
4429 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
4430 if (error != NULL)
4431 goto done;
4433 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4434 repo, worktree);
4435 if (error)
4436 goto done;
4438 init_curses();
4440 error = apply_unveil(got_repo_get_path(repo),
4441 worktree ? got_worktree_get_root_path(worktree) : NULL);
4442 if (error)
4443 goto done;
4445 /* already loaded by tog_log_with_path()? */
4446 if (TAILQ_EMPTY(&tog_refs)) {
4447 error = tog_load_refs(repo, 0);
4448 if (error)
4449 goto done;
4452 if (start_commit == NULL) {
4453 error = got_repo_match_object_id(&start_id, &label,
4454 worktree ? got_worktree_get_head_ref_name(worktree) :
4455 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4456 if (error)
4457 goto done;
4458 head_ref_name = label;
4459 } else {
4460 error = got_ref_open(&ref, repo, start_commit, 0);
4461 if (error == NULL)
4462 head_ref_name = got_ref_get_name(ref);
4463 else if (error->code != GOT_ERR_NOT_REF)
4464 goto done;
4465 error = got_repo_match_object_id(&start_id, NULL,
4466 start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4467 if (error)
4468 goto done;
4471 view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4472 if (view == NULL) {
4473 error = got_error_from_errno("view_open");
4474 goto done;
4476 error = open_log_view(view, start_id, repo, head_ref_name,
4477 in_repo_path, log_branches);
4478 if (error)
4479 goto done;
4480 if (worktree) {
4481 /* Release work tree lock. */
4482 got_worktree_close(worktree);
4483 worktree = NULL;
4485 error = view_loop(view);
4486 done:
4487 free(in_repo_path);
4488 free(repo_path);
4489 free(cwd);
4490 free(start_id);
4491 free(label);
4492 if (ref)
4493 got_ref_close(ref);
4494 if (repo) {
4495 const struct got_error *close_err = got_repo_close(repo);
4496 if (error == NULL)
4497 error = close_err;
4499 if (worktree)
4500 got_worktree_close(worktree);
4501 if (pack_fds) {
4502 const struct got_error *pack_err =
4503 got_repo_pack_fds_close(pack_fds);
4504 if (error == NULL)
4505 error = pack_err;
4507 tog_free_refs();
4508 return error;
4511 __dead static void
4512 usage_diff(void)
4514 endwin();
4515 fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4516 "object1 object2\n", getprogname());
4517 exit(1);
4520 static int
4521 match_line(const char *line, regex_t *regex, size_t nmatch,
4522 regmatch_t *regmatch)
4524 return regexec(regex, line, nmatch, regmatch, 0) == 0;
4527 static struct tog_color *
4528 match_color(struct tog_colors *colors, const char *line)
4530 struct tog_color *tc = NULL;
4532 STAILQ_FOREACH(tc, colors, entry) {
4533 if (match_line(line, &tc->regex, 0, NULL))
4534 return tc;
4537 return NULL;
4540 static const struct got_error *
4541 add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4542 WINDOW *window, int skipcol, regmatch_t *regmatch)
4544 const struct got_error *err = NULL;
4545 char *exstr = NULL;
4546 wchar_t *wline = NULL;
4547 int rme, rms, n, width, scrollx;
4548 int width0 = 0, width1 = 0, width2 = 0;
4549 char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4551 *wtotal = 0;
4553 rms = regmatch->rm_so;
4554 rme = regmatch->rm_eo;
4556 err = expand_tab(&exstr, line);
4557 if (err)
4558 return err;
4560 /* Split the line into 3 segments, according to match offsets. */
4561 seg0 = strndup(exstr, rms);
4562 if (seg0 == NULL) {
4563 err = got_error_from_errno("strndup");
4564 goto done;
4566 seg1 = strndup(exstr + rms, rme - rms);
4567 if (seg1 == NULL) {
4568 err = got_error_from_errno("strndup");
4569 goto done;
4571 seg2 = strdup(exstr + rme);
4572 if (seg2 == NULL) {
4573 err = got_error_from_errno("strndup");
4574 goto done;
4577 /* draw up to matched token if we haven't scrolled past it */
4578 err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4579 col_tab_align, 1);
4580 if (err)
4581 goto done;
4582 n = MAX(width0 - skipcol, 0);
4583 if (n) {
4584 free(wline);
4585 err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4586 wlimit, col_tab_align, 1);
4587 if (err)
4588 goto done;
4589 waddwstr(window, &wline[scrollx]);
4590 wlimit -= width;
4591 *wtotal += width;
4594 if (wlimit > 0) {
4595 int i = 0, w = 0;
4596 size_t wlen;
4598 free(wline);
4599 err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4600 col_tab_align, 1);
4601 if (err)
4602 goto done;
4603 wlen = wcslen(wline);
4604 while (i < wlen) {
4605 width = wcwidth(wline[i]);
4606 if (width == -1) {
4607 /* should not happen, tabs are expanded */
4608 err = got_error(GOT_ERR_RANGE);
4609 goto done;
4611 if (width0 + w + width > skipcol)
4612 break;
4613 w += width;
4614 i++;
4616 /* draw (visible part of) matched token (if scrolled into it) */
4617 if (width1 - w > 0) {
4618 wattron(window, A_STANDOUT);
4619 waddwstr(window, &wline[i]);
4620 wattroff(window, A_STANDOUT);
4621 wlimit -= (width1 - w);
4622 *wtotal += (width1 - w);
4626 if (wlimit > 0) { /* draw rest of line */
4627 free(wline);
4628 if (skipcol > width0 + width1) {
4629 err = format_line(&wline, &width2, &scrollx, seg2,
4630 skipcol - (width0 + width1), wlimit,
4631 col_tab_align, 1);
4632 if (err)
4633 goto done;
4634 waddwstr(window, &wline[scrollx]);
4635 } else {
4636 err = format_line(&wline, &width2, NULL, seg2, 0,
4637 wlimit, col_tab_align, 1);
4638 if (err)
4639 goto done;
4640 waddwstr(window, wline);
4642 *wtotal += width2;
4644 done:
4645 free(wline);
4646 free(exstr);
4647 free(seg0);
4648 free(seg1);
4649 free(seg2);
4650 return err;
4653 static int
4654 gotoline(struct tog_view *view, int *lineno, int *nprinted)
4656 FILE *f = NULL;
4657 int *eof, *first, *selected;
4659 if (view->type == TOG_VIEW_DIFF) {
4660 struct tog_diff_view_state *s = &view->state.diff;
4662 first = &s->first_displayed_line;
4663 selected = first;
4664 eof = &s->eof;
4665 f = s->f;
4666 } else if (view->type == TOG_VIEW_HELP) {
4667 struct tog_help_view_state *s = &view->state.help;
4669 first = &s->first_displayed_line;
4670 selected = first;
4671 eof = &s->eof;
4672 f = s->f;
4673 } else if (view->type == TOG_VIEW_BLAME) {
4674 struct tog_blame_view_state *s = &view->state.blame;
4676 first = &s->first_displayed_line;
4677 selected = &s->selected_line;
4678 eof = &s->eof;
4679 f = s->blame.f;
4680 } else
4681 return 0;
4683 /* Center gline in the middle of the page like vi(1). */
4684 if (*lineno < view->gline - (view->nlines - 3) / 2)
4685 return 0;
4686 if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4687 rewind(f);
4688 *eof = 0;
4689 *first = 1;
4690 *lineno = 0;
4691 *nprinted = 0;
4692 return 0;
4695 *selected = view->gline <= (view->nlines - 3) / 2 ?
4696 view->gline : (view->nlines - 3) / 2 + 1;
4697 view->gline = 0;
4699 return 1;
4702 static const struct got_error *
4703 draw_file(struct tog_view *view, const char *header)
4705 struct tog_diff_view_state *s = &view->state.diff;
4706 regmatch_t *regmatch = &view->regmatch;
4707 const struct got_error *err;
4708 int nprinted = 0;
4709 char *line;
4710 size_t linesize = 0;
4711 ssize_t linelen;
4712 wchar_t *wline;
4713 int width;
4714 int max_lines = view->nlines;
4715 int nlines = s->nlines;
4716 off_t line_offset;
4718 s->lineno = s->first_displayed_line - 1;
4719 line_offset = s->lines[s->first_displayed_line - 1].offset;
4720 if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4721 return got_error_from_errno("fseek");
4723 werase(view->window);
4725 if (view->gline > s->nlines - 1)
4726 view->gline = s->nlines - 1;
4728 if (header) {
4729 int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4730 1 : view->gline - (view->nlines - 3) / 2 :
4731 s->lineno + s->selected_line;
4733 if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4734 return got_error_from_errno("asprintf");
4735 err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4736 0, 0);
4737 free(line);
4738 if (err)
4739 return err;
4741 if (view_needs_focus_indication(view))
4742 wstandout(view->window);
4743 waddwstr(view->window, wline);
4744 free(wline);
4745 wline = NULL;
4746 while (width++ < view->ncols)
4747 waddch(view->window, ' ');
4748 if (view_needs_focus_indication(view))
4749 wstandend(view->window);
4751 if (max_lines <= 1)
4752 return NULL;
4753 max_lines--;
4756 s->eof = 0;
4757 view->maxx = 0;
4758 line = NULL;
4759 while (max_lines > 0 && nprinted < max_lines) {
4760 enum got_diff_line_type linetype;
4761 attr_t attr = 0;
4763 linelen = getline(&line, &linesize, s->f);
4764 if (linelen == -1) {
4765 if (feof(s->f)) {
4766 s->eof = 1;
4767 break;
4769 free(line);
4770 return got_ferror(s->f, GOT_ERR_IO);
4773 if (++s->lineno < s->first_displayed_line)
4774 continue;
4775 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4776 continue;
4777 if (s->lineno == view->hiline)
4778 attr = A_STANDOUT;
4780 /* Set view->maxx based on full line length. */
4781 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4782 view->x ? 1 : 0);
4783 if (err) {
4784 free(line);
4785 return err;
4787 view->maxx = MAX(view->maxx, width);
4788 free(wline);
4789 wline = NULL;
4791 linetype = s->lines[s->lineno].type;
4792 if (linetype > GOT_DIFF_LINE_LOGMSG &&
4793 linetype < GOT_DIFF_LINE_CONTEXT)
4794 attr |= COLOR_PAIR(linetype);
4795 if (attr)
4796 wattron(view->window, attr);
4797 if (s->first_displayed_line + nprinted == s->matched_line &&
4798 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4799 err = add_matched_line(&width, line, view->ncols, 0,
4800 view->window, view->x, regmatch);
4801 if (err) {
4802 free(line);
4803 return err;
4805 } else {
4806 int skip;
4807 err = format_line(&wline, &width, &skip, line,
4808 view->x, view->ncols, 0, view->x ? 1 : 0);
4809 if (err) {
4810 free(line);
4811 return err;
4813 waddwstr(view->window, &wline[skip]);
4814 free(wline);
4815 wline = NULL;
4817 if (s->lineno == view->hiline) {
4818 /* highlight full gline length */
4819 while (width++ < view->ncols)
4820 waddch(view->window, ' ');
4821 } else {
4822 if (width <= view->ncols - 1)
4823 waddch(view->window, '\n');
4825 if (attr)
4826 wattroff(view->window, attr);
4827 if (++nprinted == 1)
4828 s->first_displayed_line = s->lineno;
4830 free(line);
4831 if (nprinted >= 1)
4832 s->last_displayed_line = s->first_displayed_line +
4833 (nprinted - 1);
4834 else
4835 s->last_displayed_line = s->first_displayed_line;
4837 view_border(view);
4839 if (s->eof) {
4840 while (nprinted < view->nlines) {
4841 waddch(view->window, '\n');
4842 nprinted++;
4845 err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4846 view->ncols, 0, 0);
4847 if (err) {
4848 return err;
4851 wstandout(view->window);
4852 waddwstr(view->window, wline);
4853 free(wline);
4854 wline = NULL;
4855 wstandend(view->window);
4858 return NULL;
4861 static char *
4862 get_datestr(time_t *time, char *datebuf)
4864 struct tm mytm, *tm;
4865 char *p, *s;
4867 tm = gmtime_r(time, &mytm);
4868 if (tm == NULL)
4869 return NULL;
4870 s = asctime_r(tm, datebuf);
4871 if (s == NULL)
4872 return NULL;
4873 p = strchr(s, '\n');
4874 if (p)
4875 *p = '\0';
4876 return s;
4879 static const struct got_error *
4880 add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4881 off_t off, uint8_t type)
4883 struct got_diff_line *p;
4885 p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4886 if (p == NULL)
4887 return got_error_from_errno("reallocarray");
4888 *lines = p;
4889 (*lines)[*nlines].offset = off;
4890 (*lines)[*nlines].type = type;
4891 (*nlines)++;
4893 return NULL;
4896 static const struct got_error *
4897 cat_diff(FILE *dst, FILE *src, struct got_diff_line **d_lines, size_t *d_nlines,
4898 struct got_diff_line *s_lines, size_t s_nlines)
4900 struct got_diff_line *p;
4901 char buf[BUFSIZ];
4902 size_t i, r;
4904 if (fseeko(src, 0L, SEEK_SET) == -1)
4905 return got_error_from_errno("fseeko");
4907 for (;;) {
4908 r = fread(buf, 1, sizeof(buf), src);
4909 if (r == 0) {
4910 if (ferror(src))
4911 return got_error_from_errno("fread");
4912 if (feof(src))
4913 break;
4915 if (fwrite(buf, 1, r, dst) != r)
4916 return got_ferror(dst, GOT_ERR_IO);
4919 if (s_nlines == 0 && *d_nlines == 0)
4920 return NULL;
4923 * If commit info was in dst, increment line offsets
4924 * of the appended diff content, but skip s_lines[0]
4925 * because offset zero is already in *d_lines.
4927 if (*d_nlines > 0) {
4928 for (i = 1; i < s_nlines; ++i)
4929 s_lines[i].offset += (*d_lines)[*d_nlines - 1].offset;
4931 if (s_nlines > 0) {
4932 --s_nlines;
4933 ++s_lines;
4937 p = reallocarray(*d_lines, *d_nlines + s_nlines, sizeof(*p));
4938 if (p == NULL) {
4939 /* d_lines is freed in close_diff_view() */
4940 return got_error_from_errno("reallocarray");
4943 *d_lines = p;
4945 memcpy(*d_lines + *d_nlines, s_lines, s_nlines * sizeof(*s_lines));
4946 *d_nlines += s_nlines;
4948 return NULL;
4951 static const struct got_error *
4952 write_commit_info(struct got_diff_line **lines, size_t *nlines,
4953 struct got_object_id *commit_id, struct got_reflist_head *refs,
4954 struct got_repository *repo, int ignore_ws, int force_text_diff,
4955 struct got_diffstat_cb_arg *dsa, FILE *outfile)
4957 const struct got_error *err = NULL;
4958 char datebuf[26], *datestr;
4959 struct got_commit_object *commit;
4960 char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4961 time_t committer_time;
4962 const char *author, *committer;
4963 char *refs_str = NULL;
4964 struct got_pathlist_entry *pe;
4965 off_t outoff = 0;
4966 int n;
4968 if (refs) {
4969 err = build_refs_str(&refs_str, refs, commit_id, repo);
4970 if (err)
4971 return err;
4974 err = got_object_open_as_commit(&commit, repo, commit_id);
4975 if (err)
4976 return err;
4978 err = got_object_id_str(&id_str, commit_id);
4979 if (err) {
4980 err = got_error_from_errno("got_object_id_str");
4981 goto done;
4984 err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4985 if (err)
4986 goto done;
4988 n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4989 refs_str ? refs_str : "", refs_str ? ")" : "");
4990 if (n < 0) {
4991 err = got_error_from_errno("fprintf");
4992 goto done;
4994 outoff += n;
4995 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4996 if (err)
4997 goto done;
4999 n = fprintf(outfile, "from: %s\n",
5000 got_object_commit_get_author(commit));
5001 if (n < 0) {
5002 err = got_error_from_errno("fprintf");
5003 goto done;
5005 outoff += n;
5006 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
5007 if (err)
5008 goto done;
5010 author = got_object_commit_get_author(commit);
5011 committer = got_object_commit_get_committer(commit);
5012 if (strcmp(author, committer) != 0) {
5013 n = fprintf(outfile, "via: %s\n", committer);
5014 if (n < 0) {
5015 err = got_error_from_errno("fprintf");
5016 goto done;
5018 outoff += n;
5019 err = add_line_metadata(lines, nlines, outoff,
5020 GOT_DIFF_LINE_AUTHOR);
5021 if (err)
5022 goto done;
5024 committer_time = got_object_commit_get_committer_time(commit);
5025 datestr = get_datestr(&committer_time, datebuf);
5026 if (datestr) {
5027 n = fprintf(outfile, "date: %s UTC\n", datestr);
5028 if (n < 0) {
5029 err = got_error_from_errno("fprintf");
5030 goto done;
5032 outoff += n;
5033 err = add_line_metadata(lines, nlines, outoff,
5034 GOT_DIFF_LINE_DATE);
5035 if (err)
5036 goto done;
5038 if (got_object_commit_get_nparents(commit) > 1) {
5039 const struct got_object_id_queue *parent_ids;
5040 struct got_object_qid *qid;
5041 int pn = 1;
5042 parent_ids = got_object_commit_get_parent_ids(commit);
5043 STAILQ_FOREACH(qid, parent_ids, entry) {
5044 err = got_object_id_str(&id_str, &qid->id);
5045 if (err)
5046 goto done;
5047 n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
5048 if (n < 0) {
5049 err = got_error_from_errno("fprintf");
5050 goto done;
5052 outoff += n;
5053 err = add_line_metadata(lines, nlines, outoff,
5054 GOT_DIFF_LINE_META);
5055 if (err)
5056 goto done;
5057 free(id_str);
5058 id_str = NULL;
5062 err = got_object_commit_get_logmsg(&logmsg, commit);
5063 if (err)
5064 goto done;
5065 s = logmsg;
5066 while ((line = strsep(&s, "\n")) != NULL) {
5067 n = fprintf(outfile, "%s\n", line);
5068 if (n < 0) {
5069 err = got_error_from_errno("fprintf");
5070 goto done;
5072 outoff += n;
5073 err = add_line_metadata(lines, nlines, outoff,
5074 GOT_DIFF_LINE_LOGMSG);
5075 if (err)
5076 goto done;
5079 TAILQ_FOREACH(pe, dsa->paths, entry) {
5080 struct got_diff_changed_path *cp = pe->data;
5081 int pad = dsa->max_path_len - pe->path_len + 1;
5083 n = fprintf(outfile, "%c %s%*c | %*d+ %*d-\n", cp->status,
5084 pe->path, pad, ' ', dsa->add_cols + 1, cp->add,
5085 dsa->rm_cols + 1, cp->rm);
5086 if (n < 0) {
5087 err = got_error_from_errno("fprintf");
5088 goto done;
5090 outoff += n;
5091 err = add_line_metadata(lines, nlines, outoff,
5092 GOT_DIFF_LINE_CHANGES);
5093 if (err)
5094 goto done;
5097 fputc('\n', outfile);
5098 outoff++;
5099 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
5100 if (err)
5101 goto done;
5103 n = fprintf(outfile,
5104 "%d file%s changed, %d insertion%s(+), %d deletion%s(-)\n",
5105 dsa->nfiles, dsa->nfiles > 1 ? "s" : "", dsa->ins,
5106 dsa->ins != 1 ? "s" : "", dsa->del, dsa->del != 1 ? "s" : "");
5107 if (n < 0) {
5108 err = got_error_from_errno("fprintf");
5109 goto done;
5111 outoff += n;
5112 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
5113 if (err)
5114 goto done;
5116 fputc('\n', outfile);
5117 outoff++;
5118 err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
5119 done:
5120 free(id_str);
5121 free(logmsg);
5122 free(refs_str);
5123 got_object_commit_close(commit);
5124 if (err) {
5125 free(*lines);
5126 *lines = NULL;
5127 *nlines = 0;
5129 return err;
5132 static const struct got_error *
5133 create_diff(struct tog_diff_view_state *s)
5135 const struct got_error *err = NULL;
5136 FILE *f = NULL, *tmp_diff_file = NULL;
5137 int obj_type;
5138 struct got_diff_line *lines = NULL;
5139 struct got_pathlist_head changed_paths;
5141 TAILQ_INIT(&changed_paths);
5143 free(s->lines);
5144 s->lines = malloc(sizeof(*s->lines));
5145 if (s->lines == NULL)
5146 return got_error_from_errno("malloc");
5147 s->nlines = 0;
5149 f = got_opentemp();
5150 if (f == NULL) {
5151 err = got_error_from_errno("got_opentemp");
5152 goto done;
5154 tmp_diff_file = got_opentemp();
5155 if (tmp_diff_file == NULL) {
5156 err = got_error_from_errno("got_opentemp");
5157 goto done;
5159 if (s->f && fclose(s->f) == EOF) {
5160 err = got_error_from_errno("fclose");
5161 goto done;
5163 s->f = f;
5165 if (s->id1)
5166 err = got_object_get_type(&obj_type, s->repo, s->id1);
5167 else
5168 err = got_object_get_type(&obj_type, s->repo, s->id2);
5169 if (err)
5170 goto done;
5172 switch (obj_type) {
5173 case GOT_OBJ_TYPE_BLOB:
5174 err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
5175 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
5176 s->label1, s->label2, tog_diff_algo, s->diff_context,
5177 s->ignore_whitespace, s->force_text_diff, NULL, s->repo,
5178 s->f);
5179 break;
5180 case GOT_OBJ_TYPE_TREE:
5181 err = got_diff_objects_as_trees(&s->lines, &s->nlines,
5182 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
5183 tog_diff_algo, s->diff_context, s->ignore_whitespace,
5184 s->force_text_diff, NULL, s->repo, s->f);
5185 break;
5186 case GOT_OBJ_TYPE_COMMIT: {
5187 const struct got_object_id_queue *parent_ids;
5188 struct got_object_qid *pid;
5189 struct got_commit_object *commit2;
5190 struct got_reflist_head *refs;
5191 size_t nlines = 0;
5192 struct got_diffstat_cb_arg dsa = {
5193 0, 0, 0, 0, 0, 0,
5194 &changed_paths,
5195 s->ignore_whitespace,
5196 s->force_text_diff,
5197 tog_diff_algo
5200 lines = malloc(sizeof(*lines));
5201 if (lines == NULL) {
5202 err = got_error_from_errno("malloc");
5203 goto done;
5206 /* build diff first in tmp file then append to commit info */
5207 err = got_diff_objects_as_commits(&lines, &nlines,
5208 s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
5209 tog_diff_algo, s->diff_context, s->ignore_whitespace,
5210 s->force_text_diff, &dsa, s->repo, tmp_diff_file);
5211 if (err)
5212 break;
5214 err = got_object_open_as_commit(&commit2, s->repo, s->id2);
5215 if (err)
5216 goto done;
5217 refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
5218 /* Show commit info if we're diffing to a parent/root commit. */
5219 if (s->id1 == NULL) {
5220 err = write_commit_info(&s->lines, &s->nlines, s->id2,
5221 refs, s->repo, s->ignore_whitespace,
5222 s->force_text_diff, &dsa, s->f);
5223 if (err)
5224 goto done;
5225 } else {
5226 parent_ids = got_object_commit_get_parent_ids(commit2);
5227 STAILQ_FOREACH(pid, parent_ids, entry) {
5228 if (got_object_id_cmp(s->id1, &pid->id) == 0) {
5229 err = write_commit_info(&s->lines,
5230 &s->nlines, s->id2, refs, s->repo,
5231 s->ignore_whitespace,
5232 s->force_text_diff, &dsa, s->f);
5233 if (err)
5234 goto done;
5235 break;
5239 got_object_commit_close(commit2);
5241 err = cat_diff(s->f, tmp_diff_file, &s->lines, &s->nlines,
5242 lines, nlines);
5243 break;
5245 default:
5246 err = got_error(GOT_ERR_OBJ_TYPE);
5247 break;
5249 done:
5250 free(lines);
5251 got_pathlist_free(&changed_paths, GOT_PATHLIST_FREE_ALL);
5252 if (s->f && fflush(s->f) != 0 && err == NULL)
5253 err = got_error_from_errno("fflush");
5254 if (tmp_diff_file && fclose(tmp_diff_file) == EOF && err == NULL)
5255 err = got_error_from_errno("fclose");
5256 return err;
5259 static void
5260 diff_view_indicate_progress(struct tog_view *view)
5262 mvwaddstr(view->window, 0, 0, "diffing...");
5263 update_panels();
5264 doupdate();
5267 static const struct got_error *
5268 search_start_diff_view(struct tog_view *view)
5270 struct tog_diff_view_state *s = &view->state.diff;
5272 s->matched_line = 0;
5273 return NULL;
5276 static void
5277 search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
5278 size_t *nlines, int **first, int **last, int **match, int **selected)
5280 struct tog_diff_view_state *s = &view->state.diff;
5282 *f = s->f;
5283 *nlines = s->nlines;
5284 *line_offsets = NULL;
5285 *match = &s->matched_line;
5286 *first = &s->first_displayed_line;
5287 *last = &s->last_displayed_line;
5288 *selected = &s->selected_line;
5291 static const struct got_error *
5292 search_next_view_match(struct tog_view *view)
5294 const struct got_error *err = NULL;
5295 FILE *f;
5296 int lineno;
5297 char *line = NULL;
5298 size_t linesize = 0;
5299 ssize_t linelen;
5300 off_t *line_offsets;
5301 size_t nlines = 0;
5302 int *first, *last, *match, *selected;
5304 if (!view->search_setup)
5305 return got_error_msg(GOT_ERR_NOT_IMPL,
5306 "view search not supported");
5307 view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
5308 &match, &selected);
5310 if (!view->searching) {
5311 view->search_next_done = TOG_SEARCH_HAVE_MORE;
5312 return NULL;
5315 if (*match) {
5316 if (view->searching == TOG_SEARCH_FORWARD)
5317 lineno = *first + 1;
5318 else
5319 lineno = *first - 1;
5320 } else
5321 lineno = *first - 1 + *selected;
5323 while (1) {
5324 off_t offset;
5326 if (lineno <= 0 || lineno > nlines) {
5327 if (*match == 0) {
5328 view->search_next_done = TOG_SEARCH_HAVE_MORE;
5329 break;
5332 if (view->searching == TOG_SEARCH_FORWARD)
5333 lineno = 1;
5334 else
5335 lineno = nlines;
5338 offset = view->type == TOG_VIEW_DIFF ?
5339 view->state.diff.lines[lineno - 1].offset :
5340 line_offsets[lineno - 1];
5341 if (fseeko(f, offset, SEEK_SET) != 0) {
5342 free(line);
5343 return got_error_from_errno("fseeko");
5345 linelen = getline(&line, &linesize, f);
5346 if (linelen != -1) {
5347 char *exstr;
5348 err = expand_tab(&exstr, line);
5349 if (err)
5350 break;
5351 if (match_line(exstr, &view->regex, 1,
5352 &view->regmatch)) {
5353 view->search_next_done = TOG_SEARCH_HAVE_MORE;
5354 *match = lineno;
5355 free(exstr);
5356 break;
5358 free(exstr);
5360 if (view->searching == TOG_SEARCH_FORWARD)
5361 lineno++;
5362 else
5363 lineno--;
5365 free(line);
5367 if (*match) {
5368 *first = *match;
5369 *selected = 1;
5372 return err;
5375 static const struct got_error *
5376 close_diff_view(struct tog_view *view)
5378 const struct got_error *err = NULL;
5379 struct tog_diff_view_state *s = &view->state.diff;
5381 free(s->id1);
5382 s->id1 = NULL;
5383 free(s->id2);
5384 s->id2 = NULL;
5385 if (s->f && fclose(s->f) == EOF)
5386 err = got_error_from_errno("fclose");
5387 s->f = NULL;
5388 if (s->f1 && fclose(s->f1) == EOF && err == NULL)
5389 err = got_error_from_errno("fclose");
5390 s->f1 = NULL;
5391 if (s->f2 && fclose(s->f2) == EOF && err == NULL)
5392 err = got_error_from_errno("fclose");
5393 s->f2 = NULL;
5394 if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
5395 err = got_error_from_errno("close");
5396 s->fd1 = -1;
5397 if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
5398 err = got_error_from_errno("close");
5399 s->fd2 = -1;
5400 free(s->lines);
5401 s->lines = NULL;
5402 s->nlines = 0;
5403 return err;
5406 static const struct got_error *
5407 open_diff_view(struct tog_view *view, struct got_object_id *id1,
5408 struct got_object_id *id2, const char *label1, const char *label2,
5409 int diff_context, int ignore_whitespace, int force_text_diff,
5410 struct tog_view *parent_view, struct got_repository *repo)
5412 const struct got_error *err;
5413 struct tog_diff_view_state *s = &view->state.diff;
5415 memset(s, 0, sizeof(*s));
5416 s->fd1 = -1;
5417 s->fd2 = -1;
5419 if (id1 != NULL && id2 != NULL) {
5420 int type1, type2;
5422 err = got_object_get_type(&type1, repo, id1);
5423 if (err)
5424 goto done;
5425 err = got_object_get_type(&type2, repo, id2);
5426 if (err)
5427 goto done;
5429 if (type1 != type2) {
5430 err = got_error(GOT_ERR_OBJ_TYPE);
5431 goto done;
5434 s->first_displayed_line = 1;
5435 s->last_displayed_line = view->nlines;
5436 s->selected_line = 1;
5437 s->repo = repo;
5438 s->id1 = id1;
5439 s->id2 = id2;
5440 s->label1 = label1;
5441 s->label2 = label2;
5443 if (id1) {
5444 s->id1 = got_object_id_dup(id1);
5445 if (s->id1 == NULL) {
5446 err = got_error_from_errno("got_object_id_dup");
5447 goto done;
5449 } else
5450 s->id1 = NULL;
5452 s->id2 = got_object_id_dup(id2);
5453 if (s->id2 == NULL) {
5454 err = got_error_from_errno("got_object_id_dup");
5455 goto done;
5458 s->f1 = got_opentemp();
5459 if (s->f1 == NULL) {
5460 err = got_error_from_errno("got_opentemp");
5461 goto done;
5464 s->f2 = got_opentemp();
5465 if (s->f2 == NULL) {
5466 err = got_error_from_errno("got_opentemp");
5467 goto done;
5470 s->fd1 = got_opentempfd();
5471 if (s->fd1 == -1) {
5472 err = got_error_from_errno("got_opentempfd");
5473 goto done;
5476 s->fd2 = got_opentempfd();
5477 if (s->fd2 == -1) {
5478 err = got_error_from_errno("got_opentempfd");
5479 goto done;
5482 s->diff_context = diff_context;
5483 s->ignore_whitespace = ignore_whitespace;
5484 s->force_text_diff = force_text_diff;
5485 s->parent_view = parent_view;
5486 s->repo = repo;
5488 if (has_colors() && getenv("TOG_COLORS") != NULL && !using_mock_io) {
5489 int rc;
5491 rc = init_pair(GOT_DIFF_LINE_MINUS,
5492 get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5493 if (rc != ERR)
5494 rc = init_pair(GOT_DIFF_LINE_PLUS,
5495 get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5496 if (rc != ERR)
5497 rc = init_pair(GOT_DIFF_LINE_HUNK,
5498 get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5499 if (rc != ERR)
5500 rc = init_pair(GOT_DIFF_LINE_META,
5501 get_color_value("TOG_COLOR_DIFF_META"), -1);
5502 if (rc != ERR)
5503 rc = init_pair(GOT_DIFF_LINE_CHANGES,
5504 get_color_value("TOG_COLOR_DIFF_META"), -1);
5505 if (rc != ERR)
5506 rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5507 get_color_value("TOG_COLOR_DIFF_META"), -1);
5508 if (rc != ERR)
5509 rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5510 get_color_value("TOG_COLOR_DIFF_META"), -1);
5511 if (rc != ERR)
5512 rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5513 get_color_value("TOG_COLOR_AUTHOR"), -1);
5514 if (rc != ERR)
5515 rc = init_pair(GOT_DIFF_LINE_DATE,
5516 get_color_value("TOG_COLOR_DATE"), -1);
5517 if (rc == ERR) {
5518 err = got_error(GOT_ERR_RANGE);
5519 goto done;
5523 if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5524 view_is_splitscreen(view))
5525 show_log_view(parent_view); /* draw border */
5526 diff_view_indicate_progress(view);
5528 err = create_diff(s);
5530 view->show = show_diff_view;
5531 view->input = input_diff_view;
5532 view->reset = reset_diff_view;
5533 view->close = close_diff_view;
5534 view->search_start = search_start_diff_view;
5535 view->search_setup = search_setup_diff_view;
5536 view->search_next = search_next_view_match;
5537 done:
5538 if (err) {
5539 if (view->close == NULL)
5540 close_diff_view(view);
5541 view_close(view);
5543 return err;
5546 static const struct got_error *
5547 show_diff_view(struct tog_view *view)
5549 const struct got_error *err;
5550 struct tog_diff_view_state *s = &view->state.diff;
5551 char *id_str1 = NULL, *id_str2, *header;
5552 const char *label1, *label2;
5554 if (s->id1) {
5555 err = got_object_id_str(&id_str1, s->id1);
5556 if (err)
5557 return err;
5558 label1 = s->label1 ? s->label1 : id_str1;
5559 } else
5560 label1 = "/dev/null";
5562 err = got_object_id_str(&id_str2, s->id2);
5563 if (err)
5564 return err;
5565 label2 = s->label2 ? s->label2 : id_str2;
5567 if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5568 err = got_error_from_errno("asprintf");
5569 free(id_str1);
5570 free(id_str2);
5571 return err;
5573 free(id_str1);
5574 free(id_str2);
5576 err = draw_file(view, header);
5577 free(header);
5578 return err;
5581 static const struct got_error *
5582 set_selected_commit(struct tog_diff_view_state *s,
5583 struct commit_queue_entry *entry)
5585 const struct got_error *err;
5586 const struct got_object_id_queue *parent_ids;
5587 struct got_commit_object *selected_commit;
5588 struct got_object_qid *pid;
5590 free(s->id2);
5591 s->id2 = got_object_id_dup(entry->id);
5592 if (s->id2 == NULL)
5593 return got_error_from_errno("got_object_id_dup");
5595 err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5596 if (err)
5597 return err;
5598 parent_ids = got_object_commit_get_parent_ids(selected_commit);
5599 free(s->id1);
5600 pid = STAILQ_FIRST(parent_ids);
5601 s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5602 got_object_commit_close(selected_commit);
5603 return NULL;
5606 static const struct got_error *
5607 reset_diff_view(struct tog_view *view)
5609 struct tog_diff_view_state *s = &view->state.diff;
5611 view->count = 0;
5612 wclear(view->window);
5613 s->first_displayed_line = 1;
5614 s->last_displayed_line = view->nlines;
5615 s->matched_line = 0;
5616 diff_view_indicate_progress(view);
5617 return create_diff(s);
5620 static void
5621 diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5623 int start, i;
5625 i = start = s->first_displayed_line - 1;
5627 while (s->lines[i].type != type) {
5628 if (i == 0)
5629 i = s->nlines - 1;
5630 if (--i == start)
5631 return; /* do nothing, requested type not in file */
5634 s->selected_line = 1;
5635 s->first_displayed_line = i;
5638 static void
5639 diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5641 int start, i;
5643 i = start = s->first_displayed_line + 1;
5645 while (s->lines[i].type != type) {
5646 if (i == s->nlines - 1)
5647 i = 0;
5648 if (++i == start)
5649 return; /* do nothing, requested type not in file */
5652 s->selected_line = 1;
5653 s->first_displayed_line = i;
5656 static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5657 int, int, int);
5658 static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5659 int, int);
5661 static const struct got_error *
5662 input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5664 const struct got_error *err = NULL;
5665 struct tog_diff_view_state *s = &view->state.diff;
5666 struct tog_log_view_state *ls;
5667 struct commit_queue_entry *old_selected_entry;
5668 char *line = NULL;
5669 size_t linesize = 0;
5670 ssize_t linelen;
5671 int i, nscroll = view->nlines - 1, up = 0;
5673 s->lineno = s->first_displayed_line - 1 + s->selected_line;
5675 switch (ch) {
5676 case '0':
5677 case '$':
5678 case KEY_RIGHT:
5679 case 'l':
5680 case KEY_LEFT:
5681 case 'h':
5682 horizontal_scroll_input(view, ch);
5683 break;
5684 case 'a':
5685 case 'w':
5686 if (ch == 'a') {
5687 s->force_text_diff = !s->force_text_diff;
5688 view->action = s->force_text_diff ?
5689 "force ASCII text enabled" :
5690 "force ASCII text disabled";
5692 else if (ch == 'w') {
5693 s->ignore_whitespace = !s->ignore_whitespace;
5694 view->action = s->ignore_whitespace ?
5695 "ignore whitespace enabled" :
5696 "ignore whitespace disabled";
5698 err = reset_diff_view(view);
5699 break;
5700 case 'g':
5701 case KEY_HOME:
5702 s->first_displayed_line = 1;
5703 view->count = 0;
5704 break;
5705 case 'G':
5706 case KEY_END:
5707 view->count = 0;
5708 if (s->eof)
5709 break;
5711 s->first_displayed_line = (s->nlines - view->nlines) + 2;
5712 s->eof = 1;
5713 break;
5714 case 'k':
5715 case KEY_UP:
5716 case CTRL('p'):
5717 if (s->first_displayed_line > 1)
5718 s->first_displayed_line--;
5719 else
5720 view->count = 0;
5721 break;
5722 case CTRL('u'):
5723 case 'u':
5724 nscroll /= 2;
5725 /* FALL THROUGH */
5726 case KEY_PPAGE:
5727 case CTRL('b'):
5728 case 'b':
5729 if (s->first_displayed_line == 1) {
5730 view->count = 0;
5731 break;
5733 i = 0;
5734 while (i++ < nscroll && s->first_displayed_line > 1)
5735 s->first_displayed_line--;
5736 break;
5737 case 'j':
5738 case KEY_DOWN:
5739 case CTRL('n'):
5740 if (!s->eof)
5741 s->first_displayed_line++;
5742 else
5743 view->count = 0;
5744 break;
5745 case CTRL('d'):
5746 case 'd':
5747 nscroll /= 2;
5748 /* FALL THROUGH */
5749 case KEY_NPAGE:
5750 case CTRL('f'):
5751 case 'f':
5752 case ' ':
5753 if (s->eof) {
5754 view->count = 0;
5755 break;
5757 i = 0;
5758 while (!s->eof && i++ < nscroll) {
5759 linelen = getline(&line, &linesize, s->f);
5760 s->first_displayed_line++;
5761 if (linelen == -1) {
5762 if (feof(s->f)) {
5763 s->eof = 1;
5764 } else
5765 err = got_ferror(s->f, GOT_ERR_IO);
5766 break;
5769 free(line);
5770 break;
5771 case '(':
5772 diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5773 break;
5774 case ')':
5775 diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5776 break;
5777 case '{':
5778 diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5779 break;
5780 case '}':
5781 diff_next_index(s, GOT_DIFF_LINE_HUNK);
5782 break;
5783 case '[':
5784 if (s->diff_context > 0) {
5785 s->diff_context--;
5786 s->matched_line = 0;
5787 diff_view_indicate_progress(view);
5788 err = create_diff(s);
5789 if (s->first_displayed_line + view->nlines - 1 >
5790 s->nlines) {
5791 s->first_displayed_line = 1;
5792 s->last_displayed_line = view->nlines;
5794 } else
5795 view->count = 0;
5796 break;
5797 case ']':
5798 if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5799 s->diff_context++;
5800 s->matched_line = 0;
5801 diff_view_indicate_progress(view);
5802 err = create_diff(s);
5803 } else
5804 view->count = 0;
5805 break;
5806 case '<':
5807 case ',':
5808 case 'K':
5809 up = 1;
5810 /* FALL THROUGH */
5811 case '>':
5812 case '.':
5813 case 'J':
5814 if (s->parent_view == NULL) {
5815 view->count = 0;
5816 break;
5818 s->parent_view->count = view->count;
5820 if (s->parent_view->type == TOG_VIEW_LOG) {
5821 ls = &s->parent_view->state.log;
5822 old_selected_entry = ls->selected_entry;
5824 err = input_log_view(NULL, s->parent_view,
5825 up ? KEY_UP : KEY_DOWN);
5826 if (err)
5827 break;
5828 view->count = s->parent_view->count;
5830 if (old_selected_entry == ls->selected_entry)
5831 break;
5833 err = set_selected_commit(s, ls->selected_entry);
5834 if (err)
5835 break;
5836 } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5837 struct tog_blame_view_state *bs;
5838 struct got_object_id *id, *prev_id;
5840 bs = &s->parent_view->state.blame;
5841 prev_id = get_annotation_for_line(bs->blame.lines,
5842 bs->blame.nlines, bs->last_diffed_line);
5844 err = input_blame_view(&view, s->parent_view,
5845 up ? KEY_UP : KEY_DOWN);
5846 if (err)
5847 break;
5848 view->count = s->parent_view->count;
5850 if (prev_id == NULL)
5851 break;
5852 id = get_selected_commit_id(bs->blame.lines,
5853 bs->blame.nlines, bs->first_displayed_line,
5854 bs->selected_line);
5855 if (id == NULL)
5856 break;
5858 if (!got_object_id_cmp(prev_id, id))
5859 break;
5861 err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5862 if (err)
5863 break;
5865 s->first_displayed_line = 1;
5866 s->last_displayed_line = view->nlines;
5867 s->matched_line = 0;
5868 view->x = 0;
5870 diff_view_indicate_progress(view);
5871 err = create_diff(s);
5872 break;
5873 default:
5874 view->count = 0;
5875 break;
5878 return err;
5881 static const struct got_error *
5882 cmd_diff(int argc, char *argv[])
5884 const struct got_error *error;
5885 struct got_repository *repo = NULL;
5886 struct got_worktree *worktree = NULL;
5887 struct got_object_id *id1 = NULL, *id2 = NULL;
5888 char *repo_path = NULL, *cwd = NULL;
5889 char *id_str1 = NULL, *id_str2 = NULL;
5890 char *label1 = NULL, *label2 = NULL;
5891 int diff_context = 3, ignore_whitespace = 0;
5892 int ch, force_text_diff = 0;
5893 const char *errstr;
5894 struct tog_view *view;
5895 int *pack_fds = NULL;
5897 while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5898 switch (ch) {
5899 case 'a':
5900 force_text_diff = 1;
5901 break;
5902 case 'C':
5903 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5904 &errstr);
5905 if (errstr != NULL)
5906 errx(1, "number of context lines is %s: %s",
5907 errstr, errstr);
5908 break;
5909 case 'r':
5910 repo_path = realpath(optarg, NULL);
5911 if (repo_path == NULL)
5912 return got_error_from_errno2("realpath",
5913 optarg);
5914 got_path_strip_trailing_slashes(repo_path);
5915 break;
5916 case 'w':
5917 ignore_whitespace = 1;
5918 break;
5919 default:
5920 usage_diff();
5921 /* NOTREACHED */
5925 argc -= optind;
5926 argv += optind;
5928 if (argc == 0) {
5929 usage_diff(); /* TODO show local worktree changes */
5930 } else if (argc == 2) {
5931 id_str1 = argv[0];
5932 id_str2 = argv[1];
5933 } else
5934 usage_diff();
5936 error = got_repo_pack_fds_open(&pack_fds);
5937 if (error)
5938 goto done;
5940 if (repo_path == NULL) {
5941 cwd = getcwd(NULL, 0);
5942 if (cwd == NULL)
5943 return got_error_from_errno("getcwd");
5944 error = got_worktree_open(&worktree, cwd);
5945 if (error && error->code != GOT_ERR_NOT_WORKTREE)
5946 goto done;
5947 if (worktree)
5948 repo_path =
5949 strdup(got_worktree_get_repo_path(worktree));
5950 else
5951 repo_path = strdup(cwd);
5952 if (repo_path == NULL) {
5953 error = got_error_from_errno("strdup");
5954 goto done;
5958 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5959 if (error)
5960 goto done;
5962 init_curses();
5964 error = apply_unveil(got_repo_get_path(repo), NULL);
5965 if (error)
5966 goto done;
5968 error = tog_load_refs(repo, 0);
5969 if (error)
5970 goto done;
5972 error = got_repo_match_object_id(&id1, &label1, id_str1,
5973 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5974 if (error)
5975 goto done;
5977 error = got_repo_match_object_id(&id2, &label2, id_str2,
5978 GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5979 if (error)
5980 goto done;
5982 view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5983 if (view == NULL) {
5984 error = got_error_from_errno("view_open");
5985 goto done;
5987 error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5988 ignore_whitespace, force_text_diff, NULL, repo);
5989 if (error)
5990 goto done;
5991 error = view_loop(view);
5992 done:
5993 free(label1);
5994 free(label2);
5995 free(repo_path);
5996 free(cwd);
5997 if (repo) {
5998 const struct got_error *close_err = got_repo_close(repo);
5999 if (error == NULL)
6000 error = close_err;
6002 if (worktree)
6003 got_worktree_close(worktree);
6004 if (pack_fds) {
6005 const struct got_error *pack_err =
6006 got_repo_pack_fds_close(pack_fds);
6007 if (error == NULL)
6008 error = pack_err;
6010 tog_free_refs();
6011 return error;
6014 __dead static void
6015 usage_blame(void)
6017 endwin();
6018 fprintf(stderr,
6019 "usage: %s blame [-c commit] [-r repository-path] path\n",
6020 getprogname());
6021 exit(1);
6024 struct tog_blame_line {
6025 int annotated;
6026 struct got_object_id *id;
6029 static const struct got_error *
6030 draw_blame(struct tog_view *view)
6032 struct tog_blame_view_state *s = &view->state.blame;
6033 struct tog_blame *blame = &s->blame;
6034 regmatch_t *regmatch = &view->regmatch;
6035 const struct got_error *err;
6036 int lineno = 0, nprinted = 0;
6037 char *line = NULL;
6038 size_t linesize = 0;
6039 ssize_t linelen;
6040 wchar_t *wline;
6041 int width;
6042 struct tog_blame_line *blame_line;
6043 struct got_object_id *prev_id = NULL;
6044 char *id_str;
6045 struct tog_color *tc;
6047 err = got_object_id_str(&id_str, &s->blamed_commit->id);
6048 if (err)
6049 return err;
6051 rewind(blame->f);
6052 werase(view->window);
6054 if (asprintf(&line, "commit %s", id_str) == -1) {
6055 err = got_error_from_errno("asprintf");
6056 free(id_str);
6057 return err;
6060 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
6061 free(line);
6062 line = NULL;
6063 if (err)
6064 return err;
6065 if (view_needs_focus_indication(view))
6066 wstandout(view->window);
6067 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6068 if (tc)
6069 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6070 waddwstr(view->window, wline);
6071 while (width++ < view->ncols)
6072 waddch(view->window, ' ');
6073 if (tc)
6074 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6075 if (view_needs_focus_indication(view))
6076 wstandend(view->window);
6077 free(wline);
6078 wline = NULL;
6080 if (view->gline > blame->nlines)
6081 view->gline = blame->nlines;
6083 if (tog_io.wait_for_ui) {
6084 struct tog_blame_thread_args *bta = &s->blame.thread_args;
6085 int rc;
6087 rc = pthread_cond_wait(&bta->blame_complete, &tog_mutex);
6088 if (rc)
6089 return got_error_set_errno(rc, "pthread_cond_wait");
6090 tog_io.wait_for_ui = 0;
6093 if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
6094 s->first_displayed_line - 1 + s->selected_line, blame->nlines,
6095 s->blame_complete ? "" : "annotating... ", s->path) == -1) {
6096 free(id_str);
6097 return got_error_from_errno("asprintf");
6099 free(id_str);
6100 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
6101 free(line);
6102 line = NULL;
6103 if (err)
6104 return err;
6105 waddwstr(view->window, wline);
6106 free(wline);
6107 wline = NULL;
6108 if (width < view->ncols - 1)
6109 waddch(view->window, '\n');
6111 s->eof = 0;
6112 view->maxx = 0;
6113 while (nprinted < view->nlines - 2) {
6114 linelen = getline(&line, &linesize, blame->f);
6115 if (linelen == -1) {
6116 if (feof(blame->f)) {
6117 s->eof = 1;
6118 break;
6120 free(line);
6121 return got_ferror(blame->f, GOT_ERR_IO);
6123 if (++lineno < s->first_displayed_line)
6124 continue;
6125 if (view->gline && !gotoline(view, &lineno, &nprinted))
6126 continue;
6128 /* Set view->maxx based on full line length. */
6129 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
6130 if (err) {
6131 free(line);
6132 return err;
6134 free(wline);
6135 wline = NULL;
6136 view->maxx = MAX(view->maxx, width);
6138 if (nprinted == s->selected_line - 1)
6139 wstandout(view->window);
6141 if (blame->nlines > 0) {
6142 blame_line = &blame->lines[lineno - 1];
6143 if (blame_line->annotated && prev_id &&
6144 got_object_id_cmp(prev_id, blame_line->id) == 0 &&
6145 !(nprinted == s->selected_line - 1)) {
6146 waddstr(view->window, " ");
6147 } else if (blame_line->annotated) {
6148 char *id_str;
6149 err = got_object_id_str(&id_str,
6150 blame_line->id);
6151 if (err) {
6152 free(line);
6153 return err;
6155 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6156 if (tc)
6157 wattr_on(view->window,
6158 COLOR_PAIR(tc->colorpair), NULL);
6159 wprintw(view->window, "%.8s", id_str);
6160 if (tc)
6161 wattr_off(view->window,
6162 COLOR_PAIR(tc->colorpair), NULL);
6163 free(id_str);
6164 prev_id = blame_line->id;
6165 } else {
6166 waddstr(view->window, "........");
6167 prev_id = NULL;
6169 } else {
6170 waddstr(view->window, "........");
6171 prev_id = NULL;
6174 if (nprinted == s->selected_line - 1)
6175 wstandend(view->window);
6176 waddstr(view->window, " ");
6178 if (view->ncols <= 9) {
6179 width = 9;
6180 } else if (s->first_displayed_line + nprinted ==
6181 s->matched_line &&
6182 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
6183 err = add_matched_line(&width, line, view->ncols - 9, 9,
6184 view->window, view->x, regmatch);
6185 if (err) {
6186 free(line);
6187 return err;
6189 width += 9;
6190 } else {
6191 int skip;
6192 err = format_line(&wline, &width, &skip, line,
6193 view->x, view->ncols - 9, 9, 1);
6194 if (err) {
6195 free(line);
6196 return err;
6198 waddwstr(view->window, &wline[skip]);
6199 width += 9;
6200 free(wline);
6201 wline = NULL;
6204 if (width <= view->ncols - 1)
6205 waddch(view->window, '\n');
6206 if (++nprinted == 1)
6207 s->first_displayed_line = lineno;
6209 free(line);
6210 s->last_displayed_line = lineno;
6212 view_border(view);
6214 return NULL;
6217 static const struct got_error *
6218 blame_cb(void *arg, int nlines, int lineno,
6219 struct got_commit_object *commit, struct got_object_id *id)
6221 const struct got_error *err = NULL;
6222 struct tog_blame_cb_args *a = arg;
6223 struct tog_blame_line *line;
6224 int errcode;
6226 if (nlines != a->nlines ||
6227 (lineno != -1 && lineno < 1) || lineno > a->nlines)
6228 return got_error(GOT_ERR_RANGE);
6230 errcode = pthread_mutex_lock(&tog_mutex);
6231 if (errcode)
6232 return got_error_set_errno(errcode, "pthread_mutex_lock");
6234 if (*a->quit) { /* user has quit the blame view */
6235 err = got_error(GOT_ERR_ITER_COMPLETED);
6236 goto done;
6239 if (lineno == -1)
6240 goto done; /* no change in this commit */
6242 line = &a->lines[lineno - 1];
6243 if (line->annotated)
6244 goto done;
6246 line->id = got_object_id_dup(id);
6247 if (line->id == NULL) {
6248 err = got_error_from_errno("got_object_id_dup");
6249 goto done;
6251 line->annotated = 1;
6252 done:
6253 errcode = pthread_mutex_unlock(&tog_mutex);
6254 if (errcode)
6255 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
6256 return err;
6259 static void *
6260 blame_thread(void *arg)
6262 const struct got_error *err, *close_err;
6263 struct tog_blame_thread_args *ta = arg;
6264 struct tog_blame_cb_args *a = ta->cb_args;
6265 int errcode, fd1 = -1, fd2 = -1;
6266 FILE *f1 = NULL, *f2 = NULL;
6268 fd1 = got_opentempfd();
6269 if (fd1 == -1)
6270 return (void *)got_error_from_errno("got_opentempfd");
6272 fd2 = got_opentempfd();
6273 if (fd2 == -1) {
6274 err = got_error_from_errno("got_opentempfd");
6275 goto done;
6278 f1 = got_opentemp();
6279 if (f1 == NULL) {
6280 err = (void *)got_error_from_errno("got_opentemp");
6281 goto done;
6283 f2 = got_opentemp();
6284 if (f2 == NULL) {
6285 err = (void *)got_error_from_errno("got_opentemp");
6286 goto done;
6289 err = block_signals_used_by_main_thread();
6290 if (err)
6291 goto done;
6293 err = got_blame(ta->path, a->commit_id, ta->repo,
6294 tog_diff_algo, blame_cb, ta->cb_args,
6295 ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
6296 if (err && err->code == GOT_ERR_CANCELLED)
6297 err = NULL;
6299 errcode = pthread_mutex_lock(&tog_mutex);
6300 if (errcode) {
6301 err = got_error_set_errno(errcode, "pthread_mutex_lock");
6302 goto done;
6305 close_err = got_repo_close(ta->repo);
6306 if (err == NULL)
6307 err = close_err;
6308 ta->repo = NULL;
6309 *ta->complete = 1;
6311 if (tog_io.wait_for_ui) {
6312 errcode = pthread_cond_signal(&ta->blame_complete);
6313 if (errcode && err == NULL)
6314 err = got_error_set_errno(errcode,
6315 "pthread_cond_signal");
6318 errcode = pthread_mutex_unlock(&tog_mutex);
6319 if (errcode && err == NULL)
6320 err = got_error_set_errno(errcode, "pthread_mutex_unlock");
6322 done:
6323 if (fd1 != -1 && close(fd1) == -1 && err == NULL)
6324 err = got_error_from_errno("close");
6325 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
6326 err = got_error_from_errno("close");
6327 if (f1 && fclose(f1) == EOF && err == NULL)
6328 err = got_error_from_errno("fclose");
6329 if (f2 && fclose(f2) == EOF && err == NULL)
6330 err = got_error_from_errno("fclose");
6332 return (void *)err;
6335 static struct got_object_id *
6336 get_selected_commit_id(struct tog_blame_line *lines, int nlines,
6337 int first_displayed_line, int selected_line)
6339 struct tog_blame_line *line;
6341 if (nlines <= 0)
6342 return NULL;
6344 line = &lines[first_displayed_line - 1 + selected_line - 1];
6345 if (!line->annotated)
6346 return NULL;
6348 return line->id;
6351 static struct got_object_id *
6352 get_annotation_for_line(struct tog_blame_line *lines, int nlines,
6353 int lineno)
6355 struct tog_blame_line *line;
6357 if (nlines <= 0 || lineno >= nlines)
6358 return NULL;
6360 line = &lines[lineno - 1];
6361 if (!line->annotated)
6362 return NULL;
6364 return line->id;
6367 static const struct got_error *
6368 stop_blame(struct tog_blame *blame)
6370 const struct got_error *err = NULL;
6371 int i;
6373 if (blame->thread) {
6374 int errcode;
6375 errcode = pthread_mutex_unlock(&tog_mutex);
6376 if (errcode)
6377 return got_error_set_errno(errcode,
6378 "pthread_mutex_unlock");
6379 errcode = pthread_join(blame->thread, (void **)&err);
6380 if (errcode)
6381 return got_error_set_errno(errcode, "pthread_join");
6382 errcode = pthread_mutex_lock(&tog_mutex);
6383 if (errcode)
6384 return got_error_set_errno(errcode,
6385 "pthread_mutex_lock");
6386 if (err && err->code == GOT_ERR_ITER_COMPLETED)
6387 err = NULL;
6388 blame->thread = NULL;
6390 if (blame->thread_args.repo) {
6391 const struct got_error *close_err;
6392 close_err = got_repo_close(blame->thread_args.repo);
6393 if (err == NULL)
6394 err = close_err;
6395 blame->thread_args.repo = NULL;
6397 if (blame->f) {
6398 if (fclose(blame->f) == EOF && err == NULL)
6399 err = got_error_from_errno("fclose");
6400 blame->f = NULL;
6402 if (blame->lines) {
6403 for (i = 0; i < blame->nlines; i++)
6404 free(blame->lines[i].id);
6405 free(blame->lines);
6406 blame->lines = NULL;
6408 free(blame->cb_args.commit_id);
6409 blame->cb_args.commit_id = NULL;
6410 if (blame->pack_fds) {
6411 const struct got_error *pack_err =
6412 got_repo_pack_fds_close(blame->pack_fds);
6413 if (err == NULL)
6414 err = pack_err;
6415 blame->pack_fds = NULL;
6417 return err;
6420 static const struct got_error *
6421 cancel_blame_view(void *arg)
6423 const struct got_error *err = NULL;
6424 int *done = arg;
6425 int errcode;
6427 errcode = pthread_mutex_lock(&tog_mutex);
6428 if (errcode)
6429 return got_error_set_errno(errcode,
6430 "pthread_mutex_unlock");
6432 if (*done)
6433 err = got_error(GOT_ERR_CANCELLED);
6435 errcode = pthread_mutex_unlock(&tog_mutex);
6436 if (errcode)
6437 return got_error_set_errno(errcode,
6438 "pthread_mutex_lock");
6440 return err;
6443 static const struct got_error *
6444 run_blame(struct tog_view *view)
6446 struct tog_blame_view_state *s = &view->state.blame;
6447 struct tog_blame *blame = &s->blame;
6448 const struct got_error *err = NULL;
6449 struct got_commit_object *commit = NULL;
6450 struct got_blob_object *blob = NULL;
6451 struct got_repository *thread_repo = NULL;
6452 struct got_object_id *obj_id = NULL;
6453 int obj_type, fd = -1;
6454 int *pack_fds = NULL;
6456 err = got_object_open_as_commit(&commit, s->repo,
6457 &s->blamed_commit->id);
6458 if (err)
6459 return err;
6461 fd = got_opentempfd();
6462 if (fd == -1) {
6463 err = got_error_from_errno("got_opentempfd");
6464 goto done;
6467 err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
6468 if (err)
6469 goto done;
6471 err = got_object_get_type(&obj_type, s->repo, obj_id);
6472 if (err)
6473 goto done;
6475 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6476 err = got_error(GOT_ERR_OBJ_TYPE);
6477 goto done;
6480 err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
6481 if (err)
6482 goto done;
6483 blame->f = got_opentemp();
6484 if (blame->f == NULL) {
6485 err = got_error_from_errno("got_opentemp");
6486 goto done;
6488 err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
6489 &blame->line_offsets, blame->f, blob);
6490 if (err)
6491 goto done;
6492 if (blame->nlines == 0) {
6493 s->blame_complete = 1;
6494 goto done;
6497 /* Don't include \n at EOF in the blame line count. */
6498 if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
6499 blame->nlines--;
6501 blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6502 if (blame->lines == NULL) {
6503 err = got_error_from_errno("calloc");
6504 goto done;
6507 err = got_repo_pack_fds_open(&pack_fds);
6508 if (err)
6509 goto done;
6510 err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6511 pack_fds);
6512 if (err)
6513 goto done;
6515 blame->pack_fds = pack_fds;
6516 blame->cb_args.view = view;
6517 blame->cb_args.lines = blame->lines;
6518 blame->cb_args.nlines = blame->nlines;
6519 blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6520 if (blame->cb_args.commit_id == NULL) {
6521 err = got_error_from_errno("got_object_id_dup");
6522 goto done;
6524 blame->cb_args.quit = &s->done;
6526 blame->thread_args.path = s->path;
6527 blame->thread_args.repo = thread_repo;
6528 blame->thread_args.cb_args = &blame->cb_args;
6529 blame->thread_args.complete = &s->blame_complete;
6530 blame->thread_args.cancel_cb = cancel_blame_view;
6531 blame->thread_args.cancel_arg = &s->done;
6532 s->blame_complete = 0;
6534 if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6535 s->first_displayed_line = 1;
6536 s->last_displayed_line = view->nlines;
6537 s->selected_line = 1;
6539 s->matched_line = 0;
6541 done:
6542 if (commit)
6543 got_object_commit_close(commit);
6544 if (fd != -1 && close(fd) == -1 && err == NULL)
6545 err = got_error_from_errno("close");
6546 if (blob)
6547 got_object_blob_close(blob);
6548 free(obj_id);
6549 if (err)
6550 stop_blame(blame);
6551 return err;
6554 static const struct got_error *
6555 open_blame_view(struct tog_view *view, char *path,
6556 struct got_object_id *commit_id, struct got_repository *repo)
6558 const struct got_error *err = NULL;
6559 struct tog_blame_view_state *s = &view->state.blame;
6561 STAILQ_INIT(&s->blamed_commits);
6563 s->path = strdup(path);
6564 if (s->path == NULL)
6565 return got_error_from_errno("strdup");
6567 err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6568 if (err) {
6569 free(s->path);
6570 return err;
6573 STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6574 s->first_displayed_line = 1;
6575 s->last_displayed_line = view->nlines;
6576 s->selected_line = 1;
6577 s->blame_complete = 0;
6578 s->repo = repo;
6579 s->commit_id = commit_id;
6580 memset(&s->blame, 0, sizeof(s->blame));
6582 STAILQ_INIT(&s->colors);
6583 if (has_colors() && getenv("TOG_COLORS") != NULL) {
6584 err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6585 get_color_value("TOG_COLOR_COMMIT"));
6586 if (err)
6587 return err;
6590 view->show = show_blame_view;
6591 view->input = input_blame_view;
6592 view->reset = reset_blame_view;
6593 view->close = close_blame_view;
6594 view->search_start = search_start_blame_view;
6595 view->search_setup = search_setup_blame_view;
6596 view->search_next = search_next_view_match;
6598 if (using_mock_io) {
6599 struct tog_blame_thread_args *bta = &s->blame.thread_args;
6600 int rc;
6602 rc = pthread_cond_init(&bta->blame_complete, NULL);
6603 if (rc)
6604 return got_error_set_errno(rc, "pthread_cond_init");
6607 return run_blame(view);
6610 static const struct got_error *
6611 close_blame_view(struct tog_view *view)
6613 const struct got_error *err = NULL;
6614 struct tog_blame_view_state *s = &view->state.blame;
6616 if (s->blame.thread)
6617 err = stop_blame(&s->blame);
6619 while (!STAILQ_EMPTY(&s->blamed_commits)) {
6620 struct got_object_qid *blamed_commit;
6621 blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6622 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6623 got_object_qid_free(blamed_commit);
6626 if (using_mock_io) {
6627 struct tog_blame_thread_args *bta = &s->blame.thread_args;
6628 int rc;
6630 rc = pthread_cond_destroy(&bta->blame_complete);
6631 if (rc && err == NULL)
6632 err = got_error_set_errno(rc, "pthread_cond_destroy");
6635 free(s->path);
6636 free_colors(&s->colors);
6637 return err;
6640 static const struct got_error *
6641 search_start_blame_view(struct tog_view *view)
6643 struct tog_blame_view_state *s = &view->state.blame;
6645 s->matched_line = 0;
6646 return NULL;
6649 static void
6650 search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6651 size_t *nlines, int **first, int **last, int **match, int **selected)
6653 struct tog_blame_view_state *s = &view->state.blame;
6655 *f = s->blame.f;
6656 *nlines = s->blame.nlines;
6657 *line_offsets = s->blame.line_offsets;
6658 *match = &s->matched_line;
6659 *first = &s->first_displayed_line;
6660 *last = &s->last_displayed_line;
6661 *selected = &s->selected_line;
6664 static const struct got_error *
6665 show_blame_view(struct tog_view *view)
6667 const struct got_error *err = NULL;
6668 struct tog_blame_view_state *s = &view->state.blame;
6669 int errcode;
6671 if (s->blame.thread == NULL && !s->blame_complete) {
6672 errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6673 &s->blame.thread_args);
6674 if (errcode)
6675 return got_error_set_errno(errcode, "pthread_create");
6677 if (!using_mock_io)
6678 halfdelay(1); /* fast refresh while annotating */
6681 if (s->blame_complete && !using_mock_io)
6682 halfdelay(10); /* disable fast refresh */
6684 err = draw_blame(view);
6686 view_border(view);
6687 return err;
6690 static const struct got_error *
6691 log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6692 struct got_repository *repo, struct got_object_id *id)
6694 struct tog_view *log_view;
6695 const struct got_error *err = NULL;
6697 *new_view = NULL;
6699 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6700 if (log_view == NULL)
6701 return got_error_from_errno("view_open");
6703 err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6704 if (err)
6705 view_close(log_view);
6706 else
6707 *new_view = log_view;
6709 return err;
6712 static const struct got_error *
6713 input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6715 const struct got_error *err = NULL, *thread_err = NULL;
6716 struct tog_view *diff_view;
6717 struct tog_blame_view_state *s = &view->state.blame;
6718 int eos, nscroll, begin_y = 0, begin_x = 0;
6720 eos = nscroll = view->nlines - 2;
6721 if (view_is_hsplit_top(view))
6722 --eos; /* border */
6724 switch (ch) {
6725 case '0':
6726 case '$':
6727 case KEY_RIGHT:
6728 case 'l':
6729 case KEY_LEFT:
6730 case 'h':
6731 horizontal_scroll_input(view, ch);
6732 break;
6733 case 'q':
6734 s->done = 1;
6735 break;
6736 case 'g':
6737 case KEY_HOME:
6738 s->selected_line = 1;
6739 s->first_displayed_line = 1;
6740 view->count = 0;
6741 break;
6742 case 'G':
6743 case KEY_END:
6744 if (s->blame.nlines < eos) {
6745 s->selected_line = s->blame.nlines;
6746 s->first_displayed_line = 1;
6747 } else {
6748 s->selected_line = eos;
6749 s->first_displayed_line = s->blame.nlines - (eos - 1);
6751 view->count = 0;
6752 break;
6753 case 'k':
6754 case KEY_UP:
6755 case CTRL('p'):
6756 if (s->selected_line > 1)
6757 s->selected_line--;
6758 else if (s->selected_line == 1 &&
6759 s->first_displayed_line > 1)
6760 s->first_displayed_line--;
6761 else
6762 view->count = 0;
6763 break;
6764 case CTRL('u'):
6765 case 'u':
6766 nscroll /= 2;
6767 /* FALL THROUGH */
6768 case KEY_PPAGE:
6769 case CTRL('b'):
6770 case 'b':
6771 if (s->first_displayed_line == 1) {
6772 if (view->count > 1)
6773 nscroll += nscroll;
6774 s->selected_line = MAX(1, s->selected_line - nscroll);
6775 view->count = 0;
6776 break;
6778 if (s->first_displayed_line > nscroll)
6779 s->first_displayed_line -= nscroll;
6780 else
6781 s->first_displayed_line = 1;
6782 break;
6783 case 'j':
6784 case KEY_DOWN:
6785 case CTRL('n'):
6786 if (s->selected_line < eos && s->first_displayed_line +
6787 s->selected_line <= s->blame.nlines)
6788 s->selected_line++;
6789 else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6790 s->first_displayed_line++;
6791 else
6792 view->count = 0;
6793 break;
6794 case 'c':
6795 case 'p': {
6796 struct got_object_id *id = NULL;
6798 view->count = 0;
6799 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6800 s->first_displayed_line, s->selected_line);
6801 if (id == NULL)
6802 break;
6803 if (ch == 'p') {
6804 struct got_commit_object *commit, *pcommit;
6805 struct got_object_qid *pid;
6806 struct got_object_id *blob_id = NULL;
6807 int obj_type;
6808 err = got_object_open_as_commit(&commit,
6809 s->repo, id);
6810 if (err)
6811 break;
6812 pid = STAILQ_FIRST(
6813 got_object_commit_get_parent_ids(commit));
6814 if (pid == NULL) {
6815 got_object_commit_close(commit);
6816 break;
6818 /* Check if path history ends here. */
6819 err = got_object_open_as_commit(&pcommit,
6820 s->repo, &pid->id);
6821 if (err)
6822 break;
6823 err = got_object_id_by_path(&blob_id, s->repo,
6824 pcommit, s->path);
6825 got_object_commit_close(pcommit);
6826 if (err) {
6827 if (err->code == GOT_ERR_NO_TREE_ENTRY)
6828 err = NULL;
6829 got_object_commit_close(commit);
6830 break;
6832 err = got_object_get_type(&obj_type, s->repo,
6833 blob_id);
6834 free(blob_id);
6835 /* Can't blame non-blob type objects. */
6836 if (obj_type != GOT_OBJ_TYPE_BLOB) {
6837 got_object_commit_close(commit);
6838 break;
6840 err = got_object_qid_alloc(&s->blamed_commit,
6841 &pid->id);
6842 got_object_commit_close(commit);
6843 } else {
6844 if (got_object_id_cmp(id,
6845 &s->blamed_commit->id) == 0)
6846 break;
6847 err = got_object_qid_alloc(&s->blamed_commit,
6848 id);
6850 if (err)
6851 break;
6852 s->done = 1;
6853 thread_err = stop_blame(&s->blame);
6854 s->done = 0;
6855 if (thread_err)
6856 break;
6857 STAILQ_INSERT_HEAD(&s->blamed_commits,
6858 s->blamed_commit, entry);
6859 err = run_blame(view);
6860 if (err)
6861 break;
6862 break;
6864 case 'C': {
6865 struct got_object_qid *first;
6867 view->count = 0;
6868 first = STAILQ_FIRST(&s->blamed_commits);
6869 if (!got_object_id_cmp(&first->id, s->commit_id))
6870 break;
6871 s->done = 1;
6872 thread_err = stop_blame(&s->blame);
6873 s->done = 0;
6874 if (thread_err)
6875 break;
6876 STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6877 got_object_qid_free(s->blamed_commit);
6878 s->blamed_commit =
6879 STAILQ_FIRST(&s->blamed_commits);
6880 err = run_blame(view);
6881 if (err)
6882 break;
6883 break;
6885 case 'L':
6886 view->count = 0;
6887 s->id_to_log = get_selected_commit_id(s->blame.lines,
6888 s->blame.nlines, s->first_displayed_line, s->selected_line);
6889 if (s->id_to_log)
6890 err = view_request_new(new_view, view, TOG_VIEW_LOG);
6891 break;
6892 case KEY_ENTER:
6893 case '\r': {
6894 struct got_object_id *id = NULL;
6895 struct got_object_qid *pid;
6896 struct got_commit_object *commit = NULL;
6898 view->count = 0;
6899 id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6900 s->first_displayed_line, s->selected_line);
6901 if (id == NULL)
6902 break;
6903 err = got_object_open_as_commit(&commit, s->repo, id);
6904 if (err)
6905 break;
6906 pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6907 if (*new_view) {
6908 /* traversed from diff view, release diff resources */
6909 err = close_diff_view(*new_view);
6910 if (err)
6911 break;
6912 diff_view = *new_view;
6913 } else {
6914 if (view_is_parent_view(view))
6915 view_get_split(view, &begin_y, &begin_x);
6917 diff_view = view_open(0, 0, begin_y, begin_x,
6918 TOG_VIEW_DIFF);
6919 if (diff_view == NULL) {
6920 got_object_commit_close(commit);
6921 err = got_error_from_errno("view_open");
6922 break;
6925 err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6926 id, NULL, NULL, 3, 0, 0, view, s->repo);
6927 got_object_commit_close(commit);
6928 if (err) {
6929 view_close(diff_view);
6930 break;
6932 s->last_diffed_line = s->first_displayed_line - 1 +
6933 s->selected_line;
6934 if (*new_view)
6935 break; /* still open from active diff view */
6936 if (view_is_parent_view(view) &&
6937 view->mode == TOG_VIEW_SPLIT_HRZN) {
6938 err = view_init_hsplit(view, begin_y);
6939 if (err)
6940 break;
6943 view->focussed = 0;
6944 diff_view->focussed = 1;
6945 diff_view->mode = view->mode;
6946 diff_view->nlines = view->lines - begin_y;
6947 if (view_is_parent_view(view)) {
6948 view_transfer_size(diff_view, view);
6949 err = view_close_child(view);
6950 if (err)
6951 break;
6952 err = view_set_child(view, diff_view);
6953 if (err)
6954 break;
6955 view->focus_child = 1;
6956 } else
6957 *new_view = diff_view;
6958 if (err)
6959 break;
6960 break;
6962 case CTRL('d'):
6963 case 'd':
6964 nscroll /= 2;
6965 /* FALL THROUGH */
6966 case KEY_NPAGE:
6967 case CTRL('f'):
6968 case 'f':
6969 case ' ':
6970 if (s->last_displayed_line >= s->blame.nlines &&
6971 s->selected_line >= MIN(s->blame.nlines,
6972 view->nlines - 2)) {
6973 view->count = 0;
6974 break;
6976 if (s->last_displayed_line >= s->blame.nlines &&
6977 s->selected_line < view->nlines - 2) {
6978 s->selected_line +=
6979 MIN(nscroll, s->last_displayed_line -
6980 s->first_displayed_line - s->selected_line + 1);
6982 if (s->last_displayed_line + nscroll <= s->blame.nlines)
6983 s->first_displayed_line += nscroll;
6984 else
6985 s->first_displayed_line =
6986 s->blame.nlines - (view->nlines - 3);
6987 break;
6988 case KEY_RESIZE:
6989 if (s->selected_line > view->nlines - 2) {
6990 s->selected_line = MIN(s->blame.nlines,
6991 view->nlines - 2);
6993 break;
6994 default:
6995 view->count = 0;
6996 break;
6998 return thread_err ? thread_err : err;
7001 static const struct got_error *
7002 reset_blame_view(struct tog_view *view)
7004 const struct got_error *err;
7005 struct tog_blame_view_state *s = &view->state.blame;
7007 view->count = 0;
7008 s->done = 1;
7009 err = stop_blame(&s->blame);
7010 s->done = 0;
7011 if (err)
7012 return err;
7013 return run_blame(view);
7016 static const struct got_error *
7017 cmd_blame(int argc, char *argv[])
7019 const struct got_error *error;
7020 struct got_repository *repo = NULL;
7021 struct got_worktree *worktree = NULL;
7022 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7023 char *link_target = NULL;
7024 struct got_object_id *commit_id = NULL;
7025 struct got_commit_object *commit = NULL;
7026 char *commit_id_str = NULL;
7027 int ch;
7028 struct tog_view *view = NULL;
7029 int *pack_fds = NULL;
7031 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7032 switch (ch) {
7033 case 'c':
7034 commit_id_str = optarg;
7035 break;
7036 case 'r':
7037 repo_path = realpath(optarg, NULL);
7038 if (repo_path == NULL)
7039 return got_error_from_errno2("realpath",
7040 optarg);
7041 break;
7042 default:
7043 usage_blame();
7044 /* NOTREACHED */
7048 argc -= optind;
7049 argv += optind;
7051 if (argc != 1)
7052 usage_blame();
7054 error = got_repo_pack_fds_open(&pack_fds);
7055 if (error != NULL)
7056 goto done;
7058 if (repo_path == NULL) {
7059 cwd = getcwd(NULL, 0);
7060 if (cwd == NULL)
7061 return got_error_from_errno("getcwd");
7062 error = got_worktree_open(&worktree, cwd);
7063 if (error && error->code != GOT_ERR_NOT_WORKTREE)
7064 goto done;
7065 if (worktree)
7066 repo_path =
7067 strdup(got_worktree_get_repo_path(worktree));
7068 else
7069 repo_path = strdup(cwd);
7070 if (repo_path == NULL) {
7071 error = got_error_from_errno("strdup");
7072 goto done;
7076 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7077 if (error != NULL)
7078 goto done;
7080 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
7081 worktree);
7082 if (error)
7083 goto done;
7085 init_curses();
7087 error = apply_unveil(got_repo_get_path(repo), NULL);
7088 if (error)
7089 goto done;
7091 error = tog_load_refs(repo, 0);
7092 if (error)
7093 goto done;
7095 if (commit_id_str == NULL) {
7096 struct got_reference *head_ref;
7097 error = got_ref_open(&head_ref, repo, worktree ?
7098 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
7099 if (error != NULL)
7100 goto done;
7101 error = got_ref_resolve(&commit_id, repo, head_ref);
7102 got_ref_close(head_ref);
7103 } else {
7104 error = got_repo_match_object_id(&commit_id, NULL,
7105 commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7107 if (error != NULL)
7108 goto done;
7110 error = got_object_open_as_commit(&commit, repo, commit_id);
7111 if (error)
7112 goto done;
7114 error = got_object_resolve_symlinks(&link_target, in_repo_path,
7115 commit, repo);
7116 if (error)
7117 goto done;
7119 view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
7120 if (view == NULL) {
7121 error = got_error_from_errno("view_open");
7122 goto done;
7124 error = open_blame_view(view, link_target ? link_target : in_repo_path,
7125 commit_id, repo);
7126 if (error != NULL) {
7127 if (view->close == NULL)
7128 close_blame_view(view);
7129 view_close(view);
7130 goto done;
7132 if (worktree) {
7133 /* Release work tree lock. */
7134 got_worktree_close(worktree);
7135 worktree = NULL;
7137 error = view_loop(view);
7138 done:
7139 free(repo_path);
7140 free(in_repo_path);
7141 free(link_target);
7142 free(cwd);
7143 free(commit_id);
7144 if (commit)
7145 got_object_commit_close(commit);
7146 if (worktree)
7147 got_worktree_close(worktree);
7148 if (repo) {
7149 const struct got_error *close_err = got_repo_close(repo);
7150 if (error == NULL)
7151 error = close_err;
7153 if (pack_fds) {
7154 const struct got_error *pack_err =
7155 got_repo_pack_fds_close(pack_fds);
7156 if (error == NULL)
7157 error = pack_err;
7159 tog_free_refs();
7160 return error;
7163 static const struct got_error *
7164 draw_tree_entries(struct tog_view *view, const char *parent_path)
7166 struct tog_tree_view_state *s = &view->state.tree;
7167 const struct got_error *err = NULL;
7168 struct got_tree_entry *te;
7169 wchar_t *wline;
7170 char *index = NULL;
7171 struct tog_color *tc;
7172 int width, n, nentries, scrollx, i = 1;
7173 int limit = view->nlines;
7175 s->ndisplayed = 0;
7176 if (view_is_hsplit_top(view))
7177 --limit; /* border */
7179 werase(view->window);
7181 if (limit == 0)
7182 return NULL;
7184 err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
7185 0, 0);
7186 if (err)
7187 return err;
7188 if (view_needs_focus_indication(view))
7189 wstandout(view->window);
7190 tc = get_color(&s->colors, TOG_COLOR_COMMIT);
7191 if (tc)
7192 wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
7193 waddwstr(view->window, wline);
7194 free(wline);
7195 wline = NULL;
7196 while (width++ < view->ncols)
7197 waddch(view->window, ' ');
7198 if (tc)
7199 wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
7200 if (view_needs_focus_indication(view))
7201 wstandend(view->window);
7202 if (--limit <= 0)
7203 return NULL;
7205 i += s->selected;
7206 if (s->first_displayed_entry) {
7207 i += got_tree_entry_get_index(s->first_displayed_entry);
7208 if (s->tree != s->root)
7209 ++i; /* account for ".." entry */
7211 nentries = got_object_tree_get_nentries(s->tree);
7212 if (asprintf(&index, "[%d/%d] %s",
7213 i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
7214 return got_error_from_errno("asprintf");
7215 err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
7216 free(index);
7217 if (err)
7218 return err;
7219 waddwstr(view->window, wline);
7220 free(wline);
7221 wline = NULL;
7222 if (width < view->ncols - 1)
7223 waddch(view->window, '\n');
7224 if (--limit <= 0)
7225 return NULL;
7226 waddch(view->window, '\n');
7227 if (--limit <= 0)
7228 return NULL;
7230 if (s->first_displayed_entry == NULL) {
7231 te = got_object_tree_get_first_entry(s->tree);
7232 if (s->selected == 0) {
7233 if (view->focussed)
7234 wstandout(view->window);
7235 s->selected_entry = NULL;
7237 waddstr(view->window, " ..\n"); /* parent directory */
7238 if (s->selected == 0 && view->focussed)
7239 wstandend(view->window);
7240 s->ndisplayed++;
7241 if (--limit <= 0)
7242 return NULL;
7243 n = 1;
7244 } else {
7245 n = 0;
7246 te = s->first_displayed_entry;
7249 view->maxx = 0;
7250 for (i = got_tree_entry_get_index(te); i < nentries; i++) {
7251 char *line = NULL, *id_str = NULL, *link_target = NULL;
7252 const char *modestr = "";
7253 mode_t mode;
7255 te = got_object_tree_get_entry(s->tree, i);
7256 mode = got_tree_entry_get_mode(te);
7258 if (s->show_ids) {
7259 err = got_object_id_str(&id_str,
7260 got_tree_entry_get_id(te));
7261 if (err)
7262 return got_error_from_errno(
7263 "got_object_id_str");
7265 if (got_object_tree_entry_is_submodule(te))
7266 modestr = "$";
7267 else if (S_ISLNK(mode)) {
7268 int i;
7270 err = got_tree_entry_get_symlink_target(&link_target,
7271 te, s->repo);
7272 if (err) {
7273 free(id_str);
7274 return err;
7276 for (i = 0; i < strlen(link_target); i++) {
7277 if (!isprint((unsigned char)link_target[i]))
7278 link_target[i] = '?';
7280 modestr = "@";
7282 else if (S_ISDIR(mode))
7283 modestr = "/";
7284 else if (mode & S_IXUSR)
7285 modestr = "*";
7286 if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
7287 got_tree_entry_get_name(te), modestr,
7288 link_target ? " -> ": "",
7289 link_target ? link_target : "") == -1) {
7290 free(id_str);
7291 free(link_target);
7292 return got_error_from_errno("asprintf");
7294 free(id_str);
7295 free(link_target);
7297 /* use full line width to determine view->maxx */
7298 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0, 0);
7299 if (err) {
7300 free(line);
7301 break;
7303 view->maxx = MAX(view->maxx, width);
7304 free(wline);
7305 wline = NULL;
7307 err = format_line(&wline, &width, &scrollx, line, view->x,
7308 view->ncols, 0, 0);
7309 if (err) {
7310 free(line);
7311 break;
7313 if (n == s->selected) {
7314 if (view->focussed)
7315 wstandout(view->window);
7316 s->selected_entry = te;
7318 tc = match_color(&s->colors, line);
7319 if (tc)
7320 wattr_on(view->window,
7321 COLOR_PAIR(tc->colorpair), NULL);
7322 waddwstr(view->window, &wline[scrollx]);
7323 if (tc)
7324 wattr_off(view->window,
7325 COLOR_PAIR(tc->colorpair), NULL);
7326 if (width < view->ncols)
7327 waddch(view->window, '\n');
7328 if (n == s->selected && view->focussed)
7329 wstandend(view->window);
7330 free(line);
7331 free(wline);
7332 wline = NULL;
7333 n++;
7334 s->ndisplayed++;
7335 s->last_displayed_entry = te;
7336 if (--limit <= 0)
7337 break;
7340 return err;
7343 static void
7344 tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
7346 struct got_tree_entry *te;
7347 int isroot = s->tree == s->root;
7348 int i = 0;
7350 if (s->first_displayed_entry == NULL)
7351 return;
7353 te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
7354 while (i++ < maxscroll) {
7355 if (te == NULL) {
7356 if (!isroot)
7357 s->first_displayed_entry = NULL;
7358 break;
7360 s->first_displayed_entry = te;
7361 te = got_tree_entry_get_prev(s->tree, te);
7365 static const struct got_error *
7366 tree_scroll_down(struct tog_view *view, int maxscroll)
7368 struct tog_tree_view_state *s = &view->state.tree;
7369 struct got_tree_entry *next, *last;
7370 int n = 0;
7372 if (s->first_displayed_entry)
7373 next = got_tree_entry_get_next(s->tree,
7374 s->first_displayed_entry);
7375 else
7376 next = got_object_tree_get_first_entry(s->tree);
7378 last = s->last_displayed_entry;
7379 while (next && n++ < maxscroll) {
7380 if (last) {
7381 s->last_displayed_entry = last;
7382 last = got_tree_entry_get_next(s->tree, last);
7384 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
7385 s->first_displayed_entry = next;
7386 next = got_tree_entry_get_next(s->tree, next);
7390 return NULL;
7393 static const struct got_error *
7394 tree_entry_path(char **path, struct tog_parent_trees *parents,
7395 struct got_tree_entry *te)
7397 const struct got_error *err = NULL;
7398 struct tog_parent_tree *pt;
7399 size_t len = 2; /* for leading slash and NUL */
7401 TAILQ_FOREACH(pt, parents, entry)
7402 len += strlen(got_tree_entry_get_name(pt->selected_entry))
7403 + 1 /* slash */;
7404 if (te)
7405 len += strlen(got_tree_entry_get_name(te));
7407 *path = calloc(1, len);
7408 if (path == NULL)
7409 return got_error_from_errno("calloc");
7411 (*path)[0] = '/';
7412 pt = TAILQ_LAST(parents, tog_parent_trees);
7413 while (pt) {
7414 const char *name = got_tree_entry_get_name(pt->selected_entry);
7415 if (strlcat(*path, name, len) >= len) {
7416 err = got_error(GOT_ERR_NO_SPACE);
7417 goto done;
7419 if (strlcat(*path, "/", len) >= len) {
7420 err = got_error(GOT_ERR_NO_SPACE);
7421 goto done;
7423 pt = TAILQ_PREV(pt, tog_parent_trees, entry);
7425 if (te) {
7426 if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
7427 err = got_error(GOT_ERR_NO_SPACE);
7428 goto done;
7431 done:
7432 if (err) {
7433 free(*path);
7434 *path = NULL;
7436 return err;
7439 static const struct got_error *
7440 blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
7441 struct got_tree_entry *te, struct tog_parent_trees *parents,
7442 struct got_object_id *commit_id, struct got_repository *repo)
7444 const struct got_error *err = NULL;
7445 char *path;
7446 struct tog_view *blame_view;
7448 *new_view = NULL;
7450 err = tree_entry_path(&path, parents, te);
7451 if (err)
7452 return err;
7454 blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
7455 if (blame_view == NULL) {
7456 err = got_error_from_errno("view_open");
7457 goto done;
7460 err = open_blame_view(blame_view, path, commit_id, repo);
7461 if (err) {
7462 if (err->code == GOT_ERR_CANCELLED)
7463 err = NULL;
7464 view_close(blame_view);
7465 } else
7466 *new_view = blame_view;
7467 done:
7468 free(path);
7469 return err;
7472 static const struct got_error *
7473 log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
7474 struct tog_tree_view_state *s)
7476 struct tog_view *log_view;
7477 const struct got_error *err = NULL;
7478 char *path;
7480 *new_view = NULL;
7482 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7483 if (log_view == NULL)
7484 return got_error_from_errno("view_open");
7486 err = tree_entry_path(&path, &s->parents, s->selected_entry);
7487 if (err)
7488 return err;
7490 err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
7491 path, 0);
7492 if (err)
7493 view_close(log_view);
7494 else
7495 *new_view = log_view;
7496 free(path);
7497 return err;
7500 static const struct got_error *
7501 open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
7502 const char *head_ref_name, struct got_repository *repo)
7504 const struct got_error *err = NULL;
7505 char *commit_id_str = NULL;
7506 struct tog_tree_view_state *s = &view->state.tree;
7507 struct got_commit_object *commit = NULL;
7509 TAILQ_INIT(&s->parents);
7510 STAILQ_INIT(&s->colors);
7512 s->commit_id = got_object_id_dup(commit_id);
7513 if (s->commit_id == NULL) {
7514 err = got_error_from_errno("got_object_id_dup");
7515 goto done;
7518 err = got_object_open_as_commit(&commit, repo, commit_id);
7519 if (err)
7520 goto done;
7523 * The root is opened here and will be closed when the view is closed.
7524 * Any visited subtrees and their path-wise parents are opened and
7525 * closed on demand.
7527 err = got_object_open_as_tree(&s->root, repo,
7528 got_object_commit_get_tree_id(commit));
7529 if (err)
7530 goto done;
7531 s->tree = s->root;
7533 err = got_object_id_str(&commit_id_str, commit_id);
7534 if (err != NULL)
7535 goto done;
7537 if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7538 err = got_error_from_errno("asprintf");
7539 goto done;
7542 s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7543 s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7544 if (head_ref_name) {
7545 s->head_ref_name = strdup(head_ref_name);
7546 if (s->head_ref_name == NULL) {
7547 err = got_error_from_errno("strdup");
7548 goto done;
7551 s->repo = repo;
7553 if (has_colors() && getenv("TOG_COLORS") != NULL) {
7554 err = add_color(&s->colors, "\\$$",
7555 TOG_COLOR_TREE_SUBMODULE,
7556 get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7557 if (err)
7558 goto done;
7559 err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7560 get_color_value("TOG_COLOR_TREE_SYMLINK"));
7561 if (err)
7562 goto done;
7563 err = add_color(&s->colors, "/$",
7564 TOG_COLOR_TREE_DIRECTORY,
7565 get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7566 if (err)
7567 goto done;
7569 err = add_color(&s->colors, "\\*$",
7570 TOG_COLOR_TREE_EXECUTABLE,
7571 get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7572 if (err)
7573 goto done;
7575 err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7576 get_color_value("TOG_COLOR_COMMIT"));
7577 if (err)
7578 goto done;
7581 view->show = show_tree_view;
7582 view->input = input_tree_view;
7583 view->close = close_tree_view;
7584 view->search_start = search_start_tree_view;
7585 view->search_next = search_next_tree_view;
7586 done:
7587 free(commit_id_str);
7588 if (commit)
7589 got_object_commit_close(commit);
7590 if (err) {
7591 if (view->close == NULL)
7592 close_tree_view(view);
7593 view_close(view);
7595 return err;
7598 static const struct got_error *
7599 close_tree_view(struct tog_view *view)
7601 struct tog_tree_view_state *s = &view->state.tree;
7603 free_colors(&s->colors);
7604 free(s->tree_label);
7605 s->tree_label = NULL;
7606 free(s->commit_id);
7607 s->commit_id = NULL;
7608 free(s->head_ref_name);
7609 s->head_ref_name = NULL;
7610 while (!TAILQ_EMPTY(&s->parents)) {
7611 struct tog_parent_tree *parent;
7612 parent = TAILQ_FIRST(&s->parents);
7613 TAILQ_REMOVE(&s->parents, parent, entry);
7614 if (parent->tree != s->root)
7615 got_object_tree_close(parent->tree);
7616 free(parent);
7619 if (s->tree != NULL && s->tree != s->root)
7620 got_object_tree_close(s->tree);
7621 if (s->root)
7622 got_object_tree_close(s->root);
7623 return NULL;
7626 static const struct got_error *
7627 search_start_tree_view(struct tog_view *view)
7629 struct tog_tree_view_state *s = &view->state.tree;
7631 s->matched_entry = NULL;
7632 return NULL;
7635 static int
7636 match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7638 regmatch_t regmatch;
7640 return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7641 0) == 0;
7644 static const struct got_error *
7645 search_next_tree_view(struct tog_view *view)
7647 struct tog_tree_view_state *s = &view->state.tree;
7648 struct got_tree_entry *te = NULL;
7650 if (!view->searching) {
7651 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7652 return NULL;
7655 if (s->matched_entry) {
7656 if (view->searching == TOG_SEARCH_FORWARD) {
7657 if (s->selected_entry)
7658 te = got_tree_entry_get_next(s->tree,
7659 s->selected_entry);
7660 else
7661 te = got_object_tree_get_first_entry(s->tree);
7662 } else {
7663 if (s->selected_entry == NULL)
7664 te = got_object_tree_get_last_entry(s->tree);
7665 else
7666 te = got_tree_entry_get_prev(s->tree,
7667 s->selected_entry);
7669 } else {
7670 if (s->selected_entry)
7671 te = s->selected_entry;
7672 else if (view->searching == TOG_SEARCH_FORWARD)
7673 te = got_object_tree_get_first_entry(s->tree);
7674 else
7675 te = got_object_tree_get_last_entry(s->tree);
7678 while (1) {
7679 if (te == NULL) {
7680 if (s->matched_entry == NULL) {
7681 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7682 return NULL;
7684 if (view->searching == TOG_SEARCH_FORWARD)
7685 te = got_object_tree_get_first_entry(s->tree);
7686 else
7687 te = got_object_tree_get_last_entry(s->tree);
7690 if (match_tree_entry(te, &view->regex)) {
7691 view->search_next_done = TOG_SEARCH_HAVE_MORE;
7692 s->matched_entry = te;
7693 break;
7696 if (view->searching == TOG_SEARCH_FORWARD)
7697 te = got_tree_entry_get_next(s->tree, te);
7698 else
7699 te = got_tree_entry_get_prev(s->tree, te);
7702 if (s->matched_entry) {
7703 s->first_displayed_entry = s->matched_entry;
7704 s->selected = 0;
7707 return NULL;
7710 static const struct got_error *
7711 show_tree_view(struct tog_view *view)
7713 const struct got_error *err = NULL;
7714 struct tog_tree_view_state *s = &view->state.tree;
7715 char *parent_path;
7717 err = tree_entry_path(&parent_path, &s->parents, NULL);
7718 if (err)
7719 return err;
7721 err = draw_tree_entries(view, parent_path);
7722 free(parent_path);
7724 view_border(view);
7725 return err;
7728 static const struct got_error *
7729 tree_goto_line(struct tog_view *view, int nlines)
7731 const struct got_error *err = NULL;
7732 struct tog_tree_view_state *s = &view->state.tree;
7733 struct got_tree_entry **fte, **lte, **ste;
7734 int g, last, first = 1, i = 1;
7735 int root = s->tree == s->root;
7736 int off = root ? 1 : 2;
7738 g = view->gline;
7739 view->gline = 0;
7741 if (g == 0)
7742 g = 1;
7743 else if (g > got_object_tree_get_nentries(s->tree))
7744 g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7746 fte = &s->first_displayed_entry;
7747 lte = &s->last_displayed_entry;
7748 ste = &s->selected_entry;
7750 if (*fte != NULL) {
7751 first = got_tree_entry_get_index(*fte);
7752 first += off; /* account for ".." */
7754 last = got_tree_entry_get_index(*lte);
7755 last += off;
7757 if (g >= first && g <= last && g - first < nlines) {
7758 s->selected = g - first;
7759 return NULL; /* gline is on the current page */
7762 if (*ste != NULL) {
7763 i = got_tree_entry_get_index(*ste);
7764 i += off;
7767 if (i < g) {
7768 err = tree_scroll_down(view, g - i);
7769 if (err)
7770 return err;
7771 if (got_tree_entry_get_index(*lte) >=
7772 got_object_tree_get_nentries(s->tree) - 1 &&
7773 first + s->selected < g &&
7774 s->selected < s->ndisplayed - 1) {
7775 first = got_tree_entry_get_index(*fte);
7776 first += off;
7777 s->selected = g - first;
7779 } else if (i > g)
7780 tree_scroll_up(s, i - g);
7782 if (g < nlines &&
7783 (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7784 s->selected = g - 1;
7786 return NULL;
7789 static const struct got_error *
7790 input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7792 const struct got_error *err = NULL;
7793 struct tog_tree_view_state *s = &view->state.tree;
7794 struct got_tree_entry *te;
7795 int n, nscroll = view->nlines - 3;
7797 if (view->gline)
7798 return tree_goto_line(view, nscroll);
7800 switch (ch) {
7801 case '0':
7802 case '$':
7803 case KEY_RIGHT:
7804 case 'l':
7805 case KEY_LEFT:
7806 case 'h':
7807 horizontal_scroll_input(view, ch);
7808 break;
7809 case 'i':
7810 s->show_ids = !s->show_ids;
7811 view->count = 0;
7812 break;
7813 case 'L':
7814 view->count = 0;
7815 if (!s->selected_entry)
7816 break;
7817 err = view_request_new(new_view, view, TOG_VIEW_LOG);
7818 break;
7819 case 'R':
7820 view->count = 0;
7821 err = view_request_new(new_view, view, TOG_VIEW_REF);
7822 break;
7823 case 'g':
7824 case '=':
7825 case KEY_HOME:
7826 s->selected = 0;
7827 view->count = 0;
7828 if (s->tree == s->root)
7829 s->first_displayed_entry =
7830 got_object_tree_get_first_entry(s->tree);
7831 else
7832 s->first_displayed_entry = NULL;
7833 break;
7834 case 'G':
7835 case '*':
7836 case KEY_END: {
7837 int eos = view->nlines - 3;
7839 if (view->mode == TOG_VIEW_SPLIT_HRZN)
7840 --eos; /* border */
7841 s->selected = 0;
7842 view->count = 0;
7843 te = got_object_tree_get_last_entry(s->tree);
7844 for (n = 0; n < eos; n++) {
7845 if (te == NULL) {
7846 if (s->tree != s->root) {
7847 s->first_displayed_entry = NULL;
7848 n++;
7850 break;
7852 s->first_displayed_entry = te;
7853 te = got_tree_entry_get_prev(s->tree, te);
7855 if (n > 0)
7856 s->selected = n - 1;
7857 break;
7859 case 'k':
7860 case KEY_UP:
7861 case CTRL('p'):
7862 if (s->selected > 0) {
7863 s->selected--;
7864 break;
7866 tree_scroll_up(s, 1);
7867 if (s->selected_entry == NULL ||
7868 (s->tree == s->root && s->selected_entry ==
7869 got_object_tree_get_first_entry(s->tree)))
7870 view->count = 0;
7871 break;
7872 case CTRL('u'):
7873 case 'u':
7874 nscroll /= 2;
7875 /* FALL THROUGH */
7876 case KEY_PPAGE:
7877 case CTRL('b'):
7878 case 'b':
7879 if (s->tree == s->root) {
7880 if (got_object_tree_get_first_entry(s->tree) ==
7881 s->first_displayed_entry)
7882 s->selected -= MIN(s->selected, nscroll);
7883 } else {
7884 if (s->first_displayed_entry == NULL)
7885 s->selected -= MIN(s->selected, nscroll);
7887 tree_scroll_up(s, MAX(0, nscroll));
7888 if (s->selected_entry == NULL ||
7889 (s->tree == s->root && s->selected_entry ==
7890 got_object_tree_get_first_entry(s->tree)))
7891 view->count = 0;
7892 break;
7893 case 'j':
7894 case KEY_DOWN:
7895 case CTRL('n'):
7896 if (s->selected < s->ndisplayed - 1) {
7897 s->selected++;
7898 break;
7900 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7901 == NULL) {
7902 /* can't scroll any further */
7903 view->count = 0;
7904 break;
7906 tree_scroll_down(view, 1);
7907 break;
7908 case CTRL('d'):
7909 case 'd':
7910 nscroll /= 2;
7911 /* FALL THROUGH */
7912 case KEY_NPAGE:
7913 case CTRL('f'):
7914 case 'f':
7915 case ' ':
7916 if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7917 == NULL) {
7918 /* can't scroll any further; move cursor down */
7919 if (s->selected < s->ndisplayed - 1)
7920 s->selected += MIN(nscroll,
7921 s->ndisplayed - s->selected - 1);
7922 else
7923 view->count = 0;
7924 break;
7926 tree_scroll_down(view, nscroll);
7927 break;
7928 case KEY_ENTER:
7929 case '\r':
7930 case KEY_BACKSPACE:
7931 if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7932 struct tog_parent_tree *parent;
7933 /* user selected '..' */
7934 if (s->tree == s->root) {
7935 view->count = 0;
7936 break;
7938 parent = TAILQ_FIRST(&s->parents);
7939 TAILQ_REMOVE(&s->parents, parent,
7940 entry);
7941 got_object_tree_close(s->tree);
7942 s->tree = parent->tree;
7943 s->first_displayed_entry =
7944 parent->first_displayed_entry;
7945 s->selected_entry =
7946 parent->selected_entry;
7947 s->selected = parent->selected;
7948 if (s->selected > view->nlines - 3) {
7949 err = offset_selection_down(view);
7950 if (err)
7951 break;
7953 free(parent);
7954 } else if (S_ISDIR(got_tree_entry_get_mode(
7955 s->selected_entry))) {
7956 struct got_tree_object *subtree;
7957 view->count = 0;
7958 err = got_object_open_as_tree(&subtree, s->repo,
7959 got_tree_entry_get_id(s->selected_entry));
7960 if (err)
7961 break;
7962 err = tree_view_visit_subtree(s, subtree);
7963 if (err) {
7964 got_object_tree_close(subtree);
7965 break;
7967 } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7968 err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7969 break;
7970 case KEY_RESIZE:
7971 if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7972 s->selected = view->nlines - 4;
7973 view->count = 0;
7974 break;
7975 default:
7976 view->count = 0;
7977 break;
7980 return err;
7983 __dead static void
7984 usage_tree(void)
7986 endwin();
7987 fprintf(stderr,
7988 "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7989 getprogname());
7990 exit(1);
7993 static const struct got_error *
7994 cmd_tree(int argc, char *argv[])
7996 const struct got_error *error;
7997 struct got_repository *repo = NULL;
7998 struct got_worktree *worktree = NULL;
7999 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
8000 struct got_object_id *commit_id = NULL;
8001 struct got_commit_object *commit = NULL;
8002 const char *commit_id_arg = NULL;
8003 char *label = NULL;
8004 struct got_reference *ref = NULL;
8005 const char *head_ref_name = NULL;
8006 int ch;
8007 struct tog_view *view;
8008 int *pack_fds = NULL;
8010 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
8011 switch (ch) {
8012 case 'c':
8013 commit_id_arg = optarg;
8014 break;
8015 case 'r':
8016 repo_path = realpath(optarg, NULL);
8017 if (repo_path == NULL)
8018 return got_error_from_errno2("realpath",
8019 optarg);
8020 break;
8021 default:
8022 usage_tree();
8023 /* NOTREACHED */
8027 argc -= optind;
8028 argv += optind;
8030 if (argc > 1)
8031 usage_tree();
8033 error = got_repo_pack_fds_open(&pack_fds);
8034 if (error != NULL)
8035 goto done;
8037 if (repo_path == NULL) {
8038 cwd = getcwd(NULL, 0);
8039 if (cwd == NULL)
8040 return got_error_from_errno("getcwd");
8041 error = got_worktree_open(&worktree, cwd);
8042 if (error && error->code != GOT_ERR_NOT_WORKTREE)
8043 goto done;
8044 if (worktree)
8045 repo_path =
8046 strdup(got_worktree_get_repo_path(worktree));
8047 else
8048 repo_path = strdup(cwd);
8049 if (repo_path == NULL) {
8050 error = got_error_from_errno("strdup");
8051 goto done;
8055 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8056 if (error != NULL)
8057 goto done;
8059 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
8060 repo, worktree);
8061 if (error)
8062 goto done;
8064 init_curses();
8066 error = apply_unveil(got_repo_get_path(repo), NULL);
8067 if (error)
8068 goto done;
8070 error = tog_load_refs(repo, 0);
8071 if (error)
8072 goto done;
8074 if (commit_id_arg == NULL) {
8075 error = got_repo_match_object_id(&commit_id, &label,
8076 worktree ? got_worktree_get_head_ref_name(worktree) :
8077 GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8078 if (error)
8079 goto done;
8080 head_ref_name = label;
8081 } else {
8082 error = got_ref_open(&ref, repo, commit_id_arg, 0);
8083 if (error == NULL)
8084 head_ref_name = got_ref_get_name(ref);
8085 else if (error->code != GOT_ERR_NOT_REF)
8086 goto done;
8087 error = got_repo_match_object_id(&commit_id, NULL,
8088 commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8089 if (error)
8090 goto done;
8093 error = got_object_open_as_commit(&commit, repo, commit_id);
8094 if (error)
8095 goto done;
8097 view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
8098 if (view == NULL) {
8099 error = got_error_from_errno("view_open");
8100 goto done;
8102 error = open_tree_view(view, commit_id, head_ref_name, repo);
8103 if (error)
8104 goto done;
8105 if (!got_path_is_root_dir(in_repo_path)) {
8106 error = tree_view_walk_path(&view->state.tree, commit,
8107 in_repo_path);
8108 if (error)
8109 goto done;
8112 if (worktree) {
8113 /* Release work tree lock. */
8114 got_worktree_close(worktree);
8115 worktree = NULL;
8117 error = view_loop(view);
8118 done:
8119 free(repo_path);
8120 free(cwd);
8121 free(commit_id);
8122 free(label);
8123 if (ref)
8124 got_ref_close(ref);
8125 if (repo) {
8126 const struct got_error *close_err = got_repo_close(repo);
8127 if (error == NULL)
8128 error = close_err;
8130 if (pack_fds) {
8131 const struct got_error *pack_err =
8132 got_repo_pack_fds_close(pack_fds);
8133 if (error == NULL)
8134 error = pack_err;
8136 tog_free_refs();
8137 return error;
8140 static const struct got_error *
8141 ref_view_load_refs(struct tog_ref_view_state *s)
8143 struct got_reflist_entry *sre;
8144 struct tog_reflist_entry *re;
8146 s->nrefs = 0;
8147 TAILQ_FOREACH(sre, &tog_refs, entry) {
8148 if (strncmp(got_ref_get_name(sre->ref),
8149 "refs/got/", 9) == 0 &&
8150 strncmp(got_ref_get_name(sre->ref),
8151 "refs/got/backup/", 16) != 0)
8152 continue;
8154 re = malloc(sizeof(*re));
8155 if (re == NULL)
8156 return got_error_from_errno("malloc");
8158 re->ref = got_ref_dup(sre->ref);
8159 if (re->ref == NULL)
8160 return got_error_from_errno("got_ref_dup");
8161 re->idx = s->nrefs++;
8162 TAILQ_INSERT_TAIL(&s->refs, re, entry);
8165 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8166 return NULL;
8169 static void
8170 ref_view_free_refs(struct tog_ref_view_state *s)
8172 struct tog_reflist_entry *re;
8174 while (!TAILQ_EMPTY(&s->refs)) {
8175 re = TAILQ_FIRST(&s->refs);
8176 TAILQ_REMOVE(&s->refs, re, entry);
8177 got_ref_close(re->ref);
8178 free(re);
8182 static const struct got_error *
8183 open_ref_view(struct tog_view *view, struct got_repository *repo)
8185 const struct got_error *err = NULL;
8186 struct tog_ref_view_state *s = &view->state.ref;
8188 s->selected_entry = 0;
8189 s->repo = repo;
8191 TAILQ_INIT(&s->refs);
8192 STAILQ_INIT(&s->colors);
8194 err = ref_view_load_refs(s);
8195 if (err)
8196 goto done;
8198 if (has_colors() && getenv("TOG_COLORS") != NULL) {
8199 err = add_color(&s->colors, "^refs/heads/",
8200 TOG_COLOR_REFS_HEADS,
8201 get_color_value("TOG_COLOR_REFS_HEADS"));
8202 if (err)
8203 goto done;
8205 err = add_color(&s->colors, "^refs/tags/",
8206 TOG_COLOR_REFS_TAGS,
8207 get_color_value("TOG_COLOR_REFS_TAGS"));
8208 if (err)
8209 goto done;
8211 err = add_color(&s->colors, "^refs/remotes/",
8212 TOG_COLOR_REFS_REMOTES,
8213 get_color_value("TOG_COLOR_REFS_REMOTES"));
8214 if (err)
8215 goto done;
8217 err = add_color(&s->colors, "^refs/got/backup/",
8218 TOG_COLOR_REFS_BACKUP,
8219 get_color_value("TOG_COLOR_REFS_BACKUP"));
8220 if (err)
8221 goto done;
8224 view->show = show_ref_view;
8225 view->input = input_ref_view;
8226 view->close = close_ref_view;
8227 view->search_start = search_start_ref_view;
8228 view->search_next = search_next_ref_view;
8229 done:
8230 if (err) {
8231 if (view->close == NULL)
8232 close_ref_view(view);
8233 view_close(view);
8235 return err;
8238 static const struct got_error *
8239 close_ref_view(struct tog_view *view)
8241 struct tog_ref_view_state *s = &view->state.ref;
8243 ref_view_free_refs(s);
8244 free_colors(&s->colors);
8246 return NULL;
8249 static const struct got_error *
8250 resolve_reflist_entry(struct got_object_id **commit_id,
8251 struct tog_reflist_entry *re, struct got_repository *repo)
8253 const struct got_error *err = NULL;
8254 struct got_object_id *obj_id;
8255 struct got_tag_object *tag = NULL;
8256 int obj_type;
8258 *commit_id = NULL;
8260 err = got_ref_resolve(&obj_id, repo, re->ref);
8261 if (err)
8262 return err;
8264 err = got_object_get_type(&obj_type, repo, obj_id);
8265 if (err)
8266 goto done;
8268 switch (obj_type) {
8269 case GOT_OBJ_TYPE_COMMIT:
8270 *commit_id = obj_id;
8271 break;
8272 case GOT_OBJ_TYPE_TAG:
8273 err = got_object_open_as_tag(&tag, repo, obj_id);
8274 if (err)
8275 goto done;
8276 free(obj_id);
8277 err = got_object_get_type(&obj_type, repo,
8278 got_object_tag_get_object_id(tag));
8279 if (err)
8280 goto done;
8281 if (obj_type != GOT_OBJ_TYPE_COMMIT) {
8282 err = got_error(GOT_ERR_OBJ_TYPE);
8283 goto done;
8285 *commit_id = got_object_id_dup(
8286 got_object_tag_get_object_id(tag));
8287 if (*commit_id == NULL) {
8288 err = got_error_from_errno("got_object_id_dup");
8289 goto done;
8291 break;
8292 default:
8293 err = got_error(GOT_ERR_OBJ_TYPE);
8294 break;
8297 done:
8298 if (tag)
8299 got_object_tag_close(tag);
8300 if (err) {
8301 free(*commit_id);
8302 *commit_id = NULL;
8304 return err;
8307 static const struct got_error *
8308 log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
8309 struct tog_reflist_entry *re, struct got_repository *repo)
8311 struct tog_view *log_view;
8312 const struct got_error *err = NULL;
8313 struct got_object_id *commit_id = NULL;
8315 *new_view = NULL;
8317 err = resolve_reflist_entry(&commit_id, re, repo);
8318 if (err) {
8319 if (err->code != GOT_ERR_OBJ_TYPE)
8320 return err;
8321 else
8322 return NULL;
8325 log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
8326 if (log_view == NULL) {
8327 err = got_error_from_errno("view_open");
8328 goto done;
8331 err = open_log_view(log_view, commit_id, repo,
8332 got_ref_get_name(re->ref), "", 0);
8333 done:
8334 if (err)
8335 view_close(log_view);
8336 else
8337 *new_view = log_view;
8338 free(commit_id);
8339 return err;
8342 static void
8343 ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
8345 struct tog_reflist_entry *re;
8346 int i = 0;
8348 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8349 return;
8351 re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
8352 while (i++ < maxscroll) {
8353 if (re == NULL)
8354 break;
8355 s->first_displayed_entry = re;
8356 re = TAILQ_PREV(re, tog_reflist_head, entry);
8360 static const struct got_error *
8361 ref_scroll_down(struct tog_view *view, int maxscroll)
8363 struct tog_ref_view_state *s = &view->state.ref;
8364 struct tog_reflist_entry *next, *last;
8365 int n = 0;
8367 if (s->first_displayed_entry)
8368 next = TAILQ_NEXT(s->first_displayed_entry, entry);
8369 else
8370 next = TAILQ_FIRST(&s->refs);
8372 last = s->last_displayed_entry;
8373 while (next && n++ < maxscroll) {
8374 if (last) {
8375 s->last_displayed_entry = last;
8376 last = TAILQ_NEXT(last, entry);
8378 if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
8379 s->first_displayed_entry = next;
8380 next = TAILQ_NEXT(next, entry);
8384 return NULL;
8387 static const struct got_error *
8388 search_start_ref_view(struct tog_view *view)
8390 struct tog_ref_view_state *s = &view->state.ref;
8392 s->matched_entry = NULL;
8393 return NULL;
8396 static int
8397 match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
8399 regmatch_t regmatch;
8401 return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
8402 0) == 0;
8405 static const struct got_error *
8406 search_next_ref_view(struct tog_view *view)
8408 struct tog_ref_view_state *s = &view->state.ref;
8409 struct tog_reflist_entry *re = NULL;
8411 if (!view->searching) {
8412 view->search_next_done = TOG_SEARCH_HAVE_MORE;
8413 return NULL;
8416 if (s->matched_entry) {
8417 if (view->searching == TOG_SEARCH_FORWARD) {
8418 if (s->selected_entry)
8419 re = TAILQ_NEXT(s->selected_entry, entry);
8420 else
8421 re = TAILQ_PREV(s->selected_entry,
8422 tog_reflist_head, entry);
8423 } else {
8424 if (s->selected_entry == NULL)
8425 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8426 else
8427 re = TAILQ_PREV(s->selected_entry,
8428 tog_reflist_head, entry);
8430 } else {
8431 if (s->selected_entry)
8432 re = s->selected_entry;
8433 else if (view->searching == TOG_SEARCH_FORWARD)
8434 re = TAILQ_FIRST(&s->refs);
8435 else
8436 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8439 while (1) {
8440 if (re == NULL) {
8441 if (s->matched_entry == NULL) {
8442 view->search_next_done = TOG_SEARCH_HAVE_MORE;
8443 return NULL;
8445 if (view->searching == TOG_SEARCH_FORWARD)
8446 re = TAILQ_FIRST(&s->refs);
8447 else
8448 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8451 if (match_reflist_entry(re, &view->regex)) {
8452 view->search_next_done = TOG_SEARCH_HAVE_MORE;
8453 s->matched_entry = re;
8454 break;
8457 if (view->searching == TOG_SEARCH_FORWARD)
8458 re = TAILQ_NEXT(re, entry);
8459 else
8460 re = TAILQ_PREV(re, tog_reflist_head, entry);
8463 if (s->matched_entry) {
8464 s->first_displayed_entry = s->matched_entry;
8465 s->selected = 0;
8468 return NULL;
8471 static const struct got_error *
8472 show_ref_view(struct tog_view *view)
8474 const struct got_error *err = NULL;
8475 struct tog_ref_view_state *s = &view->state.ref;
8476 struct tog_reflist_entry *re;
8477 char *line = NULL;
8478 wchar_t *wline;
8479 struct tog_color *tc;
8480 int width, n, scrollx;
8481 int limit = view->nlines;
8483 werase(view->window);
8485 s->ndisplayed = 0;
8486 if (view_is_hsplit_top(view))
8487 --limit; /* border */
8489 if (limit == 0)
8490 return NULL;
8492 re = s->first_displayed_entry;
8494 if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
8495 s->nrefs) == -1)
8496 return got_error_from_errno("asprintf");
8498 err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
8499 if (err) {
8500 free(line);
8501 return err;
8503 if (view_needs_focus_indication(view))
8504 wstandout(view->window);
8505 waddwstr(view->window, wline);
8506 while (width++ < view->ncols)
8507 waddch(view->window, ' ');
8508 if (view_needs_focus_indication(view))
8509 wstandend(view->window);
8510 free(wline);
8511 wline = NULL;
8512 free(line);
8513 line = NULL;
8514 if (--limit <= 0)
8515 return NULL;
8517 n = 0;
8518 view->maxx = 0;
8519 while (re && limit > 0) {
8520 char *line = NULL;
8521 char ymd[13]; /* YYYY-MM-DD + " " + NUL */
8523 if (s->show_date) {
8524 struct got_commit_object *ci;
8525 struct got_tag_object *tag;
8526 struct got_object_id *id;
8527 struct tm tm;
8528 time_t t;
8530 err = got_ref_resolve(&id, s->repo, re->ref);
8531 if (err)
8532 return err;
8533 err = got_object_open_as_tag(&tag, s->repo, id);
8534 if (err) {
8535 if (err->code != GOT_ERR_OBJ_TYPE) {
8536 free(id);
8537 return err;
8539 err = got_object_open_as_commit(&ci, s->repo,
8540 id);
8541 if (err) {
8542 free(id);
8543 return err;
8545 t = got_object_commit_get_committer_time(ci);
8546 got_object_commit_close(ci);
8547 } else {
8548 t = got_object_tag_get_tagger_time(tag);
8549 got_object_tag_close(tag);
8551 free(id);
8552 if (gmtime_r(&t, &tm) == NULL)
8553 return got_error_from_errno("gmtime_r");
8554 if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8555 return got_error(GOT_ERR_NO_SPACE);
8557 if (got_ref_is_symbolic(re->ref)) {
8558 if (asprintf(&line, "%s%s -> %s", s->show_date ?
8559 ymd : "", got_ref_get_name(re->ref),
8560 got_ref_get_symref_target(re->ref)) == -1)
8561 return got_error_from_errno("asprintf");
8562 } else if (s->show_ids) {
8563 struct got_object_id *id;
8564 char *id_str;
8565 err = got_ref_resolve(&id, s->repo, re->ref);
8566 if (err)
8567 return err;
8568 err = got_object_id_str(&id_str, id);
8569 if (err) {
8570 free(id);
8571 return err;
8573 if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8574 got_ref_get_name(re->ref), id_str) == -1) {
8575 err = got_error_from_errno("asprintf");
8576 free(id);
8577 free(id_str);
8578 return err;
8580 free(id);
8581 free(id_str);
8582 } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8583 got_ref_get_name(re->ref)) == -1)
8584 return got_error_from_errno("asprintf");
8586 /* use full line width to determine view->maxx */
8587 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0, 0);
8588 if (err) {
8589 free(line);
8590 return err;
8592 view->maxx = MAX(view->maxx, width);
8593 free(wline);
8594 wline = NULL;
8596 err = format_line(&wline, &width, &scrollx, line, view->x,
8597 view->ncols, 0, 0);
8598 if (err) {
8599 free(line);
8600 return err;
8602 if (n == s->selected) {
8603 if (view->focussed)
8604 wstandout(view->window);
8605 s->selected_entry = re;
8607 tc = match_color(&s->colors, got_ref_get_name(re->ref));
8608 if (tc)
8609 wattr_on(view->window,
8610 COLOR_PAIR(tc->colorpair), NULL);
8611 waddwstr(view->window, &wline[scrollx]);
8612 if (tc)
8613 wattr_off(view->window,
8614 COLOR_PAIR(tc->colorpair), NULL);
8615 if (width < view->ncols)
8616 waddch(view->window, '\n');
8617 if (n == s->selected && view->focussed)
8618 wstandend(view->window);
8619 free(line);
8620 free(wline);
8621 wline = NULL;
8622 n++;
8623 s->ndisplayed++;
8624 s->last_displayed_entry = re;
8626 limit--;
8627 re = TAILQ_NEXT(re, entry);
8630 view_border(view);
8631 return err;
8634 static const struct got_error *
8635 browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8636 struct tog_reflist_entry *re, struct got_repository *repo)
8638 const struct got_error *err = NULL;
8639 struct got_object_id *commit_id = NULL;
8640 struct tog_view *tree_view;
8642 *new_view = NULL;
8644 err = resolve_reflist_entry(&commit_id, re, repo);
8645 if (err) {
8646 if (err->code != GOT_ERR_OBJ_TYPE)
8647 return err;
8648 else
8649 return NULL;
8653 tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8654 if (tree_view == NULL) {
8655 err = got_error_from_errno("view_open");
8656 goto done;
8659 err = open_tree_view(tree_view, commit_id,
8660 got_ref_get_name(re->ref), repo);
8661 if (err)
8662 goto done;
8664 *new_view = tree_view;
8665 done:
8666 free(commit_id);
8667 return err;
8670 static const struct got_error *
8671 ref_goto_line(struct tog_view *view, int nlines)
8673 const struct got_error *err = NULL;
8674 struct tog_ref_view_state *s = &view->state.ref;
8675 int g, idx = s->selected_entry->idx;
8677 g = view->gline;
8678 view->gline = 0;
8680 if (g == 0)
8681 g = 1;
8682 else if (g > s->nrefs)
8683 g = s->nrefs;
8685 if (g >= s->first_displayed_entry->idx + 1 &&
8686 g <= s->last_displayed_entry->idx + 1 &&
8687 g - s->first_displayed_entry->idx - 1 < nlines) {
8688 s->selected = g - s->first_displayed_entry->idx - 1;
8689 return NULL;
8692 if (idx + 1 < g) {
8693 err = ref_scroll_down(view, g - idx - 1);
8694 if (err)
8695 return err;
8696 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8697 s->first_displayed_entry->idx + s->selected < g &&
8698 s->selected < s->ndisplayed - 1)
8699 s->selected = g - s->first_displayed_entry->idx - 1;
8700 } else if (idx + 1 > g)
8701 ref_scroll_up(s, idx - g + 1);
8703 if (g < nlines && s->first_displayed_entry->idx == 0)
8704 s->selected = g - 1;
8706 return NULL;
8710 static const struct got_error *
8711 input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8713 const struct got_error *err = NULL;
8714 struct tog_ref_view_state *s = &view->state.ref;
8715 struct tog_reflist_entry *re;
8716 int n, nscroll = view->nlines - 1;
8718 if (view->gline)
8719 return ref_goto_line(view, nscroll);
8721 switch (ch) {
8722 case '0':
8723 case '$':
8724 case KEY_RIGHT:
8725 case 'l':
8726 case KEY_LEFT:
8727 case 'h':
8728 horizontal_scroll_input(view, ch);
8729 break;
8730 case 'i':
8731 s->show_ids = !s->show_ids;
8732 view->count = 0;
8733 break;
8734 case 'm':
8735 s->show_date = !s->show_date;
8736 view->count = 0;
8737 break;
8738 case 'o':
8739 s->sort_by_date = !s->sort_by_date;
8740 view->action = s->sort_by_date ? "sort by date" : "sort by name";
8741 view->count = 0;
8742 err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8743 got_ref_cmp_by_commit_timestamp_descending :
8744 tog_ref_cmp_by_name, s->repo);
8745 if (err)
8746 break;
8747 got_reflist_object_id_map_free(tog_refs_idmap);
8748 err = got_reflist_object_id_map_create(&tog_refs_idmap,
8749 &tog_refs, s->repo);
8750 if (err)
8751 break;
8752 ref_view_free_refs(s);
8753 err = ref_view_load_refs(s);
8754 break;
8755 case KEY_ENTER:
8756 case '\r':
8757 view->count = 0;
8758 if (!s->selected_entry)
8759 break;
8760 err = view_request_new(new_view, view, TOG_VIEW_LOG);
8761 break;
8762 case 'T':
8763 view->count = 0;
8764 if (!s->selected_entry)
8765 break;
8766 err = view_request_new(new_view, view, TOG_VIEW_TREE);
8767 break;
8768 case 'g':
8769 case '=':
8770 case KEY_HOME:
8771 s->selected = 0;
8772 view->count = 0;
8773 s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8774 break;
8775 case 'G':
8776 case '*':
8777 case KEY_END: {
8778 int eos = view->nlines - 1;
8780 if (view->mode == TOG_VIEW_SPLIT_HRZN)
8781 --eos; /* border */
8782 s->selected = 0;
8783 view->count = 0;
8784 re = TAILQ_LAST(&s->refs, tog_reflist_head);
8785 for (n = 0; n < eos; n++) {
8786 if (re == NULL)
8787 break;
8788 s->first_displayed_entry = re;
8789 re = TAILQ_PREV(re, tog_reflist_head, entry);
8791 if (n > 0)
8792 s->selected = n - 1;
8793 break;
8795 case 'k':
8796 case KEY_UP:
8797 case CTRL('p'):
8798 if (s->selected > 0) {
8799 s->selected--;
8800 break;
8802 ref_scroll_up(s, 1);
8803 if (s->selected_entry == TAILQ_FIRST(&s->refs))
8804 view->count = 0;
8805 break;
8806 case CTRL('u'):
8807 case 'u':
8808 nscroll /= 2;
8809 /* FALL THROUGH */
8810 case KEY_PPAGE:
8811 case CTRL('b'):
8812 case 'b':
8813 if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8814 s->selected -= MIN(nscroll, s->selected);
8815 ref_scroll_up(s, MAX(0, nscroll));
8816 if (s->selected_entry == TAILQ_FIRST(&s->refs))
8817 view->count = 0;
8818 break;
8819 case 'j':
8820 case KEY_DOWN:
8821 case CTRL('n'):
8822 if (s->selected < s->ndisplayed - 1) {
8823 s->selected++;
8824 break;
8826 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8827 /* can't scroll any further */
8828 view->count = 0;
8829 break;
8831 ref_scroll_down(view, 1);
8832 break;
8833 case CTRL('d'):
8834 case 'd':
8835 nscroll /= 2;
8836 /* FALL THROUGH */
8837 case KEY_NPAGE:
8838 case CTRL('f'):
8839 case 'f':
8840 case ' ':
8841 if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8842 /* can't scroll any further; move cursor down */
8843 if (s->selected < s->ndisplayed - 1)
8844 s->selected += MIN(nscroll,
8845 s->ndisplayed - s->selected - 1);
8846 if (view->count > 1 && s->selected < s->ndisplayed - 1)
8847 s->selected += s->ndisplayed - s->selected - 1;
8848 view->count = 0;
8849 break;
8851 ref_scroll_down(view, nscroll);
8852 break;
8853 case CTRL('l'):
8854 view->count = 0;
8855 tog_free_refs();
8856 err = tog_load_refs(s->repo, s->sort_by_date);
8857 if (err)
8858 break;
8859 ref_view_free_refs(s);
8860 err = ref_view_load_refs(s);
8861 break;
8862 case KEY_RESIZE:
8863 if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8864 s->selected = view->nlines - 2;
8865 break;
8866 default:
8867 view->count = 0;
8868 break;
8871 return err;
8874 __dead static void
8875 usage_ref(void)
8877 endwin();
8878 fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8879 getprogname());
8880 exit(1);
8883 static const struct got_error *
8884 cmd_ref(int argc, char *argv[])
8886 const struct got_error *error;
8887 struct got_repository *repo = NULL;
8888 struct got_worktree *worktree = NULL;
8889 char *cwd = NULL, *repo_path = NULL;
8890 int ch;
8891 struct tog_view *view;
8892 int *pack_fds = NULL;
8894 while ((ch = getopt(argc, argv, "r:")) != -1) {
8895 switch (ch) {
8896 case 'r':
8897 repo_path = realpath(optarg, NULL);
8898 if (repo_path == NULL)
8899 return got_error_from_errno2("realpath",
8900 optarg);
8901 break;
8902 default:
8903 usage_ref();
8904 /* NOTREACHED */
8908 argc -= optind;
8909 argv += optind;
8911 if (argc > 1)
8912 usage_ref();
8914 error = got_repo_pack_fds_open(&pack_fds);
8915 if (error != NULL)
8916 goto done;
8918 if (repo_path == NULL) {
8919 cwd = getcwd(NULL, 0);
8920 if (cwd == NULL)
8921 return got_error_from_errno("getcwd");
8922 error = got_worktree_open(&worktree, cwd);
8923 if (error && error->code != GOT_ERR_NOT_WORKTREE)
8924 goto done;
8925 if (worktree)
8926 repo_path =
8927 strdup(got_worktree_get_repo_path(worktree));
8928 else
8929 repo_path = strdup(cwd);
8930 if (repo_path == NULL) {
8931 error = got_error_from_errno("strdup");
8932 goto done;
8936 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8937 if (error != NULL)
8938 goto done;
8940 init_curses();
8942 error = apply_unveil(got_repo_get_path(repo), NULL);
8943 if (error)
8944 goto done;
8946 error = tog_load_refs(repo, 0);
8947 if (error)
8948 goto done;
8950 view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8951 if (view == NULL) {
8952 error = got_error_from_errno("view_open");
8953 goto done;
8956 error = open_ref_view(view, repo);
8957 if (error)
8958 goto done;
8960 if (worktree) {
8961 /* Release work tree lock. */
8962 got_worktree_close(worktree);
8963 worktree = NULL;
8965 error = view_loop(view);
8966 done:
8967 free(repo_path);
8968 free(cwd);
8969 if (repo) {
8970 const struct got_error *close_err = got_repo_close(repo);
8971 if (close_err)
8972 error = close_err;
8974 if (pack_fds) {
8975 const struct got_error *pack_err =
8976 got_repo_pack_fds_close(pack_fds);
8977 if (error == NULL)
8978 error = pack_err;
8980 tog_free_refs();
8981 return error;
8984 static const struct got_error*
8985 win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8986 const char *str)
8988 size_t len;
8990 if (win == NULL)
8991 win = stdscr;
8993 len = strlen(str);
8994 x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8996 if (focus)
8997 wstandout(win);
8998 if (mvwprintw(win, y, x, "%s", str) == ERR)
8999 return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
9000 if (focus)
9001 wstandend(win);
9003 return NULL;
9006 static const struct got_error *
9007 add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
9009 off_t *p;
9011 p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
9012 if (p == NULL) {
9013 free(*line_offsets);
9014 *line_offsets = NULL;
9015 return got_error_from_errno("reallocarray");
9018 *line_offsets = p;
9019 (*line_offsets)[*nlines] = off;
9020 ++(*nlines);
9021 return NULL;
9024 static const struct got_error *
9025 max_key_str(int *ret, const struct tog_key_map *km, size_t n)
9027 *ret = 0;
9029 for (;n > 0; --n, ++km) {
9030 char *t0, *t, *k;
9031 size_t len = 1;
9033 if (km->keys == NULL)
9034 continue;
9036 t = t0 = strdup(km->keys);
9037 if (t0 == NULL)
9038 return got_error_from_errno("strdup");
9040 len += strlen(t);
9041 while ((k = strsep(&t, " ")) != NULL)
9042 len += strlen(k) > 1 ? 2 : 0;
9043 free(t0);
9044 *ret = MAX(*ret, len);
9047 return NULL;
9051 * Write keymap section headers, keys, and key info in km to f.
9052 * Save line offset to *off. If terminal has UTF8 encoding enabled,
9053 * wrap control and symbolic keys in guillemets, else use <>.
9055 static const struct got_error *
9056 format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
9058 int n, len = width;
9060 if (km->keys) {
9061 static const char *u8_glyph[] = {
9062 "\xe2\x80\xb9", /* U+2039 (utf8 <) */
9063 "\xe2\x80\xba" /* U+203A (utf8 >) */
9065 char *t0, *t, *k;
9066 int cs, s, first = 1;
9068 cs = got_locale_is_utf8();
9070 t = t0 = strdup(km->keys);
9071 if (t0 == NULL)
9072 return got_error_from_errno("strdup");
9074 len = strlen(km->keys);
9075 while ((k = strsep(&t, " ")) != NULL) {
9076 s = strlen(k) > 1; /* control or symbolic key */
9077 n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
9078 cs && s ? u8_glyph[0] : s ? "<" : "", k,
9079 cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
9080 if (n < 0) {
9081 free(t0);
9082 return got_error_from_errno("fprintf");
9084 first = 0;
9085 len += s ? 2 : 0;
9086 *off += n;
9088 free(t0);
9090 n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
9091 if (n < 0)
9092 return got_error_from_errno("fprintf");
9093 *off += n;
9095 return NULL;
9098 static const struct got_error *
9099 format_help(struct tog_help_view_state *s)
9101 const struct got_error *err = NULL;
9102 off_t off = 0;
9103 int i, max, n, show = s->all;
9104 static const struct tog_key_map km[] = {
9105 #define KEYMAP_(info, type) { NULL, (info), type }
9106 #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
9107 GENERATE_HELP
9108 #undef KEYMAP_
9109 #undef KEY_
9112 err = add_line_offset(&s->line_offsets, &s->nlines, 0);
9113 if (err)
9114 return err;
9116 n = nitems(km);
9117 err = max_key_str(&max, km, n);
9118 if (err)
9119 return err;
9121 for (i = 0; i < n; ++i) {
9122 if (km[i].keys == NULL) {
9123 show = s->all;
9124 if (km[i].type == TOG_KEYMAP_GLOBAL ||
9125 km[i].type == s->type || s->all)
9126 show = 1;
9128 if (show) {
9129 err = format_help_line(&off, s->f, &km[i], max);
9130 if (err)
9131 return err;
9132 err = add_line_offset(&s->line_offsets, &s->nlines, off);
9133 if (err)
9134 return err;
9137 fputc('\n', s->f);
9138 ++off;
9139 err = add_line_offset(&s->line_offsets, &s->nlines, off);
9140 return err;
9143 static const struct got_error *
9144 create_help(struct tog_help_view_state *s)
9146 FILE *f;
9147 const struct got_error *err;
9149 free(s->line_offsets);
9150 s->line_offsets = NULL;
9151 s->nlines = 0;
9153 f = got_opentemp();
9154 if (f == NULL)
9155 return got_error_from_errno("got_opentemp");
9156 s->f = f;
9158 err = format_help(s);
9159 if (err)
9160 return err;
9162 if (s->f && fflush(s->f) != 0)
9163 return got_error_from_errno("fflush");
9165 return NULL;
9168 static const struct got_error *
9169 search_start_help_view(struct tog_view *view)
9171 view->state.help.matched_line = 0;
9172 return NULL;
9175 static void
9176 search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
9177 size_t *nlines, int **first, int **last, int **match, int **selected)
9179 struct tog_help_view_state *s = &view->state.help;
9181 *f = s->f;
9182 *nlines = s->nlines;
9183 *line_offsets = s->line_offsets;
9184 *match = &s->matched_line;
9185 *first = &s->first_displayed_line;
9186 *last = &s->last_displayed_line;
9187 *selected = &s->selected_line;
9190 static const struct got_error *
9191 show_help_view(struct tog_view *view)
9193 struct tog_help_view_state *s = &view->state.help;
9194 const struct got_error *err;
9195 regmatch_t *regmatch = &view->regmatch;
9196 wchar_t *wline;
9197 char *line;
9198 ssize_t linelen;
9199 size_t linesz = 0;
9200 int width, nprinted = 0, rc = 0;
9201 int eos = view->nlines;
9203 if (view_is_hsplit_top(view))
9204 --eos; /* account for border */
9206 s->lineno = 0;
9207 rewind(s->f);
9208 werase(view->window);
9210 if (view->gline > s->nlines - 1)
9211 view->gline = s->nlines - 1;
9213 err = win_draw_center(view->window, 0, 0, view->ncols,
9214 view_needs_focus_indication(view),
9215 "tog help (press q to return to tog)");
9216 if (err)
9217 return err;
9218 if (eos <= 1)
9219 return NULL;
9220 waddstr(view->window, "\n\n");
9221 eos -= 2;
9223 s->eof = 0;
9224 view->maxx = 0;
9225 line = NULL;
9226 while (eos > 0 && nprinted < eos) {
9227 attr_t attr = 0;
9229 linelen = getline(&line, &linesz, s->f);
9230 if (linelen == -1) {
9231 if (!feof(s->f)) {
9232 free(line);
9233 return got_ferror(s->f, GOT_ERR_IO);
9235 s->eof = 1;
9236 break;
9238 if (++s->lineno < s->first_displayed_line)
9239 continue;
9240 if (view->gline && !gotoline(view, &s->lineno, &nprinted))
9241 continue;
9242 if (s->lineno == view->hiline)
9243 attr = A_STANDOUT;
9245 err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
9246 view->x ? 1 : 0);
9247 if (err) {
9248 free(line);
9249 return err;
9251 view->maxx = MAX(view->maxx, width);
9252 free(wline);
9253 wline = NULL;
9255 if (attr)
9256 wattron(view->window, attr);
9257 if (s->first_displayed_line + nprinted == s->matched_line &&
9258 regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
9259 err = add_matched_line(&width, line, view->ncols - 1, 0,
9260 view->window, view->x, regmatch);
9261 if (err) {
9262 free(line);
9263 return err;
9265 } else {
9266 int skip;
9268 err = format_line(&wline, &width, &skip, line,
9269 view->x, view->ncols, 0, view->x ? 1 : 0);
9270 if (err) {
9271 free(line);
9272 return err;
9274 waddwstr(view->window, &wline[skip]);
9275 free(wline);
9276 wline = NULL;
9278 if (s->lineno == view->hiline) {
9279 while (width++ < view->ncols)
9280 waddch(view->window, ' ');
9281 } else {
9282 if (width < view->ncols)
9283 waddch(view->window, '\n');
9285 if (attr)
9286 wattroff(view->window, attr);
9287 if (++nprinted == 1)
9288 s->first_displayed_line = s->lineno;
9290 free(line);
9291 if (nprinted > 0)
9292 s->last_displayed_line = s->first_displayed_line + nprinted - 1;
9293 else
9294 s->last_displayed_line = s->first_displayed_line;
9296 view_border(view);
9298 if (s->eof) {
9299 rc = waddnstr(view->window,
9300 "See the tog(1) manual page for full documentation",
9301 view->ncols - 1);
9302 if (rc == ERR)
9303 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
9304 } else {
9305 wmove(view->window, view->nlines - 1, 0);
9306 wclrtoeol(view->window);
9307 wstandout(view->window);
9308 rc = waddnstr(view->window, "scroll down for more...",
9309 view->ncols - 1);
9310 if (rc == ERR)
9311 return got_error_msg(GOT_ERR_RANGE, "waddnstr");
9312 if (getcurx(view->window) < view->ncols - 6) {
9313 rc = wprintw(view->window, "[%.0f%%]",
9314 100.00 * s->last_displayed_line / s->nlines);
9315 if (rc == ERR)
9316 return got_error_msg(GOT_ERR_IO, "wprintw");
9318 wstandend(view->window);
9321 return NULL;
9324 static const struct got_error *
9325 input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
9327 struct tog_help_view_state *s = &view->state.help;
9328 const struct got_error *err = NULL;
9329 char *line = NULL;
9330 ssize_t linelen;
9331 size_t linesz = 0;
9332 int eos, nscroll;
9334 eos = nscroll = view->nlines;
9335 if (view_is_hsplit_top(view))
9336 --eos; /* border */
9338 s->lineno = s->first_displayed_line - 1 + s->selected_line;
9340 switch (ch) {
9341 case '0':
9342 case '$':
9343 case KEY_RIGHT:
9344 case 'l':
9345 case KEY_LEFT:
9346 case 'h':
9347 horizontal_scroll_input(view, ch);
9348 break;
9349 case 'g':
9350 case KEY_HOME:
9351 s->first_displayed_line = 1;
9352 view->count = 0;
9353 break;
9354 case 'G':
9355 case KEY_END:
9356 view->count = 0;
9357 if (s->eof)
9358 break;
9359 s->first_displayed_line = (s->nlines - eos) + 3;
9360 s->eof = 1;
9361 break;
9362 case 'k':
9363 case KEY_UP:
9364 if (s->first_displayed_line > 1)
9365 --s->first_displayed_line;
9366 else
9367 view->count = 0;
9368 break;
9369 case CTRL('u'):
9370 case 'u':
9371 nscroll /= 2;
9372 /* FALL THROUGH */
9373 case KEY_PPAGE:
9374 case CTRL('b'):
9375 case 'b':
9376 if (s->first_displayed_line == 1) {
9377 view->count = 0;
9378 break;
9380 while (--nscroll > 0 && s->first_displayed_line > 1)
9381 s->first_displayed_line--;
9382 break;
9383 case 'j':
9384 case KEY_DOWN:
9385 case CTRL('n'):
9386 if (!s->eof)
9387 ++s->first_displayed_line;
9388 else
9389 view->count = 0;
9390 break;
9391 case CTRL('d'):
9392 case 'd':
9393 nscroll /= 2;
9394 /* FALL THROUGH */
9395 case KEY_NPAGE:
9396 case CTRL('f'):
9397 case 'f':
9398 case ' ':
9399 if (s->eof) {
9400 view->count = 0;
9401 break;
9403 while (!s->eof && --nscroll > 0) {
9404 linelen = getline(&line, &linesz, s->f);
9405 s->first_displayed_line++;
9406 if (linelen == -1) {
9407 if (feof(s->f))
9408 s->eof = 1;
9409 else
9410 err = got_ferror(s->f, GOT_ERR_IO);
9411 break;
9414 free(line);
9415 break;
9416 default:
9417 view->count = 0;
9418 break;
9421 return err;
9424 static const struct got_error *
9425 close_help_view(struct tog_view *view)
9427 struct tog_help_view_state *s = &view->state.help;
9429 free(s->line_offsets);
9430 s->line_offsets = NULL;
9431 if (fclose(s->f) == EOF)
9432 return got_error_from_errno("fclose");
9434 return NULL;
9437 static const struct got_error *
9438 reset_help_view(struct tog_view *view)
9440 struct tog_help_view_state *s = &view->state.help;
9443 if (s->f && fclose(s->f) == EOF)
9444 return got_error_from_errno("fclose");
9446 wclear(view->window);
9447 view->count = 0;
9448 view->x = 0;
9449 s->all = !s->all;
9450 s->first_displayed_line = 1;
9451 s->last_displayed_line = view->nlines;
9452 s->matched_line = 0;
9454 return create_help(s);
9457 static const struct got_error *
9458 open_help_view(struct tog_view *view, struct tog_view *parent)
9460 const struct got_error *err = NULL;
9461 struct tog_help_view_state *s = &view->state.help;
9463 s->type = (enum tog_keymap_type)parent->type;
9464 s->first_displayed_line = 1;
9465 s->last_displayed_line = view->nlines;
9466 s->selected_line = 1;
9468 view->show = show_help_view;
9469 view->input = input_help_view;
9470 view->reset = reset_help_view;
9471 view->close = close_help_view;
9472 view->search_start = search_start_help_view;
9473 view->search_setup = search_setup_help_view;
9474 view->search_next = search_next_view_match;
9476 err = create_help(s);
9477 return err;
9480 static const struct got_error *
9481 view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
9482 enum tog_view_type request, int y, int x)
9484 const struct got_error *err = NULL;
9486 *new_view = NULL;
9488 switch (request) {
9489 case TOG_VIEW_DIFF:
9490 if (view->type == TOG_VIEW_LOG) {
9491 struct tog_log_view_state *s = &view->state.log;
9493 err = open_diff_view_for_commit(new_view, y, x,
9494 s->selected_entry->commit, s->selected_entry->id,
9495 view, s->repo);
9496 } else
9497 return got_error_msg(GOT_ERR_NOT_IMPL,
9498 "parent/child view pair not supported");
9499 break;
9500 case TOG_VIEW_BLAME:
9501 if (view->type == TOG_VIEW_TREE) {
9502 struct tog_tree_view_state *s = &view->state.tree;
9504 err = blame_tree_entry(new_view, y, x,
9505 s->selected_entry, &s->parents, s->commit_id,
9506 s->repo);
9507 } else
9508 return got_error_msg(GOT_ERR_NOT_IMPL,
9509 "parent/child view pair not supported");
9510 break;
9511 case TOG_VIEW_LOG:
9512 if (view->type == TOG_VIEW_BLAME)
9513 err = log_annotated_line(new_view, y, x,
9514 view->state.blame.repo, view->state.blame.id_to_log);
9515 else if (view->type == TOG_VIEW_TREE)
9516 err = log_selected_tree_entry(new_view, y, x,
9517 &view->state.tree);
9518 else if (view->type == TOG_VIEW_REF)
9519 err = log_ref_entry(new_view, y, x,
9520 view->state.ref.selected_entry,
9521 view->state.ref.repo);
9522 else
9523 return got_error_msg(GOT_ERR_NOT_IMPL,
9524 "parent/child view pair not supported");
9525 break;
9526 case TOG_VIEW_TREE:
9527 if (view->type == TOG_VIEW_LOG)
9528 err = browse_commit_tree(new_view, y, x,
9529 view->state.log.selected_entry,
9530 view->state.log.in_repo_path,
9531 view->state.log.head_ref_name,
9532 view->state.log.repo);
9533 else if (view->type == TOG_VIEW_REF)
9534 err = browse_ref_tree(new_view, y, x,
9535 view->state.ref.selected_entry,
9536 view->state.ref.repo);
9537 else
9538 return got_error_msg(GOT_ERR_NOT_IMPL,
9539 "parent/child view pair not supported");
9540 break;
9541 case TOG_VIEW_REF:
9542 *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
9543 if (*new_view == NULL)
9544 return got_error_from_errno("view_open");
9545 if (view->type == TOG_VIEW_LOG)
9546 err = open_ref_view(*new_view, view->state.log.repo);
9547 else if (view->type == TOG_VIEW_TREE)
9548 err = open_ref_view(*new_view, view->state.tree.repo);
9549 else
9550 err = got_error_msg(GOT_ERR_NOT_IMPL,
9551 "parent/child view pair not supported");
9552 if (err)
9553 view_close(*new_view);
9554 break;
9555 case TOG_VIEW_HELP:
9556 *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9557 if (*new_view == NULL)
9558 return got_error_from_errno("view_open");
9559 err = open_help_view(*new_view, view);
9560 if (err)
9561 view_close(*new_view);
9562 break;
9563 default:
9564 return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9567 return err;
9571 * If view was scrolled down to move the selected line into view when opening a
9572 * horizontal split, scroll back up when closing the split/toggling fullscreen.
9574 static void
9575 offset_selection_up(struct tog_view *view)
9577 switch (view->type) {
9578 case TOG_VIEW_BLAME: {
9579 struct tog_blame_view_state *s = &view->state.blame;
9580 if (s->first_displayed_line == 1) {
9581 s->selected_line = MAX(s->selected_line - view->offset,
9582 1);
9583 break;
9585 if (s->first_displayed_line > view->offset)
9586 s->first_displayed_line -= view->offset;
9587 else
9588 s->first_displayed_line = 1;
9589 s->selected_line += view->offset;
9590 break;
9592 case TOG_VIEW_LOG:
9593 log_scroll_up(&view->state.log, view->offset);
9594 view->state.log.selected += view->offset;
9595 break;
9596 case TOG_VIEW_REF:
9597 ref_scroll_up(&view->state.ref, view->offset);
9598 view->state.ref.selected += view->offset;
9599 break;
9600 case TOG_VIEW_TREE:
9601 tree_scroll_up(&view->state.tree, view->offset);
9602 view->state.tree.selected += view->offset;
9603 break;
9604 default:
9605 break;
9608 view->offset = 0;
9612 * If the selected line is in the section of screen covered by the bottom split,
9613 * scroll down offset lines to move it into view and index its new position.
9615 static const struct got_error *
9616 offset_selection_down(struct tog_view *view)
9618 const struct got_error *err = NULL;
9619 const struct got_error *(*scrolld)(struct tog_view *, int);
9620 int *selected = NULL;
9621 int header, offset;
9623 switch (view->type) {
9624 case TOG_VIEW_BLAME: {
9625 struct tog_blame_view_state *s = &view->state.blame;
9626 header = 3;
9627 scrolld = NULL;
9628 if (s->selected_line > view->nlines - header) {
9629 offset = abs(view->nlines - s->selected_line - header);
9630 s->first_displayed_line += offset;
9631 s->selected_line -= offset;
9632 view->offset = offset;
9634 break;
9636 case TOG_VIEW_LOG: {
9637 struct tog_log_view_state *s = &view->state.log;
9638 scrolld = &log_scroll_down;
9639 header = view_is_parent_view(view) ? 3 : 2;
9640 selected = &s->selected;
9641 break;
9643 case TOG_VIEW_REF: {
9644 struct tog_ref_view_state *s = &view->state.ref;
9645 scrolld = &ref_scroll_down;
9646 header = 3;
9647 selected = &s->selected;
9648 break;
9650 case TOG_VIEW_TREE: {
9651 struct tog_tree_view_state *s = &view->state.tree;
9652 scrolld = &tree_scroll_down;
9653 header = 5;
9654 selected = &s->selected;
9655 break;
9657 default:
9658 selected = NULL;
9659 scrolld = NULL;
9660 header = 0;
9661 break;
9664 if (selected && *selected > view->nlines - header) {
9665 offset = abs(view->nlines - *selected - header);
9666 view->offset = offset;
9667 if (scrolld && offset) {
9668 err = scrolld(view, offset);
9669 *selected -= offset;
9673 return err;
9676 static void
9677 list_commands(FILE *fp)
9679 size_t i;
9681 fprintf(fp, "commands:");
9682 for (i = 0; i < nitems(tog_commands); i++) {
9683 const struct tog_cmd *cmd = &tog_commands[i];
9684 fprintf(fp, " %s", cmd->name);
9686 fputc('\n', fp);
9689 __dead static void
9690 usage(int hflag, int status)
9692 FILE *fp = (status == 0) ? stdout : stderr;
9694 fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9695 getprogname());
9696 if (hflag) {
9697 fprintf(fp, "lazy usage: %s path\n", getprogname());
9698 list_commands(fp);
9700 exit(status);
9703 static char **
9704 make_argv(int argc, ...)
9706 va_list ap;
9707 char **argv;
9708 int i;
9710 va_start(ap, argc);
9712 argv = calloc(argc, sizeof(char *));
9713 if (argv == NULL)
9714 err(1, "calloc");
9715 for (i = 0; i < argc; i++) {
9716 argv[i] = strdup(va_arg(ap, char *));
9717 if (argv[i] == NULL)
9718 err(1, "strdup");
9721 va_end(ap);
9722 return argv;
9726 * Try to convert 'tog path' into a 'tog log path' command.
9727 * The user could simply have mistyped the command rather than knowingly
9728 * provided a path. So check whether argv[0] can in fact be resolved
9729 * to a path in the HEAD commit and print a special error if not.
9730 * This hack is for mpi@ <3
9732 static const struct got_error *
9733 tog_log_with_path(int argc, char *argv[])
9735 const struct got_error *error = NULL, *close_err;
9736 const struct tog_cmd *cmd = NULL;
9737 struct got_repository *repo = NULL;
9738 struct got_worktree *worktree = NULL;
9739 struct got_object_id *commit_id = NULL, *id = NULL;
9740 struct got_commit_object *commit = NULL;
9741 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9742 char *commit_id_str = NULL, **cmd_argv = NULL;
9743 int *pack_fds = NULL;
9745 cwd = getcwd(NULL, 0);
9746 if (cwd == NULL)
9747 return got_error_from_errno("getcwd");
9749 error = got_repo_pack_fds_open(&pack_fds);
9750 if (error != NULL)
9751 goto done;
9753 error = got_worktree_open(&worktree, cwd);
9754 if (error && error->code != GOT_ERR_NOT_WORKTREE)
9755 goto done;
9757 if (worktree)
9758 repo_path = strdup(got_worktree_get_repo_path(worktree));
9759 else
9760 repo_path = strdup(cwd);
9761 if (repo_path == NULL) {
9762 error = got_error_from_errno("strdup");
9763 goto done;
9766 error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9767 if (error != NULL)
9768 goto done;
9770 error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9771 repo, worktree);
9772 if (error)
9773 goto done;
9775 error = tog_load_refs(repo, 0);
9776 if (error)
9777 goto done;
9778 error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9779 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9780 GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9781 if (error)
9782 goto done;
9784 if (worktree) {
9785 got_worktree_close(worktree);
9786 worktree = NULL;
9789 error = got_object_open_as_commit(&commit, repo, commit_id);
9790 if (error)
9791 goto done;
9793 error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9794 if (error) {
9795 if (error->code != GOT_ERR_NO_TREE_ENTRY)
9796 goto done;
9797 fprintf(stderr, "%s: '%s' is no known command or path\n",
9798 getprogname(), argv[0]);
9799 usage(1, 1);
9800 /* not reached */
9803 error = got_object_id_str(&commit_id_str, commit_id);
9804 if (error)
9805 goto done;
9807 cmd = &tog_commands[0]; /* log */
9808 argc = 4;
9809 cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9810 error = cmd->cmd_main(argc, cmd_argv);
9811 done:
9812 if (repo) {
9813 close_err = got_repo_close(repo);
9814 if (error == NULL)
9815 error = close_err;
9817 if (commit)
9818 got_object_commit_close(commit);
9819 if (worktree)
9820 got_worktree_close(worktree);
9821 if (pack_fds) {
9822 const struct got_error *pack_err =
9823 got_repo_pack_fds_close(pack_fds);
9824 if (error == NULL)
9825 error = pack_err;
9827 free(id);
9828 free(commit_id_str);
9829 free(commit_id);
9830 free(cwd);
9831 free(repo_path);
9832 free(in_repo_path);
9833 if (cmd_argv) {
9834 int i;
9835 for (i = 0; i < argc; i++)
9836 free(cmd_argv[i]);
9837 free(cmd_argv);
9839 tog_free_refs();
9840 return error;
9843 int
9844 main(int argc, char *argv[])
9846 const struct got_error *io_err, *error = NULL;
9847 const struct tog_cmd *cmd = NULL;
9848 int ch, hflag = 0, Vflag = 0;
9849 char **cmd_argv = NULL;
9850 static const struct option longopts[] = {
9851 { "version", no_argument, NULL, 'V' },
9852 { NULL, 0, NULL, 0}
9854 char *diff_algo_str = NULL;
9855 const char *test_script_path;
9857 setlocale(LC_CTYPE, "");
9860 * Test mode init must happen before pledge() because "tty" will
9861 * not allow TTY-related ioctls to occur via regular files.
9863 test_script_path = getenv("TOG_TEST_SCRIPT");
9864 if (test_script_path != NULL) {
9865 error = init_mock_term(test_script_path);
9866 if (error) {
9867 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9868 return 1;
9870 } else if (!isatty(STDIN_FILENO))
9871 errx(1, "standard input is not a tty");
9873 #if !defined(PROFILE)
9874 if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9875 NULL) == -1)
9876 err(1, "pledge");
9877 #endif
9879 while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9880 switch (ch) {
9881 case 'h':
9882 hflag = 1;
9883 break;
9884 case 'V':
9885 Vflag = 1;
9886 break;
9887 default:
9888 usage(hflag, 1);
9889 /* NOTREACHED */
9893 argc -= optind;
9894 argv += optind;
9895 optind = 1;
9896 optreset = 1;
9898 if (Vflag) {
9899 got_version_print_str();
9900 return 0;
9903 if (argc == 0) {
9904 if (hflag)
9905 usage(hflag, 0);
9906 /* Build an argument vector which runs a default command. */
9907 cmd = &tog_commands[0];
9908 argc = 1;
9909 cmd_argv = make_argv(argc, cmd->name);
9910 } else {
9911 size_t i;
9913 /* Did the user specify a command? */
9914 for (i = 0; i < nitems(tog_commands); i++) {
9915 if (strncmp(tog_commands[i].name, argv[0],
9916 strlen(argv[0])) == 0) {
9917 cmd = &tog_commands[i];
9918 break;
9923 diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9924 if (diff_algo_str) {
9925 if (strcasecmp(diff_algo_str, "patience") == 0)
9926 tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9927 if (strcasecmp(diff_algo_str, "myers") == 0)
9928 tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9931 if (cmd == NULL) {
9932 if (argc != 1)
9933 usage(0, 1);
9934 /* No command specified; try log with a path */
9935 error = tog_log_with_path(argc, argv);
9936 } else {
9937 if (hflag)
9938 cmd->cmd_usage();
9939 else
9940 error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9943 if (using_mock_io) {
9944 io_err = tog_io_close();
9945 if (error == NULL)
9946 error = io_err;
9948 endwin();
9949 if (cmd_argv) {
9950 int i;
9951 for (i = 0; i < argc; i++)
9952 free(cmd_argv[i]);
9953 free(cmd_argv);
9956 if (error && error->code != GOT_ERR_CANCELLED &&
9957 error->code != GOT_ERR_EOF &&
9958 error->code != GOT_ERR_PRIVSEP_EXIT &&
9959 error->code != GOT_ERR_PRIVSEP_PIPE &&
9960 !(error->code == GOT_ERR_ERRNO && errno == EINTR))
9961 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9962 return 0;