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