Blame


1 9f7d7167 2018-04-29 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 9f7d7167 2018-04-29 stsp *
4 9f7d7167 2018-04-29 stsp * Permission to use, copy, modify, and distribute this software for any
5 9f7d7167 2018-04-29 stsp * purpose with or without fee is hereby granted, provided that the above
6 9f7d7167 2018-04-29 stsp * copyright notice and this permission notice appear in all copies.
7 9f7d7167 2018-04-29 stsp *
8 9f7d7167 2018-04-29 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 9f7d7167 2018-04-29 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 9f7d7167 2018-04-29 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 9f7d7167 2018-04-29 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 9f7d7167 2018-04-29 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 9f7d7167 2018-04-29 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 9f7d7167 2018-04-29 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 9f7d7167 2018-04-29 stsp */
16 9f7d7167 2018-04-29 stsp
17 80ddbec8 2018-04-29 stsp #include <sys/queue.h>
18 ffd1d5e5 2018-06-23 stsp #include <sys/stat.h>
19 25791caa 2018-10-24 stsp #include <sys/ioctl.h>
20 80ddbec8 2018-04-29 stsp
21 0d6c6ee3 2020-05-20 stsp #include <ctype.h>
22 31120ada 2018-04-30 stsp #include <errno.h>
23 61e69b96 2018-05-20 stsp #define _XOPEN_SOURCE_EXTENDED
24 9f7d7167 2018-04-29 stsp #include <curses.h>
25 61e69b96 2018-05-20 stsp #undef _XOPEN_SOURCE_EXTENDED
26 9f7d7167 2018-04-29 stsp #include <panel.h>
27 9f7d7167 2018-04-29 stsp #include <locale.h>
28 61266923 2020-01-14 stsp #include <signal.h>
29 9f7d7167 2018-04-29 stsp #include <stdlib.h>
30 ee85c5e8 2020-02-29 stsp #include <stdarg.h>
31 26ed57b2 2018-05-19 stsp #include <stdio.h>
32 9f7d7167 2018-04-29 stsp #include <getopt.h>
33 9f7d7167 2018-04-29 stsp #include <string.h>
34 9f7d7167 2018-04-29 stsp #include <err.h>
35 80ddbec8 2018-04-29 stsp #include <unistd.h>
36 26ed57b2 2018-05-19 stsp #include <util.h>
37 26ed57b2 2018-05-19 stsp #include <limits.h>
38 61e69b96 2018-05-20 stsp #include <wchar.h>
39 788c352e 2018-06-16 stsp #include <time.h>
40 84451b3e 2018-07-10 stsp #include <pthread.h>
41 5036bf37 2018-09-24 stsp #include <libgen.h>
42 60493ae3 2019-06-20 stsp #include <regex.h>
43 9f7d7167 2018-04-29 stsp
44 53ccebc2 2019-07-30 stsp #include "got_version.h"
45 9f7d7167 2018-04-29 stsp #include "got_error.h"
46 80ddbec8 2018-04-29 stsp #include "got_object.h"
47 80ddbec8 2018-04-29 stsp #include "got_reference.h"
48 80ddbec8 2018-04-29 stsp #include "got_repository.h"
49 80ddbec8 2018-04-29 stsp #include "got_diff.h"
50 511a516b 2018-05-19 stsp #include "got_opentemp.h"
51 00dfcb92 2018-06-11 stsp #include "got_utf8.h"
52 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
53 6fb7cd11 2019-08-22 stsp #include "got_commit_graph.h"
54 a70480e0 2018-06-23 stsp #include "got_blame.h"
55 c2db6724 2019-01-04 stsp #include "got_privsep.h"
56 1dd54920 2019-05-11 stsp #include "got_path.h"
57 b7165be3 2019-02-05 stsp #include "got_worktree.h"
58 9f7d7167 2018-04-29 stsp
59 881b2d3e 2018-04-30 stsp #ifndef MIN
60 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
61 881b2d3e 2018-04-30 stsp #endif
62 881b2d3e 2018-04-30 stsp
63 2bd27830 2018-10-22 stsp #ifndef MAX
64 2bd27830 2018-10-22 stsp #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
65 2bd27830 2018-10-22 stsp #endif
66 2bd27830 2018-10-22 stsp
67 a4292ac5 2019-05-12 jcs #define CTRL(x) ((x) & 0x1f)
68 2bd27830 2018-10-22 stsp
69 9f7d7167 2018-04-29 stsp #ifndef nitems
70 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
71 9f7d7167 2018-04-29 stsp #endif
72 9f7d7167 2018-04-29 stsp
73 9f7d7167 2018-04-29 stsp struct tog_cmd {
74 c2301be8 2018-04-30 stsp const char *name;
75 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
76 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
77 9f7d7167 2018-04-29 stsp };
78 9f7d7167 2018-04-29 stsp
79 6879ba42 2020-10-01 naddy __dead static void usage(int, int);
80 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
81 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
82 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
83 ffd1d5e5 2018-06-23 stsp __dead static void usage_tree(void);
84 6458efa5 2020-11-24 stsp __dead static void usage_ref(void);
85 9f7d7167 2018-04-29 stsp
86 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
87 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
88 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
89 ffd1d5e5 2018-06-23 stsp static const struct got_error* cmd_tree(int, char *[]);
90 6458efa5 2020-11-24 stsp static const struct got_error* cmd_ref(int, char *[]);
91 9f7d7167 2018-04-29 stsp
92 4ed7e80c 2018-05-20 stsp static struct tog_cmd tog_commands[] = {
93 5e070240 2019-06-22 stsp { "log", cmd_log, usage_log },
94 5e070240 2019-06-22 stsp { "diff", cmd_diff, usage_diff },
95 5e070240 2019-06-22 stsp { "blame", cmd_blame, usage_blame },
96 5e070240 2019-06-22 stsp { "tree", cmd_tree, usage_tree },
97 6458efa5 2020-11-24 stsp { "ref", cmd_ref, usage_ref },
98 9f7d7167 2018-04-29 stsp };
99 9f7d7167 2018-04-29 stsp
100 d6b05b5b 2018-08-04 stsp enum tog_view_type {
101 d6b05b5b 2018-08-04 stsp TOG_VIEW_DIFF,
102 d6b05b5b 2018-08-04 stsp TOG_VIEW_LOG,
103 ad80ab7b 2018-08-04 stsp TOG_VIEW_BLAME,
104 6458efa5 2020-11-24 stsp TOG_VIEW_TREE,
105 6458efa5 2020-11-24 stsp TOG_VIEW_REF,
106 d6b05b5b 2018-08-04 stsp };
107 c3e9aa98 2019-05-13 jcs
108 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
109 d6b05b5b 2018-08-04 stsp
110 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
111 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
112 ba4f502b 2018-08-04 stsp struct got_object_id *id;
113 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
114 1a76625f 2018-10-22 stsp int idx;
115 ba4f502b 2018-08-04 stsp };
116 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
117 ba4f502b 2018-08-04 stsp struct commit_queue {
118 ba4f502b 2018-08-04 stsp int ncommits;
119 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
120 6d17833f 2019-11-08 stsp };
121 6d17833f 2019-11-08 stsp
122 f26dddb7 2019-11-08 stsp struct tog_color {
123 f26dddb7 2019-11-08 stsp SIMPLEQ_ENTRY(tog_color) entry;
124 6d17833f 2019-11-08 stsp regex_t regex;
125 6d17833f 2019-11-08 stsp short colorpair;
126 15a087fe 2019-02-21 stsp };
127 f26dddb7 2019-11-08 stsp SIMPLEQ_HEAD(tog_colors, tog_color);
128 11b20872 2019-11-08 stsp
129 11b20872 2019-11-08 stsp static const struct got_error *
130 11b20872 2019-11-08 stsp add_color(struct tog_colors *colors, const char *pattern,
131 11b20872 2019-11-08 stsp int idx, short color)
132 11b20872 2019-11-08 stsp {
133 11b20872 2019-11-08 stsp const struct got_error *err = NULL;
134 11b20872 2019-11-08 stsp struct tog_color *tc;
135 11b20872 2019-11-08 stsp int regerr = 0;
136 11b20872 2019-11-08 stsp
137 11b20872 2019-11-08 stsp if (idx < 1 || idx > COLOR_PAIRS - 1)
138 11b20872 2019-11-08 stsp return NULL;
139 11b20872 2019-11-08 stsp
140 11b20872 2019-11-08 stsp init_pair(idx, color, -1);
141 11b20872 2019-11-08 stsp
142 11b20872 2019-11-08 stsp tc = calloc(1, sizeof(*tc));
143 11b20872 2019-11-08 stsp if (tc == NULL)
144 11b20872 2019-11-08 stsp return got_error_from_errno("calloc");
145 11b20872 2019-11-08 stsp regerr = regcomp(&tc->regex, pattern,
146 11b20872 2019-11-08 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
147 11b20872 2019-11-08 stsp if (regerr) {
148 11b20872 2019-11-08 stsp static char regerr_msg[512];
149 11b20872 2019-11-08 stsp static char err_msg[512];
150 11b20872 2019-11-08 stsp regerror(regerr, &tc->regex, regerr_msg,
151 11b20872 2019-11-08 stsp sizeof(regerr_msg));
152 11b20872 2019-11-08 stsp snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
153 11b20872 2019-11-08 stsp regerr_msg);
154 11b20872 2019-11-08 stsp err = got_error_msg(GOT_ERR_REGEX, err_msg);
155 11b20872 2019-11-08 stsp free(tc);
156 11b20872 2019-11-08 stsp return err;
157 11b20872 2019-11-08 stsp }
158 11b20872 2019-11-08 stsp tc->colorpair = idx;
159 11b20872 2019-11-08 stsp SIMPLEQ_INSERT_HEAD(colors, tc, entry);
160 11b20872 2019-11-08 stsp return NULL;
161 11b20872 2019-11-08 stsp }
162 11b20872 2019-11-08 stsp
163 11b20872 2019-11-08 stsp static void
164 11b20872 2019-11-08 stsp free_colors(struct tog_colors *colors)
165 11b20872 2019-11-08 stsp {
166 11b20872 2019-11-08 stsp struct tog_color *tc;
167 11b20872 2019-11-08 stsp
168 11b20872 2019-11-08 stsp while (!SIMPLEQ_EMPTY(colors)) {
169 11b20872 2019-11-08 stsp tc = SIMPLEQ_FIRST(colors);
170 11b20872 2019-11-08 stsp SIMPLEQ_REMOVE_HEAD(colors, entry);
171 11b20872 2019-11-08 stsp regfree(&tc->regex);
172 11b20872 2019-11-08 stsp free(tc);
173 11b20872 2019-11-08 stsp }
174 11b20872 2019-11-08 stsp }
175 11b20872 2019-11-08 stsp
176 11b20872 2019-11-08 stsp struct tog_color *
177 11b20872 2019-11-08 stsp get_color(struct tog_colors *colors, int colorpair)
178 11b20872 2019-11-08 stsp {
179 11b20872 2019-11-08 stsp struct tog_color *tc = NULL;
180 11b20872 2019-11-08 stsp
181 11b20872 2019-11-08 stsp SIMPLEQ_FOREACH(tc, colors, entry) {
182 11b20872 2019-11-08 stsp if (tc->colorpair == colorpair)
183 11b20872 2019-11-08 stsp return tc;
184 11b20872 2019-11-08 stsp }
185 11b20872 2019-11-08 stsp
186 11b20872 2019-11-08 stsp return NULL;
187 11b20872 2019-11-08 stsp }
188 11b20872 2019-11-08 stsp
189 11b20872 2019-11-08 stsp static int
190 11b20872 2019-11-08 stsp default_color_value(const char *envvar)
191 11b20872 2019-11-08 stsp {
192 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
193 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
194 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
195 11b20872 2019-11-08 stsp return COLOR_CYAN;
196 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
197 11b20872 2019-11-08 stsp return COLOR_YELLOW;
198 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
199 11b20872 2019-11-08 stsp return COLOR_GREEN;
200 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
201 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
202 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
203 91b8c405 2020-01-25 stsp return COLOR_MAGENTA;
204 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
205 91b8c405 2020-01-25 stsp return COLOR_CYAN;
206 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
207 11b20872 2019-11-08 stsp return COLOR_GREEN;
208 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
209 11b20872 2019-11-08 stsp return COLOR_GREEN;
210 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
211 11b20872 2019-11-08 stsp return COLOR_CYAN;
212 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
213 11b20872 2019-11-08 stsp return COLOR_YELLOW;
214 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
215 6458efa5 2020-11-24 stsp return COLOR_GREEN;
216 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
217 6458efa5 2020-11-24 stsp return COLOR_MAGENTA;
218 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
219 6458efa5 2020-11-24 stsp return COLOR_YELLOW;
220 11b20872 2019-11-08 stsp
221 11b20872 2019-11-08 stsp return -1;
222 11b20872 2019-11-08 stsp }
223 11b20872 2019-11-08 stsp
224 11b20872 2019-11-08 stsp static int
225 11b20872 2019-11-08 stsp get_color_value(const char *envvar)
226 11b20872 2019-11-08 stsp {
227 11b20872 2019-11-08 stsp const char *val = getenv(envvar);
228 11b20872 2019-11-08 stsp
229 11b20872 2019-11-08 stsp if (val == NULL)
230 11b20872 2019-11-08 stsp return default_color_value(envvar);
231 15a087fe 2019-02-21 stsp
232 11b20872 2019-11-08 stsp if (strcasecmp(val, "black") == 0)
233 11b20872 2019-11-08 stsp return COLOR_BLACK;
234 11b20872 2019-11-08 stsp if (strcasecmp(val, "red") == 0)
235 11b20872 2019-11-08 stsp return COLOR_RED;
236 11b20872 2019-11-08 stsp if (strcasecmp(val, "green") == 0)
237 11b20872 2019-11-08 stsp return COLOR_GREEN;
238 11b20872 2019-11-08 stsp if (strcasecmp(val, "yellow") == 0)
239 11b20872 2019-11-08 stsp return COLOR_YELLOW;
240 11b20872 2019-11-08 stsp if (strcasecmp(val, "blue") == 0)
241 11b20872 2019-11-08 stsp return COLOR_BLUE;
242 11b20872 2019-11-08 stsp if (strcasecmp(val, "magenta") == 0)
243 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
244 11b20872 2019-11-08 stsp if (strcasecmp(val, "cyan") == 0)
245 11b20872 2019-11-08 stsp return COLOR_CYAN;
246 11b20872 2019-11-08 stsp if (strcasecmp(val, "white") == 0)
247 11b20872 2019-11-08 stsp return COLOR_WHITE;
248 11b20872 2019-11-08 stsp if (strcasecmp(val, "default") == 0)
249 11b20872 2019-11-08 stsp return -1;
250 11b20872 2019-11-08 stsp
251 11b20872 2019-11-08 stsp return default_color_value(envvar);
252 11b20872 2019-11-08 stsp }
253 11b20872 2019-11-08 stsp
254 11b20872 2019-11-08 stsp
255 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
256 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
257 3dbaef42 2020-11-24 stsp const char *label1, *label2;
258 15a087fe 2019-02-21 stsp FILE *f;
259 15a087fe 2019-02-21 stsp int first_displayed_line;
260 15a087fe 2019-02-21 stsp int last_displayed_line;
261 15a087fe 2019-02-21 stsp int eof;
262 15a087fe 2019-02-21 stsp int diff_context;
263 3dbaef42 2020-11-24 stsp int ignore_whitespace;
264 64453f7e 2020-11-21 stsp int force_text_diff;
265 15a087fe 2019-02-21 stsp struct got_repository *repo;
266 78756c87 2020-11-24 stsp struct got_reflist_head refs;
267 bddb1296 2019-11-08 stsp struct tog_colors colors;
268 fe621944 2020-11-10 stsp size_t nlines;
269 f44b1f58 2020-02-02 tracey off_t *line_offsets;
270 f44b1f58 2020-02-02 tracey int matched_line;
271 f44b1f58 2020-02-02 tracey int selected_line;
272 15a087fe 2019-02-21 stsp
273 15a087fe 2019-02-21 stsp /* passed from log view; may be NULL */
274 fb872ab2 2019-02-21 stsp struct tog_view *log_view;
275 b01e7d3b 2018-08-04 stsp };
276 b01e7d3b 2018-08-04 stsp
277 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
278 1a76625f 2018-10-22 stsp
279 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
280 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
281 7c1452c1 2020-03-26 stsp pthread_cond_t commit_loaded;
282 1a76625f 2018-10-22 stsp int commits_needed;
283 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
284 1a76625f 2018-10-22 stsp struct commit_queue *commits;
285 1a76625f 2018-10-22 stsp const char *in_repo_path;
286 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
287 1a76625f 2018-10-22 stsp struct got_repository *repo;
288 1a76625f 2018-10-22 stsp int log_complete;
289 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
290 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
291 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
292 13add988 2019-10-15 stsp int *searching;
293 13add988 2019-10-15 stsp int *search_next_done;
294 13add988 2019-10-15 stsp regex_t *regex;
295 1a76625f 2018-10-22 stsp };
296 1a76625f 2018-10-22 stsp
297 1a76625f 2018-10-22 stsp struct tog_log_view_state {
298 b01e7d3b 2018-08-04 stsp struct commit_queue commits;
299 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
300 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
301 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
302 b01e7d3b 2018-08-04 stsp int selected;
303 b01e7d3b 2018-08-04 stsp char *in_repo_path;
304 d01904d4 2019-06-25 stsp const char *head_ref_name;
305 b672a97a 2020-01-27 stsp int log_branches;
306 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
307 78756c87 2020-11-24 stsp struct got_reflist_head refs;
308 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
309 1a76625f 2018-10-22 stsp sig_atomic_t quit;
310 1a76625f 2018-10-22 stsp pthread_t thread;
311 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
312 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
313 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
314 11b20872 2019-11-08 stsp struct tog_colors colors;
315 ba4f502b 2018-08-04 stsp };
316 11b20872 2019-11-08 stsp
317 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_MINUS 1
318 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_PLUS 2
319 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_CHUNK_HEADER 3
320 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_META 4
321 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SUBMODULE 5
322 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SYMLINK 6
323 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_DIRECTORY 7
324 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_EXECUTABLE 8
325 11b20872 2019-11-08 stsp #define TOG_COLOR_COMMIT 9
326 11b20872 2019-11-08 stsp #define TOG_COLOR_AUTHOR 10
327 11b20872 2019-11-08 stsp #define TOG_COLOR_DATE 11
328 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_HEADS 12
329 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_TAGS 13
330 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_REMOTES 14
331 ba4f502b 2018-08-04 stsp
332 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
333 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
334 e9424729 2018-08-04 stsp int nlines;
335 e9424729 2018-08-04 stsp
336 e9424729 2018-08-04 stsp struct tog_view *view;
337 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
338 e9424729 2018-08-04 stsp int *quit;
339 e9424729 2018-08-04 stsp };
340 e9424729 2018-08-04 stsp
341 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
342 e9424729 2018-08-04 stsp const char *path;
343 e9424729 2018-08-04 stsp struct got_repository *repo;
344 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
345 e9424729 2018-08-04 stsp int *complete;
346 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
347 fc06ba56 2019-08-22 stsp void *cancel_arg;
348 e9424729 2018-08-04 stsp };
349 e9424729 2018-08-04 stsp
350 e9424729 2018-08-04 stsp struct tog_blame {
351 e9424729 2018-08-04 stsp FILE *f;
352 be659d10 2020-11-18 stsp off_t filesize;
353 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
354 6fcac457 2018-11-19 stsp int nlines;
355 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
356 e9424729 2018-08-04 stsp pthread_t thread;
357 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
358 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
359 e9424729 2018-08-04 stsp const char *path;
360 e9424729 2018-08-04 stsp };
361 e9424729 2018-08-04 stsp
362 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
363 7cbe629d 2018-08-04 stsp int first_displayed_line;
364 7cbe629d 2018-08-04 stsp int last_displayed_line;
365 7cbe629d 2018-08-04 stsp int selected_line;
366 7cbe629d 2018-08-04 stsp int blame_complete;
367 e5a0f69f 2018-08-18 stsp int eof;
368 e5a0f69f 2018-08-18 stsp int done;
369 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
370 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
371 e5a0f69f 2018-08-18 stsp char *path;
372 7cbe629d 2018-08-04 stsp struct got_repository *repo;
373 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
374 e9424729 2018-08-04 stsp struct tog_blame blame;
375 6c4c42e0 2019-06-24 stsp int matched_line;
376 11b20872 2019-11-08 stsp struct tog_colors colors;
377 ad80ab7b 2018-08-04 stsp };
378 ad80ab7b 2018-08-04 stsp
379 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
380 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
381 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
382 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
383 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
384 ad80ab7b 2018-08-04 stsp int selected;
385 ad80ab7b 2018-08-04 stsp };
386 ad80ab7b 2018-08-04 stsp
387 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
388 ad80ab7b 2018-08-04 stsp
389 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
390 ad80ab7b 2018-08-04 stsp char *tree_label;
391 ad80ab7b 2018-08-04 stsp struct got_tree_object *root;
392 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
393 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
394 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
395 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
396 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
397 ad80ab7b 2018-08-04 stsp struct tog_parent_trees parents;
398 7cbe629d 2018-08-04 stsp struct got_object_id *commit_id;
399 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
400 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
401 6458efa5 2020-11-24 stsp struct tog_colors colors;
402 6458efa5 2020-11-24 stsp };
403 6458efa5 2020-11-24 stsp
404 6458efa5 2020-11-24 stsp struct tog_reflist_entry {
405 6458efa5 2020-11-24 stsp TAILQ_ENTRY(tog_reflist_entry) entry;
406 6458efa5 2020-11-24 stsp struct got_reference *ref;
407 6458efa5 2020-11-24 stsp int idx;
408 6458efa5 2020-11-24 stsp };
409 6458efa5 2020-11-24 stsp
410 6458efa5 2020-11-24 stsp TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
411 6458efa5 2020-11-24 stsp
412 6458efa5 2020-11-24 stsp struct tog_ref_view_state {
413 6458efa5 2020-11-24 stsp struct got_reflist_head simplerefs; /* SIMPLEQ */
414 6458efa5 2020-11-24 stsp struct tog_reflist_head refs; /* TAILQ */
415 6458efa5 2020-11-24 stsp struct tog_reflist_entry *first_displayed_entry;
416 6458efa5 2020-11-24 stsp struct tog_reflist_entry *last_displayed_entry;
417 6458efa5 2020-11-24 stsp struct tog_reflist_entry *selected_entry;
418 6458efa5 2020-11-24 stsp int nrefs, ndisplayed, selected, show_ids;
419 6458efa5 2020-11-24 stsp struct got_repository *repo;
420 6458efa5 2020-11-24 stsp struct tog_reflist_entry *matched_entry;
421 bddb1296 2019-11-08 stsp struct tog_colors colors;
422 7cbe629d 2018-08-04 stsp };
423 7cbe629d 2018-08-04 stsp
424 669b5ffa 2018-10-07 stsp /*
425 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
426 669b5ffa 2018-10-07 stsp *
427 669b5ffa 2018-10-07 stsp * The 'Tab' key switches between a parent view and its child view.
428 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
429 669b5ffa 2018-10-07 stsp * there is enough screen estate.
430 669b5ffa 2018-10-07 stsp *
431 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
432 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
433 669b5ffa 2018-10-07 stsp *
434 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
435 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
436 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
437 669b5ffa 2018-10-07 stsp *
438 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
439 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
440 669b5ffa 2018-10-07 stsp */
441 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
442 669b5ffa 2018-10-07 stsp
443 cc3c9aac 2018-08-01 stsp struct tog_view {
444 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
445 26ed57b2 2018-05-19 stsp WINDOW *window;
446 26ed57b2 2018-05-19 stsp PANEL *panel;
447 97ddc146 2018-08-01 stsp int nlines, ncols, begin_y, begin_x;
448 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
449 1004088d 2018-09-29 stsp int focussed;
450 669b5ffa 2018-10-07 stsp struct tog_view *parent;
451 669b5ffa 2018-10-07 stsp struct tog_view *child;
452 669b5ffa 2018-10-07 stsp int child_focussed;
453 5dc9f4bc 2018-08-04 stsp
454 5dc9f4bc 2018-08-04 stsp /* type-specific state */
455 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
456 5dc9f4bc 2018-08-04 stsp union {
457 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
458 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
459 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
460 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
461 6458efa5 2020-11-24 stsp struct tog_ref_view_state ref;
462 5dc9f4bc 2018-08-04 stsp } state;
463 e5a0f69f 2018-08-18 stsp
464 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
465 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
466 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view**, struct tog_view *, int);
467 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
468 60493ae3 2019-06-20 stsp
469 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
470 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
471 60493ae3 2019-06-20 stsp int searching;
472 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
473 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
474 60493ae3 2019-06-20 stsp int search_next_done;
475 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_HAVE_MORE 1
476 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_NO_MORE 2
477 f9967bca 2020-03-27 stsp #define TOG_SEARCH_HAVE_NONE 3
478 1803e47f 2019-06-22 stsp regex_t regex;
479 41605754 2020-11-12 stsp regmatch_t regmatch;
480 cc3c9aac 2018-08-01 stsp };
481 cd0acaa7 2018-05-20 stsp
482 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
483 3dbaef42 2020-11-24 stsp struct got_object_id *, struct got_object_id *,
484 3dbaef42 2020-11-24 stsp const char *, const char *, int, int, int, struct tog_view *,
485 78756c87 2020-11-24 stsp struct got_repository *);
486 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
487 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
488 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
489 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
490 f44b1f58 2020-02-02 tracey static const struct got_error *search_start_diff_view(struct tog_view *);
491 f44b1f58 2020-02-02 tracey static const struct got_error *search_next_diff_view(struct tog_view *);
492 e5a0f69f 2018-08-18 stsp
493 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
494 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *,
495 78756c87 2020-11-24 stsp const char *, const char *, int);
496 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
497 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
498 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
499 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
500 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
501 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
502 e5a0f69f 2018-08-18 stsp
503 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
504 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *);
505 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
506 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
507 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
508 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
509 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
510 6c4c42e0 2019-06-24 stsp static const struct got_error *search_next_blame_view(struct tog_view *);
511 e5a0f69f 2018-08-18 stsp
512 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
513 78756c87 2020-11-24 stsp struct got_tree_object *, struct got_object_id *, struct got_repository *);
514 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
515 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
516 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
517 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
518 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
519 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
520 6458efa5 2020-11-24 stsp
521 6458efa5 2020-11-24 stsp static const struct got_error *open_ref_view(struct tog_view *,
522 6458efa5 2020-11-24 stsp struct got_repository *);
523 6458efa5 2020-11-24 stsp static const struct got_error *show_ref_view(struct tog_view *);
524 6458efa5 2020-11-24 stsp static const struct got_error *input_ref_view(struct tog_view **,
525 6458efa5 2020-11-24 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
526 6458efa5 2020-11-24 stsp static const struct got_error *close_ref_view(struct tog_view *);
527 6458efa5 2020-11-24 stsp static const struct got_error *search_start_ref_view(struct tog_view *);
528 6458efa5 2020-11-24 stsp static const struct got_error *search_next_ref_view(struct tog_view *);
529 25791caa 2018-10-24 stsp
530 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
531 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
532 61266923 2020-01-14 stsp static volatile sig_atomic_t tog_sigcont_received;
533 25791caa 2018-10-24 stsp
534 25791caa 2018-10-24 stsp static void
535 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
536 25791caa 2018-10-24 stsp {
537 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
538 83baff54 2019-08-12 stsp }
539 83baff54 2019-08-12 stsp
540 83baff54 2019-08-12 stsp static void
541 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
542 83baff54 2019-08-12 stsp {
543 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
544 25791caa 2018-10-24 stsp }
545 26ed57b2 2018-05-19 stsp
546 61266923 2020-01-14 stsp static void
547 61266923 2020-01-14 stsp tog_sigcont(int signo)
548 61266923 2020-01-14 stsp {
549 61266923 2020-01-14 stsp tog_sigcont_received = 1;
550 61266923 2020-01-14 stsp }
551 61266923 2020-01-14 stsp
552 e5a0f69f 2018-08-18 stsp static const struct got_error *
553 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
554 ea5e7bb5 2018-08-01 stsp {
555 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
556 e5a0f69f 2018-08-18 stsp
557 669b5ffa 2018-10-07 stsp if (view->child) {
558 669b5ffa 2018-10-07 stsp view_close(view->child);
559 669b5ffa 2018-10-07 stsp view->child = NULL;
560 669b5ffa 2018-10-07 stsp }
561 e5a0f69f 2018-08-18 stsp if (view->close)
562 e5a0f69f 2018-08-18 stsp err = view->close(view);
563 ea5e7bb5 2018-08-01 stsp if (view->panel)
564 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
565 ea5e7bb5 2018-08-01 stsp if (view->window)
566 ea5e7bb5 2018-08-01 stsp delwin(view->window);
567 ea5e7bb5 2018-08-01 stsp free(view);
568 e5a0f69f 2018-08-18 stsp return err;
569 ea5e7bb5 2018-08-01 stsp }
570 ea5e7bb5 2018-08-01 stsp
571 ea5e7bb5 2018-08-01 stsp static struct tog_view *
572 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
573 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
574 ea5e7bb5 2018-08-01 stsp {
575 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
576 ea5e7bb5 2018-08-01 stsp
577 ea5e7bb5 2018-08-01 stsp if (view == NULL)
578 ea5e7bb5 2018-08-01 stsp return NULL;
579 ea5e7bb5 2018-08-01 stsp
580 d6b05b5b 2018-08-04 stsp view->type = type;
581 f7d12f7e 2018-08-01 stsp view->lines = LINES;
582 f7d12f7e 2018-08-01 stsp view->cols = COLS;
583 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
584 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
585 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
586 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
587 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
588 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
589 96a765a8 2018-08-04 stsp view_close(view);
590 ea5e7bb5 2018-08-01 stsp return NULL;
591 ea5e7bb5 2018-08-01 stsp }
592 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
593 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
594 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
595 96a765a8 2018-08-04 stsp view_close(view);
596 ea5e7bb5 2018-08-01 stsp return NULL;
597 ea5e7bb5 2018-08-01 stsp }
598 ea5e7bb5 2018-08-01 stsp
599 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
600 ea5e7bb5 2018-08-01 stsp return view;
601 cdf1ee82 2018-08-01 stsp }
602 cdf1ee82 2018-08-01 stsp
603 0cf4efb1 2018-09-29 stsp static int
604 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
605 0cf4efb1 2018-09-29 stsp {
606 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
607 0cf4efb1 2018-09-29 stsp return 0;
608 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
609 5c60c32a 2018-10-18 stsp }
610 5c60c32a 2018-10-18 stsp
611 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
612 5c60c32a 2018-10-18 stsp
613 5c60c32a 2018-10-18 stsp static const struct got_error *
614 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
615 5c60c32a 2018-10-18 stsp {
616 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
617 5c60c32a 2018-10-18 stsp
618 5c60c32a 2018-10-18 stsp view->begin_y = 0;
619 5c60c32a 2018-10-18 stsp view->begin_x = view_split_begin_x(0);
620 5c60c32a 2018-10-18 stsp view->nlines = LINES;
621 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
622 5c60c32a 2018-10-18 stsp view->lines = LINES;
623 5c60c32a 2018-10-18 stsp view->cols = COLS;
624 5c60c32a 2018-10-18 stsp err = view_resize(view);
625 5c60c32a 2018-10-18 stsp if (err)
626 5c60c32a 2018-10-18 stsp return err;
627 5c60c32a 2018-10-18 stsp
628 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
629 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
630 5c60c32a 2018-10-18 stsp
631 5c60c32a 2018-10-18 stsp return NULL;
632 5c60c32a 2018-10-18 stsp }
633 5c60c32a 2018-10-18 stsp
634 5c60c32a 2018-10-18 stsp static const struct got_error *
635 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
636 5c60c32a 2018-10-18 stsp {
637 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
638 5c60c32a 2018-10-18 stsp
639 5c60c32a 2018-10-18 stsp view->begin_x = 0;
640 5c60c32a 2018-10-18 stsp view->begin_y = 0;
641 5c60c32a 2018-10-18 stsp view->nlines = LINES;
642 5c60c32a 2018-10-18 stsp view->ncols = COLS;
643 5c60c32a 2018-10-18 stsp view->lines = LINES;
644 5c60c32a 2018-10-18 stsp view->cols = COLS;
645 5c60c32a 2018-10-18 stsp err = view_resize(view);
646 5c60c32a 2018-10-18 stsp if (err)
647 5c60c32a 2018-10-18 stsp return err;
648 5c60c32a 2018-10-18 stsp
649 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
650 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
651 5c60c32a 2018-10-18 stsp
652 5c60c32a 2018-10-18 stsp return NULL;
653 0cf4efb1 2018-09-29 stsp }
654 0cf4efb1 2018-09-29 stsp
655 5c60c32a 2018-10-18 stsp static int
656 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
657 5c60c32a 2018-10-18 stsp {
658 5c60c32a 2018-10-18 stsp return view->parent == NULL;
659 5c60c32a 2018-10-18 stsp }
660 5c60c32a 2018-10-18 stsp
661 4d8c2215 2018-08-19 stsp static const struct got_error *
662 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
663 f7d12f7e 2018-08-01 stsp {
664 f7d12f7e 2018-08-01 stsp int nlines, ncols;
665 f7d12f7e 2018-08-01 stsp
666 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
667 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
668 0cf4efb1 2018-09-29 stsp else
669 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
670 f7d12f7e 2018-08-01 stsp
671 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
672 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
673 0cf4efb1 2018-09-29 stsp else
674 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
675 f7d12f7e 2018-08-01 stsp
676 0cf4efb1 2018-09-29 stsp if (wresize(view->window, nlines, ncols) == ERR)
677 638f9024 2019-05-13 stsp return got_error_from_errno("wresize");
678 a6d7eb8d 2018-10-24 stsp if (replace_panel(view->panel, view->window) == ERR)
679 638f9024 2019-05-13 stsp return got_error_from_errno("replace_panel");
680 25791caa 2018-10-24 stsp wclear(view->window);
681 f7d12f7e 2018-08-01 stsp
682 0cf4efb1 2018-09-29 stsp view->nlines = nlines;
683 0cf4efb1 2018-09-29 stsp view->ncols = ncols;
684 0cf4efb1 2018-09-29 stsp view->lines = LINES;
685 0cf4efb1 2018-09-29 stsp view->cols = COLS;
686 6d0fee91 2018-08-01 stsp
687 6e3e5d9c 2018-10-18 stsp if (view->child) {
688 5c60c32a 2018-10-18 stsp view->child->begin_x = view_split_begin_x(view->begin_x);
689 5c60c32a 2018-10-18 stsp if (view->child->begin_x == 0) {
690 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
691 5c60c32a 2018-10-18 stsp if (view->child->focussed)
692 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
693 5c60c32a 2018-10-18 stsp else
694 5c60c32a 2018-10-18 stsp show_panel(view->panel);
695 5c60c32a 2018-10-18 stsp } else {
696 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
697 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
698 5c60c32a 2018-10-18 stsp }
699 5c60c32a 2018-10-18 stsp }
700 669b5ffa 2018-10-07 stsp
701 5c60c32a 2018-10-18 stsp return NULL;
702 669b5ffa 2018-10-07 stsp }
703 669b5ffa 2018-10-07 stsp
704 669b5ffa 2018-10-07 stsp static const struct got_error *
705 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
706 669b5ffa 2018-10-07 stsp {
707 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
708 669b5ffa 2018-10-07 stsp
709 669b5ffa 2018-10-07 stsp if (view->child == NULL)
710 669b5ffa 2018-10-07 stsp return NULL;
711 669b5ffa 2018-10-07 stsp
712 669b5ffa 2018-10-07 stsp err = view_close(view->child);
713 669b5ffa 2018-10-07 stsp view->child = NULL;
714 669b5ffa 2018-10-07 stsp return err;
715 669b5ffa 2018-10-07 stsp }
716 669b5ffa 2018-10-07 stsp
717 669b5ffa 2018-10-07 stsp static const struct got_error *
718 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
719 669b5ffa 2018-10-07 stsp {
720 669b5ffa 2018-10-07 stsp const struct got_error *err = NULL;
721 669b5ffa 2018-10-07 stsp
722 669b5ffa 2018-10-07 stsp view->child = child;
723 669b5ffa 2018-10-07 stsp child->parent = view;
724 669b5ffa 2018-10-07 stsp return err;
725 bfddd0d9 2018-09-29 stsp }
726 bfddd0d9 2018-09-29 stsp
727 bfddd0d9 2018-09-29 stsp static int
728 bfddd0d9 2018-09-29 stsp view_is_splitscreen(struct tog_view *view)
729 bfddd0d9 2018-09-29 stsp {
730 f5215bb9 2019-02-22 stsp return view->begin_x > 0;
731 34bc9ec9 2019-02-22 stsp }
732 34bc9ec9 2019-02-22 stsp
733 34bc9ec9 2019-02-22 stsp static void
734 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
735 25791caa 2018-10-24 stsp {
736 25791caa 2018-10-24 stsp int cols, lines;
737 25791caa 2018-10-24 stsp struct winsize size;
738 25791caa 2018-10-24 stsp
739 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
740 25791caa 2018-10-24 stsp cols = 80; /* Default */
741 25791caa 2018-10-24 stsp lines = 24;
742 25791caa 2018-10-24 stsp } else {
743 25791caa 2018-10-24 stsp cols = size.ws_col;
744 25791caa 2018-10-24 stsp lines = size.ws_row;
745 25791caa 2018-10-24 stsp }
746 25791caa 2018-10-24 stsp resize_term(lines, cols);
747 2b49a8ae 2019-06-22 stsp }
748 2b49a8ae 2019-06-22 stsp
749 2b49a8ae 2019-06-22 stsp static const struct got_error *
750 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
751 2b49a8ae 2019-06-22 stsp {
752 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
753 2b49a8ae 2019-06-22 stsp char pattern[1024];
754 2b49a8ae 2019-06-22 stsp int ret;
755 2b49a8ae 2019-06-22 stsp
756 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
757 2b49a8ae 2019-06-22 stsp return NULL;
758 2b49a8ae 2019-06-22 stsp
759 cb1159f8 2020-02-19 stsp mvwaddstr(view->window, view->begin_y + view->nlines - 1, 0, "/");
760 2b49a8ae 2019-06-22 stsp wclrtoeol(view->window);
761 2b49a8ae 2019-06-22 stsp
762 2b49a8ae 2019-06-22 stsp nocbreak();
763 2b49a8ae 2019-06-22 stsp echo();
764 2b49a8ae 2019-06-22 stsp ret = wgetnstr(view->window, pattern, sizeof(pattern));
765 2b49a8ae 2019-06-22 stsp cbreak();
766 2b49a8ae 2019-06-22 stsp noecho();
767 2b49a8ae 2019-06-22 stsp if (ret == ERR)
768 2b49a8ae 2019-06-22 stsp return NULL;
769 2b49a8ae 2019-06-22 stsp
770 2b49a8ae 2019-06-22 stsp if (view->searching) {
771 2b49a8ae 2019-06-22 stsp regfree(&view->regex);
772 2b49a8ae 2019-06-22 stsp view->searching = 0;
773 2b49a8ae 2019-06-22 stsp }
774 2b49a8ae 2019-06-22 stsp
775 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
776 7c32bd05 2019-06-22 stsp err = view->search_start(view);
777 7c32bd05 2019-06-22 stsp if (err) {
778 7c32bd05 2019-06-22 stsp regfree(&view->regex);
779 7c32bd05 2019-06-22 stsp return err;
780 7c32bd05 2019-06-22 stsp }
781 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
782 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
783 2b49a8ae 2019-06-22 stsp view->search_next(view);
784 2b49a8ae 2019-06-22 stsp }
785 2b49a8ae 2019-06-22 stsp
786 2b49a8ae 2019-06-22 stsp return NULL;
787 0cf4efb1 2018-09-29 stsp }
788 6d0fee91 2018-08-01 stsp
789 0cf4efb1 2018-09-29 stsp static const struct got_error *
790 48fcc512 2018-08-18 stsp view_input(struct tog_view **new, struct tog_view **dead,
791 e4197bf9 2018-08-18 stsp struct tog_view **focus, int *done, struct tog_view *view,
792 48fcc512 2018-08-18 stsp struct tog_view_list_head *views)
793 e5a0f69f 2018-08-18 stsp {
794 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
795 669b5ffa 2018-10-07 stsp struct tog_view *v;
796 1a76625f 2018-10-22 stsp int ch, errcode;
797 e5a0f69f 2018-08-18 stsp
798 e5a0f69f 2018-08-18 stsp *new = NULL;
799 e5a0f69f 2018-08-18 stsp *dead = NULL;
800 0cf4efb1 2018-09-29 stsp *focus = NULL;
801 8f4ed634 2020-03-26 stsp
802 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
803 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
804 f9967bca 2020-03-27 stsp view->search_next_done == TOG_SEARCH_HAVE_NONE)
805 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
806 e5a0f69f 2018-08-18 stsp
807 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
808 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
809 82954512 2020-02-03 stsp if (errcode)
810 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
811 82954512 2020-02-03 stsp "pthread_mutex_unlock");
812 82954512 2020-02-03 stsp pthread_yield();
813 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
814 82954512 2020-02-03 stsp if (errcode)
815 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
816 82954512 2020-02-03 stsp "pthread_mutex_lock");
817 60493ae3 2019-06-20 stsp view->search_next(view);
818 60493ae3 2019-06-20 stsp return NULL;
819 60493ae3 2019-06-20 stsp }
820 60493ae3 2019-06-20 stsp
821 e5a0f69f 2018-08-18 stsp nodelay(stdscr, FALSE);
822 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
823 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
824 1a76625f 2018-10-22 stsp if (errcode)
825 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
826 cc5bac66 2018-10-22 stsp ch = wgetch(view->window);
827 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
828 1a76625f 2018-10-22 stsp if (errcode)
829 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
830 e5a0f69f 2018-08-18 stsp nodelay(stdscr, TRUE);
831 25791caa 2018-10-24 stsp
832 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
833 25791caa 2018-10-24 stsp tog_resizeterm();
834 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
835 61266923 2020-01-14 stsp tog_sigcont_received = 0;
836 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
837 25791caa 2018-10-24 stsp err = view_resize(v);
838 25791caa 2018-10-24 stsp if (err)
839 25791caa 2018-10-24 stsp return err;
840 25791caa 2018-10-24 stsp err = v->input(new, dead, focus, v, KEY_RESIZE);
841 25791caa 2018-10-24 stsp if (err)
842 25791caa 2018-10-24 stsp return err;
843 25791caa 2018-10-24 stsp }
844 25791caa 2018-10-24 stsp }
845 25791caa 2018-10-24 stsp
846 e5a0f69f 2018-08-18 stsp switch (ch) {
847 1e37a5c2 2019-05-12 jcs case ERR:
848 1e37a5c2 2019-05-12 jcs break;
849 1e37a5c2 2019-05-12 jcs case '\t':
850 1e37a5c2 2019-05-12 jcs if (view->child) {
851 1e37a5c2 2019-05-12 jcs *focus = view->child;
852 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
853 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
854 1e37a5c2 2019-05-12 jcs *focus = view->parent;
855 1e37a5c2 2019-05-12 jcs view->parent->child_focussed = 0;
856 1e37a5c2 2019-05-12 jcs }
857 1e37a5c2 2019-05-12 jcs break;
858 1e37a5c2 2019-05-12 jcs case 'q':
859 1e37a5c2 2019-05-12 jcs err = view->input(new, dead, focus, view, ch);
860 1e37a5c2 2019-05-12 jcs *dead = view;
861 1e37a5c2 2019-05-12 jcs break;
862 1e37a5c2 2019-05-12 jcs case 'Q':
863 1e37a5c2 2019-05-12 jcs *done = 1;
864 1e37a5c2 2019-05-12 jcs break;
865 1e37a5c2 2019-05-12 jcs case 'f':
866 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
867 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
868 1e37a5c2 2019-05-12 jcs break;
869 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
870 669b5ffa 2018-10-07 stsp *focus = view->child;
871 669b5ffa 2018-10-07 stsp view->child_focussed = 1;
872 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
873 1e37a5c2 2019-05-12 jcs } else
874 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
875 1e37a5c2 2019-05-12 jcs if (err)
876 1e37a5c2 2019-05-12 jcs break;
877 1e37a5c2 2019-05-12 jcs err = view->child->input(new, dead, focus,
878 1e37a5c2 2019-05-12 jcs view->child, KEY_RESIZE);
879 1e37a5c2 2019-05-12 jcs } else {
880 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
881 1e37a5c2 2019-05-12 jcs *focus = view;
882 1e37a5c2 2019-05-12 jcs view->parent->child_focussed = 1;
883 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
884 1e37a5c2 2019-05-12 jcs } else {
885 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
886 669b5ffa 2018-10-07 stsp }
887 1e37a5c2 2019-05-12 jcs if (err)
888 1e37a5c2 2019-05-12 jcs break;
889 1e37a5c2 2019-05-12 jcs err = view->input(new, dead, focus, view,
890 1e37a5c2 2019-05-12 jcs KEY_RESIZE);
891 1e37a5c2 2019-05-12 jcs }
892 1e37a5c2 2019-05-12 jcs break;
893 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
894 60493ae3 2019-06-20 stsp break;
895 60493ae3 2019-06-20 stsp case '/':
896 60493ae3 2019-06-20 stsp if (view->search_start)
897 2b49a8ae 2019-06-22 stsp view_search_start(view);
898 60493ae3 2019-06-20 stsp else
899 60493ae3 2019-06-20 stsp err = view->input(new, dead, focus, view, ch);
900 1e37a5c2 2019-05-12 jcs break;
901 b1bf1435 2019-06-21 stsp case 'N':
902 60493ae3 2019-06-20 stsp case 'n':
903 8f4ed634 2020-03-26 stsp if (view->search_next) {
904 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
905 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
906 60493ae3 2019-06-20 stsp view->search_next_done = 0;
907 60493ae3 2019-06-20 stsp view->search_next(view);
908 60493ae3 2019-06-20 stsp } else
909 60493ae3 2019-06-20 stsp err = view->input(new, dead, focus, view, ch);
910 60493ae3 2019-06-20 stsp break;
911 1e37a5c2 2019-05-12 jcs default:
912 1e37a5c2 2019-05-12 jcs err = view->input(new, dead, focus, view, ch);
913 1e37a5c2 2019-05-12 jcs break;
914 e5a0f69f 2018-08-18 stsp }
915 e5a0f69f 2018-08-18 stsp
916 e5a0f69f 2018-08-18 stsp return err;
917 e5a0f69f 2018-08-18 stsp }
918 e5a0f69f 2018-08-18 stsp
919 1a57306a 2018-09-02 stsp void
920 1a57306a 2018-09-02 stsp view_vborder(struct tog_view *view)
921 1a57306a 2018-09-02 stsp {
922 0cf4efb1 2018-09-29 stsp PANEL *panel;
923 0cf4efb1 2018-09-29 stsp struct tog_view *view_above;
924 0cf4efb1 2018-09-29 stsp
925 669b5ffa 2018-10-07 stsp if (view->parent)
926 669b5ffa 2018-10-07 stsp return view_vborder(view->parent);
927 669b5ffa 2018-10-07 stsp
928 0cf4efb1 2018-09-29 stsp panel = panel_above(view->panel);
929 0cf4efb1 2018-09-29 stsp if (panel == NULL)
930 1a57306a 2018-09-02 stsp return;
931 1a57306a 2018-09-02 stsp
932 0cf4efb1 2018-09-29 stsp view_above = panel_userptr(panel);
933 0cf4efb1 2018-09-29 stsp mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
934 1a57306a 2018-09-02 stsp got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
935 bcbd79e2 2018-08-19 stsp }
936 bcbd79e2 2018-08-19 stsp
937 a3404814 2018-09-02 stsp int
938 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
939 a3404814 2018-09-02 stsp {
940 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
941 669b5ffa 2018-10-07 stsp if (view->child == NULL || view->child_focussed)
942 669b5ffa 2018-10-07 stsp return 0;
943 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
944 669b5ffa 2018-10-07 stsp return 0;
945 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
946 a3404814 2018-09-02 stsp return 0;
947 a3404814 2018-09-02 stsp
948 669b5ffa 2018-10-07 stsp return view->focussed;
949 a3404814 2018-09-02 stsp }
950 a3404814 2018-09-02 stsp
951 bcbd79e2 2018-08-19 stsp static const struct got_error *
952 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
953 e5a0f69f 2018-08-18 stsp {
954 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
955 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
956 669b5ffa 2018-10-07 stsp struct tog_view *new_view, *dead_view, *focus_view, *main_view;
957 fd823528 2018-10-22 stsp int fast_refresh = 10;
958 1a76625f 2018-10-22 stsp int done = 0, errcode;
959 e5a0f69f 2018-08-18 stsp
960 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
961 1a76625f 2018-10-22 stsp if (errcode)
962 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
963 1a76625f 2018-10-22 stsp
964 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
965 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
966 e5a0f69f 2018-08-18 stsp
967 a81bf10d 2018-09-29 stsp main_view = view;
968 1004088d 2018-09-29 stsp view->focussed = 1;
969 878940b7 2018-09-29 stsp err = view->show(view);
970 0cf4efb1 2018-09-29 stsp if (err)
971 0cf4efb1 2018-09-29 stsp return err;
972 0cf4efb1 2018-09-29 stsp update_panels();
973 0cf4efb1 2018-09-29 stsp doupdate();
974 83baff54 2019-08-12 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_sigpipe_received) {
975 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
976 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
977 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
978 fd823528 2018-10-22 stsp
979 0cf4efb1 2018-09-29 stsp err = view_input(&new_view, &dead_view, &focus_view, &done,
980 e4197bf9 2018-08-18 stsp view, &views);
981 e5a0f69f 2018-08-18 stsp if (err)
982 e5a0f69f 2018-08-18 stsp break;
983 e5a0f69f 2018-08-18 stsp if (dead_view) {
984 669b5ffa 2018-10-07 stsp struct tog_view *prev = NULL;
985 669b5ffa 2018-10-07 stsp
986 669b5ffa 2018-10-07 stsp if (view_is_parent_view(dead_view))
987 669b5ffa 2018-10-07 stsp prev = TAILQ_PREV(dead_view,
988 669b5ffa 2018-10-07 stsp tog_view_list_head, entry);
989 f41eceb0 2018-10-24 stsp else if (view->parent != dead_view)
990 669b5ffa 2018-10-07 stsp prev = view->parent;
991 669b5ffa 2018-10-07 stsp
992 669b5ffa 2018-10-07 stsp if (dead_view->parent)
993 669b5ffa 2018-10-07 stsp dead_view->parent->child = NULL;
994 669b5ffa 2018-10-07 stsp else
995 669b5ffa 2018-10-07 stsp TAILQ_REMOVE(&views, dead_view, entry);
996 669b5ffa 2018-10-07 stsp
997 e5a0f69f 2018-08-18 stsp err = view_close(dead_view);
998 d01904d4 2019-06-25 stsp if (err || (dead_view == main_view && new_view == NULL))
999 e5a0f69f 2018-08-18 stsp goto done;
1000 669b5ffa 2018-10-07 stsp
1001 0cf4efb1 2018-09-29 stsp if (view == dead_view) {
1002 0cf4efb1 2018-09-29 stsp if (focus_view)
1003 0cf4efb1 2018-09-29 stsp view = focus_view;
1004 669b5ffa 2018-10-07 stsp else if (prev)
1005 669b5ffa 2018-10-07 stsp view = prev;
1006 669b5ffa 2018-10-07 stsp else if (!TAILQ_EMPTY(&views))
1007 0cf4efb1 2018-09-29 stsp view = TAILQ_LAST(&views,
1008 0cf4efb1 2018-09-29 stsp tog_view_list_head);
1009 669b5ffa 2018-10-07 stsp else
1010 0cf4efb1 2018-09-29 stsp view = NULL;
1011 669b5ffa 2018-10-07 stsp if (view) {
1012 669b5ffa 2018-10-07 stsp if (view->child && view->child_focussed)
1013 669b5ffa 2018-10-07 stsp focus_view = view->child;
1014 669b5ffa 2018-10-07 stsp else
1015 669b5ffa 2018-10-07 stsp focus_view = view;
1016 669b5ffa 2018-10-07 stsp }
1017 0cf4efb1 2018-09-29 stsp }
1018 e5a0f69f 2018-08-18 stsp }
1019 bcbd79e2 2018-08-19 stsp if (new_view) {
1020 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1021 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1022 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1023 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1024 86c66b02 2018-10-18 stsp continue;
1025 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1026 86c66b02 2018-10-18 stsp err = view_close(v);
1027 86c66b02 2018-10-18 stsp if (err)
1028 86c66b02 2018-10-18 stsp goto done;
1029 86c66b02 2018-10-18 stsp break;
1030 86c66b02 2018-10-18 stsp }
1031 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1032 fed7eaa8 2018-10-24 stsp view = new_view;
1033 878940b7 2018-09-29 stsp if (focus_view == NULL)
1034 878940b7 2018-09-29 stsp focus_view = new_view;
1035 1a76625f 2018-10-22 stsp }
1036 0cf4efb1 2018-09-29 stsp if (focus_view) {
1037 0cf4efb1 2018-09-29 stsp show_panel(focus_view->panel);
1038 669b5ffa 2018-10-07 stsp if (view)
1039 0cf4efb1 2018-09-29 stsp view->focussed = 0;
1040 0cf4efb1 2018-09-29 stsp focus_view->focussed = 1;
1041 0cf4efb1 2018-09-29 stsp view = focus_view;
1042 878940b7 2018-09-29 stsp if (new_view)
1043 878940b7 2018-09-29 stsp show_panel(new_view->panel);
1044 669b5ffa 2018-10-07 stsp if (view->child && view_is_splitscreen(view->child))
1045 669b5ffa 2018-10-07 stsp show_panel(view->child->panel);
1046 bcbd79e2 2018-08-19 stsp }
1047 669b5ffa 2018-10-07 stsp if (view) {
1048 1a76625f 2018-10-22 stsp if (focus_view == NULL) {
1049 758194b5 2018-10-24 stsp view->focussed = 1;
1050 758194b5 2018-10-24 stsp show_panel(view->panel);
1051 758194b5 2018-10-24 stsp if (view->child && view_is_splitscreen(view->child))
1052 758194b5 2018-10-24 stsp show_panel(view->child->panel);
1053 1a76625f 2018-10-22 stsp focus_view = view;
1054 1a76625f 2018-10-22 stsp }
1055 669b5ffa 2018-10-07 stsp if (view->parent) {
1056 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1057 669b5ffa 2018-10-07 stsp if (err)
1058 1a76625f 2018-10-22 stsp goto done;
1059 669b5ffa 2018-10-07 stsp }
1060 669b5ffa 2018-10-07 stsp err = view->show(view);
1061 0cf4efb1 2018-09-29 stsp if (err)
1062 1a76625f 2018-10-22 stsp goto done;
1063 669b5ffa 2018-10-07 stsp if (view->child) {
1064 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1065 669b5ffa 2018-10-07 stsp if (err)
1066 1a76625f 2018-10-22 stsp goto done;
1067 669b5ffa 2018-10-07 stsp }
1068 1a76625f 2018-10-22 stsp update_panels();
1069 1a76625f 2018-10-22 stsp doupdate();
1070 0cf4efb1 2018-09-29 stsp }
1071 e5a0f69f 2018-08-18 stsp }
1072 e5a0f69f 2018-08-18 stsp done:
1073 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1074 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1075 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1076 e5a0f69f 2018-08-18 stsp view_close(view);
1077 e5a0f69f 2018-08-18 stsp }
1078 1a76625f 2018-10-22 stsp
1079 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1080 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1081 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1082 1a76625f 2018-10-22 stsp
1083 e5a0f69f 2018-08-18 stsp return err;
1084 ea5e7bb5 2018-08-01 stsp }
1085 ea5e7bb5 2018-08-01 stsp
1086 4ed7e80c 2018-05-20 stsp __dead static void
1087 9f7d7167 2018-04-29 stsp usage_log(void)
1088 9f7d7167 2018-04-29 stsp {
1089 80ddbec8 2018-04-29 stsp endwin();
1090 c70c5802 2018-08-01 stsp fprintf(stderr,
1091 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1092 9f7d7167 2018-04-29 stsp getprogname());
1093 9f7d7167 2018-04-29 stsp exit(1);
1094 80ddbec8 2018-04-29 stsp }
1095 80ddbec8 2018-04-29 stsp
1096 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1097 80ddbec8 2018-04-29 stsp static const struct got_error *
1098 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1099 963b370f 2018-05-20 stsp {
1100 00dfcb92 2018-06-11 stsp char *vis = NULL;
1101 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1102 963b370f 2018-05-20 stsp
1103 963b370f 2018-05-20 stsp *ws = NULL;
1104 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1105 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1106 00dfcb92 2018-06-11 stsp int vislen;
1107 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1108 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1109 00dfcb92 2018-06-11 stsp
1110 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1111 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1112 00dfcb92 2018-06-11 stsp if (err)
1113 00dfcb92 2018-06-11 stsp return err;
1114 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1115 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1116 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1117 a7f50699 2018-06-11 stsp goto done;
1118 a7f50699 2018-06-11 stsp }
1119 00dfcb92 2018-06-11 stsp }
1120 963b370f 2018-05-20 stsp
1121 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1122 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1123 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1124 a7f50699 2018-06-11 stsp goto done;
1125 a7f50699 2018-06-11 stsp }
1126 963b370f 2018-05-20 stsp
1127 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1128 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1129 a7f50699 2018-06-11 stsp done:
1130 00dfcb92 2018-06-11 stsp free(vis);
1131 963b370f 2018-05-20 stsp if (err) {
1132 963b370f 2018-05-20 stsp free(*ws);
1133 963b370f 2018-05-20 stsp *ws = NULL;
1134 963b370f 2018-05-20 stsp *wlen = 0;
1135 963b370f 2018-05-20 stsp }
1136 963b370f 2018-05-20 stsp return err;
1137 963b370f 2018-05-20 stsp }
1138 963b370f 2018-05-20 stsp
1139 963b370f 2018-05-20 stsp /* Format a line for display, ensuring that it won't overflow a width limit. */
1140 963b370f 2018-05-20 stsp static const struct got_error *
1141 27a741e5 2019-09-11 stsp format_line(wchar_t **wlinep, int *widthp, const char *line, int wlimit,
1142 27a741e5 2019-09-11 stsp int col_tab_align)
1143 963b370f 2018-05-20 stsp {
1144 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1145 963b370f 2018-05-20 stsp int cols = 0;
1146 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1147 963b370f 2018-05-20 stsp size_t wlen;
1148 963b370f 2018-05-20 stsp int i;
1149 963b370f 2018-05-20 stsp
1150 963b370f 2018-05-20 stsp *wlinep = NULL;
1151 b700b5d6 2018-07-10 stsp *widthp = 0;
1152 963b370f 2018-05-20 stsp
1153 963b370f 2018-05-20 stsp err = mbs2ws(&wline, &wlen, line);
1154 963b370f 2018-05-20 stsp if (err)
1155 963b370f 2018-05-20 stsp return err;
1156 963b370f 2018-05-20 stsp
1157 963b370f 2018-05-20 stsp i = 0;
1158 27a741e5 2019-09-11 stsp while (i < wlen) {
1159 963b370f 2018-05-20 stsp int width = wcwidth(wline[i]);
1160 27a741e5 2019-09-11 stsp
1161 27a741e5 2019-09-11 stsp if (width == 0) {
1162 b700b5d6 2018-07-10 stsp i++;
1163 27a741e5 2019-09-11 stsp continue;
1164 27a741e5 2019-09-11 stsp }
1165 27a741e5 2019-09-11 stsp
1166 27a741e5 2019-09-11 stsp if (width == 1 || width == 2) {
1167 27a741e5 2019-09-11 stsp if (cols + width > wlimit)
1168 27a741e5 2019-09-11 stsp break;
1169 27a741e5 2019-09-11 stsp cols += width;
1170 3c1f04f1 2018-09-13 stsp i++;
1171 27a741e5 2019-09-11 stsp } else if (width == -1) {
1172 27a741e5 2019-09-11 stsp if (wline[i] == L'\t') {
1173 27a741e5 2019-09-11 stsp width = TABSIZE -
1174 27a741e5 2019-09-11 stsp ((cols + col_tab_align) % TABSIZE);
1175 27a741e5 2019-09-11 stsp if (cols + width > wlimit)
1176 27a741e5 2019-09-11 stsp break;
1177 27a741e5 2019-09-11 stsp cols += width;
1178 27a741e5 2019-09-11 stsp }
1179 b700b5d6 2018-07-10 stsp i++;
1180 27a741e5 2019-09-11 stsp } else {
1181 638f9024 2019-05-13 stsp err = got_error_from_errno("wcwidth");
1182 963b370f 2018-05-20 stsp goto done;
1183 963b370f 2018-05-20 stsp }
1184 963b370f 2018-05-20 stsp }
1185 963b370f 2018-05-20 stsp wline[i] = L'\0';
1186 b700b5d6 2018-07-10 stsp if (widthp)
1187 b700b5d6 2018-07-10 stsp *widthp = cols;
1188 963b370f 2018-05-20 stsp done:
1189 963b370f 2018-05-20 stsp if (err)
1190 963b370f 2018-05-20 stsp free(wline);
1191 963b370f 2018-05-20 stsp else
1192 963b370f 2018-05-20 stsp *wlinep = wline;
1193 963b370f 2018-05-20 stsp return err;
1194 963b370f 2018-05-20 stsp }
1195 963b370f 2018-05-20 stsp
1196 8b473291 2019-02-21 stsp static const struct got_error*
1197 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
1198 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
1199 8b473291 2019-02-21 stsp {
1200 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
1201 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
1202 8b473291 2019-02-21 stsp char *s;
1203 8b473291 2019-02-21 stsp const char *name;
1204 8b473291 2019-02-21 stsp
1205 8b473291 2019-02-21 stsp *refs_str = NULL;
1206 8b473291 2019-02-21 stsp
1207 8b473291 2019-02-21 stsp SIMPLEQ_FOREACH(re, refs, entry) {
1208 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
1209 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
1210 52b5abe1 2019-08-13 stsp int cmp;
1211 52b5abe1 2019-08-13 stsp
1212 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
1213 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
1214 8b473291 2019-02-21 stsp continue;
1215 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
1216 8b473291 2019-02-21 stsp name += 5;
1217 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
1218 7143d404 2019-03-12 stsp continue;
1219 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
1220 8b473291 2019-02-21 stsp name += 6;
1221 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
1222 8b473291 2019-02-21 stsp name += 8;
1223 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
1224 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
1225 79cc719f 2020-04-24 stsp continue;
1226 79cc719f 2020-04-24 stsp }
1227 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
1228 48cae60d 2020-09-22 stsp if (err)
1229 48cae60d 2020-09-22 stsp break;
1230 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
1231 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
1232 5d844a1e 2019-08-13 stsp if (err) {
1233 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
1234 48cae60d 2020-09-22 stsp free(ref_id);
1235 5d844a1e 2019-08-13 stsp break;
1236 48cae60d 2020-09-22 stsp }
1237 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
1238 5d844a1e 2019-08-13 stsp err = NULL;
1239 5d844a1e 2019-08-13 stsp tag = NULL;
1240 5d844a1e 2019-08-13 stsp }
1241 52b5abe1 2019-08-13 stsp }
1242 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
1243 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
1244 48cae60d 2020-09-22 stsp free(ref_id);
1245 52b5abe1 2019-08-13 stsp if (tag)
1246 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
1247 52b5abe1 2019-08-13 stsp if (cmp != 0)
1248 52b5abe1 2019-08-13 stsp continue;
1249 8b473291 2019-02-21 stsp s = *refs_str;
1250 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
1251 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
1252 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1253 8b473291 2019-02-21 stsp free(s);
1254 8b473291 2019-02-21 stsp *refs_str = NULL;
1255 8b473291 2019-02-21 stsp break;
1256 8b473291 2019-02-21 stsp }
1257 8b473291 2019-02-21 stsp free(s);
1258 8b473291 2019-02-21 stsp }
1259 8b473291 2019-02-21 stsp
1260 8b473291 2019-02-21 stsp return err;
1261 8b473291 2019-02-21 stsp }
1262 8b473291 2019-02-21 stsp
1263 963b370f 2018-05-20 stsp static const struct got_error *
1264 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
1265 27a741e5 2019-09-11 stsp int col_tab_align)
1266 5813d178 2019-03-09 stsp {
1267 5813d178 2019-03-09 stsp char *smallerthan, *at;
1268 5813d178 2019-03-09 stsp
1269 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
1270 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
1271 5813d178 2019-03-09 stsp author = smallerthan + 1;
1272 5813d178 2019-03-09 stsp at = strchr(author, '@');
1273 5813d178 2019-03-09 stsp if (at)
1274 5813d178 2019-03-09 stsp *at = '\0';
1275 27a741e5 2019-09-11 stsp return format_line(wauthor, author_width, author, limit, col_tab_align);
1276 5813d178 2019-03-09 stsp }
1277 5813d178 2019-03-09 stsp
1278 5813d178 2019-03-09 stsp static const struct got_error *
1279 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
1280 5813d178 2019-03-09 stsp struct got_object_id *id, struct got_reflist_head *refs,
1281 11b20872 2019-11-08 stsp const size_t date_display_cols, int author_display_cols,
1282 11b20872 2019-11-08 stsp struct tog_colors *colors)
1283 80ddbec8 2018-04-29 stsp {
1284 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
1285 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
1286 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
1287 5813d178 2019-03-09 stsp char *author = NULL;
1288 bb737323 2018-05-20 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
1289 bb737323 2018-05-20 stsp int author_width, logmsg_width;
1290 5813d178 2019-03-09 stsp char *newline, *line = NULL;
1291 bb737323 2018-05-20 stsp int col, limit;
1292 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
1293 ccb26ccd 2018-11-05 stsp struct tm tm;
1294 45d799e2 2018-12-23 stsp time_t committer_time;
1295 11b20872 2019-11-08 stsp struct tog_color *tc;
1296 80ddbec8 2018-04-29 stsp
1297 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
1298 45d799e2 2018-12-23 stsp if (localtime_r(&committer_time, &tm) == NULL)
1299 638f9024 2019-05-13 stsp return got_error_from_errno("localtime_r");
1300 6db9f7f6 2019-12-10 stsp if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm)
1301 ccb26ccd 2018-11-05 stsp >= sizeof(datebuf))
1302 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
1303 b39d25c7 2018-07-10 stsp
1304 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
1305 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
1306 b39d25c7 2018-07-10 stsp else
1307 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
1308 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_DATE);
1309 11b20872 2019-11-08 stsp if (tc)
1310 11b20872 2019-11-08 stsp wattr_on(view->window,
1311 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1312 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
1313 11b20872 2019-11-08 stsp if (tc)
1314 11b20872 2019-11-08 stsp wattr_off(view->window,
1315 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1316 27a741e5 2019-09-11 stsp col = limit;
1317 b39d25c7 2018-07-10 stsp if (col > avail)
1318 b39d25c7 2018-07-10 stsp goto done;
1319 6570a66d 2019-11-08 stsp
1320 6570a66d 2019-11-08 stsp if (avail >= 120) {
1321 6570a66d 2019-11-08 stsp char *id_str;
1322 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
1323 6570a66d 2019-11-08 stsp if (err)
1324 6570a66d 2019-11-08 stsp goto done;
1325 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_COMMIT);
1326 11b20872 2019-11-08 stsp if (tc)
1327 11b20872 2019-11-08 stsp wattr_on(view->window,
1328 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1329 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
1330 11b20872 2019-11-08 stsp if (tc)
1331 11b20872 2019-11-08 stsp wattr_off(view->window,
1332 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1333 6570a66d 2019-11-08 stsp free(id_str);
1334 6570a66d 2019-11-08 stsp col += 9;
1335 6570a66d 2019-11-08 stsp if (col > avail)
1336 6570a66d 2019-11-08 stsp goto done;
1337 6570a66d 2019-11-08 stsp }
1338 b39d25c7 2018-07-10 stsp
1339 5813d178 2019-03-09 stsp author = strdup(got_object_commit_get_author(commit));
1340 5813d178 2019-03-09 stsp if (author == NULL) {
1341 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1342 80ddbec8 2018-04-29 stsp goto done;
1343 80ddbec8 2018-04-29 stsp }
1344 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
1345 bb737323 2018-05-20 stsp if (err)
1346 bb737323 2018-05-20 stsp goto done;
1347 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_AUTHOR);
1348 11b20872 2019-11-08 stsp if (tc)
1349 11b20872 2019-11-08 stsp wattr_on(view->window,
1350 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1351 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
1352 11b20872 2019-11-08 stsp if (tc)
1353 11b20872 2019-11-08 stsp wattr_off(view->window,
1354 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1355 bb737323 2018-05-20 stsp col += author_width;
1356 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
1357 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
1358 bb737323 2018-05-20 stsp col++;
1359 bb737323 2018-05-20 stsp author_width++;
1360 bb737323 2018-05-20 stsp }
1361 9c2eaf34 2018-05-20 stsp if (col > avail)
1362 9c2eaf34 2018-05-20 stsp goto done;
1363 80ddbec8 2018-04-29 stsp
1364 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
1365 5943eee2 2019-08-13 stsp if (err)
1366 6d9fbc00 2018-04-29 stsp goto done;
1367 bb737323 2018-05-20 stsp logmsg = logmsg0;
1368 bb737323 2018-05-20 stsp while (*logmsg == '\n')
1369 bb737323 2018-05-20 stsp logmsg++;
1370 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
1371 bb737323 2018-05-20 stsp if (newline)
1372 bb737323 2018-05-20 stsp *newline = '\0';
1373 bb737323 2018-05-20 stsp limit = avail - col;
1374 dee2c213 2019-11-13 stsp err = format_line(&wlogmsg, &logmsg_width, logmsg, limit, col);
1375 bb737323 2018-05-20 stsp if (err)
1376 bb737323 2018-05-20 stsp goto done;
1377 2814baeb 2018-08-01 stsp waddwstr(view->window, wlogmsg);
1378 bb737323 2018-05-20 stsp col += logmsg_width;
1379 27a741e5 2019-09-11 stsp while (col < avail) {
1380 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
1381 bb737323 2018-05-20 stsp col++;
1382 881b2d3e 2018-04-30 stsp }
1383 80ddbec8 2018-04-29 stsp done:
1384 80ddbec8 2018-04-29 stsp free(logmsg0);
1385 bb737323 2018-05-20 stsp free(wlogmsg);
1386 5813d178 2019-03-09 stsp free(author);
1387 bb737323 2018-05-20 stsp free(wauthor);
1388 80ddbec8 2018-04-29 stsp free(line);
1389 80ddbec8 2018-04-29 stsp return err;
1390 80ddbec8 2018-04-29 stsp }
1391 26ed57b2 2018-05-19 stsp
1392 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
1393 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
1394 899d86c2 2018-05-10 stsp struct got_object_id *id)
1395 80ddbec8 2018-04-29 stsp {
1396 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
1397 80ddbec8 2018-04-29 stsp
1398 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
1399 80ddbec8 2018-04-29 stsp if (entry == NULL)
1400 899d86c2 2018-05-10 stsp return NULL;
1401 99db9666 2018-05-07 stsp
1402 899d86c2 2018-05-10 stsp entry->id = id;
1403 99db9666 2018-05-07 stsp entry->commit = commit;
1404 899d86c2 2018-05-10 stsp return entry;
1405 99db9666 2018-05-07 stsp }
1406 80ddbec8 2018-04-29 stsp
1407 99db9666 2018-05-07 stsp static void
1408 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
1409 99db9666 2018-05-07 stsp {
1410 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
1411 99db9666 2018-05-07 stsp
1412 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
1413 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
1414 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
1415 ecb28ae0 2018-07-16 stsp commits->ncommits--;
1416 9ba79e04 2018-06-11 stsp /* Don't free entry->id! It is owned by the commit graph. */
1417 99db9666 2018-05-07 stsp free(entry);
1418 99db9666 2018-05-07 stsp }
1419 99db9666 2018-05-07 stsp
1420 99db9666 2018-05-07 stsp static void
1421 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
1422 99db9666 2018-05-07 stsp {
1423 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
1424 99db9666 2018-05-07 stsp pop_commit(commits);
1425 c4972b91 2018-05-07 stsp }
1426 c4972b91 2018-05-07 stsp
1427 c4972b91 2018-05-07 stsp static const struct got_error *
1428 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
1429 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
1430 13add988 2019-10-15 stsp {
1431 13add988 2019-10-15 stsp const struct got_error *err = NULL;
1432 13add988 2019-10-15 stsp regmatch_t regmatch;
1433 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
1434 13add988 2019-10-15 stsp
1435 13add988 2019-10-15 stsp *have_match = 0;
1436 13add988 2019-10-15 stsp
1437 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
1438 13add988 2019-10-15 stsp if (err)
1439 13add988 2019-10-15 stsp return err;
1440 13add988 2019-10-15 stsp
1441 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
1442 13add988 2019-10-15 stsp if (err)
1443 13add988 2019-10-15 stsp goto done;
1444 13add988 2019-10-15 stsp
1445 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
1446 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
1447 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
1448 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
1449 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
1450 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
1451 13add988 2019-10-15 stsp *have_match = 1;
1452 13add988 2019-10-15 stsp done:
1453 13add988 2019-10-15 stsp free(id_str);
1454 13add988 2019-10-15 stsp free(logmsg);
1455 13add988 2019-10-15 stsp return err;
1456 13add988 2019-10-15 stsp }
1457 13add988 2019-10-15 stsp
1458 13add988 2019-10-15 stsp static const struct got_error *
1459 9ba79e04 2018-06-11 stsp queue_commits(struct got_commit_graph *graph, struct commit_queue *commits,
1460 13add988 2019-10-15 stsp int minqueue, struct got_repository *repo, const char *path,
1461 13add988 2019-10-15 stsp int *searching, int *search_next_done, regex_t *regex)
1462 c4972b91 2018-05-07 stsp {
1463 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
1464 7c1452c1 2020-03-26 stsp int nqueued = 0;
1465 9ba79e04 2018-06-11 stsp
1466 1a76625f 2018-10-22 stsp /*
1467 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
1468 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
1469 1a76625f 2018-10-22 stsp * while updating the display.
1470 1a76625f 2018-10-22 stsp */
1471 13add988 2019-10-15 stsp while (nqueued < minqueue ||
1472 13add988 2019-10-15 stsp (*searching == TOG_SEARCH_FORWARD && !*search_next_done)) {
1473 93e45b7c 2018-09-24 stsp struct got_object_id *id;
1474 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
1475 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
1476 1a76625f 2018-10-22 stsp int errcode;
1477 899d86c2 2018-05-10 stsp
1478 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&id, graph, repo, NULL, NULL);
1479 ee780d5c 2020-01-04 stsp if (err || id == NULL)
1480 ecb28ae0 2018-07-16 stsp break;
1481 899d86c2 2018-05-10 stsp
1482 9ba79e04 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
1483 9ba79e04 2018-06-11 stsp if (err)
1484 9ba79e04 2018-06-11 stsp break;
1485 9ba79e04 2018-06-11 stsp entry = alloc_commit_queue_entry(commit, id);
1486 9ba79e04 2018-06-11 stsp if (entry == NULL) {
1487 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
1488 9ba79e04 2018-06-11 stsp break;
1489 9ba79e04 2018-06-11 stsp }
1490 93e45b7c 2018-09-24 stsp
1491 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1492 1a76625f 2018-10-22 stsp if (errcode) {
1493 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
1494 13add988 2019-10-15 stsp "pthread_mutex_lock");
1495 1a76625f 2018-10-22 stsp break;
1496 1a76625f 2018-10-22 stsp }
1497 1a76625f 2018-10-22 stsp
1498 1a76625f 2018-10-22 stsp entry->idx = commits->ncommits;
1499 ecb28ae0 2018-07-16 stsp TAILQ_INSERT_TAIL(&commits->head, entry, entry);
1500 ecb28ae0 2018-07-16 stsp nqueued++;
1501 ecb28ae0 2018-07-16 stsp commits->ncommits++;
1502 1a76625f 2018-10-22 stsp
1503 13add988 2019-10-15 stsp if (*searching == TOG_SEARCH_FORWARD && !*search_next_done) {
1504 7c1452c1 2020-03-26 stsp int have_match;
1505 13add988 2019-10-15 stsp err = match_commit(&have_match, id, commit, regex);
1506 7c1452c1 2020-03-26 stsp if (err)
1507 7c1452c1 2020-03-26 stsp break;
1508 7c1452c1 2020-03-26 stsp if (have_match)
1509 8f4ed634 2020-03-26 stsp *search_next_done = TOG_SEARCH_HAVE_MORE;
1510 13add988 2019-10-15 stsp }
1511 13add988 2019-10-15 stsp
1512 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1513 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
1514 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
1515 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
1516 7c1452c1 2020-03-26 stsp if (err)
1517 13add988 2019-10-15 stsp break;
1518 899d86c2 2018-05-10 stsp }
1519 899d86c2 2018-05-10 stsp
1520 9ba79e04 2018-06-11 stsp return err;
1521 0553a4e3 2018-04-30 stsp }
1522 0553a4e3 2018-04-30 stsp
1523 0553a4e3 2018-04-30 stsp static const struct got_error *
1524 2814baeb 2018-08-01 stsp draw_commits(struct tog_view *view, struct commit_queue_entry **last,
1525 ecb28ae0 2018-07-16 stsp struct commit_queue_entry **selected, struct commit_queue_entry *first,
1526 a7f40148 2018-07-18 stsp struct commit_queue *commits, int selected_idx, int limit,
1527 11b20872 2019-11-08 stsp struct got_reflist_head *refs, const char *path, int commits_needed,
1528 11b20872 2019-11-08 stsp struct tog_colors *colors)
1529 0553a4e3 2018-04-30 stsp {
1530 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
1531 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
1532 0553a4e3 2018-04-30 stsp struct commit_queue_entry *entry;
1533 60493ae3 2019-06-20 stsp int width;
1534 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
1535 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
1536 8b473291 2019-02-21 stsp char *refs_str = NULL;
1537 ecb28ae0 2018-07-16 stsp wchar_t *wline;
1538 11b20872 2019-11-08 stsp struct tog_color *tc;
1539 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
1540 0553a4e3 2018-04-30 stsp
1541 e0d42f60 2018-07-22 stsp entry = first;
1542 e0d42f60 2018-07-22 stsp ncommits = 0;
1543 e0d42f60 2018-07-22 stsp while (entry) {
1544 e0d42f60 2018-07-22 stsp if (ncommits == selected_idx) {
1545 e0d42f60 2018-07-22 stsp *selected = entry;
1546 e0d42f60 2018-07-22 stsp break;
1547 e0d42f60 2018-07-22 stsp }
1548 e0d42f60 2018-07-22 stsp entry = TAILQ_NEXT(entry, entry);
1549 e0d42f60 2018-07-22 stsp ncommits++;
1550 e0d42f60 2018-07-22 stsp }
1551 e0d42f60 2018-07-22 stsp
1552 60493ae3 2019-06-20 stsp if (*selected && !(view->searching && view->search_next_done == 0)) {
1553 1a76625f 2018-10-22 stsp err = got_object_id_str(&id_str, (*selected)->id);
1554 1a76625f 2018-10-22 stsp if (err)
1555 ecb28ae0 2018-07-16 stsp return err;
1556 8b473291 2019-02-21 stsp if (refs) {
1557 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, (*selected)->id,
1558 52b5abe1 2019-08-13 stsp s->repo);
1559 8b473291 2019-02-21 stsp if (err)
1560 8b473291 2019-02-21 stsp goto done;
1561 8b473291 2019-02-21 stsp }
1562 867c6645 2018-07-10 stsp }
1563 359bfafd 2019-02-22 stsp
1564 359bfafd 2019-02-22 stsp if (commits_needed == 0)
1565 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
1566 1a76625f 2018-10-22 stsp
1567 8f4ed634 2020-03-26 stsp if (commits_needed > 0) {
1568 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
1569 8f4ed634 2020-03-26 stsp entry ? entry->idx + 1 : 0, commits->ncommits,
1570 d2ad595c 2020-04-09 stsp (view->searching && !view->search_next_done) ?
1571 d2ad595c 2020-04-09 stsp "searching..." : "loading...") == -1) {
1572 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
1573 8f4ed634 2020-03-26 stsp goto done;
1574 8f4ed634 2020-03-26 stsp }
1575 8f4ed634 2020-03-26 stsp } else {
1576 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
1577 f9686aa5 2020-03-27 stsp
1578 f9686aa5 2020-03-27 stsp if (view->searching) {
1579 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
1580 f9686aa5 2020-03-27 stsp search_str = "no more matches";
1581 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
1582 f9686aa5 2020-03-27 stsp search_str = "no matches found";
1583 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
1584 f9686aa5 2020-03-27 stsp search_str = "searching...";
1585 f9686aa5 2020-03-27 stsp }
1586 f9686aa5 2020-03-27 stsp
1587 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
1588 8f4ed634 2020-03-26 stsp entry ? entry->idx + 1 : 0, commits->ncommits,
1589 f9686aa5 2020-03-27 stsp search_str ? search_str :
1590 f9686aa5 2020-03-27 stsp (refs_str ? refs_str : "")) == -1) {
1591 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
1592 8f4ed634 2020-03-26 stsp goto done;
1593 8f4ed634 2020-03-26 stsp }
1594 8b473291 2019-02-21 stsp }
1595 1a76625f 2018-10-22 stsp
1596 1a76625f 2018-10-22 stsp if (path && strcmp(path, "/") != 0) {
1597 c1124f18 2018-12-23 stsp if (asprintf(&header, "commit %s %s%s",
1598 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
1599 1a76625f 2018-10-22 stsp path, ncommits_str) == -1) {
1600 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1601 1a76625f 2018-10-22 stsp header = NULL;
1602 1a76625f 2018-10-22 stsp goto done;
1603 1a76625f 2018-10-22 stsp }
1604 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
1605 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
1606 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
1607 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1608 1a76625f 2018-10-22 stsp header = NULL;
1609 1a76625f 2018-10-22 stsp goto done;
1610 ecb28ae0 2018-07-16 stsp }
1611 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, header, view->ncols, 0);
1612 1a76625f 2018-10-22 stsp if (err)
1613 1a76625f 2018-10-22 stsp goto done;
1614 867c6645 2018-07-10 stsp
1615 2814baeb 2018-08-01 stsp werase(view->window);
1616 867c6645 2018-07-10 stsp
1617 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
1618 a3404814 2018-09-02 stsp wstandout(view->window);
1619 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_COMMIT);
1620 11b20872 2019-11-08 stsp if (tc)
1621 11b20872 2019-11-08 stsp wattr_on(view->window,
1622 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1623 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
1624 11b20872 2019-11-08 stsp if (tc)
1625 11b20872 2019-11-08 stsp wattr_off(view->window,
1626 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1627 1a76625f 2018-10-22 stsp while (width < view->ncols) {
1628 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
1629 1a76625f 2018-10-22 stsp width++;
1630 1a76625f 2018-10-22 stsp }
1631 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
1632 a3404814 2018-09-02 stsp wstandend(view->window);
1633 ecb28ae0 2018-07-16 stsp free(wline);
1634 ecb28ae0 2018-07-16 stsp if (limit <= 1)
1635 1a76625f 2018-10-22 stsp goto done;
1636 0553a4e3 2018-04-30 stsp
1637 5813d178 2019-03-09 stsp /* Grow author column size if necessary. */
1638 899d86c2 2018-05-10 stsp entry = first;
1639 5813d178 2019-03-09 stsp ncommits = 0;
1640 5813d178 2019-03-09 stsp while (entry) {
1641 5813d178 2019-03-09 stsp char *author;
1642 5813d178 2019-03-09 stsp wchar_t *wauthor;
1643 5813d178 2019-03-09 stsp int width;
1644 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
1645 5813d178 2019-03-09 stsp break;
1646 5813d178 2019-03-09 stsp author = strdup(got_object_commit_get_author(entry->commit));
1647 5813d178 2019-03-09 stsp if (author == NULL) {
1648 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1649 5813d178 2019-03-09 stsp goto done;
1650 5813d178 2019-03-09 stsp }
1651 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
1652 27a741e5 2019-09-11 stsp date_display_cols);
1653 5813d178 2019-03-09 stsp if (author_cols < width)
1654 5813d178 2019-03-09 stsp author_cols = width;
1655 5813d178 2019-03-09 stsp free(wauthor);
1656 5813d178 2019-03-09 stsp free(author);
1657 7ca04879 2019-10-19 stsp ncommits++;
1658 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
1659 5813d178 2019-03-09 stsp }
1660 5813d178 2019-03-09 stsp
1661 5813d178 2019-03-09 stsp entry = first;
1662 899d86c2 2018-05-10 stsp *last = first;
1663 867c6645 2018-07-10 stsp ncommits = 0;
1664 899d86c2 2018-05-10 stsp while (entry) {
1665 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
1666 899d86c2 2018-05-10 stsp break;
1667 b51189f7 2019-03-01 stsp if (ncommits == selected_idx)
1668 2814baeb 2018-08-01 stsp wstandout(view->window);
1669 5813d178 2019-03-09 stsp err = draw_commit(view, entry->commit, entry->id, refs,
1670 11b20872 2019-11-08 stsp date_display_cols, author_cols, colors);
1671 b51189f7 2019-03-01 stsp if (ncommits == selected_idx)
1672 2814baeb 2018-08-01 stsp wstandend(view->window);
1673 0553a4e3 2018-04-30 stsp if (err)
1674 60493ae3 2019-06-20 stsp goto done;
1675 0553a4e3 2018-04-30 stsp ncommits++;
1676 899d86c2 2018-05-10 stsp *last = entry;
1677 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
1678 80ddbec8 2018-04-29 stsp }
1679 80ddbec8 2018-04-29 stsp
1680 1a57306a 2018-09-02 stsp view_vborder(view);
1681 1a76625f 2018-10-22 stsp done:
1682 1a76625f 2018-10-22 stsp free(id_str);
1683 8b473291 2019-02-21 stsp free(refs_str);
1684 1a76625f 2018-10-22 stsp free(ncommits_str);
1685 1a76625f 2018-10-22 stsp free(header);
1686 80ddbec8 2018-04-29 stsp return err;
1687 9f7d7167 2018-04-29 stsp }
1688 07b55e75 2018-05-10 stsp
1689 07b55e75 2018-05-10 stsp static void
1690 34bc9ec9 2019-02-22 stsp scroll_up(struct tog_view *view,
1691 34bc9ec9 2019-02-22 stsp struct commit_queue_entry **first_displayed_entry, int maxscroll,
1692 07b55e75 2018-05-10 stsp struct commit_queue *commits)
1693 07b55e75 2018-05-10 stsp {
1694 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
1695 07b55e75 2018-05-10 stsp int nscrolled = 0;
1696 07b55e75 2018-05-10 stsp
1697 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
1698 00ba99a7 2019-05-12 jcs if (*first_displayed_entry == entry)
1699 07b55e75 2018-05-10 stsp return;
1700 9f7d7167 2018-04-29 stsp
1701 07b55e75 2018-05-10 stsp entry = *first_displayed_entry;
1702 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
1703 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
1704 07b55e75 2018-05-10 stsp if (entry) {
1705 07b55e75 2018-05-10 stsp *first_displayed_entry = entry;
1706 07b55e75 2018-05-10 stsp nscrolled++;
1707 07b55e75 2018-05-10 stsp }
1708 07b55e75 2018-05-10 stsp }
1709 aa075928 2018-05-10 stsp }
1710 aa075928 2018-05-10 stsp
1711 aa075928 2018-05-10 stsp static const struct got_error *
1712 7c1452c1 2020-03-26 stsp trigger_log_thread(struct tog_view *log_view, int wait,
1713 7c1452c1 2020-03-26 stsp int *commits_needed, int *log_complete,
1714 7c1452c1 2020-03-26 stsp pthread_cond_t *need_commits, pthread_cond_t *commit_loaded)
1715 aa075928 2018-05-10 stsp {
1716 5e224a3e 2019-02-22 stsp int errcode;
1717 8a42fca8 2019-02-22 stsp
1718 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
1719 aa075928 2018-05-10 stsp
1720 5e224a3e 2019-02-22 stsp while (*commits_needed > 0) {
1721 5e224a3e 2019-02-22 stsp if (*log_complete)
1722 5e224a3e 2019-02-22 stsp break;
1723 b295e71b 2019-02-22 stsp
1724 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
1725 7aafa0d1 2019-02-22 stsp errcode = pthread_cond_signal(need_commits);
1726 7aafa0d1 2019-02-22 stsp if (errcode)
1727 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1728 2af4a041 2019-05-11 jcs "pthread_cond_signal");
1729 7c1452c1 2020-03-26 stsp
1730 7c1452c1 2020-03-26 stsp /*
1731 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
1732 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
1733 7c1452c1 2020-03-26 stsp */
1734 7c1452c1 2020-03-26 stsp if (!wait)
1735 7c1452c1 2020-03-26 stsp break;
1736 7c1452c1 2020-03-26 stsp
1737 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
1738 7c1452c1 2020-03-26 stsp show_log_view(log_view);
1739 7c1452c1 2020-03-26 stsp update_panels();
1740 7c1452c1 2020-03-26 stsp doupdate();
1741 7c1452c1 2020-03-26 stsp
1742 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
1743 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(commit_loaded, &tog_mutex);
1744 82954512 2020-02-03 stsp if (errcode)
1745 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1746 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
1747 82954512 2020-02-03 stsp
1748 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
1749 7c1452c1 2020-03-26 stsp show_log_view(log_view);
1750 7c1452c1 2020-03-26 stsp update_panels();
1751 7c1452c1 2020-03-26 stsp doupdate();
1752 5e224a3e 2019-02-22 stsp }
1753 5e224a3e 2019-02-22 stsp
1754 5e224a3e 2019-02-22 stsp return NULL;
1755 5e224a3e 2019-02-22 stsp }
1756 5e224a3e 2019-02-22 stsp
1757 5e224a3e 2019-02-22 stsp static const struct got_error *
1758 7c1452c1 2020-03-26 stsp scroll_down(struct tog_view *log_view,
1759 34bc9ec9 2019-02-22 stsp struct commit_queue_entry **first_displayed_entry, int maxscroll,
1760 5e224a3e 2019-02-22 stsp struct commit_queue_entry **last_displayed_entry,
1761 5e224a3e 2019-02-22 stsp struct commit_queue *commits, int *log_complete, int *commits_needed,
1762 7c1452c1 2020-03-26 stsp pthread_cond_t *need_commits, pthread_cond_t *commit_loaded)
1763 5e224a3e 2019-02-22 stsp {
1764 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
1765 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
1766 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
1767 5e224a3e 2019-02-22 stsp
1768 5e224a3e 2019-02-22 stsp if (*last_displayed_entry == NULL)
1769 5e224a3e 2019-02-22 stsp return NULL;
1770 5e224a3e 2019-02-22 stsp
1771 7c1452c1 2020-03-26 stsp ncommits_needed = (*last_displayed_entry)->idx + 1 + maxscroll;
1772 7c1452c1 2020-03-26 stsp if (commits->ncommits < ncommits_needed && !*log_complete) {
1773 08ebd0a9 2019-02-22 stsp /*
1774 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
1775 08ebd0a9 2019-02-22 stsp */
1776 7c1452c1 2020-03-26 stsp (*commits_needed) += maxscroll;
1777 7c1452c1 2020-03-26 stsp err = trigger_log_thread(log_view, 1, commits_needed,
1778 7c1452c1 2020-03-26 stsp log_complete, need_commits, commit_loaded);
1779 5e224a3e 2019-02-22 stsp if (err)
1780 5e224a3e 2019-02-22 stsp return err;
1781 7aafa0d1 2019-02-22 stsp }
1782 b295e71b 2019-02-22 stsp
1783 7aafa0d1 2019-02-22 stsp do {
1784 7226d972 2019-02-21 stsp pentry = TAILQ_NEXT(*last_displayed_entry, entry);
1785 00ba99a7 2019-05-12 jcs if (pentry == NULL)
1786 88048b54 2019-02-21 stsp break;
1787 88048b54 2019-02-21 stsp
1788 93e45b7c 2018-09-24 stsp *last_displayed_entry = pentry;
1789 aa075928 2018-05-10 stsp
1790 dd0a52c1 2018-05-20 stsp pentry = TAILQ_NEXT(*first_displayed_entry, entry);
1791 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
1792 dd0a52c1 2018-05-20 stsp break;
1793 aa075928 2018-05-10 stsp *first_displayed_entry = pentry;
1794 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
1795 aa075928 2018-05-10 stsp
1796 dd0a52c1 2018-05-20 stsp return err;
1797 07b55e75 2018-05-10 stsp }
1798 4a7f7875 2018-05-10 stsp
1799 cd0acaa7 2018-05-20 stsp static const struct got_error *
1800 0cf4efb1 2018-09-29 stsp open_diff_view_for_commit(struct tog_view **new_view, int begin_x,
1801 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
1802 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
1803 cd0acaa7 2018-05-20 stsp {
1804 cd0acaa7 2018-05-20 stsp const struct got_error *err;
1805 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
1806 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
1807 cd0acaa7 2018-05-20 stsp
1808 669b5ffa 2018-10-07 stsp diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
1809 15a94983 2018-12-23 stsp if (diff_view == NULL)
1810 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
1811 ea5e7bb5 2018-08-01 stsp
1812 4acef5ee 2018-12-24 stsp parent_id = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
1813 4acef5ee 2018-12-24 stsp err = open_diff_view(diff_view, parent_id ? parent_id->id : NULL,
1814 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
1815 e5a0f69f 2018-08-18 stsp if (err == NULL)
1816 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
1817 cd0acaa7 2018-05-20 stsp return err;
1818 4a7f7875 2018-05-10 stsp }
1819 4a7f7875 2018-05-10 stsp
1820 80ddbec8 2018-04-29 stsp static const struct got_error *
1821 941e9f74 2019-05-21 stsp tree_view_visit_subtree(struct got_tree_object *subtree,
1822 941e9f74 2019-05-21 stsp struct tog_tree_view_state *s)
1823 9343a5fb 2018-06-23 stsp {
1824 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
1825 941e9f74 2019-05-21 stsp
1826 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
1827 941e9f74 2019-05-21 stsp if (parent == NULL)
1828 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
1829 941e9f74 2019-05-21 stsp
1830 941e9f74 2019-05-21 stsp parent->tree = s->tree;
1831 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
1832 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
1833 941e9f74 2019-05-21 stsp parent->selected = s->selected;
1834 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
1835 941e9f74 2019-05-21 stsp s->tree = subtree;
1836 941e9f74 2019-05-21 stsp s->selected = 0;
1837 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
1838 941e9f74 2019-05-21 stsp return NULL;
1839 941e9f74 2019-05-21 stsp }
1840 941e9f74 2019-05-21 stsp
1841 941e9f74 2019-05-21 stsp static const struct got_error *
1842 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
1843 55cccc34 2020-02-20 stsp struct got_object_id *commit_id,
1844 55cccc34 2020-02-20 stsp const char *path, struct got_repository *repo)
1845 941e9f74 2019-05-21 stsp {
1846 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
1847 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
1848 941e9f74 2019-05-21 stsp const char *p;
1849 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
1850 9343a5fb 2018-06-23 stsp
1851 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
1852 941e9f74 2019-05-21 stsp p = path;
1853 941e9f74 2019-05-21 stsp while (*p) {
1854 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
1855 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
1856 56e0773d 2019-11-28 stsp char *te_name;
1857 33cbf02b 2020-01-12 stsp
1858 33cbf02b 2020-01-12 stsp while (p[0] == '/')
1859 33cbf02b 2020-01-12 stsp p++;
1860 941e9f74 2019-05-21 stsp
1861 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
1862 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
1863 941e9f74 2019-05-21 stsp if (slash == NULL)
1864 33cbf02b 2020-01-12 stsp te_name = strdup(p);
1865 33cbf02b 2020-01-12 stsp else
1866 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
1867 56e0773d 2019-11-28 stsp if (te_name == NULL) {
1868 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
1869 56e0773d 2019-11-28 stsp break;
1870 941e9f74 2019-05-21 stsp }
1871 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
1872 56e0773d 2019-11-28 stsp if (te == NULL) {
1873 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
1874 56e0773d 2019-11-28 stsp free(te_name);
1875 941e9f74 2019-05-21 stsp break;
1876 941e9f74 2019-05-21 stsp }
1877 56e0773d 2019-11-28 stsp free(te_name);
1878 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
1879 941e9f74 2019-05-21 stsp
1880 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
1881 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
1882 b03c880f 2019-05-21 stsp
1883 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
1884 941e9f74 2019-05-21 stsp if (slash)
1885 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
1886 941e9f74 2019-05-21 stsp else
1887 941e9f74 2019-05-21 stsp subpath = strdup(path);
1888 941e9f74 2019-05-21 stsp if (subpath == NULL) {
1889 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
1890 941e9f74 2019-05-21 stsp break;
1891 941e9f74 2019-05-21 stsp }
1892 941e9f74 2019-05-21 stsp
1893 55cccc34 2020-02-20 stsp err = got_object_id_by_path(&tree_id, repo, commit_id,
1894 941e9f74 2019-05-21 stsp subpath);
1895 941e9f74 2019-05-21 stsp if (err)
1896 941e9f74 2019-05-21 stsp break;
1897 941e9f74 2019-05-21 stsp
1898 941e9f74 2019-05-21 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1899 941e9f74 2019-05-21 stsp free(tree_id);
1900 941e9f74 2019-05-21 stsp if (err)
1901 941e9f74 2019-05-21 stsp break;
1902 941e9f74 2019-05-21 stsp
1903 941e9f74 2019-05-21 stsp err = tree_view_visit_subtree(tree, s);
1904 941e9f74 2019-05-21 stsp if (err) {
1905 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
1906 941e9f74 2019-05-21 stsp break;
1907 941e9f74 2019-05-21 stsp }
1908 941e9f74 2019-05-21 stsp if (slash == NULL)
1909 941e9f74 2019-05-21 stsp break;
1910 941e9f74 2019-05-21 stsp free(subpath);
1911 941e9f74 2019-05-21 stsp subpath = NULL;
1912 941e9f74 2019-05-21 stsp p = slash;
1913 941e9f74 2019-05-21 stsp }
1914 941e9f74 2019-05-21 stsp
1915 941e9f74 2019-05-21 stsp free(subpath);
1916 1a76625f 2018-10-22 stsp return err;
1917 61266923 2020-01-14 stsp }
1918 61266923 2020-01-14 stsp
1919 61266923 2020-01-14 stsp static const struct got_error *
1920 55cccc34 2020-02-20 stsp browse_commit_tree(struct tog_view **new_view, int begin_x,
1921 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
1922 78756c87 2020-11-24 stsp struct got_repository *repo)
1923 55cccc34 2020-02-20 stsp {
1924 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
1925 55cccc34 2020-02-20 stsp struct got_tree_object *tree;
1926 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
1927 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
1928 55cccc34 2020-02-20 stsp
1929 55cccc34 2020-02-20 stsp err = got_object_open_as_tree(&tree, repo,
1930 55cccc34 2020-02-20 stsp got_object_commit_get_tree_id(entry->commit));
1931 55cccc34 2020-02-20 stsp if (err)
1932 55cccc34 2020-02-20 stsp return err;
1933 55cccc34 2020-02-20 stsp
1934 55cccc34 2020-02-20 stsp tree_view = view_open(0, 0, 0, begin_x, TOG_VIEW_TREE);
1935 55cccc34 2020-02-20 stsp if (tree_view == NULL)
1936 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
1937 55cccc34 2020-02-20 stsp
1938 78756c87 2020-11-24 stsp err = open_tree_view(tree_view, tree, entry->id, repo);
1939 55cccc34 2020-02-20 stsp if (err) {
1940 55cccc34 2020-02-20 stsp got_object_tree_close(tree);
1941 55cccc34 2020-02-20 stsp return err;
1942 55cccc34 2020-02-20 stsp }
1943 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
1944 55cccc34 2020-02-20 stsp
1945 55cccc34 2020-02-20 stsp *new_view = tree_view;
1946 55cccc34 2020-02-20 stsp
1947 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
1948 55cccc34 2020-02-20 stsp return NULL;
1949 55cccc34 2020-02-20 stsp
1950 55cccc34 2020-02-20 stsp return tree_view_walk_path(s, entry->id, path, repo);
1951 55cccc34 2020-02-20 stsp }
1952 55cccc34 2020-02-20 stsp
1953 55cccc34 2020-02-20 stsp static const struct got_error *
1954 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
1955 61266923 2020-01-14 stsp {
1956 61266923 2020-01-14 stsp sigset_t sigset;
1957 61266923 2020-01-14 stsp int errcode;
1958 61266923 2020-01-14 stsp
1959 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
1960 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
1961 61266923 2020-01-14 stsp
1962 61266923 2020-01-14 stsp /* tog handles SIGWINCH and SIGCONT */
1963 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
1964 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
1965 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
1966 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
1967 61266923 2020-01-14 stsp
1968 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
1969 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
1970 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
1971 61266923 2020-01-14 stsp
1972 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
1973 61266923 2020-01-14 stsp if (errcode)
1974 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
1975 61266923 2020-01-14 stsp
1976 61266923 2020-01-14 stsp return NULL;
1977 1a76625f 2018-10-22 stsp }
1978 1a76625f 2018-10-22 stsp
1979 1a76625f 2018-10-22 stsp static void *
1980 1a76625f 2018-10-22 stsp log_thread(void *arg)
1981 1a76625f 2018-10-22 stsp {
1982 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1983 1a76625f 2018-10-22 stsp int errcode = 0;
1984 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
1985 1a76625f 2018-10-22 stsp int done = 0;
1986 61266923 2020-01-14 stsp
1987 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
1988 61266923 2020-01-14 stsp if (err)
1989 61266923 2020-01-14 stsp return (void *)err;
1990 1a76625f 2018-10-22 stsp
1991 d264cece 2019-08-12 stsp while (!done && !err && !tog_sigpipe_received) {
1992 1a76625f 2018-10-22 stsp err = queue_commits(a->graph, a->commits, 1, a->repo,
1993 13add988 2019-10-15 stsp a->in_repo_path, a->searching, a->search_next_done,
1994 13add988 2019-10-15 stsp a->regex);
1995 1a76625f 2018-10-22 stsp if (err) {
1996 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
1997 1a76625f 2018-10-22 stsp return (void *)err;
1998 1a76625f 2018-10-22 stsp err = NULL;
1999 1a76625f 2018-10-22 stsp done = 1;
2000 1a76625f 2018-10-22 stsp } else if (a->commits_needed > 0)
2001 1a76625f 2018-10-22 stsp a->commits_needed--;
2002 1a76625f 2018-10-22 stsp
2003 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2004 3abe8080 2019-04-10 stsp if (errcode) {
2005 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2006 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2007 3abe8080 2019-04-10 stsp break;
2008 3abe8080 2019-04-10 stsp } else if (*a->quit)
2009 1a76625f 2018-10-22 stsp done = 1;
2010 3abe8080 2019-04-10 stsp else if (*a->first_displayed_entry == NULL) {
2011 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2012 1a76625f 2018-10-22 stsp TAILQ_FIRST(&a->commits->head);
2013 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2014 1a76625f 2018-10-22 stsp }
2015 1a76625f 2018-10-22 stsp
2016 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2017 7c1452c1 2020-03-26 stsp if (errcode) {
2018 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2019 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2020 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2021 7c1452c1 2020-03-26 stsp break;
2022 7c1452c1 2020-03-26 stsp }
2023 7c1452c1 2020-03-26 stsp
2024 1a76625f 2018-10-22 stsp if (done)
2025 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2026 7c1452c1 2020-03-26 stsp else {
2027 7c1452c1 2020-03-26 stsp if (a->commits_needed == 0) {
2028 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2029 7c1452c1 2020-03-26 stsp &tog_mutex);
2030 7c1452c1 2020-03-26 stsp if (errcode)
2031 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2032 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2033 7c1452c1 2020-03-26 stsp }
2034 1a76625f 2018-10-22 stsp }
2035 1a76625f 2018-10-22 stsp
2036 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2037 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2038 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2039 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2040 1a76625f 2018-10-22 stsp }
2041 3abe8080 2019-04-10 stsp a->log_complete = 1;
2042 1a76625f 2018-10-22 stsp return (void *)err;
2043 1a76625f 2018-10-22 stsp }
2044 1a76625f 2018-10-22 stsp
2045 1a76625f 2018-10-22 stsp static const struct got_error *
2046 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
2047 1a76625f 2018-10-22 stsp {
2048 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2049 1a76625f 2018-10-22 stsp int errcode;
2050 1a76625f 2018-10-22 stsp
2051 1a76625f 2018-10-22 stsp if (s->thread) {
2052 1a76625f 2018-10-22 stsp s->quit = 1;
2053 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
2054 1a76625f 2018-10-22 stsp if (errcode)
2055 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2056 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2057 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2058 1a76625f 2018-10-22 stsp if (errcode)
2059 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2060 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2061 1a76625f 2018-10-22 stsp errcode = pthread_join(s->thread, (void **)&err);
2062 1a76625f 2018-10-22 stsp if (errcode)
2063 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
2064 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2065 1a76625f 2018-10-22 stsp if (errcode)
2066 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2067 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2068 1a76625f 2018-10-22 stsp s->thread = NULL;
2069 1a76625f 2018-10-22 stsp }
2070 1a76625f 2018-10-22 stsp
2071 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
2072 1a76625f 2018-10-22 stsp got_repo_close(s->thread_args.repo);
2073 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
2074 1a76625f 2018-10-22 stsp }
2075 1a76625f 2018-10-22 stsp
2076 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
2077 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
2078 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
2079 1a76625f 2018-10-22 stsp }
2080 1a76625f 2018-10-22 stsp
2081 9343a5fb 2018-06-23 stsp return err;
2082 9343a5fb 2018-06-23 stsp }
2083 9343a5fb 2018-06-23 stsp
2084 9343a5fb 2018-06-23 stsp static const struct got_error *
2085 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
2086 1a76625f 2018-10-22 stsp {
2087 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2088 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
2089 276b94a1 2020-11-13 naddy int errcode;
2090 1a76625f 2018-10-22 stsp
2091 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
2092 276b94a1 2020-11-13 naddy
2093 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
2094 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2095 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2096 276b94a1 2020-11-13 naddy
2097 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
2098 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2099 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2100 276b94a1 2020-11-13 naddy
2101 1a76625f 2018-10-22 stsp free_commits(&s->commits);
2102 1a76625f 2018-10-22 stsp free(s->in_repo_path);
2103 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
2104 1a76625f 2018-10-22 stsp free(s->start_id);
2105 797bc7b9 2018-10-22 stsp s->start_id = NULL;
2106 78756c87 2020-11-24 stsp got_ref_list_free(&s->refs);
2107 1a76625f 2018-10-22 stsp return err;
2108 1a76625f 2018-10-22 stsp }
2109 1a76625f 2018-10-22 stsp
2110 1a76625f 2018-10-22 stsp static const struct got_error *
2111 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
2112 60493ae3 2019-06-20 stsp {
2113 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2114 60493ae3 2019-06-20 stsp
2115 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
2116 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2117 60493ae3 2019-06-20 stsp return NULL;
2118 60493ae3 2019-06-20 stsp }
2119 60493ae3 2019-06-20 stsp
2120 60493ae3 2019-06-20 stsp static const struct got_error *
2121 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
2122 60493ae3 2019-06-20 stsp {
2123 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
2124 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2125 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
2126 60493ae3 2019-06-20 stsp
2127 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
2128 f9686aa5 2020-03-27 stsp show_log_view(view);
2129 f9686aa5 2020-03-27 stsp update_panels();
2130 f9686aa5 2020-03-27 stsp doupdate();
2131 f9686aa5 2020-03-27 stsp
2132 96e2b566 2019-07-08 stsp if (s->search_entry) {
2133 13add988 2019-10-15 stsp int errcode, ch;
2134 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2135 13add988 2019-10-15 stsp if (errcode)
2136 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2137 13add988 2019-10-15 stsp "pthread_mutex_unlock");
2138 13add988 2019-10-15 stsp ch = wgetch(view->window);
2139 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
2140 13add988 2019-10-15 stsp if (errcode)
2141 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2142 13add988 2019-10-15 stsp "pthread_mutex_lock");
2143 13add988 2019-10-15 stsp if (ch == KEY_BACKSPACE) {
2144 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2145 678cbce5 2019-07-28 stsp return NULL;
2146 678cbce5 2019-07-28 stsp }
2147 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
2148 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
2149 96e2b566 2019-07-08 stsp else
2150 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
2151 96e2b566 2019-07-08 stsp commit_queue_head, entry);
2152 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
2153 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2154 8f4ed634 2020-03-26 stsp entry = TAILQ_NEXT(s->matched_entry, entry);
2155 b1bf1435 2019-06-21 stsp else
2156 8f4ed634 2020-03-26 stsp entry = TAILQ_PREV(s->matched_entry,
2157 b1bf1435 2019-06-21 stsp commit_queue_head, entry);
2158 20be8d96 2019-06-21 stsp } else {
2159 20be8d96 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2160 20be8d96 2019-06-21 stsp entry = TAILQ_FIRST(&s->commits.head);
2161 20be8d96 2019-06-21 stsp else
2162 20be8d96 2019-06-21 stsp entry = TAILQ_LAST(&s->commits.head, commit_queue_head);
2163 20be8d96 2019-06-21 stsp }
2164 60493ae3 2019-06-20 stsp
2165 60493ae3 2019-06-20 stsp while (1) {
2166 13add988 2019-10-15 stsp int have_match = 0;
2167 13add988 2019-10-15 stsp
2168 60493ae3 2019-06-20 stsp if (entry == NULL) {
2169 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
2170 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
2171 f9967bca 2020-03-27 stsp view->search_next_done =
2172 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
2173 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
2174 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
2175 f801134a 2019-06-25 stsp return NULL;
2176 60493ae3 2019-06-20 stsp }
2177 96e2b566 2019-07-08 stsp /*
2178 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
2179 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
2180 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
2181 96e2b566 2019-07-08 stsp */
2182 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
2183 7c1452c1 2020-03-26 stsp return trigger_log_thread(view, 0,
2184 f801134a 2019-06-25 stsp &s->thread_args.commits_needed,
2185 f801134a 2019-06-25 stsp &s->thread_args.log_complete,
2186 7c1452c1 2020-03-26 stsp &s->thread_args.need_commits,
2187 7c1452c1 2020-03-26 stsp &s->thread_args.commit_loaded);
2188 60493ae3 2019-06-20 stsp }
2189 60493ae3 2019-06-20 stsp
2190 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
2191 13add988 2019-10-15 stsp &view->regex);
2192 5943eee2 2019-08-13 stsp if (err)
2193 13add988 2019-10-15 stsp break;
2194 13add988 2019-10-15 stsp if (have_match) {
2195 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2196 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
2197 60493ae3 2019-06-20 stsp break;
2198 60493ae3 2019-06-20 stsp }
2199 13add988 2019-10-15 stsp
2200 96e2b566 2019-07-08 stsp s->search_entry = entry;
2201 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2202 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
2203 b1bf1435 2019-06-21 stsp else
2204 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2205 60493ae3 2019-06-20 stsp }
2206 60493ae3 2019-06-20 stsp
2207 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
2208 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
2209 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
2210 60493ae3 2019-06-20 stsp err = input_log_view(NULL, NULL, NULL, view, KEY_DOWN);
2211 60493ae3 2019-06-20 stsp if (err)
2212 60493ae3 2019-06-20 stsp return err;
2213 ead14cbe 2019-06-21 stsp cur++;
2214 ead14cbe 2019-06-21 stsp }
2215 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
2216 ead14cbe 2019-06-21 stsp err = input_log_view(NULL, NULL, NULL, view, KEY_UP);
2217 60493ae3 2019-06-20 stsp if (err)
2218 60493ae3 2019-06-20 stsp return err;
2219 ead14cbe 2019-06-21 stsp cur--;
2220 60493ae3 2019-06-20 stsp }
2221 60493ae3 2019-06-20 stsp }
2222 60493ae3 2019-06-20 stsp
2223 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2224 96e2b566 2019-07-08 stsp
2225 60493ae3 2019-06-20 stsp return NULL;
2226 60493ae3 2019-06-20 stsp }
2227 60493ae3 2019-06-20 stsp
2228 60493ae3 2019-06-20 stsp static const struct got_error *
2229 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
2230 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
2231 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
2232 80ddbec8 2018-04-29 stsp {
2233 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
2234 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
2235 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
2236 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
2237 1a76625f 2018-10-22 stsp int errcode;
2238 80ddbec8 2018-04-29 stsp
2239 78756c87 2020-11-24 stsp SIMPLEQ_INIT(&s->refs);
2240 78756c87 2020-11-24 stsp
2241 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
2242 f135c941 2020-02-20 stsp free(s->in_repo_path);
2243 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
2244 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
2245 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
2246 f135c941 2020-02-20 stsp }
2247 ecb28ae0 2018-07-16 stsp
2248 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
2249 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->commits.head);
2250 fb2756b9 2018-08-04 stsp s->commits.ncommits = 0;
2251 9ba79e04 2018-06-11 stsp
2252 78756c87 2020-11-24 stsp err = got_ref_list(&s->refs, repo, NULL, got_ref_cmp_by_name, NULL);
2253 78756c87 2020-11-24 stsp if (err)
2254 78756c87 2020-11-24 stsp goto done;
2255 78756c87 2020-11-24 stsp
2256 fb2756b9 2018-08-04 stsp s->repo = repo;
2257 d01904d4 2019-06-25 stsp s->head_ref_name = head_ref_name;
2258 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
2259 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
2260 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2261 5036bf37 2018-09-24 stsp goto done;
2262 5036bf37 2018-09-24 stsp }
2263 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
2264 e5a0f69f 2018-08-18 stsp
2265 11b20872 2019-11-08 stsp SIMPLEQ_INIT(&s->colors);
2266 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
2267 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
2268 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
2269 11b20872 2019-11-08 stsp if (err)
2270 11b20872 2019-11-08 stsp goto done;
2271 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
2272 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
2273 11b20872 2019-11-08 stsp if (err) {
2274 11b20872 2019-11-08 stsp free_colors(&s->colors);
2275 11b20872 2019-11-08 stsp goto done;
2276 11b20872 2019-11-08 stsp }
2277 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
2278 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
2279 11b20872 2019-11-08 stsp if (err) {
2280 11b20872 2019-11-08 stsp free_colors(&s->colors);
2281 11b20872 2019-11-08 stsp goto done;
2282 11b20872 2019-11-08 stsp }
2283 11b20872 2019-11-08 stsp }
2284 11b20872 2019-11-08 stsp
2285 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
2286 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
2287 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
2288 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
2289 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
2290 1a76625f 2018-10-22 stsp
2291 c9956ddf 2019-09-08 stsp err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL);
2292 1a76625f 2018-10-22 stsp if (err)
2293 1a76625f 2018-10-22 stsp goto done;
2294 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
2295 b672a97a 2020-01-27 stsp !s->log_branches);
2296 1a76625f 2018-10-22 stsp if (err)
2297 1a76625f 2018-10-22 stsp goto done;
2298 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
2299 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
2300 c5b78334 2020-01-12 stsp if (err)
2301 c5b78334 2020-01-12 stsp goto done;
2302 1a76625f 2018-10-22 stsp
2303 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
2304 1a76625f 2018-10-22 stsp if (errcode) {
2305 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
2306 1a76625f 2018-10-22 stsp goto done;
2307 1a76625f 2018-10-22 stsp }
2308 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
2309 7c1452c1 2020-03-26 stsp if (errcode) {
2310 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
2311 7c1452c1 2020-03-26 stsp goto done;
2312 7c1452c1 2020-03-26 stsp }
2313 1a76625f 2018-10-22 stsp
2314 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
2315 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
2316 1a76625f 2018-10-22 stsp s->thread_args.commits = &s->commits;
2317 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
2318 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
2319 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
2320 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
2321 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
2322 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
2323 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
2324 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
2325 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
2326 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
2327 ba4f502b 2018-08-04 stsp done:
2328 1a76625f 2018-10-22 stsp if (err)
2329 1a76625f 2018-10-22 stsp close_log_view(view);
2330 ba4f502b 2018-08-04 stsp return err;
2331 ba4f502b 2018-08-04 stsp }
2332 ba4f502b 2018-08-04 stsp
2333 e5a0f69f 2018-08-18 stsp static const struct got_error *
2334 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
2335 ba4f502b 2018-08-04 stsp {
2336 f2f6d207 2020-11-24 stsp const struct got_error *err;
2337 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
2338 ba4f502b 2018-08-04 stsp
2339 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
2340 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
2341 2b380cc8 2018-10-24 stsp &s->thread_args);
2342 2b380cc8 2018-10-24 stsp if (errcode)
2343 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
2344 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
2345 f2f6d207 2020-11-24 stsp err = trigger_log_thread(view, 1,
2346 f2f6d207 2020-11-24 stsp &s->thread_args.commits_needed,
2347 f2f6d207 2020-11-24 stsp &s->thread_args.log_complete,
2348 f2f6d207 2020-11-24 stsp &s->thread_args.need_commits,
2349 f2f6d207 2020-11-24 stsp &s->thread_args.commit_loaded);
2350 f2f6d207 2020-11-24 stsp if (err)
2351 f2f6d207 2020-11-24 stsp return err;
2352 f2f6d207 2020-11-24 stsp }
2353 2b380cc8 2018-10-24 stsp }
2354 2b380cc8 2018-10-24 stsp
2355 0cf4efb1 2018-09-29 stsp return draw_commits(view, &s->last_displayed_entry,
2356 e5a0f69f 2018-08-18 stsp &s->selected_entry, s->first_displayed_entry,
2357 78756c87 2020-11-24 stsp &s->commits, s->selected, view->nlines, &s->refs,
2358 11b20872 2019-11-08 stsp s->in_repo_path, s->thread_args.commits_needed, &s->colors);
2359 e5a0f69f 2018-08-18 stsp }
2360 04cc582a 2018-08-01 stsp
2361 e5a0f69f 2018-08-18 stsp static const struct got_error *
2362 e5a0f69f 2018-08-18 stsp input_log_view(struct tog_view **new_view, struct tog_view **dead_view,
2363 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
2364 e5a0f69f 2018-08-18 stsp {
2365 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
2366 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
2367 d01904d4 2019-06-25 stsp char *parent_path, *in_repo_path = NULL;
2368 d01904d4 2019-06-25 stsp struct tog_view *diff_view = NULL, *tree_view = NULL, *lv = NULL;
2369 6458efa5 2020-11-24 stsp struct tog_view *ref_view = NULL;
2370 669b5ffa 2018-10-07 stsp int begin_x = 0;
2371 d01904d4 2019-06-25 stsp struct got_object_id *start_id;
2372 80ddbec8 2018-04-29 stsp
2373 e5a0f69f 2018-08-18 stsp switch (ch) {
2374 1e37a5c2 2019-05-12 jcs case 'q':
2375 1e37a5c2 2019-05-12 jcs s->quit = 1;
2376 1e37a5c2 2019-05-12 jcs break;
2377 1e37a5c2 2019-05-12 jcs case 'k':
2378 1e37a5c2 2019-05-12 jcs case KEY_UP:
2379 1e37a5c2 2019-05-12 jcs case '<':
2380 1e37a5c2 2019-05-12 jcs case ',':
2381 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2382 1a76625f 2018-10-22 stsp break;
2383 1e37a5c2 2019-05-12 jcs if (s->selected > 0)
2384 1e37a5c2 2019-05-12 jcs s->selected--;
2385 1144d21a 2019-06-21 stsp else
2386 1144d21a 2019-06-21 stsp scroll_up(view, &s->first_displayed_entry, 1,
2387 1144d21a 2019-06-21 stsp &s->commits);
2388 1e37a5c2 2019-05-12 jcs break;
2389 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
2390 a4292ac5 2019-05-12 jcs case CTRL('b'):
2391 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2392 e5a0f69f 2018-08-18 stsp break;
2393 1e37a5c2 2019-05-12 jcs if (TAILQ_FIRST(&s->commits.head) ==
2394 1e37a5c2 2019-05-12 jcs s->first_displayed_entry) {
2395 1e37a5c2 2019-05-12 jcs s->selected = 0;
2396 e5a0f69f 2018-08-18 stsp break;
2397 1e37a5c2 2019-05-12 jcs }
2398 1e37a5c2 2019-05-12 jcs scroll_up(view, &s->first_displayed_entry,
2399 1831ac02 2020-03-23 naddy view->nlines - 1, &s->commits);
2400 1e37a5c2 2019-05-12 jcs break;
2401 1e37a5c2 2019-05-12 jcs case 'j':
2402 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
2403 1e37a5c2 2019-05-12 jcs case '>':
2404 1e37a5c2 2019-05-12 jcs case '.':
2405 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2406 e5a0f69f 2018-08-18 stsp break;
2407 1e37a5c2 2019-05-12 jcs if (s->selected < MIN(view->nlines - 2,
2408 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1)) {
2409 1e37a5c2 2019-05-12 jcs s->selected++;
2410 1e37a5c2 2019-05-12 jcs break;
2411 80ddbec8 2018-04-29 stsp }
2412 1e37a5c2 2019-05-12 jcs err = scroll_down(view, &s->first_displayed_entry, 1,
2413 1e37a5c2 2019-05-12 jcs &s->last_displayed_entry, &s->commits,
2414 1e37a5c2 2019-05-12 jcs &s->thread_args.log_complete,
2415 1e37a5c2 2019-05-12 jcs &s->thread_args.commits_needed,
2416 7c1452c1 2020-03-26 stsp &s->thread_args.need_commits,
2417 7c1452c1 2020-03-26 stsp &s->thread_args.commit_loaded);
2418 1e37a5c2 2019-05-12 jcs break;
2419 a4292ac5 2019-05-12 jcs case KEY_NPAGE:
2420 a4292ac5 2019-05-12 jcs case CTRL('f'): {
2421 1e37a5c2 2019-05-12 jcs struct commit_queue_entry *first;
2422 1e37a5c2 2019-05-12 jcs first = s->first_displayed_entry;
2423 1e37a5c2 2019-05-12 jcs if (first == NULL)
2424 e5a0f69f 2018-08-18 stsp break;
2425 1e37a5c2 2019-05-12 jcs err = scroll_down(view, &s->first_displayed_entry,
2426 1831ac02 2020-03-23 naddy view->nlines - 1, &s->last_displayed_entry,
2427 1e37a5c2 2019-05-12 jcs &s->commits, &s->thread_args.log_complete,
2428 1e37a5c2 2019-05-12 jcs &s->thread_args.commits_needed,
2429 7c1452c1 2020-03-26 stsp &s->thread_args.need_commits,
2430 7c1452c1 2020-03-26 stsp &s->thread_args.commit_loaded);
2431 1cae65b4 2019-09-22 stsp if (err)
2432 1cae65b4 2019-09-22 stsp break;
2433 1e37a5c2 2019-05-12 jcs if (first == s->first_displayed_entry &&
2434 1e37a5c2 2019-05-12 jcs s->selected < MIN(view->nlines - 2,
2435 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1)) {
2436 1e37a5c2 2019-05-12 jcs /* can't scroll further down */
2437 1e37a5c2 2019-05-12 jcs s->selected = MIN(view->nlines - 2,
2438 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1);
2439 1e37a5c2 2019-05-12 jcs }
2440 1e37a5c2 2019-05-12 jcs err = NULL;
2441 1e37a5c2 2019-05-12 jcs break;
2442 1e37a5c2 2019-05-12 jcs }
2443 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
2444 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
2445 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
2446 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
2447 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
2448 1e37a5c2 2019-05-12 jcs break;
2449 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
2450 87c7274c 2019-05-12 jcs case ' ':
2451 1e37a5c2 2019-05-12 jcs case '\r':
2452 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2453 e5a0f69f 2018-08-18 stsp break;
2454 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2455 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2456 1e37a5c2 2019-05-12 jcs err = open_diff_view_for_commit(&diff_view, begin_x,
2457 1e37a5c2 2019-05-12 jcs s->selected_entry->commit, s->selected_entry->id,
2458 78756c87 2020-11-24 stsp view, s->repo);
2459 1e37a5c2 2019-05-12 jcs if (err)
2460 1e37a5c2 2019-05-12 jcs break;
2461 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2462 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2463 f7013a22 2018-10-24 stsp if (err)
2464 1e37a5c2 2019-05-12 jcs return err;
2465 1e37a5c2 2019-05-12 jcs err = view_set_child(view, diff_view);
2466 1e37a5c2 2019-05-12 jcs if (err) {
2467 1e37a5c2 2019-05-12 jcs view_close(diff_view);
2468 f7013a22 2018-10-24 stsp break;
2469 5036bf37 2018-09-24 stsp }
2470 1e37a5c2 2019-05-12 jcs *focus_view = diff_view;
2471 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
2472 1e37a5c2 2019-05-12 jcs } else
2473 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
2474 1e37a5c2 2019-05-12 jcs break;
2475 1e37a5c2 2019-05-12 jcs case 't':
2476 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2477 5036bf37 2018-09-24 stsp break;
2478 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2479 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2480 941e9f74 2019-05-21 stsp err = browse_commit_tree(&tree_view, begin_x,
2481 78756c87 2020-11-24 stsp s->selected_entry, s->in_repo_path, s->repo);
2482 1e37a5c2 2019-05-12 jcs if (err)
2483 e5a0f69f 2018-08-18 stsp break;
2484 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2485 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2486 1e37a5c2 2019-05-12 jcs if (err)
2487 1e37a5c2 2019-05-12 jcs return err;
2488 1e37a5c2 2019-05-12 jcs err = view_set_child(view, tree_view);
2489 1e37a5c2 2019-05-12 jcs if (err) {
2490 1e37a5c2 2019-05-12 jcs view_close(tree_view);
2491 1e37a5c2 2019-05-12 jcs break;
2492 1e37a5c2 2019-05-12 jcs }
2493 1e37a5c2 2019-05-12 jcs *focus_view = tree_view;
2494 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
2495 1e37a5c2 2019-05-12 jcs } else
2496 1e37a5c2 2019-05-12 jcs *new_view = tree_view;
2497 1e37a5c2 2019-05-12 jcs break;
2498 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
2499 74cfe85e 2020-10-20 stsp if (got_path_cmp(s->in_repo_path, "/",
2500 74cfe85e 2020-10-20 stsp strlen(s->in_repo_path), 1) == 0)
2501 1e37a5c2 2019-05-12 jcs break;
2502 74cfe85e 2020-10-20 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
2503 74cfe85e 2020-10-20 stsp if (err)
2504 74cfe85e 2020-10-20 stsp return err;
2505 74cfe85e 2020-10-20 stsp err = stop_log_thread(s);
2506 74cfe85e 2020-10-20 stsp if (err) {
2507 74cfe85e 2020-10-20 stsp free(parent_path);
2508 74cfe85e 2020-10-20 stsp return err;
2509 74cfe85e 2020-10-20 stsp }
2510 74cfe85e 2020-10-20 stsp lv = view_open(view->nlines, view->ncols,
2511 74cfe85e 2020-10-20 stsp view->begin_y, view->begin_x, TOG_VIEW_LOG);
2512 74cfe85e 2020-10-20 stsp if (lv == NULL) {
2513 74cfe85e 2020-10-20 stsp free(parent_path);
2514 74cfe85e 2020-10-20 stsp return got_error_from_errno("view_open");
2515 74cfe85e 2020-10-20 stsp }
2516 78756c87 2020-11-24 stsp err = open_log_view(lv, s->start_id, s->repo, s->head_ref_name,
2517 78756c87 2020-11-24 stsp parent_path, s->log_branches);
2518 74cfe85e 2020-10-20 stsp free(parent_path);
2519 74cfe85e 2020-10-20 stsp if (err)
2520 74cfe85e 2020-10-20 stsp return err;;
2521 74cfe85e 2020-10-20 stsp if (view_is_parent_view(view))
2522 74cfe85e 2020-10-20 stsp *new_view = lv;
2523 74cfe85e 2020-10-20 stsp else {
2524 74cfe85e 2020-10-20 stsp view_set_child(view->parent, lv);
2525 74cfe85e 2020-10-20 stsp *focus_view = lv;
2526 1e37a5c2 2019-05-12 jcs }
2527 1e37a5c2 2019-05-12 jcs break;
2528 e3d2a5c6 2019-06-26 stsp case CTRL('l'):
2529 d01904d4 2019-06-25 stsp err = stop_log_thread(s);
2530 d01904d4 2019-06-25 stsp if (err)
2531 d01904d4 2019-06-25 stsp return err;
2532 d01904d4 2019-06-25 stsp lv = view_open(view->nlines, view->ncols,
2533 d01904d4 2019-06-25 stsp view->begin_y, view->begin_x, TOG_VIEW_LOG);
2534 d01904d4 2019-06-25 stsp if (lv == NULL)
2535 d01904d4 2019-06-25 stsp return got_error_from_errno("view_open");
2536 71a27632 2020-01-15 stsp err = got_repo_match_object_id(&start_id, NULL,
2537 71a27632 2020-01-15 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
2538 71a27632 2020-01-15 stsp GOT_OBJ_TYPE_COMMIT, 1, s->repo);
2539 ef129c5e 2019-08-03 stsp if (err) {
2540 ef129c5e 2019-08-03 stsp view_close(lv);
2541 d01904d4 2019-06-25 stsp return err;
2542 ef129c5e 2019-08-03 stsp }
2543 d01904d4 2019-06-25 stsp in_repo_path = strdup(s->in_repo_path);
2544 d01904d4 2019-06-25 stsp if (in_repo_path == NULL) {
2545 e6b23735 2019-10-04 stsp free(start_id);
2546 e6b23735 2019-10-04 stsp view_close(lv);
2547 e6b23735 2019-10-04 stsp return got_error_from_errno("strdup");
2548 e6b23735 2019-10-04 stsp }
2549 78756c87 2020-11-24 stsp err = open_log_view(lv, start_id, s->repo, s->head_ref_name,
2550 78756c87 2020-11-24 stsp in_repo_path, s->log_branches);
2551 ef129c5e 2019-08-03 stsp if (err) {
2552 ef129c5e 2019-08-03 stsp free(start_id);
2553 b672a97a 2020-01-27 stsp view_close(lv);
2554 b672a97a 2020-01-27 stsp return err;;
2555 b672a97a 2020-01-27 stsp }
2556 b672a97a 2020-01-27 stsp *dead_view = view;
2557 b672a97a 2020-01-27 stsp *new_view = lv;
2558 b672a97a 2020-01-27 stsp break;
2559 b672a97a 2020-01-27 stsp case 'B':
2560 b672a97a 2020-01-27 stsp s->log_branches = !s->log_branches;
2561 b672a97a 2020-01-27 stsp err = stop_log_thread(s);
2562 b672a97a 2020-01-27 stsp if (err)
2563 b672a97a 2020-01-27 stsp return err;
2564 b672a97a 2020-01-27 stsp lv = view_open(view->nlines, view->ncols,
2565 b672a97a 2020-01-27 stsp view->begin_y, view->begin_x, TOG_VIEW_LOG);
2566 b672a97a 2020-01-27 stsp if (lv == NULL)
2567 b672a97a 2020-01-27 stsp return got_error_from_errno("view_open");
2568 78756c87 2020-11-24 stsp err = open_log_view(lv, s->start_id, s->repo,
2569 f135c941 2020-02-20 stsp s->head_ref_name, s->in_repo_path, s->log_branches);
2570 b672a97a 2020-01-27 stsp if (err) {
2571 ef129c5e 2019-08-03 stsp view_close(lv);
2572 d01904d4 2019-06-25 stsp return err;;
2573 ef129c5e 2019-08-03 stsp }
2574 d01904d4 2019-06-25 stsp *dead_view = view;
2575 d01904d4 2019-06-25 stsp *new_view = lv;
2576 d01904d4 2019-06-25 stsp break;
2577 6458efa5 2020-11-24 stsp case 'r':
2578 6458efa5 2020-11-24 stsp if (view_is_parent_view(view))
2579 6458efa5 2020-11-24 stsp begin_x = view_split_begin_x(view->begin_x);
2580 6458efa5 2020-11-24 stsp ref_view = view_open(view->nlines, view->ncols,
2581 6458efa5 2020-11-24 stsp view->begin_y, begin_x, TOG_VIEW_REF);
2582 6458efa5 2020-11-24 stsp if (ref_view == NULL)
2583 6458efa5 2020-11-24 stsp return got_error_from_errno("view_open");
2584 6458efa5 2020-11-24 stsp err = open_ref_view(ref_view, s->repo);
2585 6458efa5 2020-11-24 stsp if (err) {
2586 6458efa5 2020-11-24 stsp view_close(ref_view);
2587 6458efa5 2020-11-24 stsp return err;
2588 6458efa5 2020-11-24 stsp }
2589 6458efa5 2020-11-24 stsp if (view_is_parent_view(view)) {
2590 6458efa5 2020-11-24 stsp err = view_close_child(view);
2591 6458efa5 2020-11-24 stsp if (err)
2592 6458efa5 2020-11-24 stsp return err;
2593 6458efa5 2020-11-24 stsp err = view_set_child(view, ref_view);
2594 6458efa5 2020-11-24 stsp if (err) {
2595 6458efa5 2020-11-24 stsp view_close(ref_view);
2596 6458efa5 2020-11-24 stsp break;
2597 6458efa5 2020-11-24 stsp }
2598 6458efa5 2020-11-24 stsp *focus_view = ref_view;
2599 6458efa5 2020-11-24 stsp view->child_focussed = 1;
2600 6458efa5 2020-11-24 stsp } else
2601 6458efa5 2020-11-24 stsp *new_view = ref_view;
2602 6458efa5 2020-11-24 stsp break;
2603 1e37a5c2 2019-05-12 jcs default:
2604 1e37a5c2 2019-05-12 jcs break;
2605 899d86c2 2018-05-10 stsp }
2606 e5a0f69f 2018-08-18 stsp
2607 80ddbec8 2018-04-29 stsp return err;
2608 80ddbec8 2018-04-29 stsp }
2609 80ddbec8 2018-04-29 stsp
2610 4ed7e80c 2018-05-20 stsp static const struct got_error *
2611 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
2612 c2db6724 2019-01-04 stsp {
2613 c2db6724 2019-01-04 stsp const struct got_error *error;
2614 c2db6724 2019-01-04 stsp
2615 37c06ea4 2019-07-15 stsp #ifdef PROFILE
2616 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
2617 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
2618 37c06ea4 2019-07-15 stsp #endif
2619 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
2620 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
2621 c2db6724 2019-01-04 stsp
2622 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
2623 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
2624 c2db6724 2019-01-04 stsp
2625 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
2626 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
2627 c2db6724 2019-01-04 stsp
2628 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
2629 c2db6724 2019-01-04 stsp if (error != NULL)
2630 c2db6724 2019-01-04 stsp return error;
2631 c2db6724 2019-01-04 stsp
2632 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
2633 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
2634 c2db6724 2019-01-04 stsp
2635 c2db6724 2019-01-04 stsp return NULL;
2636 c2db6724 2019-01-04 stsp }
2637 c2db6724 2019-01-04 stsp
2638 a915003a 2019-02-05 stsp static void
2639 a915003a 2019-02-05 stsp init_curses(void)
2640 a915003a 2019-02-05 stsp {
2641 a915003a 2019-02-05 stsp initscr();
2642 a915003a 2019-02-05 stsp cbreak();
2643 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
2644 a915003a 2019-02-05 stsp noecho();
2645 a915003a 2019-02-05 stsp nonl();
2646 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
2647 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
2648 a915003a 2019-02-05 stsp curs_set(0);
2649 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
2650 6d17833f 2019-11-08 stsp start_color();
2651 6d17833f 2019-11-08 stsp use_default_colors();
2652 6d17833f 2019-11-08 stsp }
2653 a915003a 2019-02-05 stsp signal(SIGWINCH, tog_sigwinch);
2654 83baff54 2019-08-12 stsp signal(SIGPIPE, tog_sigpipe);
2655 61266923 2020-01-14 stsp signal(SIGCONT, tog_sigcont);
2656 a915003a 2019-02-05 stsp }
2657 a915003a 2019-02-05 stsp
2658 c2db6724 2019-01-04 stsp static const struct got_error *
2659 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
2660 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
2661 f135c941 2020-02-20 stsp {
2662 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
2663 f135c941 2020-02-20 stsp
2664 f135c941 2020-02-20 stsp if (argc == 0) {
2665 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
2666 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
2667 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
2668 f135c941 2020-02-20 stsp return NULL;
2669 f135c941 2020-02-20 stsp }
2670 f135c941 2020-02-20 stsp
2671 f135c941 2020-02-20 stsp if (worktree) {
2672 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
2673 bfd61697 2020-11-14 stsp char *p;
2674 f135c941 2020-02-20 stsp
2675 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
2676 f135c941 2020-02-20 stsp if (err)
2677 f135c941 2020-02-20 stsp return err;
2678 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
2679 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
2680 bfd61697 2020-11-14 stsp p) == -1) {
2681 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
2682 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
2683 f135c941 2020-02-20 stsp }
2684 f135c941 2020-02-20 stsp free(p);
2685 f135c941 2020-02-20 stsp } else
2686 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
2687 f135c941 2020-02-20 stsp
2688 f135c941 2020-02-20 stsp return err;
2689 f135c941 2020-02-20 stsp }
2690 f135c941 2020-02-20 stsp
2691 f135c941 2020-02-20 stsp static const struct got_error *
2692 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
2693 9f7d7167 2018-04-29 stsp {
2694 80ddbec8 2018-04-29 stsp const struct got_error *error;
2695 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
2696 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
2697 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
2698 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
2699 2fc00ff4 2019-08-31 stsp char *start_commit = NULL, *head_ref_name = NULL;
2700 f135c941 2020-02-20 stsp int ch, log_branches = 0;
2701 04cc582a 2018-08-01 stsp struct tog_view *view;
2702 a55555f2 2019-03-28 stsp
2703 80ddbec8 2018-04-29 stsp #ifndef PROFILE
2704 c2db6724 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
2705 c2db6724 2019-01-04 stsp NULL) == -1)
2706 80ddbec8 2018-04-29 stsp err(1, "pledge");
2707 80ddbec8 2018-04-29 stsp #endif
2708 80ddbec8 2018-04-29 stsp
2709 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
2710 80ddbec8 2018-04-29 stsp switch (ch) {
2711 b672a97a 2020-01-27 stsp case 'b':
2712 b672a97a 2020-01-27 stsp log_branches = 1;
2713 b672a97a 2020-01-27 stsp break;
2714 80ddbec8 2018-04-29 stsp case 'c':
2715 80ddbec8 2018-04-29 stsp start_commit = optarg;
2716 80ddbec8 2018-04-29 stsp break;
2717 ecb28ae0 2018-07-16 stsp case 'r':
2718 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
2719 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
2720 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
2721 9ba1d308 2019-10-21 stsp optarg);
2722 ecb28ae0 2018-07-16 stsp break;
2723 80ddbec8 2018-04-29 stsp default:
2724 17020d27 2019-03-07 stsp usage_log();
2725 80ddbec8 2018-04-29 stsp /* NOTREACHED */
2726 80ddbec8 2018-04-29 stsp }
2727 80ddbec8 2018-04-29 stsp }
2728 80ddbec8 2018-04-29 stsp
2729 80ddbec8 2018-04-29 stsp argc -= optind;
2730 80ddbec8 2018-04-29 stsp argv += optind;
2731 80ddbec8 2018-04-29 stsp
2732 f135c941 2020-02-20 stsp if (argc > 1)
2733 f135c941 2020-02-20 stsp usage_log();
2734 f135c941 2020-02-20 stsp
2735 ecb28ae0 2018-07-16 stsp cwd = getcwd(NULL, 0);
2736 6962eb72 2020-02-20 stsp if (cwd == NULL)
2737 6962eb72 2020-02-20 stsp return got_error_from_errno("getcwd");
2738 6962eb72 2020-02-20 stsp
2739 963f97a1 2019-03-18 stsp error = got_worktree_open(&worktree, cwd);
2740 963f97a1 2019-03-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2741 963f97a1 2019-03-18 stsp goto done;
2742 963f97a1 2019-03-18 stsp
2743 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
2744 a1fbf39a 2019-08-11 stsp if (worktree)
2745 6962eb72 2020-02-20 stsp repo_path =
2746 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
2747 a1fbf39a 2019-08-11 stsp else
2748 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
2749 a1fbf39a 2019-08-11 stsp }
2750 963f97a1 2019-03-18 stsp if (repo_path == NULL) {
2751 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2752 963f97a1 2019-03-18 stsp goto done;
2753 ecb28ae0 2018-07-16 stsp }
2754 ecb28ae0 2018-07-16 stsp
2755 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2756 80ddbec8 2018-04-29 stsp if (error != NULL)
2757 ecb28ae0 2018-07-16 stsp goto done;
2758 80ddbec8 2018-04-29 stsp
2759 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
2760 f135c941 2020-02-20 stsp repo, worktree);
2761 f135c941 2020-02-20 stsp if (error)
2762 f135c941 2020-02-20 stsp goto done;
2763 f135c941 2020-02-20 stsp
2764 f135c941 2020-02-20 stsp init_curses();
2765 f135c941 2020-02-20 stsp
2766 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
2767 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
2768 c02c541e 2019-03-29 stsp if (error)
2769 c02c541e 2019-03-29 stsp goto done;
2770 c02c541e 2019-03-29 stsp
2771 15a94983 2018-12-23 stsp if (start_commit == NULL)
2772 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&start_id, NULL, worktree ?
2773 19e70ad6 2019-05-14 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
2774 71a27632 2020-01-15 stsp GOT_OBJ_TYPE_COMMIT, 1, repo);
2775 7a1d6b72 2020-01-15 stsp else
2776 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&start_id, NULL, start_commit,
2777 71a27632 2020-01-15 stsp GOT_OBJ_TYPE_COMMIT, 1, repo);
2778 80ddbec8 2018-04-29 stsp if (error != NULL)
2779 8b473291 2019-02-21 stsp goto done;
2780 8b473291 2019-02-21 stsp
2781 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
2782 04cc582a 2018-08-01 stsp if (view == NULL) {
2783 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
2784 04cc582a 2018-08-01 stsp goto done;
2785 04cc582a 2018-08-01 stsp }
2786 2fc00ff4 2019-08-31 stsp if (worktree) {
2787 2fc00ff4 2019-08-31 stsp head_ref_name = strdup(
2788 2fc00ff4 2019-08-31 stsp got_worktree_get_head_ref_name(worktree));
2789 2fc00ff4 2019-08-31 stsp if (head_ref_name == NULL) {
2790 2fc00ff4 2019-08-31 stsp error = got_error_from_errno("strdup");
2791 2fc00ff4 2019-08-31 stsp goto done;
2792 2fc00ff4 2019-08-31 stsp }
2793 2fc00ff4 2019-08-31 stsp }
2794 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
2795 f135c941 2020-02-20 stsp in_repo_path, log_branches);
2796 ba4f502b 2018-08-04 stsp if (error)
2797 ba4f502b 2018-08-04 stsp goto done;
2798 2fc00ff4 2019-08-31 stsp if (worktree) {
2799 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
2800 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
2801 2fc00ff4 2019-08-31 stsp worktree = NULL;
2802 2fc00ff4 2019-08-31 stsp }
2803 e5a0f69f 2018-08-18 stsp error = view_loop(view);
2804 ecb28ae0 2018-07-16 stsp done:
2805 f135c941 2020-02-20 stsp free(in_repo_path);
2806 ecb28ae0 2018-07-16 stsp free(repo_path);
2807 ecb28ae0 2018-07-16 stsp free(cwd);
2808 899d86c2 2018-05-10 stsp free(start_id);
2809 2fc00ff4 2019-08-31 stsp free(head_ref_name);
2810 ecb28ae0 2018-07-16 stsp if (repo)
2811 ecb28ae0 2018-07-16 stsp got_repo_close(repo);
2812 ec142235 2019-03-07 stsp if (worktree)
2813 ec142235 2019-03-07 stsp got_worktree_close(worktree);
2814 80ddbec8 2018-04-29 stsp return error;
2815 9f7d7167 2018-04-29 stsp }
2816 9f7d7167 2018-04-29 stsp
2817 4ed7e80c 2018-05-20 stsp __dead static void
2818 9f7d7167 2018-04-29 stsp usage_diff(void)
2819 9f7d7167 2018-04-29 stsp {
2820 80ddbec8 2018-04-29 stsp endwin();
2821 3dbaef42 2020-11-24 stsp fprintf(stderr, "usage: %s diff [-a] [-C number] [-r repository-path] "
2822 3dbaef42 2020-11-24 stsp "[-w] object1 object2\n", getprogname());
2823 9f7d7167 2018-04-29 stsp exit(1);
2824 b304db33 2018-05-20 stsp }
2825 b304db33 2018-05-20 stsp
2826 b304db33 2018-05-20 stsp static char *
2827 b304db33 2018-05-20 stsp parse_next_line(FILE *f, size_t *len)
2828 b304db33 2018-05-20 stsp {
2829 b304db33 2018-05-20 stsp char *line;
2830 b304db33 2018-05-20 stsp size_t linelen;
2831 b304db33 2018-05-20 stsp size_t lineno;
2832 b304db33 2018-05-20 stsp const char delim[3] = { '\0', '\0', '\0'};
2833 b304db33 2018-05-20 stsp
2834 b304db33 2018-05-20 stsp line = fparseln(f, &linelen, &lineno, delim, 0);
2835 b304db33 2018-05-20 stsp if (len)
2836 b304db33 2018-05-20 stsp *len = linelen;
2837 b304db33 2018-05-20 stsp return line;
2838 26ed57b2 2018-05-19 stsp }
2839 26ed57b2 2018-05-19 stsp
2840 6d17833f 2019-11-08 stsp static int
2841 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
2842 41605754 2020-11-12 stsp regmatch_t *regmatch)
2843 6d17833f 2019-11-08 stsp {
2844 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
2845 6d17833f 2019-11-08 stsp }
2846 6d17833f 2019-11-08 stsp
2847 f26dddb7 2019-11-08 stsp struct tog_color *
2848 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
2849 6d17833f 2019-11-08 stsp {
2850 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
2851 6d17833f 2019-11-08 stsp
2852 6d17833f 2019-11-08 stsp SIMPLEQ_FOREACH(tc, colors, entry) {
2853 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
2854 6d17833f 2019-11-08 stsp return tc;
2855 6d17833f 2019-11-08 stsp }
2856 6d17833f 2019-11-08 stsp
2857 6d17833f 2019-11-08 stsp return NULL;
2858 6d17833f 2019-11-08 stsp }
2859 6d17833f 2019-11-08 stsp
2860 4ed7e80c 2018-05-20 stsp static const struct got_error *
2861 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
2862 41605754 2020-11-12 stsp WINDOW *window, regmatch_t *regmatch)
2863 41605754 2020-11-12 stsp {
2864 41605754 2020-11-12 stsp const struct got_error *err = NULL;
2865 41605754 2020-11-12 stsp wchar_t *wline;
2866 41605754 2020-11-12 stsp int width;
2867 41605754 2020-11-12 stsp char *s;
2868 41605754 2020-11-12 stsp
2869 41605754 2020-11-12 stsp *wtotal = 0;
2870 41605754 2020-11-12 stsp
2871 41605754 2020-11-12 stsp s = strndup(line, regmatch->rm_so);
2872 41605754 2020-11-12 stsp if (s == NULL)
2873 41605754 2020-11-12 stsp return got_error_from_errno("strndup");
2874 41605754 2020-11-12 stsp
2875 41605754 2020-11-12 stsp err = format_line(&wline, &width, s, wlimit, col_tab_align);
2876 41605754 2020-11-12 stsp if (err) {
2877 41605754 2020-11-12 stsp free(s);
2878 41605754 2020-11-12 stsp return err;
2879 41605754 2020-11-12 stsp }
2880 41605754 2020-11-12 stsp waddwstr(window, wline);
2881 41605754 2020-11-12 stsp free(wline);
2882 41605754 2020-11-12 stsp free(s);
2883 41605754 2020-11-12 stsp wlimit -= width;
2884 41605754 2020-11-12 stsp *wtotal += width;
2885 41605754 2020-11-12 stsp
2886 41605754 2020-11-12 stsp if (wlimit > 0) {
2887 41605754 2020-11-12 stsp s = strndup(line + regmatch->rm_so,
2888 41605754 2020-11-12 stsp regmatch->rm_eo - regmatch->rm_so);
2889 41605754 2020-11-12 stsp if (s == NULL) {
2890 41605754 2020-11-12 stsp err = got_error_from_errno("strndup");
2891 41605754 2020-11-12 stsp free(s);
2892 41605754 2020-11-12 stsp return err;
2893 41605754 2020-11-12 stsp }
2894 41605754 2020-11-12 stsp err = format_line(&wline, &width, s, wlimit, col_tab_align);
2895 41605754 2020-11-12 stsp if (err) {
2896 41605754 2020-11-12 stsp free(s);
2897 41605754 2020-11-12 stsp return err;
2898 41605754 2020-11-12 stsp }
2899 41605754 2020-11-12 stsp wattr_on(window, A_STANDOUT, NULL);
2900 41605754 2020-11-12 stsp waddwstr(window, wline);
2901 41605754 2020-11-12 stsp wattr_off(window, A_STANDOUT, NULL);
2902 41605754 2020-11-12 stsp free(wline);
2903 41605754 2020-11-12 stsp free(s);
2904 41605754 2020-11-12 stsp wlimit -= width;
2905 41605754 2020-11-12 stsp *wtotal += width;
2906 41605754 2020-11-12 stsp }
2907 41605754 2020-11-12 stsp
2908 41605754 2020-11-12 stsp if (wlimit > 0 && strlen(line) > regmatch->rm_eo) {
2909 41605754 2020-11-12 stsp err = format_line(&wline, &width,
2910 41605754 2020-11-12 stsp line + regmatch->rm_eo, wlimit, col_tab_align);
2911 41605754 2020-11-12 stsp if (err)
2912 41605754 2020-11-12 stsp return err;
2913 41605754 2020-11-12 stsp waddwstr(window, wline);
2914 41605754 2020-11-12 stsp free(wline);
2915 41605754 2020-11-12 stsp *wtotal += width;
2916 41605754 2020-11-12 stsp }
2917 41605754 2020-11-12 stsp
2918 41605754 2020-11-12 stsp return NULL;
2919 41605754 2020-11-12 stsp }
2920 41605754 2020-11-12 stsp
2921 41605754 2020-11-12 stsp static const struct got_error *
2922 fe621944 2020-11-10 stsp draw_file(struct tog_view *view, FILE *f, int first_displayed_line, int nlines,
2923 fe621944 2020-11-10 stsp off_t *line_offsets, int selected_line, int max_lines,
2924 3dbaef42 2020-11-24 stsp int *last_displayed_line, int *eof, const char *header,
2925 41605754 2020-11-12 stsp struct tog_colors *colors, int matched_line, regmatch_t *regmatch)
2926 26ed57b2 2018-05-19 stsp {
2927 61e69b96 2018-05-20 stsp const struct got_error *err;
2928 fe621944 2020-11-10 stsp int nprinted = 0;
2929 b304db33 2018-05-20 stsp char *line;
2930 f26dddb7 2019-11-08 stsp struct tog_color *tc;
2931 b304db33 2018-05-20 stsp size_t len;
2932 61e69b96 2018-05-20 stsp wchar_t *wline;
2933 e0b650dd 2018-05-20 stsp int width;
2934 fe621944 2020-11-10 stsp off_t line_offset;
2935 26ed57b2 2018-05-19 stsp
2936 fe621944 2020-11-10 stsp line_offset = line_offsets[first_displayed_line - 1];
2937 fe621944 2020-11-10 stsp if (fseeko(f, line_offset, SEEK_SET) == -1)
2938 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
2939 fe621944 2020-11-10 stsp
2940 f7d12f7e 2018-08-01 stsp werase(view->window);
2941 a3404814 2018-09-02 stsp
2942 a3404814 2018-09-02 stsp if (header) {
2943 135a2da0 2020-11-11 stsp if (asprintf(&line, "[%d/%d] %s",
2944 135a2da0 2020-11-11 stsp first_displayed_line - 1 + selected_line, nlines,
2945 135a2da0 2020-11-11 stsp header) == -1)
2946 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
2947 135a2da0 2020-11-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
2948 135a2da0 2020-11-11 stsp free(line);
2949 135a2da0 2020-11-11 stsp if (err)
2950 a3404814 2018-09-02 stsp return err;
2951 a3404814 2018-09-02 stsp
2952 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2953 a3404814 2018-09-02 stsp wstandout(view->window);
2954 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
2955 e54cc94a 2020-11-11 stsp free(wline);
2956 e54cc94a 2020-11-11 stsp wline = NULL;
2957 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2958 a3404814 2018-09-02 stsp wstandend(view->window);
2959 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2960 a3404814 2018-09-02 stsp waddch(view->window, '\n');
2961 26ed57b2 2018-05-19 stsp
2962 a3404814 2018-09-02 stsp if (max_lines <= 1)
2963 a3404814 2018-09-02 stsp return NULL;
2964 a3404814 2018-09-02 stsp max_lines--;
2965 a3404814 2018-09-02 stsp }
2966 a3404814 2018-09-02 stsp
2967 26ed57b2 2018-05-19 stsp *eof = 0;
2968 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
2969 b304db33 2018-05-20 stsp line = parse_next_line(f, &len);
2970 26ed57b2 2018-05-19 stsp if (line == NULL) {
2971 26ed57b2 2018-05-19 stsp *eof = 1;
2972 26ed57b2 2018-05-19 stsp break;
2973 61e69b96 2018-05-20 stsp }
2974 6d17833f 2019-11-08 stsp
2975 bddb1296 2019-11-08 stsp tc = match_color(colors, line);
2976 f26dddb7 2019-11-08 stsp if (tc)
2977 f26dddb7 2019-11-08 stsp wattr_on(view->window,
2978 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2979 41605754 2020-11-12 stsp if (first_displayed_line + nprinted == matched_line &&
2980 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
2981 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
2982 41605754 2020-11-12 stsp view->window, regmatch);
2983 41605754 2020-11-12 stsp if (err) {
2984 41605754 2020-11-12 stsp free(line);
2985 41605754 2020-11-12 stsp return err;
2986 41605754 2020-11-12 stsp }
2987 41605754 2020-11-12 stsp } else {
2988 41605754 2020-11-12 stsp err = format_line(&wline, &width, line, view->ncols, 0);
2989 41605754 2020-11-12 stsp if (err) {
2990 41605754 2020-11-12 stsp free(line);
2991 41605754 2020-11-12 stsp return err;
2992 41605754 2020-11-12 stsp }
2993 41605754 2020-11-12 stsp waddwstr(view->window, wline);
2994 41605754 2020-11-12 stsp free(wline);
2995 41605754 2020-11-12 stsp wline = NULL;
2996 41605754 2020-11-12 stsp }
2997 f26dddb7 2019-11-08 stsp if (tc)
2998 6d17833f 2019-11-08 stsp wattr_off(view->window,
2999 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3000 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
3001 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3002 fe621944 2020-11-10 stsp nprinted++;
3003 26ed57b2 2018-05-19 stsp free(line);
3004 26ed57b2 2018-05-19 stsp }
3005 fe621944 2020-11-10 stsp if (nprinted >= 1)
3006 fe621944 2020-11-10 stsp *last_displayed_line = first_displayed_line + (nprinted - 1);
3007 fe621944 2020-11-10 stsp else
3008 fe621944 2020-11-10 stsp *last_displayed_line = first_displayed_line;
3009 26ed57b2 2018-05-19 stsp
3010 1a57306a 2018-09-02 stsp view_vborder(view);
3011 c3e9aa98 2019-05-13 jcs
3012 c3e9aa98 2019-05-13 jcs if (*eof) {
3013 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
3014 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
3015 c3e9aa98 2019-05-13 jcs nprinted++;
3016 c3e9aa98 2019-05-13 jcs }
3017 c3e9aa98 2019-05-13 jcs
3018 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, TOG_EOF_STRING, view->ncols, 0);
3019 c3e9aa98 2019-05-13 jcs if (err) {
3020 c3e9aa98 2019-05-13 jcs return err;
3021 c3e9aa98 2019-05-13 jcs }
3022 26ed57b2 2018-05-19 stsp
3023 c3e9aa98 2019-05-13 jcs wstandout(view->window);
3024 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
3025 e54cc94a 2020-11-11 stsp free(wline);
3026 e54cc94a 2020-11-11 stsp wline = NULL;
3027 c3e9aa98 2019-05-13 jcs wstandend(view->window);
3028 c3e9aa98 2019-05-13 jcs }
3029 c3e9aa98 2019-05-13 jcs
3030 26ed57b2 2018-05-19 stsp return NULL;
3031 abd2672a 2018-12-23 stsp }
3032 abd2672a 2018-12-23 stsp
3033 abd2672a 2018-12-23 stsp static char *
3034 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
3035 abd2672a 2018-12-23 stsp {
3036 09867e48 2019-08-13 stsp struct tm mytm, *tm;
3037 09867e48 2019-08-13 stsp char *p, *s;
3038 09867e48 2019-08-13 stsp
3039 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
3040 09867e48 2019-08-13 stsp if (tm == NULL)
3041 09867e48 2019-08-13 stsp return NULL;
3042 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
3043 09867e48 2019-08-13 stsp if (s == NULL)
3044 09867e48 2019-08-13 stsp return NULL;
3045 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
3046 abd2672a 2018-12-23 stsp if (p)
3047 abd2672a 2018-12-23 stsp *p = '\0';
3048 abd2672a 2018-12-23 stsp return s;
3049 9f7d7167 2018-04-29 stsp }
3050 9f7d7167 2018-04-29 stsp
3051 4ed7e80c 2018-05-20 stsp static const struct got_error *
3052 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
3053 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
3054 0208f208 2020-05-05 stsp {
3055 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
3056 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3057 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3058 0208f208 2020-05-05 stsp struct got_object_qid *qid;
3059 0208f208 2020-05-05 stsp
3060 0208f208 2020-05-05 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3061 0208f208 2020-05-05 stsp if (qid != NULL) {
3062 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
3063 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
3064 0208f208 2020-05-05 stsp qid->id);
3065 0208f208 2020-05-05 stsp if (err)
3066 0208f208 2020-05-05 stsp return err;
3067 0208f208 2020-05-05 stsp
3068 0208f208 2020-05-05 stsp tree_id1 = got_object_commit_get_tree_id(pcommit);
3069 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
3070 0208f208 2020-05-05 stsp
3071 0208f208 2020-05-05 stsp }
3072 0208f208 2020-05-05 stsp
3073 0208f208 2020-05-05 stsp if (tree_id1) {
3074 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
3075 0208f208 2020-05-05 stsp if (err)
3076 0208f208 2020-05-05 stsp goto done;
3077 0208f208 2020-05-05 stsp }
3078 0208f208 2020-05-05 stsp
3079 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
3080 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
3081 0208f208 2020-05-05 stsp if (err)
3082 0208f208 2020-05-05 stsp goto done;
3083 0208f208 2020-05-05 stsp
3084 0208f208 2020-05-05 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
3085 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
3086 0208f208 2020-05-05 stsp done:
3087 0208f208 2020-05-05 stsp if (tree1)
3088 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
3089 0208f208 2020-05-05 stsp if (tree2)
3090 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
3091 0208f208 2020-05-05 stsp return err;
3092 0208f208 2020-05-05 stsp }
3093 0208f208 2020-05-05 stsp
3094 0208f208 2020-05-05 stsp static const struct got_error *
3095 fe621944 2020-11-10 stsp add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
3096 abd2672a 2018-12-23 stsp {
3097 fe621944 2020-11-10 stsp off_t *p;
3098 fe621944 2020-11-10 stsp
3099 fe621944 2020-11-10 stsp p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
3100 fe621944 2020-11-10 stsp if (p == NULL)
3101 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
3102 fe621944 2020-11-10 stsp *line_offsets = p;
3103 fe621944 2020-11-10 stsp (*line_offsets)[*nlines] = off;
3104 fe621944 2020-11-10 stsp (*nlines)++;
3105 fe621944 2020-11-10 stsp return NULL;
3106 fe621944 2020-11-10 stsp }
3107 fe621944 2020-11-10 stsp
3108 fe621944 2020-11-10 stsp static const struct got_error *
3109 fe621944 2020-11-10 stsp write_commit_info(off_t **line_offsets, size_t *nlines,
3110 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
3111 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
3112 fe621944 2020-11-10 stsp {
3113 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
3114 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
3115 15a94983 2018-12-23 stsp struct got_commit_object *commit;
3116 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
3117 45d799e2 2018-12-23 stsp time_t committer_time;
3118 45d799e2 2018-12-23 stsp const char *author, *committer;
3119 8b473291 2019-02-21 stsp char *refs_str = NULL;
3120 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
3121 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
3122 fe621944 2020-11-10 stsp off_t outoff = 0;
3123 fe621944 2020-11-10 stsp int n;
3124 abd2672a 2018-12-23 stsp
3125 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
3126 0208f208 2020-05-05 stsp
3127 8b473291 2019-02-21 stsp if (refs) {
3128 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
3129 8b473291 2019-02-21 stsp if (err)
3130 8b473291 2019-02-21 stsp return err;
3131 8b473291 2019-02-21 stsp }
3132 8b473291 2019-02-21 stsp
3133 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
3134 abd2672a 2018-12-23 stsp if (err)
3135 abd2672a 2018-12-23 stsp return err;
3136 abd2672a 2018-12-23 stsp
3137 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
3138 15a94983 2018-12-23 stsp if (err) {
3139 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
3140 15a94983 2018-12-23 stsp goto done;
3141 15a94983 2018-12-23 stsp }
3142 abd2672a 2018-12-23 stsp
3143 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, 0);
3144 fe621944 2020-11-10 stsp if (err)
3145 fe621944 2020-11-10 stsp goto done;
3146 fe621944 2020-11-10 stsp
3147 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
3148 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
3149 fe621944 2020-11-10 stsp if (n < 0) {
3150 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
3151 abd2672a 2018-12-23 stsp goto done;
3152 abd2672a 2018-12-23 stsp }
3153 fe621944 2020-11-10 stsp outoff += n;
3154 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3155 fe621944 2020-11-10 stsp if (err)
3156 fe621944 2020-11-10 stsp goto done;
3157 fe621944 2020-11-10 stsp
3158 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
3159 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
3160 fe621944 2020-11-10 stsp if (n < 0) {
3161 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
3162 abd2672a 2018-12-23 stsp goto done;
3163 abd2672a 2018-12-23 stsp }
3164 fe621944 2020-11-10 stsp outoff += n;
3165 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3166 fe621944 2020-11-10 stsp if (err)
3167 fe621944 2020-11-10 stsp goto done;
3168 fe621944 2020-11-10 stsp
3169 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
3170 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
3171 fe621944 2020-11-10 stsp if (datestr) {
3172 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
3173 fe621944 2020-11-10 stsp if (n < 0) {
3174 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3175 fe621944 2020-11-10 stsp goto done;
3176 fe621944 2020-11-10 stsp }
3177 fe621944 2020-11-10 stsp outoff += n;
3178 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3179 fe621944 2020-11-10 stsp if (err)
3180 fe621944 2020-11-10 stsp goto done;
3181 abd2672a 2018-12-23 stsp }
3182 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
3183 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
3184 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
3185 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
3186 fe621944 2020-11-10 stsp if (n < 0) {
3187 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3188 fe621944 2020-11-10 stsp goto done;
3189 fe621944 2020-11-10 stsp }
3190 fe621944 2020-11-10 stsp outoff += n;
3191 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3192 fe621944 2020-11-10 stsp if (err)
3193 fe621944 2020-11-10 stsp goto done;
3194 abd2672a 2018-12-23 stsp }
3195 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
3196 5943eee2 2019-08-13 stsp if (err)
3197 5943eee2 2019-08-13 stsp goto done;
3198 fe621944 2020-11-10 stsp s = logmsg;
3199 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
3200 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
3201 fe621944 2020-11-10 stsp if (n < 0) {
3202 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3203 fe621944 2020-11-10 stsp goto done;
3204 fe621944 2020-11-10 stsp }
3205 fe621944 2020-11-10 stsp outoff += n;
3206 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3207 fe621944 2020-11-10 stsp if (err)
3208 fe621944 2020-11-10 stsp goto done;
3209 abd2672a 2018-12-23 stsp }
3210 fe621944 2020-11-10 stsp
3211 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
3212 0208f208 2020-05-05 stsp if (err)
3213 0208f208 2020-05-05 stsp goto done;
3214 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
3215 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
3216 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
3217 fe621944 2020-11-10 stsp if (n < 0) {
3218 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3219 fe621944 2020-11-10 stsp goto done;
3220 fe621944 2020-11-10 stsp }
3221 fe621944 2020-11-10 stsp outoff += n;
3222 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3223 fe621944 2020-11-10 stsp if (err)
3224 fe621944 2020-11-10 stsp goto done;
3225 0208f208 2020-05-05 stsp free((char *)pe->path);
3226 0208f208 2020-05-05 stsp free(pe->data);
3227 0208f208 2020-05-05 stsp }
3228 fe621944 2020-11-10 stsp
3229 0208f208 2020-05-05 stsp fputc('\n', outfile);
3230 fe621944 2020-11-10 stsp outoff++;
3231 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3232 abd2672a 2018-12-23 stsp done:
3233 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
3234 abd2672a 2018-12-23 stsp free(id_str);
3235 5943eee2 2019-08-13 stsp free(logmsg);
3236 8b473291 2019-02-21 stsp free(refs_str);
3237 15a94983 2018-12-23 stsp got_object_commit_close(commit);
3238 7510f233 2020-08-09 stsp if (err) {
3239 ae6a6978 2020-08-09 stsp free(*line_offsets);
3240 ae6a6978 2020-08-09 stsp *line_offsets = NULL;
3241 ae6a6978 2020-08-09 stsp *nlines = 0;
3242 7510f233 2020-08-09 stsp }
3243 fe621944 2020-11-10 stsp return err;
3244 abd2672a 2018-12-23 stsp }
3245 abd2672a 2018-12-23 stsp
3246 abd2672a 2018-12-23 stsp static const struct got_error *
3247 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
3248 26ed57b2 2018-05-19 stsp {
3249 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
3250 48ae06ee 2018-10-18 stsp FILE *f = NULL;
3251 15a94983 2018-12-23 stsp int obj_type;
3252 fe621944 2020-11-10 stsp
3253 fe621944 2020-11-10 stsp free(s->line_offsets);
3254 fe621944 2020-11-10 stsp s->line_offsets = malloc(sizeof(off_t));
3255 fe621944 2020-11-10 stsp if (s->line_offsets == NULL)
3256 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
3257 fe621944 2020-11-10 stsp s->nlines = 0;
3258 26ed57b2 2018-05-19 stsp
3259 511a516b 2018-05-19 stsp f = got_opentemp();
3260 48ae06ee 2018-10-18 stsp if (f == NULL) {
3261 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
3262 48ae06ee 2018-10-18 stsp goto done;
3263 48ae06ee 2018-10-18 stsp }
3264 fb43ecf1 2019-02-11 stsp if (s->f && fclose(s->f) != 0) {
3265 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3266 fb43ecf1 2019-02-11 stsp goto done;
3267 fb43ecf1 2019-02-11 stsp }
3268 48ae06ee 2018-10-18 stsp s->f = f;
3269 26ed57b2 2018-05-19 stsp
3270 15a94983 2018-12-23 stsp if (s->id1)
3271 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
3272 15a94983 2018-12-23 stsp else
3273 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
3274 15a94983 2018-12-23 stsp if (err)
3275 15a94983 2018-12-23 stsp goto done;
3276 15a94983 2018-12-23 stsp
3277 15a94983 2018-12-23 stsp switch (obj_type) {
3278 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
3279 fe621944 2020-11-10 stsp err = got_diff_objects_as_blobs(&s->line_offsets, &s->nlines,
3280 3dbaef42 2020-11-24 stsp s->id1, s->id2, s->label1, s->label2, s->diff_context,
3281 3dbaef42 2020-11-24 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
3282 26ed57b2 2018-05-19 stsp break;
3283 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
3284 fe621944 2020-11-10 stsp err = got_diff_objects_as_trees(&s->line_offsets, &s->nlines,
3285 3dbaef42 2020-11-24 stsp s->id1, s->id2, "", "", s->diff_context,
3286 3dbaef42 2020-11-24 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
3287 26ed57b2 2018-05-19 stsp break;
3288 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
3289 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
3290 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
3291 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
3292 abd2672a 2018-12-23 stsp
3293 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
3294 abd2672a 2018-12-23 stsp if (err)
3295 3ffacbe1 2020-02-02 tracey goto done;
3296 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
3297 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
3298 fe621944 2020-11-10 stsp err = write_commit_info(&s->line_offsets, &s->nlines,
3299 78756c87 2020-11-24 stsp s->id2, &s->refs, s->repo, s->f);
3300 f44b1f58 2020-02-02 tracey if (err)
3301 f44b1f58 2020-02-02 tracey goto done;
3302 f44b1f58 2020-02-02 tracey } else {
3303 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
3304 15a087fe 2019-02-21 stsp SIMPLEQ_FOREACH(pid, parent_ids, entry) {
3305 15a087fe 2019-02-21 stsp if (got_object_id_cmp(s->id1, pid->id) == 0) {
3306 fe621944 2020-11-10 stsp err = write_commit_info(
3307 fe621944 2020-11-10 stsp &s->line_offsets, &s->nlines,
3308 78756c87 2020-11-24 stsp s->id2, &s->refs, s->repo, s->f);
3309 f44b1f58 2020-02-02 tracey if (err)
3310 f44b1f58 2020-02-02 tracey goto done;
3311 f5404e4e 2020-02-02 tracey break;
3312 15a087fe 2019-02-21 stsp }
3313 abd2672a 2018-12-23 stsp }
3314 abd2672a 2018-12-23 stsp }
3315 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
3316 abd2672a 2018-12-23 stsp
3317 fe621944 2020-11-10 stsp err = got_diff_objects_as_commits(&s->line_offsets, &s->nlines,
3318 3dbaef42 2020-11-24 stsp s->id1, s->id2, s->diff_context, s->ignore_whitespace,
3319 3dbaef42 2020-11-24 stsp s->force_text_diff, s->repo, s->f);
3320 26ed57b2 2018-05-19 stsp break;
3321 abd2672a 2018-12-23 stsp }
3322 26ed57b2 2018-05-19 stsp default:
3323 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
3324 48ae06ee 2018-10-18 stsp break;
3325 26ed57b2 2018-05-19 stsp }
3326 f44b1f58 2020-02-02 tracey if (err)
3327 f44b1f58 2020-02-02 tracey goto done;
3328 48ae06ee 2018-10-18 stsp done:
3329 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
3330 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
3331 48ae06ee 2018-10-18 stsp return err;
3332 48ae06ee 2018-10-18 stsp }
3333 26ed57b2 2018-05-19 stsp
3334 f5215bb9 2019-02-22 stsp static void
3335 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
3336 f5215bb9 2019-02-22 stsp {
3337 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
3338 f5215bb9 2019-02-22 stsp update_panels();
3339 f5215bb9 2019-02-22 stsp doupdate();
3340 f44b1f58 2020-02-02 tracey }
3341 f44b1f58 2020-02-02 tracey
3342 f44b1f58 2020-02-02 tracey static const struct got_error *
3343 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
3344 f44b1f58 2020-02-02 tracey {
3345 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
3346 f44b1f58 2020-02-02 tracey
3347 f44b1f58 2020-02-02 tracey s->matched_line = 0;
3348 f44b1f58 2020-02-02 tracey return NULL;
3349 f44b1f58 2020-02-02 tracey }
3350 f44b1f58 2020-02-02 tracey
3351 f44b1f58 2020-02-02 tracey static const struct got_error *
3352 f44b1f58 2020-02-02 tracey search_next_diff_view(struct tog_view *view)
3353 f44b1f58 2020-02-02 tracey {
3354 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
3355 f44b1f58 2020-02-02 tracey int lineno;
3356 f44b1f58 2020-02-02 tracey
3357 f44b1f58 2020-02-02 tracey if (!view->searching) {
3358 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3359 f44b1f58 2020-02-02 tracey return NULL;
3360 f44b1f58 2020-02-02 tracey }
3361 f44b1f58 2020-02-02 tracey
3362 f44b1f58 2020-02-02 tracey if (s->matched_line) {
3363 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3364 f44b1f58 2020-02-02 tracey lineno = s->matched_line + 1;
3365 f44b1f58 2020-02-02 tracey else
3366 f44b1f58 2020-02-02 tracey lineno = s->matched_line - 1;
3367 f44b1f58 2020-02-02 tracey } else {
3368 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3369 f44b1f58 2020-02-02 tracey lineno = 1;
3370 f44b1f58 2020-02-02 tracey else
3371 f44b1f58 2020-02-02 tracey lineno = s->nlines;
3372 f44b1f58 2020-02-02 tracey }
3373 f44b1f58 2020-02-02 tracey
3374 f44b1f58 2020-02-02 tracey while (1) {
3375 f44b1f58 2020-02-02 tracey char *line = NULL;
3376 f44b1f58 2020-02-02 tracey off_t offset;
3377 f44b1f58 2020-02-02 tracey size_t len;
3378 f44b1f58 2020-02-02 tracey
3379 f44b1f58 2020-02-02 tracey if (lineno <= 0 || lineno > s->nlines) {
3380 f44b1f58 2020-02-02 tracey if (s->matched_line == 0) {
3381 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3382 f44b1f58 2020-02-02 tracey free(line);
3383 f44b1f58 2020-02-02 tracey break;
3384 f44b1f58 2020-02-02 tracey }
3385 f44b1f58 2020-02-02 tracey
3386 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3387 f44b1f58 2020-02-02 tracey lineno = 1;
3388 f44b1f58 2020-02-02 tracey else
3389 f44b1f58 2020-02-02 tracey lineno = s->nlines;
3390 f44b1f58 2020-02-02 tracey }
3391 f44b1f58 2020-02-02 tracey
3392 f44b1f58 2020-02-02 tracey offset = s->line_offsets[lineno - 1];
3393 f44b1f58 2020-02-02 tracey if (fseeko(s->f, offset, SEEK_SET) != 0) {
3394 f44b1f58 2020-02-02 tracey free(line);
3395 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
3396 f44b1f58 2020-02-02 tracey }
3397 f44b1f58 2020-02-02 tracey free(line);
3398 f44b1f58 2020-02-02 tracey line = parse_next_line(s->f, &len);
3399 41605754 2020-11-12 stsp if (line &&
3400 41605754 2020-11-12 stsp match_line(line, &view->regex, 1, &view->regmatch)) {
3401 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3402 f44b1f58 2020-02-02 tracey s->matched_line = lineno;
3403 f44b1f58 2020-02-02 tracey free(line);
3404 f44b1f58 2020-02-02 tracey break;
3405 f44b1f58 2020-02-02 tracey }
3406 f44b1f58 2020-02-02 tracey free(line);
3407 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3408 f44b1f58 2020-02-02 tracey lineno++;
3409 f44b1f58 2020-02-02 tracey else
3410 f44b1f58 2020-02-02 tracey lineno--;
3411 f44b1f58 2020-02-02 tracey }
3412 f44b1f58 2020-02-02 tracey
3413 f44b1f58 2020-02-02 tracey if (s->matched_line) {
3414 f44b1f58 2020-02-02 tracey s->first_displayed_line = s->matched_line;
3415 f44b1f58 2020-02-02 tracey s->selected_line = 1;
3416 f44b1f58 2020-02-02 tracey }
3417 f44b1f58 2020-02-02 tracey
3418 f44b1f58 2020-02-02 tracey return NULL;
3419 f5215bb9 2019-02-22 stsp }
3420 f5215bb9 2019-02-22 stsp
3421 48ae06ee 2018-10-18 stsp static const struct got_error *
3422 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
3423 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
3424 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
3425 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
3426 48ae06ee 2018-10-18 stsp {
3427 48ae06ee 2018-10-18 stsp const struct got_error *err;
3428 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
3429 5dc9f4bc 2018-08-04 stsp
3430 78756c87 2020-11-24 stsp SIMPLEQ_INIT(&s->refs);
3431 78756c87 2020-11-24 stsp
3432 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
3433 15a94983 2018-12-23 stsp int type1, type2;
3434 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
3435 15a94983 2018-12-23 stsp if (err)
3436 15a94983 2018-12-23 stsp return err;
3437 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
3438 15a94983 2018-12-23 stsp if (err)
3439 15a94983 2018-12-23 stsp return err;
3440 15a94983 2018-12-23 stsp
3441 15a94983 2018-12-23 stsp if (type1 != type2)
3442 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
3443 15a94983 2018-12-23 stsp }
3444 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
3445 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
3446 f44b1f58 2020-02-02 tracey s->selected_line = 1;
3447 f44b1f58 2020-02-02 tracey s->repo = repo;
3448 f44b1f58 2020-02-02 tracey s->id1 = id1;
3449 f44b1f58 2020-02-02 tracey s->id2 = id2;
3450 3dbaef42 2020-11-24 stsp s->label1 = label1;
3451 3dbaef42 2020-11-24 stsp s->label2 = label2;
3452 48ae06ee 2018-10-18 stsp
3453 15a94983 2018-12-23 stsp if (id1) {
3454 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
3455 5465d566 2020-02-01 tracey if (s->id1 == NULL)
3456 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
3457 48ae06ee 2018-10-18 stsp } else
3458 5465d566 2020-02-01 tracey s->id1 = NULL;
3459 48ae06ee 2018-10-18 stsp
3460 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
3461 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
3462 5465d566 2020-02-01 tracey free(s->id1);
3463 5465d566 2020-02-01 tracey s->id1 = NULL;
3464 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
3465 48ae06ee 2018-10-18 stsp }
3466 5465d566 2020-02-01 tracey s->f = NULL;
3467 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
3468 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
3469 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
3470 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
3471 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
3472 5465d566 2020-02-01 tracey s->log_view = log_view;
3473 5465d566 2020-02-01 tracey s->repo = repo;
3474 6d17833f 2019-11-08 stsp
3475 f44b1f58 2020-02-02 tracey SIMPLEQ_INIT(&s->colors);
3476 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3477 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3478 11b20872 2019-11-08 stsp "^-", TOG_COLOR_DIFF_MINUS,
3479 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_MINUS"));
3480 6d17833f 2019-11-08 stsp if (err)
3481 6d17833f 2019-11-08 stsp return err;
3482 5465d566 2020-02-01 tracey err = add_color(&s->colors, "^\\+",
3483 11b20872 2019-11-08 stsp TOG_COLOR_DIFF_PLUS,
3484 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_PLUS"));
3485 6d17833f 2019-11-08 stsp if (err) {
3486 5465d566 2020-02-01 tracey free_colors(&s->colors);
3487 6d17833f 2019-11-08 stsp return err;
3488 6d17833f 2019-11-08 stsp }
3489 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3490 11b20872 2019-11-08 stsp "^@@", TOG_COLOR_DIFF_CHUNK_HEADER,
3491 6d17833f 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"));
3492 6d17833f 2019-11-08 stsp if (err) {
3493 5465d566 2020-02-01 tracey free_colors(&s->colors);
3494 6d17833f 2019-11-08 stsp return err;
3495 6d17833f 2019-11-08 stsp }
3496 6d17833f 2019-11-08 stsp
3497 f44b1f58 2020-02-02 tracey err = add_color(&s->colors,
3498 528c17dd 2020-07-31 stsp "^(commit [0-9a-f]|(blob|file) [-+] |[MDmA] [^ ])",
3499 0208f208 2020-05-05 stsp TOG_COLOR_DIFF_META,
3500 6d17833f 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_META"));
3501 6d17833f 2019-11-08 stsp if (err) {
3502 5465d566 2020-02-01 tracey free_colors(&s->colors);
3503 6d17833f 2019-11-08 stsp return err;
3504 6d17833f 2019-11-08 stsp }
3505 11b20872 2019-11-08 stsp
3506 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3507 11b20872 2019-11-08 stsp "^(from|via): ", TOG_COLOR_AUTHOR,
3508 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3509 11b20872 2019-11-08 stsp if (err) {
3510 5465d566 2020-02-01 tracey free_colors(&s->colors);
3511 11b20872 2019-11-08 stsp return err;
3512 11b20872 2019-11-08 stsp }
3513 11b20872 2019-11-08 stsp
3514 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3515 11b20872 2019-11-08 stsp "^date: ", TOG_COLOR_DATE,
3516 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3517 11b20872 2019-11-08 stsp if (err) {
3518 5465d566 2020-02-01 tracey free_colors(&s->colors);
3519 11b20872 2019-11-08 stsp return err;
3520 11b20872 2019-11-08 stsp }
3521 6d17833f 2019-11-08 stsp }
3522 5dc9f4bc 2018-08-04 stsp
3523 78756c87 2020-11-24 stsp err = got_ref_list(&s->refs, repo, NULL, got_ref_cmp_by_name, NULL);
3524 78756c87 2020-11-24 stsp if (err) {
3525 78756c87 2020-11-24 stsp free(s->id1);
3526 78756c87 2020-11-24 stsp s->id1 = NULL;
3527 78756c87 2020-11-24 stsp free(s->id2);
3528 78756c87 2020-11-24 stsp s->id2 = NULL;
3529 78756c87 2020-11-24 stsp free_colors(&s->colors);
3530 78756c87 2020-11-24 stsp return err;
3531 78756c87 2020-11-24 stsp }
3532 78756c87 2020-11-24 stsp
3533 f5215bb9 2019-02-22 stsp if (log_view && view_is_splitscreen(view))
3534 f5215bb9 2019-02-22 stsp show_log_view(log_view); /* draw vborder */
3535 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
3536 f5215bb9 2019-02-22 stsp
3537 fe621944 2020-11-10 stsp s->line_offsets = NULL;
3538 fe621944 2020-11-10 stsp s->nlines = 0;
3539 5465d566 2020-02-01 tracey err = create_diff(s);
3540 48ae06ee 2018-10-18 stsp if (err) {
3541 5465d566 2020-02-01 tracey free(s->id1);
3542 5465d566 2020-02-01 tracey s->id1 = NULL;
3543 5465d566 2020-02-01 tracey free(s->id2);
3544 5465d566 2020-02-01 tracey s->id2 = NULL;
3545 78756c87 2020-11-24 stsp free_colors(&s->colors);
3546 78756c87 2020-11-24 stsp got_ref_list_free(&s->refs);
3547 48ae06ee 2018-10-18 stsp return err;
3548 48ae06ee 2018-10-18 stsp }
3549 48ae06ee 2018-10-18 stsp
3550 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
3551 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
3552 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
3553 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
3554 f44b1f58 2020-02-02 tracey view->search_next = search_next_diff_view;
3555 e5a0f69f 2018-08-18 stsp
3556 5dc9f4bc 2018-08-04 stsp return NULL;
3557 5dc9f4bc 2018-08-04 stsp }
3558 5dc9f4bc 2018-08-04 stsp
3559 e5a0f69f 2018-08-18 stsp static const struct got_error *
3560 5dc9f4bc 2018-08-04 stsp close_diff_view(struct tog_view *view)
3561 5dc9f4bc 2018-08-04 stsp {
3562 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3563 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
3564 5465d566 2020-02-01 tracey
3565 5465d566 2020-02-01 tracey free(s->id1);
3566 5465d566 2020-02-01 tracey s->id1 = NULL;
3567 5465d566 2020-02-01 tracey free(s->id2);
3568 5465d566 2020-02-01 tracey s->id2 = NULL;
3569 5465d566 2020-02-01 tracey if (s->f && fclose(s->f) == EOF)
3570 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3571 5465d566 2020-02-01 tracey free_colors(&s->colors);
3572 f44b1f58 2020-02-02 tracey free(s->line_offsets);
3573 fe621944 2020-11-10 stsp s->line_offsets = NULL;
3574 fe621944 2020-11-10 stsp s->nlines = 0;
3575 78756c87 2020-11-24 stsp got_ref_list_free(&s->refs);
3576 e5a0f69f 2018-08-18 stsp return err;
3577 5dc9f4bc 2018-08-04 stsp }
3578 5dc9f4bc 2018-08-04 stsp
3579 5dc9f4bc 2018-08-04 stsp static const struct got_error *
3580 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
3581 5dc9f4bc 2018-08-04 stsp {
3582 a3404814 2018-09-02 stsp const struct got_error *err;
3583 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
3584 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
3585 3dbaef42 2020-11-24 stsp const char *label1, *label2;
3586 a3404814 2018-09-02 stsp
3587 a3404814 2018-09-02 stsp if (s->id1) {
3588 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
3589 a3404814 2018-09-02 stsp if (err)
3590 a3404814 2018-09-02 stsp return err;
3591 3dbaef42 2020-11-24 stsp label1 = s->label1 ? : id_str1;
3592 3dbaef42 2020-11-24 stsp } else
3593 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
3594 3dbaef42 2020-11-24 stsp
3595 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
3596 a3404814 2018-09-02 stsp if (err)
3597 a3404814 2018-09-02 stsp return err;
3598 3dbaef42 2020-11-24 stsp label2 = s->label2 ? : id_str2;
3599 26ed57b2 2018-05-19 stsp
3600 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
3601 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3602 a3404814 2018-09-02 stsp free(id_str1);
3603 a3404814 2018-09-02 stsp free(id_str2);
3604 a3404814 2018-09-02 stsp return err;
3605 a3404814 2018-09-02 stsp }
3606 a3404814 2018-09-02 stsp free(id_str1);
3607 a3404814 2018-09-02 stsp free(id_str2);
3608 a3404814 2018-09-02 stsp
3609 fe621944 2020-11-10 stsp return draw_file(view, s->f, s->first_displayed_line, s->nlines,
3610 fe621944 2020-11-10 stsp s->line_offsets, s->selected_line, view->nlines,
3611 41605754 2020-11-12 stsp &s->last_displayed_line, &s->eof, header, &s->colors,
3612 41605754 2020-11-12 stsp s->matched_line, &view->regmatch);
3613 15a087fe 2019-02-21 stsp }
3614 15a087fe 2019-02-21 stsp
3615 15a087fe 2019-02-21 stsp static const struct got_error *
3616 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
3617 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
3618 15a087fe 2019-02-21 stsp {
3619 d7a04538 2019-02-21 stsp const struct got_error *err;
3620 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
3621 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
3622 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
3623 15a087fe 2019-02-21 stsp
3624 15a087fe 2019-02-21 stsp free(s->id2);
3625 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
3626 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
3627 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
3628 15a087fe 2019-02-21 stsp
3629 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
3630 d7a04538 2019-02-21 stsp if (err)
3631 d7a04538 2019-02-21 stsp return err;
3632 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
3633 15a087fe 2019-02-21 stsp free(s->id1);
3634 d7a04538 2019-02-21 stsp pid = SIMPLEQ_FIRST(parent_ids);
3635 d7a04538 2019-02-21 stsp s->id1 = pid ? got_object_id_dup(pid->id) : NULL;
3636 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
3637 15a087fe 2019-02-21 stsp return NULL;
3638 0cf4efb1 2018-09-29 stsp }
3639 0cf4efb1 2018-09-29 stsp
3640 0cf4efb1 2018-09-29 stsp static const struct got_error *
3641 bcbd79e2 2018-08-19 stsp input_diff_view(struct tog_view **new_view, struct tog_view **dead_view,
3642 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
3643 e5a0f69f 2018-08-18 stsp {
3644 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
3645 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
3646 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
3647 fb872ab2 2019-02-21 stsp struct commit_queue_entry *entry;
3648 e5a0f69f 2018-08-18 stsp int i;
3649 e5a0f69f 2018-08-18 stsp
3650 e5a0f69f 2018-08-18 stsp switch (ch) {
3651 64453f7e 2020-11-21 stsp case 'a':
3652 3dbaef42 2020-11-24 stsp case 'w':
3653 3dbaef42 2020-11-24 stsp if (ch == 'a')
3654 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
3655 3dbaef42 2020-11-24 stsp if (ch == 'w')
3656 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
3657 64453f7e 2020-11-21 stsp wclear(view->window);
3658 64453f7e 2020-11-21 stsp s->first_displayed_line = 1;
3659 64453f7e 2020-11-21 stsp s->last_displayed_line = view->nlines;
3660 64453f7e 2020-11-21 stsp diff_view_indicate_progress(view);
3661 64453f7e 2020-11-21 stsp err = create_diff(s);
3662 64453f7e 2020-11-21 stsp break;
3663 1e37a5c2 2019-05-12 jcs case 'k':
3664 1e37a5c2 2019-05-12 jcs case KEY_UP:
3665 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
3666 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
3667 1e37a5c2 2019-05-12 jcs break;
3668 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3669 a60a9dc4 2019-05-13 jcs case CTRL('b'):
3670 00ba99a7 2019-05-12 jcs if (s->first_displayed_line == 1)
3671 26ed57b2 2018-05-19 stsp break;
3672 1e37a5c2 2019-05-12 jcs i = 0;
3673 1e37a5c2 2019-05-12 jcs while (i++ < view->nlines - 1 &&
3674 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
3675 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
3676 1e37a5c2 2019-05-12 jcs break;
3677 1e37a5c2 2019-05-12 jcs case 'j':
3678 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3679 1e37a5c2 2019-05-12 jcs if (!s->eof)
3680 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
3681 1e37a5c2 2019-05-12 jcs break;
3682 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
3683 a60a9dc4 2019-05-13 jcs case CTRL('f'):
3684 1e37a5c2 2019-05-12 jcs case ' ':
3685 00ba99a7 2019-05-12 jcs if (s->eof)
3686 1e37a5c2 2019-05-12 jcs break;
3687 1e37a5c2 2019-05-12 jcs i = 0;
3688 1e37a5c2 2019-05-12 jcs while (!s->eof && i++ < view->nlines - 1) {
3689 1e37a5c2 2019-05-12 jcs char *line;
3690 1e37a5c2 2019-05-12 jcs line = parse_next_line(s->f, NULL);
3691 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
3692 1e37a5c2 2019-05-12 jcs if (line == NULL)
3693 34bc9ec9 2019-02-22 stsp break;
3694 1e37a5c2 2019-05-12 jcs }
3695 1e37a5c2 2019-05-12 jcs break;
3696 1e37a5c2 2019-05-12 jcs case '[':
3697 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
3698 1e37a5c2 2019-05-12 jcs s->diff_context--;
3699 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3700 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3701 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
3702 27829c9e 2020-11-21 stsp s->nlines) {
3703 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
3704 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
3705 27829c9e 2020-11-21 stsp }
3706 1e37a5c2 2019-05-12 jcs }
3707 1e37a5c2 2019-05-12 jcs break;
3708 1e37a5c2 2019-05-12 jcs case ']':
3709 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
3710 1e37a5c2 2019-05-12 jcs s->diff_context++;
3711 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3712 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3713 1e37a5c2 2019-05-12 jcs }
3714 1e37a5c2 2019-05-12 jcs break;
3715 1e37a5c2 2019-05-12 jcs case '<':
3716 1e37a5c2 2019-05-12 jcs case ',':
3717 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
3718 48ae06ee 2018-10-18 stsp break;
3719 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
3720 1e37a5c2 2019-05-12 jcs entry = TAILQ_PREV(ls->selected_entry,
3721 1e37a5c2 2019-05-12 jcs commit_queue_head, entry);
3722 1e37a5c2 2019-05-12 jcs if (entry == NULL)
3723 48ae06ee 2018-10-18 stsp break;
3724 6524637e 2019-02-21 stsp
3725 1e37a5c2 2019-05-12 jcs err = input_log_view(NULL, NULL, NULL, s->log_view,
3726 1e37a5c2 2019-05-12 jcs KEY_UP);
3727 1e37a5c2 2019-05-12 jcs if (err)
3728 1e37a5c2 2019-05-12 jcs break;
3729 15a087fe 2019-02-21 stsp
3730 1e37a5c2 2019-05-12 jcs err = set_selected_commit(s, entry);
3731 1e37a5c2 2019-05-12 jcs if (err)
3732 1e37a5c2 2019-05-12 jcs break;
3733 15a087fe 2019-02-21 stsp
3734 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
3735 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
3736 15a087fe 2019-02-21 stsp
3737 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3738 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3739 1e37a5c2 2019-05-12 jcs break;
3740 1e37a5c2 2019-05-12 jcs case '>':
3741 1e37a5c2 2019-05-12 jcs case '.':
3742 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
3743 15a087fe 2019-02-21 stsp break;
3744 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
3745 5e224a3e 2019-02-22 stsp
3746 1e37a5c2 2019-05-12 jcs if (TAILQ_NEXT(ls->selected_entry, entry) == NULL) {
3747 1e37a5c2 2019-05-12 jcs ls->thread_args.commits_needed++;
3748 7c1452c1 2020-03-26 stsp err = trigger_log_thread(s->log_view, 1,
3749 1e37a5c2 2019-05-12 jcs &ls->thread_args.commits_needed,
3750 1e37a5c2 2019-05-12 jcs &ls->thread_args.log_complete,
3751 7c1452c1 2020-03-26 stsp &ls->thread_args.need_commits,
3752 7c1452c1 2020-03-26 stsp &ls->thread_args.commit_loaded);
3753 fb872ab2 2019-02-21 stsp if (err)
3754 fb872ab2 2019-02-21 stsp break;
3755 1e37a5c2 2019-05-12 jcs }
3756 1e37a5c2 2019-05-12 jcs err = input_log_view(NULL, NULL, NULL, s->log_view,
3757 1e37a5c2 2019-05-12 jcs KEY_DOWN);
3758 1e37a5c2 2019-05-12 jcs if (err)
3759 1e37a5c2 2019-05-12 jcs break;
3760 15a087fe 2019-02-21 stsp
3761 1e37a5c2 2019-05-12 jcs entry = TAILQ_NEXT(ls->selected_entry, entry);
3762 1e37a5c2 2019-05-12 jcs if (entry == NULL)
3763 1e37a5c2 2019-05-12 jcs break;
3764 15a087fe 2019-02-21 stsp
3765 1e37a5c2 2019-05-12 jcs err = set_selected_commit(s, entry);
3766 1e37a5c2 2019-05-12 jcs if (err)
3767 1e37a5c2 2019-05-12 jcs break;
3768 15a087fe 2019-02-21 stsp
3769 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
3770 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
3771 1e37a5c2 2019-05-12 jcs
3772 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3773 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3774 1e37a5c2 2019-05-12 jcs break;
3775 1e37a5c2 2019-05-12 jcs default:
3776 1e37a5c2 2019-05-12 jcs break;
3777 26ed57b2 2018-05-19 stsp }
3778 e5a0f69f 2018-08-18 stsp
3779 bcbd79e2 2018-08-19 stsp return err;
3780 26ed57b2 2018-05-19 stsp }
3781 26ed57b2 2018-05-19 stsp
3782 4ed7e80c 2018-05-20 stsp static const struct got_error *
3783 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
3784 9f7d7167 2018-04-29 stsp {
3785 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
3786 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
3787 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
3788 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
3789 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
3790 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
3791 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
3792 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
3793 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
3794 3dbaef42 2020-11-24 stsp const char *errstr;
3795 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
3796 70ac5f84 2019-03-28 stsp
3797 26ed57b2 2018-05-19 stsp #ifndef PROFILE
3798 eb6600df 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
3799 eb6600df 2019-01-04 stsp NULL) == -1)
3800 26ed57b2 2018-05-19 stsp err(1, "pledge");
3801 26ed57b2 2018-05-19 stsp #endif
3802 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
3803 26ed57b2 2018-05-19 stsp switch (ch) {
3804 64453f7e 2020-11-21 stsp case 'a':
3805 64453f7e 2020-11-21 stsp force_text_diff = 1;
3806 3dbaef42 2020-11-24 stsp break;
3807 3dbaef42 2020-11-24 stsp case 'C':
3808 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
3809 3dbaef42 2020-11-24 stsp &errstr);
3810 3dbaef42 2020-11-24 stsp if (errstr != NULL)
3811 3dbaef42 2020-11-24 stsp err(1, "-C option %s", errstr);
3812 64453f7e 2020-11-21 stsp break;
3813 09b5bff8 2020-02-23 naddy case 'r':
3814 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
3815 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
3816 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
3817 09b5bff8 2020-02-23 naddy optarg);
3818 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
3819 09b5bff8 2020-02-23 naddy break;
3820 3dbaef42 2020-11-24 stsp case 'w':
3821 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
3822 3dbaef42 2020-11-24 stsp break;
3823 26ed57b2 2018-05-19 stsp default:
3824 17020d27 2019-03-07 stsp usage_diff();
3825 26ed57b2 2018-05-19 stsp /* NOTREACHED */
3826 26ed57b2 2018-05-19 stsp }
3827 26ed57b2 2018-05-19 stsp }
3828 26ed57b2 2018-05-19 stsp
3829 26ed57b2 2018-05-19 stsp argc -= optind;
3830 26ed57b2 2018-05-19 stsp argv += optind;
3831 26ed57b2 2018-05-19 stsp
3832 26ed57b2 2018-05-19 stsp if (argc == 0) {
3833 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
3834 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
3835 15a94983 2018-12-23 stsp id_str1 = argv[0];
3836 15a94983 2018-12-23 stsp id_str2 = argv[1];
3837 26ed57b2 2018-05-19 stsp } else
3838 26ed57b2 2018-05-19 stsp usage_diff();
3839 a915003a 2019-02-05 stsp
3840 a273ac94 2020-02-23 naddy cwd = getcwd(NULL, 0);
3841 a273ac94 2020-02-23 naddy if (cwd == NULL)
3842 a273ac94 2020-02-23 naddy return got_error_from_errno("getcwd");
3843 eb6600df 2019-01-04 stsp
3844 a273ac94 2020-02-23 naddy error = got_worktree_open(&worktree, cwd);
3845 a273ac94 2020-02-23 naddy if (error && error->code != GOT_ERR_NOT_WORKTREE)
3846 a273ac94 2020-02-23 naddy goto done;
3847 a273ac94 2020-02-23 naddy
3848 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
3849 a273ac94 2020-02-23 naddy if (worktree)
3850 a273ac94 2020-02-23 naddy repo_path =
3851 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
3852 a273ac94 2020-02-23 naddy else
3853 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
3854 a273ac94 2020-02-23 naddy }
3855 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
3856 a273ac94 2020-02-23 naddy error = got_error_from_errno("strdup");
3857 a273ac94 2020-02-23 naddy goto done;
3858 a273ac94 2020-02-23 naddy }
3859 a273ac94 2020-02-23 naddy
3860 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3861 eb6600df 2019-01-04 stsp if (error)
3862 eb6600df 2019-01-04 stsp goto done;
3863 26ed57b2 2018-05-19 stsp
3864 a273ac94 2020-02-23 naddy init_curses();
3865 a273ac94 2020-02-23 naddy
3866 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
3867 26ed57b2 2018-05-19 stsp if (error)
3868 26ed57b2 2018-05-19 stsp goto done;
3869 26ed57b2 2018-05-19 stsp
3870 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
3871 3dbaef42 2020-11-24 stsp GOT_OBJ_TYPE_ANY, 1, repo);
3872 26ed57b2 2018-05-19 stsp if (error)
3873 26ed57b2 2018-05-19 stsp goto done;
3874 26ed57b2 2018-05-19 stsp
3875 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
3876 3dbaef42 2020-11-24 stsp GOT_OBJ_TYPE_ANY, 1, repo);
3877 26ed57b2 2018-05-19 stsp if (error)
3878 26ed57b2 2018-05-19 stsp goto done;
3879 26ed57b2 2018-05-19 stsp
3880 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
3881 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
3882 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3883 ea5e7bb5 2018-08-01 stsp goto done;
3884 ea5e7bb5 2018-08-01 stsp }
3885 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
3886 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
3887 5dc9f4bc 2018-08-04 stsp if (error)
3888 5dc9f4bc 2018-08-04 stsp goto done;
3889 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3890 26ed57b2 2018-05-19 stsp done:
3891 3dbaef42 2020-11-24 stsp free(label1);
3892 3dbaef42 2020-11-24 stsp free(label2);
3893 c02c541e 2019-03-29 stsp free(repo_path);
3894 a273ac94 2020-02-23 naddy free(cwd);
3895 921be706 2019-06-28 stsp if (repo)
3896 921be706 2019-06-28 stsp got_repo_close(repo);
3897 a273ac94 2020-02-23 naddy if (worktree)
3898 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
3899 26ed57b2 2018-05-19 stsp return error;
3900 9f7d7167 2018-04-29 stsp }
3901 9f7d7167 2018-04-29 stsp
3902 4ed7e80c 2018-05-20 stsp __dead static void
3903 9f7d7167 2018-04-29 stsp usage_blame(void)
3904 9f7d7167 2018-04-29 stsp {
3905 80ddbec8 2018-04-29 stsp endwin();
3906 69069811 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
3907 9f7d7167 2018-04-29 stsp getprogname());
3908 9f7d7167 2018-04-29 stsp exit(1);
3909 9f7d7167 2018-04-29 stsp }
3910 84451b3e 2018-07-10 stsp
3911 84451b3e 2018-07-10 stsp struct tog_blame_line {
3912 84451b3e 2018-07-10 stsp int annotated;
3913 84451b3e 2018-07-10 stsp struct got_object_id *id;
3914 84451b3e 2018-07-10 stsp };
3915 9f7d7167 2018-04-29 stsp
3916 4ed7e80c 2018-05-20 stsp static const struct got_error *
3917 f7d12f7e 2018-08-01 stsp draw_blame(struct tog_view *view, struct got_object_id *id, FILE *f,
3918 f7d12f7e 2018-08-01 stsp const char *path, struct tog_blame_line *lines, int nlines,
3919 f7d12f7e 2018-08-01 stsp int blame_complete, int selected_line, int *first_displayed_line,
3920 11b20872 2019-11-08 stsp int *last_displayed_line, int *eof, int max_lines,
3921 41605754 2020-11-12 stsp struct tog_colors *colors, int matched_line, regmatch_t *regmatch)
3922 84451b3e 2018-07-10 stsp {
3923 84451b3e 2018-07-10 stsp const struct got_error *err;
3924 84451b3e 2018-07-10 stsp int lineno = 0, nprinted = 0;
3925 84451b3e 2018-07-10 stsp char *line;
3926 84451b3e 2018-07-10 stsp size_t len;
3927 84451b3e 2018-07-10 stsp wchar_t *wline;
3928 27a741e5 2019-09-11 stsp int width;
3929 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
3930 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
3931 ab089a2a 2018-07-12 stsp char *id_str;
3932 11b20872 2019-11-08 stsp struct tog_color *tc;
3933 ab089a2a 2018-07-12 stsp
3934 ab089a2a 2018-07-12 stsp err = got_object_id_str(&id_str, id);
3935 ab089a2a 2018-07-12 stsp if (err)
3936 ab089a2a 2018-07-12 stsp return err;
3937 84451b3e 2018-07-10 stsp
3938 84451b3e 2018-07-10 stsp rewind(f);
3939 f7d12f7e 2018-08-01 stsp werase(view->window);
3940 84451b3e 2018-07-10 stsp
3941 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
3942 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3943 ab089a2a 2018-07-12 stsp free(id_str);
3944 ab089a2a 2018-07-12 stsp return err;
3945 ab089a2a 2018-07-12 stsp }
3946 ab089a2a 2018-07-12 stsp
3947 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3948 ab089a2a 2018-07-12 stsp free(line);
3949 2550e4c3 2018-07-13 stsp line = NULL;
3950 1cae65b4 2019-09-22 stsp if (err)
3951 1cae65b4 2019-09-22 stsp return err;
3952 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3953 a3404814 2018-09-02 stsp wstandout(view->window);
3954 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_COMMIT);
3955 11b20872 2019-11-08 stsp if (tc)
3956 11b20872 2019-11-08 stsp wattr_on(view->window,
3957 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3958 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3959 11b20872 2019-11-08 stsp if (tc)
3960 11b20872 2019-11-08 stsp wattr_off(view->window,
3961 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3962 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3963 a3404814 2018-09-02 stsp wstandend(view->window);
3964 2550e4c3 2018-07-13 stsp free(wline);
3965 2550e4c3 2018-07-13 stsp wline = NULL;
3966 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3967 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3968 ab089a2a 2018-07-12 stsp
3969 084063cd 2018-07-12 stsp if (asprintf(&line, "[%d/%d] %s%s",
3970 084063cd 2018-07-12 stsp *first_displayed_line - 1 + selected_line, nlines,
3971 512d0df1 2019-02-22 stsp blame_complete ? "" : "annotating... ", path) == -1) {
3972 ab089a2a 2018-07-12 stsp free(id_str);
3973 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3974 ab089a2a 2018-07-12 stsp }
3975 ab089a2a 2018-07-12 stsp free(id_str);
3976 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3977 3f60a8ef 2018-07-10 stsp free(line);
3978 2550e4c3 2018-07-13 stsp line = NULL;
3979 3f60a8ef 2018-07-10 stsp if (err)
3980 3f60a8ef 2018-07-10 stsp return err;
3981 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3982 2550e4c3 2018-07-13 stsp free(wline);
3983 2550e4c3 2018-07-13 stsp wline = NULL;
3984 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3985 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3986 3f60a8ef 2018-07-10 stsp
3987 84451b3e 2018-07-10 stsp *eof = 0;
3988 ab089a2a 2018-07-12 stsp while (nprinted < max_lines - 2) {
3989 84451b3e 2018-07-10 stsp line = parse_next_line(f, &len);
3990 84451b3e 2018-07-10 stsp if (line == NULL) {
3991 84451b3e 2018-07-10 stsp *eof = 1;
3992 84451b3e 2018-07-10 stsp break;
3993 84451b3e 2018-07-10 stsp }
3994 84451b3e 2018-07-10 stsp if (++lineno < *first_displayed_line) {
3995 84451b3e 2018-07-10 stsp free(line);
3996 84451b3e 2018-07-10 stsp continue;
3997 84451b3e 2018-07-10 stsp }
3998 84451b3e 2018-07-10 stsp
3999 0cf4efb1 2018-09-29 stsp if (view->focussed && nprinted == selected_line - 1)
4000 f7d12f7e 2018-08-01 stsp wstandout(view->window);
4001 b700b5d6 2018-07-10 stsp
4002 8d0fe45a 2019-08-12 stsp if (nlines > 0) {
4003 8d0fe45a 2019-08-12 stsp blame_line = &lines[lineno - 1];
4004 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
4005 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
4006 27a741e5 2019-09-11 stsp !(view->focussed &&
4007 27a741e5 2019-09-11 stsp nprinted == selected_line - 1)) {
4008 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
4009 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
4010 8d0fe45a 2019-08-12 stsp char *id_str;
4011 8d0fe45a 2019-08-12 stsp err = got_object_id_str(&id_str, blame_line->id);
4012 8d0fe45a 2019-08-12 stsp if (err) {
4013 8d0fe45a 2019-08-12 stsp free(line);
4014 8d0fe45a 2019-08-12 stsp return err;
4015 8d0fe45a 2019-08-12 stsp }
4016 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_COMMIT);
4017 11b20872 2019-11-08 stsp if (tc)
4018 11b20872 2019-11-08 stsp wattr_on(view->window,
4019 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4020 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
4021 11b20872 2019-11-08 stsp if (tc)
4022 11b20872 2019-11-08 stsp wattr_off(view->window,
4023 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4024 8d0fe45a 2019-08-12 stsp free(id_str);
4025 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
4026 8d0fe45a 2019-08-12 stsp } else {
4027 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
4028 8d0fe45a 2019-08-12 stsp prev_id = NULL;
4029 84451b3e 2018-07-10 stsp }
4030 ee41ec32 2018-07-10 stsp } else {
4031 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
4032 ee41ec32 2018-07-10 stsp prev_id = NULL;
4033 ee41ec32 2018-07-10 stsp }
4034 84451b3e 2018-07-10 stsp
4035 0cf4efb1 2018-09-29 stsp if (view->focussed && nprinted == selected_line - 1)
4036 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4037 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
4038 27a741e5 2019-09-11 stsp
4039 41605754 2020-11-12 stsp if (view->ncols <= 9) {
4040 41605754 2020-11-12 stsp width = 9;
4041 41605754 2020-11-12 stsp wline = wcsdup(L"");
4042 41605754 2020-11-12 stsp if (wline == NULL) {
4043 41605754 2020-11-12 stsp err = got_error_from_errno("wcsdup");
4044 41605754 2020-11-12 stsp free(line);
4045 41605754 2020-11-12 stsp return err;
4046 41605754 2020-11-12 stsp }
4047 41605754 2020-11-12 stsp } else if (*first_displayed_line + nprinted == matched_line &&
4048 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4049 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
4050 41605754 2020-11-12 stsp view->window, regmatch);
4051 41605754 2020-11-12 stsp if (err) {
4052 41605754 2020-11-12 stsp free(line);
4053 41605754 2020-11-12 stsp return err;
4054 41605754 2020-11-12 stsp }
4055 41605754 2020-11-12 stsp width += 9;
4056 41605754 2020-11-12 stsp } else {
4057 41605754 2020-11-12 stsp err = format_line(&wline, &width, line,
4058 41605754 2020-11-12 stsp view->ncols - 9, 9);
4059 41605754 2020-11-12 stsp waddwstr(view->window, wline);
4060 41605754 2020-11-12 stsp free(wline);
4061 41605754 2020-11-12 stsp wline = NULL;
4062 41605754 2020-11-12 stsp width += 9;
4063 41605754 2020-11-12 stsp }
4064 41605754 2020-11-12 stsp
4065 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
4066 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
4067 84451b3e 2018-07-10 stsp if (++nprinted == 1)
4068 84451b3e 2018-07-10 stsp *first_displayed_line = lineno;
4069 84451b3e 2018-07-10 stsp free(line);
4070 84451b3e 2018-07-10 stsp }
4071 84451b3e 2018-07-10 stsp *last_displayed_line = lineno;
4072 84451b3e 2018-07-10 stsp
4073 1a57306a 2018-09-02 stsp view_vborder(view);
4074 84451b3e 2018-07-10 stsp
4075 84451b3e 2018-07-10 stsp return NULL;
4076 84451b3e 2018-07-10 stsp }
4077 84451b3e 2018-07-10 stsp
4078 84451b3e 2018-07-10 stsp static const struct got_error *
4079 84451b3e 2018-07-10 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
4080 84451b3e 2018-07-10 stsp {
4081 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
4082 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
4083 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
4084 1a76625f 2018-10-22 stsp int errcode;
4085 84451b3e 2018-07-10 stsp
4086 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
4087 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
4088 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
4089 84451b3e 2018-07-10 stsp
4090 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4091 1a76625f 2018-10-22 stsp if (errcode)
4092 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
4093 84451b3e 2018-07-10 stsp
4094 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
4095 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
4096 d68a0a7d 2018-07-10 stsp goto done;
4097 d68a0a7d 2018-07-10 stsp }
4098 d68a0a7d 2018-07-10 stsp
4099 d68a0a7d 2018-07-10 stsp if (lineno == -1)
4100 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
4101 d68a0a7d 2018-07-10 stsp
4102 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
4103 d68a0a7d 2018-07-10 stsp if (line->annotated)
4104 d68a0a7d 2018-07-10 stsp goto done;
4105 d68a0a7d 2018-07-10 stsp
4106 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
4107 84451b3e 2018-07-10 stsp if (line->id == NULL) {
4108 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4109 84451b3e 2018-07-10 stsp goto done;
4110 84451b3e 2018-07-10 stsp }
4111 84451b3e 2018-07-10 stsp line->annotated = 1;
4112 84451b3e 2018-07-10 stsp done:
4113 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4114 1a76625f 2018-10-22 stsp if (errcode)
4115 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
4116 84451b3e 2018-07-10 stsp return err;
4117 84451b3e 2018-07-10 stsp }
4118 84451b3e 2018-07-10 stsp
4119 84451b3e 2018-07-10 stsp static void *
4120 84451b3e 2018-07-10 stsp blame_thread(void *arg)
4121 84451b3e 2018-07-10 stsp {
4122 18430de3 2018-07-10 stsp const struct got_error *err;
4123 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
4124 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
4125 1a76625f 2018-10-22 stsp int errcode;
4126 18430de3 2018-07-10 stsp
4127 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
4128 61266923 2020-01-14 stsp if (err)
4129 61266923 2020-01-14 stsp return (void *)err;
4130 61266923 2020-01-14 stsp
4131 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
4132 fc06ba56 2019-08-22 stsp blame_cb, ta->cb_args, ta->cancel_cb, ta->cancel_arg);
4133 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
4134 fc06ba56 2019-08-22 stsp err = NULL;
4135 18430de3 2018-07-10 stsp
4136 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4137 1a76625f 2018-10-22 stsp if (errcode)
4138 2af4a041 2019-05-11 jcs return (void *)got_error_set_errno(errcode,
4139 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
4140 18430de3 2018-07-10 stsp
4141 c9beca56 2018-07-22 stsp got_repo_close(ta->repo);
4142 c9beca56 2018-07-22 stsp ta->repo = NULL;
4143 c9beca56 2018-07-22 stsp *ta->complete = 1;
4144 18430de3 2018-07-10 stsp
4145 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4146 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
4147 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
4148 18430de3 2018-07-10 stsp
4149 18430de3 2018-07-10 stsp return (void *)err;
4150 84451b3e 2018-07-10 stsp }
4151 84451b3e 2018-07-10 stsp
4152 245d91c1 2018-07-12 stsp static struct got_object_id *
4153 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
4154 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
4155 245d91c1 2018-07-12 stsp {
4156 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
4157 8d0fe45a 2019-08-12 stsp
4158 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
4159 8d0fe45a 2019-08-12 stsp return NULL;
4160 b880a918 2018-07-10 stsp
4161 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
4162 245d91c1 2018-07-12 stsp if (!line->annotated)
4163 245d91c1 2018-07-12 stsp return NULL;
4164 245d91c1 2018-07-12 stsp
4165 245d91c1 2018-07-12 stsp return line->id;
4166 b880a918 2018-07-10 stsp }
4167 245d91c1 2018-07-12 stsp
4168 b880a918 2018-07-10 stsp static const struct got_error *
4169 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
4170 a70480e0 2018-06-23 stsp {
4171 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
4172 245d91c1 2018-07-12 stsp int i;
4173 245d91c1 2018-07-12 stsp
4174 245d91c1 2018-07-12 stsp if (blame->thread) {
4175 1a76625f 2018-10-22 stsp int errcode;
4176 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4177 1a76625f 2018-10-22 stsp if (errcode)
4178 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
4179 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
4180 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
4181 1a76625f 2018-10-22 stsp if (errcode)
4182 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
4183 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4184 1a76625f 2018-10-22 stsp if (errcode)
4185 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
4186 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
4187 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
4188 245d91c1 2018-07-12 stsp err = NULL;
4189 245d91c1 2018-07-12 stsp blame->thread = NULL;
4190 245d91c1 2018-07-12 stsp }
4191 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
4192 245d91c1 2018-07-12 stsp got_repo_close(blame->thread_args.repo);
4193 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
4194 245d91c1 2018-07-12 stsp }
4195 245d91c1 2018-07-12 stsp if (blame->f) {
4196 fb43ecf1 2019-02-11 stsp if (fclose(blame->f) != 0 && err == NULL)
4197 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4198 245d91c1 2018-07-12 stsp blame->f = NULL;
4199 245d91c1 2018-07-12 stsp }
4200 57670559 2018-12-23 stsp if (blame->lines) {
4201 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
4202 57670559 2018-12-23 stsp free(blame->lines[i].id);
4203 57670559 2018-12-23 stsp free(blame->lines);
4204 57670559 2018-12-23 stsp blame->lines = NULL;
4205 57670559 2018-12-23 stsp }
4206 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
4207 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
4208 245d91c1 2018-07-12 stsp
4209 245d91c1 2018-07-12 stsp return err;
4210 245d91c1 2018-07-12 stsp }
4211 245d91c1 2018-07-12 stsp
4212 245d91c1 2018-07-12 stsp static const struct got_error *
4213 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
4214 fc06ba56 2019-08-22 stsp {
4215 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
4216 fc06ba56 2019-08-22 stsp int *done = arg;
4217 fc06ba56 2019-08-22 stsp int errcode;
4218 fc06ba56 2019-08-22 stsp
4219 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4220 fc06ba56 2019-08-22 stsp if (errcode)
4221 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
4222 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
4223 fc06ba56 2019-08-22 stsp
4224 fc06ba56 2019-08-22 stsp if (*done)
4225 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
4226 fc06ba56 2019-08-22 stsp
4227 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4228 fc06ba56 2019-08-22 stsp if (errcode)
4229 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
4230 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
4231 fc06ba56 2019-08-22 stsp
4232 fc06ba56 2019-08-22 stsp return err;
4233 fc06ba56 2019-08-22 stsp }
4234 fc06ba56 2019-08-22 stsp
4235 fc06ba56 2019-08-22 stsp static const struct got_error *
4236 1a76625f 2018-10-22 stsp run_blame(struct tog_blame *blame, struct tog_view *view, int *blame_complete,
4237 1a76625f 2018-10-22 stsp int *first_displayed_line, int *last_displayed_line, int *selected_line,
4238 1a76625f 2018-10-22 stsp int *done, int *eof, const char *path, struct got_object_id *commit_id,
4239 245d91c1 2018-07-12 stsp struct got_repository *repo)
4240 245d91c1 2018-07-12 stsp {
4241 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
4242 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
4243 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
4244 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
4245 15a94983 2018-12-23 stsp int obj_type;
4246 a70480e0 2018-06-23 stsp
4247 27d434c2 2018-09-15 stsp err = got_object_id_by_path(&obj_id, repo, commit_id, path);
4248 27d434c2 2018-09-15 stsp if (err)
4249 15a94983 2018-12-23 stsp return err;
4250 27d434c2 2018-09-15 stsp
4251 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, repo, obj_id);
4252 84451b3e 2018-07-10 stsp if (err)
4253 84451b3e 2018-07-10 stsp goto done;
4254 27d434c2 2018-09-15 stsp
4255 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
4256 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4257 84451b3e 2018-07-10 stsp goto done;
4258 84451b3e 2018-07-10 stsp }
4259 a70480e0 2018-06-23 stsp
4260 15a94983 2018-12-23 stsp err = got_object_open_as_blob(&blob, repo, obj_id, 8192);
4261 a70480e0 2018-06-23 stsp if (err)
4262 a70480e0 2018-06-23 stsp goto done;
4263 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
4264 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
4265 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4266 84451b3e 2018-07-10 stsp goto done;
4267 84451b3e 2018-07-10 stsp }
4268 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
4269 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
4270 b02560ec 2019-08-19 stsp if (err || blame->nlines == 0)
4271 84451b3e 2018-07-10 stsp goto done;
4272 b02560ec 2019-08-19 stsp
4273 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
4274 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
4275 b02560ec 2019-08-19 stsp blame->nlines--;
4276 a70480e0 2018-06-23 stsp
4277 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
4278 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
4279 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
4280 84451b3e 2018-07-10 stsp goto done;
4281 84451b3e 2018-07-10 stsp }
4282 a70480e0 2018-06-23 stsp
4283 c9956ddf 2019-09-08 stsp err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL);
4284 bd24772e 2018-07-11 stsp if (err)
4285 bd24772e 2018-07-11 stsp goto done;
4286 bd24772e 2018-07-11 stsp
4287 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
4288 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
4289 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
4290 245d91c1 2018-07-12 stsp blame->cb_args.commit_id = got_object_id_dup(commit_id);
4291 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
4292 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4293 245d91c1 2018-07-12 stsp goto done;
4294 245d91c1 2018-07-12 stsp }
4295 245d91c1 2018-07-12 stsp blame->cb_args.quit = done;
4296 245d91c1 2018-07-12 stsp
4297 245d91c1 2018-07-12 stsp blame->thread_args.path = path;
4298 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
4299 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
4300 245d91c1 2018-07-12 stsp blame->thread_args.complete = blame_complete;
4301 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
4302 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_arg = done;
4303 245d91c1 2018-07-12 stsp *blame_complete = 0;
4304 245d91c1 2018-07-12 stsp
4305 245d91c1 2018-07-12 stsp done:
4306 245d91c1 2018-07-12 stsp if (blob)
4307 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
4308 27d434c2 2018-09-15 stsp free(obj_id);
4309 245d91c1 2018-07-12 stsp if (err)
4310 245d91c1 2018-07-12 stsp stop_blame(blame);
4311 245d91c1 2018-07-12 stsp return err;
4312 245d91c1 2018-07-12 stsp }
4313 245d91c1 2018-07-12 stsp
4314 245d91c1 2018-07-12 stsp static const struct got_error *
4315 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
4316 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
4317 245d91c1 2018-07-12 stsp {
4318 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
4319 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
4320 dbc6a6b6 2018-07-12 stsp
4321 fb2756b9 2018-08-04 stsp SIMPLEQ_INIT(&s->blamed_commits);
4322 245d91c1 2018-07-12 stsp
4323 c4843652 2019-08-12 stsp s->path = strdup(path);
4324 c4843652 2019-08-12 stsp if (s->path == NULL)
4325 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
4326 c4843652 2019-08-12 stsp
4327 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
4328 c4843652 2019-08-12 stsp if (err) {
4329 c4843652 2019-08-12 stsp free(s->path);
4330 7cbe629d 2018-08-04 stsp return err;
4331 c4843652 2019-08-12 stsp }
4332 245d91c1 2018-07-12 stsp
4333 fb2756b9 2018-08-04 stsp SIMPLEQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
4334 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
4335 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
4336 fb2756b9 2018-08-04 stsp s->selected_line = 1;
4337 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
4338 fb2756b9 2018-08-04 stsp s->repo = repo;
4339 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
4340 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
4341 7cbe629d 2018-08-04 stsp
4342 11b20872 2019-11-08 stsp SIMPLEQ_INIT(&s->colors);
4343 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
4344 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
4345 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
4346 11b20872 2019-11-08 stsp if (err)
4347 11b20872 2019-11-08 stsp return err;
4348 11b20872 2019-11-08 stsp }
4349 11b20872 2019-11-08 stsp
4350 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
4351 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
4352 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
4353 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
4354 6c4c42e0 2019-06-24 stsp view->search_next = search_next_blame_view;
4355 e5a0f69f 2018-08-18 stsp
4356 1a76625f 2018-10-22 stsp return run_blame(&s->blame, view, &s->blame_complete,
4357 e5a0f69f 2018-08-18 stsp &s->first_displayed_line, &s->last_displayed_line,
4358 e5a0f69f 2018-08-18 stsp &s->selected_line, &s->done, &s->eof, s->path,
4359 e5a0f69f 2018-08-18 stsp s->blamed_commit->id, s->repo);
4360 7cbe629d 2018-08-04 stsp }
4361 7cbe629d 2018-08-04 stsp
4362 e5a0f69f 2018-08-18 stsp static const struct got_error *
4363 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
4364 7cbe629d 2018-08-04 stsp {
4365 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
4366 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
4367 7cbe629d 2018-08-04 stsp
4368 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
4369 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
4370 e5a0f69f 2018-08-18 stsp
4371 fb2756b9 2018-08-04 stsp while (!SIMPLEQ_EMPTY(&s->blamed_commits)) {
4372 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
4373 fb2756b9 2018-08-04 stsp blamed_commit = SIMPLEQ_FIRST(&s->blamed_commits);
4374 fb2756b9 2018-08-04 stsp SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
4375 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
4376 7cbe629d 2018-08-04 stsp }
4377 e5a0f69f 2018-08-18 stsp
4378 e5a0f69f 2018-08-18 stsp free(s->path);
4379 11b20872 2019-11-08 stsp free_colors(&s->colors);
4380 e5a0f69f 2018-08-18 stsp
4381 e5a0f69f 2018-08-18 stsp return err;
4382 7cbe629d 2018-08-04 stsp }
4383 7cbe629d 2018-08-04 stsp
4384 7cbe629d 2018-08-04 stsp static const struct got_error *
4385 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
4386 6c4c42e0 2019-06-24 stsp {
4387 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
4388 6c4c42e0 2019-06-24 stsp
4389 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
4390 6c4c42e0 2019-06-24 stsp return NULL;
4391 6c4c42e0 2019-06-24 stsp }
4392 6c4c42e0 2019-06-24 stsp
4393 6c4c42e0 2019-06-24 stsp static const struct got_error *
4394 6c4c42e0 2019-06-24 stsp search_next_blame_view(struct tog_view *view)
4395 6c4c42e0 2019-06-24 stsp {
4396 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
4397 6c4c42e0 2019-06-24 stsp int lineno;
4398 6c4c42e0 2019-06-24 stsp
4399 6c4c42e0 2019-06-24 stsp if (!view->searching) {
4400 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4401 6c4c42e0 2019-06-24 stsp return NULL;
4402 6c4c42e0 2019-06-24 stsp }
4403 6c4c42e0 2019-06-24 stsp
4404 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
4405 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4406 2246482e 2019-06-25 stsp lineno = s->matched_line + 1;
4407 6c4c42e0 2019-06-24 stsp else
4408 2246482e 2019-06-25 stsp lineno = s->matched_line - 1;
4409 6c4c42e0 2019-06-24 stsp } else {
4410 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4411 6c4c42e0 2019-06-24 stsp lineno = 1;
4412 6c4c42e0 2019-06-24 stsp else
4413 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
4414 6c4c42e0 2019-06-24 stsp }
4415 6c4c42e0 2019-06-24 stsp
4416 6c4c42e0 2019-06-24 stsp while (1) {
4417 6c4c42e0 2019-06-24 stsp char *line = NULL;
4418 6c4c42e0 2019-06-24 stsp off_t offset;
4419 6c4c42e0 2019-06-24 stsp size_t len;
4420 6c4c42e0 2019-06-24 stsp
4421 6c4c42e0 2019-06-24 stsp if (lineno <= 0 || lineno > s->blame.nlines) {
4422 6c4c42e0 2019-06-24 stsp if (s->matched_line == 0) {
4423 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4424 6c4c42e0 2019-06-24 stsp free(line);
4425 6c4c42e0 2019-06-24 stsp break;
4426 6c4c42e0 2019-06-24 stsp }
4427 2246482e 2019-06-25 stsp
4428 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4429 6c4c42e0 2019-06-24 stsp lineno = 1;
4430 6c4c42e0 2019-06-24 stsp else
4431 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
4432 6c4c42e0 2019-06-24 stsp }
4433 6c4c42e0 2019-06-24 stsp
4434 6c4c42e0 2019-06-24 stsp offset = s->blame.line_offsets[lineno - 1];
4435 6c4c42e0 2019-06-24 stsp if (fseeko(s->blame.f, offset, SEEK_SET) != 0) {
4436 6c4c42e0 2019-06-24 stsp free(line);
4437 6c4c42e0 2019-06-24 stsp return got_error_from_errno("fseeko");
4438 6c4c42e0 2019-06-24 stsp }
4439 6c4c42e0 2019-06-24 stsp free(line);
4440 6c4c42e0 2019-06-24 stsp line = parse_next_line(s->blame.f, &len);
4441 41605754 2020-11-12 stsp if (line &&
4442 41605754 2020-11-12 stsp match_line(line, &view->regex, 1, &view->regmatch)) {
4443 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4444 6c4c42e0 2019-06-24 stsp s->matched_line = lineno;
4445 6c4c42e0 2019-06-24 stsp free(line);
4446 6c4c42e0 2019-06-24 stsp break;
4447 6c4c42e0 2019-06-24 stsp }
4448 6c4c42e0 2019-06-24 stsp free(line);
4449 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4450 6c4c42e0 2019-06-24 stsp lineno++;
4451 6c4c42e0 2019-06-24 stsp else
4452 6c4c42e0 2019-06-24 stsp lineno--;
4453 6c4c42e0 2019-06-24 stsp }
4454 6c4c42e0 2019-06-24 stsp
4455 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
4456 6c4c42e0 2019-06-24 stsp s->first_displayed_line = s->matched_line;
4457 6c4c42e0 2019-06-24 stsp s->selected_line = 1;
4458 6c4c42e0 2019-06-24 stsp }
4459 6c4c42e0 2019-06-24 stsp
4460 6c4c42e0 2019-06-24 stsp return NULL;
4461 6c4c42e0 2019-06-24 stsp }
4462 6c4c42e0 2019-06-24 stsp
4463 6c4c42e0 2019-06-24 stsp static const struct got_error *
4464 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
4465 7cbe629d 2018-08-04 stsp {
4466 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
4467 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
4468 2b380cc8 2018-10-24 stsp int errcode;
4469 2b380cc8 2018-10-24 stsp
4470 2b380cc8 2018-10-24 stsp if (s->blame.thread == NULL) {
4471 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
4472 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
4473 2b380cc8 2018-10-24 stsp if (errcode)
4474 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
4475 51fe7530 2019-08-19 stsp
4476 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
4477 2b380cc8 2018-10-24 stsp }
4478 e5a0f69f 2018-08-18 stsp
4479 51fe7530 2019-08-19 stsp if (s->blame_complete)
4480 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
4481 51fe7530 2019-08-19 stsp
4482 e5a0f69f 2018-08-18 stsp err = draw_blame(view, s->blamed_commit->id, s->blame.f,
4483 e5a0f69f 2018-08-18 stsp s->path, s->blame.lines, s->blame.nlines, s->blame_complete,
4484 e5a0f69f 2018-08-18 stsp s->selected_line, &s->first_displayed_line,
4485 41605754 2020-11-12 stsp &s->last_displayed_line, &s->eof, view->nlines, &s->colors,
4486 41605754 2020-11-12 stsp s->matched_line, &view->regmatch);
4487 e5a0f69f 2018-08-18 stsp
4488 669b5ffa 2018-10-07 stsp view_vborder(view);
4489 e5a0f69f 2018-08-18 stsp return err;
4490 e5a0f69f 2018-08-18 stsp }
4491 e5a0f69f 2018-08-18 stsp
4492 e5a0f69f 2018-08-18 stsp static const struct got_error *
4493 878940b7 2018-09-29 stsp input_blame_view(struct tog_view **new_view, struct tog_view **dead_view,
4494 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
4495 e5a0f69f 2018-08-18 stsp {
4496 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
4497 7cbe629d 2018-08-04 stsp struct tog_view *diff_view;
4498 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
4499 669b5ffa 2018-10-07 stsp int begin_x = 0;
4500 7cbe629d 2018-08-04 stsp
4501 e5a0f69f 2018-08-18 stsp switch (ch) {
4502 1e37a5c2 2019-05-12 jcs case 'q':
4503 1e37a5c2 2019-05-12 jcs s->done = 1;
4504 1e37a5c2 2019-05-12 jcs break;
4505 1e37a5c2 2019-05-12 jcs case 'k':
4506 1e37a5c2 2019-05-12 jcs case KEY_UP:
4507 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
4508 1e37a5c2 2019-05-12 jcs s->selected_line--;
4509 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
4510 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
4511 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4512 1e37a5c2 2019-05-12 jcs break;
4513 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4514 ea025d1d 2020-02-22 naddy case CTRL('b'):
4515 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
4516 1e37a5c2 2019-05-12 jcs s->selected_line = 1;
4517 e5a0f69f 2018-08-18 stsp break;
4518 1e37a5c2 2019-05-12 jcs }
4519 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > view->nlines - 2)
4520 1e37a5c2 2019-05-12 jcs s->first_displayed_line -=
4521 1e37a5c2 2019-05-12 jcs (view->nlines - 2);
4522 1e37a5c2 2019-05-12 jcs else
4523 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
4524 1e37a5c2 2019-05-12 jcs break;
4525 1e37a5c2 2019-05-12 jcs case 'j':
4526 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4527 1e37a5c2 2019-05-12 jcs if (s->selected_line < view->nlines - 2 &&
4528 1e37a5c2 2019-05-12 jcs s->first_displayed_line +
4529 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
4530 1e37a5c2 2019-05-12 jcs s->selected_line++;
4531 1e37a5c2 2019-05-12 jcs else if (s->last_displayed_line <
4532 1e37a5c2 2019-05-12 jcs s->blame.nlines)
4533 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4534 1e37a5c2 2019-05-12 jcs break;
4535 1e37a5c2 2019-05-12 jcs case 'b':
4536 1e37a5c2 2019-05-12 jcs case 'p': {
4537 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
4538 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
4539 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
4540 1e37a5c2 2019-05-12 jcs if (id == NULL)
4541 e5a0f69f 2018-08-18 stsp break;
4542 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
4543 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit;
4544 15a94983 2018-12-23 stsp struct got_object_qid *pid;
4545 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
4546 1e37a5c2 2019-05-12 jcs int obj_type;
4547 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
4548 1e37a5c2 2019-05-12 jcs s->repo, id);
4549 e5a0f69f 2018-08-18 stsp if (err)
4550 e5a0f69f 2018-08-18 stsp break;
4551 15a94983 2018-12-23 stsp pid = SIMPLEQ_FIRST(
4552 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
4553 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
4554 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4555 e5a0f69f 2018-08-18 stsp break;
4556 e5a0f69f 2018-08-18 stsp }
4557 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
4558 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
4559 1e37a5c2 2019-05-12 jcs pid->id, s->path);
4560 e5a0f69f 2018-08-18 stsp if (err) {
4561 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
4562 1e37a5c2 2019-05-12 jcs err = NULL;
4563 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4564 e5a0f69f 2018-08-18 stsp break;
4565 e5a0f69f 2018-08-18 stsp }
4566 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
4567 1e37a5c2 2019-05-12 jcs blob_id);
4568 1e37a5c2 2019-05-12 jcs free(blob_id);
4569 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
4570 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
4571 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4572 e5a0f69f 2018-08-18 stsp break;
4573 1e37a5c2 2019-05-12 jcs }
4574 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
4575 1e37a5c2 2019-05-12 jcs pid->id);
4576 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4577 1e37a5c2 2019-05-12 jcs } else {
4578 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
4579 1e37a5c2 2019-05-12 jcs s->blamed_commit->id) == 0)
4580 1e37a5c2 2019-05-12 jcs break;
4581 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
4582 1e37a5c2 2019-05-12 jcs id);
4583 1e37a5c2 2019-05-12 jcs }
4584 1e37a5c2 2019-05-12 jcs if (err)
4585 e5a0f69f 2018-08-18 stsp break;
4586 1e37a5c2 2019-05-12 jcs s->done = 1;
4587 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
4588 1e37a5c2 2019-05-12 jcs s->done = 0;
4589 1e37a5c2 2019-05-12 jcs if (thread_err)
4590 1e37a5c2 2019-05-12 jcs break;
4591 1e37a5c2 2019-05-12 jcs SIMPLEQ_INSERT_HEAD(&s->blamed_commits,
4592 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
4593 1e37a5c2 2019-05-12 jcs err = run_blame(&s->blame, view, &s->blame_complete,
4594 1e37a5c2 2019-05-12 jcs &s->first_displayed_line, &s->last_displayed_line,
4595 1e37a5c2 2019-05-12 jcs &s->selected_line, &s->done, &s->eof,
4596 1e37a5c2 2019-05-12 jcs s->path, s->blamed_commit->id, s->repo);
4597 1e37a5c2 2019-05-12 jcs if (err)
4598 1e37a5c2 2019-05-12 jcs break;
4599 1e37a5c2 2019-05-12 jcs break;
4600 1e37a5c2 2019-05-12 jcs }
4601 1e37a5c2 2019-05-12 jcs case 'B': {
4602 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
4603 1e37a5c2 2019-05-12 jcs first = SIMPLEQ_FIRST(&s->blamed_commits);
4604 1e37a5c2 2019-05-12 jcs if (!got_object_id_cmp(first->id, s->commit_id))
4605 1e37a5c2 2019-05-12 jcs break;
4606 1e37a5c2 2019-05-12 jcs s->done = 1;
4607 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
4608 1e37a5c2 2019-05-12 jcs s->done = 0;
4609 1e37a5c2 2019-05-12 jcs if (thread_err)
4610 1e37a5c2 2019-05-12 jcs break;
4611 1e37a5c2 2019-05-12 jcs SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
4612 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
4613 1e37a5c2 2019-05-12 jcs s->blamed_commit =
4614 1e37a5c2 2019-05-12 jcs SIMPLEQ_FIRST(&s->blamed_commits);
4615 1e37a5c2 2019-05-12 jcs err = run_blame(&s->blame, view, &s->blame_complete,
4616 1e37a5c2 2019-05-12 jcs &s->first_displayed_line, &s->last_displayed_line,
4617 1e37a5c2 2019-05-12 jcs &s->selected_line, &s->done, &s->eof, s->path,
4618 1e37a5c2 2019-05-12 jcs s->blamed_commit->id, s->repo);
4619 1e37a5c2 2019-05-12 jcs if (err)
4620 1e37a5c2 2019-05-12 jcs break;
4621 1e37a5c2 2019-05-12 jcs break;
4622 1e37a5c2 2019-05-12 jcs }
4623 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
4624 1e37a5c2 2019-05-12 jcs case '\r': {
4625 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
4626 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
4627 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
4628 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
4629 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
4630 1e37a5c2 2019-05-12 jcs if (id == NULL)
4631 1e37a5c2 2019-05-12 jcs break;
4632 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
4633 1e37a5c2 2019-05-12 jcs if (err)
4634 1e37a5c2 2019-05-12 jcs break;
4635 1e37a5c2 2019-05-12 jcs pid = SIMPLEQ_FIRST(
4636 1e37a5c2 2019-05-12 jcs got_object_commit_get_parent_ids(commit));
4637 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
4638 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
4639 1e37a5c2 2019-05-12 jcs diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
4640 1e37a5c2 2019-05-12 jcs if (diff_view == NULL) {
4641 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4642 638f9024 2019-05-13 stsp err = got_error_from_errno("view_open");
4643 1e37a5c2 2019-05-12 jcs break;
4644 15a94983 2018-12-23 stsp }
4645 1e37a5c2 2019-05-12 jcs err = open_diff_view(diff_view, pid ? pid->id : NULL,
4646 78756c87 2020-11-24 stsp id, NULL, NULL, 3, 0, 0, NULL, s->repo);
4647 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4648 1e37a5c2 2019-05-12 jcs if (err) {
4649 1e37a5c2 2019-05-12 jcs view_close(diff_view);
4650 1e37a5c2 2019-05-12 jcs break;
4651 1e37a5c2 2019-05-12 jcs }
4652 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
4653 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
4654 1e37a5c2 2019-05-12 jcs if (err)
4655 34bc9ec9 2019-02-22 stsp break;
4656 1e37a5c2 2019-05-12 jcs err = view_set_child(view, diff_view);
4657 1e37a5c2 2019-05-12 jcs if (err) {
4658 1e37a5c2 2019-05-12 jcs view_close(diff_view);
4659 e5a0f69f 2018-08-18 stsp break;
4660 e5a0f69f 2018-08-18 stsp }
4661 1e37a5c2 2019-05-12 jcs *focus_view = diff_view;
4662 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
4663 1e37a5c2 2019-05-12 jcs } else
4664 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
4665 1e37a5c2 2019-05-12 jcs if (err)
4666 e5a0f69f 2018-08-18 stsp break;
4667 1e37a5c2 2019-05-12 jcs break;
4668 1e37a5c2 2019-05-12 jcs }
4669 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4670 ea025d1d 2020-02-22 naddy case CTRL('f'):
4671 1e37a5c2 2019-05-12 jcs case ' ':
4672 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
4673 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
4674 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
4675 e5a0f69f 2018-08-18 stsp break;
4676 1e37a5c2 2019-05-12 jcs }
4677 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
4678 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
4679 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
4680 1e37a5c2 2019-05-12 jcs view->nlines - 2);
4681 e5a0f69f 2018-08-18 stsp break;
4682 1e37a5c2 2019-05-12 jcs }
4683 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line + view->nlines - 2
4684 1e37a5c2 2019-05-12 jcs <= s->blame.nlines)
4685 1e37a5c2 2019-05-12 jcs s->first_displayed_line +=
4686 1e37a5c2 2019-05-12 jcs view->nlines - 2;
4687 1e37a5c2 2019-05-12 jcs else
4688 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
4689 1e37a5c2 2019-05-12 jcs s->blame.nlines -
4690 1e37a5c2 2019-05-12 jcs (view->nlines - 3);
4691 1e37a5c2 2019-05-12 jcs break;
4692 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
4693 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
4694 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
4695 1e37a5c2 2019-05-12 jcs view->nlines - 2);
4696 1e37a5c2 2019-05-12 jcs }
4697 1e37a5c2 2019-05-12 jcs break;
4698 1e37a5c2 2019-05-12 jcs default:
4699 1e37a5c2 2019-05-12 jcs break;
4700 a70480e0 2018-06-23 stsp }
4701 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
4702 a70480e0 2018-06-23 stsp }
4703 a70480e0 2018-06-23 stsp
4704 a70480e0 2018-06-23 stsp static const struct got_error *
4705 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
4706 9f7d7167 2018-04-29 stsp {
4707 a70480e0 2018-06-23 stsp const struct got_error *error;
4708 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
4709 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
4710 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
4711 0587e10c 2020-07-23 stsp char *link_target = NULL;
4712 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
4713 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
4714 a70480e0 2018-06-23 stsp int ch;
4715 e1cd8fed 2018-08-01 stsp struct tog_view *view;
4716 70ac5f84 2019-03-28 stsp
4717 a70480e0 2018-06-23 stsp #ifndef PROFILE
4718 8e94dd5b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
4719 8e94dd5b 2019-01-04 stsp NULL) == -1)
4720 a70480e0 2018-06-23 stsp err(1, "pledge");
4721 a70480e0 2018-06-23 stsp #endif
4722 a70480e0 2018-06-23 stsp
4723 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
4724 a70480e0 2018-06-23 stsp switch (ch) {
4725 a70480e0 2018-06-23 stsp case 'c':
4726 a70480e0 2018-06-23 stsp commit_id_str = optarg;
4727 a70480e0 2018-06-23 stsp break;
4728 69069811 2018-08-02 stsp case 'r':
4729 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
4730 69069811 2018-08-02 stsp if (repo_path == NULL)
4731 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4732 9ba1d308 2019-10-21 stsp optarg);
4733 69069811 2018-08-02 stsp break;
4734 a70480e0 2018-06-23 stsp default:
4735 17020d27 2019-03-07 stsp usage_blame();
4736 a70480e0 2018-06-23 stsp /* NOTREACHED */
4737 a70480e0 2018-06-23 stsp }
4738 a70480e0 2018-06-23 stsp }
4739 a70480e0 2018-06-23 stsp
4740 a70480e0 2018-06-23 stsp argc -= optind;
4741 a70480e0 2018-06-23 stsp argv += optind;
4742 a70480e0 2018-06-23 stsp
4743 f135c941 2020-02-20 stsp if (argc != 1)
4744 a70480e0 2018-06-23 stsp usage_blame();
4745 69069811 2018-08-02 stsp
4746 69069811 2018-08-02 stsp cwd = getcwd(NULL, 0);
4747 6962eb72 2020-02-20 stsp if (cwd == NULL)
4748 6962eb72 2020-02-20 stsp return got_error_from_errno("getcwd");
4749 6962eb72 2020-02-20 stsp
4750 f135c941 2020-02-20 stsp error = got_worktree_open(&worktree, cwd);
4751 f135c941 2020-02-20 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4752 f135c941 2020-02-20 stsp goto done;
4753 f135c941 2020-02-20 stsp
4754 69069811 2018-08-02 stsp if (repo_path == NULL) {
4755 f135c941 2020-02-20 stsp if (worktree)
4756 eb41ed75 2019-02-05 stsp repo_path =
4757 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
4758 f135c941 2020-02-20 stsp else
4759 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
4760 69069811 2018-08-02 stsp }
4761 f135c941 2020-02-20 stsp if (repo_path == NULL) {
4762 f135c941 2020-02-20 stsp error = got_error_from_errno("strdup");
4763 f135c941 2020-02-20 stsp goto done;
4764 f135c941 2020-02-20 stsp }
4765 a915003a 2019-02-05 stsp
4766 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4767 c02c541e 2019-03-29 stsp if (error != NULL)
4768 8e94dd5b 2019-01-04 stsp goto done;
4769 69069811 2018-08-02 stsp
4770 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
4771 f135c941 2020-02-20 stsp worktree);
4772 c02c541e 2019-03-29 stsp if (error)
4773 92205607 2019-01-04 stsp goto done;
4774 69069811 2018-08-02 stsp
4775 f135c941 2020-02-20 stsp init_curses();
4776 f135c941 2020-02-20 stsp
4777 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
4778 eb41ed75 2019-02-05 stsp if (error)
4779 69069811 2018-08-02 stsp goto done;
4780 a70480e0 2018-06-23 stsp
4781 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
4782 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
4783 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
4784 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
4785 a70480e0 2018-06-23 stsp if (error != NULL)
4786 66b4983c 2018-06-23 stsp goto done;
4787 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
4788 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
4789 a70480e0 2018-06-23 stsp } else {
4790 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
4791 71a27632 2020-01-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
4792 a70480e0 2018-06-23 stsp }
4793 a19e88aa 2018-06-23 stsp if (error != NULL)
4794 8b473291 2019-02-21 stsp goto done;
4795 8b473291 2019-02-21 stsp
4796 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
4797 e1cd8fed 2018-08-01 stsp if (view == NULL) {
4798 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4799 e1cd8fed 2018-08-01 stsp goto done;
4800 e1cd8fed 2018-08-01 stsp }
4801 0587e10c 2020-07-23 stsp
4802 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
4803 0587e10c 2020-07-23 stsp commit_id, repo);
4804 7cbe629d 2018-08-04 stsp if (error)
4805 7cbe629d 2018-08-04 stsp goto done;
4806 0587e10c 2020-07-23 stsp
4807 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
4808 78756c87 2020-11-24 stsp commit_id, repo);
4809 0587e10c 2020-07-23 stsp if (error)
4810 0587e10c 2020-07-23 stsp goto done;
4811 12314ad4 2019-08-31 stsp if (worktree) {
4812 12314ad4 2019-08-31 stsp /* Release work tree lock. */
4813 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
4814 12314ad4 2019-08-31 stsp worktree = NULL;
4815 12314ad4 2019-08-31 stsp }
4816 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4817 a70480e0 2018-06-23 stsp done:
4818 69069811 2018-08-02 stsp free(repo_path);
4819 f135c941 2020-02-20 stsp free(in_repo_path);
4820 0587e10c 2020-07-23 stsp free(link_target);
4821 69069811 2018-08-02 stsp free(cwd);
4822 a70480e0 2018-06-23 stsp free(commit_id);
4823 eb41ed75 2019-02-05 stsp if (worktree)
4824 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
4825 a70480e0 2018-06-23 stsp if (repo)
4826 a70480e0 2018-06-23 stsp got_repo_close(repo);
4827 a70480e0 2018-06-23 stsp return error;
4828 ffd1d5e5 2018-06-23 stsp }
4829 ffd1d5e5 2018-06-23 stsp
4830 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4831 f7d12f7e 2018-08-01 stsp draw_tree_entries(struct tog_view *view,
4832 f7d12f7e 2018-08-01 stsp struct got_tree_entry **first_displayed_entry,
4833 ffd1d5e5 2018-06-23 stsp struct got_tree_entry **last_displayed_entry,
4834 ffd1d5e5 2018-06-23 stsp struct got_tree_entry **selected_entry, int *ndisplayed,
4835 f7d12f7e 2018-08-01 stsp const char *label, int show_ids, const char *parent_path,
4836 56e0773d 2019-11-28 stsp struct got_tree_object *tree, int selected, int limit,
4837 0d6c6ee3 2020-05-20 stsp int isroot, struct tog_colors *colors, struct got_repository *repo)
4838 ffd1d5e5 2018-06-23 stsp {
4839 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
4840 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
4841 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
4842 f26dddb7 2019-11-08 stsp struct tog_color *tc;
4843 56e0773d 2019-11-28 stsp int width, n, i, nentries;
4844 ffd1d5e5 2018-06-23 stsp
4845 ffd1d5e5 2018-06-23 stsp *ndisplayed = 0;
4846 ffd1d5e5 2018-06-23 stsp
4847 f7d12f7e 2018-08-01 stsp werase(view->window);
4848 ffd1d5e5 2018-06-23 stsp
4849 ffd1d5e5 2018-06-23 stsp if (limit == 0)
4850 ffd1d5e5 2018-06-23 stsp return NULL;
4851 ffd1d5e5 2018-06-23 stsp
4852 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, label, view->ncols, 0);
4853 ffd1d5e5 2018-06-23 stsp if (err)
4854 ffd1d5e5 2018-06-23 stsp return err;
4855 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4856 a3404814 2018-09-02 stsp wstandout(view->window);
4857 11b20872 2019-11-08 stsp tc = get_color(colors, TOG_COLOR_COMMIT);
4858 11b20872 2019-11-08 stsp if (tc)
4859 11b20872 2019-11-08 stsp wattr_on(view->window,
4860 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4861 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4862 11b20872 2019-11-08 stsp if (tc)
4863 11b20872 2019-11-08 stsp wattr_off(view->window,
4864 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4865 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4866 a3404814 2018-09-02 stsp wstandend(view->window);
4867 2550e4c3 2018-07-13 stsp free(wline);
4868 2550e4c3 2018-07-13 stsp wline = NULL;
4869 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4870 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4871 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4872 ffd1d5e5 2018-06-23 stsp return NULL;
4873 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, parent_path, view->ncols, 0);
4874 ce52c690 2018-06-23 stsp if (err)
4875 ce52c690 2018-06-23 stsp return err;
4876 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4877 2550e4c3 2018-07-13 stsp free(wline);
4878 2550e4c3 2018-07-13 stsp wline = NULL;
4879 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4880 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4881 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4882 ffd1d5e5 2018-06-23 stsp return NULL;
4883 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4884 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
4885 a1eca9bb 2018-06-23 stsp return NULL;
4886 ffd1d5e5 2018-06-23 stsp
4887 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry == NULL) {
4888 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(tree);
4889 ffd1d5e5 2018-06-23 stsp if (selected == 0) {
4890 0cf4efb1 2018-09-29 stsp if (view->focussed)
4891 0cf4efb1 2018-09-29 stsp wstandout(view->window);
4892 ffd1d5e5 2018-06-23 stsp *selected_entry = NULL;
4893 ffd1d5e5 2018-06-23 stsp }
4894 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
4895 0cf4efb1 2018-09-29 stsp if (selected == 0 && view->focussed)
4896 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4897 ffd1d5e5 2018-06-23 stsp (*ndisplayed)++;
4898 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4899 ffd1d5e5 2018-06-23 stsp return NULL;
4900 ffd1d5e5 2018-06-23 stsp n = 1;
4901 ffd1d5e5 2018-06-23 stsp } else {
4902 ffd1d5e5 2018-06-23 stsp n = 0;
4903 56e0773d 2019-11-28 stsp te = *first_displayed_entry;
4904 ffd1d5e5 2018-06-23 stsp }
4905 ffd1d5e5 2018-06-23 stsp
4906 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
4907 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
4908 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
4909 848d6979 2019-08-12 stsp const char *modestr = "";
4910 56e0773d 2019-11-28 stsp mode_t mode;
4911 1d13200f 2018-07-12 stsp
4912 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
4913 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
4914 56e0773d 2019-11-28 stsp
4915 1d13200f 2018-07-12 stsp if (show_ids) {
4916 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
4917 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
4918 1d13200f 2018-07-12 stsp if (err)
4919 638f9024 2019-05-13 stsp return got_error_from_errno(
4920 230a42bd 2019-05-11 jcs "got_object_id_str");
4921 1d13200f 2018-07-12 stsp }
4922 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
4923 63c5ca5d 2019-08-24 stsp modestr = "$";
4924 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
4925 0d6c6ee3 2020-05-20 stsp int i;
4926 0d6c6ee3 2020-05-20 stsp
4927 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
4928 0d6c6ee3 2020-05-20 stsp te, repo);
4929 0d6c6ee3 2020-05-20 stsp if (err) {
4930 0d6c6ee3 2020-05-20 stsp free(id_str);
4931 0d6c6ee3 2020-05-20 stsp return err;
4932 0d6c6ee3 2020-05-20 stsp }
4933 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
4934 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
4935 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
4936 0d6c6ee3 2020-05-20 stsp }
4937 848d6979 2019-08-12 stsp modestr = "@";
4938 0d6c6ee3 2020-05-20 stsp }
4939 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
4940 848d6979 2019-08-12 stsp modestr = "/";
4941 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
4942 848d6979 2019-08-12 stsp modestr = "*";
4943 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
4944 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
4945 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
4946 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
4947 1d13200f 2018-07-12 stsp free(id_str);
4948 0d6c6ee3 2020-05-20 stsp free(link_target);
4949 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
4950 1d13200f 2018-07-12 stsp }
4951 1d13200f 2018-07-12 stsp free(id_str);
4952 0d6c6ee3 2020-05-20 stsp free(link_target);
4953 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
4954 ffd1d5e5 2018-06-23 stsp if (err) {
4955 ffd1d5e5 2018-06-23 stsp free(line);
4956 ffd1d5e5 2018-06-23 stsp break;
4957 ffd1d5e5 2018-06-23 stsp }
4958 ffd1d5e5 2018-06-23 stsp if (n == selected) {
4959 0cf4efb1 2018-09-29 stsp if (view->focussed)
4960 0cf4efb1 2018-09-29 stsp wstandout(view->window);
4961 ffd1d5e5 2018-06-23 stsp *selected_entry = te;
4962 ffd1d5e5 2018-06-23 stsp }
4963 bddb1296 2019-11-08 stsp tc = match_color(colors, line);
4964 f26dddb7 2019-11-08 stsp if (tc)
4965 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
4966 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4967 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4968 f26dddb7 2019-11-08 stsp if (tc)
4969 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
4970 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4971 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4972 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4973 0cf4efb1 2018-09-29 stsp if (n == selected && view->focussed)
4974 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4975 ffd1d5e5 2018-06-23 stsp free(line);
4976 2550e4c3 2018-07-13 stsp free(wline);
4977 2550e4c3 2018-07-13 stsp wline = NULL;
4978 ffd1d5e5 2018-06-23 stsp n++;
4979 ffd1d5e5 2018-06-23 stsp (*ndisplayed)++;
4980 ffd1d5e5 2018-06-23 stsp *last_displayed_entry = te;
4981 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4982 ffd1d5e5 2018-06-23 stsp break;
4983 ffd1d5e5 2018-06-23 stsp }
4984 ffd1d5e5 2018-06-23 stsp
4985 ffd1d5e5 2018-06-23 stsp return err;
4986 ffd1d5e5 2018-06-23 stsp }
4987 ffd1d5e5 2018-06-23 stsp
4988 ffd1d5e5 2018-06-23 stsp static void
4989 694d3271 2020-12-01 naddy tree_scroll_up(struct tog_view *view, int maxscroll)
4990 ffd1d5e5 2018-06-23 stsp {
4991 694d3271 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
4992 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
4993 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
4994 fa86c4bf 2020-11-29 stsp int i = 0;
4995 ffd1d5e5 2018-06-23 stsp
4996 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
4997 ffd1d5e5 2018-06-23 stsp return;
4998 ffd1d5e5 2018-06-23 stsp
4999 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
5000 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
5001 fa86c4bf 2020-11-29 stsp if (te == NULL) {
5002 fa86c4bf 2020-11-29 stsp if (!isroot)
5003 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
5004 fa86c4bf 2020-11-29 stsp break;
5005 fa86c4bf 2020-11-29 stsp }
5006 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
5007 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
5008 ffd1d5e5 2018-06-23 stsp }
5009 ffd1d5e5 2018-06-23 stsp }
5010 ffd1d5e5 2018-06-23 stsp
5011 fa86c4bf 2020-11-29 stsp static void
5012 694d3271 2020-12-01 naddy tree_scroll_down(struct tog_view *view, int maxscroll)
5013 ffd1d5e5 2018-06-23 stsp {
5014 694d3271 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
5015 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
5016 ffd1d5e5 2018-06-23 stsp int n = 0;
5017 ffd1d5e5 2018-06-23 stsp
5018 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
5019 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
5020 694d3271 2020-12-01 naddy s->first_displayed_entry);
5021 694d3271 2020-12-01 naddy else
5022 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
5023 56e0773d 2019-11-28 stsp
5024 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
5025 768394f3 2019-01-24 stsp while (next && last && n++ < maxscroll) {
5026 694d3271 2020-12-01 naddy last = got_tree_entry_get_next(s->tree, last);
5027 768394f3 2019-01-24 stsp if (last) {
5028 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
5029 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
5030 768394f3 2019-01-24 stsp }
5031 ffd1d5e5 2018-06-23 stsp }
5032 ffd1d5e5 2018-06-23 stsp }
5033 ffd1d5e5 2018-06-23 stsp
5034 ffd1d5e5 2018-06-23 stsp static const struct got_error *
5035 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
5036 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
5037 ffd1d5e5 2018-06-23 stsp {
5038 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
5039 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
5040 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
5041 ffd1d5e5 2018-06-23 stsp
5042 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
5043 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
5044 56e0773d 2019-11-28 stsp + 1 /* slash */;
5045 ce52c690 2018-06-23 stsp if (te)
5046 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
5047 ce52c690 2018-06-23 stsp
5048 ce52c690 2018-06-23 stsp *path = calloc(1, len);
5049 ffd1d5e5 2018-06-23 stsp if (path == NULL)
5050 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
5051 ffd1d5e5 2018-06-23 stsp
5052 ce52c690 2018-06-23 stsp (*path)[0] = '/';
5053 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
5054 d9765a41 2018-06-23 stsp while (pt) {
5055 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
5056 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
5057 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
5058 cb2ebc8a 2018-06-23 stsp goto done;
5059 cb2ebc8a 2018-06-23 stsp }
5060 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
5061 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
5062 cb2ebc8a 2018-06-23 stsp goto done;
5063 cb2ebc8a 2018-06-23 stsp }
5064 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
5065 ffd1d5e5 2018-06-23 stsp }
5066 ce52c690 2018-06-23 stsp if (te) {
5067 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
5068 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
5069 ce52c690 2018-06-23 stsp goto done;
5070 ce52c690 2018-06-23 stsp }
5071 cb2ebc8a 2018-06-23 stsp }
5072 ce52c690 2018-06-23 stsp done:
5073 ce52c690 2018-06-23 stsp if (err) {
5074 ce52c690 2018-06-23 stsp free(*path);
5075 ce52c690 2018-06-23 stsp *path = NULL;
5076 ce52c690 2018-06-23 stsp }
5077 ce52c690 2018-06-23 stsp return err;
5078 ce52c690 2018-06-23 stsp }
5079 ce52c690 2018-06-23 stsp
5080 ce52c690 2018-06-23 stsp static const struct got_error *
5081 0cf4efb1 2018-09-29 stsp blame_tree_entry(struct tog_view **new_view, int begin_x,
5082 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
5083 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5084 ce52c690 2018-06-23 stsp {
5085 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
5086 ce52c690 2018-06-23 stsp char *path;
5087 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
5088 a0de39f3 2019-08-09 stsp
5089 a0de39f3 2019-08-09 stsp *new_view = NULL;
5090 69efd4c4 2018-07-18 stsp
5091 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
5092 ce52c690 2018-06-23 stsp if (err)
5093 ce52c690 2018-06-23 stsp return err;
5094 ffd1d5e5 2018-06-23 stsp
5095 669b5ffa 2018-10-07 stsp blame_view = view_open(0, 0, 0, begin_x, TOG_VIEW_BLAME);
5096 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
5097 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
5098 83ce39e3 2019-08-12 stsp goto done;
5099 83ce39e3 2019-08-12 stsp }
5100 cdf1ee82 2018-08-01 stsp
5101 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
5102 e5a0f69f 2018-08-18 stsp if (err) {
5103 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
5104 fc06ba56 2019-08-22 stsp err = NULL;
5105 e5a0f69f 2018-08-18 stsp view_close(blame_view);
5106 e5a0f69f 2018-08-18 stsp } else
5107 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
5108 83ce39e3 2019-08-12 stsp done:
5109 83ce39e3 2019-08-12 stsp free(path);
5110 69efd4c4 2018-07-18 stsp return err;
5111 69efd4c4 2018-07-18 stsp }
5112 69efd4c4 2018-07-18 stsp
5113 69efd4c4 2018-07-18 stsp static const struct got_error *
5114 669b5ffa 2018-10-07 stsp log_tree_entry(struct tog_view **new_view, int begin_x,
5115 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
5116 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5117 69efd4c4 2018-07-18 stsp {
5118 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
5119 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
5120 69efd4c4 2018-07-18 stsp char *path;
5121 a0de39f3 2019-08-09 stsp
5122 a0de39f3 2019-08-09 stsp *new_view = NULL;
5123 69efd4c4 2018-07-18 stsp
5124 669b5ffa 2018-10-07 stsp log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
5125 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
5126 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
5127 e5a0f69f 2018-08-18 stsp
5128 69efd4c4 2018-07-18 stsp err = tree_entry_path(&path, parents, te);
5129 69efd4c4 2018-07-18 stsp if (err)
5130 69efd4c4 2018-07-18 stsp return err;
5131 69efd4c4 2018-07-18 stsp
5132 78756c87 2020-11-24 stsp err = open_log_view(log_view, commit_id, repo, NULL, path, 0);
5133 ba4f502b 2018-08-04 stsp if (err)
5134 e5a0f69f 2018-08-18 stsp view_close(log_view);
5135 e5a0f69f 2018-08-18 stsp else
5136 e5a0f69f 2018-08-18 stsp *new_view = log_view;
5137 cb2ebc8a 2018-06-23 stsp free(path);
5138 cb2ebc8a 2018-06-23 stsp return err;
5139 ffd1d5e5 2018-06-23 stsp }
5140 ffd1d5e5 2018-06-23 stsp
5141 ffd1d5e5 2018-06-23 stsp static const struct got_error *
5142 ad80ab7b 2018-08-04 stsp open_tree_view(struct tog_view *view, struct got_tree_object *root,
5143 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5144 ffd1d5e5 2018-06-23 stsp {
5145 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
5146 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
5147 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
5148 ffd1d5e5 2018-06-23 stsp
5149 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
5150 ffd1d5e5 2018-06-23 stsp
5151 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
5152 ffd1d5e5 2018-06-23 stsp if (err != NULL)
5153 ffd1d5e5 2018-06-23 stsp goto done;
5154 ffd1d5e5 2018-06-23 stsp
5155 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
5156 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5157 ffd1d5e5 2018-06-23 stsp goto done;
5158 ffd1d5e5 2018-06-23 stsp }
5159 ffd1d5e5 2018-06-23 stsp
5160 fb2756b9 2018-08-04 stsp s->root = s->tree = root;
5161 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
5162 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
5163 6484ec90 2018-09-29 stsp s->commit_id = got_object_id_dup(commit_id);
5164 6484ec90 2018-09-29 stsp if (s->commit_id == NULL) {
5165 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5166 6484ec90 2018-09-29 stsp goto done;
5167 6484ec90 2018-09-29 stsp }
5168 fb2756b9 2018-08-04 stsp s->repo = repo;
5169 c0b01bdb 2019-11-08 stsp
5170 bddb1296 2019-11-08 stsp SIMPLEQ_INIT(&s->colors);
5171 c0b01bdb 2019-11-08 stsp
5172 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5173 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
5174 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
5175 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
5176 c0b01bdb 2019-11-08 stsp if (err)
5177 c0b01bdb 2019-11-08 stsp goto done;
5178 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
5179 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
5180 c0b01bdb 2019-11-08 stsp if (err) {
5181 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5182 c0b01bdb 2019-11-08 stsp goto done;
5183 c0b01bdb 2019-11-08 stsp }
5184 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
5185 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
5186 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
5187 c0b01bdb 2019-11-08 stsp if (err) {
5188 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5189 c0b01bdb 2019-11-08 stsp goto done;
5190 c0b01bdb 2019-11-08 stsp }
5191 e5a0f69f 2018-08-18 stsp
5192 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
5193 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
5194 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
5195 11b20872 2019-11-08 stsp if (err) {
5196 11b20872 2019-11-08 stsp free_colors(&s->colors);
5197 11b20872 2019-11-08 stsp goto done;
5198 11b20872 2019-11-08 stsp }
5199 11b20872 2019-11-08 stsp
5200 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
5201 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
5202 c0b01bdb 2019-11-08 stsp if (err) {
5203 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5204 c0b01bdb 2019-11-08 stsp goto done;
5205 c0b01bdb 2019-11-08 stsp }
5206 c0b01bdb 2019-11-08 stsp }
5207 c0b01bdb 2019-11-08 stsp
5208 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
5209 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
5210 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
5211 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
5212 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
5213 ad80ab7b 2018-08-04 stsp done:
5214 ad80ab7b 2018-08-04 stsp free(commit_id_str);
5215 6484ec90 2018-09-29 stsp if (err) {
5216 fb2756b9 2018-08-04 stsp free(s->tree_label);
5217 6484ec90 2018-09-29 stsp s->tree_label = NULL;
5218 6484ec90 2018-09-29 stsp }
5219 ad80ab7b 2018-08-04 stsp return err;
5220 ad80ab7b 2018-08-04 stsp }
5221 ad80ab7b 2018-08-04 stsp
5222 e5a0f69f 2018-08-18 stsp static const struct got_error *
5223 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
5224 ad80ab7b 2018-08-04 stsp {
5225 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
5226 ad80ab7b 2018-08-04 stsp
5227 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5228 fb2756b9 2018-08-04 stsp free(s->tree_label);
5229 6484ec90 2018-09-29 stsp s->tree_label = NULL;
5230 6484ec90 2018-09-29 stsp free(s->commit_id);
5231 6484ec90 2018-09-29 stsp s->commit_id = NULL;
5232 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
5233 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
5234 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
5235 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
5236 ad80ab7b 2018-08-04 stsp free(parent);
5237 ad80ab7b 2018-08-04 stsp
5238 ad80ab7b 2018-08-04 stsp }
5239 fb2756b9 2018-08-04 stsp if (s->tree != s->root)
5240 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
5241 e5a0f69f 2018-08-18 stsp got_object_tree_close(s->root);
5242 7c32bd05 2019-06-22 stsp return NULL;
5243 7c32bd05 2019-06-22 stsp }
5244 7c32bd05 2019-06-22 stsp
5245 7c32bd05 2019-06-22 stsp static const struct got_error *
5246 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
5247 7c32bd05 2019-06-22 stsp {
5248 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
5249 7c32bd05 2019-06-22 stsp
5250 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
5251 7c32bd05 2019-06-22 stsp return NULL;
5252 7c32bd05 2019-06-22 stsp }
5253 7c32bd05 2019-06-22 stsp
5254 7c32bd05 2019-06-22 stsp static int
5255 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
5256 7c32bd05 2019-06-22 stsp {
5257 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
5258 7c32bd05 2019-06-22 stsp
5259 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
5260 56e0773d 2019-11-28 stsp 0) == 0;
5261 7c32bd05 2019-06-22 stsp }
5262 7c32bd05 2019-06-22 stsp
5263 7c32bd05 2019-06-22 stsp static const struct got_error *
5264 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
5265 7c32bd05 2019-06-22 stsp {
5266 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
5267 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
5268 7c32bd05 2019-06-22 stsp
5269 7c32bd05 2019-06-22 stsp if (!view->searching) {
5270 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5271 7c32bd05 2019-06-22 stsp return NULL;
5272 7c32bd05 2019-06-22 stsp }
5273 7c32bd05 2019-06-22 stsp
5274 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
5275 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
5276 7c32bd05 2019-06-22 stsp if (s->selected_entry)
5277 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
5278 56e0773d 2019-11-28 stsp s->selected_entry);
5279 7c32bd05 2019-06-22 stsp else
5280 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
5281 56e0773d 2019-11-28 stsp } else {
5282 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
5283 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
5284 56e0773d 2019-11-28 stsp else
5285 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
5286 56e0773d 2019-11-28 stsp s->selected_entry);
5287 7c32bd05 2019-06-22 stsp }
5288 7c32bd05 2019-06-22 stsp } else {
5289 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
5290 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
5291 56e0773d 2019-11-28 stsp else
5292 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
5293 7c32bd05 2019-06-22 stsp }
5294 7c32bd05 2019-06-22 stsp
5295 7c32bd05 2019-06-22 stsp while (1) {
5296 56e0773d 2019-11-28 stsp if (te == NULL) {
5297 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
5298 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5299 ac66afb8 2019-06-24 stsp return NULL;
5300 ac66afb8 2019-06-24 stsp }
5301 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
5302 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
5303 56e0773d 2019-11-28 stsp else
5304 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
5305 7c32bd05 2019-06-22 stsp }
5306 7c32bd05 2019-06-22 stsp
5307 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
5308 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5309 56e0773d 2019-11-28 stsp s->matched_entry = te;
5310 7c32bd05 2019-06-22 stsp break;
5311 7c32bd05 2019-06-22 stsp }
5312 7c32bd05 2019-06-22 stsp
5313 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
5314 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
5315 56e0773d 2019-11-28 stsp else
5316 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
5317 7c32bd05 2019-06-22 stsp }
5318 e5a0f69f 2018-08-18 stsp
5319 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
5320 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
5321 7c32bd05 2019-06-22 stsp s->selected = 0;
5322 7c32bd05 2019-06-22 stsp }
5323 7c32bd05 2019-06-22 stsp
5324 e5a0f69f 2018-08-18 stsp return NULL;
5325 ad80ab7b 2018-08-04 stsp }
5326 ad80ab7b 2018-08-04 stsp
5327 ad80ab7b 2018-08-04 stsp static const struct got_error *
5328 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
5329 ad80ab7b 2018-08-04 stsp {
5330 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
5331 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
5332 e5a0f69f 2018-08-18 stsp char *parent_path;
5333 ad80ab7b 2018-08-04 stsp
5334 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
5335 e5a0f69f 2018-08-18 stsp if (err)
5336 e5a0f69f 2018-08-18 stsp return err;
5337 ffd1d5e5 2018-06-23 stsp
5338 e5a0f69f 2018-08-18 stsp err = draw_tree_entries(view, &s->first_displayed_entry,
5339 e5a0f69f 2018-08-18 stsp &s->last_displayed_entry, &s->selected_entry,
5340 e5a0f69f 2018-08-18 stsp &s->ndisplayed, s->tree_label, s->show_ids, parent_path,
5341 56e0773d 2019-11-28 stsp s->tree, s->selected, view->nlines, s->tree == s->root,
5342 0d6c6ee3 2020-05-20 stsp &s->colors, s->repo);
5343 e5a0f69f 2018-08-18 stsp free(parent_path);
5344 669b5ffa 2018-10-07 stsp
5345 669b5ffa 2018-10-07 stsp view_vborder(view);
5346 e5a0f69f 2018-08-18 stsp return err;
5347 e5a0f69f 2018-08-18 stsp }
5348 ce52c690 2018-06-23 stsp
5349 e5a0f69f 2018-08-18 stsp static const struct got_error *
5350 e5a0f69f 2018-08-18 stsp input_tree_view(struct tog_view **new_view, struct tog_view **dead_view,
5351 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
5352 e5a0f69f 2018-08-18 stsp {
5353 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
5354 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
5355 152c1c93 2020-11-29 stsp struct tog_view *log_view, *ref_view;
5356 fa86c4bf 2020-11-29 stsp int begin_x = 0;
5357 ffd1d5e5 2018-06-23 stsp
5358 e5a0f69f 2018-08-18 stsp switch (ch) {
5359 1e37a5c2 2019-05-12 jcs case 'i':
5360 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
5361 1e37a5c2 2019-05-12 jcs break;
5362 1e37a5c2 2019-05-12 jcs case 'l':
5363 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
5364 ffd1d5e5 2018-06-23 stsp break;
5365 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
5366 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
5367 78756c87 2020-11-24 stsp err = log_tree_entry(&log_view, begin_x, s->selected_entry,
5368 78756c87 2020-11-24 stsp &s->parents, s->commit_id, s->repo);
5369 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
5370 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
5371 1e37a5c2 2019-05-12 jcs if (err)
5372 1e37a5c2 2019-05-12 jcs return err;
5373 1e37a5c2 2019-05-12 jcs err = view_set_child(view, log_view);
5374 1e37a5c2 2019-05-12 jcs if (err) {
5375 1e37a5c2 2019-05-12 jcs view_close(log_view);
5376 669b5ffa 2018-10-07 stsp break;
5377 1e37a5c2 2019-05-12 jcs }
5378 1e37a5c2 2019-05-12 jcs *focus_view = log_view;
5379 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
5380 1e37a5c2 2019-05-12 jcs } else
5381 1e37a5c2 2019-05-12 jcs *new_view = log_view;
5382 152c1c93 2020-11-29 stsp break;
5383 152c1c93 2020-11-29 stsp case 'r':
5384 152c1c93 2020-11-29 stsp if (view_is_parent_view(view))
5385 152c1c93 2020-11-29 stsp begin_x = view_split_begin_x(view->begin_x);
5386 152c1c93 2020-11-29 stsp ref_view = view_open(view->nlines, view->ncols,
5387 152c1c93 2020-11-29 stsp view->begin_y, begin_x, TOG_VIEW_REF);
5388 152c1c93 2020-11-29 stsp if (ref_view == NULL)
5389 152c1c93 2020-11-29 stsp return got_error_from_errno("view_open");
5390 152c1c93 2020-11-29 stsp err = open_ref_view(ref_view, s->repo);
5391 152c1c93 2020-11-29 stsp if (err) {
5392 152c1c93 2020-11-29 stsp view_close(ref_view);
5393 152c1c93 2020-11-29 stsp return err;
5394 152c1c93 2020-11-29 stsp }
5395 152c1c93 2020-11-29 stsp if (view_is_parent_view(view)) {
5396 152c1c93 2020-11-29 stsp err = view_close_child(view);
5397 152c1c93 2020-11-29 stsp if (err)
5398 152c1c93 2020-11-29 stsp return err;
5399 152c1c93 2020-11-29 stsp err = view_set_child(view, ref_view);
5400 152c1c93 2020-11-29 stsp if (err) {
5401 152c1c93 2020-11-29 stsp view_close(ref_view);
5402 152c1c93 2020-11-29 stsp break;
5403 152c1c93 2020-11-29 stsp }
5404 152c1c93 2020-11-29 stsp *focus_view = ref_view;
5405 152c1c93 2020-11-29 stsp view->child_focussed = 1;
5406 152c1c93 2020-11-29 stsp } else
5407 152c1c93 2020-11-29 stsp *new_view = ref_view;
5408 1e37a5c2 2019-05-12 jcs break;
5409 1e37a5c2 2019-05-12 jcs case 'k':
5410 1e37a5c2 2019-05-12 jcs case KEY_UP:
5411 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
5412 1e37a5c2 2019-05-12 jcs s->selected--;
5413 fa86c4bf 2020-11-29 stsp break;
5414 1e37a5c2 2019-05-12 jcs }
5415 694d3271 2020-12-01 naddy tree_scroll_up(view, 1);
5416 1e37a5c2 2019-05-12 jcs break;
5417 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5418 ea025d1d 2020-02-22 naddy case CTRL('b'):
5419 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
5420 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
5421 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
5422 fa86c4bf 2020-11-29 stsp s->selected = 0;
5423 fa86c4bf 2020-11-29 stsp } else {
5424 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
5425 fa86c4bf 2020-11-29 stsp s->selected = 0;
5426 fa86c4bf 2020-11-29 stsp }
5427 694d3271 2020-12-01 naddy tree_scroll_up(view, MAX(0, view->nlines - 3));
5428 1e37a5c2 2019-05-12 jcs break;
5429 1e37a5c2 2019-05-12 jcs case 'j':
5430 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5431 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
5432 1e37a5c2 2019-05-12 jcs s->selected++;
5433 1e37a5c2 2019-05-12 jcs break;
5434 1e37a5c2 2019-05-12 jcs }
5435 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
5436 56e0773d 2019-11-28 stsp == NULL)
5437 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
5438 1e37a5c2 2019-05-12 jcs break;
5439 694d3271 2020-12-01 naddy tree_scroll_down(view, 1);
5440 1e37a5c2 2019-05-12 jcs break;
5441 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
5442 ea025d1d 2020-02-22 naddy case CTRL('f'):
5443 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
5444 1e37a5c2 2019-05-12 jcs == NULL) {
5445 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
5446 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
5447 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
5448 1e37a5c2 2019-05-12 jcs break;
5449 1e37a5c2 2019-05-12 jcs }
5450 694d3271 2020-12-01 naddy tree_scroll_down(view, view->nlines - 3);
5451 1e37a5c2 2019-05-12 jcs break;
5452 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
5453 1e37a5c2 2019-05-12 jcs case '\r':
5454 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
5455 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
5456 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
5457 1e37a5c2 2019-05-12 jcs /* user selected '..' */
5458 1e37a5c2 2019-05-12 jcs if (s->tree == s->root)
5459 1e37a5c2 2019-05-12 jcs break;
5460 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
5461 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
5462 1e37a5c2 2019-05-12 jcs entry);
5463 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
5464 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
5465 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
5466 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
5467 1e37a5c2 2019-05-12 jcs s->selected_entry =
5468 1e37a5c2 2019-05-12 jcs parent->selected_entry;
5469 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
5470 1e37a5c2 2019-05-12 jcs free(parent);
5471 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
5472 56e0773d 2019-11-28 stsp s->selected_entry))) {
5473 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
5474 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
5475 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
5476 1e37a5c2 2019-05-12 jcs if (err)
5477 1e37a5c2 2019-05-12 jcs break;
5478 941e9f74 2019-05-21 stsp err = tree_view_visit_subtree(subtree, s);
5479 941e9f74 2019-05-21 stsp if (err) {
5480 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
5481 1e37a5c2 2019-05-12 jcs break;
5482 1e37a5c2 2019-05-12 jcs }
5483 56e0773d 2019-11-28 stsp } else if (S_ISREG(got_tree_entry_get_mode(
5484 56e0773d 2019-11-28 stsp s->selected_entry))) {
5485 1e37a5c2 2019-05-12 jcs struct tog_view *blame_view;
5486 1e37a5c2 2019-05-12 jcs int begin_x = view_is_parent_view(view) ?
5487 1e37a5c2 2019-05-12 jcs view_split_begin_x(view->begin_x) : 0;
5488 1e37a5c2 2019-05-12 jcs
5489 1e37a5c2 2019-05-12 jcs err = blame_tree_entry(&blame_view, begin_x,
5490 669b5ffa 2018-10-07 stsp s->selected_entry, &s->parents,
5491 78756c87 2020-11-24 stsp s->commit_id, s->repo);
5492 1e37a5c2 2019-05-12 jcs if (err)
5493 1e37a5c2 2019-05-12 jcs break;
5494 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
5495 669b5ffa 2018-10-07 stsp err = view_close_child(view);
5496 669b5ffa 2018-10-07 stsp if (err)
5497 669b5ffa 2018-10-07 stsp return err;
5498 1e37a5c2 2019-05-12 jcs err = view_set_child(view, blame_view);
5499 669b5ffa 2018-10-07 stsp if (err) {
5500 1e37a5c2 2019-05-12 jcs view_close(blame_view);
5501 669b5ffa 2018-10-07 stsp break;
5502 669b5ffa 2018-10-07 stsp }
5503 1e37a5c2 2019-05-12 jcs *focus_view = blame_view;
5504 669b5ffa 2018-10-07 stsp view->child_focussed = 1;
5505 669b5ffa 2018-10-07 stsp } else
5506 1e37a5c2 2019-05-12 jcs *new_view = blame_view;
5507 1e37a5c2 2019-05-12 jcs }
5508 1e37a5c2 2019-05-12 jcs break;
5509 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
5510 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines)
5511 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
5512 1e37a5c2 2019-05-12 jcs break;
5513 1e37a5c2 2019-05-12 jcs default:
5514 1e37a5c2 2019-05-12 jcs break;
5515 ffd1d5e5 2018-06-23 stsp }
5516 e5a0f69f 2018-08-18 stsp
5517 ffd1d5e5 2018-06-23 stsp return err;
5518 9f7d7167 2018-04-29 stsp }
5519 9f7d7167 2018-04-29 stsp
5520 ffd1d5e5 2018-06-23 stsp __dead static void
5521 ffd1d5e5 2018-06-23 stsp usage_tree(void)
5522 ffd1d5e5 2018-06-23 stsp {
5523 ffd1d5e5 2018-06-23 stsp endwin();
5524 55cccc34 2020-02-20 stsp fprintf(stderr, "usage: %s tree [-c commit] [-r repository-path] [path]\n",
5525 ffd1d5e5 2018-06-23 stsp getprogname());
5526 ffd1d5e5 2018-06-23 stsp exit(1);
5527 ffd1d5e5 2018-06-23 stsp }
5528 ffd1d5e5 2018-06-23 stsp
5529 ffd1d5e5 2018-06-23 stsp static const struct got_error *
5530 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
5531 ffd1d5e5 2018-06-23 stsp {
5532 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
5533 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
5534 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
5535 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
5536 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
5537 ffd1d5e5 2018-06-23 stsp char *commit_id_arg = NULL;
5538 ffd1d5e5 2018-06-23 stsp struct got_commit_object *commit = NULL;
5539 ffd1d5e5 2018-06-23 stsp struct got_tree_object *tree = NULL;
5540 ffd1d5e5 2018-06-23 stsp int ch;
5541 5221c383 2018-08-01 stsp struct tog_view *view;
5542 70ac5f84 2019-03-28 stsp
5543 ffd1d5e5 2018-06-23 stsp #ifndef PROFILE
5544 d188b9a6 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
5545 d188b9a6 2019-01-04 stsp NULL) == -1)
5546 ffd1d5e5 2018-06-23 stsp err(1, "pledge");
5547 ffd1d5e5 2018-06-23 stsp #endif
5548 ffd1d5e5 2018-06-23 stsp
5549 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
5550 ffd1d5e5 2018-06-23 stsp switch (ch) {
5551 ffd1d5e5 2018-06-23 stsp case 'c':
5552 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
5553 74283ab8 2020-02-07 stsp break;
5554 74283ab8 2020-02-07 stsp case 'r':
5555 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
5556 74283ab8 2020-02-07 stsp if (repo_path == NULL)
5557 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
5558 74283ab8 2020-02-07 stsp optarg);
5559 ffd1d5e5 2018-06-23 stsp break;
5560 ffd1d5e5 2018-06-23 stsp default:
5561 e99e2d15 2020-11-24 naddy usage_tree();
5562 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
5563 ffd1d5e5 2018-06-23 stsp }
5564 ffd1d5e5 2018-06-23 stsp }
5565 ffd1d5e5 2018-06-23 stsp
5566 ffd1d5e5 2018-06-23 stsp argc -= optind;
5567 ffd1d5e5 2018-06-23 stsp argv += optind;
5568 ffd1d5e5 2018-06-23 stsp
5569 55cccc34 2020-02-20 stsp if (argc > 1)
5570 e99e2d15 2020-11-24 naddy usage_tree();
5571 74283ab8 2020-02-07 stsp
5572 55cccc34 2020-02-20 stsp cwd = getcwd(NULL, 0);
5573 55cccc34 2020-02-20 stsp if (cwd == NULL)
5574 55cccc34 2020-02-20 stsp return got_error_from_errno("getcwd");
5575 55cccc34 2020-02-20 stsp
5576 55cccc34 2020-02-20 stsp error = got_worktree_open(&worktree, cwd);
5577 55cccc34 2020-02-20 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5578 55cccc34 2020-02-20 stsp goto done;
5579 55cccc34 2020-02-20 stsp
5580 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
5581 55cccc34 2020-02-20 stsp if (worktree)
5582 52185f70 2019-02-05 stsp repo_path =
5583 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
5584 55cccc34 2020-02-20 stsp else
5585 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
5586 74283ab8 2020-02-07 stsp }
5587 55cccc34 2020-02-20 stsp if (repo_path == NULL) {
5588 55cccc34 2020-02-20 stsp error = got_error_from_errno("strdup");
5589 55cccc34 2020-02-20 stsp goto done;
5590 55cccc34 2020-02-20 stsp }
5591 a915003a 2019-02-05 stsp
5592 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
5593 c02c541e 2019-03-29 stsp if (error != NULL)
5594 52185f70 2019-02-05 stsp goto done;
5595 d188b9a6 2019-01-04 stsp
5596 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
5597 55cccc34 2020-02-20 stsp repo, worktree);
5598 55cccc34 2020-02-20 stsp if (error)
5599 55cccc34 2020-02-20 stsp goto done;
5600 55cccc34 2020-02-20 stsp
5601 55cccc34 2020-02-20 stsp init_curses();
5602 55cccc34 2020-02-20 stsp
5603 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5604 c02c541e 2019-03-29 stsp if (error)
5605 52185f70 2019-02-05 stsp goto done;
5606 ffd1d5e5 2018-06-23 stsp
5607 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
5608 71a27632 2020-01-15 stsp commit_id_arg ? commit_id_arg : GOT_REF_HEAD,
5609 71a27632 2020-01-15 stsp GOT_OBJ_TYPE_COMMIT, 1, repo);
5610 55cccc34 2020-02-20 stsp if (error)
5611 ffd1d5e5 2018-06-23 stsp goto done;
5612 ffd1d5e5 2018-06-23 stsp
5613 ffd1d5e5 2018-06-23 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
5614 55cccc34 2020-02-20 stsp if (error)
5615 ffd1d5e5 2018-06-23 stsp goto done;
5616 ffd1d5e5 2018-06-23 stsp
5617 45d799e2 2018-12-23 stsp error = got_object_open_as_tree(&tree, repo,
5618 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
5619 55cccc34 2020-02-20 stsp if (error)
5620 8b473291 2019-02-21 stsp goto done;
5621 8b473291 2019-02-21 stsp
5622 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
5623 5221c383 2018-08-01 stsp if (view == NULL) {
5624 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5625 5221c383 2018-08-01 stsp goto done;
5626 5221c383 2018-08-01 stsp }
5627 78756c87 2020-11-24 stsp error = open_tree_view(view, tree, commit_id, repo);
5628 ad80ab7b 2018-08-04 stsp if (error)
5629 ad80ab7b 2018-08-04 stsp goto done;
5630 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
5631 55cccc34 2020-02-20 stsp error = tree_view_walk_path(&view->state.tree, commit_id,
5632 55cccc34 2020-02-20 stsp in_repo_path, repo);
5633 55cccc34 2020-02-20 stsp if (error)
5634 55cccc34 2020-02-20 stsp goto done;
5635 55cccc34 2020-02-20 stsp }
5636 55cccc34 2020-02-20 stsp
5637 55cccc34 2020-02-20 stsp if (worktree) {
5638 55cccc34 2020-02-20 stsp /* Release work tree lock. */
5639 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
5640 55cccc34 2020-02-20 stsp worktree = NULL;
5641 55cccc34 2020-02-20 stsp }
5642 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5643 ffd1d5e5 2018-06-23 stsp done:
5644 52185f70 2019-02-05 stsp free(repo_path);
5645 e4a0e26d 2020-02-20 stsp free(cwd);
5646 ffd1d5e5 2018-06-23 stsp free(commit_id);
5647 ffd1d5e5 2018-06-23 stsp if (commit)
5648 ffd1d5e5 2018-06-23 stsp got_object_commit_close(commit);
5649 ffd1d5e5 2018-06-23 stsp if (tree)
5650 ffd1d5e5 2018-06-23 stsp got_object_tree_close(tree);
5651 ffd1d5e5 2018-06-23 stsp if (repo)
5652 ffd1d5e5 2018-06-23 stsp got_repo_close(repo);
5653 ffd1d5e5 2018-06-23 stsp return error;
5654 6458efa5 2020-11-24 stsp }
5655 6458efa5 2020-11-24 stsp
5656 6458efa5 2020-11-24 stsp static const struct got_error *
5657 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
5658 6458efa5 2020-11-24 stsp {
5659 6458efa5 2020-11-24 stsp const struct got_error *err;
5660 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
5661 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
5662 6458efa5 2020-11-24 stsp
5663 6458efa5 2020-11-24 stsp err = got_ref_list(&s->simplerefs, s->repo, NULL,
5664 6458efa5 2020-11-24 stsp got_ref_cmp_by_name, NULL);
5665 6458efa5 2020-11-24 stsp if (err)
5666 6458efa5 2020-11-24 stsp return err;
5667 6458efa5 2020-11-24 stsp
5668 6458efa5 2020-11-24 stsp s->nrefs = 0;
5669 6458efa5 2020-11-24 stsp SIMPLEQ_FOREACH(sre, &s->simplerefs, entry) {
5670 6458efa5 2020-11-24 stsp if (strncmp(got_ref_get_name(sre->ref), "refs/got/", 9) == 0)
5671 6458efa5 2020-11-24 stsp continue;
5672 6458efa5 2020-11-24 stsp
5673 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
5674 6458efa5 2020-11-24 stsp if (re == NULL)
5675 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
5676 6458efa5 2020-11-24 stsp
5677 6458efa5 2020-11-24 stsp re->ref = sre->ref;
5678 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
5679 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
5680 6458efa5 2020-11-24 stsp }
5681 6458efa5 2020-11-24 stsp
5682 6458efa5 2020-11-24 stsp return NULL;
5683 6458efa5 2020-11-24 stsp }
5684 6458efa5 2020-11-24 stsp
5685 6458efa5 2020-11-24 stsp void
5686 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
5687 6458efa5 2020-11-24 stsp {
5688 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
5689 6458efa5 2020-11-24 stsp
5690 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
5691 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
5692 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
5693 6458efa5 2020-11-24 stsp free(re);
5694 6458efa5 2020-11-24 stsp }
5695 6458efa5 2020-11-24 stsp got_ref_list_free(&s->simplerefs);
5696 6458efa5 2020-11-24 stsp }
5697 6458efa5 2020-11-24 stsp
5698 6458efa5 2020-11-24 stsp static const struct got_error *
5699 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
5700 6458efa5 2020-11-24 stsp {
5701 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
5702 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5703 6458efa5 2020-11-24 stsp
5704 6458efa5 2020-11-24 stsp s->selected_entry = 0;
5705 6458efa5 2020-11-24 stsp s->repo = repo;
5706 6458efa5 2020-11-24 stsp
5707 6458efa5 2020-11-24 stsp SIMPLEQ_INIT(&s->simplerefs);
5708 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
5709 6458efa5 2020-11-24 stsp SIMPLEQ_INIT(&s->colors);
5710 6458efa5 2020-11-24 stsp
5711 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
5712 6458efa5 2020-11-24 stsp if (err)
5713 6458efa5 2020-11-24 stsp return err;
5714 34ba6917 2020-11-30 stsp
5715 34ba6917 2020-11-30 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
5716 6458efa5 2020-11-24 stsp
5717 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5718 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
5719 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
5720 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
5721 6458efa5 2020-11-24 stsp if (err)
5722 6458efa5 2020-11-24 stsp goto done;
5723 6458efa5 2020-11-24 stsp
5724 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
5725 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
5726 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
5727 6458efa5 2020-11-24 stsp if (err)
5728 6458efa5 2020-11-24 stsp goto done;
5729 6458efa5 2020-11-24 stsp
5730 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
5731 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
5732 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
5733 6458efa5 2020-11-24 stsp if (err)
5734 6458efa5 2020-11-24 stsp goto done;
5735 6458efa5 2020-11-24 stsp }
5736 6458efa5 2020-11-24 stsp
5737 6458efa5 2020-11-24 stsp view->show = show_ref_view;
5738 6458efa5 2020-11-24 stsp view->input = input_ref_view;
5739 6458efa5 2020-11-24 stsp view->close = close_ref_view;
5740 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
5741 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
5742 6458efa5 2020-11-24 stsp done:
5743 6458efa5 2020-11-24 stsp if (err)
5744 6458efa5 2020-11-24 stsp free_colors(&s->colors);
5745 6458efa5 2020-11-24 stsp return err;
5746 6458efa5 2020-11-24 stsp }
5747 6458efa5 2020-11-24 stsp
5748 6458efa5 2020-11-24 stsp static const struct got_error *
5749 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
5750 6458efa5 2020-11-24 stsp {
5751 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5752 6458efa5 2020-11-24 stsp
5753 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
5754 6458efa5 2020-11-24 stsp free_colors(&s->colors);
5755 6458efa5 2020-11-24 stsp
5756 6458efa5 2020-11-24 stsp return NULL;
5757 9f7d7167 2018-04-29 stsp }
5758 ce5b7c56 2019-07-09 stsp
5759 6458efa5 2020-11-24 stsp static const struct got_error *
5760 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
5761 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
5762 6458efa5 2020-11-24 stsp {
5763 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
5764 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
5765 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
5766 6458efa5 2020-11-24 stsp int obj_type;
5767 6458efa5 2020-11-24 stsp
5768 c42c9805 2020-11-24 stsp *commit_id = NULL;
5769 6458efa5 2020-11-24 stsp
5770 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
5771 6458efa5 2020-11-24 stsp if (err)
5772 6458efa5 2020-11-24 stsp return err;
5773 6458efa5 2020-11-24 stsp
5774 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
5775 6458efa5 2020-11-24 stsp if (err)
5776 6458efa5 2020-11-24 stsp goto done;
5777 6458efa5 2020-11-24 stsp
5778 6458efa5 2020-11-24 stsp switch (obj_type) {
5779 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
5780 c42c9805 2020-11-24 stsp *commit_id = obj_id;
5781 6458efa5 2020-11-24 stsp break;
5782 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
5783 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
5784 6458efa5 2020-11-24 stsp if (err)
5785 6458efa5 2020-11-24 stsp goto done;
5786 c42c9805 2020-11-24 stsp free(obj_id);
5787 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
5788 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
5789 c42c9805 2020-11-24 stsp if (err)
5790 6458efa5 2020-11-24 stsp goto done;
5791 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
5792 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5793 c42c9805 2020-11-24 stsp goto done;
5794 c42c9805 2020-11-24 stsp }
5795 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
5796 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
5797 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
5798 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
5799 c42c9805 2020-11-24 stsp goto done;
5800 c42c9805 2020-11-24 stsp }
5801 6458efa5 2020-11-24 stsp break;
5802 6458efa5 2020-11-24 stsp default:
5803 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5804 c42c9805 2020-11-24 stsp break;
5805 6458efa5 2020-11-24 stsp }
5806 6458efa5 2020-11-24 stsp
5807 c42c9805 2020-11-24 stsp done:
5808 c42c9805 2020-11-24 stsp if (tag)
5809 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
5810 c42c9805 2020-11-24 stsp if (err) {
5811 c42c9805 2020-11-24 stsp free(*commit_id);
5812 c42c9805 2020-11-24 stsp *commit_id = NULL;
5813 c42c9805 2020-11-24 stsp }
5814 c42c9805 2020-11-24 stsp return err;
5815 c42c9805 2020-11-24 stsp }
5816 c42c9805 2020-11-24 stsp
5817 c42c9805 2020-11-24 stsp static const struct got_error *
5818 c42c9805 2020-11-24 stsp log_ref_entry(struct tog_view **new_view, int begin_x,
5819 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
5820 c42c9805 2020-11-24 stsp {
5821 c42c9805 2020-11-24 stsp struct tog_view *log_view;
5822 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
5823 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
5824 c42c9805 2020-11-24 stsp
5825 c42c9805 2020-11-24 stsp *new_view = NULL;
5826 c42c9805 2020-11-24 stsp
5827 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
5828 c42c9805 2020-11-24 stsp if (err) {
5829 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
5830 c42c9805 2020-11-24 stsp return err;
5831 c42c9805 2020-11-24 stsp else
5832 c42c9805 2020-11-24 stsp return NULL;
5833 c42c9805 2020-11-24 stsp }
5834 c42c9805 2020-11-24 stsp
5835 6458efa5 2020-11-24 stsp log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
5836 6458efa5 2020-11-24 stsp if (log_view == NULL) {
5837 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
5838 6458efa5 2020-11-24 stsp goto done;
5839 6458efa5 2020-11-24 stsp }
5840 6458efa5 2020-11-24 stsp
5841 6458efa5 2020-11-24 stsp err = open_log_view(log_view, commit_id, repo, NULL, "", 0);
5842 6458efa5 2020-11-24 stsp done:
5843 6458efa5 2020-11-24 stsp if (err)
5844 6458efa5 2020-11-24 stsp view_close(log_view);
5845 6458efa5 2020-11-24 stsp else
5846 6458efa5 2020-11-24 stsp *new_view = log_view;
5847 c42c9805 2020-11-24 stsp free(commit_id);
5848 6458efa5 2020-11-24 stsp return err;
5849 6458efa5 2020-11-24 stsp }
5850 6458efa5 2020-11-24 stsp
5851 ce5b7c56 2019-07-09 stsp static void
5852 694d3271 2020-12-01 naddy ref_scroll_up(struct tog_view *view, int maxscroll)
5853 6458efa5 2020-11-24 stsp {
5854 694d3271 2020-12-01 naddy struct tog_ref_view_state *s = &view->state.ref;
5855 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
5856 34ba6917 2020-11-30 stsp int i = 0;
5857 6458efa5 2020-11-24 stsp
5858 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
5859 6458efa5 2020-11-24 stsp return;
5860 6458efa5 2020-11-24 stsp
5861 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
5862 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
5863 34ba6917 2020-11-30 stsp if (re == NULL)
5864 34ba6917 2020-11-30 stsp break;
5865 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
5866 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
5867 6458efa5 2020-11-24 stsp }
5868 6458efa5 2020-11-24 stsp }
5869 6458efa5 2020-11-24 stsp
5870 34ba6917 2020-11-30 stsp static void
5871 694d3271 2020-12-01 naddy ref_scroll_down(struct tog_view *view, int maxscroll)
5872 6458efa5 2020-11-24 stsp {
5873 694d3271 2020-12-01 naddy struct tog_ref_view_state *s = &view->state.ref;
5874 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
5875 6458efa5 2020-11-24 stsp int n = 0;
5876 6458efa5 2020-11-24 stsp
5877 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
5878 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
5879 6458efa5 2020-11-24 stsp else
5880 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
5881 6458efa5 2020-11-24 stsp
5882 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
5883 6458efa5 2020-11-24 stsp while (next && last && n++ < maxscroll) {
5884 6458efa5 2020-11-24 stsp last = TAILQ_NEXT(last, entry);
5885 6458efa5 2020-11-24 stsp if (last) {
5886 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
5887 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
5888 6458efa5 2020-11-24 stsp }
5889 6458efa5 2020-11-24 stsp }
5890 6458efa5 2020-11-24 stsp }
5891 6458efa5 2020-11-24 stsp
5892 6458efa5 2020-11-24 stsp static const struct got_error *
5893 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
5894 6458efa5 2020-11-24 stsp {
5895 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5896 6458efa5 2020-11-24 stsp
5897 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
5898 6458efa5 2020-11-24 stsp return NULL;
5899 6458efa5 2020-11-24 stsp }
5900 6458efa5 2020-11-24 stsp
5901 6458efa5 2020-11-24 stsp static int
5902 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
5903 6458efa5 2020-11-24 stsp {
5904 6458efa5 2020-11-24 stsp regmatch_t regmatch;
5905 6458efa5 2020-11-24 stsp
5906 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
5907 6458efa5 2020-11-24 stsp 0) == 0;
5908 6458efa5 2020-11-24 stsp }
5909 6458efa5 2020-11-24 stsp
5910 6458efa5 2020-11-24 stsp static const struct got_error *
5911 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
5912 6458efa5 2020-11-24 stsp {
5913 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5914 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
5915 6458efa5 2020-11-24 stsp
5916 6458efa5 2020-11-24 stsp if (!view->searching) {
5917 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5918 6458efa5 2020-11-24 stsp return NULL;
5919 6458efa5 2020-11-24 stsp }
5920 6458efa5 2020-11-24 stsp
5921 6458efa5 2020-11-24 stsp if (s->matched_entry) {
5922 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
5923 6458efa5 2020-11-24 stsp if (s->selected_entry)
5924 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
5925 6458efa5 2020-11-24 stsp else
5926 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
5927 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
5928 6458efa5 2020-11-24 stsp } else {
5929 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
5930 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
5931 6458efa5 2020-11-24 stsp else
5932 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
5933 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
5934 6458efa5 2020-11-24 stsp }
5935 6458efa5 2020-11-24 stsp } else {
5936 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5937 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
5938 6458efa5 2020-11-24 stsp else
5939 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
5940 6458efa5 2020-11-24 stsp }
5941 6458efa5 2020-11-24 stsp
5942 6458efa5 2020-11-24 stsp while (1) {
5943 6458efa5 2020-11-24 stsp if (re == NULL) {
5944 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
5945 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5946 6458efa5 2020-11-24 stsp return NULL;
5947 6458efa5 2020-11-24 stsp }
5948 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5949 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
5950 6458efa5 2020-11-24 stsp else
5951 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
5952 6458efa5 2020-11-24 stsp }
5953 6458efa5 2020-11-24 stsp
5954 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
5955 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5956 6458efa5 2020-11-24 stsp s->matched_entry = re;
5957 6458efa5 2020-11-24 stsp break;
5958 6458efa5 2020-11-24 stsp }
5959 6458efa5 2020-11-24 stsp
5960 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5961 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
5962 6458efa5 2020-11-24 stsp else
5963 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
5964 6458efa5 2020-11-24 stsp }
5965 6458efa5 2020-11-24 stsp
5966 6458efa5 2020-11-24 stsp if (s->matched_entry) {
5967 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
5968 6458efa5 2020-11-24 stsp s->selected = 0;
5969 6458efa5 2020-11-24 stsp }
5970 6458efa5 2020-11-24 stsp
5971 6458efa5 2020-11-24 stsp return NULL;
5972 6458efa5 2020-11-24 stsp }
5973 6458efa5 2020-11-24 stsp
5974 6458efa5 2020-11-24 stsp static const struct got_error *
5975 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
5976 6458efa5 2020-11-24 stsp {
5977 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
5978 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5979 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
5980 6458efa5 2020-11-24 stsp char *line = NULL;
5981 6458efa5 2020-11-24 stsp wchar_t *wline;
5982 6458efa5 2020-11-24 stsp struct tog_color *tc;
5983 6458efa5 2020-11-24 stsp int width, n;
5984 6458efa5 2020-11-24 stsp int limit = view->nlines;
5985 6458efa5 2020-11-24 stsp
5986 6458efa5 2020-11-24 stsp werase(view->window);
5987 6458efa5 2020-11-24 stsp
5988 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
5989 6458efa5 2020-11-24 stsp
5990 6458efa5 2020-11-24 stsp if (limit == 0)
5991 6458efa5 2020-11-24 stsp return NULL;
5992 6458efa5 2020-11-24 stsp
5993 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
5994 6458efa5 2020-11-24 stsp
5995 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
5996 6458efa5 2020-11-24 stsp s->nrefs) == -1)
5997 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
5998 6458efa5 2020-11-24 stsp
5999 6458efa5 2020-11-24 stsp err = format_line(&wline, &width, line, view->ncols, 0);
6000 6458efa5 2020-11-24 stsp if (err) {
6001 6458efa5 2020-11-24 stsp free(line);
6002 6458efa5 2020-11-24 stsp return err;
6003 6458efa5 2020-11-24 stsp }
6004 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
6005 6458efa5 2020-11-24 stsp wstandout(view->window);
6006 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
6007 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
6008 6458efa5 2020-11-24 stsp wstandend(view->window);
6009 6458efa5 2020-11-24 stsp free(wline);
6010 6458efa5 2020-11-24 stsp wline = NULL;
6011 6458efa5 2020-11-24 stsp free(line);
6012 6458efa5 2020-11-24 stsp line = NULL;
6013 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
6014 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
6015 6458efa5 2020-11-24 stsp if (--limit <= 0)
6016 6458efa5 2020-11-24 stsp return NULL;
6017 6458efa5 2020-11-24 stsp
6018 6458efa5 2020-11-24 stsp n = 0;
6019 6458efa5 2020-11-24 stsp while (re && limit > 0) {
6020 6458efa5 2020-11-24 stsp char *line = NULL;
6021 6458efa5 2020-11-24 stsp
6022 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
6023 6458efa5 2020-11-24 stsp if (asprintf(&line, "%s -> %s",
6024 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref),
6025 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
6026 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
6027 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
6028 6458efa5 2020-11-24 stsp struct got_object_id *id;
6029 6458efa5 2020-11-24 stsp char *id_str;
6030 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
6031 6458efa5 2020-11-24 stsp if (err)
6032 6458efa5 2020-11-24 stsp return err;
6033 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
6034 6458efa5 2020-11-24 stsp if (err) {
6035 6458efa5 2020-11-24 stsp free(id);
6036 6458efa5 2020-11-24 stsp return err;
6037 6458efa5 2020-11-24 stsp }
6038 6458efa5 2020-11-24 stsp if (asprintf(&line, "%s: %s",
6039 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
6040 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
6041 6458efa5 2020-11-24 stsp free(id);
6042 6458efa5 2020-11-24 stsp free(id_str);
6043 6458efa5 2020-11-24 stsp return err;
6044 6458efa5 2020-11-24 stsp }
6045 6458efa5 2020-11-24 stsp free(id);
6046 6458efa5 2020-11-24 stsp free(id_str);
6047 6458efa5 2020-11-24 stsp } else {
6048 6458efa5 2020-11-24 stsp line = strdup(got_ref_get_name(re->ref));
6049 6458efa5 2020-11-24 stsp if (line == NULL)
6050 6458efa5 2020-11-24 stsp return got_error_from_errno("strdup");
6051 6458efa5 2020-11-24 stsp }
6052 6458efa5 2020-11-24 stsp
6053 6458efa5 2020-11-24 stsp err = format_line(&wline, &width, line, view->ncols, 0);
6054 6458efa5 2020-11-24 stsp if (err) {
6055 6458efa5 2020-11-24 stsp free(line);
6056 6458efa5 2020-11-24 stsp return err;
6057 6458efa5 2020-11-24 stsp }
6058 6458efa5 2020-11-24 stsp if (n == s->selected) {
6059 6458efa5 2020-11-24 stsp if (view->focussed)
6060 6458efa5 2020-11-24 stsp wstandout(view->window);
6061 6458efa5 2020-11-24 stsp s->selected_entry = re;
6062 6458efa5 2020-11-24 stsp }
6063 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
6064 6458efa5 2020-11-24 stsp if (tc)
6065 6458efa5 2020-11-24 stsp wattr_on(view->window,
6066 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
6067 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
6068 6458efa5 2020-11-24 stsp if (tc)
6069 6458efa5 2020-11-24 stsp wattr_off(view->window,
6070 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
6071 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
6072 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
6073 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
6074 6458efa5 2020-11-24 stsp wstandend(view->window);
6075 6458efa5 2020-11-24 stsp free(line);
6076 6458efa5 2020-11-24 stsp free(wline);
6077 6458efa5 2020-11-24 stsp wline = NULL;
6078 6458efa5 2020-11-24 stsp n++;
6079 6458efa5 2020-11-24 stsp s->ndisplayed++;
6080 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
6081 6458efa5 2020-11-24 stsp
6082 6458efa5 2020-11-24 stsp limit--;
6083 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
6084 6458efa5 2020-11-24 stsp }
6085 6458efa5 2020-11-24 stsp
6086 6458efa5 2020-11-24 stsp view_vborder(view);
6087 6458efa5 2020-11-24 stsp return err;
6088 6458efa5 2020-11-24 stsp }
6089 6458efa5 2020-11-24 stsp
6090 6458efa5 2020-11-24 stsp static const struct got_error *
6091 c42c9805 2020-11-24 stsp browse_ref_tree(struct tog_view **new_view, int begin_x,
6092 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
6093 c42c9805 2020-11-24 stsp {
6094 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
6095 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL, *tree_id = NULL;
6096 c42c9805 2020-11-24 stsp struct got_tree_object *tree = NULL;
6097 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
6098 c42c9805 2020-11-24 stsp
6099 c42c9805 2020-11-24 stsp *new_view = NULL;
6100 c42c9805 2020-11-24 stsp
6101 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
6102 c42c9805 2020-11-24 stsp if (err) {
6103 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
6104 c42c9805 2020-11-24 stsp return err;
6105 c42c9805 2020-11-24 stsp else
6106 c42c9805 2020-11-24 stsp return NULL;
6107 c42c9805 2020-11-24 stsp }
6108 c42c9805 2020-11-24 stsp
6109 c42c9805 2020-11-24 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, "/");
6110 c42c9805 2020-11-24 stsp if (err)
6111 c42c9805 2020-11-24 stsp goto done;
6112 c42c9805 2020-11-24 stsp
6113 c42c9805 2020-11-24 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
6114 c42c9805 2020-11-24 stsp if (err)
6115 c42c9805 2020-11-24 stsp goto done;
6116 c42c9805 2020-11-24 stsp
6117 c42c9805 2020-11-24 stsp tree_view = view_open(0, 0, 0, begin_x, TOG_VIEW_TREE);
6118 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
6119 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
6120 c42c9805 2020-11-24 stsp goto done;
6121 c42c9805 2020-11-24 stsp }
6122 c42c9805 2020-11-24 stsp
6123 c42c9805 2020-11-24 stsp err = open_tree_view(tree_view, tree, commit_id, repo);
6124 c42c9805 2020-11-24 stsp if (err)
6125 c42c9805 2020-11-24 stsp goto done;
6126 c42c9805 2020-11-24 stsp
6127 c42c9805 2020-11-24 stsp *new_view = tree_view;
6128 c42c9805 2020-11-24 stsp done:
6129 c42c9805 2020-11-24 stsp free(commit_id);
6130 c42c9805 2020-11-24 stsp free(tree_id);
6131 c42c9805 2020-11-24 stsp if (err) {
6132 c42c9805 2020-11-24 stsp if (tree)
6133 c42c9805 2020-11-24 stsp got_object_tree_close(tree);
6134 c42c9805 2020-11-24 stsp }
6135 c42c9805 2020-11-24 stsp return err;
6136 c42c9805 2020-11-24 stsp }
6137 c42c9805 2020-11-24 stsp static const struct got_error *
6138 6458efa5 2020-11-24 stsp input_ref_view(struct tog_view **new_view, struct tog_view **dead_view,
6139 6458efa5 2020-11-24 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
6140 6458efa5 2020-11-24 stsp {
6141 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
6142 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
6143 c42c9805 2020-11-24 stsp struct tog_view *log_view, *tree_view;
6144 34ba6917 2020-11-30 stsp int begin_x = 0;
6145 6458efa5 2020-11-24 stsp
6146 6458efa5 2020-11-24 stsp switch (ch) {
6147 6458efa5 2020-11-24 stsp case 'i':
6148 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
6149 6458efa5 2020-11-24 stsp break;
6150 6458efa5 2020-11-24 stsp case KEY_ENTER:
6151 6458efa5 2020-11-24 stsp case '\r':
6152 6458efa5 2020-11-24 stsp if (!s->selected_entry)
6153 6458efa5 2020-11-24 stsp break;
6154 6458efa5 2020-11-24 stsp if (view_is_parent_view(view))
6155 6458efa5 2020-11-24 stsp begin_x = view_split_begin_x(view->begin_x);
6156 6458efa5 2020-11-24 stsp err = log_ref_entry(&log_view, begin_x, s->selected_entry,
6157 6458efa5 2020-11-24 stsp s->repo);
6158 6458efa5 2020-11-24 stsp if (view_is_parent_view(view)) {
6159 6458efa5 2020-11-24 stsp err = view_close_child(view);
6160 6458efa5 2020-11-24 stsp if (err)
6161 6458efa5 2020-11-24 stsp return err;
6162 6458efa5 2020-11-24 stsp err = view_set_child(view, log_view);
6163 6458efa5 2020-11-24 stsp if (err) {
6164 6458efa5 2020-11-24 stsp view_close(log_view);
6165 6458efa5 2020-11-24 stsp break;
6166 6458efa5 2020-11-24 stsp }
6167 6458efa5 2020-11-24 stsp *focus_view = log_view;
6168 6458efa5 2020-11-24 stsp view->child_focussed = 1;
6169 6458efa5 2020-11-24 stsp } else
6170 6458efa5 2020-11-24 stsp *new_view = log_view;
6171 6458efa5 2020-11-24 stsp break;
6172 c42c9805 2020-11-24 stsp case 't':
6173 c42c9805 2020-11-24 stsp if (!s->selected_entry)
6174 c42c9805 2020-11-24 stsp break;
6175 c42c9805 2020-11-24 stsp if (view_is_parent_view(view))
6176 c42c9805 2020-11-24 stsp begin_x = view_split_begin_x(view->begin_x);
6177 c42c9805 2020-11-24 stsp err = browse_ref_tree(&tree_view, begin_x, s->selected_entry,
6178 c42c9805 2020-11-24 stsp s->repo);
6179 c42c9805 2020-11-24 stsp if (err || tree_view == NULL)
6180 c42c9805 2020-11-24 stsp break;
6181 c42c9805 2020-11-24 stsp if (view_is_parent_view(view)) {
6182 c42c9805 2020-11-24 stsp err = view_close_child(view);
6183 c42c9805 2020-11-24 stsp if (err)
6184 c42c9805 2020-11-24 stsp return err;
6185 c42c9805 2020-11-24 stsp err = view_set_child(view, tree_view);
6186 c42c9805 2020-11-24 stsp if (err) {
6187 c42c9805 2020-11-24 stsp view_close(tree_view);
6188 c42c9805 2020-11-24 stsp break;
6189 c42c9805 2020-11-24 stsp }
6190 c42c9805 2020-11-24 stsp *focus_view = tree_view;
6191 c42c9805 2020-11-24 stsp view->child_focussed = 1;
6192 c42c9805 2020-11-24 stsp } else
6193 c42c9805 2020-11-24 stsp *new_view = tree_view;
6194 c42c9805 2020-11-24 stsp break;
6195 6458efa5 2020-11-24 stsp case 'k':
6196 6458efa5 2020-11-24 stsp case KEY_UP:
6197 6458efa5 2020-11-24 stsp if (s->selected > 0) {
6198 6458efa5 2020-11-24 stsp s->selected--;
6199 6458efa5 2020-11-24 stsp break;
6200 34ba6917 2020-11-30 stsp }
6201 694d3271 2020-12-01 naddy ref_scroll_up(view, 1);
6202 6458efa5 2020-11-24 stsp break;
6203 6458efa5 2020-11-24 stsp case KEY_PPAGE:
6204 6458efa5 2020-11-24 stsp case CTRL('b'):
6205 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
6206 34ba6917 2020-11-30 stsp s->selected = 0;
6207 694d3271 2020-12-01 naddy ref_scroll_up(view, MAX(0, view->nlines - 1));
6208 6458efa5 2020-11-24 stsp break;
6209 6458efa5 2020-11-24 stsp case 'j':
6210 6458efa5 2020-11-24 stsp case KEY_DOWN:
6211 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
6212 6458efa5 2020-11-24 stsp s->selected++;
6213 6458efa5 2020-11-24 stsp break;
6214 6458efa5 2020-11-24 stsp }
6215 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL)
6216 6458efa5 2020-11-24 stsp /* can't scroll any further */
6217 6458efa5 2020-11-24 stsp break;
6218 694d3271 2020-12-01 naddy ref_scroll_down(view, 1);
6219 6458efa5 2020-11-24 stsp break;
6220 6458efa5 2020-11-24 stsp case KEY_NPAGE:
6221 6458efa5 2020-11-24 stsp case CTRL('f'):
6222 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
6223 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
6224 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
6225 6458efa5 2020-11-24 stsp s->selected = s->ndisplayed - 1;
6226 6458efa5 2020-11-24 stsp break;
6227 6458efa5 2020-11-24 stsp }
6228 694d3271 2020-12-01 naddy ref_scroll_down(view, view->nlines - 1);
6229 6458efa5 2020-11-24 stsp break;
6230 6458efa5 2020-11-24 stsp case CTRL('l'):
6231 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
6232 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
6233 6458efa5 2020-11-24 stsp break;
6234 6458efa5 2020-11-24 stsp case KEY_RESIZE:
6235 6458efa5 2020-11-24 stsp if (s->selected > view->nlines)
6236 6458efa5 2020-11-24 stsp s->selected = s->ndisplayed - 1;
6237 6458efa5 2020-11-24 stsp break;
6238 6458efa5 2020-11-24 stsp default:
6239 6458efa5 2020-11-24 stsp break;
6240 6458efa5 2020-11-24 stsp }
6241 6458efa5 2020-11-24 stsp
6242 6458efa5 2020-11-24 stsp return err;
6243 6458efa5 2020-11-24 stsp }
6244 6458efa5 2020-11-24 stsp
6245 6458efa5 2020-11-24 stsp __dead static void
6246 6458efa5 2020-11-24 stsp usage_ref(void)
6247 6458efa5 2020-11-24 stsp {
6248 6458efa5 2020-11-24 stsp endwin();
6249 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
6250 6458efa5 2020-11-24 stsp getprogname());
6251 6458efa5 2020-11-24 stsp exit(1);
6252 6458efa5 2020-11-24 stsp }
6253 6458efa5 2020-11-24 stsp
6254 6458efa5 2020-11-24 stsp static const struct got_error *
6255 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
6256 6458efa5 2020-11-24 stsp {
6257 6458efa5 2020-11-24 stsp const struct got_error *error;
6258 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
6259 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
6260 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
6261 6458efa5 2020-11-24 stsp int ch;
6262 6458efa5 2020-11-24 stsp struct tog_view *view;
6263 6458efa5 2020-11-24 stsp
6264 6458efa5 2020-11-24 stsp #ifndef PROFILE
6265 6458efa5 2020-11-24 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
6266 6458efa5 2020-11-24 stsp NULL) == -1)
6267 6458efa5 2020-11-24 stsp err(1, "pledge");
6268 6458efa5 2020-11-24 stsp #endif
6269 6458efa5 2020-11-24 stsp
6270 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
6271 6458efa5 2020-11-24 stsp switch (ch) {
6272 6458efa5 2020-11-24 stsp case 'r':
6273 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
6274 6458efa5 2020-11-24 stsp if (repo_path == NULL)
6275 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
6276 6458efa5 2020-11-24 stsp optarg);
6277 6458efa5 2020-11-24 stsp break;
6278 6458efa5 2020-11-24 stsp default:
6279 e99e2d15 2020-11-24 naddy usage_ref();
6280 6458efa5 2020-11-24 stsp /* NOTREACHED */
6281 6458efa5 2020-11-24 stsp }
6282 6458efa5 2020-11-24 stsp }
6283 6458efa5 2020-11-24 stsp
6284 6458efa5 2020-11-24 stsp argc -= optind;
6285 6458efa5 2020-11-24 stsp argv += optind;
6286 6458efa5 2020-11-24 stsp
6287 6458efa5 2020-11-24 stsp if (argc > 1)
6288 e99e2d15 2020-11-24 naddy usage_ref();
6289 6458efa5 2020-11-24 stsp
6290 6458efa5 2020-11-24 stsp cwd = getcwd(NULL, 0);
6291 6458efa5 2020-11-24 stsp if (cwd == NULL)
6292 6458efa5 2020-11-24 stsp return got_error_from_errno("getcwd");
6293 6458efa5 2020-11-24 stsp
6294 6458efa5 2020-11-24 stsp error = got_worktree_open(&worktree, cwd);
6295 6458efa5 2020-11-24 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6296 6458efa5 2020-11-24 stsp goto done;
6297 6458efa5 2020-11-24 stsp
6298 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
6299 6458efa5 2020-11-24 stsp if (worktree)
6300 6458efa5 2020-11-24 stsp repo_path =
6301 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
6302 6458efa5 2020-11-24 stsp else
6303 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
6304 6458efa5 2020-11-24 stsp }
6305 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
6306 6458efa5 2020-11-24 stsp error = got_error_from_errno("strdup");
6307 6458efa5 2020-11-24 stsp goto done;
6308 6458efa5 2020-11-24 stsp }
6309 6458efa5 2020-11-24 stsp
6310 6458efa5 2020-11-24 stsp error = got_repo_open(&repo, repo_path, NULL);
6311 6458efa5 2020-11-24 stsp if (error != NULL)
6312 6458efa5 2020-11-24 stsp goto done;
6313 6458efa5 2020-11-24 stsp
6314 6458efa5 2020-11-24 stsp init_curses();
6315 6458efa5 2020-11-24 stsp
6316 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6317 6458efa5 2020-11-24 stsp if (error)
6318 6458efa5 2020-11-24 stsp goto done;
6319 6458efa5 2020-11-24 stsp
6320 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
6321 6458efa5 2020-11-24 stsp if (view == NULL) {
6322 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
6323 6458efa5 2020-11-24 stsp goto done;
6324 6458efa5 2020-11-24 stsp }
6325 6458efa5 2020-11-24 stsp
6326 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
6327 6458efa5 2020-11-24 stsp if (error)
6328 6458efa5 2020-11-24 stsp goto done;
6329 6458efa5 2020-11-24 stsp
6330 6458efa5 2020-11-24 stsp if (worktree) {
6331 6458efa5 2020-11-24 stsp /* Release work tree lock. */
6332 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
6333 6458efa5 2020-11-24 stsp worktree = NULL;
6334 6458efa5 2020-11-24 stsp }
6335 6458efa5 2020-11-24 stsp error = view_loop(view);
6336 6458efa5 2020-11-24 stsp done:
6337 6458efa5 2020-11-24 stsp free(repo_path);
6338 6458efa5 2020-11-24 stsp free(cwd);
6339 6458efa5 2020-11-24 stsp if (repo)
6340 6458efa5 2020-11-24 stsp got_repo_close(repo);
6341 6458efa5 2020-11-24 stsp return error;
6342 6458efa5 2020-11-24 stsp }
6343 6458efa5 2020-11-24 stsp
6344 6458efa5 2020-11-24 stsp static void
6345 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
6346 ce5b7c56 2019-07-09 stsp {
6347 ce5b7c56 2019-07-09 stsp int i;
6348 9f7d7167 2018-04-29 stsp
6349 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
6350 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
6351 ce5b7c56 2019-07-09 stsp struct tog_cmd *cmd = &tog_commands[i];
6352 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
6353 ce5b7c56 2019-07-09 stsp }
6354 6879ba42 2020-10-01 naddy fputc('\n', fp);
6355 ce5b7c56 2019-07-09 stsp }
6356 ce5b7c56 2019-07-09 stsp
6357 4ed7e80c 2018-05-20 stsp __dead static void
6358 6879ba42 2020-10-01 naddy usage(int hflag, int status)
6359 9f7d7167 2018-04-29 stsp {
6360 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
6361 6879ba42 2020-10-01 naddy
6362 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] [command] [arg ...]\n",
6363 6879ba42 2020-10-01 naddy getprogname());
6364 6879ba42 2020-10-01 naddy if (hflag) {
6365 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
6366 6879ba42 2020-10-01 naddy list_commands(fp);
6367 ee85c5e8 2020-02-29 stsp }
6368 6879ba42 2020-10-01 naddy exit(status);
6369 9f7d7167 2018-04-29 stsp }
6370 9f7d7167 2018-04-29 stsp
6371 c2301be8 2018-04-30 stsp static char **
6372 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
6373 c2301be8 2018-04-30 stsp {
6374 ee85c5e8 2020-02-29 stsp va_list ap;
6375 c2301be8 2018-04-30 stsp char **argv;
6376 ee85c5e8 2020-02-29 stsp int i;
6377 c2301be8 2018-04-30 stsp
6378 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
6379 ee85c5e8 2020-02-29 stsp
6380 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
6381 c2301be8 2018-04-30 stsp if (argv == NULL)
6382 c2301be8 2018-04-30 stsp err(1, "calloc");
6383 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
6384 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
6385 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
6386 e10c916e 2019-09-15 hiltjo err(1, "strdup");
6387 c2301be8 2018-04-30 stsp }
6388 c2301be8 2018-04-30 stsp
6389 ee85c5e8 2020-02-29 stsp va_end(ap);
6390 c2301be8 2018-04-30 stsp return argv;
6391 ee85c5e8 2020-02-29 stsp }
6392 ee85c5e8 2020-02-29 stsp
6393 ee85c5e8 2020-02-29 stsp /*
6394 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
6395 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
6396 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
6397 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
6398 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
6399 ee85c5e8 2020-02-29 stsp */
6400 ee85c5e8 2020-02-29 stsp static const struct got_error *
6401 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
6402 ee85c5e8 2020-02-29 stsp {
6403 ee85c5e8 2020-02-29 stsp const struct got_error *error = NULL;
6404 ee85c5e8 2020-02-29 stsp struct tog_cmd *cmd = NULL;
6405 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
6406 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
6407 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
6408 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6409 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
6410 ee85c5e8 2020-02-29 stsp
6411 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
6412 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
6413 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
6414 ee85c5e8 2020-02-29 stsp
6415 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
6416 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6417 ee85c5e8 2020-02-29 stsp goto done;
6418 ee85c5e8 2020-02-29 stsp
6419 ee85c5e8 2020-02-29 stsp if (worktree)
6420 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
6421 ee85c5e8 2020-02-29 stsp else
6422 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
6423 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
6424 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
6425 ee85c5e8 2020-02-29 stsp goto done;
6426 ee85c5e8 2020-02-29 stsp }
6427 ee85c5e8 2020-02-29 stsp
6428 ee85c5e8 2020-02-29 stsp error = got_repo_open(&repo, repo_path, NULL);
6429 ee85c5e8 2020-02-29 stsp if (error != NULL)
6430 ee85c5e8 2020-02-29 stsp goto done;
6431 ee85c5e8 2020-02-29 stsp
6432 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
6433 ee85c5e8 2020-02-29 stsp repo, worktree);
6434 ee85c5e8 2020-02-29 stsp if (error)
6435 ee85c5e8 2020-02-29 stsp goto done;
6436 ee85c5e8 2020-02-29 stsp
6437 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
6438 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
6439 ee85c5e8 2020-02-29 stsp GOT_OBJ_TYPE_COMMIT, 1, repo);
6440 ee85c5e8 2020-02-29 stsp if (error)
6441 ee85c5e8 2020-02-29 stsp goto done;
6442 ee85c5e8 2020-02-29 stsp
6443 ee85c5e8 2020-02-29 stsp if (worktree) {
6444 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
6445 ee85c5e8 2020-02-29 stsp worktree = NULL;
6446 ee85c5e8 2020-02-29 stsp }
6447 ee85c5e8 2020-02-29 stsp
6448 ee85c5e8 2020-02-29 stsp error = got_object_id_by_path(&id, repo, commit_id, in_repo_path);
6449 ee85c5e8 2020-02-29 stsp if (error) {
6450 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
6451 ee85c5e8 2020-02-29 stsp goto done;
6452 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
6453 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
6454 6879ba42 2020-10-01 naddy usage(1, 1);
6455 ee85c5e8 2020-02-29 stsp /* not reached */
6456 ee85c5e8 2020-02-29 stsp }
6457 ee85c5e8 2020-02-29 stsp
6458 ee85c5e8 2020-02-29 stsp got_repo_close(repo);
6459 ee85c5e8 2020-02-29 stsp repo = NULL;
6460 ee85c5e8 2020-02-29 stsp
6461 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
6462 ee85c5e8 2020-02-29 stsp if (error)
6463 ee85c5e8 2020-02-29 stsp goto done;
6464 ee85c5e8 2020-02-29 stsp
6465 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
6466 ee85c5e8 2020-02-29 stsp argc = 4;
6467 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
6468 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
6469 ee85c5e8 2020-02-29 stsp done:
6470 ee85c5e8 2020-02-29 stsp if (repo)
6471 ee85c5e8 2020-02-29 stsp got_repo_close(repo);
6472 ee85c5e8 2020-02-29 stsp if (worktree)
6473 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
6474 ee85c5e8 2020-02-29 stsp free(id);
6475 ee85c5e8 2020-02-29 stsp free(commit_id_str);
6476 ee85c5e8 2020-02-29 stsp free(commit_id);
6477 ee85c5e8 2020-02-29 stsp free(cwd);
6478 ee85c5e8 2020-02-29 stsp free(repo_path);
6479 ee85c5e8 2020-02-29 stsp free(in_repo_path);
6480 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
6481 ee85c5e8 2020-02-29 stsp int i;
6482 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
6483 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
6484 ee85c5e8 2020-02-29 stsp free(cmd_argv);
6485 ee85c5e8 2020-02-29 stsp }
6486 ee85c5e8 2020-02-29 stsp return error;
6487 c2301be8 2018-04-30 stsp }
6488 c2301be8 2018-04-30 stsp
6489 9f7d7167 2018-04-29 stsp int
6490 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
6491 9f7d7167 2018-04-29 stsp {
6492 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
6493 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = NULL;
6494 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
6495 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
6496 83cd27f8 2020-01-13 stsp static struct option longopts[] = {
6497 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
6498 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
6499 83cd27f8 2020-01-13 stsp };
6500 9f7d7167 2018-04-29 stsp
6501 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
6502 9f7d7167 2018-04-29 stsp
6503 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
6504 9f7d7167 2018-04-29 stsp switch (ch) {
6505 9f7d7167 2018-04-29 stsp case 'h':
6506 9f7d7167 2018-04-29 stsp hflag = 1;
6507 9f7d7167 2018-04-29 stsp break;
6508 53ccebc2 2019-07-30 stsp case 'V':
6509 53ccebc2 2019-07-30 stsp Vflag = 1;
6510 53ccebc2 2019-07-30 stsp break;
6511 9f7d7167 2018-04-29 stsp default:
6512 6879ba42 2020-10-01 naddy usage(hflag, 1);
6513 9f7d7167 2018-04-29 stsp /* NOTREACHED */
6514 9f7d7167 2018-04-29 stsp }
6515 9f7d7167 2018-04-29 stsp }
6516 9f7d7167 2018-04-29 stsp
6517 9f7d7167 2018-04-29 stsp argc -= optind;
6518 9f7d7167 2018-04-29 stsp argv += optind;
6519 9814e6a3 2020-09-27 naddy optind = 1;
6520 c2301be8 2018-04-30 stsp optreset = 1;
6521 9f7d7167 2018-04-29 stsp
6522 53ccebc2 2019-07-30 stsp if (Vflag) {
6523 53ccebc2 2019-07-30 stsp got_version_print_str();
6524 6879ba42 2020-10-01 naddy return 0;
6525 53ccebc2 2019-07-30 stsp }
6526 53ccebc2 2019-07-30 stsp
6527 c2301be8 2018-04-30 stsp if (argc == 0) {
6528 f29d3e89 2018-06-23 stsp if (hflag)
6529 6879ba42 2020-10-01 naddy usage(hflag, 0);
6530 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
6531 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
6532 c2301be8 2018-04-30 stsp argc = 1;
6533 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
6534 c2301be8 2018-04-30 stsp } else {
6535 9f7d7167 2018-04-29 stsp int i;
6536 9f7d7167 2018-04-29 stsp
6537 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
6538 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
6539 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
6540 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
6541 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
6542 9f7d7167 2018-04-29 stsp break;
6543 9f7d7167 2018-04-29 stsp }
6544 9f7d7167 2018-04-29 stsp }
6545 ee85c5e8 2020-02-29 stsp }
6546 3642c4c6 2019-07-09 stsp
6547 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
6548 ee85c5e8 2020-02-29 stsp if (argc != 1)
6549 6879ba42 2020-10-01 naddy usage(0, 1);
6550 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
6551 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
6552 ee85c5e8 2020-02-29 stsp } else {
6553 ee85c5e8 2020-02-29 stsp if (hflag)
6554 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
6555 ee85c5e8 2020-02-29 stsp else
6556 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
6557 9f7d7167 2018-04-29 stsp }
6558 9f7d7167 2018-04-29 stsp
6559 9f7d7167 2018-04-29 stsp endwin();
6560 b46c1e04 2020-09-20 naddy putchar('\n');
6561 a2f4a359 2020-02-28 stsp if (cmd_argv) {
6562 a2f4a359 2020-02-28 stsp int i;
6563 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
6564 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
6565 a2f4a359 2020-02-28 stsp free(cmd_argv);
6566 a2f4a359 2020-02-28 stsp }
6567 a2f4a359 2020-02-28 stsp
6568 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
6569 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
6570 9f7d7167 2018-04-29 stsp return 0;
6571 9f7d7167 2018-04-29 stsp }