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 6062e8ea 2021-09-21 stsp #define _XOPEN_SOURCE_EXTENDED /* for ncurses wide-character functions */
24 9f7d7167 2018-04-29 stsp #include <curses.h>
25 9f7d7167 2018-04-29 stsp #include <panel.h>
26 9f7d7167 2018-04-29 stsp #include <locale.h>
27 d7b5a0e8 2022-04-20 stsp #include <sha1.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 3da8ef85 2021-09-21 stsp #include <sched.h>
43 9f7d7167 2018-04-29 stsp
44 53ccebc2 2019-07-30 stsp #include "got_version.h"
45 9f7d7167 2018-04-29 stsp #include "got_error.h"
46 80ddbec8 2018-04-29 stsp #include "got_object.h"
47 80ddbec8 2018-04-29 stsp #include "got_reference.h"
48 80ddbec8 2018-04-29 stsp #include "got_repository.h"
49 80ddbec8 2018-04-29 stsp #include "got_diff.h"
50 511a516b 2018-05-19 stsp #include "got_opentemp.h"
51 00dfcb92 2018-06-11 stsp #include "got_utf8.h"
52 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
53 6fb7cd11 2019-08-22 stsp #include "got_commit_graph.h"
54 a70480e0 2018-06-23 stsp #include "got_blame.h"
55 c2db6724 2019-01-04 stsp #include "got_privsep.h"
56 1dd54920 2019-05-11 stsp #include "got_path.h"
57 b7165be3 2019-02-05 stsp #include "got_worktree.h"
58 9f7d7167 2018-04-29 stsp
59 881b2d3e 2018-04-30 stsp #ifndef MIN
60 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
61 881b2d3e 2018-04-30 stsp #endif
62 881b2d3e 2018-04-30 stsp
63 2bd27830 2018-10-22 stsp #ifndef MAX
64 2bd27830 2018-10-22 stsp #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
65 2bd27830 2018-10-22 stsp #endif
66 2bd27830 2018-10-22 stsp
67 a4292ac5 2019-05-12 jcs #define CTRL(x) ((x) & 0x1f)
68 2bd27830 2018-10-22 stsp
69 9f7d7167 2018-04-29 stsp #ifndef nitems
70 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
71 9f7d7167 2018-04-29 stsp #endif
72 9f7d7167 2018-04-29 stsp
73 9f7d7167 2018-04-29 stsp struct tog_cmd {
74 c2301be8 2018-04-30 stsp const char *name;
75 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
76 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
77 9f7d7167 2018-04-29 stsp };
78 9f7d7167 2018-04-29 stsp
79 6879ba42 2020-10-01 naddy __dead static void usage(int, int);
80 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
81 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
82 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
83 ffd1d5e5 2018-06-23 stsp __dead static void usage_tree(void);
84 6458efa5 2020-11-24 stsp __dead static void usage_ref(void);
85 9f7d7167 2018-04-29 stsp
86 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
87 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
88 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
89 ffd1d5e5 2018-06-23 stsp static const struct got_error* cmd_tree(int, char *[]);
90 6458efa5 2020-11-24 stsp static const struct got_error* cmd_ref(int, char *[]);
91 9f7d7167 2018-04-29 stsp
92 3e166534 2022-02-16 naddy static const struct tog_cmd tog_commands[] = {
93 5e070240 2019-06-22 stsp { "log", cmd_log, usage_log },
94 5e070240 2019-06-22 stsp { "diff", cmd_diff, usage_diff },
95 5e070240 2019-06-22 stsp { "blame", cmd_blame, usage_blame },
96 5e070240 2019-06-22 stsp { "tree", cmd_tree, usage_tree },
97 6458efa5 2020-11-24 stsp { "ref", cmd_ref, usage_ref },
98 9f7d7167 2018-04-29 stsp };
99 9f7d7167 2018-04-29 stsp
100 d6b05b5b 2018-08-04 stsp enum tog_view_type {
101 d6b05b5b 2018-08-04 stsp TOG_VIEW_DIFF,
102 d6b05b5b 2018-08-04 stsp TOG_VIEW_LOG,
103 ad80ab7b 2018-08-04 stsp TOG_VIEW_BLAME,
104 6458efa5 2020-11-24 stsp TOG_VIEW_TREE,
105 6458efa5 2020-11-24 stsp TOG_VIEW_REF,
106 d6b05b5b 2018-08-04 stsp };
107 c3e9aa98 2019-05-13 jcs
108 9b058f45 2022-06-30 mark enum tog_view_mode {
109 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_NONE,
110 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_VERT,
111 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_HRZN
112 9b058f45 2022-06-30 mark };
113 9b058f45 2022-06-30 mark
114 9b058f45 2022-06-30 mark #define HSPLIT_SCALE 0.3 /* default horizontal split scale */
115 9b058f45 2022-06-30 mark
116 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
117 d6b05b5b 2018-08-04 stsp
118 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
119 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
120 ba4f502b 2018-08-04 stsp struct got_object_id *id;
121 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
122 1a76625f 2018-10-22 stsp int idx;
123 ba4f502b 2018-08-04 stsp };
124 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
125 ba4f502b 2018-08-04 stsp struct commit_queue {
126 ba4f502b 2018-08-04 stsp int ncommits;
127 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
128 6d17833f 2019-11-08 stsp };
129 6d17833f 2019-11-08 stsp
130 f26dddb7 2019-11-08 stsp struct tog_color {
131 dbdddfee 2021-06-23 naddy STAILQ_ENTRY(tog_color) entry;
132 6d17833f 2019-11-08 stsp regex_t regex;
133 6d17833f 2019-11-08 stsp short colorpair;
134 15a087fe 2019-02-21 stsp };
135 dbdddfee 2021-06-23 naddy STAILQ_HEAD(tog_colors, tog_color);
136 11b20872 2019-11-08 stsp
137 d9dff0e5 2020-12-26 stsp static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
138 51a10b52 2020-12-26 stsp static struct got_reflist_object_id_map *tog_refs_idmap;
139 917d79a7 2022-07-01 stsp static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
140 cc488aa7 2022-01-23 stsp
141 cc488aa7 2022-01-23 stsp static const struct got_error *
142 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
143 cc488aa7 2022-01-23 stsp struct got_reference* re2)
144 cc488aa7 2022-01-23 stsp {
145 cc488aa7 2022-01-23 stsp const char *name1 = got_ref_get_name(re1);
146 cc488aa7 2022-01-23 stsp const char *name2 = got_ref_get_name(re2);
147 cc488aa7 2022-01-23 stsp int isbackup1, isbackup2;
148 cc488aa7 2022-01-23 stsp
149 cc488aa7 2022-01-23 stsp /* Sort backup refs towards the bottom of the list. */
150 cc488aa7 2022-01-23 stsp isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
151 cc488aa7 2022-01-23 stsp isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
152 cc488aa7 2022-01-23 stsp if (!isbackup1 && isbackup2) {
153 cc488aa7 2022-01-23 stsp *cmp = -1;
154 cc488aa7 2022-01-23 stsp return NULL;
155 cc488aa7 2022-01-23 stsp } else if (isbackup1 && !isbackup2) {
156 cc488aa7 2022-01-23 stsp *cmp = 1;
157 cc488aa7 2022-01-23 stsp return NULL;
158 cc488aa7 2022-01-23 stsp }
159 cc488aa7 2022-01-23 stsp
160 cc488aa7 2022-01-23 stsp *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
161 cc488aa7 2022-01-23 stsp return NULL;
162 cc488aa7 2022-01-23 stsp }
163 51a10b52 2020-12-26 stsp
164 11b20872 2019-11-08 stsp static const struct got_error *
165 7f66531d 2021-11-16 stsp tog_load_refs(struct got_repository *repo, int sort_by_date)
166 51a10b52 2020-12-26 stsp {
167 51a10b52 2020-12-26 stsp const struct got_error *err;
168 51a10b52 2020-12-26 stsp
169 7f66531d 2021-11-16 stsp err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
170 cc488aa7 2022-01-23 stsp got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
171 7f66531d 2021-11-16 stsp repo);
172 51a10b52 2020-12-26 stsp if (err)
173 51a10b52 2020-12-26 stsp return err;
174 51a10b52 2020-12-26 stsp
175 51a10b52 2020-12-26 stsp return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
176 51a10b52 2020-12-26 stsp repo);
177 51a10b52 2020-12-26 stsp }
178 51a10b52 2020-12-26 stsp
179 51a10b52 2020-12-26 stsp static void
180 51a10b52 2020-12-26 stsp tog_free_refs(void)
181 51a10b52 2020-12-26 stsp {
182 51a10b52 2020-12-26 stsp if (tog_refs_idmap) {
183 f193b038 2020-12-26 stsp got_reflist_object_id_map_free(tog_refs_idmap);
184 51a10b52 2020-12-26 stsp tog_refs_idmap = NULL;
185 51a10b52 2020-12-26 stsp }
186 51a10b52 2020-12-26 stsp got_ref_list_free(&tog_refs);
187 51a10b52 2020-12-26 stsp }
188 51a10b52 2020-12-26 stsp
189 51a10b52 2020-12-26 stsp static const struct got_error *
190 11b20872 2019-11-08 stsp add_color(struct tog_colors *colors, const char *pattern,
191 11b20872 2019-11-08 stsp int idx, short color)
192 11b20872 2019-11-08 stsp {
193 11b20872 2019-11-08 stsp const struct got_error *err = NULL;
194 11b20872 2019-11-08 stsp struct tog_color *tc;
195 11b20872 2019-11-08 stsp int regerr = 0;
196 11b20872 2019-11-08 stsp
197 11b20872 2019-11-08 stsp if (idx < 1 || idx > COLOR_PAIRS - 1)
198 11b20872 2019-11-08 stsp return NULL;
199 11b20872 2019-11-08 stsp
200 11b20872 2019-11-08 stsp init_pair(idx, color, -1);
201 11b20872 2019-11-08 stsp
202 11b20872 2019-11-08 stsp tc = calloc(1, sizeof(*tc));
203 11b20872 2019-11-08 stsp if (tc == NULL)
204 11b20872 2019-11-08 stsp return got_error_from_errno("calloc");
205 11b20872 2019-11-08 stsp regerr = regcomp(&tc->regex, pattern,
206 11b20872 2019-11-08 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
207 11b20872 2019-11-08 stsp if (regerr) {
208 11b20872 2019-11-08 stsp static char regerr_msg[512];
209 11b20872 2019-11-08 stsp static char err_msg[512];
210 11b20872 2019-11-08 stsp regerror(regerr, &tc->regex, regerr_msg,
211 11b20872 2019-11-08 stsp sizeof(regerr_msg));
212 11b20872 2019-11-08 stsp snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
213 11b20872 2019-11-08 stsp regerr_msg);
214 11b20872 2019-11-08 stsp err = got_error_msg(GOT_ERR_REGEX, err_msg);
215 11b20872 2019-11-08 stsp free(tc);
216 11b20872 2019-11-08 stsp return err;
217 11b20872 2019-11-08 stsp }
218 11b20872 2019-11-08 stsp tc->colorpair = idx;
219 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(colors, tc, entry);
220 11b20872 2019-11-08 stsp return NULL;
221 11b20872 2019-11-08 stsp }
222 11b20872 2019-11-08 stsp
223 11b20872 2019-11-08 stsp static void
224 11b20872 2019-11-08 stsp free_colors(struct tog_colors *colors)
225 11b20872 2019-11-08 stsp {
226 11b20872 2019-11-08 stsp struct tog_color *tc;
227 11b20872 2019-11-08 stsp
228 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(colors)) {
229 dbdddfee 2021-06-23 naddy tc = STAILQ_FIRST(colors);
230 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(colors, entry);
231 11b20872 2019-11-08 stsp regfree(&tc->regex);
232 11b20872 2019-11-08 stsp free(tc);
233 11b20872 2019-11-08 stsp }
234 11b20872 2019-11-08 stsp }
235 11b20872 2019-11-08 stsp
236 336075a4 2022-06-25 op static struct tog_color *
237 11b20872 2019-11-08 stsp get_color(struct tog_colors *colors, int colorpair)
238 11b20872 2019-11-08 stsp {
239 11b20872 2019-11-08 stsp struct tog_color *tc = NULL;
240 11b20872 2019-11-08 stsp
241 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
242 11b20872 2019-11-08 stsp if (tc->colorpair == colorpair)
243 11b20872 2019-11-08 stsp return tc;
244 11b20872 2019-11-08 stsp }
245 11b20872 2019-11-08 stsp
246 11b20872 2019-11-08 stsp return NULL;
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 default_color_value(const char *envvar)
251 11b20872 2019-11-08 stsp {
252 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
253 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
254 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
255 11b20872 2019-11-08 stsp return COLOR_CYAN;
256 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
257 11b20872 2019-11-08 stsp return COLOR_YELLOW;
258 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
259 11b20872 2019-11-08 stsp return COLOR_GREEN;
260 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
261 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
262 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
263 91b8c405 2020-01-25 stsp return COLOR_MAGENTA;
264 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
265 91b8c405 2020-01-25 stsp return COLOR_CYAN;
266 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
267 11b20872 2019-11-08 stsp return COLOR_GREEN;
268 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
269 11b20872 2019-11-08 stsp return COLOR_GREEN;
270 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
271 11b20872 2019-11-08 stsp return COLOR_CYAN;
272 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
273 11b20872 2019-11-08 stsp return COLOR_YELLOW;
274 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
275 6458efa5 2020-11-24 stsp return COLOR_GREEN;
276 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
277 6458efa5 2020-11-24 stsp return COLOR_MAGENTA;
278 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
279 6458efa5 2020-11-24 stsp return COLOR_YELLOW;
280 cc488aa7 2022-01-23 stsp if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
281 cc488aa7 2022-01-23 stsp return COLOR_CYAN;
282 11b20872 2019-11-08 stsp
283 11b20872 2019-11-08 stsp return -1;
284 11b20872 2019-11-08 stsp }
285 11b20872 2019-11-08 stsp
286 11b20872 2019-11-08 stsp static int
287 11b20872 2019-11-08 stsp get_color_value(const char *envvar)
288 11b20872 2019-11-08 stsp {
289 11b20872 2019-11-08 stsp const char *val = getenv(envvar);
290 11b20872 2019-11-08 stsp
291 11b20872 2019-11-08 stsp if (val == NULL)
292 11b20872 2019-11-08 stsp return default_color_value(envvar);
293 15a087fe 2019-02-21 stsp
294 11b20872 2019-11-08 stsp if (strcasecmp(val, "black") == 0)
295 11b20872 2019-11-08 stsp return COLOR_BLACK;
296 11b20872 2019-11-08 stsp if (strcasecmp(val, "red") == 0)
297 11b20872 2019-11-08 stsp return COLOR_RED;
298 11b20872 2019-11-08 stsp if (strcasecmp(val, "green") == 0)
299 11b20872 2019-11-08 stsp return COLOR_GREEN;
300 11b20872 2019-11-08 stsp if (strcasecmp(val, "yellow") == 0)
301 11b20872 2019-11-08 stsp return COLOR_YELLOW;
302 11b20872 2019-11-08 stsp if (strcasecmp(val, "blue") == 0)
303 11b20872 2019-11-08 stsp return COLOR_BLUE;
304 11b20872 2019-11-08 stsp if (strcasecmp(val, "magenta") == 0)
305 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
306 11b20872 2019-11-08 stsp if (strcasecmp(val, "cyan") == 0)
307 11b20872 2019-11-08 stsp return COLOR_CYAN;
308 11b20872 2019-11-08 stsp if (strcasecmp(val, "white") == 0)
309 11b20872 2019-11-08 stsp return COLOR_WHITE;
310 11b20872 2019-11-08 stsp if (strcasecmp(val, "default") == 0)
311 11b20872 2019-11-08 stsp return -1;
312 11b20872 2019-11-08 stsp
313 11b20872 2019-11-08 stsp return default_color_value(envvar);
314 11b20872 2019-11-08 stsp }
315 11b20872 2019-11-08 stsp
316 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
317 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
318 3dbaef42 2020-11-24 stsp const char *label1, *label2;
319 b72706c3 2022-06-01 stsp FILE *f, *f1, *f2;
320 f9d37699 2022-06-28 stsp int fd1, fd2;
321 c7d5c43c 2022-08-04 mark int lineno;
322 15a087fe 2019-02-21 stsp int first_displayed_line;
323 15a087fe 2019-02-21 stsp int last_displayed_line;
324 15a087fe 2019-02-21 stsp int eof;
325 15a087fe 2019-02-21 stsp int diff_context;
326 3dbaef42 2020-11-24 stsp int ignore_whitespace;
327 64453f7e 2020-11-21 stsp int force_text_diff;
328 15a087fe 2019-02-21 stsp struct got_repository *repo;
329 c7d5c43c 2022-08-04 mark struct got_diff_line *lines;
330 fe621944 2020-11-10 stsp size_t nlines;
331 f44b1f58 2020-02-02 tracey int matched_line;
332 f44b1f58 2020-02-02 tracey int selected_line;
333 15a087fe 2019-02-21 stsp
334 c0f61fa4 2022-07-11 mark /* passed from log or blame view; may be NULL */
335 c0f61fa4 2022-07-11 mark struct tog_view *parent_view;
336 b01e7d3b 2018-08-04 stsp };
337 b01e7d3b 2018-08-04 stsp
338 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
339 5629093a 2022-07-11 stsp static volatile sig_atomic_t tog_thread_error;
340 1a76625f 2018-10-22 stsp
341 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
342 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
343 7c1452c1 2020-03-26 stsp pthread_cond_t commit_loaded;
344 1a76625f 2018-10-22 stsp int commits_needed;
345 fb280deb 2021-08-30 stsp int load_all;
346 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
347 1a76625f 2018-10-22 stsp struct commit_queue *commits;
348 1a76625f 2018-10-22 stsp const char *in_repo_path;
349 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
350 1a76625f 2018-10-22 stsp struct got_repository *repo;
351 74467cc8 2022-06-15 stsp int *pack_fds;
352 1a76625f 2018-10-22 stsp int log_complete;
353 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
354 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
355 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
356 13add988 2019-10-15 stsp int *searching;
357 13add988 2019-10-15 stsp int *search_next_done;
358 13add988 2019-10-15 stsp regex_t *regex;
359 1a76625f 2018-10-22 stsp };
360 1a76625f 2018-10-22 stsp
361 1a76625f 2018-10-22 stsp struct tog_log_view_state {
362 b01e7d3b 2018-08-04 stsp struct commit_queue commits;
363 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
364 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
365 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
366 b01e7d3b 2018-08-04 stsp int selected;
367 b01e7d3b 2018-08-04 stsp char *in_repo_path;
368 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
369 b672a97a 2020-01-27 stsp int log_branches;
370 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
371 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
372 1a76625f 2018-10-22 stsp sig_atomic_t quit;
373 1a76625f 2018-10-22 stsp pthread_t thread;
374 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
375 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
376 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
377 11b20872 2019-11-08 stsp struct tog_colors colors;
378 10aab77f 2022-07-19 op int use_committer;
379 ba4f502b 2018-08-04 stsp };
380 11b20872 2019-11-08 stsp
381 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_MINUS 1
382 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_PLUS 2
383 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_CHUNK_HEADER 3
384 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_META 4
385 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SUBMODULE 5
386 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SYMLINK 6
387 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_DIRECTORY 7
388 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_EXECUTABLE 8
389 11b20872 2019-11-08 stsp #define TOG_COLOR_COMMIT 9
390 11b20872 2019-11-08 stsp #define TOG_COLOR_AUTHOR 10
391 bf30f154 2020-12-07 naddy #define TOG_COLOR_DATE 11
392 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_HEADS 12
393 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_TAGS 13
394 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_REMOTES 14
395 cc488aa7 2022-01-23 stsp #define TOG_COLOR_REFS_BACKUP 15
396 ba4f502b 2018-08-04 stsp
397 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
398 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
399 e9424729 2018-08-04 stsp int nlines;
400 e9424729 2018-08-04 stsp
401 e9424729 2018-08-04 stsp struct tog_view *view;
402 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
403 e9424729 2018-08-04 stsp int *quit;
404 e9424729 2018-08-04 stsp };
405 e9424729 2018-08-04 stsp
406 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
407 e9424729 2018-08-04 stsp const char *path;
408 e9424729 2018-08-04 stsp struct got_repository *repo;
409 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
410 e9424729 2018-08-04 stsp int *complete;
411 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
412 fc06ba56 2019-08-22 stsp void *cancel_arg;
413 e9424729 2018-08-04 stsp };
414 e9424729 2018-08-04 stsp
415 e9424729 2018-08-04 stsp struct tog_blame {
416 e9424729 2018-08-04 stsp FILE *f;
417 be659d10 2020-11-18 stsp off_t filesize;
418 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
419 6fcac457 2018-11-19 stsp int nlines;
420 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
421 e9424729 2018-08-04 stsp pthread_t thread;
422 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
423 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
424 e9424729 2018-08-04 stsp const char *path;
425 0ae84acc 2022-06-15 tracey int *pack_fds;
426 e9424729 2018-08-04 stsp };
427 e9424729 2018-08-04 stsp
428 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
429 7cbe629d 2018-08-04 stsp int first_displayed_line;
430 7cbe629d 2018-08-04 stsp int last_displayed_line;
431 7cbe629d 2018-08-04 stsp int selected_line;
432 c0f61fa4 2022-07-11 mark int last_diffed_line;
433 7cbe629d 2018-08-04 stsp int blame_complete;
434 e5a0f69f 2018-08-18 stsp int eof;
435 e5a0f69f 2018-08-18 stsp int done;
436 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
437 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
438 e5a0f69f 2018-08-18 stsp char *path;
439 7cbe629d 2018-08-04 stsp struct got_repository *repo;
440 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
441 136e2bd4 2022-07-23 mark struct got_object_id *id_to_log;
442 e9424729 2018-08-04 stsp struct tog_blame blame;
443 6c4c42e0 2019-06-24 stsp int matched_line;
444 11b20872 2019-11-08 stsp struct tog_colors colors;
445 ad80ab7b 2018-08-04 stsp };
446 ad80ab7b 2018-08-04 stsp
447 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
448 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
449 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
450 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
451 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
452 ad80ab7b 2018-08-04 stsp int selected;
453 ad80ab7b 2018-08-04 stsp };
454 ad80ab7b 2018-08-04 stsp
455 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
456 ad80ab7b 2018-08-04 stsp
457 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
458 ad80ab7b 2018-08-04 stsp char *tree_label;
459 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id;/* commit which this tree belongs to */
460 bc573f3b 2021-07-10 stsp struct got_tree_object *root; /* the commit's root tree entry */
461 bc573f3b 2021-07-10 stsp struct got_tree_object *tree; /* currently displayed (sub-)tree */
462 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
463 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
464 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
465 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
466 bc573f3b 2021-07-10 stsp struct tog_parent_trees parents; /* parent trees of current sub-tree */
467 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
468 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
469 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
470 6458efa5 2020-11-24 stsp struct tog_colors colors;
471 6458efa5 2020-11-24 stsp };
472 6458efa5 2020-11-24 stsp
473 6458efa5 2020-11-24 stsp struct tog_reflist_entry {
474 6458efa5 2020-11-24 stsp TAILQ_ENTRY(tog_reflist_entry) entry;
475 6458efa5 2020-11-24 stsp struct got_reference *ref;
476 6458efa5 2020-11-24 stsp int idx;
477 6458efa5 2020-11-24 stsp };
478 6458efa5 2020-11-24 stsp
479 6458efa5 2020-11-24 stsp TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
480 6458efa5 2020-11-24 stsp
481 6458efa5 2020-11-24 stsp struct tog_ref_view_state {
482 dae613fa 2020-12-26 stsp struct tog_reflist_head refs;
483 6458efa5 2020-11-24 stsp struct tog_reflist_entry *first_displayed_entry;
484 6458efa5 2020-11-24 stsp struct tog_reflist_entry *last_displayed_entry;
485 6458efa5 2020-11-24 stsp struct tog_reflist_entry *selected_entry;
486 b4996bee 2022-06-16 stsp int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
487 6458efa5 2020-11-24 stsp struct got_repository *repo;
488 6458efa5 2020-11-24 stsp struct tog_reflist_entry *matched_entry;
489 bddb1296 2019-11-08 stsp struct tog_colors colors;
490 7cbe629d 2018-08-04 stsp };
491 7cbe629d 2018-08-04 stsp
492 669b5ffa 2018-10-07 stsp /*
493 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
494 669b5ffa 2018-10-07 stsp *
495 e78dc838 2020-12-04 stsp * The 'Tab' key switches focus between a parent view and its child view.
496 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
497 669b5ffa 2018-10-07 stsp * there is enough screen estate.
498 669b5ffa 2018-10-07 stsp *
499 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
500 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
501 669b5ffa 2018-10-07 stsp *
502 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
503 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
504 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
505 669b5ffa 2018-10-07 stsp *
506 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
507 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
508 669b5ffa 2018-10-07 stsp */
509 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
510 669b5ffa 2018-10-07 stsp
511 cc3c9aac 2018-08-01 stsp struct tog_view {
512 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
513 26ed57b2 2018-05-19 stsp WINDOW *window;
514 26ed57b2 2018-05-19 stsp PANEL *panel;
515 9b058f45 2022-06-30 mark int nlines, ncols, begin_y, begin_x; /* based on split height/width */
516 3c1dfe12 2022-07-08 mark int resized_y, resized_x; /* begin_y/x based on user resizing */
517 145b6838 2022-06-16 stsp int maxx, x; /* max column and current start column */
518 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
519 9b058f45 2022-06-30 mark int nscrolled, offset; /* lines scrolled and hsplit line offset */
520 94b80cfa 2022-08-01 mark int gline, hiline; /* navigate to and highlight this nG line */
521 640cd7ff 2022-06-22 mark int ch, count; /* current keymap and count prefix */
522 571ccd73 2022-07-19 mark int resized; /* set when in a resize event */
523 e78dc838 2020-12-04 stsp int focussed; /* Only set on one parent or child view at a time. */
524 9970f7fc 2020-12-03 stsp int dying;
525 669b5ffa 2018-10-07 stsp struct tog_view *parent;
526 669b5ffa 2018-10-07 stsp struct tog_view *child;
527 5dc9f4bc 2018-08-04 stsp
528 e78dc838 2020-12-04 stsp /*
529 e78dc838 2020-12-04 stsp * This flag is initially set on parent views when a new child view
530 e78dc838 2020-12-04 stsp * is created. It gets toggled when the 'Tab' key switches focus
531 e78dc838 2020-12-04 stsp * between parent and child.
532 e78dc838 2020-12-04 stsp * The flag indicates whether focus should be passed on to our child
533 e78dc838 2020-12-04 stsp * view if this parent view gets picked for focus after another parent
534 e78dc838 2020-12-04 stsp * view was closed. This prevents child views from losing focus in such
535 e78dc838 2020-12-04 stsp * situations.
536 e78dc838 2020-12-04 stsp */
537 e78dc838 2020-12-04 stsp int focus_child;
538 e78dc838 2020-12-04 stsp
539 9b058f45 2022-06-30 mark enum tog_view_mode mode;
540 5dc9f4bc 2018-08-04 stsp /* type-specific state */
541 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
542 5dc9f4bc 2018-08-04 stsp union {
543 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
544 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
545 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
546 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
547 6458efa5 2020-11-24 stsp struct tog_ref_view_state ref;
548 5dc9f4bc 2018-08-04 stsp } state;
549 e5a0f69f 2018-08-18 stsp
550 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
551 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
552 e78dc838 2020-12-04 stsp struct tog_view *, int);
553 917d79a7 2022-07-01 stsp const struct got_error *(*reset)(struct tog_view *);
554 571ccd73 2022-07-19 mark const struct got_error *(*resize)(struct tog_view *, int);
555 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
556 60493ae3 2019-06-20 stsp
557 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
558 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
559 c0c4acc8 2021-01-24 stsp int search_started;
560 60493ae3 2019-06-20 stsp int searching;
561 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
562 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
563 60493ae3 2019-06-20 stsp int search_next_done;
564 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_HAVE_MORE 1
565 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_NO_MORE 2
566 f9967bca 2020-03-27 stsp #define TOG_SEARCH_HAVE_NONE 3
567 1803e47f 2019-06-22 stsp regex_t regex;
568 41605754 2020-11-12 stsp regmatch_t regmatch;
569 cc3c9aac 2018-08-01 stsp };
570 cd0acaa7 2018-05-20 stsp
571 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
572 3dbaef42 2020-11-24 stsp struct got_object_id *, struct got_object_id *,
573 3dbaef42 2020-11-24 stsp const char *, const char *, int, int, int, struct tog_view *,
574 78756c87 2020-11-24 stsp struct got_repository *);
575 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
576 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
577 e78dc838 2020-12-04 stsp struct tog_view *, int);
578 917d79a7 2022-07-01 stsp static const struct got_error *reset_diff_view(struct tog_view *);
579 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
580 f44b1f58 2020-02-02 tracey static const struct got_error *search_start_diff_view(struct tog_view *);
581 f44b1f58 2020-02-02 tracey static const struct got_error *search_next_diff_view(struct tog_view *);
582 e5a0f69f 2018-08-18 stsp
583 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
584 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *,
585 78756c87 2020-11-24 stsp const char *, const char *, int);
586 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
587 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
588 e78dc838 2020-12-04 stsp struct tog_view *, int);
589 571ccd73 2022-07-19 mark static const struct got_error *resize_log_view(struct tog_view *, int);
590 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
591 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
592 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
593 e5a0f69f 2018-08-18 stsp
594 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
595 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *);
596 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
597 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
598 e78dc838 2020-12-04 stsp struct tog_view *, int);
599 917d79a7 2022-07-01 stsp static const struct got_error *reset_blame_view(struct tog_view *);
600 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
601 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
602 6c4c42e0 2019-06-24 stsp static const struct got_error *search_next_blame_view(struct tog_view *);
603 e5a0f69f 2018-08-18 stsp
604 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
605 bc573f3b 2021-07-10 stsp struct got_object_id *, const char *, struct got_repository *);
606 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
607 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
608 e78dc838 2020-12-04 stsp struct tog_view *, int);
609 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
610 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
611 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
612 6458efa5 2020-11-24 stsp
613 6458efa5 2020-11-24 stsp static const struct got_error *open_ref_view(struct tog_view *,
614 6458efa5 2020-11-24 stsp struct got_repository *);
615 6458efa5 2020-11-24 stsp static const struct got_error *show_ref_view(struct tog_view *);
616 6458efa5 2020-11-24 stsp static const struct got_error *input_ref_view(struct tog_view **,
617 e78dc838 2020-12-04 stsp struct tog_view *, int);
618 6458efa5 2020-11-24 stsp static const struct got_error *close_ref_view(struct tog_view *);
619 6458efa5 2020-11-24 stsp static const struct got_error *search_start_ref_view(struct tog_view *);
620 6458efa5 2020-11-24 stsp static const struct got_error *search_next_ref_view(struct tog_view *);
621 25791caa 2018-10-24 stsp
622 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
623 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
624 61266923 2020-01-14 stsp static volatile sig_atomic_t tog_sigcont_received;
625 2497f032 2022-05-31 stsp static volatile sig_atomic_t tog_sigint_received;
626 2497f032 2022-05-31 stsp static volatile sig_atomic_t tog_sigterm_received;
627 25791caa 2018-10-24 stsp
628 25791caa 2018-10-24 stsp static void
629 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
630 25791caa 2018-10-24 stsp {
631 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
632 83baff54 2019-08-12 stsp }
633 83baff54 2019-08-12 stsp
634 83baff54 2019-08-12 stsp static void
635 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
636 83baff54 2019-08-12 stsp {
637 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
638 25791caa 2018-10-24 stsp }
639 26ed57b2 2018-05-19 stsp
640 61266923 2020-01-14 stsp static void
641 61266923 2020-01-14 stsp tog_sigcont(int signo)
642 61266923 2020-01-14 stsp {
643 61266923 2020-01-14 stsp tog_sigcont_received = 1;
644 61266923 2020-01-14 stsp }
645 61266923 2020-01-14 stsp
646 2497f032 2022-05-31 stsp static void
647 2497f032 2022-05-31 stsp tog_sigint(int signo)
648 2497f032 2022-05-31 stsp {
649 2497f032 2022-05-31 stsp tog_sigint_received = 1;
650 2497f032 2022-05-31 stsp }
651 2497f032 2022-05-31 stsp
652 2497f032 2022-05-31 stsp static void
653 2497f032 2022-05-31 stsp tog_sigterm(int signo)
654 2497f032 2022-05-31 stsp {
655 2497f032 2022-05-31 stsp tog_sigterm_received = 1;
656 2497f032 2022-05-31 stsp }
657 2497f032 2022-05-31 stsp
658 2497f032 2022-05-31 stsp static int
659 dd6e31d7 2022-06-17 stsp tog_fatal_signal_received(void)
660 2497f032 2022-05-31 stsp {
661 2497f032 2022-05-31 stsp return (tog_sigpipe_received ||
662 2497f032 2022-05-31 stsp tog_sigint_received || tog_sigint_received);
663 2497f032 2022-05-31 stsp }
664 2497f032 2022-05-31 stsp
665 e5a0f69f 2018-08-18 stsp static const struct got_error *
666 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
667 ea5e7bb5 2018-08-01 stsp {
668 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *child_err = NULL;
669 e5a0f69f 2018-08-18 stsp
670 669b5ffa 2018-10-07 stsp if (view->child) {
671 5629093a 2022-07-11 stsp child_err = view_close(view->child);
672 669b5ffa 2018-10-07 stsp view->child = NULL;
673 669b5ffa 2018-10-07 stsp }
674 e5a0f69f 2018-08-18 stsp if (view->close)
675 e5a0f69f 2018-08-18 stsp err = view->close(view);
676 ea5e7bb5 2018-08-01 stsp if (view->panel)
677 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
678 ea5e7bb5 2018-08-01 stsp if (view->window)
679 ea5e7bb5 2018-08-01 stsp delwin(view->window);
680 ea5e7bb5 2018-08-01 stsp free(view);
681 5629093a 2022-07-11 stsp return err ? err : child_err;
682 ea5e7bb5 2018-08-01 stsp }
683 ea5e7bb5 2018-08-01 stsp
684 ea5e7bb5 2018-08-01 stsp static struct tog_view *
685 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
686 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
687 ea5e7bb5 2018-08-01 stsp {
688 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
689 ea5e7bb5 2018-08-01 stsp
690 ea5e7bb5 2018-08-01 stsp if (view == NULL)
691 ea5e7bb5 2018-08-01 stsp return NULL;
692 ea5e7bb5 2018-08-01 stsp
693 d6b05b5b 2018-08-04 stsp view->type = type;
694 f7d12f7e 2018-08-01 stsp view->lines = LINES;
695 f7d12f7e 2018-08-01 stsp view->cols = COLS;
696 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
697 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
698 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
699 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
700 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
701 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
702 96a765a8 2018-08-04 stsp view_close(view);
703 ea5e7bb5 2018-08-01 stsp return NULL;
704 ea5e7bb5 2018-08-01 stsp }
705 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
706 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
707 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
708 96a765a8 2018-08-04 stsp view_close(view);
709 ea5e7bb5 2018-08-01 stsp return NULL;
710 ea5e7bb5 2018-08-01 stsp }
711 ea5e7bb5 2018-08-01 stsp
712 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
713 ea5e7bb5 2018-08-01 stsp return view;
714 cdf1ee82 2018-08-01 stsp }
715 cdf1ee82 2018-08-01 stsp
716 0cf4efb1 2018-09-29 stsp static int
717 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
718 0cf4efb1 2018-09-29 stsp {
719 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
720 0cf4efb1 2018-09-29 stsp return 0;
721 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
722 5c60c32a 2018-10-18 stsp }
723 5c60c32a 2018-10-18 stsp
724 9b058f45 2022-06-30 mark /* XXX Stub till we decide what to do. */
725 9b058f45 2022-06-30 mark static int
726 9b058f45 2022-06-30 mark view_split_begin_y(int lines)
727 9b058f45 2022-06-30 mark {
728 9b058f45 2022-06-30 mark return lines * HSPLIT_SCALE;
729 9b058f45 2022-06-30 mark }
730 9b058f45 2022-06-30 mark
731 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
732 5c60c32a 2018-10-18 stsp
733 5c60c32a 2018-10-18 stsp static const struct got_error *
734 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
735 5c60c32a 2018-10-18 stsp {
736 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
737 5c60c32a 2018-10-18 stsp
738 571ccd73 2022-07-19 mark if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
739 3c1dfe12 2022-07-08 mark if (view->resized_y && view->resized_y < view->lines)
740 3c1dfe12 2022-07-08 mark view->begin_y = view->resized_y;
741 3c1dfe12 2022-07-08 mark else
742 3c1dfe12 2022-07-08 mark view->begin_y = view_split_begin_y(view->nlines);
743 9b058f45 2022-06-30 mark view->begin_x = 0;
744 571ccd73 2022-07-19 mark } else if (!view->resized) {
745 3c1dfe12 2022-07-08 mark if (view->resized_x && view->resized_x < view->cols - 1 &&
746 3c1dfe12 2022-07-08 mark view->cols > 119)
747 3c1dfe12 2022-07-08 mark view->begin_x = view->resized_x;
748 3c1dfe12 2022-07-08 mark else
749 3c1dfe12 2022-07-08 mark view->begin_x = view_split_begin_x(0);
750 9b058f45 2022-06-30 mark view->begin_y = 0;
751 9b058f45 2022-06-30 mark }
752 9b058f45 2022-06-30 mark view->nlines = LINES - view->begin_y;
753 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
754 5c60c32a 2018-10-18 stsp view->lines = LINES;
755 5c60c32a 2018-10-18 stsp view->cols = COLS;
756 5c60c32a 2018-10-18 stsp err = view_resize(view);
757 5c60c32a 2018-10-18 stsp if (err)
758 5c60c32a 2018-10-18 stsp return err;
759 5c60c32a 2018-10-18 stsp
760 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
761 9b058f45 2022-06-30 mark view->parent->nlines = view->begin_y;
762 9b058f45 2022-06-30 mark
763 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
764 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
765 5c60c32a 2018-10-18 stsp
766 5c60c32a 2018-10-18 stsp return NULL;
767 5c60c32a 2018-10-18 stsp }
768 5c60c32a 2018-10-18 stsp
769 5c60c32a 2018-10-18 stsp static const struct got_error *
770 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
771 5c60c32a 2018-10-18 stsp {
772 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
773 5c60c32a 2018-10-18 stsp
774 5c60c32a 2018-10-18 stsp view->begin_x = 0;
775 571ccd73 2022-07-19 mark view->begin_y = view->resized ? view->begin_y : 0;
776 571ccd73 2022-07-19 mark view->nlines = view->resized ? view->nlines : LINES;
777 5c60c32a 2018-10-18 stsp view->ncols = COLS;
778 5c60c32a 2018-10-18 stsp view->lines = LINES;
779 5c60c32a 2018-10-18 stsp view->cols = COLS;
780 5c60c32a 2018-10-18 stsp err = view_resize(view);
781 5c60c32a 2018-10-18 stsp if (err)
782 5c60c32a 2018-10-18 stsp return err;
783 5c60c32a 2018-10-18 stsp
784 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
785 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
786 5c60c32a 2018-10-18 stsp
787 5c60c32a 2018-10-18 stsp return NULL;
788 0cf4efb1 2018-09-29 stsp }
789 0cf4efb1 2018-09-29 stsp
790 5c60c32a 2018-10-18 stsp static int
791 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
792 5c60c32a 2018-10-18 stsp {
793 5c60c32a 2018-10-18 stsp return view->parent == NULL;
794 5c60c32a 2018-10-18 stsp }
795 5c60c32a 2018-10-18 stsp
796 6131ff18 2022-06-20 mark static int
797 6131ff18 2022-06-20 mark view_is_splitscreen(struct tog_view *view)
798 6131ff18 2022-06-20 mark {
799 9b058f45 2022-06-30 mark return view->begin_x > 0 || view->begin_y > 0;
800 24b9cfdc 2022-06-30 stsp }
801 24b9cfdc 2022-06-30 stsp
802 24b9cfdc 2022-06-30 stsp static int
803 24b9cfdc 2022-06-30 stsp view_is_fullscreen(struct tog_view *view)
804 24b9cfdc 2022-06-30 stsp {
805 24b9cfdc 2022-06-30 stsp return view->nlines == LINES && view->ncols == COLS;
806 6131ff18 2022-06-20 mark }
807 6131ff18 2022-06-20 mark
808 49b24ee5 2022-07-03 mark static int
809 49b24ee5 2022-07-03 mark view_is_hsplit_top(struct tog_view *view)
810 49b24ee5 2022-07-03 mark {
811 49b24ee5 2022-07-03 mark return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
812 49b24ee5 2022-07-03 mark view_is_splitscreen(view->child);
813 49b24ee5 2022-07-03 mark }
814 49b24ee5 2022-07-03 mark
815 9b058f45 2022-06-30 mark static void
816 9b058f45 2022-06-30 mark view_border(struct tog_view *view)
817 9b058f45 2022-06-30 mark {
818 9b058f45 2022-06-30 mark PANEL *panel;
819 9b058f45 2022-06-30 mark const struct tog_view *view_above;
820 6131ff18 2022-06-20 mark
821 9b058f45 2022-06-30 mark if (view->parent)
822 9b058f45 2022-06-30 mark return view_border(view->parent);
823 9b058f45 2022-06-30 mark
824 9b058f45 2022-06-30 mark panel = panel_above(view->panel);
825 9b058f45 2022-06-30 mark if (panel == NULL)
826 9b058f45 2022-06-30 mark return;
827 9b058f45 2022-06-30 mark
828 9b058f45 2022-06-30 mark view_above = panel_userptr(panel);
829 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
830 9b058f45 2022-06-30 mark mvwhline(view->window, view_above->begin_y - 1,
831 9b058f45 2022-06-30 mark view->begin_x, got_locale_is_utf8() ?
832 9b058f45 2022-06-30 mark ACS_HLINE : '-', view->ncols);
833 9b058f45 2022-06-30 mark else
834 9b058f45 2022-06-30 mark mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
835 9b058f45 2022-06-30 mark got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
836 9b058f45 2022-06-30 mark }
837 9b058f45 2022-06-30 mark
838 3c1dfe12 2022-07-08 mark static const struct got_error *view_init_hsplit(struct tog_view *, int);
839 9b058f45 2022-06-30 mark static const struct got_error *request_log_commits(struct tog_view *);
840 9b058f45 2022-06-30 mark static const struct got_error *offset_selection_down(struct tog_view *);
841 9b058f45 2022-06-30 mark static void offset_selection_up(struct tog_view *);
842 3c1dfe12 2022-07-08 mark static void view_get_split(struct tog_view *, int *, int *);
843 9b058f45 2022-06-30 mark
844 4d8c2215 2018-08-19 stsp static const struct got_error *
845 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
846 f7d12f7e 2018-08-01 stsp {
847 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
848 9b058f45 2022-06-30 mark int dif, nlines, ncols;
849 f7d12f7e 2018-08-01 stsp
850 9b058f45 2022-06-30 mark dif = LINES - view->lines; /* line difference */
851 9b058f45 2022-06-30 mark
852 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
853 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
854 0cf4efb1 2018-09-29 stsp else
855 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
856 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
857 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
858 0cf4efb1 2018-09-29 stsp else
859 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
860 6d0fee91 2018-08-01 stsp
861 4dd27a72 2022-06-29 stsp if (view->child) {
862 9b058f45 2022-06-30 mark int hs = view->child->begin_y;
863 9b058f45 2022-06-30 mark
864 24b9cfdc 2022-06-30 stsp if (!view_is_fullscreen(view))
865 c71ed39a 2022-06-29 stsp view->child->begin_x = view_split_begin_x(view->begin_x);
866 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN ||
867 9b058f45 2022-06-30 mark view->child->begin_x == 0) {
868 0dbbbe90 2022-06-17 op ncols = COLS;
869 0dbbbe90 2022-06-17 op
870 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
871 5c60c32a 2018-10-18 stsp if (view->child->focussed)
872 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
873 5c60c32a 2018-10-18 stsp else
874 5c60c32a 2018-10-18 stsp show_panel(view->panel);
875 5c60c32a 2018-10-18 stsp } else {
876 0dbbbe90 2022-06-17 op ncols = view->child->begin_x;
877 0dbbbe90 2022-06-17 op
878 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
879 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
880 9b058f45 2022-06-30 mark }
881 9b058f45 2022-06-30 mark /*
882 9b058f45 2022-06-30 mark * XXX This is ugly and needs to be moved into the above
883 9b058f45 2022-06-30 mark * logic but "works" for now and my attempts at moving it
884 9b058f45 2022-06-30 mark * break either 'tab' or 'F' key maps in horizontal splits.
885 9b058f45 2022-06-30 mark */
886 9b058f45 2022-06-30 mark if (hs) {
887 9b058f45 2022-06-30 mark err = view_splitscreen(view->child);
888 9b058f45 2022-06-30 mark if (err)
889 9b058f45 2022-06-30 mark return err;
890 9b058f45 2022-06-30 mark if (dif < 0) { /* top split decreased */
891 9b058f45 2022-06-30 mark err = offset_selection_down(view);
892 9b058f45 2022-06-30 mark if (err)
893 9b058f45 2022-06-30 mark return err;
894 9b058f45 2022-06-30 mark }
895 9b058f45 2022-06-30 mark view_border(view);
896 9b058f45 2022-06-30 mark update_panels();
897 9b058f45 2022-06-30 mark doupdate();
898 9b058f45 2022-06-30 mark show_panel(view->child->panel);
899 9b058f45 2022-06-30 mark nlines = view->nlines;
900 9b058f45 2022-06-30 mark }
901 0dbbbe90 2022-06-17 op } else if (view->parent == NULL)
902 0dbbbe90 2022-06-17 op ncols = COLS;
903 669b5ffa 2018-10-07 stsp
904 571ccd73 2022-07-19 mark if (view->resize && dif > 0) {
905 571ccd73 2022-07-19 mark err = view->resize(view, dif);
906 571ccd73 2022-07-19 mark if (err)
907 571ccd73 2022-07-19 mark return err;
908 571ccd73 2022-07-19 mark }
909 571ccd73 2022-07-19 mark
910 0dbbbe90 2022-06-17 op if (wresize(view->window, nlines, ncols) == ERR)
911 0dbbbe90 2022-06-17 op return got_error_from_errno("wresize");
912 0dbbbe90 2022-06-17 op if (replace_panel(view->panel, view->window) == ERR)
913 0dbbbe90 2022-06-17 op return got_error_from_errno("replace_panel");
914 0dbbbe90 2022-06-17 op wclear(view->window);
915 0dbbbe90 2022-06-17 op
916 0dbbbe90 2022-06-17 op view->nlines = nlines;
917 0dbbbe90 2022-06-17 op view->ncols = ncols;
918 0dbbbe90 2022-06-17 op view->lines = LINES;
919 0dbbbe90 2022-06-17 op view->cols = COLS;
920 0dbbbe90 2022-06-17 op
921 5c60c32a 2018-10-18 stsp return NULL;
922 571ccd73 2022-07-19 mark }
923 571ccd73 2022-07-19 mark
924 571ccd73 2022-07-19 mark static const struct got_error *
925 571ccd73 2022-07-19 mark resize_log_view(struct tog_view *view, int increase)
926 571ccd73 2022-07-19 mark {
927 6fe51fee 2022-07-22 mark struct tog_log_view_state *s = &view->state.log;
928 6fe51fee 2022-07-22 mark const struct got_error *err = NULL;
929 6fe51fee 2022-07-22 mark int n = 0;
930 571ccd73 2022-07-19 mark
931 6fe51fee 2022-07-22 mark if (s->selected_entry)
932 6fe51fee 2022-07-22 mark n = s->selected_entry->idx + view->lines - s->selected;
933 6fe51fee 2022-07-22 mark
934 571ccd73 2022-07-19 mark /*
935 571ccd73 2022-07-19 mark * Request commits to account for the increased
936 571ccd73 2022-07-19 mark * height so we have enough to populate the view.
937 571ccd73 2022-07-19 mark */
938 571ccd73 2022-07-19 mark if (s->commits.ncommits < n) {
939 571ccd73 2022-07-19 mark view->nscrolled = n - s->commits.ncommits + increase + 1;
940 571ccd73 2022-07-19 mark err = request_log_commits(view);
941 571ccd73 2022-07-19 mark }
942 571ccd73 2022-07-19 mark
943 571ccd73 2022-07-19 mark return err;
944 d9a7ab53 2022-07-11 mark }
945 d9a7ab53 2022-07-11 mark
946 d9a7ab53 2022-07-11 mark static void
947 d9a7ab53 2022-07-11 mark view_adjust_offset(struct tog_view *view, int n)
948 d9a7ab53 2022-07-11 mark {
949 d9a7ab53 2022-07-11 mark if (n == 0)
950 d9a7ab53 2022-07-11 mark return;
951 d9a7ab53 2022-07-11 mark
952 d9a7ab53 2022-07-11 mark if (view->parent && view->parent->offset) {
953 d9a7ab53 2022-07-11 mark if (view->parent->offset + n >= 0)
954 d9a7ab53 2022-07-11 mark view->parent->offset += n;
955 d9a7ab53 2022-07-11 mark else
956 d9a7ab53 2022-07-11 mark view->parent->offset = 0;
957 d9a7ab53 2022-07-11 mark } else if (view->offset) {
958 d9a7ab53 2022-07-11 mark if (view->offset - n >= 0)
959 d9a7ab53 2022-07-11 mark view->offset -= n;
960 d9a7ab53 2022-07-11 mark else
961 d9a7ab53 2022-07-11 mark view->offset = 0;
962 d9a7ab53 2022-07-11 mark }
963 3c1dfe12 2022-07-08 mark }
964 3c1dfe12 2022-07-08 mark
965 3c1dfe12 2022-07-08 mark static const struct got_error *
966 3c1dfe12 2022-07-08 mark view_resize_split(struct tog_view *view, int resize)
967 3c1dfe12 2022-07-08 mark {
968 3c1dfe12 2022-07-08 mark const struct got_error *err = NULL;
969 3c1dfe12 2022-07-08 mark struct tog_view *v = NULL;
970 3c1dfe12 2022-07-08 mark
971 3c1dfe12 2022-07-08 mark if (view->parent)
972 3c1dfe12 2022-07-08 mark v = view->parent;
973 3c1dfe12 2022-07-08 mark else
974 3c1dfe12 2022-07-08 mark v = view;
975 3c1dfe12 2022-07-08 mark
976 3c1dfe12 2022-07-08 mark if (!v->child || !view_is_splitscreen(v->child))
977 3c1dfe12 2022-07-08 mark return NULL;
978 3c1dfe12 2022-07-08 mark
979 571ccd73 2022-07-19 mark v->resized = v->child->resized = resize; /* lock for resize event */
980 3c1dfe12 2022-07-08 mark
981 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
982 3c1dfe12 2022-07-08 mark if (v->child->resized_y)
983 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
984 3c1dfe12 2022-07-08 mark if (view->parent)
985 3c1dfe12 2022-07-08 mark v->child->begin_y -= resize;
986 3c1dfe12 2022-07-08 mark else
987 3c1dfe12 2022-07-08 mark v->child->begin_y += resize;
988 3c1dfe12 2022-07-08 mark if (v->child->begin_y < 3) {
989 3c1dfe12 2022-07-08 mark view->count = 0;
990 3c1dfe12 2022-07-08 mark v->child->begin_y = 3;
991 3c1dfe12 2022-07-08 mark } else if (v->child->begin_y > LINES - 1) {
992 3c1dfe12 2022-07-08 mark view->count = 0;
993 3c1dfe12 2022-07-08 mark v->child->begin_y = LINES - 1;
994 3c1dfe12 2022-07-08 mark }
995 3c1dfe12 2022-07-08 mark v->ncols = COLS;
996 3c1dfe12 2022-07-08 mark v->child->ncols = COLS;
997 d9a7ab53 2022-07-11 mark view_adjust_offset(view, resize);
998 3c1dfe12 2022-07-08 mark err = view_init_hsplit(v, v->child->begin_y);
999 3c1dfe12 2022-07-08 mark if (err)
1000 3c1dfe12 2022-07-08 mark return err;
1001 3c1dfe12 2022-07-08 mark v->child->resized_y = v->child->begin_y;
1002 3c1dfe12 2022-07-08 mark } else {
1003 3c1dfe12 2022-07-08 mark if (v->child->resized_x)
1004 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1005 3c1dfe12 2022-07-08 mark if (view->parent)
1006 3c1dfe12 2022-07-08 mark v->child->begin_x -= resize;
1007 3c1dfe12 2022-07-08 mark else
1008 3c1dfe12 2022-07-08 mark v->child->begin_x += resize;
1009 3c1dfe12 2022-07-08 mark if (v->child->begin_x < 11) {
1010 3c1dfe12 2022-07-08 mark view->count = 0;
1011 3c1dfe12 2022-07-08 mark v->child->begin_x = 11;
1012 3c1dfe12 2022-07-08 mark } else if (v->child->begin_x > COLS - 1) {
1013 3c1dfe12 2022-07-08 mark view->count = 0;
1014 3c1dfe12 2022-07-08 mark v->child->begin_x = COLS - 1;
1015 3c1dfe12 2022-07-08 mark }
1016 3c1dfe12 2022-07-08 mark v->child->resized_x = v->child->begin_x;
1017 3c1dfe12 2022-07-08 mark }
1018 3c1dfe12 2022-07-08 mark
1019 3c1dfe12 2022-07-08 mark v->child->mode = v->mode;
1020 3c1dfe12 2022-07-08 mark v->child->nlines = v->lines - v->child->begin_y;
1021 3c1dfe12 2022-07-08 mark v->child->ncols = v->cols - v->child->begin_x;
1022 3c1dfe12 2022-07-08 mark v->focus_child = 1;
1023 3c1dfe12 2022-07-08 mark
1024 3c1dfe12 2022-07-08 mark err = view_fullscreen(v);
1025 3c1dfe12 2022-07-08 mark if (err)
1026 3c1dfe12 2022-07-08 mark return err;
1027 3c1dfe12 2022-07-08 mark err = view_splitscreen(v->child);
1028 3c1dfe12 2022-07-08 mark if (err)
1029 3c1dfe12 2022-07-08 mark return err;
1030 3c1dfe12 2022-07-08 mark
1031 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1032 3c1dfe12 2022-07-08 mark err = offset_selection_down(v->child);
1033 3c1dfe12 2022-07-08 mark if (err)
1034 3c1dfe12 2022-07-08 mark return err;
1035 3c1dfe12 2022-07-08 mark }
1036 3c1dfe12 2022-07-08 mark
1037 6fe51fee 2022-07-22 mark if (v->resize)
1038 6fe51fee 2022-07-22 mark err = v->resize(v, 0);
1039 6fe51fee 2022-07-22 mark else if (v->child->resize)
1040 6fe51fee 2022-07-22 mark err = v->child->resize(v->child, 0);
1041 3c1dfe12 2022-07-08 mark
1042 571ccd73 2022-07-19 mark v->resized = v->child->resized = 0;
1043 3c1dfe12 2022-07-08 mark
1044 3c1dfe12 2022-07-08 mark return err;
1045 3c1dfe12 2022-07-08 mark }
1046 3c1dfe12 2022-07-08 mark
1047 3c1dfe12 2022-07-08 mark static void
1048 3c1dfe12 2022-07-08 mark view_transfer_size(struct tog_view *dst, struct tog_view *src)
1049 3c1dfe12 2022-07-08 mark {
1050 3c1dfe12 2022-07-08 mark struct tog_view *v = src->child ? src->child : src;
1051 3c1dfe12 2022-07-08 mark
1052 3c1dfe12 2022-07-08 mark dst->resized_x = v->resized_x;
1053 3c1dfe12 2022-07-08 mark dst->resized_y = v->resized_y;
1054 669b5ffa 2018-10-07 stsp }
1055 669b5ffa 2018-10-07 stsp
1056 669b5ffa 2018-10-07 stsp static const struct got_error *
1057 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
1058 669b5ffa 2018-10-07 stsp {
1059 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1060 669b5ffa 2018-10-07 stsp
1061 669b5ffa 2018-10-07 stsp if (view->child == NULL)
1062 669b5ffa 2018-10-07 stsp return NULL;
1063 669b5ffa 2018-10-07 stsp
1064 669b5ffa 2018-10-07 stsp err = view_close(view->child);
1065 669b5ffa 2018-10-07 stsp view->child = NULL;
1066 669b5ffa 2018-10-07 stsp return err;
1067 669b5ffa 2018-10-07 stsp }
1068 669b5ffa 2018-10-07 stsp
1069 0dbbbe90 2022-06-17 op static const struct got_error *
1070 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
1071 669b5ffa 2018-10-07 stsp {
1072 3c1dfe12 2022-07-08 mark const struct got_error *err = NULL;
1073 3c1dfe12 2022-07-08 mark
1074 669b5ffa 2018-10-07 stsp view->child = child;
1075 669b5ffa 2018-10-07 stsp child->parent = view;
1076 0dbbbe90 2022-06-17 op
1077 3c1dfe12 2022-07-08 mark err = view_resize(view);
1078 3c1dfe12 2022-07-08 mark if (err)
1079 3c1dfe12 2022-07-08 mark return err;
1080 3c1dfe12 2022-07-08 mark
1081 3c1dfe12 2022-07-08 mark if (view->child->resized_x || view->child->resized_y)
1082 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1083 3c1dfe12 2022-07-08 mark
1084 3c1dfe12 2022-07-08 mark return err;
1085 bfddd0d9 2018-09-29 stsp }
1086 136e2bd4 2022-07-23 mark
1087 136e2bd4 2022-07-23 mark static const struct got_error *view_dispatch_request(struct tog_view **,
1088 136e2bd4 2022-07-23 mark struct tog_view *, enum tog_view_type, int, int);
1089 136e2bd4 2022-07-23 mark
1090 136e2bd4 2022-07-23 mark static const struct got_error *
1091 136e2bd4 2022-07-23 mark view_request_new(struct tog_view **requested, struct tog_view *view,
1092 136e2bd4 2022-07-23 mark enum tog_view_type request)
1093 136e2bd4 2022-07-23 mark {
1094 136e2bd4 2022-07-23 mark struct tog_view *new_view = NULL;
1095 136e2bd4 2022-07-23 mark const struct got_error *err;
1096 136e2bd4 2022-07-23 mark int y = 0, x = 0;
1097 136e2bd4 2022-07-23 mark
1098 136e2bd4 2022-07-23 mark *requested = NULL;
1099 136e2bd4 2022-07-23 mark
1100 136e2bd4 2022-07-23 mark if (view_is_parent_view(view))
1101 136e2bd4 2022-07-23 mark view_get_split(view, &y, &x);
1102 bfddd0d9 2018-09-29 stsp
1103 136e2bd4 2022-07-23 mark err = view_dispatch_request(&new_view, view, request, y, x);
1104 136e2bd4 2022-07-23 mark if (err)
1105 136e2bd4 2022-07-23 mark return err;
1106 136e2bd4 2022-07-23 mark
1107 136e2bd4 2022-07-23 mark if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN) {
1108 136e2bd4 2022-07-23 mark err = view_init_hsplit(view, y);
1109 136e2bd4 2022-07-23 mark if (err)
1110 136e2bd4 2022-07-23 mark return err;
1111 136e2bd4 2022-07-23 mark }
1112 136e2bd4 2022-07-23 mark
1113 136e2bd4 2022-07-23 mark view->focussed = 0;
1114 136e2bd4 2022-07-23 mark new_view->focussed = 1;
1115 136e2bd4 2022-07-23 mark new_view->mode = view->mode;
1116 136e2bd4 2022-07-23 mark new_view->nlines = view->lines - y;
1117 136e2bd4 2022-07-23 mark
1118 136e2bd4 2022-07-23 mark if (view_is_parent_view(view)) {
1119 136e2bd4 2022-07-23 mark view_transfer_size(new_view, view);
1120 136e2bd4 2022-07-23 mark err = view_close_child(view);
1121 136e2bd4 2022-07-23 mark if (err)
1122 136e2bd4 2022-07-23 mark return err;
1123 136e2bd4 2022-07-23 mark err = view_set_child(view, new_view);
1124 136e2bd4 2022-07-23 mark if (err)
1125 136e2bd4 2022-07-23 mark return err;
1126 136e2bd4 2022-07-23 mark view->focus_child = 1;
1127 136e2bd4 2022-07-23 mark } else
1128 136e2bd4 2022-07-23 mark *requested = new_view;
1129 136e2bd4 2022-07-23 mark
1130 136e2bd4 2022-07-23 mark return NULL;
1131 136e2bd4 2022-07-23 mark }
1132 136e2bd4 2022-07-23 mark
1133 34bc9ec9 2019-02-22 stsp static void
1134 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
1135 25791caa 2018-10-24 stsp {
1136 25791caa 2018-10-24 stsp int cols, lines;
1137 25791caa 2018-10-24 stsp struct winsize size;
1138 25791caa 2018-10-24 stsp
1139 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1140 25791caa 2018-10-24 stsp cols = 80; /* Default */
1141 25791caa 2018-10-24 stsp lines = 24;
1142 25791caa 2018-10-24 stsp } else {
1143 25791caa 2018-10-24 stsp cols = size.ws_col;
1144 25791caa 2018-10-24 stsp lines = size.ws_row;
1145 25791caa 2018-10-24 stsp }
1146 25791caa 2018-10-24 stsp resize_term(lines, cols);
1147 2b49a8ae 2019-06-22 stsp }
1148 2b49a8ae 2019-06-22 stsp
1149 2b49a8ae 2019-06-22 stsp static const struct got_error *
1150 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
1151 2b49a8ae 2019-06-22 stsp {
1152 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
1153 9b058f45 2022-06-30 mark struct tog_view *v = view;
1154 2b49a8ae 2019-06-22 stsp char pattern[1024];
1155 2b49a8ae 2019-06-22 stsp int ret;
1156 c0c4acc8 2021-01-24 stsp
1157 c0c4acc8 2021-01-24 stsp if (view->search_started) {
1158 c0c4acc8 2021-01-24 stsp regfree(&view->regex);
1159 c0c4acc8 2021-01-24 stsp view->searching = 0;
1160 c0c4acc8 2021-01-24 stsp memset(&view->regmatch, 0, sizeof(view->regmatch));
1161 c0c4acc8 2021-01-24 stsp }
1162 c0c4acc8 2021-01-24 stsp view->search_started = 0;
1163 2b49a8ae 2019-06-22 stsp
1164 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
1165 2b49a8ae 2019-06-22 stsp return NULL;
1166 2b49a8ae 2019-06-22 stsp
1167 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1168 9b058f45 2022-06-30 mark v = view->child;
1169 2b49a8ae 2019-06-22 stsp
1170 9b058f45 2022-06-30 mark mvwaddstr(v->window, v->nlines - 1, 0, "/");
1171 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1172 9b058f45 2022-06-30 mark
1173 a6d37fac 2022-07-03 mark nodelay(view->window, FALSE); /* block for search term input */
1174 2b49a8ae 2019-06-22 stsp nocbreak();
1175 2b49a8ae 2019-06-22 stsp echo();
1176 9b058f45 2022-06-30 mark ret = wgetnstr(v->window, pattern, sizeof(pattern));
1177 9b058f45 2022-06-30 mark wrefresh(v->window);
1178 2b49a8ae 2019-06-22 stsp cbreak();
1179 2b49a8ae 2019-06-22 stsp noecho();
1180 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1181 2b49a8ae 2019-06-22 stsp if (ret == ERR)
1182 2b49a8ae 2019-06-22 stsp return NULL;
1183 2b49a8ae 2019-06-22 stsp
1184 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1185 7c32bd05 2019-06-22 stsp err = view->search_start(view);
1186 7c32bd05 2019-06-22 stsp if (err) {
1187 7c32bd05 2019-06-22 stsp regfree(&view->regex);
1188 7c32bd05 2019-06-22 stsp return err;
1189 7c32bd05 2019-06-22 stsp }
1190 c0c4acc8 2021-01-24 stsp view->search_started = 1;
1191 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
1192 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
1193 2b49a8ae 2019-06-22 stsp view->search_next(view);
1194 2b49a8ae 2019-06-22 stsp }
1195 2b49a8ae 2019-06-22 stsp
1196 2b49a8ae 2019-06-22 stsp return NULL;
1197 d2366e29 2022-07-07 mark }
1198 d2366e29 2022-07-07 mark
1199 7532ccda 2022-07-11 mark /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1200 d2366e29 2022-07-07 mark static const struct got_error *
1201 d2366e29 2022-07-07 mark switch_split(struct tog_view *view)
1202 d2366e29 2022-07-07 mark {
1203 d2366e29 2022-07-07 mark const struct got_error *err = NULL;
1204 d2366e29 2022-07-07 mark struct tog_view *v = NULL;
1205 d2366e29 2022-07-07 mark
1206 d2366e29 2022-07-07 mark if (view->parent)
1207 d2366e29 2022-07-07 mark v = view->parent;
1208 d2366e29 2022-07-07 mark else
1209 d2366e29 2022-07-07 mark v = view;
1210 d2366e29 2022-07-07 mark
1211 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN)
1212 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1213 7532ccda 2022-07-11 mark else
1214 d2366e29 2022-07-07 mark v->mode = TOG_VIEW_SPLIT_HRZN;
1215 d2366e29 2022-07-07 mark
1216 7532ccda 2022-07-11 mark if (!v->child)
1217 7532ccda 2022-07-11 mark return NULL;
1218 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1219 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_NONE;
1220 7532ccda 2022-07-11 mark
1221 d2366e29 2022-07-07 mark view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1222 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1223 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
1224 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1225 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1226 d2366e29 2022-07-07 mark
1227 7532ccda 2022-07-11 mark
1228 d2366e29 2022-07-07 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1229 d2366e29 2022-07-07 mark v->ncols = COLS;
1230 d2366e29 2022-07-07 mark v->child->ncols = COLS;
1231 7532ccda 2022-07-11 mark v->child->nscrolled = LINES - v->child->nlines;
1232 d2366e29 2022-07-07 mark
1233 d2366e29 2022-07-07 mark err = view_init_hsplit(v, v->child->begin_y);
1234 d2366e29 2022-07-07 mark if (err)
1235 d2366e29 2022-07-07 mark return err;
1236 d2366e29 2022-07-07 mark }
1237 d2366e29 2022-07-07 mark v->child->mode = v->mode;
1238 d2366e29 2022-07-07 mark v->child->nlines = v->lines - v->child->begin_y;
1239 d2366e29 2022-07-07 mark v->focus_child = 1;
1240 d2366e29 2022-07-07 mark
1241 d2366e29 2022-07-07 mark err = view_fullscreen(v);
1242 d2366e29 2022-07-07 mark if (err)
1243 d2366e29 2022-07-07 mark return err;
1244 d2366e29 2022-07-07 mark err = view_splitscreen(v->child);
1245 d2366e29 2022-07-07 mark if (err)
1246 d2366e29 2022-07-07 mark return err;
1247 d2366e29 2022-07-07 mark
1248 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_NONE)
1249 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1250 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1251 7532ccda 2022-07-11 mark err = offset_selection_down(v);
1252 279d2047 2022-07-29 stsp if (err)
1253 279d2047 2022-07-29 stsp return err;
1254 d2366e29 2022-07-07 mark err = offset_selection_down(v->child);
1255 279d2047 2022-07-29 stsp if (err)
1256 279d2047 2022-07-29 stsp return err;
1257 7532ccda 2022-07-11 mark } else {
1258 7532ccda 2022-07-11 mark offset_selection_up(v);
1259 7532ccda 2022-07-11 mark offset_selection_up(v->child);
1260 d2366e29 2022-07-07 mark }
1261 dff91825 2022-07-22 mark if (v->resize)
1262 dff91825 2022-07-22 mark err = v->resize(v, 0);
1263 dff91825 2022-07-22 mark else if (v->child->resize)
1264 dff91825 2022-07-22 mark err = v->child->resize(v->child, 0);
1265 d2366e29 2022-07-07 mark
1266 d2366e29 2022-07-07 mark return err;
1267 0cf4efb1 2018-09-29 stsp }
1268 6d0fee91 2018-08-01 stsp
1269 640cd7ff 2022-06-22 mark /*
1270 f0032ce6 2022-07-02 mark * Compute view->count from numeric input. Assign total to view->count and
1271 f0032ce6 2022-07-02 mark * return first non-numeric key entered.
1272 640cd7ff 2022-06-22 mark */
1273 640cd7ff 2022-06-22 mark static int
1274 640cd7ff 2022-06-22 mark get_compound_key(struct tog_view *view, int c)
1275 640cd7ff 2022-06-22 mark {
1276 9b058f45 2022-06-30 mark struct tog_view *v = view;
1277 9b058f45 2022-06-30 mark int x, n = 0;
1278 640cd7ff 2022-06-22 mark
1279 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1280 9b058f45 2022-06-30 mark v = view->child;
1281 9b058f45 2022-06-30 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1282 9b058f45 2022-06-30 mark v = view->parent;
1283 9b058f45 2022-06-30 mark
1284 640cd7ff 2022-06-22 mark view->count = 0;
1285 f0032ce6 2022-07-02 mark cbreak(); /* block for input */
1286 94b80cfa 2022-08-01 mark nodelay(view->window, FALSE);
1287 9b058f45 2022-06-30 mark wmove(v->window, v->nlines - 1, 0);
1288 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1289 9b058f45 2022-06-30 mark waddch(v->window, ':');
1290 640cd7ff 2022-06-22 mark
1291 640cd7ff 2022-06-22 mark do {
1292 9b058f45 2022-06-30 mark x = getcurx(v->window);
1293 9b058f45 2022-06-30 mark if (x != ERR && x < view->ncols) {
1294 9b058f45 2022-06-30 mark waddch(v->window, c);
1295 9b058f45 2022-06-30 mark wrefresh(v->window);
1296 9b058f45 2022-06-30 mark }
1297 9b058f45 2022-06-30 mark
1298 640cd7ff 2022-06-22 mark /*
1299 640cd7ff 2022-06-22 mark * Don't overflow. Max valid request should be the greatest
1300 640cd7ff 2022-06-22 mark * between the longest and total lines; cap at 10 million.
1301 640cd7ff 2022-06-22 mark */
1302 640cd7ff 2022-06-22 mark if (n >= 9999999)
1303 640cd7ff 2022-06-22 mark n = 9999999;
1304 640cd7ff 2022-06-22 mark else
1305 640cd7ff 2022-06-22 mark n = n * 10 + (c - '0');
1306 640cd7ff 2022-06-22 mark } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1307 640cd7ff 2022-06-22 mark
1308 94b80cfa 2022-08-01 mark if (c == 'G' || c == 'g') { /* nG key map */
1309 94b80cfa 2022-08-01 mark view->gline = view->hiline = n;
1310 94b80cfa 2022-08-01 mark n = 0;
1311 94b80cfa 2022-08-01 mark c = 0;
1312 94b80cfa 2022-08-01 mark }
1313 94b80cfa 2022-08-01 mark
1314 640cd7ff 2022-06-22 mark /* Massage excessive or inapplicable values at the input handler. */
1315 640cd7ff 2022-06-22 mark view->count = n;
1316 640cd7ff 2022-06-22 mark
1317 640cd7ff 2022-06-22 mark return c;
1318 640cd7ff 2022-06-22 mark }
1319 640cd7ff 2022-06-22 mark
1320 0cf4efb1 2018-09-29 stsp static const struct got_error *
1321 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
1322 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
1323 e5a0f69f 2018-08-18 stsp {
1324 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1325 669b5ffa 2018-10-07 stsp struct tog_view *v;
1326 1a76625f 2018-10-22 stsp int ch, errcode;
1327 e5a0f69f 2018-08-18 stsp
1328 e5a0f69f 2018-08-18 stsp *new = NULL;
1329 8f4ed634 2020-03-26 stsp
1330 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
1331 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1332 640cd7ff 2022-06-22 mark view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1333 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
1334 640cd7ff 2022-06-22 mark view->count = 0;
1335 640cd7ff 2022-06-22 mark }
1336 e5a0f69f 2018-08-18 stsp
1337 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
1338 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1339 82954512 2020-02-03 stsp if (errcode)
1340 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1341 82954512 2020-02-03 stsp "pthread_mutex_unlock");
1342 3da8ef85 2021-09-21 stsp sched_yield();
1343 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
1344 82954512 2020-02-03 stsp if (errcode)
1345 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1346 82954512 2020-02-03 stsp "pthread_mutex_lock");
1347 60493ae3 2019-06-20 stsp view->search_next(view);
1348 60493ae3 2019-06-20 stsp return NULL;
1349 60493ae3 2019-06-20 stsp }
1350 60493ae3 2019-06-20 stsp
1351 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
1352 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1353 1a76625f 2018-10-22 stsp if (errcode)
1354 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
1355 a6d37fac 2022-07-03 mark /* If we have an unfinished count, let C-g or backspace abort. */
1356 a6d37fac 2022-07-03 mark if (view->count && --view->count) {
1357 a6d37fac 2022-07-03 mark cbreak();
1358 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1359 640cd7ff 2022-06-22 mark ch = wgetch(view->window);
1360 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1361 a6d37fac 2022-07-03 mark view->count = 0;
1362 a6d37fac 2022-07-03 mark else
1363 a6d37fac 2022-07-03 mark ch = view->ch;
1364 a6d37fac 2022-07-03 mark } else {
1365 a6d37fac 2022-07-03 mark ch = wgetch(view->window);
1366 640cd7ff 2022-06-22 mark if (ch >= '1' && ch <= '9')
1367 640cd7ff 2022-06-22 mark view->ch = ch = get_compound_key(view, ch);
1368 640cd7ff 2022-06-22 mark }
1369 94b80cfa 2022-08-01 mark if (view->hiline && ch != ERR && ch != 0)
1370 94b80cfa 2022-08-01 mark view->hiline = 0; /* key pressed, clear line highlight */
1371 94b80cfa 2022-08-01 mark nodelay(view->window, TRUE);
1372 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1373 1a76625f 2018-10-22 stsp if (errcode)
1374 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1375 25791caa 2018-10-24 stsp
1376 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
1377 25791caa 2018-10-24 stsp tog_resizeterm();
1378 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
1379 61266923 2020-01-14 stsp tog_sigcont_received = 0;
1380 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
1381 25791caa 2018-10-24 stsp err = view_resize(v);
1382 25791caa 2018-10-24 stsp if (err)
1383 25791caa 2018-10-24 stsp return err;
1384 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
1385 25791caa 2018-10-24 stsp if (err)
1386 25791caa 2018-10-24 stsp return err;
1387 cdfcfb03 2020-12-06 stsp if (v->child) {
1388 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
1389 cdfcfb03 2020-12-06 stsp if (err)
1390 cdfcfb03 2020-12-06 stsp return err;
1391 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
1392 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
1393 cdfcfb03 2020-12-06 stsp if (err)
1394 cdfcfb03 2020-12-06 stsp return err;
1395 3c1dfe12 2022-07-08 mark if (v->child->resized_x || v->child->resized_y) {
1396 3c1dfe12 2022-07-08 mark err = view_resize_split(v, 0);
1397 3c1dfe12 2022-07-08 mark if (err)
1398 3c1dfe12 2022-07-08 mark return err;
1399 3c1dfe12 2022-07-08 mark }
1400 cdfcfb03 2020-12-06 stsp }
1401 25791caa 2018-10-24 stsp }
1402 25791caa 2018-10-24 stsp }
1403 25791caa 2018-10-24 stsp
1404 e5a0f69f 2018-08-18 stsp switch (ch) {
1405 1e37a5c2 2019-05-12 jcs case '\t':
1406 640cd7ff 2022-06-22 mark view->count = 0;
1407 1e37a5c2 2019-05-12 jcs if (view->child) {
1408 e78dc838 2020-12-04 stsp view->focussed = 0;
1409 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1410 e78dc838 2020-12-04 stsp view->focus_child = 1;
1411 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
1412 e78dc838 2020-12-04 stsp view->focussed = 0;
1413 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
1414 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1415 9b058f45 2022-06-30 mark if (!view_is_splitscreen(view)) {
1416 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1417 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent,
1418 6fe51fee 2022-07-22 mark 0);
1419 9b058f45 2022-06-30 mark if (err)
1420 9b058f45 2022-06-30 mark return err;
1421 9b058f45 2022-06-30 mark }
1422 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1423 6131ff18 2022-06-20 mark err = view_fullscreen(view->parent);
1424 9b058f45 2022-06-30 mark if (err)
1425 9b058f45 2022-06-30 mark return err;
1426 9b058f45 2022-06-30 mark }
1427 1e37a5c2 2019-05-12 jcs }
1428 1e37a5c2 2019-05-12 jcs break;
1429 1e37a5c2 2019-05-12 jcs case 'q':
1430 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1431 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1432 9b058f45 2022-06-30 mark /* might need more commits to fill fullscreen */
1433 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent, 0);
1434 9b058f45 2022-06-30 mark if (err)
1435 9b058f45 2022-06-30 mark break;
1436 9b058f45 2022-06-30 mark }
1437 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1438 9b058f45 2022-06-30 mark }
1439 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1440 9970f7fc 2020-12-03 stsp view->dying = 1;
1441 1e37a5c2 2019-05-12 jcs break;
1442 1e37a5c2 2019-05-12 jcs case 'Q':
1443 1e37a5c2 2019-05-12 jcs *done = 1;
1444 1e37a5c2 2019-05-12 jcs break;
1445 61417565 2022-06-20 mark case 'F':
1446 640cd7ff 2022-06-22 mark view->count = 0;
1447 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
1448 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
1449 1e37a5c2 2019-05-12 jcs break;
1450 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
1451 e78dc838 2020-12-04 stsp view->focussed = 0;
1452 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1453 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
1454 3c1dfe12 2022-07-08 mark } else {
1455 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
1456 3c1dfe12 2022-07-08 mark if (!err)
1457 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1458 3c1dfe12 2022-07-08 mark }
1459 1e37a5c2 2019-05-12 jcs if (err)
1460 1e37a5c2 2019-05-12 jcs break;
1461 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
1462 9970f7fc 2020-12-03 stsp KEY_RESIZE);
1463 1e37a5c2 2019-05-12 jcs } else {
1464 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
1465 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
1466 e78dc838 2020-12-04 stsp view->focussed = 1;
1467 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
1468 1e37a5c2 2019-05-12 jcs } else {
1469 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
1470 9b058f45 2022-06-30 mark if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1471 6131ff18 2022-06-20 mark err = view_resize(view->parent);
1472 3c1dfe12 2022-07-08 mark if (!err)
1473 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1474 669b5ffa 2018-10-07 stsp }
1475 1e37a5c2 2019-05-12 jcs if (err)
1476 1e37a5c2 2019-05-12 jcs break;
1477 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
1478 1e37a5c2 2019-05-12 jcs }
1479 9b058f45 2022-06-30 mark if (err)
1480 9b058f45 2022-06-30 mark break;
1481 6fe51fee 2022-07-22 mark if (view->resize) {
1482 6fe51fee 2022-07-22 mark err = view->resize(view, 0);
1483 9b058f45 2022-06-30 mark if (err)
1484 9b058f45 2022-06-30 mark break;
1485 9b058f45 2022-06-30 mark }
1486 9b058f45 2022-06-30 mark if (view->parent)
1487 9b058f45 2022-06-30 mark err = offset_selection_down(view->parent);
1488 9b058f45 2022-06-30 mark if (!err)
1489 9b058f45 2022-06-30 mark err = offset_selection_down(view);
1490 1e37a5c2 2019-05-12 jcs break;
1491 d2366e29 2022-07-07 mark case 'S':
1492 3c1dfe12 2022-07-08 mark view->count = 0;
1493 d2366e29 2022-07-07 mark err = switch_split(view);
1494 3c1dfe12 2022-07-08 mark break;
1495 3c1dfe12 2022-07-08 mark case '-':
1496 3c1dfe12 2022-07-08 mark err = view_resize_split(view, -1);
1497 d2366e29 2022-07-07 mark break;
1498 3c1dfe12 2022-07-08 mark case '+':
1499 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 1);
1500 3c1dfe12 2022-07-08 mark break;
1501 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
1502 60493ae3 2019-06-20 stsp break;
1503 60493ae3 2019-06-20 stsp case '/':
1504 640cd7ff 2022-06-22 mark view->count = 0;
1505 60493ae3 2019-06-20 stsp if (view->search_start)
1506 2b49a8ae 2019-06-22 stsp view_search_start(view);
1507 60493ae3 2019-06-20 stsp else
1508 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1509 1e37a5c2 2019-05-12 jcs break;
1510 b1bf1435 2019-06-21 stsp case 'N':
1511 60493ae3 2019-06-20 stsp case 'n':
1512 c0c4acc8 2021-01-24 stsp if (view->search_started && view->search_next) {
1513 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
1514 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1515 60493ae3 2019-06-20 stsp view->search_next_done = 0;
1516 60493ae3 2019-06-20 stsp view->search_next(view);
1517 60493ae3 2019-06-20 stsp } else
1518 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1519 917d79a7 2022-07-01 stsp break;
1520 917d79a7 2022-07-01 stsp case 'A':
1521 917d79a7 2022-07-01 stsp if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1522 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1523 917d79a7 2022-07-01 stsp else
1524 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1525 917d79a7 2022-07-01 stsp TAILQ_FOREACH(v, views, entry) {
1526 917d79a7 2022-07-01 stsp if (v->reset) {
1527 917d79a7 2022-07-01 stsp err = v->reset(v);
1528 917d79a7 2022-07-01 stsp if (err)
1529 917d79a7 2022-07-01 stsp return err;
1530 917d79a7 2022-07-01 stsp }
1531 917d79a7 2022-07-01 stsp if (v->child && v->child->reset) {
1532 917d79a7 2022-07-01 stsp err = v->child->reset(v->child);
1533 917d79a7 2022-07-01 stsp if (err)
1534 917d79a7 2022-07-01 stsp return err;
1535 917d79a7 2022-07-01 stsp }
1536 917d79a7 2022-07-01 stsp }
1537 60493ae3 2019-06-20 stsp break;
1538 1e37a5c2 2019-05-12 jcs default:
1539 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1540 1e37a5c2 2019-05-12 jcs break;
1541 e5a0f69f 2018-08-18 stsp }
1542 e5a0f69f 2018-08-18 stsp
1543 e5a0f69f 2018-08-18 stsp return err;
1544 e5a0f69f 2018-08-18 stsp }
1545 e5a0f69f 2018-08-18 stsp
1546 336075a4 2022-06-25 op static int
1547 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
1548 a3404814 2018-09-02 stsp {
1549 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
1550 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
1551 669b5ffa 2018-10-07 stsp return 0;
1552 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
1553 669b5ffa 2018-10-07 stsp return 0;
1554 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
1555 a3404814 2018-09-02 stsp return 0;
1556 a3404814 2018-09-02 stsp
1557 669b5ffa 2018-10-07 stsp return view->focussed;
1558 a3404814 2018-09-02 stsp }
1559 a3404814 2018-09-02 stsp
1560 bcbd79e2 2018-08-19 stsp static const struct got_error *
1561 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
1562 e5a0f69f 2018-08-18 stsp {
1563 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1564 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
1565 fb59748f 2020-12-05 stsp struct tog_view *new_view;
1566 d2366e29 2022-07-07 mark char *mode;
1567 fd823528 2018-10-22 stsp int fast_refresh = 10;
1568 1a76625f 2018-10-22 stsp int done = 0, errcode;
1569 e5a0f69f 2018-08-18 stsp
1570 d2366e29 2022-07-07 mark mode = getenv("TOG_VIEW_SPLIT_MODE");
1571 d2366e29 2022-07-07 mark if (!mode || !(*mode == 'h' || *mode == 'H'))
1572 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_VERT;
1573 d2366e29 2022-07-07 mark else
1574 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_HRZN;
1575 d2366e29 2022-07-07 mark
1576 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1577 1a76625f 2018-10-22 stsp if (errcode)
1578 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1579 1a76625f 2018-10-22 stsp
1580 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1581 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1582 e5a0f69f 2018-08-18 stsp
1583 1004088d 2018-09-29 stsp view->focussed = 1;
1584 878940b7 2018-09-29 stsp err = view->show(view);
1585 0cf4efb1 2018-09-29 stsp if (err)
1586 0cf4efb1 2018-09-29 stsp return err;
1587 0cf4efb1 2018-09-29 stsp update_panels();
1588 0cf4efb1 2018-09-29 stsp doupdate();
1589 5629093a 2022-07-11 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1590 5629093a 2022-07-11 stsp !tog_fatal_signal_received()) {
1591 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1592 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1593 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1594 fd823528 2018-10-22 stsp
1595 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1596 e5a0f69f 2018-08-18 stsp if (err)
1597 e5a0f69f 2018-08-18 stsp break;
1598 9970f7fc 2020-12-03 stsp if (view->dying) {
1599 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1600 669b5ffa 2018-10-07 stsp
1601 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1602 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1603 9970f7fc 2020-12-03 stsp entry);
1604 e78dc838 2020-12-04 stsp else if (view->parent)
1605 669b5ffa 2018-10-07 stsp prev = view->parent;
1606 669b5ffa 2018-10-07 stsp
1607 e78dc838 2020-12-04 stsp if (view->parent) {
1608 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1609 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1610 9b058f45 2022-06-30 mark /* Restore fullscreen line height. */
1611 9b058f45 2022-06-30 mark view->parent->nlines = view->parent->lines;
1612 0dbbbe90 2022-06-17 op err = view_resize(view->parent);
1613 0dbbbe90 2022-06-17 op if (err)
1614 0dbbbe90 2022-06-17 op break;
1615 3c1dfe12 2022-07-08 mark /* Make resized splits persist. */
1616 3c1dfe12 2022-07-08 mark view_transfer_size(view->parent, view);
1617 e78dc838 2020-12-04 stsp } else
1618 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1619 669b5ffa 2018-10-07 stsp
1620 9970f7fc 2020-12-03 stsp err = view_close(view);
1621 fb59748f 2020-12-05 stsp if (err)
1622 e5a0f69f 2018-08-18 stsp goto done;
1623 669b5ffa 2018-10-07 stsp
1624 e78dc838 2020-12-04 stsp view = NULL;
1625 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1626 e78dc838 2020-12-04 stsp if (v->focussed)
1627 e78dc838 2020-12-04 stsp break;
1628 0cf4efb1 2018-09-29 stsp }
1629 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1630 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1631 e78dc838 2020-12-04 stsp if (prev)
1632 e78dc838 2020-12-04 stsp view = prev;
1633 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1634 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1635 e78dc838 2020-12-04 stsp tog_view_list_head);
1636 e78dc838 2020-12-04 stsp }
1637 e78dc838 2020-12-04 stsp if (view) {
1638 e78dc838 2020-12-04 stsp if (view->focus_child) {
1639 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1640 e78dc838 2020-12-04 stsp view = view->child;
1641 e78dc838 2020-12-04 stsp } else
1642 e78dc838 2020-12-04 stsp view->focussed = 1;
1643 e78dc838 2020-12-04 stsp }
1644 e78dc838 2020-12-04 stsp }
1645 e5a0f69f 2018-08-18 stsp }
1646 bcbd79e2 2018-08-19 stsp if (new_view) {
1647 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1648 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1649 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1650 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1651 86c66b02 2018-10-18 stsp continue;
1652 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1653 86c66b02 2018-10-18 stsp err = view_close(v);
1654 86c66b02 2018-10-18 stsp if (err)
1655 86c66b02 2018-10-18 stsp goto done;
1656 86c66b02 2018-10-18 stsp break;
1657 86c66b02 2018-10-18 stsp }
1658 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1659 fed7eaa8 2018-10-24 stsp view = new_view;
1660 0ae84acc 2022-06-15 tracey }
1661 669b5ffa 2018-10-07 stsp if (view) {
1662 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1663 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1664 e78dc838 2020-12-04 stsp view = view->child;
1665 e78dc838 2020-12-04 stsp } else {
1666 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1667 e78dc838 2020-12-04 stsp view = view->parent;
1668 1a76625f 2018-10-22 stsp }
1669 e78dc838 2020-12-04 stsp show_panel(view->panel);
1670 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1671 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1672 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1673 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1674 669b5ffa 2018-10-07 stsp if (err)
1675 1a76625f 2018-10-22 stsp goto done;
1676 669b5ffa 2018-10-07 stsp }
1677 669b5ffa 2018-10-07 stsp err = view->show(view);
1678 0cf4efb1 2018-09-29 stsp if (err)
1679 1a76625f 2018-10-22 stsp goto done;
1680 669b5ffa 2018-10-07 stsp if (view->child) {
1681 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1682 669b5ffa 2018-10-07 stsp if (err)
1683 1a76625f 2018-10-22 stsp goto done;
1684 669b5ffa 2018-10-07 stsp }
1685 1a76625f 2018-10-22 stsp update_panels();
1686 1a76625f 2018-10-22 stsp doupdate();
1687 0cf4efb1 2018-09-29 stsp }
1688 e5a0f69f 2018-08-18 stsp }
1689 e5a0f69f 2018-08-18 stsp done:
1690 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1691 5629093a 2022-07-11 stsp const struct got_error *close_err;
1692 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1693 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1694 5629093a 2022-07-11 stsp close_err = view_close(view);
1695 5629093a 2022-07-11 stsp if (close_err && err == NULL)
1696 5629093a 2022-07-11 stsp err = close_err;
1697 e5a0f69f 2018-08-18 stsp }
1698 1a76625f 2018-10-22 stsp
1699 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1700 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1701 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1702 1a76625f 2018-10-22 stsp
1703 e5a0f69f 2018-08-18 stsp return err;
1704 ea5e7bb5 2018-08-01 stsp }
1705 ea5e7bb5 2018-08-01 stsp
1706 4ed7e80c 2018-05-20 stsp __dead static void
1707 9f7d7167 2018-04-29 stsp usage_log(void)
1708 9f7d7167 2018-04-29 stsp {
1709 80ddbec8 2018-04-29 stsp endwin();
1710 c70c5802 2018-08-01 stsp fprintf(stderr,
1711 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1712 9f7d7167 2018-04-29 stsp getprogname());
1713 9f7d7167 2018-04-29 stsp exit(1);
1714 80ddbec8 2018-04-29 stsp }
1715 80ddbec8 2018-04-29 stsp
1716 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1717 80ddbec8 2018-04-29 stsp static const struct got_error *
1718 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1719 963b370f 2018-05-20 stsp {
1720 00dfcb92 2018-06-11 stsp char *vis = NULL;
1721 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1722 963b370f 2018-05-20 stsp
1723 963b370f 2018-05-20 stsp *ws = NULL;
1724 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1725 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1726 00dfcb92 2018-06-11 stsp int vislen;
1727 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1728 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1729 00dfcb92 2018-06-11 stsp
1730 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1731 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1732 00dfcb92 2018-06-11 stsp if (err)
1733 00dfcb92 2018-06-11 stsp return err;
1734 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1735 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1736 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1737 a7f50699 2018-06-11 stsp goto done;
1738 a7f50699 2018-06-11 stsp }
1739 00dfcb92 2018-06-11 stsp }
1740 963b370f 2018-05-20 stsp
1741 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1742 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1743 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1744 a7f50699 2018-06-11 stsp goto done;
1745 a7f50699 2018-06-11 stsp }
1746 963b370f 2018-05-20 stsp
1747 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1748 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1749 a7f50699 2018-06-11 stsp done:
1750 00dfcb92 2018-06-11 stsp free(vis);
1751 963b370f 2018-05-20 stsp if (err) {
1752 963b370f 2018-05-20 stsp free(*ws);
1753 963b370f 2018-05-20 stsp *ws = NULL;
1754 963b370f 2018-05-20 stsp *wlen = 0;
1755 963b370f 2018-05-20 stsp }
1756 963b370f 2018-05-20 stsp return err;
1757 145b6838 2022-06-16 stsp }
1758 145b6838 2022-06-16 stsp
1759 145b6838 2022-06-16 stsp static const struct got_error *
1760 145b6838 2022-06-16 stsp expand_tab(char **ptr, const char *src)
1761 145b6838 2022-06-16 stsp {
1762 145b6838 2022-06-16 stsp char *dst;
1763 145b6838 2022-06-16 stsp size_t len, n, idx = 0, sz = 0;
1764 145b6838 2022-06-16 stsp
1765 145b6838 2022-06-16 stsp *ptr = NULL;
1766 145b6838 2022-06-16 stsp n = len = strlen(src);
1767 6e1c41ad 2022-06-16 mark dst = malloc(n + 1);
1768 145b6838 2022-06-16 stsp if (dst == NULL)
1769 145b6838 2022-06-16 stsp return got_error_from_errno("malloc");
1770 145b6838 2022-06-16 stsp
1771 145b6838 2022-06-16 stsp while (idx < len && src[idx]) {
1772 145b6838 2022-06-16 stsp const char c = src[idx];
1773 145b6838 2022-06-16 stsp
1774 145b6838 2022-06-16 stsp if (c == '\t') {
1775 145b6838 2022-06-16 stsp size_t nb = TABSIZE - sz % TABSIZE;
1776 367ddf28 2022-06-16 mark char *p;
1777 367ddf28 2022-06-16 mark
1778 367ddf28 2022-06-16 mark p = realloc(dst, n + nb);
1779 6e1c41ad 2022-06-16 mark if (p == NULL) {
1780 6e1c41ad 2022-06-16 mark free(dst);
1781 6e1c41ad 2022-06-16 mark return got_error_from_errno("realloc");
1782 6e1c41ad 2022-06-16 mark
1783 6e1c41ad 2022-06-16 mark }
1784 6e1c41ad 2022-06-16 mark dst = p;
1785 145b6838 2022-06-16 stsp n += nb;
1786 6e1c41ad 2022-06-16 mark memset(dst + sz, ' ', nb);
1787 145b6838 2022-06-16 stsp sz += nb;
1788 145b6838 2022-06-16 stsp } else
1789 145b6838 2022-06-16 stsp dst[sz++] = src[idx];
1790 145b6838 2022-06-16 stsp ++idx;
1791 145b6838 2022-06-16 stsp }
1792 145b6838 2022-06-16 stsp
1793 145b6838 2022-06-16 stsp dst[sz] = '\0';
1794 145b6838 2022-06-16 stsp *ptr = dst;
1795 145b6838 2022-06-16 stsp return NULL;
1796 963b370f 2018-05-20 stsp }
1797 963b370f 2018-05-20 stsp
1798 4e4a9ac8 2022-06-17 op /*
1799 4e4a9ac8 2022-06-17 op * Advance at most n columns from wline starting at offset off.
1800 4e4a9ac8 2022-06-17 op * Return the index to the first character after the span operation.
1801 4e4a9ac8 2022-06-17 op * Return the combined column width of all spanned wide character in
1802 4e4a9ac8 2022-06-17 op * *rcol.
1803 ccda2f4d 2022-06-16 stsp */
1804 4e4a9ac8 2022-06-17 op static int
1805 4e4a9ac8 2022-06-17 op span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1806 4e4a9ac8 2022-06-17 op {
1807 4e4a9ac8 2022-06-17 op int width, i, cols = 0;
1808 ccda2f4d 2022-06-16 stsp
1809 4e4a9ac8 2022-06-17 op if (n == 0) {
1810 4e4a9ac8 2022-06-17 op *rcol = cols;
1811 4e4a9ac8 2022-06-17 op return off;
1812 4e4a9ac8 2022-06-17 op }
1813 ccda2f4d 2022-06-16 stsp
1814 4e4a9ac8 2022-06-17 op for (i = off; wline[i] != L'\0'; ++i) {
1815 4e4a9ac8 2022-06-17 op if (wline[i] == L'\t')
1816 4e4a9ac8 2022-06-17 op width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1817 4e4a9ac8 2022-06-17 op else
1818 4e4a9ac8 2022-06-17 op width = wcwidth(wline[i]);
1819 ccda2f4d 2022-06-16 stsp
1820 4e4a9ac8 2022-06-17 op if (width == -1) {
1821 4e4a9ac8 2022-06-17 op width = 1;
1822 4e4a9ac8 2022-06-17 op wline[i] = L'.';
1823 ccda2f4d 2022-06-16 stsp }
1824 ccda2f4d 2022-06-16 stsp
1825 4e4a9ac8 2022-06-17 op if (cols + width > n)
1826 4e4a9ac8 2022-06-17 op break;
1827 4e4a9ac8 2022-06-17 op cols += width;
1828 ccda2f4d 2022-06-16 stsp }
1829 ccda2f4d 2022-06-16 stsp
1830 4e4a9ac8 2022-06-17 op *rcol = cols;
1831 4e4a9ac8 2022-06-17 op return i;
1832 ccda2f4d 2022-06-16 stsp }
1833 ccda2f4d 2022-06-16 stsp
1834 ccda2f4d 2022-06-16 stsp /*
1835 ccda2f4d 2022-06-16 stsp * Format a line for display, ensuring that it won't overflow a width limit.
1836 ccda2f4d 2022-06-16 stsp * With scrolling, the width returned refers to the scrolled version of the
1837 ccda2f4d 2022-06-16 stsp * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1838 ccda2f4d 2022-06-16 stsp */
1839 ccda2f4d 2022-06-16 stsp static const struct got_error *
1840 ccda2f4d 2022-06-16 stsp format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1841 ccda2f4d 2022-06-16 stsp const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1842 ccda2f4d 2022-06-16 stsp {
1843 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1844 4e4a9ac8 2022-06-17 op int cols;
1845 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1846 145b6838 2022-06-16 stsp char *exstr = NULL;
1847 963b370f 2018-05-20 stsp size_t wlen;
1848 4e4a9ac8 2022-06-17 op int i, scrollx;
1849 963b370f 2018-05-20 stsp
1850 963b370f 2018-05-20 stsp *wlinep = NULL;
1851 b700b5d6 2018-07-10 stsp *widthp = 0;
1852 963b370f 2018-05-20 stsp
1853 145b6838 2022-06-16 stsp if (expand) {
1854 145b6838 2022-06-16 stsp err = expand_tab(&exstr, line);
1855 145b6838 2022-06-16 stsp if (err)
1856 145b6838 2022-06-16 stsp return err;
1857 145b6838 2022-06-16 stsp }
1858 145b6838 2022-06-16 stsp
1859 145b6838 2022-06-16 stsp err = mbs2ws(&wline, &wlen, expand ? exstr : line);
1860 145b6838 2022-06-16 stsp free(exstr);
1861 963b370f 2018-05-20 stsp if (err)
1862 963b370f 2018-05-20 stsp return err;
1863 963b370f 2018-05-20 stsp
1864 4e4a9ac8 2022-06-17 op scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
1865 ccda2f4d 2022-06-16 stsp
1866 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
1867 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
1868 3f670bfb 2020-12-10 stsp wlen--;
1869 3f670bfb 2020-12-10 stsp }
1870 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
1871 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
1872 3f670bfb 2020-12-10 stsp wlen--;
1873 3f670bfb 2020-12-10 stsp }
1874 3f670bfb 2020-12-10 stsp
1875 4e4a9ac8 2022-06-17 op i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
1876 4e4a9ac8 2022-06-17 op wline[i] = L'\0';
1877 27a741e5 2019-09-11 stsp
1878 b700b5d6 2018-07-10 stsp if (widthp)
1879 b700b5d6 2018-07-10 stsp *widthp = cols;
1880 ccda2f4d 2022-06-16 stsp if (scrollxp)
1881 ccda2f4d 2022-06-16 stsp *scrollxp = scrollx;
1882 963b370f 2018-05-20 stsp if (err)
1883 963b370f 2018-05-20 stsp free(wline);
1884 963b370f 2018-05-20 stsp else
1885 963b370f 2018-05-20 stsp *wlinep = wline;
1886 963b370f 2018-05-20 stsp return err;
1887 963b370f 2018-05-20 stsp }
1888 963b370f 2018-05-20 stsp
1889 8b473291 2019-02-21 stsp static const struct got_error*
1890 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
1891 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
1892 8b473291 2019-02-21 stsp {
1893 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
1894 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
1895 8b473291 2019-02-21 stsp char *s;
1896 8b473291 2019-02-21 stsp const char *name;
1897 8b473291 2019-02-21 stsp
1898 8b473291 2019-02-21 stsp *refs_str = NULL;
1899 8b473291 2019-02-21 stsp
1900 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
1901 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
1902 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
1903 52b5abe1 2019-08-13 stsp int cmp;
1904 52b5abe1 2019-08-13 stsp
1905 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
1906 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
1907 8b473291 2019-02-21 stsp continue;
1908 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
1909 8b473291 2019-02-21 stsp name += 5;
1910 cc488aa7 2022-01-23 stsp if (strncmp(name, "got/", 4) == 0 &&
1911 cc488aa7 2022-01-23 stsp strncmp(name, "got/backup/", 11) != 0)
1912 7143d404 2019-03-12 stsp continue;
1913 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
1914 8b473291 2019-02-21 stsp name += 6;
1915 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
1916 8b473291 2019-02-21 stsp name += 8;
1917 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
1918 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
1919 79cc719f 2020-04-24 stsp continue;
1920 79cc719f 2020-04-24 stsp }
1921 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
1922 48cae60d 2020-09-22 stsp if (err)
1923 48cae60d 2020-09-22 stsp break;
1924 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
1925 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
1926 5d844a1e 2019-08-13 stsp if (err) {
1927 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
1928 48cae60d 2020-09-22 stsp free(ref_id);
1929 5d844a1e 2019-08-13 stsp break;
1930 48cae60d 2020-09-22 stsp }
1931 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
1932 5d844a1e 2019-08-13 stsp err = NULL;
1933 5d844a1e 2019-08-13 stsp tag = NULL;
1934 5d844a1e 2019-08-13 stsp }
1935 52b5abe1 2019-08-13 stsp }
1936 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
1937 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
1938 48cae60d 2020-09-22 stsp free(ref_id);
1939 52b5abe1 2019-08-13 stsp if (tag)
1940 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
1941 52b5abe1 2019-08-13 stsp if (cmp != 0)
1942 52b5abe1 2019-08-13 stsp continue;
1943 8b473291 2019-02-21 stsp s = *refs_str;
1944 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
1945 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
1946 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1947 8b473291 2019-02-21 stsp free(s);
1948 8b473291 2019-02-21 stsp *refs_str = NULL;
1949 8b473291 2019-02-21 stsp break;
1950 8b473291 2019-02-21 stsp }
1951 8b473291 2019-02-21 stsp free(s);
1952 8b473291 2019-02-21 stsp }
1953 8b473291 2019-02-21 stsp
1954 8b473291 2019-02-21 stsp return err;
1955 8b473291 2019-02-21 stsp }
1956 8b473291 2019-02-21 stsp
1957 963b370f 2018-05-20 stsp static const struct got_error *
1958 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
1959 27a741e5 2019-09-11 stsp int col_tab_align)
1960 5813d178 2019-03-09 stsp {
1961 e6b8b890 2020-12-29 naddy char *smallerthan;
1962 5813d178 2019-03-09 stsp
1963 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
1964 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
1965 5813d178 2019-03-09 stsp author = smallerthan + 1;
1966 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
1967 ccda2f4d 2022-06-16 stsp return format_line(wauthor, author_width, NULL, author, 0, limit,
1968 ccda2f4d 2022-06-16 stsp col_tab_align, 0);
1969 5813d178 2019-03-09 stsp }
1970 5813d178 2019-03-09 stsp
1971 5813d178 2019-03-09 stsp static const struct got_error *
1972 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
1973 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
1974 8fdc79fe 2020-12-01 naddy int author_display_cols)
1975 80ddbec8 2018-04-29 stsp {
1976 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
1977 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
1978 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
1979 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
1980 5813d178 2019-03-09 stsp char *author = NULL;
1981 ccda2f4d 2022-06-16 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
1982 bb737323 2018-05-20 stsp int author_width, logmsg_width;
1983 5813d178 2019-03-09 stsp char *newline, *line = NULL;
1984 ccda2f4d 2022-06-16 stsp int col, limit, scrollx;
1985 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
1986 ccb26ccd 2018-11-05 stsp struct tm tm;
1987 45d799e2 2018-12-23 stsp time_t committer_time;
1988 11b20872 2019-11-08 stsp struct tog_color *tc;
1989 80ddbec8 2018-04-29 stsp
1990 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
1991 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
1992 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
1993 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
1994 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
1995 b39d25c7 2018-07-10 stsp
1996 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
1997 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
1998 b39d25c7 2018-07-10 stsp else
1999 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2000 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
2001 11b20872 2019-11-08 stsp if (tc)
2002 11b20872 2019-11-08 stsp wattr_on(view->window,
2003 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2004 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
2005 11b20872 2019-11-08 stsp if (tc)
2006 11b20872 2019-11-08 stsp wattr_off(view->window,
2007 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2008 27a741e5 2019-09-11 stsp col = limit;
2009 b39d25c7 2018-07-10 stsp if (col > avail)
2010 b39d25c7 2018-07-10 stsp goto done;
2011 6570a66d 2019-11-08 stsp
2012 6570a66d 2019-11-08 stsp if (avail >= 120) {
2013 6570a66d 2019-11-08 stsp char *id_str;
2014 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
2015 6570a66d 2019-11-08 stsp if (err)
2016 6570a66d 2019-11-08 stsp goto done;
2017 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2018 11b20872 2019-11-08 stsp if (tc)
2019 11b20872 2019-11-08 stsp wattr_on(view->window,
2020 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2021 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
2022 11b20872 2019-11-08 stsp if (tc)
2023 11b20872 2019-11-08 stsp wattr_off(view->window,
2024 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2025 6570a66d 2019-11-08 stsp free(id_str);
2026 6570a66d 2019-11-08 stsp col += 9;
2027 6570a66d 2019-11-08 stsp if (col > avail)
2028 6570a66d 2019-11-08 stsp goto done;
2029 6570a66d 2019-11-08 stsp }
2030 b39d25c7 2018-07-10 stsp
2031 10aab77f 2022-07-19 op if (s->use_committer)
2032 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(commit));
2033 10aab77f 2022-07-19 op else
2034 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(commit));
2035 5813d178 2019-03-09 stsp if (author == NULL) {
2036 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2037 80ddbec8 2018-04-29 stsp goto done;
2038 80ddbec8 2018-04-29 stsp }
2039 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
2040 bb737323 2018-05-20 stsp if (err)
2041 bb737323 2018-05-20 stsp goto done;
2042 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2043 11b20872 2019-11-08 stsp if (tc)
2044 11b20872 2019-11-08 stsp wattr_on(view->window,
2045 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2046 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
2047 11b20872 2019-11-08 stsp if (tc)
2048 11b20872 2019-11-08 stsp wattr_off(view->window,
2049 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2050 bb737323 2018-05-20 stsp col += author_width;
2051 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2052 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2053 bb737323 2018-05-20 stsp col++;
2054 bb737323 2018-05-20 stsp author_width++;
2055 bb737323 2018-05-20 stsp }
2056 9c2eaf34 2018-05-20 stsp if (col > avail)
2057 9c2eaf34 2018-05-20 stsp goto done;
2058 80ddbec8 2018-04-29 stsp
2059 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2060 5943eee2 2019-08-13 stsp if (err)
2061 6d9fbc00 2018-04-29 stsp goto done;
2062 bb737323 2018-05-20 stsp logmsg = logmsg0;
2063 bb737323 2018-05-20 stsp while (*logmsg == '\n')
2064 bb737323 2018-05-20 stsp logmsg++;
2065 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
2066 bb737323 2018-05-20 stsp if (newline)
2067 bb737323 2018-05-20 stsp *newline = '\0';
2068 ccda2f4d 2022-06-16 stsp limit = avail - col;
2069 49b24ee5 2022-07-03 mark if (view->child && !view_is_hsplit_top(view) && limit > 0)
2070 4d1f6af3 2022-06-17 op limit--; /* for the border */
2071 ccda2f4d 2022-06-16 stsp err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2072 ccda2f4d 2022-06-16 stsp limit, col, 1);
2073 29688b02 2022-06-16 stsp if (err)
2074 29688b02 2022-06-16 stsp goto done;
2075 ccda2f4d 2022-06-16 stsp waddwstr(view->window, &wlogmsg[scrollx]);
2076 29688b02 2022-06-16 stsp col += MAX(logmsg_width, 0);
2077 27a741e5 2019-09-11 stsp while (col < avail) {
2078 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2079 bb737323 2018-05-20 stsp col++;
2080 881b2d3e 2018-04-30 stsp }
2081 80ddbec8 2018-04-29 stsp done:
2082 80ddbec8 2018-04-29 stsp free(logmsg0);
2083 bb737323 2018-05-20 stsp free(wlogmsg);
2084 5813d178 2019-03-09 stsp free(author);
2085 bb737323 2018-05-20 stsp free(wauthor);
2086 80ddbec8 2018-04-29 stsp free(line);
2087 80ddbec8 2018-04-29 stsp return err;
2088 80ddbec8 2018-04-29 stsp }
2089 26ed57b2 2018-05-19 stsp
2090 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
2091 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
2092 899d86c2 2018-05-10 stsp struct got_object_id *id)
2093 80ddbec8 2018-04-29 stsp {
2094 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
2095 80ddbec8 2018-04-29 stsp
2096 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2097 80ddbec8 2018-04-29 stsp if (entry == NULL)
2098 899d86c2 2018-05-10 stsp return NULL;
2099 99db9666 2018-05-07 stsp
2100 899d86c2 2018-05-10 stsp entry->id = id;
2101 99db9666 2018-05-07 stsp entry->commit = commit;
2102 899d86c2 2018-05-10 stsp return entry;
2103 99db9666 2018-05-07 stsp }
2104 80ddbec8 2018-04-29 stsp
2105 99db9666 2018-05-07 stsp static void
2106 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2107 99db9666 2018-05-07 stsp {
2108 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2109 99db9666 2018-05-07 stsp
2110 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2111 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2112 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2113 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2114 9ba79e04 2018-06-11 stsp /* Don't free entry->id! It is owned by the commit graph. */
2115 99db9666 2018-05-07 stsp free(entry);
2116 99db9666 2018-05-07 stsp }
2117 99db9666 2018-05-07 stsp
2118 99db9666 2018-05-07 stsp static void
2119 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2120 99db9666 2018-05-07 stsp {
2121 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2122 99db9666 2018-05-07 stsp pop_commit(commits);
2123 c4972b91 2018-05-07 stsp }
2124 c4972b91 2018-05-07 stsp
2125 c4972b91 2018-05-07 stsp static const struct got_error *
2126 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2127 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2128 13add988 2019-10-15 stsp {
2129 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2130 13add988 2019-10-15 stsp regmatch_t regmatch;
2131 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2132 13add988 2019-10-15 stsp
2133 13add988 2019-10-15 stsp *have_match = 0;
2134 13add988 2019-10-15 stsp
2135 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2136 13add988 2019-10-15 stsp if (err)
2137 13add988 2019-10-15 stsp return err;
2138 13add988 2019-10-15 stsp
2139 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2140 13add988 2019-10-15 stsp if (err)
2141 13add988 2019-10-15 stsp goto done;
2142 13add988 2019-10-15 stsp
2143 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2144 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2145 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2146 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2147 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2148 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2149 13add988 2019-10-15 stsp *have_match = 1;
2150 13add988 2019-10-15 stsp done:
2151 13add988 2019-10-15 stsp free(id_str);
2152 13add988 2019-10-15 stsp free(logmsg);
2153 13add988 2019-10-15 stsp return err;
2154 13add988 2019-10-15 stsp }
2155 13add988 2019-10-15 stsp
2156 13add988 2019-10-15 stsp static const struct got_error *
2157 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2158 c4972b91 2018-05-07 stsp {
2159 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2160 9ba79e04 2018-06-11 stsp
2161 1a76625f 2018-10-22 stsp /*
2162 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2163 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2164 1a76625f 2018-10-22 stsp * while updating the display.
2165 1a76625f 2018-10-22 stsp */
2166 4e0d2870 2020-12-07 naddy do {
2167 93e45b7c 2018-09-24 stsp struct got_object_id *id;
2168 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2169 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2170 1a76625f 2018-10-22 stsp int errcode;
2171 899d86c2 2018-05-10 stsp
2172 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2173 4e0d2870 2020-12-07 naddy NULL, NULL);
2174 ee780d5c 2020-01-04 stsp if (err || id == NULL)
2175 ecb28ae0 2018-07-16 stsp break;
2176 899d86c2 2018-05-10 stsp
2177 4e0d2870 2020-12-07 naddy err = got_object_open_as_commit(&commit, a->repo, id);
2178 9ba79e04 2018-06-11 stsp if (err)
2179 9ba79e04 2018-06-11 stsp break;
2180 9ba79e04 2018-06-11 stsp entry = alloc_commit_queue_entry(commit, id);
2181 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2182 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2183 9ba79e04 2018-06-11 stsp break;
2184 9ba79e04 2018-06-11 stsp }
2185 93e45b7c 2018-09-24 stsp
2186 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2187 1a76625f 2018-10-22 stsp if (errcode) {
2188 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2189 13add988 2019-10-15 stsp "pthread_mutex_lock");
2190 1a76625f 2018-10-22 stsp break;
2191 1a76625f 2018-10-22 stsp }
2192 1a76625f 2018-10-22 stsp
2193 4e0d2870 2020-12-07 naddy entry->idx = a->commits->ncommits;
2194 4e0d2870 2020-12-07 naddy TAILQ_INSERT_TAIL(&a->commits->head, entry, entry);
2195 4e0d2870 2020-12-07 naddy a->commits->ncommits++;
2196 1a76625f 2018-10-22 stsp
2197 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2198 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2199 7c1452c1 2020-03-26 stsp int have_match;
2200 4e0d2870 2020-12-07 naddy err = match_commit(&have_match, id, commit, a->regex);
2201 7c1452c1 2020-03-26 stsp if (err)
2202 7c1452c1 2020-03-26 stsp break;
2203 7c1452c1 2020-03-26 stsp if (have_match)
2204 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2205 13add988 2019-10-15 stsp }
2206 13add988 2019-10-15 stsp
2207 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2208 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2209 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2210 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2211 7c1452c1 2020-03-26 stsp if (err)
2212 13add988 2019-10-15 stsp break;
2213 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2214 899d86c2 2018-05-10 stsp
2215 9ba79e04 2018-06-11 stsp return err;
2216 0553a4e3 2018-04-30 stsp }
2217 0553a4e3 2018-04-30 stsp
2218 2b779855 2020-12-05 naddy static void
2219 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2220 2b779855 2020-12-05 naddy {
2221 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2222 2b779855 2020-12-05 naddy int ncommits = 0;
2223 2b779855 2020-12-05 naddy
2224 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2225 2b779855 2020-12-05 naddy while (entry) {
2226 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2227 2b779855 2020-12-05 naddy s->selected_entry = entry;
2228 2b779855 2020-12-05 naddy break;
2229 2b779855 2020-12-05 naddy }
2230 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2231 2b779855 2020-12-05 naddy ncommits++;
2232 2b779855 2020-12-05 naddy }
2233 2b779855 2020-12-05 naddy }
2234 2b779855 2020-12-05 naddy
2235 0553a4e3 2018-04-30 stsp static const struct got_error *
2236 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2237 0553a4e3 2018-04-30 stsp {
2238 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2239 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2240 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2241 8fdc79fe 2020-12-01 naddy const int limit = view->nlines;
2242 60493ae3 2019-06-20 stsp int width;
2243 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2244 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2245 8b473291 2019-02-21 stsp char *refs_str = NULL;
2246 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2247 11b20872 2019-11-08 stsp struct tog_color *tc;
2248 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2249 0553a4e3 2018-04-30 stsp
2250 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2251 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2252 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2253 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2254 1a76625f 2018-10-22 stsp if (err)
2255 ecb28ae0 2018-07-16 stsp return err;
2256 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2257 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2258 d2075bf3 2020-12-25 stsp if (refs) {
2259 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2260 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2261 d2075bf3 2020-12-25 stsp if (err)
2262 d2075bf3 2020-12-25 stsp goto done;
2263 d2075bf3 2020-12-25 stsp }
2264 867c6645 2018-07-10 stsp }
2265 359bfafd 2019-02-22 stsp
2266 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2267 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2268 1a76625f 2018-10-22 stsp
2269 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2270 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2271 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
2272 d2ad595c 2020-04-09 stsp (view->searching && !view->search_next_done) ?
2273 d2ad595c 2020-04-09 stsp "searching..." : "loading...") == -1) {
2274 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2275 8f4ed634 2020-03-26 stsp goto done;
2276 8f4ed634 2020-03-26 stsp }
2277 8f4ed634 2020-03-26 stsp } else {
2278 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2279 f9686aa5 2020-03-27 stsp
2280 f9686aa5 2020-03-27 stsp if (view->searching) {
2281 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2282 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2283 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2284 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2285 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2286 f9686aa5 2020-03-27 stsp search_str = "searching...";
2287 f9686aa5 2020-03-27 stsp }
2288 f9686aa5 2020-03-27 stsp
2289 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2290 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
2291 f9686aa5 2020-03-27 stsp search_str ? search_str :
2292 f9686aa5 2020-03-27 stsp (refs_str ? refs_str : "")) == -1) {
2293 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2294 8f4ed634 2020-03-26 stsp goto done;
2295 8f4ed634 2020-03-26 stsp }
2296 8b473291 2019-02-21 stsp }
2297 1a76625f 2018-10-22 stsp
2298 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2299 87411fa9 2022-06-16 stsp if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2300 87411fa9 2022-06-16 stsp "........................................",
2301 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2302 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2303 1a76625f 2018-10-22 stsp header = NULL;
2304 1a76625f 2018-10-22 stsp goto done;
2305 1a76625f 2018-10-22 stsp }
2306 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2307 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2308 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
2309 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2310 1a76625f 2018-10-22 stsp header = NULL;
2311 1a76625f 2018-10-22 stsp goto done;
2312 ecb28ae0 2018-07-16 stsp }
2313 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2314 1a76625f 2018-10-22 stsp if (err)
2315 1a76625f 2018-10-22 stsp goto done;
2316 867c6645 2018-07-10 stsp
2317 2814baeb 2018-08-01 stsp werase(view->window);
2318 867c6645 2018-07-10 stsp
2319 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2320 a3404814 2018-09-02 stsp wstandout(view->window);
2321 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2322 11b20872 2019-11-08 stsp if (tc)
2323 11b20872 2019-11-08 stsp wattr_on(view->window,
2324 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2325 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2326 11b20872 2019-11-08 stsp if (tc)
2327 11b20872 2019-11-08 stsp wattr_off(view->window,
2328 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2329 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2330 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2331 1a76625f 2018-10-22 stsp width++;
2332 1a76625f 2018-10-22 stsp }
2333 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2334 a3404814 2018-09-02 stsp wstandend(view->window);
2335 ecb28ae0 2018-07-16 stsp free(wline);
2336 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2337 1a76625f 2018-10-22 stsp goto done;
2338 0553a4e3 2018-04-30 stsp
2339 29688b02 2022-06-16 stsp /* Grow author column size if necessary, and set view->maxx. */
2340 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2341 5813d178 2019-03-09 stsp ncommits = 0;
2342 145b6838 2022-06-16 stsp view->maxx = 0;
2343 5813d178 2019-03-09 stsp while (entry) {
2344 10aab77f 2022-07-19 op struct got_commit_object *c = entry->commit;
2345 145b6838 2022-06-16 stsp char *author, *eol, *msg, *msg0;
2346 29688b02 2022-06-16 stsp wchar_t *wauthor, *wmsg;
2347 5813d178 2019-03-09 stsp int width;
2348 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2349 5813d178 2019-03-09 stsp break;
2350 10aab77f 2022-07-19 op if (s->use_committer)
2351 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(c));
2352 10aab77f 2022-07-19 op else
2353 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(c));
2354 5813d178 2019-03-09 stsp if (author == NULL) {
2355 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2356 5813d178 2019-03-09 stsp goto done;
2357 5813d178 2019-03-09 stsp }
2358 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2359 27a741e5 2019-09-11 stsp date_display_cols);
2360 5813d178 2019-03-09 stsp if (author_cols < width)
2361 5813d178 2019-03-09 stsp author_cols = width;
2362 5813d178 2019-03-09 stsp free(wauthor);
2363 5813d178 2019-03-09 stsp free(author);
2364 a310d9c3 2022-07-21 florian if (err)
2365 a310d9c3 2022-07-21 florian goto done;
2366 10aab77f 2022-07-19 op err = got_object_commit_get_logmsg(&msg0, c);
2367 145b6838 2022-06-16 stsp if (err)
2368 145b6838 2022-06-16 stsp goto done;
2369 145b6838 2022-06-16 stsp msg = msg0;
2370 145b6838 2022-06-16 stsp while (*msg == '\n')
2371 145b6838 2022-06-16 stsp ++msg;
2372 145b6838 2022-06-16 stsp if ((eol = strchr(msg, '\n')))
2373 29688b02 2022-06-16 stsp *eol = '\0';
2374 ccda2f4d 2022-06-16 stsp err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2375 29688b02 2022-06-16 stsp date_display_cols + author_cols, 0);
2376 29688b02 2022-06-16 stsp if (err)
2377 29688b02 2022-06-16 stsp goto done;
2378 29688b02 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
2379 145b6838 2022-06-16 stsp free(msg0);
2380 29688b02 2022-06-16 stsp free(wmsg);
2381 7ca04879 2019-10-19 stsp ncommits++;
2382 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2383 5813d178 2019-03-09 stsp }
2384 5813d178 2019-03-09 stsp
2385 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2386 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2387 867c6645 2018-07-10 stsp ncommits = 0;
2388 899d86c2 2018-05-10 stsp while (entry) {
2389 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2390 899d86c2 2018-05-10 stsp break;
2391 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2392 2814baeb 2018-08-01 stsp wstandout(view->window);
2393 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2394 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2395 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2396 2814baeb 2018-08-01 stsp wstandend(view->window);
2397 0553a4e3 2018-04-30 stsp if (err)
2398 60493ae3 2019-06-20 stsp goto done;
2399 0553a4e3 2018-04-30 stsp ncommits++;
2400 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2401 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2402 80ddbec8 2018-04-29 stsp }
2403 80ddbec8 2018-04-29 stsp
2404 9b058f45 2022-06-30 mark view_border(view);
2405 1a76625f 2018-10-22 stsp done:
2406 1a76625f 2018-10-22 stsp free(id_str);
2407 8b473291 2019-02-21 stsp free(refs_str);
2408 1a76625f 2018-10-22 stsp free(ncommits_str);
2409 1a76625f 2018-10-22 stsp free(header);
2410 80ddbec8 2018-04-29 stsp return err;
2411 9f7d7167 2018-04-29 stsp }
2412 07b55e75 2018-05-10 stsp
2413 07b55e75 2018-05-10 stsp static void
2414 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2415 07b55e75 2018-05-10 stsp {
2416 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2417 07b55e75 2018-05-10 stsp int nscrolled = 0;
2418 07b55e75 2018-05-10 stsp
2419 ffe38506 2020-12-01 naddy entry = TAILQ_FIRST(&s->commits.head);
2420 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2421 07b55e75 2018-05-10 stsp return;
2422 9f7d7167 2018-04-29 stsp
2423 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2424 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2425 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2426 07b55e75 2018-05-10 stsp if (entry) {
2427 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2428 07b55e75 2018-05-10 stsp nscrolled++;
2429 07b55e75 2018-05-10 stsp }
2430 07b55e75 2018-05-10 stsp }
2431 aa075928 2018-05-10 stsp }
2432 aa075928 2018-05-10 stsp
2433 aa075928 2018-05-10 stsp static const struct got_error *
2434 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2435 aa075928 2018-05-10 stsp {
2436 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2437 5e224a3e 2019-02-22 stsp int errcode;
2438 8a42fca8 2019-02-22 stsp
2439 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2440 aa075928 2018-05-10 stsp
2441 5629093a 2022-07-11 stsp while (!ta->log_complete && !tog_thread_error &&
2442 5629093a 2022-07-11 stsp (ta->commits_needed > 0 || ta->load_all)) {
2443 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2444 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2445 7aafa0d1 2019-02-22 stsp if (errcode)
2446 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2447 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2448 7c1452c1 2020-03-26 stsp
2449 7c1452c1 2020-03-26 stsp /*
2450 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2451 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2452 7c1452c1 2020-03-26 stsp */
2453 7c1452c1 2020-03-26 stsp if (!wait)
2454 7c1452c1 2020-03-26 stsp break;
2455 7c1452c1 2020-03-26 stsp
2456 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2457 ffe38506 2020-12-01 naddy show_log_view(view);
2458 7c1452c1 2020-03-26 stsp update_panels();
2459 7c1452c1 2020-03-26 stsp doupdate();
2460 7c1452c1 2020-03-26 stsp
2461 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2462 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2463 82954512 2020-02-03 stsp if (errcode)
2464 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2465 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2466 82954512 2020-02-03 stsp
2467 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2468 ffe38506 2020-12-01 naddy show_log_view(view);
2469 7c1452c1 2020-03-26 stsp update_panels();
2470 7c1452c1 2020-03-26 stsp doupdate();
2471 5e224a3e 2019-02-22 stsp }
2472 5e224a3e 2019-02-22 stsp
2473 5e224a3e 2019-02-22 stsp return NULL;
2474 5e224a3e 2019-02-22 stsp }
2475 5e224a3e 2019-02-22 stsp
2476 5e224a3e 2019-02-22 stsp static const struct got_error *
2477 9b058f45 2022-06-30 mark request_log_commits(struct tog_view *view)
2478 9b058f45 2022-06-30 mark {
2479 9b058f45 2022-06-30 mark struct tog_log_view_state *state = &view->state.log;
2480 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
2481 2525dccb 2022-07-13 mark
2482 2525dccb 2022-07-13 mark if (state->thread_args.log_complete)
2483 2525dccb 2022-07-13 mark return NULL;
2484 9b058f45 2022-06-30 mark
2485 27187d45 2022-07-11 mark state->thread_args.commits_needed += view->nscrolled;
2486 9b058f45 2022-06-30 mark err = trigger_log_thread(view, 1);
2487 9b058f45 2022-06-30 mark view->nscrolled = 0;
2488 9b058f45 2022-06-30 mark
2489 9b058f45 2022-06-30 mark return err;
2490 9b058f45 2022-06-30 mark }
2491 9b058f45 2022-06-30 mark
2492 9b058f45 2022-06-30 mark static const struct got_error *
2493 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2494 5e224a3e 2019-02-22 stsp {
2495 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2496 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2497 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2498 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2499 5e224a3e 2019-02-22 stsp
2500 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2501 5e224a3e 2019-02-22 stsp return NULL;
2502 5e224a3e 2019-02-22 stsp
2503 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2504 ffe38506 2020-12-01 naddy if (s->commits.ncommits < ncommits_needed &&
2505 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2506 08ebd0a9 2019-02-22 stsp /*
2507 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2508 08ebd0a9 2019-02-22 stsp */
2509 94b80cfa 2022-08-01 mark s->thread_args.commits_needed +=
2510 94b80cfa 2022-08-01 mark ncommits_needed - s->commits.ncommits;
2511 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2512 5e224a3e 2019-02-22 stsp if (err)
2513 5e224a3e 2019-02-22 stsp return err;
2514 7aafa0d1 2019-02-22 stsp }
2515 b295e71b 2019-02-22 stsp
2516 7aafa0d1 2019-02-22 stsp do {
2517 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2518 9b058f45 2022-06-30 mark if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2519 88048b54 2019-02-21 stsp break;
2520 88048b54 2019-02-21 stsp
2521 9b058f45 2022-06-30 mark s->last_displayed_entry = pentry ?
2522 9b058f45 2022-06-30 mark pentry : s->last_displayed_entry;;
2523 aa075928 2018-05-10 stsp
2524 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2525 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2526 dd0a52c1 2018-05-20 stsp break;
2527 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2528 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2529 aa075928 2018-05-10 stsp
2530 2525dccb 2022-07-13 mark if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2531 9b058f45 2022-06-30 mark view->nscrolled += nscrolled;
2532 9b058f45 2022-06-30 mark else
2533 9b058f45 2022-06-30 mark view->nscrolled = 0;
2534 9b058f45 2022-06-30 mark
2535 dd0a52c1 2018-05-20 stsp return err;
2536 07b55e75 2018-05-10 stsp }
2537 4a7f7875 2018-05-10 stsp
2538 cd0acaa7 2018-05-20 stsp static const struct got_error *
2539 9b058f45 2022-06-30 mark open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2540 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2541 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2542 cd0acaa7 2018-05-20 stsp {
2543 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2544 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2545 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2546 cd0acaa7 2018-05-20 stsp
2547 9b058f45 2022-06-30 mark diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2548 15a94983 2018-12-23 stsp if (diff_view == NULL)
2549 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2550 ea5e7bb5 2018-08-01 stsp
2551 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2552 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2553 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2554 e5a0f69f 2018-08-18 stsp if (err == NULL)
2555 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2556 cd0acaa7 2018-05-20 stsp return err;
2557 4a7f7875 2018-05-10 stsp }
2558 4a7f7875 2018-05-10 stsp
2559 80ddbec8 2018-04-29 stsp static const struct got_error *
2560 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2561 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2562 9343a5fb 2018-06-23 stsp {
2563 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2564 941e9f74 2019-05-21 stsp
2565 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2566 941e9f74 2019-05-21 stsp if (parent == NULL)
2567 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2568 941e9f74 2019-05-21 stsp
2569 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2570 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2571 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2572 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2573 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2574 941e9f74 2019-05-21 stsp s->tree = subtree;
2575 941e9f74 2019-05-21 stsp s->selected = 0;
2576 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2577 941e9f74 2019-05-21 stsp return NULL;
2578 941e9f74 2019-05-21 stsp }
2579 941e9f74 2019-05-21 stsp
2580 941e9f74 2019-05-21 stsp static const struct got_error *
2581 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2582 a44927cc 2022-04-07 stsp struct got_commit_object *commit, const char *path)
2583 941e9f74 2019-05-21 stsp {
2584 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2585 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2586 941e9f74 2019-05-21 stsp const char *p;
2587 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2588 9343a5fb 2018-06-23 stsp
2589 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2590 941e9f74 2019-05-21 stsp p = path;
2591 941e9f74 2019-05-21 stsp while (*p) {
2592 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2593 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2594 56e0773d 2019-11-28 stsp char *te_name;
2595 33cbf02b 2020-01-12 stsp
2596 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2597 33cbf02b 2020-01-12 stsp p++;
2598 941e9f74 2019-05-21 stsp
2599 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2600 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2601 941e9f74 2019-05-21 stsp if (slash == NULL)
2602 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2603 33cbf02b 2020-01-12 stsp else
2604 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2605 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2606 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2607 56e0773d 2019-11-28 stsp break;
2608 941e9f74 2019-05-21 stsp }
2609 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2610 56e0773d 2019-11-28 stsp if (te == NULL) {
2611 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2612 56e0773d 2019-11-28 stsp free(te_name);
2613 941e9f74 2019-05-21 stsp break;
2614 941e9f74 2019-05-21 stsp }
2615 56e0773d 2019-11-28 stsp free(te_name);
2616 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2617 941e9f74 2019-05-21 stsp
2618 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2619 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2620 b03c880f 2019-05-21 stsp
2621 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2622 941e9f74 2019-05-21 stsp if (slash)
2623 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2624 941e9f74 2019-05-21 stsp else
2625 941e9f74 2019-05-21 stsp subpath = strdup(path);
2626 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2627 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2628 941e9f74 2019-05-21 stsp break;
2629 941e9f74 2019-05-21 stsp }
2630 941e9f74 2019-05-21 stsp
2631 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&tree_id, s->repo, commit,
2632 941e9f74 2019-05-21 stsp subpath);
2633 941e9f74 2019-05-21 stsp if (err)
2634 941e9f74 2019-05-21 stsp break;
2635 941e9f74 2019-05-21 stsp
2636 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2637 941e9f74 2019-05-21 stsp free(tree_id);
2638 941e9f74 2019-05-21 stsp if (err)
2639 941e9f74 2019-05-21 stsp break;
2640 941e9f74 2019-05-21 stsp
2641 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2642 941e9f74 2019-05-21 stsp if (err) {
2643 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2644 941e9f74 2019-05-21 stsp break;
2645 941e9f74 2019-05-21 stsp }
2646 941e9f74 2019-05-21 stsp if (slash == NULL)
2647 941e9f74 2019-05-21 stsp break;
2648 941e9f74 2019-05-21 stsp free(subpath);
2649 941e9f74 2019-05-21 stsp subpath = NULL;
2650 941e9f74 2019-05-21 stsp p = slash;
2651 941e9f74 2019-05-21 stsp }
2652 941e9f74 2019-05-21 stsp
2653 941e9f74 2019-05-21 stsp free(subpath);
2654 1a76625f 2018-10-22 stsp return err;
2655 61266923 2020-01-14 stsp }
2656 61266923 2020-01-14 stsp
2657 61266923 2020-01-14 stsp static const struct got_error *
2658 49b24ee5 2022-07-03 mark browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2659 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2660 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2661 55cccc34 2020-02-20 stsp {
2662 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2663 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2664 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2665 55cccc34 2020-02-20 stsp
2666 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2667 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2668 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2669 55cccc34 2020-02-20 stsp
2670 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2671 bc573f3b 2021-07-10 stsp if (err)
2672 55cccc34 2020-02-20 stsp return err;
2673 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2674 55cccc34 2020-02-20 stsp
2675 55cccc34 2020-02-20 stsp *new_view = tree_view;
2676 55cccc34 2020-02-20 stsp
2677 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2678 55cccc34 2020-02-20 stsp return NULL;
2679 55cccc34 2020-02-20 stsp
2680 a44927cc 2022-04-07 stsp return tree_view_walk_path(s, entry->commit, path);
2681 55cccc34 2020-02-20 stsp }
2682 55cccc34 2020-02-20 stsp
2683 55cccc34 2020-02-20 stsp static const struct got_error *
2684 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2685 61266923 2020-01-14 stsp {
2686 61266923 2020-01-14 stsp sigset_t sigset;
2687 61266923 2020-01-14 stsp int errcode;
2688 61266923 2020-01-14 stsp
2689 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2690 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2691 61266923 2020-01-14 stsp
2692 2497f032 2022-05-31 stsp /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2693 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2694 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2695 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2696 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2697 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGINT) == -1)
2698 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2699 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGTERM) == -1)
2700 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2701 61266923 2020-01-14 stsp
2702 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2703 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2704 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2705 61266923 2020-01-14 stsp
2706 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2707 61266923 2020-01-14 stsp if (errcode)
2708 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2709 61266923 2020-01-14 stsp
2710 61266923 2020-01-14 stsp return NULL;
2711 1a76625f 2018-10-22 stsp }
2712 1a76625f 2018-10-22 stsp
2713 1a76625f 2018-10-22 stsp static void *
2714 1a76625f 2018-10-22 stsp log_thread(void *arg)
2715 1a76625f 2018-10-22 stsp {
2716 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2717 1a76625f 2018-10-22 stsp int errcode = 0;
2718 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2719 1a76625f 2018-10-22 stsp int done = 0;
2720 61266923 2020-01-14 stsp
2721 5629093a 2022-07-11 stsp /*
2722 5629093a 2022-07-11 stsp * Sync startup with main thread such that we begin our
2723 5629093a 2022-07-11 stsp * work once view_input() has released the mutex.
2724 5629093a 2022-07-11 stsp */
2725 5629093a 2022-07-11 stsp errcode = pthread_mutex_lock(&tog_mutex);
2726 5629093a 2022-07-11 stsp if (errcode) {
2727 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_lock");
2728 61266923 2020-01-14 stsp return (void *)err;
2729 5629093a 2022-07-11 stsp }
2730 1a76625f 2018-10-22 stsp
2731 5629093a 2022-07-11 stsp err = block_signals_used_by_main_thread();
2732 5629093a 2022-07-11 stsp if (err) {
2733 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2734 5629093a 2022-07-11 stsp goto done;
2735 5629093a 2022-07-11 stsp }
2736 5629093a 2022-07-11 stsp
2737 2497f032 2022-05-31 stsp while (!done && !err && !tog_fatal_signal_received()) {
2738 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2739 5629093a 2022-07-11 stsp if (errcode) {
2740 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode,
2741 5629093a 2022-07-11 stsp "pthread_mutex_unlock");
2742 5629093a 2022-07-11 stsp goto done;
2743 5629093a 2022-07-11 stsp }
2744 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2745 1a76625f 2018-10-22 stsp if (err) {
2746 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2747 5629093a 2022-07-11 stsp goto done;
2748 1a76625f 2018-10-22 stsp err = NULL;
2749 1a76625f 2018-10-22 stsp done = 1;
2750 fb280deb 2021-08-30 stsp } else if (a->commits_needed > 0 && !a->load_all)
2751 1a76625f 2018-10-22 stsp a->commits_needed--;
2752 1a76625f 2018-10-22 stsp
2753 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2754 3abe8080 2019-04-10 stsp if (errcode) {
2755 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2756 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2757 5629093a 2022-07-11 stsp goto done;
2758 3abe8080 2019-04-10 stsp } else if (*a->quit)
2759 1a76625f 2018-10-22 stsp done = 1;
2760 3abe8080 2019-04-10 stsp else if (*a->first_displayed_entry == NULL) {
2761 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2762 1a76625f 2018-10-22 stsp TAILQ_FIRST(&a->commits->head);
2763 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2764 1a76625f 2018-10-22 stsp }
2765 1a76625f 2018-10-22 stsp
2766 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2767 7c1452c1 2020-03-26 stsp if (errcode) {
2768 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2769 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2770 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2771 5629093a 2022-07-11 stsp goto done;
2772 7c1452c1 2020-03-26 stsp }
2773 7c1452c1 2020-03-26 stsp
2774 1a76625f 2018-10-22 stsp if (done)
2775 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2776 7c1452c1 2020-03-26 stsp else {
2777 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2778 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2779 7c1452c1 2020-03-26 stsp &tog_mutex);
2780 5629093a 2022-07-11 stsp if (errcode) {
2781 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2782 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2783 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2784 5629093a 2022-07-11 stsp goto done;
2785 5629093a 2022-07-11 stsp }
2786 21355643 2020-12-06 stsp if (*a->quit)
2787 21355643 2020-12-06 stsp done = 1;
2788 7c1452c1 2020-03-26 stsp }
2789 1a76625f 2018-10-22 stsp }
2790 1a76625f 2018-10-22 stsp }
2791 3abe8080 2019-04-10 stsp a->log_complete = 1;
2792 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2793 5629093a 2022-07-11 stsp if (errcode)
2794 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
2795 5629093a 2022-07-11 stsp done:
2796 5629093a 2022-07-11 stsp if (err) {
2797 5629093a 2022-07-11 stsp tog_thread_error = 1;
2798 5629093a 2022-07-11 stsp pthread_cond_signal(&a->commit_loaded);
2799 5629093a 2022-07-11 stsp }
2800 1a76625f 2018-10-22 stsp return (void *)err;
2801 1a76625f 2018-10-22 stsp }
2802 1a76625f 2018-10-22 stsp
2803 1a76625f 2018-10-22 stsp static const struct got_error *
2804 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
2805 1a76625f 2018-10-22 stsp {
2806 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *thread_err = NULL;
2807 1a76625f 2018-10-22 stsp int errcode;
2808 1a76625f 2018-10-22 stsp
2809 1a76625f 2018-10-22 stsp if (s->thread) {
2810 1a76625f 2018-10-22 stsp s->quit = 1;
2811 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
2812 1a76625f 2018-10-22 stsp if (errcode)
2813 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2814 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2815 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2816 1a76625f 2018-10-22 stsp if (errcode)
2817 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2818 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2819 5629093a 2022-07-11 stsp errcode = pthread_join(s->thread, (void **)&thread_err);
2820 1a76625f 2018-10-22 stsp if (errcode)
2821 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
2822 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2823 1a76625f 2018-10-22 stsp if (errcode)
2824 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2825 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2826 1a76625f 2018-10-22 stsp s->thread = NULL;
2827 1a76625f 2018-10-22 stsp }
2828 1a76625f 2018-10-22 stsp
2829 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
2830 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
2831 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
2832 74467cc8 2022-06-15 stsp }
2833 74467cc8 2022-06-15 stsp
2834 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds) {
2835 74467cc8 2022-06-15 stsp const struct got_error *pack_err =
2836 74467cc8 2022-06-15 stsp got_repo_pack_fds_close(s->thread_args.pack_fds);
2837 74467cc8 2022-06-15 stsp if (err == NULL)
2838 74467cc8 2022-06-15 stsp err = pack_err;
2839 74467cc8 2022-06-15 stsp s->thread_args.pack_fds = NULL;
2840 1a76625f 2018-10-22 stsp }
2841 1a76625f 2018-10-22 stsp
2842 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
2843 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
2844 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
2845 1a76625f 2018-10-22 stsp }
2846 1a76625f 2018-10-22 stsp
2847 5629093a 2022-07-11 stsp return err ? err : thread_err;
2848 9343a5fb 2018-06-23 stsp }
2849 9343a5fb 2018-06-23 stsp
2850 9343a5fb 2018-06-23 stsp static const struct got_error *
2851 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
2852 1a76625f 2018-10-22 stsp {
2853 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2854 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
2855 276b94a1 2020-11-13 naddy int errcode;
2856 1a76625f 2018-10-22 stsp
2857 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
2858 276b94a1 2020-11-13 naddy
2859 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
2860 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2861 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2862 276b94a1 2020-11-13 naddy
2863 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
2864 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2865 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2866 276b94a1 2020-11-13 naddy
2867 1a76625f 2018-10-22 stsp free_commits(&s->commits);
2868 1a76625f 2018-10-22 stsp free(s->in_repo_path);
2869 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
2870 1a76625f 2018-10-22 stsp free(s->start_id);
2871 797bc7b9 2018-10-22 stsp s->start_id = NULL;
2872 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
2873 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
2874 1a76625f 2018-10-22 stsp return err;
2875 1a76625f 2018-10-22 stsp }
2876 1a76625f 2018-10-22 stsp
2877 1a76625f 2018-10-22 stsp static const struct got_error *
2878 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
2879 60493ae3 2019-06-20 stsp {
2880 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2881 60493ae3 2019-06-20 stsp
2882 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
2883 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2884 60493ae3 2019-06-20 stsp return NULL;
2885 60493ae3 2019-06-20 stsp }
2886 60493ae3 2019-06-20 stsp
2887 60493ae3 2019-06-20 stsp static const struct got_error *
2888 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
2889 60493ae3 2019-06-20 stsp {
2890 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
2891 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2892 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
2893 60493ae3 2019-06-20 stsp
2894 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
2895 f9686aa5 2020-03-27 stsp show_log_view(view);
2896 f9686aa5 2020-03-27 stsp update_panels();
2897 f9686aa5 2020-03-27 stsp doupdate();
2898 f9686aa5 2020-03-27 stsp
2899 96e2b566 2019-07-08 stsp if (s->search_entry) {
2900 13add988 2019-10-15 stsp int errcode, ch;
2901 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2902 13add988 2019-10-15 stsp if (errcode)
2903 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2904 13add988 2019-10-15 stsp "pthread_mutex_unlock");
2905 13add988 2019-10-15 stsp ch = wgetch(view->window);
2906 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
2907 13add988 2019-10-15 stsp if (errcode)
2908 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2909 13add988 2019-10-15 stsp "pthread_mutex_lock");
2910 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
2911 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2912 678cbce5 2019-07-28 stsp return NULL;
2913 678cbce5 2019-07-28 stsp }
2914 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
2915 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
2916 96e2b566 2019-07-08 stsp else
2917 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
2918 96e2b566 2019-07-08 stsp commit_queue_head, entry);
2919 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
2920 364ac6fd 2022-06-18 stsp int matched_idx = s->matched_entry->idx;
2921 364ac6fd 2022-06-18 stsp int selected_idx = s->selected_entry->idx;
2922 364ac6fd 2022-06-18 stsp
2923 364ac6fd 2022-06-18 stsp /*
2924 f704b35c 2022-06-18 stsp * If the user has moved the cursor after we hit a match,
2925 f704b35c 2022-06-18 stsp * the position from where we should continue searching
2926 f704b35c 2022-06-18 stsp * might have changed.
2927 364ac6fd 2022-06-18 stsp */
2928 4bfe9f0a 2022-06-18 stsp if (view->searching == TOG_SEARCH_FORWARD) {
2929 364ac6fd 2022-06-18 stsp if (matched_idx > selected_idx)
2930 364ac6fd 2022-06-18 stsp entry = TAILQ_NEXT(s->selected_entry, entry);
2931 364ac6fd 2022-06-18 stsp else
2932 364ac6fd 2022-06-18 stsp entry = TAILQ_NEXT(s->matched_entry, entry);
2933 4bfe9f0a 2022-06-18 stsp } else {
2934 364ac6fd 2022-06-18 stsp if (matched_idx < selected_idx)
2935 364ac6fd 2022-06-18 stsp entry = TAILQ_PREV(s->selected_entry,
2936 364ac6fd 2022-06-18 stsp commit_queue_head, entry);
2937 364ac6fd 2022-06-18 stsp else
2938 364ac6fd 2022-06-18 stsp entry = TAILQ_PREV(s->matched_entry,
2939 364ac6fd 2022-06-18 stsp commit_queue_head, entry);
2940 4bfe9f0a 2022-06-18 stsp }
2941 20be8d96 2019-06-21 stsp } else {
2942 5a5ede53 2021-12-09 stsp entry = s->selected_entry;
2943 20be8d96 2019-06-21 stsp }
2944 60493ae3 2019-06-20 stsp
2945 60493ae3 2019-06-20 stsp while (1) {
2946 13add988 2019-10-15 stsp int have_match = 0;
2947 13add988 2019-10-15 stsp
2948 60493ae3 2019-06-20 stsp if (entry == NULL) {
2949 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
2950 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
2951 f9967bca 2020-03-27 stsp view->search_next_done =
2952 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
2953 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
2954 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
2955 f801134a 2019-06-25 stsp return NULL;
2956 60493ae3 2019-06-20 stsp }
2957 96e2b566 2019-07-08 stsp /*
2958 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
2959 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
2960 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
2961 96e2b566 2019-07-08 stsp */
2962 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
2963 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
2964 60493ae3 2019-06-20 stsp }
2965 60493ae3 2019-06-20 stsp
2966 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
2967 13add988 2019-10-15 stsp &view->regex);
2968 5943eee2 2019-08-13 stsp if (err)
2969 13add988 2019-10-15 stsp break;
2970 13add988 2019-10-15 stsp if (have_match) {
2971 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2972 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
2973 60493ae3 2019-06-20 stsp break;
2974 60493ae3 2019-06-20 stsp }
2975 13add988 2019-10-15 stsp
2976 96e2b566 2019-07-08 stsp s->search_entry = entry;
2977 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2978 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
2979 b1bf1435 2019-06-21 stsp else
2980 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2981 60493ae3 2019-06-20 stsp }
2982 60493ae3 2019-06-20 stsp
2983 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
2984 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
2985 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
2986 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
2987 60493ae3 2019-06-20 stsp if (err)
2988 60493ae3 2019-06-20 stsp return err;
2989 ead14cbe 2019-06-21 stsp cur++;
2990 ead14cbe 2019-06-21 stsp }
2991 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
2992 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
2993 60493ae3 2019-06-20 stsp if (err)
2994 60493ae3 2019-06-20 stsp return err;
2995 ead14cbe 2019-06-21 stsp cur--;
2996 60493ae3 2019-06-20 stsp }
2997 60493ae3 2019-06-20 stsp }
2998 60493ae3 2019-06-20 stsp
2999 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3000 96e2b566 2019-07-08 stsp
3001 60493ae3 2019-06-20 stsp return NULL;
3002 60493ae3 2019-06-20 stsp }
3003 60493ae3 2019-06-20 stsp
3004 60493ae3 2019-06-20 stsp static const struct got_error *
3005 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3006 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3007 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3008 80ddbec8 2018-04-29 stsp {
3009 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3010 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3011 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3012 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3013 1a76625f 2018-10-22 stsp int errcode;
3014 80ddbec8 2018-04-29 stsp
3015 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3016 f135c941 2020-02-20 stsp free(s->in_repo_path);
3017 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3018 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3019 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3020 f135c941 2020-02-20 stsp }
3021 ecb28ae0 2018-07-16 stsp
3022 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3023 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->commits.head);
3024 fb2756b9 2018-08-04 stsp s->commits.ncommits = 0;
3025 78756c87 2020-11-24 stsp
3026 fb2756b9 2018-08-04 stsp s->repo = repo;
3027 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3028 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3029 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3030 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3031 9cd7cbd1 2020-12-07 stsp goto done;
3032 9cd7cbd1 2020-12-07 stsp }
3033 9cd7cbd1 2020-12-07 stsp }
3034 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3035 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3036 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3037 5036bf37 2018-09-24 stsp goto done;
3038 5036bf37 2018-09-24 stsp }
3039 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3040 e5a0f69f 2018-08-18 stsp
3041 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3042 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3043 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3044 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3045 11b20872 2019-11-08 stsp if (err)
3046 11b20872 2019-11-08 stsp goto done;
3047 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3048 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3049 11b20872 2019-11-08 stsp if (err) {
3050 11b20872 2019-11-08 stsp free_colors(&s->colors);
3051 11b20872 2019-11-08 stsp goto done;
3052 11b20872 2019-11-08 stsp }
3053 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3054 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3055 11b20872 2019-11-08 stsp if (err) {
3056 11b20872 2019-11-08 stsp free_colors(&s->colors);
3057 11b20872 2019-11-08 stsp goto done;
3058 11b20872 2019-11-08 stsp }
3059 11b20872 2019-11-08 stsp }
3060 11b20872 2019-11-08 stsp
3061 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3062 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3063 571ccd73 2022-07-19 mark view->resize = resize_log_view;
3064 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3065 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3066 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3067 1a76625f 2018-10-22 stsp
3068 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds == NULL) {
3069 74467cc8 2022-06-15 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3070 74467cc8 2022-06-15 stsp if (err)
3071 74467cc8 2022-06-15 stsp goto done;
3072 74467cc8 2022-06-15 stsp }
3073 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3074 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3075 0ae84acc 2022-06-15 tracey if (err)
3076 0ae84acc 2022-06-15 tracey goto done;
3077 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3078 b672a97a 2020-01-27 stsp !s->log_branches);
3079 1a76625f 2018-10-22 stsp if (err)
3080 1a76625f 2018-10-22 stsp goto done;
3081 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3082 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3083 c5b78334 2020-01-12 stsp if (err)
3084 c5b78334 2020-01-12 stsp goto done;
3085 1a76625f 2018-10-22 stsp
3086 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3087 1a76625f 2018-10-22 stsp if (errcode) {
3088 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3089 1a76625f 2018-10-22 stsp goto done;
3090 1a76625f 2018-10-22 stsp }
3091 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3092 7c1452c1 2020-03-26 stsp if (errcode) {
3093 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3094 7c1452c1 2020-03-26 stsp goto done;
3095 7c1452c1 2020-03-26 stsp }
3096 1a76625f 2018-10-22 stsp
3097 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3098 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3099 1a76625f 2018-10-22 stsp s->thread_args.commits = &s->commits;
3100 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3101 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3102 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3103 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3104 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3105 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3106 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3107 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3108 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3109 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3110 ba4f502b 2018-08-04 stsp done:
3111 1a76625f 2018-10-22 stsp if (err)
3112 1a76625f 2018-10-22 stsp close_log_view(view);
3113 ba4f502b 2018-08-04 stsp return err;
3114 ba4f502b 2018-08-04 stsp }
3115 ba4f502b 2018-08-04 stsp
3116 e5a0f69f 2018-08-18 stsp static const struct got_error *
3117 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3118 ba4f502b 2018-08-04 stsp {
3119 f2f6d207 2020-11-24 stsp const struct got_error *err;
3120 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3121 ba4f502b 2018-08-04 stsp
3122 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
3123 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3124 2b380cc8 2018-10-24 stsp &s->thread_args);
3125 2b380cc8 2018-10-24 stsp if (errcode)
3126 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3127 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3128 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3129 f2f6d207 2020-11-24 stsp if (err)
3130 f2f6d207 2020-11-24 stsp return err;
3131 f2f6d207 2020-11-24 stsp }
3132 2b380cc8 2018-10-24 stsp }
3133 2b380cc8 2018-10-24 stsp
3134 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3135 b880cc75 2022-06-30 mark }
3136 b880cc75 2022-06-30 mark
3137 b880cc75 2022-06-30 mark static void
3138 b880cc75 2022-06-30 mark log_move_cursor_up(struct tog_view *view, int page, int home)
3139 b880cc75 2022-06-30 mark {
3140 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3141 b880cc75 2022-06-30 mark
3142 b880cc75 2022-06-30 mark if (s->selected_entry->idx == 0)
3143 b880cc75 2022-06-30 mark view->count = 0;
3144 b880cc75 2022-06-30 mark if (s->first_displayed_entry == NULL)
3145 b880cc75 2022-06-30 mark return;
3146 b880cc75 2022-06-30 mark
3147 b880cc75 2022-06-30 mark if ((page && TAILQ_FIRST(&s->commits.head) == s->first_displayed_entry)
3148 b880cc75 2022-06-30 mark || home)
3149 b880cc75 2022-06-30 mark s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3150 b880cc75 2022-06-30 mark
3151 b880cc75 2022-06-30 mark if (!page && !home && s->selected > 0)
3152 b880cc75 2022-06-30 mark --s->selected;
3153 b880cc75 2022-06-30 mark else
3154 b880cc75 2022-06-30 mark log_scroll_up(s, home ? s->commits.ncommits : MAX(page, 1));
3155 b880cc75 2022-06-30 mark
3156 b880cc75 2022-06-30 mark select_commit(s);
3157 b880cc75 2022-06-30 mark return;
3158 b880cc75 2022-06-30 mark }
3159 b880cc75 2022-06-30 mark
3160 b880cc75 2022-06-30 mark static const struct got_error *
3161 b880cc75 2022-06-30 mark log_move_cursor_down(struct tog_view *view, int page)
3162 b880cc75 2022-06-30 mark {
3163 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3164 b880cc75 2022-06-30 mark struct commit_queue_entry *first;
3165 b880cc75 2022-06-30 mark const struct got_error *err = NULL;
3166 b880cc75 2022-06-30 mark
3167 b880cc75 2022-06-30 mark first = s->first_displayed_entry;
3168 b880cc75 2022-06-30 mark if (first == NULL) {
3169 b880cc75 2022-06-30 mark view->count = 0;
3170 b880cc75 2022-06-30 mark return NULL;
3171 b880cc75 2022-06-30 mark }
3172 b880cc75 2022-06-30 mark
3173 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3174 b880cc75 2022-06-30 mark s->selected_entry->idx >= s->commits.ncommits - 1)
3175 b880cc75 2022-06-30 mark return NULL;
3176 b880cc75 2022-06-30 mark
3177 b880cc75 2022-06-30 mark if (!page) {
3178 b880cc75 2022-06-30 mark int eos = view->nlines - 2;
3179 b880cc75 2022-06-30 mark
3180 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
3181 9b058f45 2022-06-30 mark --eos; /* border consumes the last line */
3182 b880cc75 2022-06-30 mark if (s->selected < MIN(eos, s->commits.ncommits - 1))
3183 b880cc75 2022-06-30 mark ++s->selected;
3184 b880cc75 2022-06-30 mark else
3185 b880cc75 2022-06-30 mark err = log_scroll_down(view, 1);
3186 0dca135e 2022-06-30 mark } else if (s->thread_args.load_all) {
3187 b880cc75 2022-06-30 mark if (s->last_displayed_entry->idx == s->commits.ncommits - 1)
3188 b880cc75 2022-06-30 mark s->selected += MIN(s->last_displayed_entry->idx -
3189 b880cc75 2022-06-30 mark s->selected_entry->idx, page + 1);
3190 b880cc75 2022-06-30 mark else
3191 b880cc75 2022-06-30 mark err = log_scroll_down(view, MIN(page,
3192 b880cc75 2022-06-30 mark s->commits.ncommits - s->selected_entry->idx - 1));
3193 b880cc75 2022-06-30 mark s->selected = MIN(view->nlines - 2, s->commits.ncommits - 1);
3194 b880cc75 2022-06-30 mark } else {
3195 b880cc75 2022-06-30 mark err = log_scroll_down(view, page);
3196 b880cc75 2022-06-30 mark if (err)
3197 b880cc75 2022-06-30 mark return err;
3198 b880cc75 2022-06-30 mark if (first == s->first_displayed_entry && s->selected <
3199 b880cc75 2022-06-30 mark MIN(view->nlines - 2, s->commits.ncommits - 1)) {
3200 b880cc75 2022-06-30 mark s->selected = MIN(s->commits.ncommits - 1, page);
3201 b880cc75 2022-06-30 mark }
3202 b880cc75 2022-06-30 mark }
3203 b880cc75 2022-06-30 mark if (err)
3204 b880cc75 2022-06-30 mark return err;
3205 b880cc75 2022-06-30 mark
3206 9b058f45 2022-06-30 mark /*
3207 9b058f45 2022-06-30 mark * We might necessarily overshoot in horizontal
3208 9b058f45 2022-06-30 mark * splits; if so, select the last displayed commit.
3209 9b058f45 2022-06-30 mark */
3210 9b058f45 2022-06-30 mark s->selected = MIN(s->selected,
3211 9b058f45 2022-06-30 mark s->last_displayed_entry->idx - s->first_displayed_entry->idx);
3212 9b058f45 2022-06-30 mark
3213 b880cc75 2022-06-30 mark select_commit(s);
3214 b880cc75 2022-06-30 mark
3215 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3216 b880cc75 2022-06-30 mark s->selected_entry->idx == s->commits.ncommits - 1)
3217 b880cc75 2022-06-30 mark view->count = 0;
3218 b880cc75 2022-06-30 mark
3219 b880cc75 2022-06-30 mark return NULL;
3220 e5a0f69f 2018-08-18 stsp }
3221 04cc582a 2018-08-01 stsp
3222 9b058f45 2022-06-30 mark static void
3223 9b058f45 2022-06-30 mark view_get_split(struct tog_view *view, int *y, int *x)
3224 9b058f45 2022-06-30 mark {
3225 76364b2d 2022-07-02 mark *x = 0;
3226 76364b2d 2022-07-02 mark *y = 0;
3227 76364b2d 2022-07-02 mark
3228 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3229 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_y)
3230 3c1dfe12 2022-07-08 mark *y = view->child->resized_y;
3231 7532ccda 2022-07-11 mark else if (view->resized_y)
3232 7532ccda 2022-07-11 mark *y = view->resized_y;
3233 3c1dfe12 2022-07-08 mark else
3234 3c1dfe12 2022-07-08 mark *y = view_split_begin_y(view->lines);
3235 7532ccda 2022-07-11 mark } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3236 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_x)
3237 3c1dfe12 2022-07-08 mark *x = view->child->resized_x;
3238 7532ccda 2022-07-11 mark else if (view->resized_x)
3239 7532ccda 2022-07-11 mark *x = view->resized_x;
3240 3c1dfe12 2022-07-08 mark else
3241 3c1dfe12 2022-07-08 mark *x = view_split_begin_x(view->begin_x);
3242 3c1dfe12 2022-07-08 mark }
3243 9b058f45 2022-06-30 mark }
3244 9b058f45 2022-06-30 mark
3245 9b058f45 2022-06-30 mark /* Split view horizontally at y and offset view->state->selected line. */
3246 e5a0f69f 2018-08-18 stsp static const struct got_error *
3247 9b058f45 2022-06-30 mark view_init_hsplit(struct tog_view *view, int y)
3248 9b058f45 2022-06-30 mark {
3249 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
3250 9b058f45 2022-06-30 mark
3251 9b058f45 2022-06-30 mark view->nlines = y;
3252 d2366e29 2022-07-07 mark view->ncols = COLS;
3253 9b058f45 2022-06-30 mark err = view_resize(view);
3254 9b058f45 2022-06-30 mark if (err)
3255 9b058f45 2022-06-30 mark return err;
3256 9b058f45 2022-06-30 mark
3257 9b058f45 2022-06-30 mark err = offset_selection_down(view);
3258 9b058f45 2022-06-30 mark
3259 9b058f45 2022-06-30 mark return err;
3260 94b80cfa 2022-08-01 mark }
3261 94b80cfa 2022-08-01 mark
3262 94b80cfa 2022-08-01 mark static const struct got_error *
3263 94b80cfa 2022-08-01 mark log_goto_line(struct tog_view *view, int nlines)
3264 94b80cfa 2022-08-01 mark {
3265 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
3266 94b80cfa 2022-08-01 mark struct tog_log_view_state *s = &view->state.log;
3267 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
3268 94b80cfa 2022-08-01 mark
3269 94b80cfa 2022-08-01 mark g = view->gline;
3270 94b80cfa 2022-08-01 mark view->gline = 0;
3271 94b80cfa 2022-08-01 mark
3272 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
3273 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
3274 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
3275 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
3276 94b80cfa 2022-08-01 mark select_commit(s);
3277 94b80cfa 2022-08-01 mark return NULL;
3278 94b80cfa 2022-08-01 mark }
3279 94b80cfa 2022-08-01 mark
3280 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
3281 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view, g - idx - 1);
3282 94b80cfa 2022-08-01 mark if (!err && g > s->selected_entry->idx + 1)
3283 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view,
3284 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1);
3285 94b80cfa 2022-08-01 mark if (err)
3286 94b80cfa 2022-08-01 mark return err;
3287 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
3288 94b80cfa 2022-08-01 mark log_move_cursor_up(view, idx - g + 1, 0);
3289 94b80cfa 2022-08-01 mark
3290 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
3291 94b80cfa 2022-08-01 mark s->selected = g - 1;
3292 94b80cfa 2022-08-01 mark
3293 94b80cfa 2022-08-01 mark select_commit(s);
3294 94b80cfa 2022-08-01 mark return NULL;
3295 94b80cfa 2022-08-01 mark
3296 9b058f45 2022-06-30 mark }
3297 9b058f45 2022-06-30 mark
3298 9b058f45 2022-06-30 mark static const struct got_error *
3299 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3300 e5a0f69f 2018-08-18 stsp {
3301 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3302 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3303 f3bc9f1d 2021-09-05 naddy struct commit_queue_entry *entry;
3304 136e2bd4 2022-07-23 mark int eos, n, nscroll;
3305 80ddbec8 2018-04-29 stsp
3306 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3307 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3308 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3309 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3310 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, s->commits.ncommits);
3311 0dca135e 2022-06-30 mark s->thread_args.load_all = 0;
3312 fb280deb 2021-08-30 stsp }
3313 b880cc75 2022-06-30 mark return err;
3314 528dedf3 2021-08-30 stsp }
3315 0dca135e 2022-06-30 mark
3316 0dca135e 2022-06-30 mark eos = nscroll = view->nlines - 1;
3317 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
3318 0dca135e 2022-06-30 mark --eos; /* border */
3319 94b80cfa 2022-08-01 mark
3320 94b80cfa 2022-08-01 mark if (view->gline)
3321 94b80cfa 2022-08-01 mark return log_goto_line(view, eos);
3322 0dca135e 2022-06-30 mark
3323 528dedf3 2021-08-30 stsp switch (ch) {
3324 1e37a5c2 2019-05-12 jcs case 'q':
3325 1e37a5c2 2019-05-12 jcs s->quit = 1;
3326 145b6838 2022-06-16 stsp break;
3327 145b6838 2022-06-16 stsp case '0':
3328 145b6838 2022-06-16 stsp view->x = 0;
3329 145b6838 2022-06-16 stsp break;
3330 145b6838 2022-06-16 stsp case '$':
3331 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 2, 0);
3332 640cd7ff 2022-06-22 mark view->count = 0;
3333 145b6838 2022-06-16 stsp break;
3334 145b6838 2022-06-16 stsp case KEY_RIGHT:
3335 145b6838 2022-06-16 stsp case 'l':
3336 145b6838 2022-06-16 stsp if (view->x + view->ncols / 2 < view->maxx)
3337 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
3338 640cd7ff 2022-06-22 mark else
3339 640cd7ff 2022-06-22 mark view->count = 0;
3340 1e37a5c2 2019-05-12 jcs break;
3341 145b6838 2022-06-16 stsp case KEY_LEFT:
3342 145b6838 2022-06-16 stsp case 'h':
3343 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
3344 640cd7ff 2022-06-22 mark if (view->x <= 0)
3345 640cd7ff 2022-06-22 mark view->count = 0;
3346 145b6838 2022-06-16 stsp break;
3347 1e37a5c2 2019-05-12 jcs case 'k':
3348 1e37a5c2 2019-05-12 jcs case KEY_UP:
3349 1e37a5c2 2019-05-12 jcs case '<':
3350 1e37a5c2 2019-05-12 jcs case ',':
3351 02ffd0d5 2021-10-17 stsp case CTRL('p'):
3352 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 0);
3353 912a3f79 2021-08-30 j break;
3354 912a3f79 2021-08-30 j case 'g':
3355 912a3f79 2021-08-30 j case KEY_HOME:
3356 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 1);
3357 640cd7ff 2022-06-22 mark view->count = 0;
3358 1e37a5c2 2019-05-12 jcs break;
3359 83cc4199 2022-06-13 stsp case CTRL('u'):
3360 33c3719a 2022-06-15 stsp case 'u':
3361 83cc4199 2022-06-13 stsp nscroll /= 2;
3362 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3363 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3364 a4292ac5 2019-05-12 jcs case CTRL('b'):
3365 61417565 2022-06-20 mark case 'b':
3366 b880cc75 2022-06-30 mark log_move_cursor_up(view, nscroll, 0);
3367 1e37a5c2 2019-05-12 jcs break;
3368 1e37a5c2 2019-05-12 jcs case 'j':
3369 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3370 1e37a5c2 2019-05-12 jcs case '>':
3371 1e37a5c2 2019-05-12 jcs case '.':
3372 02ffd0d5 2021-10-17 stsp case CTRL('n'):
3373 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, 0);
3374 912a3f79 2021-08-30 j break;
3375 10aab77f 2022-07-19 op case '@':
3376 10aab77f 2022-07-19 op s->use_committer = !s->use_committer;
3377 10aab77f 2022-07-19 op break;
3378 912a3f79 2021-08-30 j case 'G':
3379 912a3f79 2021-08-30 j case KEY_END: {
3380 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3381 912a3f79 2021-08-30 j * traverse them all. */
3382 640cd7ff 2022-06-22 mark view->count = 0;
3383 fb280deb 2021-08-30 stsp if (!s->thread_args.log_complete) {
3384 fb280deb 2021-08-30 stsp s->thread_args.load_all = 1;
3385 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3386 80ddbec8 2018-04-29 stsp }
3387 912a3f79 2021-08-30 j
3388 f3bc9f1d 2021-09-05 naddy s->selected = 0;
3389 f3bc9f1d 2021-09-05 naddy entry = TAILQ_LAST(&s->commits.head, commit_queue_head);
3390 0dca135e 2022-06-30 mark for (n = 0; n < eos; n++) {
3391 f3bc9f1d 2021-09-05 naddy if (entry == NULL)
3392 f3bc9f1d 2021-09-05 naddy break;
3393 f3bc9f1d 2021-09-05 naddy s->first_displayed_entry = entry;
3394 f3bc9f1d 2021-09-05 naddy entry = TAILQ_PREV(entry, commit_queue_head, entry);
3395 f3bc9f1d 2021-09-05 naddy }
3396 f3bc9f1d 2021-09-05 naddy if (n > 0)
3397 f3bc9f1d 2021-09-05 naddy s->selected = n - 1;
3398 2b779855 2020-12-05 naddy select_commit(s);
3399 1e37a5c2 2019-05-12 jcs break;
3400 912a3f79 2021-08-30 j }
3401 80b7e8da 2022-06-11 stsp case CTRL('d'):
3402 33c3719a 2022-06-15 stsp case 'd':
3403 83cc4199 2022-06-13 stsp nscroll /= 2;
3404 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3405 83cc4199 2022-06-13 stsp case KEY_NPAGE:
3406 61417565 2022-06-20 mark case CTRL('f'):
3407 48bb96f0 2022-06-20 naddy case 'f':
3408 b880cc75 2022-06-30 mark case ' ':
3409 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, nscroll);
3410 1e37a5c2 2019-05-12 jcs break;
3411 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3412 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3413 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3414 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
3415 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
3416 2b779855 2020-12-05 naddy select_commit(s);
3417 0bf7f153 2020-12-02 naddy if (s->commits.ncommits < view->nlines - 1 &&
3418 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3419 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3420 0bf7f153 2020-12-02 naddy s->commits.ncommits;
3421 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3422 0bf7f153 2020-12-02 naddy }
3423 1e37a5c2 2019-05-12 jcs break;
3424 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3425 49b24ee5 2022-07-03 mark case '\r':
3426 640cd7ff 2022-06-22 mark view->count = 0;
3427 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3428 e5a0f69f 2018-08-18 stsp break;
3429 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3430 1e37a5c2 2019-05-12 jcs break;
3431 5e98fb33 2022-07-22 mark case 'T':
3432 640cd7ff 2022-06-22 mark view->count = 0;
3433 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3434 5036bf37 2018-09-24 stsp break;
3435 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
3436 1e37a5c2 2019-05-12 jcs break;
3437 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3438 21355643 2020-12-06 stsp case CTRL('l'):
3439 21355643 2020-12-06 stsp case 'B':
3440 640cd7ff 2022-06-22 mark view->count = 0;
3441 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3442 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3443 1e37a5c2 2019-05-12 jcs break;
3444 21355643 2020-12-06 stsp err = stop_log_thread(s);
3445 74cfe85e 2020-10-20 stsp if (err)
3446 74cfe85e 2020-10-20 stsp return err;
3447 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3448 21355643 2020-12-06 stsp char *parent_path;
3449 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3450 21355643 2020-12-06 stsp if (err)
3451 21355643 2020-12-06 stsp return err;
3452 21355643 2020-12-06 stsp free(s->in_repo_path);
3453 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3454 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3455 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3456 21355643 2020-12-06 stsp struct got_object_id *start_id;
3457 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3458 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3459 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3460 21355643 2020-12-06 stsp if (err)
3461 21355643 2020-12-06 stsp return err;
3462 21355643 2020-12-06 stsp free(s->start_id);
3463 21355643 2020-12-06 stsp s->start_id = start_id;
3464 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3465 21355643 2020-12-06 stsp } else /* 'B' */
3466 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3467 21355643 2020-12-06 stsp
3468 b0dd8d27 2022-06-16 stsp if (s->thread_args.pack_fds == NULL) {
3469 b0dd8d27 2022-06-16 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3470 b0dd8d27 2022-06-16 stsp if (err)
3471 b0dd8d27 2022-06-16 stsp return err;
3472 b0dd8d27 2022-06-16 stsp }
3473 74467cc8 2022-06-15 stsp err = got_repo_open(&s->thread_args.repo,
3474 74467cc8 2022-06-15 stsp got_repo_get_path(s->repo), NULL,
3475 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3476 74cfe85e 2020-10-20 stsp if (err)
3477 21355643 2020-12-06 stsp return err;
3478 51a10b52 2020-12-26 stsp tog_free_refs();
3479 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, 0);
3480 ca51c541 2020-12-07 stsp if (err)
3481 ca51c541 2020-12-07 stsp return err;
3482 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3483 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3484 d01904d4 2019-06-25 stsp if (err)
3485 d01904d4 2019-06-25 stsp return err;
3486 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3487 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3488 b672a97a 2020-01-27 stsp if (err)
3489 b672a97a 2020-01-27 stsp return err;
3490 21355643 2020-12-06 stsp free_commits(&s->commits);
3491 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3492 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3493 21355643 2020-12-06 stsp s->selected_entry = NULL;
3494 21355643 2020-12-06 stsp s->selected = 0;
3495 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3496 21355643 2020-12-06 stsp s->quit = 0;
3497 9b058f45 2022-06-30 mark s->thread_args.commits_needed = view->lines;
3498 dfee752e 2022-06-18 op s->matched_entry = NULL;
3499 dfee752e 2022-06-18 op s->search_entry = NULL;
3500 01a7bcaf 2022-07-22 mark view->offset = 0;
3501 d01904d4 2019-06-25 stsp break;
3502 5e98fb33 2022-07-22 mark case 'R':
3503 640cd7ff 2022-06-22 mark view->count = 0;
3504 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
3505 6458efa5 2020-11-24 stsp break;
3506 1e37a5c2 2019-05-12 jcs default:
3507 640cd7ff 2022-06-22 mark view->count = 0;
3508 1e37a5c2 2019-05-12 jcs break;
3509 899d86c2 2018-05-10 stsp }
3510 e5a0f69f 2018-08-18 stsp
3511 80ddbec8 2018-04-29 stsp return err;
3512 80ddbec8 2018-04-29 stsp }
3513 80ddbec8 2018-04-29 stsp
3514 4ed7e80c 2018-05-20 stsp static const struct got_error *
3515 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3516 c2db6724 2019-01-04 stsp {
3517 c2db6724 2019-01-04 stsp const struct got_error *error;
3518 c2db6724 2019-01-04 stsp
3519 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3520 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3521 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3522 37c06ea4 2019-07-15 stsp #endif
3523 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3524 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3525 c2db6724 2019-01-04 stsp
3526 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3527 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3528 c2db6724 2019-01-04 stsp
3529 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3530 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3531 c2db6724 2019-01-04 stsp
3532 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3533 c2db6724 2019-01-04 stsp if (error != NULL)
3534 c2db6724 2019-01-04 stsp return error;
3535 c2db6724 2019-01-04 stsp
3536 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3537 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3538 c2db6724 2019-01-04 stsp
3539 c2db6724 2019-01-04 stsp return NULL;
3540 c2db6724 2019-01-04 stsp }
3541 c2db6724 2019-01-04 stsp
3542 a915003a 2019-02-05 stsp static void
3543 a915003a 2019-02-05 stsp init_curses(void)
3544 a915003a 2019-02-05 stsp {
3545 2497f032 2022-05-31 stsp /*
3546 2497f032 2022-05-31 stsp * Override default signal handlers before starting ncurses.
3547 2497f032 2022-05-31 stsp * This should prevent ncurses from installing its own
3548 2497f032 2022-05-31 stsp * broken cleanup() signal handler.
3549 2497f032 2022-05-31 stsp */
3550 2497f032 2022-05-31 stsp signal(SIGWINCH, tog_sigwinch);
3551 2497f032 2022-05-31 stsp signal(SIGPIPE, tog_sigpipe);
3552 2497f032 2022-05-31 stsp signal(SIGCONT, tog_sigcont);
3553 2497f032 2022-05-31 stsp signal(SIGINT, tog_sigint);
3554 2497f032 2022-05-31 stsp signal(SIGTERM, tog_sigterm);
3555 2497f032 2022-05-31 stsp
3556 a915003a 2019-02-05 stsp initscr();
3557 a915003a 2019-02-05 stsp cbreak();
3558 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3559 a915003a 2019-02-05 stsp noecho();
3560 a915003a 2019-02-05 stsp nonl();
3561 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3562 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3563 a915003a 2019-02-05 stsp curs_set(0);
3564 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3565 6d17833f 2019-11-08 stsp start_color();
3566 6d17833f 2019-11-08 stsp use_default_colors();
3567 6d17833f 2019-11-08 stsp }
3568 a915003a 2019-02-05 stsp }
3569 a915003a 2019-02-05 stsp
3570 c2db6724 2019-01-04 stsp static const struct got_error *
3571 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3572 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3573 f135c941 2020-02-20 stsp {
3574 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3575 f135c941 2020-02-20 stsp
3576 f135c941 2020-02-20 stsp if (argc == 0) {
3577 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3578 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3579 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3580 f135c941 2020-02-20 stsp return NULL;
3581 f135c941 2020-02-20 stsp }
3582 f135c941 2020-02-20 stsp
3583 f135c941 2020-02-20 stsp if (worktree) {
3584 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3585 bfd61697 2020-11-14 stsp char *p;
3586 f135c941 2020-02-20 stsp
3587 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3588 f135c941 2020-02-20 stsp if (err)
3589 f135c941 2020-02-20 stsp return err;
3590 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3591 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3592 bfd61697 2020-11-14 stsp p) == -1) {
3593 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3594 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3595 f135c941 2020-02-20 stsp }
3596 f135c941 2020-02-20 stsp free(p);
3597 f135c941 2020-02-20 stsp } else
3598 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3599 f135c941 2020-02-20 stsp
3600 f135c941 2020-02-20 stsp return err;
3601 f135c941 2020-02-20 stsp }
3602 f135c941 2020-02-20 stsp
3603 f135c941 2020-02-20 stsp static const struct got_error *
3604 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3605 9f7d7167 2018-04-29 stsp {
3606 80ddbec8 2018-04-29 stsp const struct got_error *error;
3607 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3608 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3609 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3610 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3611 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3612 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3613 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3614 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3615 04cc582a 2018-08-01 stsp struct tog_view *view;
3616 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
3617 80ddbec8 2018-04-29 stsp
3618 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3619 80ddbec8 2018-04-29 stsp switch (ch) {
3620 b672a97a 2020-01-27 stsp case 'b':
3621 b672a97a 2020-01-27 stsp log_branches = 1;
3622 b672a97a 2020-01-27 stsp break;
3623 80ddbec8 2018-04-29 stsp case 'c':
3624 80ddbec8 2018-04-29 stsp start_commit = optarg;
3625 80ddbec8 2018-04-29 stsp break;
3626 ecb28ae0 2018-07-16 stsp case 'r':
3627 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3628 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3629 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3630 9ba1d308 2019-10-21 stsp optarg);
3631 ecb28ae0 2018-07-16 stsp break;
3632 80ddbec8 2018-04-29 stsp default:
3633 17020d27 2019-03-07 stsp usage_log();
3634 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3635 80ddbec8 2018-04-29 stsp }
3636 80ddbec8 2018-04-29 stsp }
3637 80ddbec8 2018-04-29 stsp
3638 80ddbec8 2018-04-29 stsp argc -= optind;
3639 80ddbec8 2018-04-29 stsp argv += optind;
3640 80ddbec8 2018-04-29 stsp
3641 f135c941 2020-02-20 stsp if (argc > 1)
3642 f135c941 2020-02-20 stsp usage_log();
3643 963f97a1 2019-03-18 stsp
3644 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
3645 0ae84acc 2022-06-15 tracey if (error != NULL)
3646 0ae84acc 2022-06-15 tracey goto done;
3647 0ae84acc 2022-06-15 tracey
3648 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3649 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3650 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3651 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3652 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3653 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3654 c156c7a4 2020-12-18 stsp goto done;
3655 a1fbf39a 2019-08-11 stsp if (worktree)
3656 6962eb72 2020-02-20 stsp repo_path =
3657 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
3658 a1fbf39a 2019-08-11 stsp else
3659 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
3660 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
3661 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
3662 c156c7a4 2020-12-18 stsp goto done;
3663 c156c7a4 2020-12-18 stsp }
3664 ecb28ae0 2018-07-16 stsp }
3665 ecb28ae0 2018-07-16 stsp
3666 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
3667 80ddbec8 2018-04-29 stsp if (error != NULL)
3668 ecb28ae0 2018-07-16 stsp goto done;
3669 80ddbec8 2018-04-29 stsp
3670 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
3671 f135c941 2020-02-20 stsp repo, worktree);
3672 f135c941 2020-02-20 stsp if (error)
3673 f135c941 2020-02-20 stsp goto done;
3674 f135c941 2020-02-20 stsp
3675 f135c941 2020-02-20 stsp init_curses();
3676 f135c941 2020-02-20 stsp
3677 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
3678 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3679 c02c541e 2019-03-29 stsp if (error)
3680 c02c541e 2019-03-29 stsp goto done;
3681 c02c541e 2019-03-29 stsp
3682 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
3683 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
3684 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
3685 87670572 2020-12-26 naddy if (error)
3686 87670572 2020-12-26 naddy goto done;
3687 87670572 2020-12-26 naddy }
3688 51a10b52 2020-12-26 stsp
3689 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
3690 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
3691 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
3692 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
3693 d8f38dc4 2020-12-05 stsp if (error)
3694 d8f38dc4 2020-12-05 stsp goto done;
3695 d8f38dc4 2020-12-05 stsp head_ref_name = label;
3696 d8f38dc4 2020-12-05 stsp } else {
3697 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
3698 d8f38dc4 2020-12-05 stsp if (error == NULL)
3699 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
3700 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
3701 d8f38dc4 2020-12-05 stsp goto done;
3702 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
3703 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
3704 d8f38dc4 2020-12-05 stsp if (error)
3705 d8f38dc4 2020-12-05 stsp goto done;
3706 d8f38dc4 2020-12-05 stsp }
3707 8b473291 2019-02-21 stsp
3708 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
3709 04cc582a 2018-08-01 stsp if (view == NULL) {
3710 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3711 04cc582a 2018-08-01 stsp goto done;
3712 04cc582a 2018-08-01 stsp }
3713 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
3714 f135c941 2020-02-20 stsp in_repo_path, log_branches);
3715 ba4f502b 2018-08-04 stsp if (error)
3716 ba4f502b 2018-08-04 stsp goto done;
3717 2fc00ff4 2019-08-31 stsp if (worktree) {
3718 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
3719 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
3720 2fc00ff4 2019-08-31 stsp worktree = NULL;
3721 2fc00ff4 2019-08-31 stsp }
3722 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3723 ecb28ae0 2018-07-16 stsp done:
3724 f135c941 2020-02-20 stsp free(in_repo_path);
3725 ecb28ae0 2018-07-16 stsp free(repo_path);
3726 ecb28ae0 2018-07-16 stsp free(cwd);
3727 899d86c2 2018-05-10 stsp free(start_id);
3728 d8f38dc4 2020-12-05 stsp free(label);
3729 d8f38dc4 2020-12-05 stsp if (ref)
3730 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
3731 1d0f4054 2021-06-17 stsp if (repo) {
3732 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
3733 1d0f4054 2021-06-17 stsp if (error == NULL)
3734 1d0f4054 2021-06-17 stsp error = close_err;
3735 1d0f4054 2021-06-17 stsp }
3736 ec142235 2019-03-07 stsp if (worktree)
3737 ec142235 2019-03-07 stsp got_worktree_close(worktree);
3738 0ae84acc 2022-06-15 tracey if (pack_fds) {
3739 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
3740 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
3741 0ae84acc 2022-06-15 tracey if (error == NULL)
3742 0ae84acc 2022-06-15 tracey error = pack_err;
3743 0ae84acc 2022-06-15 tracey }
3744 51a10b52 2020-12-26 stsp tog_free_refs();
3745 80ddbec8 2018-04-29 stsp return error;
3746 9f7d7167 2018-04-29 stsp }
3747 9f7d7167 2018-04-29 stsp
3748 4ed7e80c 2018-05-20 stsp __dead static void
3749 9f7d7167 2018-04-29 stsp usage_diff(void)
3750 9f7d7167 2018-04-29 stsp {
3751 80ddbec8 2018-04-29 stsp endwin();
3752 3dbaef42 2020-11-24 stsp fprintf(stderr, "usage: %s diff [-a] [-C number] [-r repository-path] "
3753 3dbaef42 2020-11-24 stsp "[-w] object1 object2\n", getprogname());
3754 9f7d7167 2018-04-29 stsp exit(1);
3755 b304db33 2018-05-20 stsp }
3756 b304db33 2018-05-20 stsp
3757 6d17833f 2019-11-08 stsp static int
3758 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
3759 41605754 2020-11-12 stsp regmatch_t *regmatch)
3760 6d17833f 2019-11-08 stsp {
3761 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
3762 6d17833f 2019-11-08 stsp }
3763 6d17833f 2019-11-08 stsp
3764 336075a4 2022-06-25 op static struct tog_color *
3765 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
3766 6d17833f 2019-11-08 stsp {
3767 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
3768 6d17833f 2019-11-08 stsp
3769 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
3770 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
3771 6d17833f 2019-11-08 stsp return tc;
3772 6d17833f 2019-11-08 stsp }
3773 6d17833f 2019-11-08 stsp
3774 6d17833f 2019-11-08 stsp return NULL;
3775 6d17833f 2019-11-08 stsp }
3776 6d17833f 2019-11-08 stsp
3777 4ed7e80c 2018-05-20 stsp static const struct got_error *
3778 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
3779 1853e0f4 2022-06-16 stsp WINDOW *window, int skipcol, regmatch_t *regmatch)
3780 41605754 2020-11-12 stsp {
3781 41605754 2020-11-12 stsp const struct got_error *err = NULL;
3782 44a87665 2022-06-16 stsp char *exstr = NULL;
3783 1853e0f4 2022-06-16 stsp wchar_t *wline = NULL;
3784 1853e0f4 2022-06-16 stsp int rme, rms, n, width, scrollx;
3785 1853e0f4 2022-06-16 stsp int width0 = 0, width1 = 0, width2 = 0;
3786 1853e0f4 2022-06-16 stsp char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
3787 41605754 2020-11-12 stsp
3788 41605754 2020-11-12 stsp *wtotal = 0;
3789 1853e0f4 2022-06-16 stsp
3790 145b6838 2022-06-16 stsp rms = regmatch->rm_so;
3791 145b6838 2022-06-16 stsp rme = regmatch->rm_eo;
3792 41605754 2020-11-12 stsp
3793 44a87665 2022-06-16 stsp err = expand_tab(&exstr, line);
3794 44a87665 2022-06-16 stsp if (err)
3795 44a87665 2022-06-16 stsp return err;
3796 44a87665 2022-06-16 stsp
3797 1853e0f4 2022-06-16 stsp /* Split the line into 3 segments, according to match offsets. */
3798 44a87665 2022-06-16 stsp seg0 = strndup(exstr, rms);
3799 44a87665 2022-06-16 stsp if (seg0 == NULL) {
3800 44a87665 2022-06-16 stsp err = got_error_from_errno("strndup");
3801 44a87665 2022-06-16 stsp goto done;
3802 44a87665 2022-06-16 stsp }
3803 44a87665 2022-06-16 stsp seg1 = strndup(exstr + rms, rme - rms);
3804 1853e0f4 2022-06-16 stsp if (seg1 == NULL) {
3805 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
3806 1853e0f4 2022-06-16 stsp goto done;
3807 1853e0f4 2022-06-16 stsp }
3808 44a87665 2022-06-16 stsp seg2 = strdup(exstr + rme);
3809 95d136ac 2022-06-16 stsp if (seg2 == NULL) {
3810 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
3811 1853e0f4 2022-06-16 stsp goto done;
3812 1853e0f4 2022-06-16 stsp }
3813 145b6838 2022-06-16 stsp
3814 145b6838 2022-06-16 stsp /* draw up to matched token if we haven't scrolled past it */
3815 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
3816 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3817 1853e0f4 2022-06-16 stsp if (err)
3818 1853e0f4 2022-06-16 stsp goto done;
3819 1853e0f4 2022-06-16 stsp n = MAX(width0 - skipcol, 0);
3820 145b6838 2022-06-16 stsp if (n) {
3821 1853e0f4 2022-06-16 stsp free(wline);
3822 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, &scrollx, seg0, skipcol,
3823 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
3824 1853e0f4 2022-06-16 stsp if (err)
3825 1853e0f4 2022-06-16 stsp goto done;
3826 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
3827 1853e0f4 2022-06-16 stsp wlimit -= width;
3828 1853e0f4 2022-06-16 stsp *wtotal += width;
3829 41605754 2020-11-12 stsp }
3830 41605754 2020-11-12 stsp
3831 41605754 2020-11-12 stsp if (wlimit > 0) {
3832 1853e0f4 2022-06-16 stsp int i = 0, w = 0;
3833 1853e0f4 2022-06-16 stsp size_t wlen;
3834 1853e0f4 2022-06-16 stsp
3835 1853e0f4 2022-06-16 stsp free(wline);
3836 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
3837 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3838 1853e0f4 2022-06-16 stsp if (err)
3839 1853e0f4 2022-06-16 stsp goto done;
3840 1853e0f4 2022-06-16 stsp wlen = wcslen(wline);
3841 1853e0f4 2022-06-16 stsp while (i < wlen) {
3842 1853e0f4 2022-06-16 stsp width = wcwidth(wline[i]);
3843 1853e0f4 2022-06-16 stsp if (width == -1) {
3844 1853e0f4 2022-06-16 stsp /* should not happen, tabs are expanded */
3845 1853e0f4 2022-06-16 stsp err = got_error(GOT_ERR_RANGE);
3846 1853e0f4 2022-06-16 stsp goto done;
3847 1853e0f4 2022-06-16 stsp }
3848 1853e0f4 2022-06-16 stsp if (width0 + w + width > skipcol)
3849 1853e0f4 2022-06-16 stsp break;
3850 61417565 2022-06-20 mark w += width;
3851 1853e0f4 2022-06-16 stsp i++;
3852 41605754 2020-11-12 stsp }
3853 145b6838 2022-06-16 stsp /* draw (visible part of) matched token (if scrolled into it) */
3854 1853e0f4 2022-06-16 stsp if (width1 - w > 0) {
3855 145b6838 2022-06-16 stsp wattron(window, A_STANDOUT);
3856 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[i]);
3857 145b6838 2022-06-16 stsp wattroff(window, A_STANDOUT);
3858 1853e0f4 2022-06-16 stsp wlimit -= (width1 - w);
3859 1853e0f4 2022-06-16 stsp *wtotal += (width1 - w);
3860 41605754 2020-11-12 stsp }
3861 41605754 2020-11-12 stsp }
3862 41605754 2020-11-12 stsp
3863 1853e0f4 2022-06-16 stsp if (wlimit > 0) { /* draw rest of line */
3864 1853e0f4 2022-06-16 stsp free(wline);
3865 1853e0f4 2022-06-16 stsp if (skipcol > width0 + width1) {
3866 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, &scrollx, seg2,
3867 1853e0f4 2022-06-16 stsp skipcol - (width0 + width1), wlimit,
3868 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3869 1853e0f4 2022-06-16 stsp if (err)
3870 1853e0f4 2022-06-16 stsp goto done;
3871 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
3872 1853e0f4 2022-06-16 stsp } else {
3873 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, NULL, seg2, 0,
3874 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
3875 1853e0f4 2022-06-16 stsp if (err)
3876 1853e0f4 2022-06-16 stsp goto done;
3877 1853e0f4 2022-06-16 stsp waddwstr(window, wline);
3878 1853e0f4 2022-06-16 stsp }
3879 1853e0f4 2022-06-16 stsp *wtotal += width2;
3880 41605754 2020-11-12 stsp }
3881 1853e0f4 2022-06-16 stsp done:
3882 145b6838 2022-06-16 stsp free(wline);
3883 44a87665 2022-06-16 stsp free(exstr);
3884 1853e0f4 2022-06-16 stsp free(seg0);
3885 1853e0f4 2022-06-16 stsp free(seg1);
3886 1853e0f4 2022-06-16 stsp free(seg2);
3887 1853e0f4 2022-06-16 stsp return err;
3888 41605754 2020-11-12 stsp }
3889 94b80cfa 2022-08-01 mark
3890 94b80cfa 2022-08-01 mark static int
3891 94b80cfa 2022-08-01 mark gotoline(struct tog_view *view, int *lineno, int *nprinted)
3892 94b80cfa 2022-08-01 mark {
3893 94b80cfa 2022-08-01 mark FILE *f = NULL;
3894 94b80cfa 2022-08-01 mark int *eof, *first, *selected;
3895 94b80cfa 2022-08-01 mark
3896 94b80cfa 2022-08-01 mark if (view->type == TOG_VIEW_DIFF) {
3897 94b80cfa 2022-08-01 mark struct tog_diff_view_state *s = &view->state.diff;
3898 41605754 2020-11-12 stsp
3899 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
3900 94b80cfa 2022-08-01 mark selected = first;
3901 94b80cfa 2022-08-01 mark eof = &s->eof;
3902 94b80cfa 2022-08-01 mark f = s->f;
3903 94b80cfa 2022-08-01 mark } else if (view->type == TOG_VIEW_BLAME) {
3904 94b80cfa 2022-08-01 mark struct tog_blame_view_state *s = &view->state.blame;
3905 94b80cfa 2022-08-01 mark
3906 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
3907 94b80cfa 2022-08-01 mark selected = &s->selected_line;
3908 94b80cfa 2022-08-01 mark eof = &s->eof;
3909 94b80cfa 2022-08-01 mark f = s->blame.f;
3910 94b80cfa 2022-08-01 mark } else
3911 94b80cfa 2022-08-01 mark return 0;
3912 94b80cfa 2022-08-01 mark
3913 94b80cfa 2022-08-01 mark /* Center gline in the middle of the page like vi(1). */
3914 94b80cfa 2022-08-01 mark if (*lineno < view->gline - (view->nlines - 3) / 2)
3915 94b80cfa 2022-08-01 mark return 0;
3916 94b80cfa 2022-08-01 mark if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
3917 94b80cfa 2022-08-01 mark rewind(f);
3918 94b80cfa 2022-08-01 mark *eof = 0;
3919 94b80cfa 2022-08-01 mark *first = 1;
3920 94b80cfa 2022-08-01 mark *lineno = 0;
3921 94b80cfa 2022-08-01 mark *nprinted = 0;
3922 94b80cfa 2022-08-01 mark return 0;
3923 94b80cfa 2022-08-01 mark }
3924 94b80cfa 2022-08-01 mark
3925 94b80cfa 2022-08-01 mark *selected = view->gline <= (view->nlines - 3) / 2 ?
3926 94b80cfa 2022-08-01 mark view->gline : (view->nlines - 3) / 2 + 1;
3927 94b80cfa 2022-08-01 mark view->gline = 0;
3928 94b80cfa 2022-08-01 mark
3929 94b80cfa 2022-08-01 mark return 1;
3930 94b80cfa 2022-08-01 mark }
3931 94b80cfa 2022-08-01 mark
3932 41605754 2020-11-12 stsp static const struct got_error *
3933 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
3934 26ed57b2 2018-05-19 stsp {
3935 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
3936 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
3937 61e69b96 2018-05-20 stsp const struct got_error *err;
3938 c7d5c43c 2022-08-04 mark int nprinted = 0;
3939 b304db33 2018-05-20 stsp char *line;
3940 826082fe 2020-12-10 stsp size_t linesize = 0;
3941 826082fe 2020-12-10 stsp ssize_t linelen;
3942 61e69b96 2018-05-20 stsp wchar_t *wline;
3943 e0b650dd 2018-05-20 stsp int width;
3944 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
3945 89f1a395 2020-12-01 naddy int nlines = s->nlines;
3946 fe621944 2020-11-10 stsp off_t line_offset;
3947 26ed57b2 2018-05-19 stsp
3948 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1;
3949 c7d5c43c 2022-08-04 mark line_offset = s->lines[s->first_displayed_line - 1].offset;
3950 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
3951 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
3952 fe621944 2020-11-10 stsp
3953 f7d12f7e 2018-08-01 stsp werase(view->window);
3954 a3404814 2018-09-02 stsp
3955 94b80cfa 2022-08-01 mark if (view->gline > s->nlines - 1)
3956 94b80cfa 2022-08-01 mark view->gline = s->nlines - 1;
3957 94b80cfa 2022-08-01 mark
3958 a3404814 2018-09-02 stsp if (header) {
3959 94b80cfa 2022-08-01 mark int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
3960 94b80cfa 2022-08-01 mark 1 : view->gline - (view->nlines - 3) / 2 :
3961 c7d5c43c 2022-08-04 mark s->lineno + s->selected_line;
3962 94b80cfa 2022-08-01 mark
3963 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
3964 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
3965 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
3966 ccda2f4d 2022-06-16 stsp 0, 0);
3967 135a2da0 2020-11-11 stsp free(line);
3968 135a2da0 2020-11-11 stsp if (err)
3969 a3404814 2018-09-02 stsp return err;
3970 a3404814 2018-09-02 stsp
3971 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3972 a3404814 2018-09-02 stsp wstandout(view->window);
3973 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
3974 e54cc94a 2020-11-11 stsp free(wline);
3975 e54cc94a 2020-11-11 stsp wline = NULL;
3976 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3977 a3404814 2018-09-02 stsp wstandend(view->window);
3978 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
3979 a3404814 2018-09-02 stsp waddch(view->window, '\n');
3980 26ed57b2 2018-05-19 stsp
3981 a3404814 2018-09-02 stsp if (max_lines <= 1)
3982 a3404814 2018-09-02 stsp return NULL;
3983 a3404814 2018-09-02 stsp max_lines--;
3984 a3404814 2018-09-02 stsp }
3985 a3404814 2018-09-02 stsp
3986 89f1a395 2020-12-01 naddy s->eof = 0;
3987 145b6838 2022-06-16 stsp view->maxx = 0;
3988 826082fe 2020-12-10 stsp line = NULL;
3989 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
3990 6a5ff2d4 2022-08-06 mark enum got_diff_line_type linetype;
3991 6a5ff2d4 2022-08-06 mark attr_t attr = 0;
3992 6a5ff2d4 2022-08-06 mark
3993 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
3994 826082fe 2020-12-10 stsp if (linelen == -1) {
3995 826082fe 2020-12-10 stsp if (feof(s->f)) {
3996 826082fe 2020-12-10 stsp s->eof = 1;
3997 826082fe 2020-12-10 stsp break;
3998 826082fe 2020-12-10 stsp }
3999 826082fe 2020-12-10 stsp free(line);
4000 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
4001 61e69b96 2018-05-20 stsp }
4002 145b6838 2022-06-16 stsp
4003 c7d5c43c 2022-08-04 mark if (++s->lineno < s->first_displayed_line)
4004 94b80cfa 2022-08-01 mark continue;
4005 c7d5c43c 2022-08-04 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4006 94b80cfa 2022-08-01 mark continue;
4007 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline)
4008 94b80cfa 2022-08-01 mark attr = A_STANDOUT;
4009 94b80cfa 2022-08-01 mark
4010 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
4011 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4012 1853e0f4 2022-06-16 stsp view->x ? 1 : 0);
4013 1853e0f4 2022-06-16 stsp if (err) {
4014 1853e0f4 2022-06-16 stsp free(line);
4015 1853e0f4 2022-06-16 stsp return err;
4016 1853e0f4 2022-06-16 stsp }
4017 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
4018 1853e0f4 2022-06-16 stsp free(wline);
4019 1853e0f4 2022-06-16 stsp wline = NULL;
4020 1853e0f4 2022-06-16 stsp
4021 6a5ff2d4 2022-08-06 mark linetype = s->lines[s->lineno].type;
4022 6a5ff2d4 2022-08-06 mark if (linetype > GOT_DIFF_LINE_LOGMSG &&
4023 6a5ff2d4 2022-08-06 mark linetype < GOT_DIFF_LINE_CONTEXT)
4024 6a5ff2d4 2022-08-06 mark attr |= COLOR_PAIR(linetype);
4025 94b80cfa 2022-08-01 mark if (attr)
4026 94b80cfa 2022-08-01 mark wattron(view->window, attr);
4027 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4028 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4029 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4030 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
4031 41605754 2020-11-12 stsp if (err) {
4032 41605754 2020-11-12 stsp free(line);
4033 41605754 2020-11-12 stsp return err;
4034 41605754 2020-11-12 stsp }
4035 41605754 2020-11-12 stsp } else {
4036 969c159c 2022-06-16 stsp int skip;
4037 969c159c 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
4038 969c159c 2022-06-16 stsp view->x, view->ncols, 0, view->x ? 1 : 0);
4039 969c159c 2022-06-16 stsp if (err) {
4040 969c159c 2022-06-16 stsp free(line);
4041 969c159c 2022-06-16 stsp return err;
4042 969c159c 2022-06-16 stsp }
4043 969c159c 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
4044 969c159c 2022-06-16 stsp free(wline);
4045 41605754 2020-11-12 stsp wline = NULL;
4046 41605754 2020-11-12 stsp }
4047 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline) {
4048 94b80cfa 2022-08-01 mark /* highlight full gline length */
4049 94b80cfa 2022-08-01 mark while (width++ < view->ncols)
4050 94b80cfa 2022-08-01 mark waddch(view->window, ' ');
4051 94b80cfa 2022-08-01 mark } else {
4052 94b80cfa 2022-08-01 mark if (width <= view->ncols - 1)
4053 94b80cfa 2022-08-01 mark waddch(view->window, '\n');
4054 94b80cfa 2022-08-01 mark }
4055 94b80cfa 2022-08-01 mark if (attr)
4056 94b80cfa 2022-08-01 mark wattroff(view->window, attr);
4057 94b80cfa 2022-08-01 mark if (++nprinted == 1)
4058 c7d5c43c 2022-08-04 mark s->first_displayed_line = s->lineno;
4059 826082fe 2020-12-10 stsp }
4060 826082fe 2020-12-10 stsp free(line);
4061 fe621944 2020-11-10 stsp if (nprinted >= 1)
4062 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4063 89f1a395 2020-12-01 naddy (nprinted - 1);
4064 fe621944 2020-11-10 stsp else
4065 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4066 26ed57b2 2018-05-19 stsp
4067 9b058f45 2022-06-30 mark view_border(view);
4068 c3e9aa98 2019-05-13 jcs
4069 89f1a395 2020-12-01 naddy if (s->eof) {
4070 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4071 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4072 c3e9aa98 2019-05-13 jcs nprinted++;
4073 c3e9aa98 2019-05-13 jcs }
4074 c3e9aa98 2019-05-13 jcs
4075 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4076 ccda2f4d 2022-06-16 stsp view->ncols, 0, 0);
4077 c3e9aa98 2019-05-13 jcs if (err) {
4078 c3e9aa98 2019-05-13 jcs return err;
4079 c3e9aa98 2019-05-13 jcs }
4080 26ed57b2 2018-05-19 stsp
4081 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4082 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4083 e54cc94a 2020-11-11 stsp free(wline);
4084 e54cc94a 2020-11-11 stsp wline = NULL;
4085 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4086 c3e9aa98 2019-05-13 jcs }
4087 c3e9aa98 2019-05-13 jcs
4088 26ed57b2 2018-05-19 stsp return NULL;
4089 abd2672a 2018-12-23 stsp }
4090 abd2672a 2018-12-23 stsp
4091 abd2672a 2018-12-23 stsp static char *
4092 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4093 abd2672a 2018-12-23 stsp {
4094 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4095 09867e48 2019-08-13 stsp char *p, *s;
4096 09867e48 2019-08-13 stsp
4097 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4098 09867e48 2019-08-13 stsp if (tm == NULL)
4099 09867e48 2019-08-13 stsp return NULL;
4100 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4101 09867e48 2019-08-13 stsp if (s == NULL)
4102 09867e48 2019-08-13 stsp return NULL;
4103 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4104 abd2672a 2018-12-23 stsp if (p)
4105 abd2672a 2018-12-23 stsp *p = '\0';
4106 abd2672a 2018-12-23 stsp return s;
4107 9f7d7167 2018-04-29 stsp }
4108 9f7d7167 2018-04-29 stsp
4109 4ed7e80c 2018-05-20 stsp static const struct got_error *
4110 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4111 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4112 0208f208 2020-05-05 stsp {
4113 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4114 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4115 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4116 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4117 0208f208 2020-05-05 stsp
4118 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4119 0208f208 2020-05-05 stsp if (qid != NULL) {
4120 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4121 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4122 d7b5a0e8 2022-04-20 stsp &qid->id);
4123 0208f208 2020-05-05 stsp if (err)
4124 0208f208 2020-05-05 stsp return err;
4125 0208f208 2020-05-05 stsp
4126 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4127 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4128 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4129 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4130 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4131 aa8b5dd0 2021-08-01 stsp }
4132 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4133 0208f208 2020-05-05 stsp
4134 0208f208 2020-05-05 stsp }
4135 0208f208 2020-05-05 stsp
4136 0208f208 2020-05-05 stsp if (tree_id1) {
4137 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4138 0208f208 2020-05-05 stsp if (err)
4139 0208f208 2020-05-05 stsp goto done;
4140 0208f208 2020-05-05 stsp }
4141 0208f208 2020-05-05 stsp
4142 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4143 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4144 0208f208 2020-05-05 stsp if (err)
4145 0208f208 2020-05-05 stsp goto done;
4146 0208f208 2020-05-05 stsp
4147 f9d37699 2022-06-28 stsp err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4148 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4149 0208f208 2020-05-05 stsp done:
4150 0208f208 2020-05-05 stsp if (tree1)
4151 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4152 0208f208 2020-05-05 stsp if (tree2)
4153 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4154 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4155 0208f208 2020-05-05 stsp return err;
4156 0208f208 2020-05-05 stsp }
4157 0208f208 2020-05-05 stsp
4158 0208f208 2020-05-05 stsp static const struct got_error *
4159 c7d5c43c 2022-08-04 mark add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4160 c7d5c43c 2022-08-04 mark off_t off, uint8_t type)
4161 abd2672a 2018-12-23 stsp {
4162 c7d5c43c 2022-08-04 mark struct got_diff_line *p;
4163 fe621944 2020-11-10 stsp
4164 c7d5c43c 2022-08-04 mark p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4165 fe621944 2020-11-10 stsp if (p == NULL)
4166 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4167 c7d5c43c 2022-08-04 mark *lines = p;
4168 c7d5c43c 2022-08-04 mark (*lines)[*nlines].offset = off;
4169 c7d5c43c 2022-08-04 mark (*lines)[*nlines].type = type;
4170 fe621944 2020-11-10 stsp (*nlines)++;
4171 c7d5c43c 2022-08-04 mark
4172 fe621944 2020-11-10 stsp return NULL;
4173 fe621944 2020-11-10 stsp }
4174 fe621944 2020-11-10 stsp
4175 fe621944 2020-11-10 stsp static const struct got_error *
4176 c7d5c43c 2022-08-04 mark write_commit_info(struct got_diff_line **lines, size_t *nlines,
4177 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4178 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4179 fe621944 2020-11-10 stsp {
4180 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4181 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4182 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4183 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4184 45d799e2 2018-12-23 stsp time_t committer_time;
4185 45d799e2 2018-12-23 stsp const char *author, *committer;
4186 8b473291 2019-02-21 stsp char *refs_str = NULL;
4187 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4188 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4189 fe621944 2020-11-10 stsp off_t outoff = 0;
4190 fe621944 2020-11-10 stsp int n;
4191 abd2672a 2018-12-23 stsp
4192 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4193 0208f208 2020-05-05 stsp
4194 8b473291 2019-02-21 stsp if (refs) {
4195 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4196 8b473291 2019-02-21 stsp if (err)
4197 8b473291 2019-02-21 stsp return err;
4198 8b473291 2019-02-21 stsp }
4199 8b473291 2019-02-21 stsp
4200 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4201 abd2672a 2018-12-23 stsp if (err)
4202 abd2672a 2018-12-23 stsp return err;
4203 abd2672a 2018-12-23 stsp
4204 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4205 15a94983 2018-12-23 stsp if (err) {
4206 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4207 15a94983 2018-12-23 stsp goto done;
4208 15a94983 2018-12-23 stsp }
4209 abd2672a 2018-12-23 stsp
4210 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4211 fe621944 2020-11-10 stsp if (err)
4212 fe621944 2020-11-10 stsp goto done;
4213 fe621944 2020-11-10 stsp
4214 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4215 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4216 fe621944 2020-11-10 stsp if (n < 0) {
4217 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4218 abd2672a 2018-12-23 stsp goto done;
4219 abd2672a 2018-12-23 stsp }
4220 fe621944 2020-11-10 stsp outoff += n;
4221 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4222 fe621944 2020-11-10 stsp if (err)
4223 fe621944 2020-11-10 stsp goto done;
4224 fe621944 2020-11-10 stsp
4225 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4226 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4227 fe621944 2020-11-10 stsp if (n < 0) {
4228 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4229 abd2672a 2018-12-23 stsp goto done;
4230 abd2672a 2018-12-23 stsp }
4231 fe621944 2020-11-10 stsp outoff += n;
4232 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4233 fe621944 2020-11-10 stsp if (err)
4234 fe621944 2020-11-10 stsp goto done;
4235 fe621944 2020-11-10 stsp
4236 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4237 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4238 fe621944 2020-11-10 stsp if (datestr) {
4239 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4240 fe621944 2020-11-10 stsp if (n < 0) {
4241 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4242 fe621944 2020-11-10 stsp goto done;
4243 fe621944 2020-11-10 stsp }
4244 fe621944 2020-11-10 stsp outoff += n;
4245 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4246 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_DATE);
4247 fe621944 2020-11-10 stsp if (err)
4248 fe621944 2020-11-10 stsp goto done;
4249 abd2672a 2018-12-23 stsp }
4250 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4251 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4252 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4253 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4254 fe621944 2020-11-10 stsp if (n < 0) {
4255 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4256 fe621944 2020-11-10 stsp goto done;
4257 fe621944 2020-11-10 stsp }
4258 fe621944 2020-11-10 stsp outoff += n;
4259 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4260 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_AUTHOR);
4261 fe621944 2020-11-10 stsp if (err)
4262 fe621944 2020-11-10 stsp goto done;
4263 abd2672a 2018-12-23 stsp }
4264 9f98ca05 2021-09-24 stsp if (got_object_commit_get_nparents(commit) > 1) {
4265 9f98ca05 2021-09-24 stsp const struct got_object_id_queue *parent_ids;
4266 9f98ca05 2021-09-24 stsp struct got_object_qid *qid;
4267 9f98ca05 2021-09-24 stsp int pn = 1;
4268 9f98ca05 2021-09-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
4269 9f98ca05 2021-09-24 stsp STAILQ_FOREACH(qid, parent_ids, entry) {
4270 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &qid->id);
4271 9f98ca05 2021-09-24 stsp if (err)
4272 9f98ca05 2021-09-24 stsp goto done;
4273 9f98ca05 2021-09-24 stsp n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4274 9f98ca05 2021-09-24 stsp if (n < 0) {
4275 9f98ca05 2021-09-24 stsp err = got_error_from_errno("fprintf");
4276 9f98ca05 2021-09-24 stsp goto done;
4277 9f98ca05 2021-09-24 stsp }
4278 9f98ca05 2021-09-24 stsp outoff += n;
4279 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4280 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
4281 9f98ca05 2021-09-24 stsp if (err)
4282 9f98ca05 2021-09-24 stsp goto done;
4283 9f98ca05 2021-09-24 stsp free(id_str);
4284 9f98ca05 2021-09-24 stsp id_str = NULL;
4285 9f98ca05 2021-09-24 stsp }
4286 9f98ca05 2021-09-24 stsp }
4287 9f98ca05 2021-09-24 stsp
4288 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4289 5943eee2 2019-08-13 stsp if (err)
4290 5943eee2 2019-08-13 stsp goto done;
4291 fe621944 2020-11-10 stsp s = logmsg;
4292 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4293 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4294 fe621944 2020-11-10 stsp if (n < 0) {
4295 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4296 fe621944 2020-11-10 stsp goto done;
4297 fe621944 2020-11-10 stsp }
4298 fe621944 2020-11-10 stsp outoff += n;
4299 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4300 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_LOGMSG);
4301 fe621944 2020-11-10 stsp if (err)
4302 fe621944 2020-11-10 stsp goto done;
4303 abd2672a 2018-12-23 stsp }
4304 fe621944 2020-11-10 stsp
4305 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4306 0208f208 2020-05-05 stsp if (err)
4307 0208f208 2020-05-05 stsp goto done;
4308 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4309 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4310 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4311 fe621944 2020-11-10 stsp if (n < 0) {
4312 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4313 fe621944 2020-11-10 stsp goto done;
4314 fe621944 2020-11-10 stsp }
4315 fe621944 2020-11-10 stsp outoff += n;
4316 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4317 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_CHANGES);
4318 fe621944 2020-11-10 stsp if (err)
4319 fe621944 2020-11-10 stsp goto done;
4320 0208f208 2020-05-05 stsp free((char *)pe->path);
4321 0208f208 2020-05-05 stsp free(pe->data);
4322 0208f208 2020-05-05 stsp }
4323 fe621944 2020-11-10 stsp
4324 0208f208 2020-05-05 stsp fputc('\n', outfile);
4325 fe621944 2020-11-10 stsp outoff++;
4326 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4327 abd2672a 2018-12-23 stsp done:
4328 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4329 abd2672a 2018-12-23 stsp free(id_str);
4330 5943eee2 2019-08-13 stsp free(logmsg);
4331 8b473291 2019-02-21 stsp free(refs_str);
4332 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4333 7510f233 2020-08-09 stsp if (err) {
4334 c7d5c43c 2022-08-04 mark free(*lines);
4335 c7d5c43c 2022-08-04 mark *lines = NULL;
4336 ae6a6978 2020-08-09 stsp *nlines = 0;
4337 7510f233 2020-08-09 stsp }
4338 fe621944 2020-11-10 stsp return err;
4339 abd2672a 2018-12-23 stsp }
4340 abd2672a 2018-12-23 stsp
4341 abd2672a 2018-12-23 stsp static const struct got_error *
4342 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4343 26ed57b2 2018-05-19 stsp {
4344 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4345 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4346 15a94983 2018-12-23 stsp int obj_type;
4347 fe621944 2020-11-10 stsp
4348 c7d5c43c 2022-08-04 mark free(s->lines);
4349 c7d5c43c 2022-08-04 mark s->lines = malloc(sizeof(*s->lines));
4350 c7d5c43c 2022-08-04 mark if (s->lines == NULL)
4351 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4352 fe621944 2020-11-10 stsp s->nlines = 0;
4353 26ed57b2 2018-05-19 stsp
4354 511a516b 2018-05-19 stsp f = got_opentemp();
4355 48ae06ee 2018-10-18 stsp if (f == NULL) {
4356 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4357 48ae06ee 2018-10-18 stsp goto done;
4358 48ae06ee 2018-10-18 stsp }
4359 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4360 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4361 fb43ecf1 2019-02-11 stsp goto done;
4362 fb43ecf1 2019-02-11 stsp }
4363 48ae06ee 2018-10-18 stsp s->f = f;
4364 26ed57b2 2018-05-19 stsp
4365 15a94983 2018-12-23 stsp if (s->id1)
4366 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4367 15a94983 2018-12-23 stsp else
4368 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4369 15a94983 2018-12-23 stsp if (err)
4370 15a94983 2018-12-23 stsp goto done;
4371 15a94983 2018-12-23 stsp
4372 15a94983 2018-12-23 stsp switch (obj_type) {
4373 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4374 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4375 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4376 917d79a7 2022-07-01 stsp s->label1, s->label2, tog_diff_algo, s->diff_context,
4377 f9d37699 2022-06-28 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4378 26ed57b2 2018-05-19 stsp break;
4379 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4380 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4381 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4382 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4383 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4384 26ed57b2 2018-05-19 stsp break;
4385 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4386 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4387 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4388 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4389 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4390 abd2672a 2018-12-23 stsp
4391 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4392 abd2672a 2018-12-23 stsp if (err)
4393 3ffacbe1 2020-02-02 tracey goto done;
4394 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4395 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4396 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4397 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines, &s->nlines, s->id2,
4398 c7d5c43c 2022-08-04 mark refs, s->repo, s->f);
4399 f44b1f58 2020-02-02 tracey if (err)
4400 f44b1f58 2020-02-02 tracey goto done;
4401 f44b1f58 2020-02-02 tracey } else {
4402 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4403 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4404 d7b5a0e8 2022-04-20 stsp if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4405 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines,
4406 c7d5c43c 2022-08-04 mark &s->nlines, s->id2, refs, s->repo,
4407 c7d5c43c 2022-08-04 mark s->f);
4408 f44b1f58 2020-02-02 tracey if (err)
4409 f44b1f58 2020-02-02 tracey goto done;
4410 f5404e4e 2020-02-02 tracey break;
4411 15a087fe 2019-02-21 stsp }
4412 abd2672a 2018-12-23 stsp }
4413 abd2672a 2018-12-23 stsp }
4414 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4415 abd2672a 2018-12-23 stsp
4416 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4417 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4418 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4419 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4420 26ed57b2 2018-05-19 stsp break;
4421 abd2672a 2018-12-23 stsp }
4422 26ed57b2 2018-05-19 stsp default:
4423 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4424 48ae06ee 2018-10-18 stsp break;
4425 26ed57b2 2018-05-19 stsp }
4426 48ae06ee 2018-10-18 stsp done:
4427 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4428 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4429 48ae06ee 2018-10-18 stsp return err;
4430 48ae06ee 2018-10-18 stsp }
4431 26ed57b2 2018-05-19 stsp
4432 f5215bb9 2019-02-22 stsp static void
4433 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4434 f5215bb9 2019-02-22 stsp {
4435 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4436 f5215bb9 2019-02-22 stsp update_panels();
4437 f5215bb9 2019-02-22 stsp doupdate();
4438 f44b1f58 2020-02-02 tracey }
4439 f44b1f58 2020-02-02 tracey
4440 f44b1f58 2020-02-02 tracey static const struct got_error *
4441 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4442 f44b1f58 2020-02-02 tracey {
4443 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4444 f44b1f58 2020-02-02 tracey
4445 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4446 f44b1f58 2020-02-02 tracey return NULL;
4447 f44b1f58 2020-02-02 tracey }
4448 f44b1f58 2020-02-02 tracey
4449 f44b1f58 2020-02-02 tracey static const struct got_error *
4450 f44b1f58 2020-02-02 tracey search_next_diff_view(struct tog_view *view)
4451 f44b1f58 2020-02-02 tracey {
4452 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4453 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
4454 f44b1f58 2020-02-02 tracey int lineno;
4455 cb713507 2022-06-16 stsp char *line = NULL;
4456 826082fe 2020-12-10 stsp size_t linesize = 0;
4457 826082fe 2020-12-10 stsp ssize_t linelen;
4458 f44b1f58 2020-02-02 tracey
4459 f44b1f58 2020-02-02 tracey if (!view->searching) {
4460 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4461 f44b1f58 2020-02-02 tracey return NULL;
4462 f44b1f58 2020-02-02 tracey }
4463 f44b1f58 2020-02-02 tracey
4464 f44b1f58 2020-02-02 tracey if (s->matched_line) {
4465 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4466 f44b1f58 2020-02-02 tracey lineno = s->matched_line + 1;
4467 f44b1f58 2020-02-02 tracey else
4468 f44b1f58 2020-02-02 tracey lineno = s->matched_line - 1;
4469 487cd7d2 2021-12-17 stsp } else
4470 487cd7d2 2021-12-17 stsp lineno = s->first_displayed_line;
4471 f44b1f58 2020-02-02 tracey
4472 f44b1f58 2020-02-02 tracey while (1) {
4473 f44b1f58 2020-02-02 tracey off_t offset;
4474 f44b1f58 2020-02-02 tracey
4475 f44b1f58 2020-02-02 tracey if (lineno <= 0 || lineno > s->nlines) {
4476 f44b1f58 2020-02-02 tracey if (s->matched_line == 0) {
4477 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4478 f44b1f58 2020-02-02 tracey break;
4479 f44b1f58 2020-02-02 tracey }
4480 f44b1f58 2020-02-02 tracey
4481 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4482 f44b1f58 2020-02-02 tracey lineno = 1;
4483 f44b1f58 2020-02-02 tracey else
4484 f44b1f58 2020-02-02 tracey lineno = s->nlines;
4485 f44b1f58 2020-02-02 tracey }
4486 f44b1f58 2020-02-02 tracey
4487 c7d5c43c 2022-08-04 mark offset = s->lines[lineno - 1].offset;
4488 f44b1f58 2020-02-02 tracey if (fseeko(s->f, offset, SEEK_SET) != 0) {
4489 f44b1f58 2020-02-02 tracey free(line);
4490 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4491 f44b1f58 2020-02-02 tracey }
4492 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4493 cb713507 2022-06-16 stsp if (linelen != -1) {
4494 cb713507 2022-06-16 stsp char *exstr;
4495 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
4496 cb713507 2022-06-16 stsp if (err)
4497 cb713507 2022-06-16 stsp break;
4498 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
4499 cb713507 2022-06-16 stsp &view->regmatch)) {
4500 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4501 cb713507 2022-06-16 stsp s->matched_line = lineno;
4502 cb713507 2022-06-16 stsp free(exstr);
4503 cb713507 2022-06-16 stsp break;
4504 cb713507 2022-06-16 stsp }
4505 cb713507 2022-06-16 stsp free(exstr);
4506 f44b1f58 2020-02-02 tracey }
4507 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4508 f44b1f58 2020-02-02 tracey lineno++;
4509 f44b1f58 2020-02-02 tracey else
4510 f44b1f58 2020-02-02 tracey lineno--;
4511 f44b1f58 2020-02-02 tracey }
4512 826082fe 2020-12-10 stsp free(line);
4513 f44b1f58 2020-02-02 tracey
4514 f44b1f58 2020-02-02 tracey if (s->matched_line) {
4515 f44b1f58 2020-02-02 tracey s->first_displayed_line = s->matched_line;
4516 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4517 f44b1f58 2020-02-02 tracey }
4518 f44b1f58 2020-02-02 tracey
4519 145b6838 2022-06-16 stsp return err;
4520 f5215bb9 2019-02-22 stsp }
4521 f5215bb9 2019-02-22 stsp
4522 48ae06ee 2018-10-18 stsp static const struct got_error *
4523 b72706c3 2022-06-01 stsp close_diff_view(struct tog_view *view)
4524 b72706c3 2022-06-01 stsp {
4525 b72706c3 2022-06-01 stsp const struct got_error *err = NULL;
4526 b72706c3 2022-06-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4527 b72706c3 2022-06-01 stsp
4528 b72706c3 2022-06-01 stsp free(s->id1);
4529 b72706c3 2022-06-01 stsp s->id1 = NULL;
4530 b72706c3 2022-06-01 stsp free(s->id2);
4531 b72706c3 2022-06-01 stsp s->id2 = NULL;
4532 b72706c3 2022-06-01 stsp if (s->f && fclose(s->f) == EOF)
4533 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4534 b72706c3 2022-06-01 stsp s->f = NULL;
4535 f9d37699 2022-06-28 stsp if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4536 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4537 b72706c3 2022-06-01 stsp s->f1 = NULL;
4538 f9d37699 2022-06-28 stsp if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4539 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4540 b72706c3 2022-06-01 stsp s->f2 = NULL;
4541 f9d37699 2022-06-28 stsp if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4542 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4543 f9d37699 2022-06-28 stsp s->fd1 = -1;
4544 f9d37699 2022-06-28 stsp if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4545 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4546 f9d37699 2022-06-28 stsp s->fd2 = -1;
4547 c7d5c43c 2022-08-04 mark free(s->lines);
4548 c7d5c43c 2022-08-04 mark s->lines = NULL;
4549 b72706c3 2022-06-01 stsp s->nlines = 0;
4550 b72706c3 2022-06-01 stsp return err;
4551 b72706c3 2022-06-01 stsp }
4552 b72706c3 2022-06-01 stsp
4553 b72706c3 2022-06-01 stsp static const struct got_error *
4554 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4555 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4556 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4557 c0f61fa4 2022-07-11 mark struct tog_view *parent_view, struct got_repository *repo)
4558 48ae06ee 2018-10-18 stsp {
4559 48ae06ee 2018-10-18 stsp const struct got_error *err;
4560 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4561 5dc9f4bc 2018-08-04 stsp
4562 b72706c3 2022-06-01 stsp memset(s, 0, sizeof(*s));
4563 f9d37699 2022-06-28 stsp s->fd1 = -1;
4564 f9d37699 2022-06-28 stsp s->fd2 = -1;
4565 b72706c3 2022-06-01 stsp
4566 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4567 15a94983 2018-12-23 stsp int type1, type2;
4568 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4569 15a94983 2018-12-23 stsp if (err)
4570 15a94983 2018-12-23 stsp return err;
4571 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4572 15a94983 2018-12-23 stsp if (err)
4573 15a94983 2018-12-23 stsp return err;
4574 15a94983 2018-12-23 stsp
4575 15a94983 2018-12-23 stsp if (type1 != type2)
4576 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4577 15a94983 2018-12-23 stsp }
4578 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4579 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4580 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4581 f44b1f58 2020-02-02 tracey s->repo = repo;
4582 f44b1f58 2020-02-02 tracey s->id1 = id1;
4583 f44b1f58 2020-02-02 tracey s->id2 = id2;
4584 3dbaef42 2020-11-24 stsp s->label1 = label1;
4585 3dbaef42 2020-11-24 stsp s->label2 = label2;
4586 48ae06ee 2018-10-18 stsp
4587 15a94983 2018-12-23 stsp if (id1) {
4588 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4589 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4590 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4591 48ae06ee 2018-10-18 stsp } else
4592 5465d566 2020-02-01 tracey s->id1 = NULL;
4593 48ae06ee 2018-10-18 stsp
4594 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4595 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4596 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_object_id_dup");
4597 b72706c3 2022-06-01 stsp goto done;
4598 48ae06ee 2018-10-18 stsp }
4599 b72706c3 2022-06-01 stsp
4600 a00719e9 2022-06-17 stsp s->f1 = got_opentemp();
4601 a00719e9 2022-06-17 stsp if (s->f1 == NULL) {
4602 a00719e9 2022-06-17 stsp err = got_error_from_errno("got_opentemp");
4603 a00719e9 2022-06-17 stsp goto done;
4604 a00719e9 2022-06-17 stsp }
4605 a00719e9 2022-06-17 stsp
4606 b72706c3 2022-06-01 stsp s->f2 = got_opentemp();
4607 b72706c3 2022-06-01 stsp if (s->f2 == NULL) {
4608 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_opentemp");
4609 b72706c3 2022-06-01 stsp goto done;
4610 b72706c3 2022-06-01 stsp }
4611 b72706c3 2022-06-01 stsp
4612 f9d37699 2022-06-28 stsp s->fd1 = got_opentempfd();
4613 f9d37699 2022-06-28 stsp if (s->fd1 == -1) {
4614 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4615 f9d37699 2022-06-28 stsp goto done;
4616 f9d37699 2022-06-28 stsp }
4617 f9d37699 2022-06-28 stsp
4618 f9d37699 2022-06-28 stsp s->fd2 = got_opentempfd();
4619 f9d37699 2022-06-28 stsp if (s->fd2 == -1) {
4620 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4621 f9d37699 2022-06-28 stsp goto done;
4622 f9d37699 2022-06-28 stsp }
4623 f9d37699 2022-06-28 stsp
4624 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
4625 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
4626 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
4627 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
4628 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
4629 c0f61fa4 2022-07-11 mark s->parent_view = parent_view;
4630 5465d566 2020-02-01 tracey s->repo = repo;
4631 6d17833f 2019-11-08 stsp
4632 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
4633 6a5ff2d4 2022-08-06 mark int rc;
4634 6d17833f 2019-11-08 stsp
4635 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_MINUS,
4636 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
4637 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4638 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_PLUS,
4639 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
4640 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4641 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_HUNK,
4642 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
4643 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4644 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_META,
4645 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4646 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4647 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_CHANGES,
4648 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4649 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4650 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
4651 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4652 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4653 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
4654 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4655 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4656 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_AUTHOR,
4657 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_AUTHOR"), -1);
4658 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4659 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_DATE,
4660 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DATE"), -1);
4661 6a5ff2d4 2022-08-06 mark if (rc == ERR) {
4662 6a5ff2d4 2022-08-06 mark err = got_error(GOT_ERR_RANGE);
4663 b72706c3 2022-06-01 stsp goto done;
4664 6a5ff2d4 2022-08-06 mark }
4665 6d17833f 2019-11-08 stsp }
4666 5dc9f4bc 2018-08-04 stsp
4667 c0f61fa4 2022-07-11 mark if (parent_view && parent_view->type == TOG_VIEW_LOG &&
4668 c0f61fa4 2022-07-11 mark view_is_splitscreen(view))
4669 c0f61fa4 2022-07-11 mark show_log_view(parent_view); /* draw border */
4670 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
4671 f5215bb9 2019-02-22 stsp
4672 5465d566 2020-02-01 tracey err = create_diff(s);
4673 48ae06ee 2018-10-18 stsp
4674 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
4675 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
4676 917d79a7 2022-07-01 stsp view->reset = reset_diff_view;
4677 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
4678 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
4679 f44b1f58 2020-02-02 tracey view->search_next = search_next_diff_view;
4680 b72706c3 2022-06-01 stsp done:
4681 b72706c3 2022-06-01 stsp if (err)
4682 b72706c3 2022-06-01 stsp close_diff_view(view);
4683 e5a0f69f 2018-08-18 stsp return err;
4684 5dc9f4bc 2018-08-04 stsp }
4685 5dc9f4bc 2018-08-04 stsp
4686 5dc9f4bc 2018-08-04 stsp static const struct got_error *
4687 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
4688 5dc9f4bc 2018-08-04 stsp {
4689 a3404814 2018-09-02 stsp const struct got_error *err;
4690 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
4691 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
4692 3dbaef42 2020-11-24 stsp const char *label1, *label2;
4693 a3404814 2018-09-02 stsp
4694 a3404814 2018-09-02 stsp if (s->id1) {
4695 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
4696 a3404814 2018-09-02 stsp if (err)
4697 a3404814 2018-09-02 stsp return err;
4698 3dbaef42 2020-11-24 stsp label1 = s->label1 ? : id_str1;
4699 3dbaef42 2020-11-24 stsp } else
4700 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
4701 3dbaef42 2020-11-24 stsp
4702 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
4703 a3404814 2018-09-02 stsp if (err)
4704 a3404814 2018-09-02 stsp return err;
4705 3dbaef42 2020-11-24 stsp label2 = s->label2 ? : id_str2;
4706 26ed57b2 2018-05-19 stsp
4707 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
4708 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4709 a3404814 2018-09-02 stsp free(id_str1);
4710 a3404814 2018-09-02 stsp free(id_str2);
4711 a3404814 2018-09-02 stsp return err;
4712 a3404814 2018-09-02 stsp }
4713 a3404814 2018-09-02 stsp free(id_str1);
4714 a3404814 2018-09-02 stsp free(id_str2);
4715 a3404814 2018-09-02 stsp
4716 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
4717 267bb3b8 2021-08-01 stsp free(header);
4718 267bb3b8 2021-08-01 stsp return err;
4719 15a087fe 2019-02-21 stsp }
4720 15a087fe 2019-02-21 stsp
4721 15a087fe 2019-02-21 stsp static const struct got_error *
4722 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
4723 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
4724 15a087fe 2019-02-21 stsp {
4725 d7a04538 2019-02-21 stsp const struct got_error *err;
4726 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
4727 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
4728 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
4729 15a087fe 2019-02-21 stsp
4730 15a087fe 2019-02-21 stsp free(s->id2);
4731 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
4732 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
4733 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4734 15a087fe 2019-02-21 stsp
4735 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
4736 d7a04538 2019-02-21 stsp if (err)
4737 d7a04538 2019-02-21 stsp return err;
4738 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
4739 15a087fe 2019-02-21 stsp free(s->id1);
4740 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
4741 d7b5a0e8 2022-04-20 stsp s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
4742 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
4743 15a087fe 2019-02-21 stsp return NULL;
4744 0cf4efb1 2018-09-29 stsp }
4745 0cf4efb1 2018-09-29 stsp
4746 0cf4efb1 2018-09-29 stsp static const struct got_error *
4747 917d79a7 2022-07-01 stsp reset_diff_view(struct tog_view *view)
4748 917d79a7 2022-07-01 stsp {
4749 917d79a7 2022-07-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4750 917d79a7 2022-07-01 stsp
4751 917d79a7 2022-07-01 stsp view->count = 0;
4752 917d79a7 2022-07-01 stsp wclear(view->window);
4753 917d79a7 2022-07-01 stsp s->first_displayed_line = 1;
4754 917d79a7 2022-07-01 stsp s->last_displayed_line = view->nlines;
4755 917d79a7 2022-07-01 stsp s->matched_line = 0;
4756 917d79a7 2022-07-01 stsp diff_view_indicate_progress(view);
4757 917d79a7 2022-07-01 stsp return create_diff(s);
4758 c7d5c43c 2022-08-04 mark }
4759 c7d5c43c 2022-08-04 mark
4760 c7d5c43c 2022-08-04 mark static void
4761 c7d5c43c 2022-08-04 mark diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
4762 c7d5c43c 2022-08-04 mark {
4763 c7d5c43c 2022-08-04 mark int start, i;
4764 c7d5c43c 2022-08-04 mark
4765 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line - 1;
4766 c7d5c43c 2022-08-04 mark
4767 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
4768 c7d5c43c 2022-08-04 mark if (i == 0)
4769 c7d5c43c 2022-08-04 mark i = s->nlines - 1;
4770 c7d5c43c 2022-08-04 mark if (--i == start)
4771 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
4772 c7d5c43c 2022-08-04 mark }
4773 c7d5c43c 2022-08-04 mark
4774 c7d5c43c 2022-08-04 mark s->selected_line = 1;
4775 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
4776 917d79a7 2022-07-01 stsp }
4777 917d79a7 2022-07-01 stsp
4778 c7d5c43c 2022-08-04 mark static void
4779 c7d5c43c 2022-08-04 mark diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
4780 c7d5c43c 2022-08-04 mark {
4781 c7d5c43c 2022-08-04 mark int start, i;
4782 c7d5c43c 2022-08-04 mark
4783 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line + 1;
4784 c7d5c43c 2022-08-04 mark
4785 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
4786 c7d5c43c 2022-08-04 mark if (i == s->nlines - 1)
4787 c7d5c43c 2022-08-04 mark i = 0;
4788 c7d5c43c 2022-08-04 mark if (++i == start)
4789 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
4790 c7d5c43c 2022-08-04 mark }
4791 c7d5c43c 2022-08-04 mark
4792 c7d5c43c 2022-08-04 mark s->selected_line = 1;
4793 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
4794 c7d5c43c 2022-08-04 mark }
4795 c7d5c43c 2022-08-04 mark
4796 c0f61fa4 2022-07-11 mark static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
4797 c0f61fa4 2022-07-11 mark int, int, int);
4798 c0f61fa4 2022-07-11 mark static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
4799 c0f61fa4 2022-07-11 mark int, int);
4800 c0f61fa4 2022-07-11 mark
4801 917d79a7 2022-07-01 stsp static const struct got_error *
4802 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
4803 e5a0f69f 2018-08-18 stsp {
4804 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
4805 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
4806 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
4807 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
4808 826082fe 2020-12-10 stsp char *line = NULL;
4809 826082fe 2020-12-10 stsp size_t linesize = 0;
4810 826082fe 2020-12-10 stsp ssize_t linelen;
4811 c0f61fa4 2022-07-11 mark int i, nscroll = view->nlines - 1, up = 0;
4812 e5a0f69f 2018-08-18 stsp
4813 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
4814 c7d5c43c 2022-08-04 mark
4815 e5a0f69f 2018-08-18 stsp switch (ch) {
4816 145b6838 2022-06-16 stsp case '0':
4817 145b6838 2022-06-16 stsp view->x = 0;
4818 145b6838 2022-06-16 stsp break;
4819 145b6838 2022-06-16 stsp case '$':
4820 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
4821 640cd7ff 2022-06-22 mark view->count = 0;
4822 145b6838 2022-06-16 stsp break;
4823 145b6838 2022-06-16 stsp case KEY_RIGHT:
4824 145b6838 2022-06-16 stsp case 'l':
4825 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
4826 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
4827 640cd7ff 2022-06-22 mark else
4828 640cd7ff 2022-06-22 mark view->count = 0;
4829 145b6838 2022-06-16 stsp break;
4830 145b6838 2022-06-16 stsp case KEY_LEFT:
4831 145b6838 2022-06-16 stsp case 'h':
4832 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
4833 640cd7ff 2022-06-22 mark if (view->x <= 0)
4834 640cd7ff 2022-06-22 mark view->count = 0;
4835 145b6838 2022-06-16 stsp break;
4836 64453f7e 2020-11-21 stsp case 'a':
4837 3dbaef42 2020-11-24 stsp case 'w':
4838 3dbaef42 2020-11-24 stsp if (ch == 'a')
4839 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
4840 3dbaef42 2020-11-24 stsp if (ch == 'w')
4841 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
4842 917d79a7 2022-07-01 stsp err = reset_diff_view(view);
4843 912a3f79 2021-08-30 j break;
4844 912a3f79 2021-08-30 j case 'g':
4845 912a3f79 2021-08-30 j case KEY_HOME:
4846 912a3f79 2021-08-30 j s->first_displayed_line = 1;
4847 640cd7ff 2022-06-22 mark view->count = 0;
4848 64453f7e 2020-11-21 stsp break;
4849 912a3f79 2021-08-30 j case 'G':
4850 912a3f79 2021-08-30 j case KEY_END:
4851 640cd7ff 2022-06-22 mark view->count = 0;
4852 912a3f79 2021-08-30 j if (s->eof)
4853 912a3f79 2021-08-30 j break;
4854 912a3f79 2021-08-30 j
4855 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
4856 912a3f79 2021-08-30 j s->eof = 1;
4857 912a3f79 2021-08-30 j break;
4858 1e37a5c2 2019-05-12 jcs case 'k':
4859 1e37a5c2 2019-05-12 jcs case KEY_UP:
4860 02ffd0d5 2021-10-17 stsp case CTRL('p'):
4861 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
4862 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4863 640cd7ff 2022-06-22 mark else
4864 640cd7ff 2022-06-22 mark view->count = 0;
4865 1e37a5c2 2019-05-12 jcs break;
4866 83cc4199 2022-06-13 stsp case CTRL('u'):
4867 33c3719a 2022-06-15 stsp case 'u':
4868 83cc4199 2022-06-13 stsp nscroll /= 2;
4869 83cc4199 2022-06-13 stsp /* FALL THROUGH */
4870 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4871 a60a9dc4 2019-05-13 jcs case CTRL('b'):
4872 61417565 2022-06-20 mark case 'b':
4873 640cd7ff 2022-06-22 mark if (s->first_displayed_line == 1) {
4874 640cd7ff 2022-06-22 mark view->count = 0;
4875 26ed57b2 2018-05-19 stsp break;
4876 640cd7ff 2022-06-22 mark }
4877 1e37a5c2 2019-05-12 jcs i = 0;
4878 83cc4199 2022-06-13 stsp while (i++ < nscroll && s->first_displayed_line > 1)
4879 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4880 1e37a5c2 2019-05-12 jcs break;
4881 1e37a5c2 2019-05-12 jcs case 'j':
4882 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4883 02ffd0d5 2021-10-17 stsp case CTRL('n'):
4884 1e37a5c2 2019-05-12 jcs if (!s->eof)
4885 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4886 640cd7ff 2022-06-22 mark else
4887 640cd7ff 2022-06-22 mark view->count = 0;
4888 1e37a5c2 2019-05-12 jcs break;
4889 83cc4199 2022-06-13 stsp case CTRL('d'):
4890 33c3719a 2022-06-15 stsp case 'd':
4891 83cc4199 2022-06-13 stsp nscroll /= 2;
4892 83cc4199 2022-06-13 stsp /* FALL THROUGH */
4893 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4894 a60a9dc4 2019-05-13 jcs case CTRL('f'):
4895 61417565 2022-06-20 mark case 'f':
4896 1e37a5c2 2019-05-12 jcs case ' ':
4897 640cd7ff 2022-06-22 mark if (s->eof) {
4898 640cd7ff 2022-06-22 mark view->count = 0;
4899 1e37a5c2 2019-05-12 jcs break;
4900 640cd7ff 2022-06-22 mark }
4901 1e37a5c2 2019-05-12 jcs i = 0;
4902 83cc4199 2022-06-13 stsp while (!s->eof && i++ < nscroll) {
4903 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4904 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4905 826082fe 2020-12-10 stsp if (linelen == -1) {
4906 826082fe 2020-12-10 stsp if (feof(s->f)) {
4907 826082fe 2020-12-10 stsp s->eof = 1;
4908 826082fe 2020-12-10 stsp } else
4909 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
4910 34bc9ec9 2019-02-22 stsp break;
4911 826082fe 2020-12-10 stsp }
4912 1e37a5c2 2019-05-12 jcs }
4913 826082fe 2020-12-10 stsp free(line);
4914 1e37a5c2 2019-05-12 jcs break;
4915 c7d5c43c 2022-08-04 mark case '(':
4916 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
4917 c7d5c43c 2022-08-04 mark break;
4918 c7d5c43c 2022-08-04 mark case ')':
4919 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
4920 c7d5c43c 2022-08-04 mark break;
4921 c7d5c43c 2022-08-04 mark case '{':
4922 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_HUNK);
4923 c7d5c43c 2022-08-04 mark break;
4924 c7d5c43c 2022-08-04 mark case '}':
4925 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_HUNK);
4926 c7d5c43c 2022-08-04 mark break;
4927 1e37a5c2 2019-05-12 jcs case '[':
4928 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
4929 1e37a5c2 2019-05-12 jcs s->diff_context--;
4930 67b5eae1 2021-12-27 naddy s->matched_line = 0;
4931 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
4932 1e37a5c2 2019-05-12 jcs err = create_diff(s);
4933 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
4934 27829c9e 2020-11-21 stsp s->nlines) {
4935 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
4936 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
4937 27829c9e 2020-11-21 stsp }
4938 640cd7ff 2022-06-22 mark } else
4939 640cd7ff 2022-06-22 mark view->count = 0;
4940 1e37a5c2 2019-05-12 jcs break;
4941 1e37a5c2 2019-05-12 jcs case ']':
4942 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
4943 1e37a5c2 2019-05-12 jcs s->diff_context++;
4944 67b5eae1 2021-12-27 naddy s->matched_line = 0;
4945 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
4946 1e37a5c2 2019-05-12 jcs err = create_diff(s);
4947 640cd7ff 2022-06-22 mark } else
4948 640cd7ff 2022-06-22 mark view->count = 0;
4949 1e37a5c2 2019-05-12 jcs break;
4950 1e37a5c2 2019-05-12 jcs case '<':
4951 1e37a5c2 2019-05-12 jcs case ',':
4952 2b3e6702 2022-07-20 mark case 'K':
4953 c0f61fa4 2022-07-11 mark up = 1;
4954 c0f61fa4 2022-07-11 mark /* FALL THROUGH */
4955 c0f61fa4 2022-07-11 mark case '>':
4956 c0f61fa4 2022-07-11 mark case '.':
4957 2b3e6702 2022-07-20 mark case 'J':
4958 c0f61fa4 2022-07-11 mark if (s->parent_view == NULL) {
4959 640cd7ff 2022-06-22 mark view->count = 0;
4960 48ae06ee 2018-10-18 stsp break;
4961 640cd7ff 2022-06-22 mark }
4962 c0f61fa4 2022-07-11 mark s->parent_view->count = view->count;
4963 6524637e 2019-02-21 stsp
4964 c0f61fa4 2022-07-11 mark if (s->parent_view->type == TOG_VIEW_LOG) {
4965 c0f61fa4 2022-07-11 mark ls = &s->parent_view->state.log;
4966 c0f61fa4 2022-07-11 mark old_selected_entry = ls->selected_entry;
4967 15a087fe 2019-02-21 stsp
4968 c0f61fa4 2022-07-11 mark err = input_log_view(NULL, s->parent_view,
4969 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
4970 c0f61fa4 2022-07-11 mark if (err)
4971 c0f61fa4 2022-07-11 mark break;
4972 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
4973 15a087fe 2019-02-21 stsp
4974 c0f61fa4 2022-07-11 mark if (old_selected_entry == ls->selected_entry)
4975 c0f61fa4 2022-07-11 mark break;
4976 15a087fe 2019-02-21 stsp
4977 c0f61fa4 2022-07-11 mark err = set_selected_commit(s, ls->selected_entry);
4978 c0f61fa4 2022-07-11 mark if (err)
4979 c0f61fa4 2022-07-11 mark break;
4980 c0f61fa4 2022-07-11 mark } else if (s->parent_view->type == TOG_VIEW_BLAME) {
4981 c0f61fa4 2022-07-11 mark struct tog_blame_view_state *bs;
4982 c0f61fa4 2022-07-11 mark struct got_object_id *id, *prev_id;
4983 5e224a3e 2019-02-22 stsp
4984 c0f61fa4 2022-07-11 mark bs = &s->parent_view->state.blame;
4985 c0f61fa4 2022-07-11 mark prev_id = get_annotation_for_line(bs->blame.lines,
4986 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->last_diffed_line);
4987 c0f61fa4 2022-07-11 mark
4988 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view,
4989 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
4990 c0f61fa4 2022-07-11 mark if (err)
4991 c0f61fa4 2022-07-11 mark break;
4992 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
4993 5a8b5076 2020-12-05 stsp
4994 c0f61fa4 2022-07-11 mark if (prev_id == NULL)
4995 c0f61fa4 2022-07-11 mark break;
4996 c0f61fa4 2022-07-11 mark id = get_selected_commit_id(bs->blame.lines,
4997 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->first_displayed_line,
4998 c0f61fa4 2022-07-11 mark bs->selected_line);
4999 c0f61fa4 2022-07-11 mark if (id == NULL)
5000 c0f61fa4 2022-07-11 mark break;
5001 15a087fe 2019-02-21 stsp
5002 c0f61fa4 2022-07-11 mark if (!got_object_id_cmp(prev_id, id))
5003 c0f61fa4 2022-07-11 mark break;
5004 15a087fe 2019-02-21 stsp
5005 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5006 c0f61fa4 2022-07-11 mark if (err)
5007 c0f61fa4 2022-07-11 mark break;
5008 c0f61fa4 2022-07-11 mark }
5009 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5010 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5011 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5012 145b6838 2022-06-16 stsp view->x = 0;
5013 1e37a5c2 2019-05-12 jcs
5014 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5015 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5016 1e37a5c2 2019-05-12 jcs break;
5017 1e37a5c2 2019-05-12 jcs default:
5018 640cd7ff 2022-06-22 mark view->count = 0;
5019 1e37a5c2 2019-05-12 jcs break;
5020 26ed57b2 2018-05-19 stsp }
5021 e5a0f69f 2018-08-18 stsp
5022 bcbd79e2 2018-08-19 stsp return err;
5023 26ed57b2 2018-05-19 stsp }
5024 26ed57b2 2018-05-19 stsp
5025 4ed7e80c 2018-05-20 stsp static const struct got_error *
5026 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5027 9f7d7167 2018-04-29 stsp {
5028 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5029 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5030 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5031 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5032 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5033 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5034 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5035 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5036 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5037 3dbaef42 2020-11-24 stsp const char *errstr;
5038 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5039 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5040 70ac5f84 2019-03-28 stsp
5041 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5042 26ed57b2 2018-05-19 stsp switch (ch) {
5043 64453f7e 2020-11-21 stsp case 'a':
5044 64453f7e 2020-11-21 stsp force_text_diff = 1;
5045 3dbaef42 2020-11-24 stsp break;
5046 3dbaef42 2020-11-24 stsp case 'C':
5047 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5048 3dbaef42 2020-11-24 stsp &errstr);
5049 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5050 5a20d08d 2022-02-09 op errx(1, "number of context lines is %s: %s",
5051 5a20d08d 2022-02-09 op errstr, errstr);
5052 64453f7e 2020-11-21 stsp break;
5053 09b5bff8 2020-02-23 naddy case 'r':
5054 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5055 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5056 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5057 09b5bff8 2020-02-23 naddy optarg);
5058 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5059 09b5bff8 2020-02-23 naddy break;
5060 3dbaef42 2020-11-24 stsp case 'w':
5061 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5062 3dbaef42 2020-11-24 stsp break;
5063 26ed57b2 2018-05-19 stsp default:
5064 17020d27 2019-03-07 stsp usage_diff();
5065 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5066 26ed57b2 2018-05-19 stsp }
5067 26ed57b2 2018-05-19 stsp }
5068 26ed57b2 2018-05-19 stsp
5069 26ed57b2 2018-05-19 stsp argc -= optind;
5070 26ed57b2 2018-05-19 stsp argv += optind;
5071 26ed57b2 2018-05-19 stsp
5072 26ed57b2 2018-05-19 stsp if (argc == 0) {
5073 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5074 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5075 15a94983 2018-12-23 stsp id_str1 = argv[0];
5076 15a94983 2018-12-23 stsp id_str2 = argv[1];
5077 26ed57b2 2018-05-19 stsp } else
5078 26ed57b2 2018-05-19 stsp usage_diff();
5079 eb6600df 2019-01-04 stsp
5080 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
5081 0ae84acc 2022-06-15 tracey if (error)
5082 0ae84acc 2022-06-15 tracey goto done;
5083 0ae84acc 2022-06-15 tracey
5084 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5085 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5086 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5087 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5088 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5089 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5090 c156c7a4 2020-12-18 stsp goto done;
5091 a273ac94 2020-02-23 naddy if (worktree)
5092 a273ac94 2020-02-23 naddy repo_path =
5093 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5094 a273ac94 2020-02-23 naddy else
5095 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5096 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5097 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5098 c156c7a4 2020-12-18 stsp goto done;
5099 c156c7a4 2020-12-18 stsp }
5100 a273ac94 2020-02-23 naddy }
5101 a273ac94 2020-02-23 naddy
5102 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5103 eb6600df 2019-01-04 stsp if (error)
5104 eb6600df 2019-01-04 stsp goto done;
5105 26ed57b2 2018-05-19 stsp
5106 a273ac94 2020-02-23 naddy init_curses();
5107 a273ac94 2020-02-23 naddy
5108 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5109 51a10b52 2020-12-26 stsp if (error)
5110 51a10b52 2020-12-26 stsp goto done;
5111 51a10b52 2020-12-26 stsp
5112 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
5113 26ed57b2 2018-05-19 stsp if (error)
5114 26ed57b2 2018-05-19 stsp goto done;
5115 26ed57b2 2018-05-19 stsp
5116 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5117 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5118 26ed57b2 2018-05-19 stsp if (error)
5119 26ed57b2 2018-05-19 stsp goto done;
5120 26ed57b2 2018-05-19 stsp
5121 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
5122 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5123 26ed57b2 2018-05-19 stsp if (error)
5124 26ed57b2 2018-05-19 stsp goto done;
5125 26ed57b2 2018-05-19 stsp
5126 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5127 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5128 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5129 ea5e7bb5 2018-08-01 stsp goto done;
5130 ea5e7bb5 2018-08-01 stsp }
5131 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5132 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5133 5dc9f4bc 2018-08-04 stsp if (error)
5134 5dc9f4bc 2018-08-04 stsp goto done;
5135 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5136 26ed57b2 2018-05-19 stsp done:
5137 3dbaef42 2020-11-24 stsp free(label1);
5138 3dbaef42 2020-11-24 stsp free(label2);
5139 c02c541e 2019-03-29 stsp free(repo_path);
5140 a273ac94 2020-02-23 naddy free(cwd);
5141 1d0f4054 2021-06-17 stsp if (repo) {
5142 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5143 1d0f4054 2021-06-17 stsp if (error == NULL)
5144 1d0f4054 2021-06-17 stsp error = close_err;
5145 1d0f4054 2021-06-17 stsp }
5146 a273ac94 2020-02-23 naddy if (worktree)
5147 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5148 0ae84acc 2022-06-15 tracey if (pack_fds) {
5149 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5150 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
5151 0ae84acc 2022-06-15 tracey if (error == NULL)
5152 0ae84acc 2022-06-15 tracey error = pack_err;
5153 0ae84acc 2022-06-15 tracey }
5154 51a10b52 2020-12-26 stsp tog_free_refs();
5155 26ed57b2 2018-05-19 stsp return error;
5156 9f7d7167 2018-04-29 stsp }
5157 9f7d7167 2018-04-29 stsp
5158 4ed7e80c 2018-05-20 stsp __dead static void
5159 9f7d7167 2018-04-29 stsp usage_blame(void)
5160 9f7d7167 2018-04-29 stsp {
5161 80ddbec8 2018-04-29 stsp endwin();
5162 87411fa9 2022-06-16 stsp fprintf(stderr,
5163 87411fa9 2022-06-16 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
5164 9f7d7167 2018-04-29 stsp getprogname());
5165 9f7d7167 2018-04-29 stsp exit(1);
5166 9f7d7167 2018-04-29 stsp }
5167 84451b3e 2018-07-10 stsp
5168 84451b3e 2018-07-10 stsp struct tog_blame_line {
5169 84451b3e 2018-07-10 stsp int annotated;
5170 84451b3e 2018-07-10 stsp struct got_object_id *id;
5171 84451b3e 2018-07-10 stsp };
5172 9f7d7167 2018-04-29 stsp
5173 4ed7e80c 2018-05-20 stsp static const struct got_error *
5174 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5175 84451b3e 2018-07-10 stsp {
5176 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5177 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5178 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5179 84451b3e 2018-07-10 stsp const struct got_error *err;
5180 4cb9d869 2022-06-16 stsp int lineno = 0, nprinted = 0;
5181 826082fe 2020-12-10 stsp char *line = NULL;
5182 826082fe 2020-12-10 stsp size_t linesize = 0;
5183 826082fe 2020-12-10 stsp ssize_t linelen;
5184 84451b3e 2018-07-10 stsp wchar_t *wline;
5185 27a741e5 2019-09-11 stsp int width;
5186 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5187 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5188 ab089a2a 2018-07-12 stsp char *id_str;
5189 11b20872 2019-11-08 stsp struct tog_color *tc;
5190 ab089a2a 2018-07-12 stsp
5191 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &s->blamed_commit->id);
5192 ab089a2a 2018-07-12 stsp if (err)
5193 ab089a2a 2018-07-12 stsp return err;
5194 84451b3e 2018-07-10 stsp
5195 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5196 f7d12f7e 2018-08-01 stsp werase(view->window);
5197 84451b3e 2018-07-10 stsp
5198 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5199 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5200 ab089a2a 2018-07-12 stsp free(id_str);
5201 ab089a2a 2018-07-12 stsp return err;
5202 ab089a2a 2018-07-12 stsp }
5203 ab089a2a 2018-07-12 stsp
5204 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5205 ab089a2a 2018-07-12 stsp free(line);
5206 2550e4c3 2018-07-13 stsp line = NULL;
5207 1cae65b4 2019-09-22 stsp if (err)
5208 1cae65b4 2019-09-22 stsp return err;
5209 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5210 a3404814 2018-09-02 stsp wstandout(view->window);
5211 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5212 11b20872 2019-11-08 stsp if (tc)
5213 11b20872 2019-11-08 stsp wattr_on(view->window,
5214 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5215 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5216 11b20872 2019-11-08 stsp if (tc)
5217 11b20872 2019-11-08 stsp wattr_off(view->window,
5218 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5219 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5220 a3404814 2018-09-02 stsp wstandend(view->window);
5221 2550e4c3 2018-07-13 stsp free(wline);
5222 2550e4c3 2018-07-13 stsp wline = NULL;
5223 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5224 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5225 ab089a2a 2018-07-12 stsp
5226 94b80cfa 2022-08-01 mark if (view->gline > blame->nlines)
5227 94b80cfa 2022-08-01 mark view->gline = blame->nlines;
5228 94b80cfa 2022-08-01 mark
5229 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5230 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5231 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5232 ab089a2a 2018-07-12 stsp free(id_str);
5233 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5234 ab089a2a 2018-07-12 stsp }
5235 ab089a2a 2018-07-12 stsp free(id_str);
5236 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5237 3f60a8ef 2018-07-10 stsp free(line);
5238 2550e4c3 2018-07-13 stsp line = NULL;
5239 3f60a8ef 2018-07-10 stsp if (err)
5240 3f60a8ef 2018-07-10 stsp return err;
5241 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5242 2550e4c3 2018-07-13 stsp free(wline);
5243 2550e4c3 2018-07-13 stsp wline = NULL;
5244 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5245 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5246 3f60a8ef 2018-07-10 stsp
5247 4f7c3e5e 2020-12-01 naddy s->eof = 0;
5248 145b6838 2022-06-16 stsp view->maxx = 0;
5249 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
5250 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
5251 826082fe 2020-12-10 stsp if (linelen == -1) {
5252 826082fe 2020-12-10 stsp if (feof(blame->f)) {
5253 826082fe 2020-12-10 stsp s->eof = 1;
5254 826082fe 2020-12-10 stsp break;
5255 826082fe 2020-12-10 stsp }
5256 84451b3e 2018-07-10 stsp free(line);
5257 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
5258 84451b3e 2018-07-10 stsp }
5259 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
5260 94b80cfa 2022-08-01 mark continue;
5261 94b80cfa 2022-08-01 mark if (view->gline && !gotoline(view, &lineno, &nprinted))
5262 826082fe 2020-12-10 stsp continue;
5263 1853e0f4 2022-06-16 stsp
5264 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
5265 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5266 1853e0f4 2022-06-16 stsp if (err) {
5267 1853e0f4 2022-06-16 stsp free(line);
5268 1853e0f4 2022-06-16 stsp return err;
5269 1853e0f4 2022-06-16 stsp }
5270 1853e0f4 2022-06-16 stsp free(wline);
5271 1853e0f4 2022-06-16 stsp wline = NULL;
5272 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
5273 84451b3e 2018-07-10 stsp
5274 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5275 f7d12f7e 2018-08-01 stsp wstandout(view->window);
5276 b700b5d6 2018-07-10 stsp
5277 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
5278 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
5279 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
5280 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5281 c0f61fa4 2022-07-11 mark !(nprinted == s->selected_line - 1)) {
5282 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5283 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
5284 8d0fe45a 2019-08-12 stsp char *id_str;
5285 87411fa9 2022-06-16 stsp err = got_object_id_str(&id_str,
5286 87411fa9 2022-06-16 stsp blame_line->id);
5287 8d0fe45a 2019-08-12 stsp if (err) {
5288 8d0fe45a 2019-08-12 stsp free(line);
5289 8d0fe45a 2019-08-12 stsp return err;
5290 8d0fe45a 2019-08-12 stsp }
5291 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5292 11b20872 2019-11-08 stsp if (tc)
5293 11b20872 2019-11-08 stsp wattr_on(view->window,
5294 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5295 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
5296 11b20872 2019-11-08 stsp if (tc)
5297 11b20872 2019-11-08 stsp wattr_off(view->window,
5298 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5299 8d0fe45a 2019-08-12 stsp free(id_str);
5300 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
5301 8d0fe45a 2019-08-12 stsp } else {
5302 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5303 8d0fe45a 2019-08-12 stsp prev_id = NULL;
5304 84451b3e 2018-07-10 stsp }
5305 ee41ec32 2018-07-10 stsp } else {
5306 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5307 ee41ec32 2018-07-10 stsp prev_id = NULL;
5308 ee41ec32 2018-07-10 stsp }
5309 84451b3e 2018-07-10 stsp
5310 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5311 f7d12f7e 2018-08-01 stsp wstandend(view->window);
5312 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5313 27a741e5 2019-09-11 stsp
5314 41605754 2020-11-12 stsp if (view->ncols <= 9) {
5315 41605754 2020-11-12 stsp width = 9;
5316 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
5317 4f7c3e5e 2020-12-01 naddy s->matched_line &&
5318 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5319 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
5320 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
5321 41605754 2020-11-12 stsp if (err) {
5322 41605754 2020-11-12 stsp free(line);
5323 41605754 2020-11-12 stsp return err;
5324 41605754 2020-11-12 stsp }
5325 41605754 2020-11-12 stsp width += 9;
5326 41605754 2020-11-12 stsp } else {
5327 4cb9d869 2022-06-16 stsp int skip;
5328 4cb9d869 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
5329 4cb9d869 2022-06-16 stsp view->x, view->ncols - 9, 9, 1);
5330 4cb9d869 2022-06-16 stsp if (err) {
5331 4cb9d869 2022-06-16 stsp free(line);
5332 4cb9d869 2022-06-16 stsp return err;
5333 145b6838 2022-06-16 stsp }
5334 4cb9d869 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
5335 a75b3e2d 2022-06-16 stsp width += 9;
5336 41605754 2020-11-12 stsp free(wline);
5337 41605754 2020-11-12 stsp wline = NULL;
5338 41605754 2020-11-12 stsp }
5339 41605754 2020-11-12 stsp
5340 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
5341 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
5342 84451b3e 2018-07-10 stsp if (++nprinted == 1)
5343 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
5344 84451b3e 2018-07-10 stsp }
5345 826082fe 2020-12-10 stsp free(line);
5346 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
5347 84451b3e 2018-07-10 stsp
5348 9b058f45 2022-06-30 mark view_border(view);
5349 84451b3e 2018-07-10 stsp
5350 84451b3e 2018-07-10 stsp return NULL;
5351 84451b3e 2018-07-10 stsp }
5352 84451b3e 2018-07-10 stsp
5353 84451b3e 2018-07-10 stsp static const struct got_error *
5354 392891ce 2022-04-07 stsp blame_cb(void *arg, int nlines, int lineno,
5355 392891ce 2022-04-07 stsp struct got_commit_object *commit, struct got_object_id *id)
5356 84451b3e 2018-07-10 stsp {
5357 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
5358 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
5359 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
5360 1a76625f 2018-10-22 stsp int errcode;
5361 84451b3e 2018-07-10 stsp
5362 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
5363 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
5364 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
5365 84451b3e 2018-07-10 stsp
5366 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5367 1a76625f 2018-10-22 stsp if (errcode)
5368 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
5369 84451b3e 2018-07-10 stsp
5370 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
5371 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
5372 d68a0a7d 2018-07-10 stsp goto done;
5373 d68a0a7d 2018-07-10 stsp }
5374 d68a0a7d 2018-07-10 stsp
5375 d68a0a7d 2018-07-10 stsp if (lineno == -1)
5376 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
5377 d68a0a7d 2018-07-10 stsp
5378 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
5379 d68a0a7d 2018-07-10 stsp if (line->annotated)
5380 d68a0a7d 2018-07-10 stsp goto done;
5381 d68a0a7d 2018-07-10 stsp
5382 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
5383 84451b3e 2018-07-10 stsp if (line->id == NULL) {
5384 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5385 84451b3e 2018-07-10 stsp goto done;
5386 84451b3e 2018-07-10 stsp }
5387 84451b3e 2018-07-10 stsp line->annotated = 1;
5388 84451b3e 2018-07-10 stsp done:
5389 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5390 1a76625f 2018-10-22 stsp if (errcode)
5391 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5392 84451b3e 2018-07-10 stsp return err;
5393 84451b3e 2018-07-10 stsp }
5394 84451b3e 2018-07-10 stsp
5395 84451b3e 2018-07-10 stsp static void *
5396 84451b3e 2018-07-10 stsp blame_thread(void *arg)
5397 84451b3e 2018-07-10 stsp {
5398 1d0f4054 2021-06-17 stsp const struct got_error *err, *close_err;
5399 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
5400 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
5401 e6e73e55 2022-06-30 tracey int errcode, fd1 = -1, fd2 = -1;
5402 e6e73e55 2022-06-30 tracey FILE *f1 = NULL, *f2 = NULL;
5403 1b484788 2022-06-28 tracey
5404 e6e73e55 2022-06-30 tracey fd1 = got_opentempfd();
5405 e6e73e55 2022-06-30 tracey if (fd1 == -1)
5406 1b484788 2022-06-28 tracey return (void *)got_error_from_errno("got_opentempfd");
5407 e6e73e55 2022-06-30 tracey
5408 e6e73e55 2022-06-30 tracey fd2 = got_opentempfd();
5409 e6e73e55 2022-06-30 tracey if (fd2 == -1) {
5410 e6e73e55 2022-06-30 tracey err = got_error_from_errno("got_opentempfd");
5411 e6e73e55 2022-06-30 tracey goto done;
5412 e6e73e55 2022-06-30 tracey }
5413 18430de3 2018-07-10 stsp
5414 e6e73e55 2022-06-30 tracey f1 = got_opentemp();
5415 e6e73e55 2022-06-30 tracey if (f1 == NULL) {
5416 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5417 e6e73e55 2022-06-30 tracey goto done;
5418 e6e73e55 2022-06-30 tracey }
5419 e6e73e55 2022-06-30 tracey f2 = got_opentemp();
5420 e6e73e55 2022-06-30 tracey if (f2 == NULL) {
5421 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5422 e6e73e55 2022-06-30 tracey goto done;
5423 e6e73e55 2022-06-30 tracey }
5424 e6e73e55 2022-06-30 tracey
5425 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
5426 61266923 2020-01-14 stsp if (err)
5427 e6e73e55 2022-06-30 tracey goto done;
5428 61266923 2020-01-14 stsp
5429 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
5430 917d79a7 2022-07-01 stsp tog_diff_algo, blame_cb, ta->cb_args,
5431 4b752015 2022-06-30 stsp ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5432 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
5433 fc06ba56 2019-08-22 stsp err = NULL;
5434 18430de3 2018-07-10 stsp
5435 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5436 e6e73e55 2022-06-30 tracey if (errcode) {
5437 e6e73e55 2022-06-30 tracey err = got_error_set_errno(errcode, "pthread_mutex_lock");
5438 e6e73e55 2022-06-30 tracey goto done;
5439 e6e73e55 2022-06-30 tracey }
5440 18430de3 2018-07-10 stsp
5441 1d0f4054 2021-06-17 stsp close_err = got_repo_close(ta->repo);
5442 1d0f4054 2021-06-17 stsp if (err == NULL)
5443 1d0f4054 2021-06-17 stsp err = close_err;
5444 c9beca56 2018-07-22 stsp ta->repo = NULL;
5445 c9beca56 2018-07-22 stsp *ta->complete = 1;
5446 18430de3 2018-07-10 stsp
5447 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5448 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
5449 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5450 18430de3 2018-07-10 stsp
5451 e6e73e55 2022-06-30 tracey done:
5452 e6e73e55 2022-06-30 tracey if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5453 1b484788 2022-06-28 tracey err = got_error_from_errno("close");
5454 e6e73e55 2022-06-30 tracey if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5455 e6e73e55 2022-06-30 tracey err = got_error_from_errno("close");
5456 e6e73e55 2022-06-30 tracey if (f1 && fclose(f1) == EOF && err == NULL)
5457 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5458 e6e73e55 2022-06-30 tracey if (f2 && fclose(f2) == EOF && err == NULL)
5459 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5460 1b484788 2022-06-28 tracey
5461 18430de3 2018-07-10 stsp return (void *)err;
5462 84451b3e 2018-07-10 stsp }
5463 84451b3e 2018-07-10 stsp
5464 245d91c1 2018-07-12 stsp static struct got_object_id *
5465 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5466 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
5467 245d91c1 2018-07-12 stsp {
5468 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
5469 8d0fe45a 2019-08-12 stsp
5470 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
5471 8d0fe45a 2019-08-12 stsp return NULL;
5472 b880a918 2018-07-10 stsp
5473 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
5474 c0f61fa4 2022-07-11 mark if (!line->annotated)
5475 c0f61fa4 2022-07-11 mark return NULL;
5476 c0f61fa4 2022-07-11 mark
5477 c0f61fa4 2022-07-11 mark return line->id;
5478 c0f61fa4 2022-07-11 mark }
5479 c0f61fa4 2022-07-11 mark
5480 c0f61fa4 2022-07-11 mark static struct got_object_id *
5481 c0f61fa4 2022-07-11 mark get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5482 c0f61fa4 2022-07-11 mark int lineno)
5483 c0f61fa4 2022-07-11 mark {
5484 c0f61fa4 2022-07-11 mark struct tog_blame_line *line;
5485 c0f61fa4 2022-07-11 mark
5486 c0f61fa4 2022-07-11 mark if (nlines <= 0 || lineno >= nlines)
5487 c0f61fa4 2022-07-11 mark return NULL;
5488 c0f61fa4 2022-07-11 mark
5489 c0f61fa4 2022-07-11 mark line = &lines[lineno - 1];
5490 245d91c1 2018-07-12 stsp if (!line->annotated)
5491 245d91c1 2018-07-12 stsp return NULL;
5492 245d91c1 2018-07-12 stsp
5493 245d91c1 2018-07-12 stsp return line->id;
5494 b880a918 2018-07-10 stsp }
5495 245d91c1 2018-07-12 stsp
5496 b880a918 2018-07-10 stsp static const struct got_error *
5497 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
5498 a70480e0 2018-06-23 stsp {
5499 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
5500 245d91c1 2018-07-12 stsp int i;
5501 245d91c1 2018-07-12 stsp
5502 245d91c1 2018-07-12 stsp if (blame->thread) {
5503 1a76625f 2018-10-22 stsp int errcode;
5504 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5505 1a76625f 2018-10-22 stsp if (errcode)
5506 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5507 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
5508 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
5509 1a76625f 2018-10-22 stsp if (errcode)
5510 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
5511 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5512 1a76625f 2018-10-22 stsp if (errcode)
5513 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5514 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
5515 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
5516 245d91c1 2018-07-12 stsp err = NULL;
5517 245d91c1 2018-07-12 stsp blame->thread = NULL;
5518 245d91c1 2018-07-12 stsp }
5519 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
5520 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
5521 1d0f4054 2021-06-17 stsp close_err = got_repo_close(blame->thread_args.repo);
5522 1d0f4054 2021-06-17 stsp if (err == NULL)
5523 1d0f4054 2021-06-17 stsp err = close_err;
5524 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
5525 245d91c1 2018-07-12 stsp }
5526 245d91c1 2018-07-12 stsp if (blame->f) {
5527 56b63ca4 2021-01-22 stsp if (fclose(blame->f) == EOF && err == NULL)
5528 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
5529 245d91c1 2018-07-12 stsp blame->f = NULL;
5530 245d91c1 2018-07-12 stsp }
5531 57670559 2018-12-23 stsp if (blame->lines) {
5532 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
5533 57670559 2018-12-23 stsp free(blame->lines[i].id);
5534 57670559 2018-12-23 stsp free(blame->lines);
5535 57670559 2018-12-23 stsp blame->lines = NULL;
5536 57670559 2018-12-23 stsp }
5537 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
5538 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
5539 0ae84acc 2022-06-15 tracey if (blame->pack_fds) {
5540 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5541 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(blame->pack_fds);
5542 0ae84acc 2022-06-15 tracey if (err == NULL)
5543 0ae84acc 2022-06-15 tracey err = pack_err;
5544 8b195234 2022-06-15 stsp blame->pack_fds = NULL;
5545 0ae84acc 2022-06-15 tracey }
5546 245d91c1 2018-07-12 stsp return err;
5547 245d91c1 2018-07-12 stsp }
5548 245d91c1 2018-07-12 stsp
5549 245d91c1 2018-07-12 stsp static const struct got_error *
5550 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
5551 fc06ba56 2019-08-22 stsp {
5552 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
5553 fc06ba56 2019-08-22 stsp int *done = arg;
5554 fc06ba56 2019-08-22 stsp int errcode;
5555 fc06ba56 2019-08-22 stsp
5556 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5557 fc06ba56 2019-08-22 stsp if (errcode)
5558 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5559 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
5560 fc06ba56 2019-08-22 stsp
5561 fc06ba56 2019-08-22 stsp if (*done)
5562 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
5563 fc06ba56 2019-08-22 stsp
5564 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5565 fc06ba56 2019-08-22 stsp if (errcode)
5566 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5567 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
5568 fc06ba56 2019-08-22 stsp
5569 fc06ba56 2019-08-22 stsp return err;
5570 fc06ba56 2019-08-22 stsp }
5571 fc06ba56 2019-08-22 stsp
5572 fc06ba56 2019-08-22 stsp static const struct got_error *
5573 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
5574 245d91c1 2018-07-12 stsp {
5575 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5576 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5577 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
5578 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
5579 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
5580 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
5581 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
5582 eb81bc23 2022-06-28 tracey int obj_type, fd = -1;
5583 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5584 a70480e0 2018-06-23 stsp
5585 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&commit, s->repo,
5586 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id);
5587 27d434c2 2018-09-15 stsp if (err)
5588 15a94983 2018-12-23 stsp return err;
5589 eb81bc23 2022-06-28 tracey
5590 eb81bc23 2022-06-28 tracey fd = got_opentempfd();
5591 eb81bc23 2022-06-28 tracey if (fd == -1) {
5592 eb81bc23 2022-06-28 tracey err = got_error_from_errno("got_opentempfd");
5593 eb81bc23 2022-06-28 tracey goto done;
5594 eb81bc23 2022-06-28 tracey }
5595 a44927cc 2022-04-07 stsp
5596 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
5597 a44927cc 2022-04-07 stsp if (err)
5598 a44927cc 2022-04-07 stsp goto done;
5599 27d434c2 2018-09-15 stsp
5600 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
5601 84451b3e 2018-07-10 stsp if (err)
5602 84451b3e 2018-07-10 stsp goto done;
5603 27d434c2 2018-09-15 stsp
5604 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5605 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5606 84451b3e 2018-07-10 stsp goto done;
5607 84451b3e 2018-07-10 stsp }
5608 a70480e0 2018-06-23 stsp
5609 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
5610 a70480e0 2018-06-23 stsp if (err)
5611 a70480e0 2018-06-23 stsp goto done;
5612 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
5613 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
5614 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
5615 84451b3e 2018-07-10 stsp goto done;
5616 84451b3e 2018-07-10 stsp }
5617 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
5618 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
5619 1fddf795 2021-01-20 stsp if (err)
5620 1fddf795 2021-01-20 stsp goto done;
5621 1fddf795 2021-01-20 stsp if (blame->nlines == 0) {
5622 1fddf795 2021-01-20 stsp s->blame_complete = 1;
5623 84451b3e 2018-07-10 stsp goto done;
5624 1fddf795 2021-01-20 stsp }
5625 b02560ec 2019-08-19 stsp
5626 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
5627 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
5628 b02560ec 2019-08-19 stsp blame->nlines--;
5629 a70480e0 2018-06-23 stsp
5630 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
5631 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
5632 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
5633 84451b3e 2018-07-10 stsp goto done;
5634 84451b3e 2018-07-10 stsp }
5635 a70480e0 2018-06-23 stsp
5636 0ae84acc 2022-06-15 tracey err = got_repo_pack_fds_open(&pack_fds);
5637 bd24772e 2018-07-11 stsp if (err)
5638 bd24772e 2018-07-11 stsp goto done;
5639 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
5640 0ae84acc 2022-06-15 tracey pack_fds);
5641 0ae84acc 2022-06-15 tracey if (err)
5642 0ae84acc 2022-06-15 tracey goto done;
5643 bd24772e 2018-07-11 stsp
5644 0ae84acc 2022-06-15 tracey blame->pack_fds = pack_fds;
5645 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
5646 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
5647 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
5648 d7b5a0e8 2022-04-20 stsp blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
5649 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
5650 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5651 245d91c1 2018-07-12 stsp goto done;
5652 245d91c1 2018-07-12 stsp }
5653 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
5654 245d91c1 2018-07-12 stsp
5655 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
5656 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
5657 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
5658 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
5659 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
5660 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
5661 a5388363 2020-12-01 naddy s->blame_complete = 0;
5662 f5a09613 2020-12-13 naddy
5663 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
5664 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
5665 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
5666 f5a09613 2020-12-13 naddy s->selected_line = 1;
5667 f5a09613 2020-12-13 naddy }
5668 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5669 245d91c1 2018-07-12 stsp
5670 245d91c1 2018-07-12 stsp done:
5671 a44927cc 2022-04-07 stsp if (commit)
5672 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
5673 eb81bc23 2022-06-28 tracey if (fd != -1 && close(fd) == -1 && err == NULL)
5674 eb81bc23 2022-06-28 tracey err = got_error_from_errno("close");
5675 245d91c1 2018-07-12 stsp if (blob)
5676 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
5677 27d434c2 2018-09-15 stsp free(obj_id);
5678 245d91c1 2018-07-12 stsp if (err)
5679 245d91c1 2018-07-12 stsp stop_blame(blame);
5680 245d91c1 2018-07-12 stsp return err;
5681 245d91c1 2018-07-12 stsp }
5682 245d91c1 2018-07-12 stsp
5683 245d91c1 2018-07-12 stsp static const struct got_error *
5684 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
5685 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5686 245d91c1 2018-07-12 stsp {
5687 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
5688 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
5689 dbc6a6b6 2018-07-12 stsp
5690 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->blamed_commits);
5691 245d91c1 2018-07-12 stsp
5692 c4843652 2019-08-12 stsp s->path = strdup(path);
5693 c4843652 2019-08-12 stsp if (s->path == NULL)
5694 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
5695 c4843652 2019-08-12 stsp
5696 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
5697 c4843652 2019-08-12 stsp if (err) {
5698 c4843652 2019-08-12 stsp free(s->path);
5699 7cbe629d 2018-08-04 stsp return err;
5700 c4843652 2019-08-12 stsp }
5701 245d91c1 2018-07-12 stsp
5702 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
5703 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
5704 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
5705 fb2756b9 2018-08-04 stsp s->selected_line = 1;
5706 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
5707 fb2756b9 2018-08-04 stsp s->repo = repo;
5708 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
5709 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
5710 7cbe629d 2018-08-04 stsp
5711 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
5712 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5713 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
5714 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
5715 11b20872 2019-11-08 stsp if (err)
5716 11b20872 2019-11-08 stsp return err;
5717 11b20872 2019-11-08 stsp }
5718 11b20872 2019-11-08 stsp
5719 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
5720 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
5721 917d79a7 2022-07-01 stsp view->reset = reset_blame_view;
5722 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
5723 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
5724 6c4c42e0 2019-06-24 stsp view->search_next = search_next_blame_view;
5725 e5a0f69f 2018-08-18 stsp
5726 a5388363 2020-12-01 naddy return run_blame(view);
5727 7cbe629d 2018-08-04 stsp }
5728 7cbe629d 2018-08-04 stsp
5729 e5a0f69f 2018-08-18 stsp static const struct got_error *
5730 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
5731 7cbe629d 2018-08-04 stsp {
5732 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
5733 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
5734 7cbe629d 2018-08-04 stsp
5735 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
5736 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
5737 e5a0f69f 2018-08-18 stsp
5738 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&s->blamed_commits)) {
5739 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
5740 dbdddfee 2021-06-23 naddy blamed_commit = STAILQ_FIRST(&s->blamed_commits);
5741 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
5742 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
5743 7cbe629d 2018-08-04 stsp }
5744 e5a0f69f 2018-08-18 stsp
5745 e5a0f69f 2018-08-18 stsp free(s->path);
5746 11b20872 2019-11-08 stsp free_colors(&s->colors);
5747 e5a0f69f 2018-08-18 stsp return err;
5748 7cbe629d 2018-08-04 stsp }
5749 7cbe629d 2018-08-04 stsp
5750 7cbe629d 2018-08-04 stsp static const struct got_error *
5751 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
5752 6c4c42e0 2019-06-24 stsp {
5753 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
5754 6c4c42e0 2019-06-24 stsp
5755 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
5756 6c4c42e0 2019-06-24 stsp return NULL;
5757 6c4c42e0 2019-06-24 stsp }
5758 6c4c42e0 2019-06-24 stsp
5759 6c4c42e0 2019-06-24 stsp static const struct got_error *
5760 6c4c42e0 2019-06-24 stsp search_next_blame_view(struct tog_view *view)
5761 6c4c42e0 2019-06-24 stsp {
5762 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
5763 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
5764 6c4c42e0 2019-06-24 stsp int lineno;
5765 cb713507 2022-06-16 stsp char *line = NULL;
5766 826082fe 2020-12-10 stsp size_t linesize = 0;
5767 826082fe 2020-12-10 stsp ssize_t linelen;
5768 6c4c42e0 2019-06-24 stsp
5769 6c4c42e0 2019-06-24 stsp if (!view->searching) {
5770 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5771 6c4c42e0 2019-06-24 stsp return NULL;
5772 6c4c42e0 2019-06-24 stsp }
5773 6c4c42e0 2019-06-24 stsp
5774 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
5775 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5776 2246482e 2019-06-25 stsp lineno = s->matched_line + 1;
5777 6c4c42e0 2019-06-24 stsp else
5778 2246482e 2019-06-25 stsp lineno = s->matched_line - 1;
5779 487cd7d2 2021-12-17 stsp } else
5780 487cd7d2 2021-12-17 stsp lineno = s->first_displayed_line - 1 + s->selected_line;
5781 6c4c42e0 2019-06-24 stsp
5782 6c4c42e0 2019-06-24 stsp while (1) {
5783 6c4c42e0 2019-06-24 stsp off_t offset;
5784 6c4c42e0 2019-06-24 stsp
5785 6c4c42e0 2019-06-24 stsp if (lineno <= 0 || lineno > s->blame.nlines) {
5786 6c4c42e0 2019-06-24 stsp if (s->matched_line == 0) {
5787 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5788 6c4c42e0 2019-06-24 stsp break;
5789 6c4c42e0 2019-06-24 stsp }
5790 2246482e 2019-06-25 stsp
5791 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5792 6c4c42e0 2019-06-24 stsp lineno = 1;
5793 6c4c42e0 2019-06-24 stsp else
5794 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
5795 6c4c42e0 2019-06-24 stsp }
5796 6c4c42e0 2019-06-24 stsp
5797 6c4c42e0 2019-06-24 stsp offset = s->blame.line_offsets[lineno - 1];
5798 6c4c42e0 2019-06-24 stsp if (fseeko(s->blame.f, offset, SEEK_SET) != 0) {
5799 6c4c42e0 2019-06-24 stsp free(line);
5800 6c4c42e0 2019-06-24 stsp return got_error_from_errno("fseeko");
5801 6c4c42e0 2019-06-24 stsp }
5802 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->blame.f);
5803 cb713507 2022-06-16 stsp if (linelen != -1) {
5804 cb713507 2022-06-16 stsp char *exstr;
5805 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
5806 cb713507 2022-06-16 stsp if (err)
5807 cb713507 2022-06-16 stsp break;
5808 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
5809 cb713507 2022-06-16 stsp &view->regmatch)) {
5810 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5811 cb713507 2022-06-16 stsp s->matched_line = lineno;
5812 cb713507 2022-06-16 stsp free(exstr);
5813 cb713507 2022-06-16 stsp break;
5814 cb713507 2022-06-16 stsp }
5815 cb713507 2022-06-16 stsp free(exstr);
5816 6c4c42e0 2019-06-24 stsp }
5817 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5818 6c4c42e0 2019-06-24 stsp lineno++;
5819 6c4c42e0 2019-06-24 stsp else
5820 6c4c42e0 2019-06-24 stsp lineno--;
5821 6c4c42e0 2019-06-24 stsp }
5822 826082fe 2020-12-10 stsp free(line);
5823 6c4c42e0 2019-06-24 stsp
5824 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
5825 6c4c42e0 2019-06-24 stsp s->first_displayed_line = s->matched_line;
5826 6c4c42e0 2019-06-24 stsp s->selected_line = 1;
5827 6c4c42e0 2019-06-24 stsp }
5828 6c4c42e0 2019-06-24 stsp
5829 145b6838 2022-06-16 stsp return err;
5830 6c4c42e0 2019-06-24 stsp }
5831 6c4c42e0 2019-06-24 stsp
5832 6c4c42e0 2019-06-24 stsp static const struct got_error *
5833 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
5834 7cbe629d 2018-08-04 stsp {
5835 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
5836 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
5837 2b380cc8 2018-10-24 stsp int errcode;
5838 2b380cc8 2018-10-24 stsp
5839 1fddf795 2021-01-20 stsp if (s->blame.thread == NULL && !s->blame_complete) {
5840 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
5841 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
5842 2b380cc8 2018-10-24 stsp if (errcode)
5843 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
5844 51fe7530 2019-08-19 stsp
5845 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
5846 2b380cc8 2018-10-24 stsp }
5847 e5a0f69f 2018-08-18 stsp
5848 51fe7530 2019-08-19 stsp if (s->blame_complete)
5849 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
5850 51fe7530 2019-08-19 stsp
5851 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
5852 e5a0f69f 2018-08-18 stsp
5853 9b058f45 2022-06-30 mark view_border(view);
5854 e5a0f69f 2018-08-18 stsp return err;
5855 e5a0f69f 2018-08-18 stsp }
5856 e5a0f69f 2018-08-18 stsp
5857 e5a0f69f 2018-08-18 stsp static const struct got_error *
5858 05f04cdf 2022-07-20 mark log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
5859 05f04cdf 2022-07-20 mark struct got_repository *repo, struct got_object_id *id)
5860 05f04cdf 2022-07-20 mark {
5861 05f04cdf 2022-07-20 mark struct tog_view *log_view;
5862 05f04cdf 2022-07-20 mark const struct got_error *err = NULL;
5863 05f04cdf 2022-07-20 mark
5864 05f04cdf 2022-07-20 mark *new_view = NULL;
5865 05f04cdf 2022-07-20 mark
5866 05f04cdf 2022-07-20 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
5867 05f04cdf 2022-07-20 mark if (log_view == NULL)
5868 05f04cdf 2022-07-20 mark return got_error_from_errno("view_open");
5869 05f04cdf 2022-07-20 mark
5870 05f04cdf 2022-07-20 mark err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
5871 05f04cdf 2022-07-20 mark if (err)
5872 05f04cdf 2022-07-20 mark view_close(log_view);
5873 05f04cdf 2022-07-20 mark else
5874 05f04cdf 2022-07-20 mark *new_view = log_view;
5875 05f04cdf 2022-07-20 mark
5876 05f04cdf 2022-07-20 mark return err;
5877 05f04cdf 2022-07-20 mark }
5878 05f04cdf 2022-07-20 mark
5879 05f04cdf 2022-07-20 mark static const struct got_error *
5880 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
5881 e5a0f69f 2018-08-18 stsp {
5882 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
5883 136e2bd4 2022-07-23 mark struct tog_view *diff_view;
5884 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
5885 9b058f45 2022-06-30 mark int eos, nscroll, begin_y = 0, begin_x = 0;
5886 9b058f45 2022-06-30 mark
5887 9b058f45 2022-06-30 mark eos = nscroll = view->nlines - 2;
5888 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
5889 9b058f45 2022-06-30 mark --eos; /* border */
5890 7cbe629d 2018-08-04 stsp
5891 e5a0f69f 2018-08-18 stsp switch (ch) {
5892 145b6838 2022-06-16 stsp case '0':
5893 145b6838 2022-06-16 stsp view->x = 0;
5894 145b6838 2022-06-16 stsp break;
5895 145b6838 2022-06-16 stsp case '$':
5896 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
5897 640cd7ff 2022-06-22 mark view->count = 0;
5898 145b6838 2022-06-16 stsp break;
5899 145b6838 2022-06-16 stsp case KEY_RIGHT:
5900 145b6838 2022-06-16 stsp case 'l':
5901 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
5902 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
5903 640cd7ff 2022-06-22 mark else
5904 640cd7ff 2022-06-22 mark view->count = 0;
5905 145b6838 2022-06-16 stsp break;
5906 145b6838 2022-06-16 stsp case KEY_LEFT:
5907 145b6838 2022-06-16 stsp case 'h':
5908 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
5909 640cd7ff 2022-06-22 mark if (view->x <= 0)
5910 640cd7ff 2022-06-22 mark view->count = 0;
5911 145b6838 2022-06-16 stsp break;
5912 1e37a5c2 2019-05-12 jcs case 'q':
5913 1e37a5c2 2019-05-12 jcs s->done = 1;
5914 4deef56f 2021-09-02 naddy break;
5915 4deef56f 2021-09-02 naddy case 'g':
5916 4deef56f 2021-09-02 naddy case KEY_HOME:
5917 4deef56f 2021-09-02 naddy s->selected_line = 1;
5918 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
5919 640cd7ff 2022-06-22 mark view->count = 0;
5920 4deef56f 2021-09-02 naddy break;
5921 4deef56f 2021-09-02 naddy case 'G':
5922 4deef56f 2021-09-02 naddy case KEY_END:
5923 9b058f45 2022-06-30 mark if (s->blame.nlines < eos) {
5924 4deef56f 2021-09-02 naddy s->selected_line = s->blame.nlines;
5925 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
5926 4deef56f 2021-09-02 naddy } else {
5927 9b058f45 2022-06-30 mark s->selected_line = eos;
5928 9b058f45 2022-06-30 mark s->first_displayed_line = s->blame.nlines - (eos - 1);
5929 4deef56f 2021-09-02 naddy }
5930 640cd7ff 2022-06-22 mark view->count = 0;
5931 1e37a5c2 2019-05-12 jcs break;
5932 1e37a5c2 2019-05-12 jcs case 'k':
5933 1e37a5c2 2019-05-12 jcs case KEY_UP:
5934 02ffd0d5 2021-10-17 stsp case CTRL('p'):
5935 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
5936 1e37a5c2 2019-05-12 jcs s->selected_line--;
5937 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
5938 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
5939 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5940 640cd7ff 2022-06-22 mark else
5941 640cd7ff 2022-06-22 mark view->count = 0;
5942 1e37a5c2 2019-05-12 jcs break;
5943 83cc4199 2022-06-13 stsp case CTRL('u'):
5944 33c3719a 2022-06-15 stsp case 'u':
5945 83cc4199 2022-06-13 stsp nscroll /= 2;
5946 83cc4199 2022-06-13 stsp /* FALL THROUGH */
5947 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5948 ea025d1d 2020-02-22 naddy case CTRL('b'):
5949 61417565 2022-06-20 mark case 'b':
5950 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
5951 640cd7ff 2022-06-22 mark if (view->count > 1)
5952 640cd7ff 2022-06-22 mark nscroll += nscroll;
5953 83cc4199 2022-06-13 stsp s->selected_line = MAX(1, s->selected_line - nscroll);
5954 640cd7ff 2022-06-22 mark view->count = 0;
5955 e5a0f69f 2018-08-18 stsp break;
5956 1e37a5c2 2019-05-12 jcs }
5957 83cc4199 2022-06-13 stsp if (s->first_displayed_line > nscroll)
5958 83cc4199 2022-06-13 stsp s->first_displayed_line -= nscroll;
5959 1e37a5c2 2019-05-12 jcs else
5960 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5961 1e37a5c2 2019-05-12 jcs break;
5962 1e37a5c2 2019-05-12 jcs case 'j':
5963 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5964 02ffd0d5 2021-10-17 stsp case CTRL('n'):
5965 9b058f45 2022-06-30 mark if (s->selected_line < eos && s->first_displayed_line +
5966 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
5967 1e37a5c2 2019-05-12 jcs s->selected_line++;
5968 9b058f45 2022-06-30 mark else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
5969 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5970 640cd7ff 2022-06-22 mark else
5971 640cd7ff 2022-06-22 mark view->count = 0;
5972 1e37a5c2 2019-05-12 jcs break;
5973 61417565 2022-06-20 mark case 'c':
5974 1e37a5c2 2019-05-12 jcs case 'p': {
5975 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
5976 640cd7ff 2022-06-22 mark
5977 640cd7ff 2022-06-22 mark view->count = 0;
5978 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
5979 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
5980 1e37a5c2 2019-05-12 jcs if (id == NULL)
5981 e5a0f69f 2018-08-18 stsp break;
5982 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
5983 a44927cc 2022-04-07 stsp struct got_commit_object *commit, *pcommit;
5984 15a94983 2018-12-23 stsp struct got_object_qid *pid;
5985 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
5986 1e37a5c2 2019-05-12 jcs int obj_type;
5987 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
5988 1e37a5c2 2019-05-12 jcs s->repo, id);
5989 e5a0f69f 2018-08-18 stsp if (err)
5990 e5a0f69f 2018-08-18 stsp break;
5991 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(
5992 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
5993 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
5994 15a94983 2018-12-23 stsp got_object_commit_close(commit);
5995 e5a0f69f 2018-08-18 stsp break;
5996 e5a0f69f 2018-08-18 stsp }
5997 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
5998 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&pcommit,
5999 d7b5a0e8 2022-04-20 stsp s->repo, &pid->id);
6000 a44927cc 2022-04-07 stsp if (err)
6001 a44927cc 2022-04-07 stsp break;
6002 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
6003 a44927cc 2022-04-07 stsp pcommit, s->path);
6004 a44927cc 2022-04-07 stsp got_object_commit_close(pcommit);
6005 e5a0f69f 2018-08-18 stsp if (err) {
6006 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
6007 1e37a5c2 2019-05-12 jcs err = NULL;
6008 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6009 e5a0f69f 2018-08-18 stsp break;
6010 e5a0f69f 2018-08-18 stsp }
6011 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
6012 1e37a5c2 2019-05-12 jcs blob_id);
6013 1e37a5c2 2019-05-12 jcs free(blob_id);
6014 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
6015 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
6016 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6017 e5a0f69f 2018-08-18 stsp break;
6018 1e37a5c2 2019-05-12 jcs }
6019 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6020 d7b5a0e8 2022-04-20 stsp &pid->id);
6021 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6022 1e37a5c2 2019-05-12 jcs } else {
6023 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
6024 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id) == 0)
6025 1e37a5c2 2019-05-12 jcs break;
6026 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6027 1e37a5c2 2019-05-12 jcs id);
6028 1e37a5c2 2019-05-12 jcs }
6029 1e37a5c2 2019-05-12 jcs if (err)
6030 e5a0f69f 2018-08-18 stsp break;
6031 1e37a5c2 2019-05-12 jcs s->done = 1;
6032 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6033 1e37a5c2 2019-05-12 jcs s->done = 0;
6034 1e37a5c2 2019-05-12 jcs if (thread_err)
6035 1e37a5c2 2019-05-12 jcs break;
6036 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits,
6037 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
6038 a5388363 2020-12-01 naddy err = run_blame(view);
6039 1e37a5c2 2019-05-12 jcs if (err)
6040 1e37a5c2 2019-05-12 jcs break;
6041 1e37a5c2 2019-05-12 jcs break;
6042 1e37a5c2 2019-05-12 jcs }
6043 61417565 2022-06-20 mark case 'C': {
6044 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
6045 640cd7ff 2022-06-22 mark
6046 640cd7ff 2022-06-22 mark view->count = 0;
6047 dbdddfee 2021-06-23 naddy first = STAILQ_FIRST(&s->blamed_commits);
6048 d7b5a0e8 2022-04-20 stsp if (!got_object_id_cmp(&first->id, s->commit_id))
6049 1e37a5c2 2019-05-12 jcs break;
6050 1e37a5c2 2019-05-12 jcs s->done = 1;
6051 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6052 1e37a5c2 2019-05-12 jcs s->done = 0;
6053 1e37a5c2 2019-05-12 jcs if (thread_err)
6054 1e37a5c2 2019-05-12 jcs break;
6055 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6056 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
6057 1e37a5c2 2019-05-12 jcs s->blamed_commit =
6058 dbdddfee 2021-06-23 naddy STAILQ_FIRST(&s->blamed_commits);
6059 a5388363 2020-12-01 naddy err = run_blame(view);
6060 1e37a5c2 2019-05-12 jcs if (err)
6061 1e37a5c2 2019-05-12 jcs break;
6062 1e37a5c2 2019-05-12 jcs break;
6063 1e37a5c2 2019-05-12 jcs }
6064 136e2bd4 2022-07-23 mark case 'L':
6065 05f04cdf 2022-07-20 mark view->count = 0;
6066 136e2bd4 2022-07-23 mark s->id_to_log = get_selected_commit_id(s->blame.lines,
6067 136e2bd4 2022-07-23 mark s->blame.nlines, s->first_displayed_line, s->selected_line);
6068 136e2bd4 2022-07-23 mark if (s->id_to_log)
6069 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6070 05f04cdf 2022-07-20 mark break;
6071 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
6072 1e37a5c2 2019-05-12 jcs case '\r': {
6073 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6074 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
6075 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
6076 640cd7ff 2022-06-22 mark
6077 640cd7ff 2022-06-22 mark view->count = 0;
6078 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6079 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6080 1e37a5c2 2019-05-12 jcs if (id == NULL)
6081 1e37a5c2 2019-05-12 jcs break;
6082 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
6083 1e37a5c2 2019-05-12 jcs if (err)
6084 1e37a5c2 2019-05-12 jcs break;
6085 9b058f45 2022-06-30 mark pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6086 c0f61fa4 2022-07-11 mark if (*new_view) {
6087 c0f61fa4 2022-07-11 mark /* traversed from diff view, release diff resources */
6088 c0f61fa4 2022-07-11 mark err = close_diff_view(*new_view);
6089 c0f61fa4 2022-07-11 mark if (err)
6090 c0f61fa4 2022-07-11 mark break;
6091 c0f61fa4 2022-07-11 mark diff_view = *new_view;
6092 c0f61fa4 2022-07-11 mark } else {
6093 c0f61fa4 2022-07-11 mark if (view_is_parent_view(view))
6094 c0f61fa4 2022-07-11 mark view_get_split(view, &begin_y, &begin_x);
6095 9b058f45 2022-06-30 mark
6096 c0f61fa4 2022-07-11 mark diff_view = view_open(0, 0, begin_y, begin_x,
6097 c0f61fa4 2022-07-11 mark TOG_VIEW_DIFF);
6098 c0f61fa4 2022-07-11 mark if (diff_view == NULL) {
6099 c0f61fa4 2022-07-11 mark got_object_commit_close(commit);
6100 c0f61fa4 2022-07-11 mark err = got_error_from_errno("view_open");
6101 c0f61fa4 2022-07-11 mark break;
6102 c0f61fa4 2022-07-11 mark }
6103 15a94983 2018-12-23 stsp }
6104 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6105 c0f61fa4 2022-07-11 mark id, NULL, NULL, 3, 0, 0, view, s->repo);
6106 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6107 1e37a5c2 2019-05-12 jcs if (err) {
6108 1e37a5c2 2019-05-12 jcs view_close(diff_view);
6109 1e37a5c2 2019-05-12 jcs break;
6110 1e37a5c2 2019-05-12 jcs }
6111 c0f61fa4 2022-07-11 mark s->last_diffed_line = s->first_displayed_line - 1 +
6112 c0f61fa4 2022-07-11 mark s->selected_line;
6113 c0f61fa4 2022-07-11 mark if (*new_view)
6114 c0f61fa4 2022-07-11 mark break; /* still open from active diff view */
6115 49b24ee5 2022-07-03 mark if (view_is_parent_view(view) &&
6116 49b24ee5 2022-07-03 mark view->mode == TOG_VIEW_SPLIT_HRZN) {
6117 9b058f45 2022-06-30 mark err = view_init_hsplit(view, begin_y);
6118 9b058f45 2022-06-30 mark if (err)
6119 9b058f45 2022-06-30 mark break;
6120 9b058f45 2022-06-30 mark }
6121 9b058f45 2022-06-30 mark
6122 e78dc838 2020-12-04 stsp view->focussed = 0;
6123 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
6124 9b058f45 2022-06-30 mark diff_view->mode = view->mode;
6125 9b058f45 2022-06-30 mark diff_view->nlines = view->lines - begin_y;
6126 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
6127 3c1dfe12 2022-07-08 mark view_transfer_size(diff_view, view);
6128 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
6129 1e37a5c2 2019-05-12 jcs if (err)
6130 34bc9ec9 2019-02-22 stsp break;
6131 0dbbbe90 2022-06-17 op err = view_set_child(view, diff_view);
6132 0dbbbe90 2022-06-17 op if (err)
6133 0dbbbe90 2022-06-17 op break;
6134 e78dc838 2020-12-04 stsp view->focus_child = 1;
6135 1e37a5c2 2019-05-12 jcs } else
6136 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
6137 1e37a5c2 2019-05-12 jcs if (err)
6138 e5a0f69f 2018-08-18 stsp break;
6139 1e37a5c2 2019-05-12 jcs break;
6140 1e37a5c2 2019-05-12 jcs }
6141 83cc4199 2022-06-13 stsp case CTRL('d'):
6142 33c3719a 2022-06-15 stsp case 'd':
6143 83cc4199 2022-06-13 stsp nscroll /= 2;
6144 83cc4199 2022-06-13 stsp /* FALL THROUGH */
6145 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
6146 ea025d1d 2020-02-22 naddy case CTRL('f'):
6147 61417565 2022-06-20 mark case 'f':
6148 1e37a5c2 2019-05-12 jcs case ' ':
6149 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6150 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
6151 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
6152 640cd7ff 2022-06-22 mark view->count = 0;
6153 e5a0f69f 2018-08-18 stsp break;
6154 1e37a5c2 2019-05-12 jcs }
6155 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6156 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
6157 83cc4199 2022-06-13 stsp s->selected_line +=
6158 83cc4199 2022-06-13 stsp MIN(nscroll, s->last_displayed_line -
6159 83cc4199 2022-06-13 stsp s->first_displayed_line - s->selected_line + 1);
6160 1e37a5c2 2019-05-12 jcs }
6161 83cc4199 2022-06-13 stsp if (s->last_displayed_line + nscroll <= s->blame.nlines)
6162 83cc4199 2022-06-13 stsp s->first_displayed_line += nscroll;
6163 1e37a5c2 2019-05-12 jcs else
6164 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
6165 83cc4199 2022-06-13 stsp s->blame.nlines - (view->nlines - 3);
6166 1e37a5c2 2019-05-12 jcs break;
6167 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
6168 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
6169 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
6170 1e37a5c2 2019-05-12 jcs view->nlines - 2);
6171 1e37a5c2 2019-05-12 jcs }
6172 1e37a5c2 2019-05-12 jcs break;
6173 1e37a5c2 2019-05-12 jcs default:
6174 640cd7ff 2022-06-22 mark view->count = 0;
6175 1e37a5c2 2019-05-12 jcs break;
6176 a70480e0 2018-06-23 stsp }
6177 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
6178 917d79a7 2022-07-01 stsp }
6179 917d79a7 2022-07-01 stsp
6180 917d79a7 2022-07-01 stsp static const struct got_error *
6181 917d79a7 2022-07-01 stsp reset_blame_view(struct tog_view *view)
6182 917d79a7 2022-07-01 stsp {
6183 917d79a7 2022-07-01 stsp const struct got_error *err;
6184 917d79a7 2022-07-01 stsp struct tog_blame_view_state *s = &view->state.blame;
6185 917d79a7 2022-07-01 stsp
6186 917d79a7 2022-07-01 stsp view->count = 0;
6187 917d79a7 2022-07-01 stsp s->done = 1;
6188 917d79a7 2022-07-01 stsp err = stop_blame(&s->blame);
6189 917d79a7 2022-07-01 stsp s->done = 0;
6190 917d79a7 2022-07-01 stsp if (err)
6191 917d79a7 2022-07-01 stsp return err;
6192 917d79a7 2022-07-01 stsp return run_blame(view);
6193 a70480e0 2018-06-23 stsp }
6194 a70480e0 2018-06-23 stsp
6195 a70480e0 2018-06-23 stsp static const struct got_error *
6196 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
6197 9f7d7167 2018-04-29 stsp {
6198 a70480e0 2018-06-23 stsp const struct got_error *error;
6199 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
6200 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
6201 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6202 0587e10c 2020-07-23 stsp char *link_target = NULL;
6203 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
6204 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
6205 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
6206 a70480e0 2018-06-23 stsp int ch;
6207 e1cd8fed 2018-08-01 stsp struct tog_view *view;
6208 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
6209 a70480e0 2018-06-23 stsp
6210 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6211 a70480e0 2018-06-23 stsp switch (ch) {
6212 a70480e0 2018-06-23 stsp case 'c':
6213 a70480e0 2018-06-23 stsp commit_id_str = optarg;
6214 a70480e0 2018-06-23 stsp break;
6215 69069811 2018-08-02 stsp case 'r':
6216 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
6217 69069811 2018-08-02 stsp if (repo_path == NULL)
6218 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6219 9ba1d308 2019-10-21 stsp optarg);
6220 69069811 2018-08-02 stsp break;
6221 a70480e0 2018-06-23 stsp default:
6222 17020d27 2019-03-07 stsp usage_blame();
6223 a70480e0 2018-06-23 stsp /* NOTREACHED */
6224 a70480e0 2018-06-23 stsp }
6225 a70480e0 2018-06-23 stsp }
6226 a70480e0 2018-06-23 stsp
6227 a70480e0 2018-06-23 stsp argc -= optind;
6228 a70480e0 2018-06-23 stsp argv += optind;
6229 a70480e0 2018-06-23 stsp
6230 f135c941 2020-02-20 stsp if (argc != 1)
6231 a70480e0 2018-06-23 stsp usage_blame();
6232 6962eb72 2020-02-20 stsp
6233 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
6234 0ae84acc 2022-06-15 tracey if (error != NULL)
6235 0ae84acc 2022-06-15 tracey goto done;
6236 0ae84acc 2022-06-15 tracey
6237 69069811 2018-08-02 stsp if (repo_path == NULL) {
6238 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6239 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6240 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6241 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6242 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6243 c156c7a4 2020-12-18 stsp goto done;
6244 f135c941 2020-02-20 stsp if (worktree)
6245 eb41ed75 2019-02-05 stsp repo_path =
6246 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
6247 f135c941 2020-02-20 stsp else
6248 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
6249 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6250 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6251 c156c7a4 2020-12-18 stsp goto done;
6252 c156c7a4 2020-12-18 stsp }
6253 f135c941 2020-02-20 stsp }
6254 a915003a 2019-02-05 stsp
6255 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6256 c02c541e 2019-03-29 stsp if (error != NULL)
6257 8e94dd5b 2019-01-04 stsp goto done;
6258 69069811 2018-08-02 stsp
6259 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6260 f135c941 2020-02-20 stsp worktree);
6261 c02c541e 2019-03-29 stsp if (error)
6262 92205607 2019-01-04 stsp goto done;
6263 69069811 2018-08-02 stsp
6264 f135c941 2020-02-20 stsp init_curses();
6265 f135c941 2020-02-20 stsp
6266 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6267 51a10b52 2020-12-26 stsp if (error)
6268 51a10b52 2020-12-26 stsp goto done;
6269 51a10b52 2020-12-26 stsp
6270 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
6271 eb41ed75 2019-02-05 stsp if (error)
6272 69069811 2018-08-02 stsp goto done;
6273 a70480e0 2018-06-23 stsp
6274 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
6275 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
6276 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
6277 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6278 a70480e0 2018-06-23 stsp if (error != NULL)
6279 66b4983c 2018-06-23 stsp goto done;
6280 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6281 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
6282 a70480e0 2018-06-23 stsp } else {
6283 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6284 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6285 a70480e0 2018-06-23 stsp }
6286 a19e88aa 2018-06-23 stsp if (error != NULL)
6287 8b473291 2019-02-21 stsp goto done;
6288 8b473291 2019-02-21 stsp
6289 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6290 e1cd8fed 2018-08-01 stsp if (view == NULL) {
6291 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
6292 e1cd8fed 2018-08-01 stsp goto done;
6293 e1cd8fed 2018-08-01 stsp }
6294 0587e10c 2020-07-23 stsp
6295 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6296 a44927cc 2022-04-07 stsp if (error)
6297 a44927cc 2022-04-07 stsp goto done;
6298 a44927cc 2022-04-07 stsp
6299 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
6300 a44927cc 2022-04-07 stsp commit, repo);
6301 7cbe629d 2018-08-04 stsp if (error)
6302 7cbe629d 2018-08-04 stsp goto done;
6303 0587e10c 2020-07-23 stsp
6304 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
6305 78756c87 2020-11-24 stsp commit_id, repo);
6306 0587e10c 2020-07-23 stsp if (error)
6307 0587e10c 2020-07-23 stsp goto done;
6308 12314ad4 2019-08-31 stsp if (worktree) {
6309 12314ad4 2019-08-31 stsp /* Release work tree lock. */
6310 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
6311 12314ad4 2019-08-31 stsp worktree = NULL;
6312 12314ad4 2019-08-31 stsp }
6313 e5a0f69f 2018-08-18 stsp error = view_loop(view);
6314 a70480e0 2018-06-23 stsp done:
6315 69069811 2018-08-02 stsp free(repo_path);
6316 f135c941 2020-02-20 stsp free(in_repo_path);
6317 0587e10c 2020-07-23 stsp free(link_target);
6318 69069811 2018-08-02 stsp free(cwd);
6319 a70480e0 2018-06-23 stsp free(commit_id);
6320 a44927cc 2022-04-07 stsp if (commit)
6321 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
6322 eb41ed75 2019-02-05 stsp if (worktree)
6323 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
6324 1d0f4054 2021-06-17 stsp if (repo) {
6325 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6326 1d0f4054 2021-06-17 stsp if (error == NULL)
6327 1d0f4054 2021-06-17 stsp error = close_err;
6328 1d0f4054 2021-06-17 stsp }
6329 0ae84acc 2022-06-15 tracey if (pack_fds) {
6330 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
6331 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
6332 0ae84acc 2022-06-15 tracey if (error == NULL)
6333 0ae84acc 2022-06-15 tracey error = pack_err;
6334 0ae84acc 2022-06-15 tracey }
6335 51a10b52 2020-12-26 stsp tog_free_refs();
6336 a70480e0 2018-06-23 stsp return error;
6337 ffd1d5e5 2018-06-23 stsp }
6338 ffd1d5e5 2018-06-23 stsp
6339 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6340 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
6341 ffd1d5e5 2018-06-23 stsp {
6342 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
6343 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6344 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
6345 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
6346 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6347 94b80cfa 2022-08-01 mark int width, n, nentries, i = 1;
6348 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6349 ffd1d5e5 2018-06-23 stsp
6350 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6351 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6352 9b058f45 2022-06-30 mark --limit; /* border */
6353 ffd1d5e5 2018-06-23 stsp
6354 f7d12f7e 2018-08-01 stsp werase(view->window);
6355 ffd1d5e5 2018-06-23 stsp
6356 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6357 ffd1d5e5 2018-06-23 stsp return NULL;
6358 ffd1d5e5 2018-06-23 stsp
6359 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6360 ccda2f4d 2022-06-16 stsp 0, 0);
6361 ffd1d5e5 2018-06-23 stsp if (err)
6362 ffd1d5e5 2018-06-23 stsp return err;
6363 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6364 a3404814 2018-09-02 stsp wstandout(view->window);
6365 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6366 11b20872 2019-11-08 stsp if (tc)
6367 11b20872 2019-11-08 stsp wattr_on(view->window,
6368 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6369 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6370 11b20872 2019-11-08 stsp if (tc)
6371 11b20872 2019-11-08 stsp wattr_off(view->window,
6372 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6373 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6374 a3404814 2018-09-02 stsp wstandend(view->window);
6375 2550e4c3 2018-07-13 stsp free(wline);
6376 2550e4c3 2018-07-13 stsp wline = NULL;
6377 94b80cfa 2022-08-01 mark
6378 94b80cfa 2022-08-01 mark if (s->selected_entry) {
6379 94b80cfa 2022-08-01 mark i = got_tree_entry_get_index(s->selected_entry);
6380 94b80cfa 2022-08-01 mark i += s->tree == s->root ? 1 : 2; /* account for ".." entry */
6381 94b80cfa 2022-08-01 mark }
6382 94b80cfa 2022-08-01 mark nentries = got_object_tree_get_nentries(s->tree);
6383 94b80cfa 2022-08-01 mark wprintw(view->window, " [%d/%d]", i,
6384 94b80cfa 2022-08-01 mark nentries + (s->tree == s->root ? 0 : 1)); /* ".." in !root tree */
6385 94b80cfa 2022-08-01 mark
6386 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6387 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6388 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6389 ffd1d5e5 2018-06-23 stsp return NULL;
6390 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, parent_path, 0, view->ncols,
6391 ccda2f4d 2022-06-16 stsp 0, 0);
6392 ce52c690 2018-06-23 stsp if (err)
6393 ce52c690 2018-06-23 stsp return err;
6394 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6395 2550e4c3 2018-07-13 stsp free(wline);
6396 2550e4c3 2018-07-13 stsp wline = NULL;
6397 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6398 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6399 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6400 ffd1d5e5 2018-06-23 stsp return NULL;
6401 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6402 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6403 a1eca9bb 2018-06-23 stsp return NULL;
6404 ffd1d5e5 2018-06-23 stsp
6405 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6406 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6407 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6408 0cf4efb1 2018-09-29 stsp if (view->focussed)
6409 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6410 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6411 ffd1d5e5 2018-06-23 stsp }
6412 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6413 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6414 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6415 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6416 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6417 ffd1d5e5 2018-06-23 stsp return NULL;
6418 ffd1d5e5 2018-06-23 stsp n = 1;
6419 ffd1d5e5 2018-06-23 stsp } else {
6420 ffd1d5e5 2018-06-23 stsp n = 0;
6421 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6422 ffd1d5e5 2018-06-23 stsp }
6423 ffd1d5e5 2018-06-23 stsp
6424 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6425 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6426 848d6979 2019-08-12 stsp const char *modestr = "";
6427 56e0773d 2019-11-28 stsp mode_t mode;
6428 1d13200f 2018-07-12 stsp
6429 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6430 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6431 56e0773d 2019-11-28 stsp
6432 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6433 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6434 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6435 1d13200f 2018-07-12 stsp if (err)
6436 638f9024 2019-05-13 stsp return got_error_from_errno(
6437 230a42bd 2019-05-11 jcs "got_object_id_str");
6438 1d13200f 2018-07-12 stsp }
6439 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6440 63c5ca5d 2019-08-24 stsp modestr = "$";
6441 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6442 0d6c6ee3 2020-05-20 stsp int i;
6443 0d6c6ee3 2020-05-20 stsp
6444 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6445 d86d3b18 2020-12-01 naddy te, s->repo);
6446 0d6c6ee3 2020-05-20 stsp if (err) {
6447 0d6c6ee3 2020-05-20 stsp free(id_str);
6448 0d6c6ee3 2020-05-20 stsp return err;
6449 0d6c6ee3 2020-05-20 stsp }
6450 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6451 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6452 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6453 0d6c6ee3 2020-05-20 stsp }
6454 848d6979 2019-08-12 stsp modestr = "@";
6455 0d6c6ee3 2020-05-20 stsp }
6456 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6457 848d6979 2019-08-12 stsp modestr = "/";
6458 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6459 848d6979 2019-08-12 stsp modestr = "*";
6460 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6461 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6462 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6463 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6464 1d13200f 2018-07-12 stsp free(id_str);
6465 0d6c6ee3 2020-05-20 stsp free(link_target);
6466 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6467 1d13200f 2018-07-12 stsp }
6468 1d13200f 2018-07-12 stsp free(id_str);
6469 0d6c6ee3 2020-05-20 stsp free(link_target);
6470 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6471 ccda2f4d 2022-06-16 stsp 0, 0);
6472 ffd1d5e5 2018-06-23 stsp if (err) {
6473 ffd1d5e5 2018-06-23 stsp free(line);
6474 ffd1d5e5 2018-06-23 stsp break;
6475 ffd1d5e5 2018-06-23 stsp }
6476 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6477 0cf4efb1 2018-09-29 stsp if (view->focussed)
6478 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6479 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6480 ffd1d5e5 2018-06-23 stsp }
6481 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6482 f26dddb7 2019-11-08 stsp if (tc)
6483 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6484 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6485 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6486 f26dddb7 2019-11-08 stsp if (tc)
6487 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6488 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6489 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6490 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6491 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6492 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6493 ffd1d5e5 2018-06-23 stsp free(line);
6494 2550e4c3 2018-07-13 stsp free(wline);
6495 2550e4c3 2018-07-13 stsp wline = NULL;
6496 ffd1d5e5 2018-06-23 stsp n++;
6497 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6498 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6499 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6500 ffd1d5e5 2018-06-23 stsp break;
6501 ffd1d5e5 2018-06-23 stsp }
6502 ffd1d5e5 2018-06-23 stsp
6503 ffd1d5e5 2018-06-23 stsp return err;
6504 ffd1d5e5 2018-06-23 stsp }
6505 ffd1d5e5 2018-06-23 stsp
6506 ffd1d5e5 2018-06-23 stsp static void
6507 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6508 ffd1d5e5 2018-06-23 stsp {
6509 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6510 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6511 fa86c4bf 2020-11-29 stsp int i = 0;
6512 ffd1d5e5 2018-06-23 stsp
6513 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6514 ffd1d5e5 2018-06-23 stsp return;
6515 ffd1d5e5 2018-06-23 stsp
6516 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6517 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6518 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6519 fa86c4bf 2020-11-29 stsp if (!isroot)
6520 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6521 fa86c4bf 2020-11-29 stsp break;
6522 fa86c4bf 2020-11-29 stsp }
6523 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6524 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6525 ffd1d5e5 2018-06-23 stsp }
6526 ffd1d5e5 2018-06-23 stsp }
6527 ffd1d5e5 2018-06-23 stsp
6528 9b058f45 2022-06-30 mark static const struct got_error *
6529 9b058f45 2022-06-30 mark tree_scroll_down(struct tog_view *view, int maxscroll)
6530 ffd1d5e5 2018-06-23 stsp {
6531 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
6532 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6533 ffd1d5e5 2018-06-23 stsp int n = 0;
6534 ffd1d5e5 2018-06-23 stsp
6535 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6536 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6537 694d3271 2020-12-01 naddy s->first_displayed_entry);
6538 694d3271 2020-12-01 naddy else
6539 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6540 56e0773d 2019-11-28 stsp
6541 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6542 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
6543 94b80cfa 2022-08-01 mark if (last) {
6544 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
6545 9b058f45 2022-06-30 mark last = got_tree_entry_get_next(s->tree, last);
6546 94b80cfa 2022-08-01 mark }
6547 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6548 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6549 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6550 768394f3 2019-01-24 stsp }
6551 ffd1d5e5 2018-06-23 stsp }
6552 9b058f45 2022-06-30 mark
6553 9b058f45 2022-06-30 mark return NULL;
6554 ffd1d5e5 2018-06-23 stsp }
6555 ffd1d5e5 2018-06-23 stsp
6556 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6557 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6558 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6559 ffd1d5e5 2018-06-23 stsp {
6560 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6561 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6562 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6563 ffd1d5e5 2018-06-23 stsp
6564 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6565 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6566 56e0773d 2019-11-28 stsp + 1 /* slash */;
6567 ce52c690 2018-06-23 stsp if (te)
6568 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6569 ce52c690 2018-06-23 stsp
6570 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6571 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6572 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6573 ffd1d5e5 2018-06-23 stsp
6574 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6575 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6576 d9765a41 2018-06-23 stsp while (pt) {
6577 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6578 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6579 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6580 cb2ebc8a 2018-06-23 stsp goto done;
6581 cb2ebc8a 2018-06-23 stsp }
6582 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6583 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6584 cb2ebc8a 2018-06-23 stsp goto done;
6585 cb2ebc8a 2018-06-23 stsp }
6586 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6587 ffd1d5e5 2018-06-23 stsp }
6588 ce52c690 2018-06-23 stsp if (te) {
6589 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6590 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6591 ce52c690 2018-06-23 stsp goto done;
6592 ce52c690 2018-06-23 stsp }
6593 cb2ebc8a 2018-06-23 stsp }
6594 ce52c690 2018-06-23 stsp done:
6595 ce52c690 2018-06-23 stsp if (err) {
6596 ce52c690 2018-06-23 stsp free(*path);
6597 ce52c690 2018-06-23 stsp *path = NULL;
6598 ce52c690 2018-06-23 stsp }
6599 ce52c690 2018-06-23 stsp return err;
6600 ce52c690 2018-06-23 stsp }
6601 ce52c690 2018-06-23 stsp
6602 ce52c690 2018-06-23 stsp static const struct got_error *
6603 9b058f45 2022-06-30 mark blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6604 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6605 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6606 ce52c690 2018-06-23 stsp {
6607 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6608 ce52c690 2018-06-23 stsp char *path;
6609 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6610 a0de39f3 2019-08-09 stsp
6611 a0de39f3 2019-08-09 stsp *new_view = NULL;
6612 69efd4c4 2018-07-18 stsp
6613 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6614 ce52c690 2018-06-23 stsp if (err)
6615 ce52c690 2018-06-23 stsp return err;
6616 ffd1d5e5 2018-06-23 stsp
6617 9b058f45 2022-06-30 mark blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6618 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6619 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6620 83ce39e3 2019-08-12 stsp goto done;
6621 83ce39e3 2019-08-12 stsp }
6622 cdf1ee82 2018-08-01 stsp
6623 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6624 e5a0f69f 2018-08-18 stsp if (err) {
6625 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6626 fc06ba56 2019-08-22 stsp err = NULL;
6627 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6628 e5a0f69f 2018-08-18 stsp } else
6629 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6630 83ce39e3 2019-08-12 stsp done:
6631 83ce39e3 2019-08-12 stsp free(path);
6632 69efd4c4 2018-07-18 stsp return err;
6633 69efd4c4 2018-07-18 stsp }
6634 69efd4c4 2018-07-18 stsp
6635 69efd4c4 2018-07-18 stsp static const struct got_error *
6636 49b24ee5 2022-07-03 mark log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6637 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6638 69efd4c4 2018-07-18 stsp {
6639 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6640 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6641 69efd4c4 2018-07-18 stsp char *path;
6642 a0de39f3 2019-08-09 stsp
6643 a0de39f3 2019-08-09 stsp *new_view = NULL;
6644 69efd4c4 2018-07-18 stsp
6645 49b24ee5 2022-07-03 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6646 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6647 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6648 e5a0f69f 2018-08-18 stsp
6649 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6650 69efd4c4 2018-07-18 stsp if (err)
6651 69efd4c4 2018-07-18 stsp return err;
6652 69efd4c4 2018-07-18 stsp
6653 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6654 4e97c21c 2020-12-06 stsp path, 0);
6655 ba4f502b 2018-08-04 stsp if (err)
6656 e5a0f69f 2018-08-18 stsp view_close(log_view);
6657 e5a0f69f 2018-08-18 stsp else
6658 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6659 cb2ebc8a 2018-06-23 stsp free(path);
6660 cb2ebc8a 2018-06-23 stsp return err;
6661 ffd1d5e5 2018-06-23 stsp }
6662 ffd1d5e5 2018-06-23 stsp
6663 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6664 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6665 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6666 ffd1d5e5 2018-06-23 stsp {
6667 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6668 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6669 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6670 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6671 ffd1d5e5 2018-06-23 stsp
6672 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6673 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6674 bc573f3b 2021-07-10 stsp
6675 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6676 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6677 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6678 ffd1d5e5 2018-06-23 stsp
6679 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6680 bc573f3b 2021-07-10 stsp if (err)
6681 bc573f3b 2021-07-10 stsp goto done;
6682 bc573f3b 2021-07-10 stsp
6683 bc573f3b 2021-07-10 stsp /*
6684 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
6685 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
6686 bc573f3b 2021-07-10 stsp * closed on demand.
6687 bc573f3b 2021-07-10 stsp */
6688 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
6689 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
6690 bc573f3b 2021-07-10 stsp if (err)
6691 bc573f3b 2021-07-10 stsp goto done;
6692 bc573f3b 2021-07-10 stsp s->tree = s->root;
6693 bc573f3b 2021-07-10 stsp
6694 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
6695 ffd1d5e5 2018-06-23 stsp if (err != NULL)
6696 ffd1d5e5 2018-06-23 stsp goto done;
6697 ffd1d5e5 2018-06-23 stsp
6698 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
6699 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
6700 ffd1d5e5 2018-06-23 stsp goto done;
6701 ffd1d5e5 2018-06-23 stsp }
6702 ffd1d5e5 2018-06-23 stsp
6703 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
6704 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
6705 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
6706 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
6707 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
6708 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
6709 9cd7cbd1 2020-12-07 stsp goto done;
6710 9cd7cbd1 2020-12-07 stsp }
6711 9cd7cbd1 2020-12-07 stsp }
6712 fb2756b9 2018-08-04 stsp s->repo = repo;
6713 c0b01bdb 2019-11-08 stsp
6714 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6715 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
6716 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
6717 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
6718 c0b01bdb 2019-11-08 stsp if (err)
6719 c0b01bdb 2019-11-08 stsp goto done;
6720 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
6721 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
6722 bc573f3b 2021-07-10 stsp if (err)
6723 c0b01bdb 2019-11-08 stsp goto done;
6724 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
6725 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
6726 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
6727 bc573f3b 2021-07-10 stsp if (err)
6728 c0b01bdb 2019-11-08 stsp goto done;
6729 e5a0f69f 2018-08-18 stsp
6730 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
6731 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
6732 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
6733 bc573f3b 2021-07-10 stsp if (err)
6734 11b20872 2019-11-08 stsp goto done;
6735 11b20872 2019-11-08 stsp
6736 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
6737 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6738 bc573f3b 2021-07-10 stsp if (err)
6739 c0b01bdb 2019-11-08 stsp goto done;
6740 c0b01bdb 2019-11-08 stsp }
6741 c0b01bdb 2019-11-08 stsp
6742 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
6743 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
6744 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
6745 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
6746 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
6747 ad80ab7b 2018-08-04 stsp done:
6748 ad80ab7b 2018-08-04 stsp free(commit_id_str);
6749 bc573f3b 2021-07-10 stsp if (commit)
6750 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
6751 bc573f3b 2021-07-10 stsp if (err)
6752 bc573f3b 2021-07-10 stsp close_tree_view(view);
6753 ad80ab7b 2018-08-04 stsp return err;
6754 ad80ab7b 2018-08-04 stsp }
6755 ad80ab7b 2018-08-04 stsp
6756 e5a0f69f 2018-08-18 stsp static const struct got_error *
6757 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
6758 ad80ab7b 2018-08-04 stsp {
6759 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6760 ad80ab7b 2018-08-04 stsp
6761 bddb1296 2019-11-08 stsp free_colors(&s->colors);
6762 fb2756b9 2018-08-04 stsp free(s->tree_label);
6763 6484ec90 2018-09-29 stsp s->tree_label = NULL;
6764 6484ec90 2018-09-29 stsp free(s->commit_id);
6765 6484ec90 2018-09-29 stsp s->commit_id = NULL;
6766 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
6767 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
6768 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
6769 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
6770 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
6771 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
6772 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
6773 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
6774 ad80ab7b 2018-08-04 stsp free(parent);
6775 ad80ab7b 2018-08-04 stsp
6776 ad80ab7b 2018-08-04 stsp }
6777 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
6778 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
6779 bc573f3b 2021-07-10 stsp if (s->root)
6780 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
6781 7c32bd05 2019-06-22 stsp return NULL;
6782 7c32bd05 2019-06-22 stsp }
6783 7c32bd05 2019-06-22 stsp
6784 7c32bd05 2019-06-22 stsp static const struct got_error *
6785 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
6786 7c32bd05 2019-06-22 stsp {
6787 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
6788 7c32bd05 2019-06-22 stsp
6789 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
6790 7c32bd05 2019-06-22 stsp return NULL;
6791 7c32bd05 2019-06-22 stsp }
6792 7c32bd05 2019-06-22 stsp
6793 7c32bd05 2019-06-22 stsp static int
6794 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
6795 7c32bd05 2019-06-22 stsp {
6796 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
6797 7c32bd05 2019-06-22 stsp
6798 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
6799 56e0773d 2019-11-28 stsp 0) == 0;
6800 7c32bd05 2019-06-22 stsp }
6801 7c32bd05 2019-06-22 stsp
6802 7c32bd05 2019-06-22 stsp static const struct got_error *
6803 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
6804 7c32bd05 2019-06-22 stsp {
6805 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
6806 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
6807 7c32bd05 2019-06-22 stsp
6808 7c32bd05 2019-06-22 stsp if (!view->searching) {
6809 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6810 7c32bd05 2019-06-22 stsp return NULL;
6811 7c32bd05 2019-06-22 stsp }
6812 7c32bd05 2019-06-22 stsp
6813 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
6814 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
6815 7c32bd05 2019-06-22 stsp if (s->selected_entry)
6816 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
6817 56e0773d 2019-11-28 stsp s->selected_entry);
6818 7c32bd05 2019-06-22 stsp else
6819 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6820 56e0773d 2019-11-28 stsp } else {
6821 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
6822 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6823 56e0773d 2019-11-28 stsp else
6824 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
6825 56e0773d 2019-11-28 stsp s->selected_entry);
6826 7c32bd05 2019-06-22 stsp }
6827 7c32bd05 2019-06-22 stsp } else {
6828 487cd7d2 2021-12-17 stsp if (s->selected_entry)
6829 487cd7d2 2021-12-17 stsp te = s->selected_entry;
6830 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
6831 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6832 56e0773d 2019-11-28 stsp else
6833 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6834 7c32bd05 2019-06-22 stsp }
6835 7c32bd05 2019-06-22 stsp
6836 7c32bd05 2019-06-22 stsp while (1) {
6837 56e0773d 2019-11-28 stsp if (te == NULL) {
6838 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
6839 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6840 ac66afb8 2019-06-24 stsp return NULL;
6841 ac66afb8 2019-06-24 stsp }
6842 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
6843 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6844 56e0773d 2019-11-28 stsp else
6845 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6846 7c32bd05 2019-06-22 stsp }
6847 7c32bd05 2019-06-22 stsp
6848 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
6849 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6850 56e0773d 2019-11-28 stsp s->matched_entry = te;
6851 7c32bd05 2019-06-22 stsp break;
6852 7c32bd05 2019-06-22 stsp }
6853 7c32bd05 2019-06-22 stsp
6854 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
6855 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
6856 56e0773d 2019-11-28 stsp else
6857 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
6858 7c32bd05 2019-06-22 stsp }
6859 e5a0f69f 2018-08-18 stsp
6860 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
6861 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
6862 7c32bd05 2019-06-22 stsp s->selected = 0;
6863 7c32bd05 2019-06-22 stsp }
6864 7c32bd05 2019-06-22 stsp
6865 e5a0f69f 2018-08-18 stsp return NULL;
6866 ad80ab7b 2018-08-04 stsp }
6867 ad80ab7b 2018-08-04 stsp
6868 ad80ab7b 2018-08-04 stsp static const struct got_error *
6869 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
6870 ad80ab7b 2018-08-04 stsp {
6871 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
6872 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6873 e5a0f69f 2018-08-18 stsp char *parent_path;
6874 ad80ab7b 2018-08-04 stsp
6875 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
6876 e5a0f69f 2018-08-18 stsp if (err)
6877 e5a0f69f 2018-08-18 stsp return err;
6878 ffd1d5e5 2018-06-23 stsp
6879 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
6880 e5a0f69f 2018-08-18 stsp free(parent_path);
6881 669b5ffa 2018-10-07 stsp
6882 9b058f45 2022-06-30 mark view_border(view);
6883 e5a0f69f 2018-08-18 stsp return err;
6884 94b80cfa 2022-08-01 mark }
6885 94b80cfa 2022-08-01 mark
6886 94b80cfa 2022-08-01 mark static const struct got_error *
6887 94b80cfa 2022-08-01 mark tree_goto_line(struct tog_view *view, int nlines)
6888 94b80cfa 2022-08-01 mark {
6889 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
6890 94b80cfa 2022-08-01 mark struct tog_tree_view_state *s = &view->state.tree;
6891 94b80cfa 2022-08-01 mark struct got_tree_entry **fte, **lte, **ste;
6892 94b80cfa 2022-08-01 mark int g, last, first = 1, i = 1;
6893 94b80cfa 2022-08-01 mark int root = s->tree == s->root;
6894 94b80cfa 2022-08-01 mark int off = root ? 1 : 2;
6895 94b80cfa 2022-08-01 mark
6896 94b80cfa 2022-08-01 mark g = view->gline;
6897 94b80cfa 2022-08-01 mark view->gline = 0;
6898 94b80cfa 2022-08-01 mark
6899 94b80cfa 2022-08-01 mark if (g == 0)
6900 94b80cfa 2022-08-01 mark g = 1;
6901 94b80cfa 2022-08-01 mark else if (g > got_object_tree_get_nentries(s->tree))
6902 94b80cfa 2022-08-01 mark g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
6903 94b80cfa 2022-08-01 mark
6904 94b80cfa 2022-08-01 mark fte = &s->first_displayed_entry;
6905 94b80cfa 2022-08-01 mark lte = &s->last_displayed_entry;
6906 94b80cfa 2022-08-01 mark ste = &s->selected_entry;
6907 94b80cfa 2022-08-01 mark
6908 94b80cfa 2022-08-01 mark if (*fte != NULL) {
6909 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
6910 94b80cfa 2022-08-01 mark first += off; /* account for ".." */
6911 94b80cfa 2022-08-01 mark }
6912 94b80cfa 2022-08-01 mark last = got_tree_entry_get_index(*lte);
6913 94b80cfa 2022-08-01 mark last += off;
6914 94b80cfa 2022-08-01 mark
6915 94b80cfa 2022-08-01 mark if (g >= first && g <= last && g - first < nlines) {
6916 94b80cfa 2022-08-01 mark s->selected = g - first;
6917 94b80cfa 2022-08-01 mark return NULL; /* gline is on the current page */
6918 94b80cfa 2022-08-01 mark }
6919 94b80cfa 2022-08-01 mark
6920 94b80cfa 2022-08-01 mark if (*ste != NULL) {
6921 94b80cfa 2022-08-01 mark i = got_tree_entry_get_index(*ste);
6922 94b80cfa 2022-08-01 mark i += off;
6923 94b80cfa 2022-08-01 mark }
6924 94b80cfa 2022-08-01 mark
6925 94b80cfa 2022-08-01 mark if (i < g) {
6926 94b80cfa 2022-08-01 mark err = tree_scroll_down(view, g - i);
6927 94b80cfa 2022-08-01 mark if (err)
6928 94b80cfa 2022-08-01 mark return err;
6929 94b80cfa 2022-08-01 mark if (got_tree_entry_get_index(*lte) >=
6930 94b80cfa 2022-08-01 mark got_object_tree_get_nentries(s->tree) - 1 &&
6931 94b80cfa 2022-08-01 mark first + s->selected < g &&
6932 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1) {
6933 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
6934 94b80cfa 2022-08-01 mark first += off;
6935 94b80cfa 2022-08-01 mark s->selected = g - first;
6936 94b80cfa 2022-08-01 mark }
6937 94b80cfa 2022-08-01 mark } else if (i > g)
6938 94b80cfa 2022-08-01 mark tree_scroll_up(s, i - g);
6939 94b80cfa 2022-08-01 mark
6940 94b80cfa 2022-08-01 mark if (g < nlines &&
6941 94b80cfa 2022-08-01 mark (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
6942 94b80cfa 2022-08-01 mark s->selected = g - 1;
6943 94b80cfa 2022-08-01 mark
6944 94b80cfa 2022-08-01 mark return NULL;
6945 e5a0f69f 2018-08-18 stsp }
6946 ce52c690 2018-06-23 stsp
6947 e5a0f69f 2018-08-18 stsp static const struct got_error *
6948 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
6949 e5a0f69f 2018-08-18 stsp {
6950 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6951 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
6952 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
6953 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 3;
6954 ffd1d5e5 2018-06-23 stsp
6955 94b80cfa 2022-08-01 mark if (view->gline)
6956 94b80cfa 2022-08-01 mark return tree_goto_line(view, nscroll);
6957 94b80cfa 2022-08-01 mark
6958 e5a0f69f 2018-08-18 stsp switch (ch) {
6959 1e37a5c2 2019-05-12 jcs case 'i':
6960 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
6961 640cd7ff 2022-06-22 mark view->count = 0;
6962 1e37a5c2 2019-05-12 jcs break;
6963 5e98fb33 2022-07-22 mark case 'L':
6964 640cd7ff 2022-06-22 mark view->count = 0;
6965 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
6966 ffd1d5e5 2018-06-23 stsp break;
6967 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6968 152c1c93 2020-11-29 stsp break;
6969 5e98fb33 2022-07-22 mark case 'R':
6970 640cd7ff 2022-06-22 mark view->count = 0;
6971 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
6972 e4526bf5 2021-09-03 naddy break;
6973 e4526bf5 2021-09-03 naddy case 'g':
6974 e4526bf5 2021-09-03 naddy case KEY_HOME:
6975 e4526bf5 2021-09-03 naddy s->selected = 0;
6976 640cd7ff 2022-06-22 mark view->count = 0;
6977 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
6978 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
6979 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
6980 e4526bf5 2021-09-03 naddy else
6981 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
6982 1e37a5c2 2019-05-12 jcs break;
6983 e4526bf5 2021-09-03 naddy case 'G':
6984 9b058f45 2022-06-30 mark case KEY_END: {
6985 9b058f45 2022-06-30 mark int eos = view->nlines - 3;
6986 9b058f45 2022-06-30 mark
6987 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
6988 9b058f45 2022-06-30 mark --eos; /* border */
6989 e4526bf5 2021-09-03 naddy s->selected = 0;
6990 640cd7ff 2022-06-22 mark view->count = 0;
6991 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
6992 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
6993 e4526bf5 2021-09-03 naddy if (te == NULL) {
6994 ad055527 2022-07-16 mark if (s->tree != s->root) {
6995 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
6996 e4526bf5 2021-09-03 naddy n++;
6997 e4526bf5 2021-09-03 naddy }
6998 e4526bf5 2021-09-03 naddy break;
6999 e4526bf5 2021-09-03 naddy }
7000 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7001 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7002 e4526bf5 2021-09-03 naddy }
7003 e4526bf5 2021-09-03 naddy if (n > 0)
7004 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7005 e4526bf5 2021-09-03 naddy break;
7006 9b058f45 2022-06-30 mark }
7007 1e37a5c2 2019-05-12 jcs case 'k':
7008 1e37a5c2 2019-05-12 jcs case KEY_UP:
7009 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7010 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7011 1e37a5c2 2019-05-12 jcs s->selected--;
7012 fa86c4bf 2020-11-29 stsp break;
7013 1e37a5c2 2019-05-12 jcs }
7014 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7015 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7016 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7017 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7018 640cd7ff 2022-06-22 mark view->count = 0;
7019 1e37a5c2 2019-05-12 jcs break;
7020 83cc4199 2022-06-13 stsp case CTRL('u'):
7021 33c3719a 2022-06-15 stsp case 'u':
7022 83cc4199 2022-06-13 stsp nscroll /= 2;
7023 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7024 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7025 ea025d1d 2020-02-22 naddy case CTRL('b'):
7026 61417565 2022-06-20 mark case 'b':
7027 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7028 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7029 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7030 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7031 fa86c4bf 2020-11-29 stsp } else {
7032 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7033 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7034 fa86c4bf 2020-11-29 stsp }
7035 83cc4199 2022-06-13 stsp tree_scroll_up(s, MAX(0, nscroll));
7036 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7037 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7038 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7039 640cd7ff 2022-06-22 mark view->count = 0;
7040 1e37a5c2 2019-05-12 jcs break;
7041 1e37a5c2 2019-05-12 jcs case 'j':
7042 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7043 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7044 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7045 1e37a5c2 2019-05-12 jcs s->selected++;
7046 1e37a5c2 2019-05-12 jcs break;
7047 1e37a5c2 2019-05-12 jcs }
7048 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7049 640cd7ff 2022-06-22 mark == NULL) {
7050 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7051 640cd7ff 2022-06-22 mark view->count = 0;
7052 1e37a5c2 2019-05-12 jcs break;
7053 640cd7ff 2022-06-22 mark }
7054 9b058f45 2022-06-30 mark tree_scroll_down(view, 1);
7055 1e37a5c2 2019-05-12 jcs break;
7056 83cc4199 2022-06-13 stsp case CTRL('d'):
7057 33c3719a 2022-06-15 stsp case 'd':
7058 83cc4199 2022-06-13 stsp nscroll /= 2;
7059 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7060 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7061 ea025d1d 2020-02-22 naddy case CTRL('f'):
7062 61417565 2022-06-20 mark case 'f':
7063 48bb96f0 2022-06-20 naddy case ' ':
7064 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7065 1e37a5c2 2019-05-12 jcs == NULL) {
7066 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7067 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7068 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7069 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7070 640cd7ff 2022-06-22 mark else
7071 640cd7ff 2022-06-22 mark view->count = 0;
7072 1e37a5c2 2019-05-12 jcs break;
7073 1e37a5c2 2019-05-12 jcs }
7074 9b058f45 2022-06-30 mark tree_scroll_down(view, nscroll);
7075 1e37a5c2 2019-05-12 jcs break;
7076 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7077 1e37a5c2 2019-05-12 jcs case '\r':
7078 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7079 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7080 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7081 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7082 640cd7ff 2022-06-22 mark if (s->tree == s->root) {
7083 640cd7ff 2022-06-22 mark view->count = 0;
7084 1e37a5c2 2019-05-12 jcs break;
7085 640cd7ff 2022-06-22 mark }
7086 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7087 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7088 1e37a5c2 2019-05-12 jcs entry);
7089 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7090 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7091 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7092 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7093 1e37a5c2 2019-05-12 jcs s->selected_entry =
7094 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7095 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7096 9b058f45 2022-06-30 mark if (s->selected > view->nlines - 3) {
7097 9b058f45 2022-06-30 mark err = offset_selection_down(view);
7098 9b058f45 2022-06-30 mark if (err)
7099 9b058f45 2022-06-30 mark break;
7100 9b058f45 2022-06-30 mark }
7101 1e37a5c2 2019-05-12 jcs free(parent);
7102 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7103 56e0773d 2019-11-28 stsp s->selected_entry))) {
7104 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7105 640cd7ff 2022-06-22 mark view->count = 0;
7106 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7107 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7108 1e37a5c2 2019-05-12 jcs if (err)
7109 1e37a5c2 2019-05-12 jcs break;
7110 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7111 941e9f74 2019-05-21 stsp if (err) {
7112 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7113 1e37a5c2 2019-05-12 jcs break;
7114 1e37a5c2 2019-05-12 jcs }
7115 136e2bd4 2022-07-23 mark } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7116 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7117 1e37a5c2 2019-05-12 jcs break;
7118 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7119 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7120 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7121 640cd7ff 2022-06-22 mark view->count = 0;
7122 1e37a5c2 2019-05-12 jcs break;
7123 1e37a5c2 2019-05-12 jcs default:
7124 640cd7ff 2022-06-22 mark view->count = 0;
7125 1e37a5c2 2019-05-12 jcs break;
7126 ffd1d5e5 2018-06-23 stsp }
7127 e5a0f69f 2018-08-18 stsp
7128 ffd1d5e5 2018-06-23 stsp return err;
7129 9f7d7167 2018-04-29 stsp }
7130 9f7d7167 2018-04-29 stsp
7131 ffd1d5e5 2018-06-23 stsp __dead static void
7132 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7133 ffd1d5e5 2018-06-23 stsp {
7134 ffd1d5e5 2018-06-23 stsp endwin();
7135 87411fa9 2022-06-16 stsp fprintf(stderr,
7136 87411fa9 2022-06-16 stsp "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7137 ffd1d5e5 2018-06-23 stsp getprogname());
7138 ffd1d5e5 2018-06-23 stsp exit(1);
7139 ffd1d5e5 2018-06-23 stsp }
7140 ffd1d5e5 2018-06-23 stsp
7141 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7142 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7143 ffd1d5e5 2018-06-23 stsp {
7144 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7145 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7146 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7147 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7148 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7149 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
7150 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7151 4e97c21c 2020-12-06 stsp char *label = NULL;
7152 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7153 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7154 ffd1d5e5 2018-06-23 stsp int ch;
7155 5221c383 2018-08-01 stsp struct tog_view *view;
7156 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
7157 70ac5f84 2019-03-28 stsp
7158 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7159 ffd1d5e5 2018-06-23 stsp switch (ch) {
7160 ffd1d5e5 2018-06-23 stsp case 'c':
7161 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7162 74283ab8 2020-02-07 stsp break;
7163 74283ab8 2020-02-07 stsp case 'r':
7164 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7165 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7166 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7167 74283ab8 2020-02-07 stsp optarg);
7168 ffd1d5e5 2018-06-23 stsp break;
7169 ffd1d5e5 2018-06-23 stsp default:
7170 e99e2d15 2020-11-24 naddy usage_tree();
7171 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7172 ffd1d5e5 2018-06-23 stsp }
7173 ffd1d5e5 2018-06-23 stsp }
7174 ffd1d5e5 2018-06-23 stsp
7175 ffd1d5e5 2018-06-23 stsp argc -= optind;
7176 ffd1d5e5 2018-06-23 stsp argv += optind;
7177 ffd1d5e5 2018-06-23 stsp
7178 55cccc34 2020-02-20 stsp if (argc > 1)
7179 e99e2d15 2020-11-24 naddy usage_tree();
7180 0ae84acc 2022-06-15 tracey
7181 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
7182 0ae84acc 2022-06-15 tracey if (error != NULL)
7183 0ae84acc 2022-06-15 tracey goto done;
7184 74283ab8 2020-02-07 stsp
7185 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7186 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7187 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7188 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7189 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7190 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7191 c156c7a4 2020-12-18 stsp goto done;
7192 55cccc34 2020-02-20 stsp if (worktree)
7193 52185f70 2019-02-05 stsp repo_path =
7194 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7195 55cccc34 2020-02-20 stsp else
7196 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7197 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7198 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7199 c156c7a4 2020-12-18 stsp goto done;
7200 c156c7a4 2020-12-18 stsp }
7201 55cccc34 2020-02-20 stsp }
7202 a915003a 2019-02-05 stsp
7203 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7204 c02c541e 2019-03-29 stsp if (error != NULL)
7205 52185f70 2019-02-05 stsp goto done;
7206 d188b9a6 2019-01-04 stsp
7207 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7208 55cccc34 2020-02-20 stsp repo, worktree);
7209 55cccc34 2020-02-20 stsp if (error)
7210 55cccc34 2020-02-20 stsp goto done;
7211 55cccc34 2020-02-20 stsp
7212 55cccc34 2020-02-20 stsp init_curses();
7213 55cccc34 2020-02-20 stsp
7214 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7215 c02c541e 2019-03-29 stsp if (error)
7216 52185f70 2019-02-05 stsp goto done;
7217 ffd1d5e5 2018-06-23 stsp
7218 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
7219 51a10b52 2020-12-26 stsp if (error)
7220 51a10b52 2020-12-26 stsp goto done;
7221 51a10b52 2020-12-26 stsp
7222 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7223 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7224 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7225 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7226 4e97c21c 2020-12-06 stsp if (error)
7227 4e97c21c 2020-12-06 stsp goto done;
7228 4e97c21c 2020-12-06 stsp head_ref_name = label;
7229 4e97c21c 2020-12-06 stsp } else {
7230 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7231 4e97c21c 2020-12-06 stsp if (error == NULL)
7232 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7233 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7234 4e97c21c 2020-12-06 stsp goto done;
7235 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7236 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7237 4e97c21c 2020-12-06 stsp if (error)
7238 4e97c21c 2020-12-06 stsp goto done;
7239 4e97c21c 2020-12-06 stsp }
7240 ffd1d5e5 2018-06-23 stsp
7241 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
7242 a44927cc 2022-04-07 stsp if (error)
7243 a44927cc 2022-04-07 stsp goto done;
7244 a44927cc 2022-04-07 stsp
7245 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7246 5221c383 2018-08-01 stsp if (view == NULL) {
7247 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7248 5221c383 2018-08-01 stsp goto done;
7249 5221c383 2018-08-01 stsp }
7250 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7251 ad80ab7b 2018-08-04 stsp if (error)
7252 ad80ab7b 2018-08-04 stsp goto done;
7253 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7254 a44927cc 2022-04-07 stsp error = tree_view_walk_path(&view->state.tree, commit,
7255 d91faf3b 2020-12-01 naddy in_repo_path);
7256 55cccc34 2020-02-20 stsp if (error)
7257 55cccc34 2020-02-20 stsp goto done;
7258 55cccc34 2020-02-20 stsp }
7259 55cccc34 2020-02-20 stsp
7260 55cccc34 2020-02-20 stsp if (worktree) {
7261 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7262 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7263 55cccc34 2020-02-20 stsp worktree = NULL;
7264 55cccc34 2020-02-20 stsp }
7265 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7266 ffd1d5e5 2018-06-23 stsp done:
7267 52185f70 2019-02-05 stsp free(repo_path);
7268 e4a0e26d 2020-02-20 stsp free(cwd);
7269 ffd1d5e5 2018-06-23 stsp free(commit_id);
7270 4e97c21c 2020-12-06 stsp free(label);
7271 486cd271 2020-12-06 stsp if (ref)
7272 486cd271 2020-12-06 stsp got_ref_close(ref);
7273 1d0f4054 2021-06-17 stsp if (repo) {
7274 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7275 1d0f4054 2021-06-17 stsp if (error == NULL)
7276 1d0f4054 2021-06-17 stsp error = close_err;
7277 1d0f4054 2021-06-17 stsp }
7278 0ae84acc 2022-06-15 tracey if (pack_fds) {
7279 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
7280 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
7281 0ae84acc 2022-06-15 tracey if (error == NULL)
7282 0ae84acc 2022-06-15 tracey error = pack_err;
7283 0ae84acc 2022-06-15 tracey }
7284 51a10b52 2020-12-26 stsp tog_free_refs();
7285 ffd1d5e5 2018-06-23 stsp return error;
7286 6458efa5 2020-11-24 stsp }
7287 6458efa5 2020-11-24 stsp
7288 6458efa5 2020-11-24 stsp static const struct got_error *
7289 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7290 6458efa5 2020-11-24 stsp {
7291 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7292 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7293 6458efa5 2020-11-24 stsp
7294 6458efa5 2020-11-24 stsp s->nrefs = 0;
7295 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7296 cc488aa7 2022-01-23 stsp if (strncmp(got_ref_get_name(sre->ref),
7297 cc488aa7 2022-01-23 stsp "refs/got/", 9) == 0 &&
7298 cc488aa7 2022-01-23 stsp strncmp(got_ref_get_name(sre->ref),
7299 cc488aa7 2022-01-23 stsp "refs/got/backup/", 16) != 0)
7300 6458efa5 2020-11-24 stsp continue;
7301 6458efa5 2020-11-24 stsp
7302 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7303 6458efa5 2020-11-24 stsp if (re == NULL)
7304 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7305 6458efa5 2020-11-24 stsp
7306 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7307 8924d611 2020-12-26 stsp if (re->ref == NULL)
7308 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7309 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7310 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7311 6458efa5 2020-11-24 stsp }
7312 6458efa5 2020-11-24 stsp
7313 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7314 6458efa5 2020-11-24 stsp return NULL;
7315 6458efa5 2020-11-24 stsp }
7316 6458efa5 2020-11-24 stsp
7317 336075a4 2022-06-25 op static void
7318 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7319 6458efa5 2020-11-24 stsp {
7320 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7321 6458efa5 2020-11-24 stsp
7322 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7323 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7324 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7325 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7326 6458efa5 2020-11-24 stsp free(re);
7327 6458efa5 2020-11-24 stsp }
7328 6458efa5 2020-11-24 stsp }
7329 6458efa5 2020-11-24 stsp
7330 6458efa5 2020-11-24 stsp static const struct got_error *
7331 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7332 6458efa5 2020-11-24 stsp {
7333 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7334 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7335 6458efa5 2020-11-24 stsp
7336 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7337 6458efa5 2020-11-24 stsp s->repo = repo;
7338 6458efa5 2020-11-24 stsp
7339 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7340 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7341 6458efa5 2020-11-24 stsp
7342 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7343 6458efa5 2020-11-24 stsp if (err)
7344 6458efa5 2020-11-24 stsp return err;
7345 34ba6917 2020-11-30 stsp
7346 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7347 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7348 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7349 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7350 6458efa5 2020-11-24 stsp if (err)
7351 6458efa5 2020-11-24 stsp goto done;
7352 6458efa5 2020-11-24 stsp
7353 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7354 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7355 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7356 6458efa5 2020-11-24 stsp if (err)
7357 6458efa5 2020-11-24 stsp goto done;
7358 6458efa5 2020-11-24 stsp
7359 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7360 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7361 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7362 cc488aa7 2022-01-23 stsp if (err)
7363 cc488aa7 2022-01-23 stsp goto done;
7364 cc488aa7 2022-01-23 stsp
7365 cc488aa7 2022-01-23 stsp err = add_color(&s->colors, "^refs/got/backup/",
7366 cc488aa7 2022-01-23 stsp TOG_COLOR_REFS_BACKUP,
7367 cc488aa7 2022-01-23 stsp get_color_value("TOG_COLOR_REFS_BACKUP"));
7368 6458efa5 2020-11-24 stsp if (err)
7369 6458efa5 2020-11-24 stsp goto done;
7370 6458efa5 2020-11-24 stsp }
7371 6458efa5 2020-11-24 stsp
7372 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7373 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7374 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7375 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7376 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7377 6458efa5 2020-11-24 stsp done:
7378 6458efa5 2020-11-24 stsp if (err)
7379 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7380 6458efa5 2020-11-24 stsp return err;
7381 6458efa5 2020-11-24 stsp }
7382 6458efa5 2020-11-24 stsp
7383 6458efa5 2020-11-24 stsp static const struct got_error *
7384 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7385 6458efa5 2020-11-24 stsp {
7386 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7387 6458efa5 2020-11-24 stsp
7388 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7389 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7390 6458efa5 2020-11-24 stsp
7391 6458efa5 2020-11-24 stsp return NULL;
7392 9f7d7167 2018-04-29 stsp }
7393 ce5b7c56 2019-07-09 stsp
7394 6458efa5 2020-11-24 stsp static const struct got_error *
7395 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7396 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7397 6458efa5 2020-11-24 stsp {
7398 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7399 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7400 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7401 6458efa5 2020-11-24 stsp int obj_type;
7402 6458efa5 2020-11-24 stsp
7403 c42c9805 2020-11-24 stsp *commit_id = NULL;
7404 6458efa5 2020-11-24 stsp
7405 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7406 6458efa5 2020-11-24 stsp if (err)
7407 6458efa5 2020-11-24 stsp return err;
7408 6458efa5 2020-11-24 stsp
7409 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7410 6458efa5 2020-11-24 stsp if (err)
7411 6458efa5 2020-11-24 stsp goto done;
7412 6458efa5 2020-11-24 stsp
7413 6458efa5 2020-11-24 stsp switch (obj_type) {
7414 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7415 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7416 6458efa5 2020-11-24 stsp break;
7417 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7418 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7419 6458efa5 2020-11-24 stsp if (err)
7420 6458efa5 2020-11-24 stsp goto done;
7421 c42c9805 2020-11-24 stsp free(obj_id);
7422 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7423 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7424 c42c9805 2020-11-24 stsp if (err)
7425 6458efa5 2020-11-24 stsp goto done;
7426 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7427 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7428 c42c9805 2020-11-24 stsp goto done;
7429 c42c9805 2020-11-24 stsp }
7430 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7431 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7432 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7433 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7434 c42c9805 2020-11-24 stsp goto done;
7435 c42c9805 2020-11-24 stsp }
7436 6458efa5 2020-11-24 stsp break;
7437 6458efa5 2020-11-24 stsp default:
7438 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7439 c42c9805 2020-11-24 stsp break;
7440 6458efa5 2020-11-24 stsp }
7441 6458efa5 2020-11-24 stsp
7442 c42c9805 2020-11-24 stsp done:
7443 c42c9805 2020-11-24 stsp if (tag)
7444 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7445 c42c9805 2020-11-24 stsp if (err) {
7446 c42c9805 2020-11-24 stsp free(*commit_id);
7447 c42c9805 2020-11-24 stsp *commit_id = NULL;
7448 c42c9805 2020-11-24 stsp }
7449 c42c9805 2020-11-24 stsp return err;
7450 c42c9805 2020-11-24 stsp }
7451 c42c9805 2020-11-24 stsp
7452 c42c9805 2020-11-24 stsp static const struct got_error *
7453 9b058f45 2022-06-30 mark log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7454 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7455 c42c9805 2020-11-24 stsp {
7456 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7457 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7458 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7459 c42c9805 2020-11-24 stsp
7460 c42c9805 2020-11-24 stsp *new_view = NULL;
7461 c42c9805 2020-11-24 stsp
7462 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7463 c42c9805 2020-11-24 stsp if (err) {
7464 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7465 c42c9805 2020-11-24 stsp return err;
7466 c42c9805 2020-11-24 stsp else
7467 c42c9805 2020-11-24 stsp return NULL;
7468 c42c9805 2020-11-24 stsp }
7469 c42c9805 2020-11-24 stsp
7470 9b058f45 2022-06-30 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7471 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7472 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7473 6458efa5 2020-11-24 stsp goto done;
7474 6458efa5 2020-11-24 stsp }
7475 6458efa5 2020-11-24 stsp
7476 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7477 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7478 6458efa5 2020-11-24 stsp done:
7479 6458efa5 2020-11-24 stsp if (err)
7480 6458efa5 2020-11-24 stsp view_close(log_view);
7481 6458efa5 2020-11-24 stsp else
7482 6458efa5 2020-11-24 stsp *new_view = log_view;
7483 c42c9805 2020-11-24 stsp free(commit_id);
7484 6458efa5 2020-11-24 stsp return err;
7485 6458efa5 2020-11-24 stsp }
7486 6458efa5 2020-11-24 stsp
7487 ce5b7c56 2019-07-09 stsp static void
7488 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7489 6458efa5 2020-11-24 stsp {
7490 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7491 34ba6917 2020-11-30 stsp int i = 0;
7492 6458efa5 2020-11-24 stsp
7493 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7494 6458efa5 2020-11-24 stsp return;
7495 6458efa5 2020-11-24 stsp
7496 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7497 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7498 34ba6917 2020-11-30 stsp if (re == NULL)
7499 34ba6917 2020-11-30 stsp break;
7500 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7501 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7502 6458efa5 2020-11-24 stsp }
7503 6458efa5 2020-11-24 stsp }
7504 6458efa5 2020-11-24 stsp
7505 9b058f45 2022-06-30 mark static const struct got_error *
7506 9b058f45 2022-06-30 mark ref_scroll_down(struct tog_view *view, int maxscroll)
7507 6458efa5 2020-11-24 stsp {
7508 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
7509 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7510 6458efa5 2020-11-24 stsp int n = 0;
7511 6458efa5 2020-11-24 stsp
7512 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7513 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7514 6458efa5 2020-11-24 stsp else
7515 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7516 6458efa5 2020-11-24 stsp
7517 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7518 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
7519 94b80cfa 2022-08-01 mark if (last) {
7520 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
7521 9b058f45 2022-06-30 mark last = TAILQ_NEXT(last, entry);
7522 94b80cfa 2022-08-01 mark }
7523 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7524 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7525 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7526 6458efa5 2020-11-24 stsp }
7527 6458efa5 2020-11-24 stsp }
7528 9b058f45 2022-06-30 mark
7529 9b058f45 2022-06-30 mark return NULL;
7530 6458efa5 2020-11-24 stsp }
7531 6458efa5 2020-11-24 stsp
7532 6458efa5 2020-11-24 stsp static const struct got_error *
7533 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7534 6458efa5 2020-11-24 stsp {
7535 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7536 6458efa5 2020-11-24 stsp
7537 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7538 6458efa5 2020-11-24 stsp return NULL;
7539 6458efa5 2020-11-24 stsp }
7540 6458efa5 2020-11-24 stsp
7541 6458efa5 2020-11-24 stsp static int
7542 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7543 6458efa5 2020-11-24 stsp {
7544 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7545 6458efa5 2020-11-24 stsp
7546 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7547 6458efa5 2020-11-24 stsp 0) == 0;
7548 6458efa5 2020-11-24 stsp }
7549 6458efa5 2020-11-24 stsp
7550 6458efa5 2020-11-24 stsp static const struct got_error *
7551 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7552 6458efa5 2020-11-24 stsp {
7553 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7554 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7555 6458efa5 2020-11-24 stsp
7556 6458efa5 2020-11-24 stsp if (!view->searching) {
7557 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7558 6458efa5 2020-11-24 stsp return NULL;
7559 6458efa5 2020-11-24 stsp }
7560 6458efa5 2020-11-24 stsp
7561 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7562 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7563 6458efa5 2020-11-24 stsp if (s->selected_entry)
7564 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7565 6458efa5 2020-11-24 stsp else
7566 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7567 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7568 6458efa5 2020-11-24 stsp } else {
7569 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7570 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7571 6458efa5 2020-11-24 stsp else
7572 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7573 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7574 6458efa5 2020-11-24 stsp }
7575 6458efa5 2020-11-24 stsp } else {
7576 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7577 487cd7d2 2021-12-17 stsp re = s->selected_entry;
7578 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7579 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7580 6458efa5 2020-11-24 stsp else
7581 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7582 6458efa5 2020-11-24 stsp }
7583 6458efa5 2020-11-24 stsp
7584 6458efa5 2020-11-24 stsp while (1) {
7585 6458efa5 2020-11-24 stsp if (re == NULL) {
7586 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7587 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7588 6458efa5 2020-11-24 stsp return NULL;
7589 6458efa5 2020-11-24 stsp }
7590 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7591 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7592 6458efa5 2020-11-24 stsp else
7593 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7594 6458efa5 2020-11-24 stsp }
7595 6458efa5 2020-11-24 stsp
7596 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7597 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7598 6458efa5 2020-11-24 stsp s->matched_entry = re;
7599 6458efa5 2020-11-24 stsp break;
7600 6458efa5 2020-11-24 stsp }
7601 6458efa5 2020-11-24 stsp
7602 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7603 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7604 6458efa5 2020-11-24 stsp else
7605 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7606 6458efa5 2020-11-24 stsp }
7607 6458efa5 2020-11-24 stsp
7608 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7609 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7610 6458efa5 2020-11-24 stsp s->selected = 0;
7611 6458efa5 2020-11-24 stsp }
7612 6458efa5 2020-11-24 stsp
7613 6458efa5 2020-11-24 stsp return NULL;
7614 6458efa5 2020-11-24 stsp }
7615 6458efa5 2020-11-24 stsp
7616 6458efa5 2020-11-24 stsp static const struct got_error *
7617 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7618 6458efa5 2020-11-24 stsp {
7619 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7620 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7621 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7622 6458efa5 2020-11-24 stsp char *line = NULL;
7623 6458efa5 2020-11-24 stsp wchar_t *wline;
7624 6458efa5 2020-11-24 stsp struct tog_color *tc;
7625 6458efa5 2020-11-24 stsp int width, n;
7626 6458efa5 2020-11-24 stsp int limit = view->nlines;
7627 6458efa5 2020-11-24 stsp
7628 6458efa5 2020-11-24 stsp werase(view->window);
7629 6458efa5 2020-11-24 stsp
7630 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7631 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
7632 9b058f45 2022-06-30 mark --limit; /* border */
7633 6458efa5 2020-11-24 stsp
7634 6458efa5 2020-11-24 stsp if (limit == 0)
7635 6458efa5 2020-11-24 stsp return NULL;
7636 6458efa5 2020-11-24 stsp
7637 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7638 6458efa5 2020-11-24 stsp
7639 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7640 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7641 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7642 6458efa5 2020-11-24 stsp
7643 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7644 6458efa5 2020-11-24 stsp if (err) {
7645 6458efa5 2020-11-24 stsp free(line);
7646 6458efa5 2020-11-24 stsp return err;
7647 6458efa5 2020-11-24 stsp }
7648 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7649 6458efa5 2020-11-24 stsp wstandout(view->window);
7650 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7651 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7652 6458efa5 2020-11-24 stsp wstandend(view->window);
7653 6458efa5 2020-11-24 stsp free(wline);
7654 6458efa5 2020-11-24 stsp wline = NULL;
7655 6458efa5 2020-11-24 stsp free(line);
7656 6458efa5 2020-11-24 stsp line = NULL;
7657 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
7658 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
7659 6458efa5 2020-11-24 stsp if (--limit <= 0)
7660 6458efa5 2020-11-24 stsp return NULL;
7661 6458efa5 2020-11-24 stsp
7662 6458efa5 2020-11-24 stsp n = 0;
7663 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7664 6458efa5 2020-11-24 stsp char *line = NULL;
7665 b4996bee 2022-06-16 stsp char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7666 6458efa5 2020-11-24 stsp
7667 b4996bee 2022-06-16 stsp if (s->show_date) {
7668 b4996bee 2022-06-16 stsp struct got_commit_object *ci;
7669 b4996bee 2022-06-16 stsp struct got_tag_object *tag;
7670 b4996bee 2022-06-16 stsp struct got_object_id *id;
7671 b4996bee 2022-06-16 stsp struct tm tm;
7672 b4996bee 2022-06-16 stsp time_t t;
7673 b4996bee 2022-06-16 stsp
7674 b4996bee 2022-06-16 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7675 b4996bee 2022-06-16 stsp if (err)
7676 b4996bee 2022-06-16 stsp return err;
7677 b4996bee 2022-06-16 stsp err = got_object_open_as_tag(&tag, s->repo, id);
7678 b4996bee 2022-06-16 stsp if (err) {
7679 b4996bee 2022-06-16 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
7680 b4996bee 2022-06-16 stsp free(id);
7681 b4996bee 2022-06-16 stsp return err;
7682 b4996bee 2022-06-16 stsp }
7683 b4996bee 2022-06-16 stsp err = got_object_open_as_commit(&ci, s->repo,
7684 b4996bee 2022-06-16 stsp id);
7685 b4996bee 2022-06-16 stsp if (err) {
7686 b4996bee 2022-06-16 stsp free(id);
7687 b4996bee 2022-06-16 stsp return err;
7688 b4996bee 2022-06-16 stsp }
7689 b4996bee 2022-06-16 stsp t = got_object_commit_get_committer_time(ci);
7690 b4996bee 2022-06-16 stsp got_object_commit_close(ci);
7691 b4996bee 2022-06-16 stsp } else {
7692 b4996bee 2022-06-16 stsp t = got_object_tag_get_tagger_time(tag);
7693 b4996bee 2022-06-16 stsp got_object_tag_close(tag);
7694 b4996bee 2022-06-16 stsp }
7695 b4996bee 2022-06-16 stsp free(id);
7696 b4996bee 2022-06-16 stsp if (gmtime_r(&t, &tm) == NULL)
7697 b4996bee 2022-06-16 stsp return got_error_from_errno("gmtime_r");
7698 b4996bee 2022-06-16 stsp if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
7699 b4996bee 2022-06-16 stsp return got_error(GOT_ERR_NO_SPACE);
7700 b4996bee 2022-06-16 stsp }
7701 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
7702 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s -> %s", s->show_date ?
7703 b4996bee 2022-06-16 stsp ymd : "", got_ref_get_name(re->ref),
7704 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
7705 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7706 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
7707 6458efa5 2020-11-24 stsp struct got_object_id *id;
7708 6458efa5 2020-11-24 stsp char *id_str;
7709 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7710 6458efa5 2020-11-24 stsp if (err)
7711 6458efa5 2020-11-24 stsp return err;
7712 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
7713 6458efa5 2020-11-24 stsp if (err) {
7714 6458efa5 2020-11-24 stsp free(id);
7715 6458efa5 2020-11-24 stsp return err;
7716 6458efa5 2020-11-24 stsp }
7717 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
7718 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
7719 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
7720 6458efa5 2020-11-24 stsp free(id);
7721 6458efa5 2020-11-24 stsp free(id_str);
7722 6458efa5 2020-11-24 stsp return err;
7723 6458efa5 2020-11-24 stsp }
7724 6458efa5 2020-11-24 stsp free(id);
7725 6458efa5 2020-11-24 stsp free(id_str);
7726 b4996bee 2022-06-16 stsp } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
7727 b4996bee 2022-06-16 stsp got_ref_get_name(re->ref)) == -1)
7728 b4996bee 2022-06-16 stsp return got_error_from_errno("asprintf");
7729 6458efa5 2020-11-24 stsp
7730 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
7731 ccda2f4d 2022-06-16 stsp 0, 0);
7732 6458efa5 2020-11-24 stsp if (err) {
7733 6458efa5 2020-11-24 stsp free(line);
7734 6458efa5 2020-11-24 stsp return err;
7735 6458efa5 2020-11-24 stsp }
7736 6458efa5 2020-11-24 stsp if (n == s->selected) {
7737 6458efa5 2020-11-24 stsp if (view->focussed)
7738 6458efa5 2020-11-24 stsp wstandout(view->window);
7739 6458efa5 2020-11-24 stsp s->selected_entry = re;
7740 6458efa5 2020-11-24 stsp }
7741 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
7742 6458efa5 2020-11-24 stsp if (tc)
7743 6458efa5 2020-11-24 stsp wattr_on(view->window,
7744 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
7745 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7746 6458efa5 2020-11-24 stsp if (tc)
7747 6458efa5 2020-11-24 stsp wattr_off(view->window,
7748 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
7749 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
7750 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
7751 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
7752 6458efa5 2020-11-24 stsp wstandend(view->window);
7753 6458efa5 2020-11-24 stsp free(line);
7754 6458efa5 2020-11-24 stsp free(wline);
7755 6458efa5 2020-11-24 stsp wline = NULL;
7756 6458efa5 2020-11-24 stsp n++;
7757 6458efa5 2020-11-24 stsp s->ndisplayed++;
7758 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
7759 6458efa5 2020-11-24 stsp
7760 6458efa5 2020-11-24 stsp limit--;
7761 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7762 6458efa5 2020-11-24 stsp }
7763 6458efa5 2020-11-24 stsp
7764 9b058f45 2022-06-30 mark view_border(view);
7765 6458efa5 2020-11-24 stsp return err;
7766 6458efa5 2020-11-24 stsp }
7767 6458efa5 2020-11-24 stsp
7768 6458efa5 2020-11-24 stsp static const struct got_error *
7769 49b24ee5 2022-07-03 mark browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
7770 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7771 c42c9805 2020-11-24 stsp {
7772 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7773 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
7774 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
7775 c42c9805 2020-11-24 stsp
7776 c42c9805 2020-11-24 stsp *new_view = NULL;
7777 c42c9805 2020-11-24 stsp
7778 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7779 c42c9805 2020-11-24 stsp if (err) {
7780 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7781 c42c9805 2020-11-24 stsp return err;
7782 c42c9805 2020-11-24 stsp else
7783 c42c9805 2020-11-24 stsp return NULL;
7784 c42c9805 2020-11-24 stsp }
7785 c42c9805 2020-11-24 stsp
7786 c42c9805 2020-11-24 stsp
7787 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
7788 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
7789 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
7790 c42c9805 2020-11-24 stsp goto done;
7791 c42c9805 2020-11-24 stsp }
7792 c42c9805 2020-11-24 stsp
7793 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
7794 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
7795 c42c9805 2020-11-24 stsp if (err)
7796 c42c9805 2020-11-24 stsp goto done;
7797 c42c9805 2020-11-24 stsp
7798 c42c9805 2020-11-24 stsp *new_view = tree_view;
7799 c42c9805 2020-11-24 stsp done:
7800 c42c9805 2020-11-24 stsp free(commit_id);
7801 c42c9805 2020-11-24 stsp return err;
7802 94b80cfa 2022-08-01 mark }
7803 94b80cfa 2022-08-01 mark
7804 94b80cfa 2022-08-01 mark static const struct got_error *
7805 94b80cfa 2022-08-01 mark ref_goto_line(struct tog_view *view, int nlines)
7806 94b80cfa 2022-08-01 mark {
7807 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
7808 94b80cfa 2022-08-01 mark struct tog_ref_view_state *s = &view->state.ref;
7809 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
7810 94b80cfa 2022-08-01 mark
7811 94b80cfa 2022-08-01 mark g = view->gline;
7812 94b80cfa 2022-08-01 mark view->gline = 0;
7813 94b80cfa 2022-08-01 mark
7814 94b80cfa 2022-08-01 mark if (g == 0)
7815 94b80cfa 2022-08-01 mark g = 1;
7816 94b80cfa 2022-08-01 mark else if (g > s->nrefs)
7817 94b80cfa 2022-08-01 mark g = s->nrefs;
7818 94b80cfa 2022-08-01 mark
7819 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
7820 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
7821 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
7822 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
7823 94b80cfa 2022-08-01 mark return NULL;
7824 94b80cfa 2022-08-01 mark }
7825 94b80cfa 2022-08-01 mark
7826 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
7827 94b80cfa 2022-08-01 mark err = ref_scroll_down(view, g - idx - 1);
7828 94b80cfa 2022-08-01 mark if (err)
7829 94b80cfa 2022-08-01 mark return err;
7830 94b80cfa 2022-08-01 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
7831 94b80cfa 2022-08-01 mark s->first_displayed_entry->idx + s->selected < g &&
7832 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1)
7833 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
7834 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
7835 94b80cfa 2022-08-01 mark ref_scroll_up(s, idx - g + 1);
7836 94b80cfa 2022-08-01 mark
7837 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
7838 94b80cfa 2022-08-01 mark s->selected = g - 1;
7839 94b80cfa 2022-08-01 mark
7840 94b80cfa 2022-08-01 mark return NULL;
7841 94b80cfa 2022-08-01 mark
7842 c42c9805 2020-11-24 stsp }
7843 94b80cfa 2022-08-01 mark
7844 c42c9805 2020-11-24 stsp static const struct got_error *
7845 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
7846 6458efa5 2020-11-24 stsp {
7847 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7848 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7849 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
7850 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 1;
7851 6458efa5 2020-11-24 stsp
7852 94b80cfa 2022-08-01 mark if (view->gline)
7853 94b80cfa 2022-08-01 mark return ref_goto_line(view, nscroll);
7854 94b80cfa 2022-08-01 mark
7855 6458efa5 2020-11-24 stsp switch (ch) {
7856 6458efa5 2020-11-24 stsp case 'i':
7857 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
7858 640cd7ff 2022-06-22 mark view->count = 0;
7859 7f66531d 2021-11-16 stsp break;
7860 b4996bee 2022-06-16 stsp case 'm':
7861 b4996bee 2022-06-16 stsp s->show_date = !s->show_date;
7862 640cd7ff 2022-06-22 mark view->count = 0;
7863 b4996bee 2022-06-16 stsp break;
7864 07a065fe 2021-11-20 stsp case 'o':
7865 7f66531d 2021-11-16 stsp s->sort_by_date = !s->sort_by_date;
7866 640cd7ff 2022-06-22 mark view->count = 0;
7867 50617b77 2021-11-20 stsp err = got_reflist_sort(&tog_refs, s->sort_by_date ?
7868 50617b77 2021-11-20 stsp got_ref_cmp_by_commit_timestamp_descending :
7869 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name, s->repo);
7870 50617b77 2021-11-20 stsp if (err)
7871 50617b77 2021-11-20 stsp break;
7872 50617b77 2021-11-20 stsp got_reflist_object_id_map_free(tog_refs_idmap);
7873 50617b77 2021-11-20 stsp err = got_reflist_object_id_map_create(&tog_refs_idmap,
7874 50617b77 2021-11-20 stsp &tog_refs, s->repo);
7875 7f66531d 2021-11-16 stsp if (err)
7876 7f66531d 2021-11-16 stsp break;
7877 7f66531d 2021-11-16 stsp ref_view_free_refs(s);
7878 7f66531d 2021-11-16 stsp err = ref_view_load_refs(s);
7879 6458efa5 2020-11-24 stsp break;
7880 6458efa5 2020-11-24 stsp case KEY_ENTER:
7881 6458efa5 2020-11-24 stsp case '\r':
7882 640cd7ff 2022-06-22 mark view->count = 0;
7883 6458efa5 2020-11-24 stsp if (!s->selected_entry)
7884 9b058f45 2022-06-30 mark break;
7885 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
7886 6458efa5 2020-11-24 stsp break;
7887 5e98fb33 2022-07-22 mark case 'T':
7888 640cd7ff 2022-06-22 mark view->count = 0;
7889 c42c9805 2020-11-24 stsp if (!s->selected_entry)
7890 c42c9805 2020-11-24 stsp break;
7891 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
7892 c42c9805 2020-11-24 stsp break;
7893 e4526bf5 2021-09-03 naddy case 'g':
7894 e4526bf5 2021-09-03 naddy case KEY_HOME:
7895 e4526bf5 2021-09-03 naddy s->selected = 0;
7896 640cd7ff 2022-06-22 mark view->count = 0;
7897 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7898 e4526bf5 2021-09-03 naddy break;
7899 e4526bf5 2021-09-03 naddy case 'G':
7900 9b058f45 2022-06-30 mark case KEY_END: {
7901 9b058f45 2022-06-30 mark int eos = view->nlines - 1;
7902 9b058f45 2022-06-30 mark
7903 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
7904 9b058f45 2022-06-30 mark --eos; /* border */
7905 e4526bf5 2021-09-03 naddy s->selected = 0;
7906 640cd7ff 2022-06-22 mark view->count = 0;
7907 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
7908 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
7909 e4526bf5 2021-09-03 naddy if (re == NULL)
7910 e4526bf5 2021-09-03 naddy break;
7911 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
7912 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
7913 e4526bf5 2021-09-03 naddy }
7914 e4526bf5 2021-09-03 naddy if (n > 0)
7915 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7916 e4526bf5 2021-09-03 naddy break;
7917 9b058f45 2022-06-30 mark }
7918 6458efa5 2020-11-24 stsp case 'k':
7919 6458efa5 2020-11-24 stsp case KEY_UP:
7920 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7921 6458efa5 2020-11-24 stsp if (s->selected > 0) {
7922 6458efa5 2020-11-24 stsp s->selected--;
7923 6458efa5 2020-11-24 stsp break;
7924 34ba6917 2020-11-30 stsp }
7925 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
7926 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
7927 640cd7ff 2022-06-22 mark view->count = 0;
7928 6458efa5 2020-11-24 stsp break;
7929 83cc4199 2022-06-13 stsp case CTRL('u'):
7930 33c3719a 2022-06-15 stsp case 'u':
7931 83cc4199 2022-06-13 stsp nscroll /= 2;
7932 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7933 6458efa5 2020-11-24 stsp case KEY_PPAGE:
7934 6458efa5 2020-11-24 stsp case CTRL('b'):
7935 61417565 2022-06-20 mark case 'b':
7936 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7937 83cc4199 2022-06-13 stsp s->selected -= MIN(nscroll, s->selected);
7938 83cc4199 2022-06-13 stsp ref_scroll_up(s, MAX(0, nscroll));
7939 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
7940 640cd7ff 2022-06-22 mark view->count = 0;
7941 6458efa5 2020-11-24 stsp break;
7942 6458efa5 2020-11-24 stsp case 'j':
7943 6458efa5 2020-11-24 stsp case KEY_DOWN:
7944 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7945 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
7946 6458efa5 2020-11-24 stsp s->selected++;
7947 6458efa5 2020-11-24 stsp break;
7948 6458efa5 2020-11-24 stsp }
7949 640cd7ff 2022-06-22 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
7950 6458efa5 2020-11-24 stsp /* can't scroll any further */
7951 640cd7ff 2022-06-22 mark view->count = 0;
7952 6458efa5 2020-11-24 stsp break;
7953 640cd7ff 2022-06-22 mark }
7954 9b058f45 2022-06-30 mark ref_scroll_down(view, 1);
7955 6458efa5 2020-11-24 stsp break;
7956 83cc4199 2022-06-13 stsp case CTRL('d'):
7957 33c3719a 2022-06-15 stsp case 'd':
7958 83cc4199 2022-06-13 stsp nscroll /= 2;
7959 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7960 6458efa5 2020-11-24 stsp case KEY_NPAGE:
7961 6458efa5 2020-11-24 stsp case CTRL('f'):
7962 61417565 2022-06-20 mark case 'f':
7963 48bb96f0 2022-06-20 naddy case ' ':
7964 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
7965 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
7966 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
7967 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7968 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7969 640cd7ff 2022-06-22 mark if (view->count > 1 && s->selected < s->ndisplayed - 1)
7970 640cd7ff 2022-06-22 mark s->selected += s->ndisplayed - s->selected - 1;
7971 640cd7ff 2022-06-22 mark view->count = 0;
7972 6458efa5 2020-11-24 stsp break;
7973 6458efa5 2020-11-24 stsp }
7974 9b058f45 2022-06-30 mark ref_scroll_down(view, nscroll);
7975 6458efa5 2020-11-24 stsp break;
7976 6458efa5 2020-11-24 stsp case CTRL('l'):
7977 640cd7ff 2022-06-22 mark view->count = 0;
7978 8924d611 2020-12-26 stsp tog_free_refs();
7979 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, s->sort_by_date);
7980 8924d611 2020-12-26 stsp if (err)
7981 8924d611 2020-12-26 stsp break;
7982 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7983 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7984 6458efa5 2020-11-24 stsp break;
7985 6458efa5 2020-11-24 stsp case KEY_RESIZE:
7986 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
7987 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
7988 6458efa5 2020-11-24 stsp break;
7989 6458efa5 2020-11-24 stsp default:
7990 640cd7ff 2022-06-22 mark view->count = 0;
7991 6458efa5 2020-11-24 stsp break;
7992 6458efa5 2020-11-24 stsp }
7993 6458efa5 2020-11-24 stsp
7994 6458efa5 2020-11-24 stsp return err;
7995 6458efa5 2020-11-24 stsp }
7996 6458efa5 2020-11-24 stsp
7997 6458efa5 2020-11-24 stsp __dead static void
7998 6458efa5 2020-11-24 stsp usage_ref(void)
7999 6458efa5 2020-11-24 stsp {
8000 6458efa5 2020-11-24 stsp endwin();
8001 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8002 6458efa5 2020-11-24 stsp getprogname());
8003 6458efa5 2020-11-24 stsp exit(1);
8004 6458efa5 2020-11-24 stsp }
8005 6458efa5 2020-11-24 stsp
8006 6458efa5 2020-11-24 stsp static const struct got_error *
8007 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8008 6458efa5 2020-11-24 stsp {
8009 6458efa5 2020-11-24 stsp const struct got_error *error;
8010 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8011 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8012 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8013 6458efa5 2020-11-24 stsp int ch;
8014 6458efa5 2020-11-24 stsp struct tog_view *view;
8015 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8016 6458efa5 2020-11-24 stsp
8017 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8018 6458efa5 2020-11-24 stsp switch (ch) {
8019 6458efa5 2020-11-24 stsp case 'r':
8020 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8021 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8022 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8023 6458efa5 2020-11-24 stsp optarg);
8024 6458efa5 2020-11-24 stsp break;
8025 6458efa5 2020-11-24 stsp default:
8026 e99e2d15 2020-11-24 naddy usage_ref();
8027 6458efa5 2020-11-24 stsp /* NOTREACHED */
8028 6458efa5 2020-11-24 stsp }
8029 6458efa5 2020-11-24 stsp }
8030 6458efa5 2020-11-24 stsp
8031 6458efa5 2020-11-24 stsp argc -= optind;
8032 6458efa5 2020-11-24 stsp argv += optind;
8033 6458efa5 2020-11-24 stsp
8034 6458efa5 2020-11-24 stsp if (argc > 1)
8035 e99e2d15 2020-11-24 naddy usage_ref();
8036 0ae84acc 2022-06-15 tracey
8037 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8038 0ae84acc 2022-06-15 tracey if (error != NULL)
8039 0ae84acc 2022-06-15 tracey goto done;
8040 6458efa5 2020-11-24 stsp
8041 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8042 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8043 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8044 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8045 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8046 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8047 c156c7a4 2020-12-18 stsp goto done;
8048 6458efa5 2020-11-24 stsp if (worktree)
8049 6458efa5 2020-11-24 stsp repo_path =
8050 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8051 6458efa5 2020-11-24 stsp else
8052 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8053 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8054 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8055 c156c7a4 2020-12-18 stsp goto done;
8056 c156c7a4 2020-12-18 stsp }
8057 6458efa5 2020-11-24 stsp }
8058 6458efa5 2020-11-24 stsp
8059 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8060 6458efa5 2020-11-24 stsp if (error != NULL)
8061 6458efa5 2020-11-24 stsp goto done;
8062 6458efa5 2020-11-24 stsp
8063 6458efa5 2020-11-24 stsp init_curses();
8064 6458efa5 2020-11-24 stsp
8065 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8066 51a10b52 2020-12-26 stsp if (error)
8067 51a10b52 2020-12-26 stsp goto done;
8068 51a10b52 2020-12-26 stsp
8069 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8070 6458efa5 2020-11-24 stsp if (error)
8071 6458efa5 2020-11-24 stsp goto done;
8072 6458efa5 2020-11-24 stsp
8073 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8074 6458efa5 2020-11-24 stsp if (view == NULL) {
8075 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8076 6458efa5 2020-11-24 stsp goto done;
8077 6458efa5 2020-11-24 stsp }
8078 6458efa5 2020-11-24 stsp
8079 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8080 6458efa5 2020-11-24 stsp if (error)
8081 6458efa5 2020-11-24 stsp goto done;
8082 6458efa5 2020-11-24 stsp
8083 6458efa5 2020-11-24 stsp if (worktree) {
8084 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8085 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8086 6458efa5 2020-11-24 stsp worktree = NULL;
8087 6458efa5 2020-11-24 stsp }
8088 6458efa5 2020-11-24 stsp error = view_loop(view);
8089 6458efa5 2020-11-24 stsp done:
8090 6458efa5 2020-11-24 stsp free(repo_path);
8091 6458efa5 2020-11-24 stsp free(cwd);
8092 1d0f4054 2021-06-17 stsp if (repo) {
8093 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8094 1d0f4054 2021-06-17 stsp if (close_err)
8095 1d0f4054 2021-06-17 stsp error = close_err;
8096 1d0f4054 2021-06-17 stsp }
8097 0ae84acc 2022-06-15 tracey if (pack_fds) {
8098 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8099 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8100 0ae84acc 2022-06-15 tracey if (error == NULL)
8101 0ae84acc 2022-06-15 tracey error = pack_err;
8102 0ae84acc 2022-06-15 tracey }
8103 51a10b52 2020-12-26 stsp tog_free_refs();
8104 6458efa5 2020-11-24 stsp return error;
8105 6458efa5 2020-11-24 stsp }
8106 6458efa5 2020-11-24 stsp
8107 136e2bd4 2022-07-23 mark static const struct got_error *
8108 136e2bd4 2022-07-23 mark view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8109 136e2bd4 2022-07-23 mark enum tog_view_type request, int y, int x)
8110 136e2bd4 2022-07-23 mark {
8111 136e2bd4 2022-07-23 mark const struct got_error *err = NULL;
8112 136e2bd4 2022-07-23 mark
8113 136e2bd4 2022-07-23 mark *new_view = NULL;
8114 136e2bd4 2022-07-23 mark
8115 136e2bd4 2022-07-23 mark switch (request) {
8116 136e2bd4 2022-07-23 mark case TOG_VIEW_DIFF:
8117 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG) {
8118 136e2bd4 2022-07-23 mark struct tog_log_view_state *s = &view->state.log;
8119 136e2bd4 2022-07-23 mark
8120 136e2bd4 2022-07-23 mark err = open_diff_view_for_commit(new_view, y, x,
8121 136e2bd4 2022-07-23 mark s->selected_entry->commit, s->selected_entry->id,
8122 136e2bd4 2022-07-23 mark view, s->repo);
8123 136e2bd4 2022-07-23 mark } else
8124 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8125 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8126 136e2bd4 2022-07-23 mark break;
8127 136e2bd4 2022-07-23 mark case TOG_VIEW_BLAME:
8128 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_TREE) {
8129 136e2bd4 2022-07-23 mark struct tog_tree_view_state *s = &view->state.tree;
8130 136e2bd4 2022-07-23 mark
8131 136e2bd4 2022-07-23 mark err = blame_tree_entry(new_view, y, x,
8132 136e2bd4 2022-07-23 mark s->selected_entry, &s->parents, s->commit_id,
8133 136e2bd4 2022-07-23 mark s->repo);
8134 136e2bd4 2022-07-23 mark } else
8135 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8136 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8137 136e2bd4 2022-07-23 mark break;
8138 136e2bd4 2022-07-23 mark case TOG_VIEW_LOG:
8139 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_BLAME)
8140 136e2bd4 2022-07-23 mark err = log_annotated_line(new_view, y, x,
8141 136e2bd4 2022-07-23 mark view->state.blame.repo, view->state.blame.id_to_log);
8142 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8143 136e2bd4 2022-07-23 mark err = log_selected_tree_entry(new_view, y, x,
8144 136e2bd4 2022-07-23 mark &view->state.tree);
8145 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8146 136e2bd4 2022-07-23 mark err = log_ref_entry(new_view, y, x,
8147 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8148 136e2bd4 2022-07-23 mark view->state.ref.repo);
8149 136e2bd4 2022-07-23 mark else
8150 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8151 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8152 136e2bd4 2022-07-23 mark break;
8153 136e2bd4 2022-07-23 mark case TOG_VIEW_TREE:
8154 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8155 136e2bd4 2022-07-23 mark err = browse_commit_tree(new_view, y, x,
8156 136e2bd4 2022-07-23 mark view->state.log.selected_entry,
8157 136e2bd4 2022-07-23 mark view->state.log.in_repo_path,
8158 136e2bd4 2022-07-23 mark view->state.log.head_ref_name,
8159 136e2bd4 2022-07-23 mark view->state.log.repo);
8160 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8161 136e2bd4 2022-07-23 mark err = browse_ref_tree(new_view, y, x,
8162 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8163 136e2bd4 2022-07-23 mark view->state.ref.repo);
8164 136e2bd4 2022-07-23 mark else
8165 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8166 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8167 136e2bd4 2022-07-23 mark break;
8168 136e2bd4 2022-07-23 mark case TOG_VIEW_REF:
8169 136e2bd4 2022-07-23 mark *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
8170 136e2bd4 2022-07-23 mark if (*new_view == NULL)
8171 136e2bd4 2022-07-23 mark return got_error_from_errno("view_open");
8172 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8173 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.log.repo);
8174 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8175 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.tree.repo);
8176 136e2bd4 2022-07-23 mark else
8177 136e2bd4 2022-07-23 mark err = got_error_msg(GOT_ERR_NOT_IMPL,
8178 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8179 136e2bd4 2022-07-23 mark if (err)
8180 136e2bd4 2022-07-23 mark view_close(*new_view);
8181 136e2bd4 2022-07-23 mark break;
8182 136e2bd4 2022-07-23 mark default:
8183 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
8184 136e2bd4 2022-07-23 mark }
8185 136e2bd4 2022-07-23 mark
8186 136e2bd4 2022-07-23 mark return err;
8187 136e2bd4 2022-07-23 mark }
8188 136e2bd4 2022-07-23 mark
8189 9b058f45 2022-06-30 mark /*
8190 9b058f45 2022-06-30 mark * If view was scrolled down to move the selected line into view when opening a
8191 9b058f45 2022-06-30 mark * horizontal split, scroll back up when closing the split/toggling fullscreen.
8192 9b058f45 2022-06-30 mark */
8193 6458efa5 2020-11-24 stsp static void
8194 9b058f45 2022-06-30 mark offset_selection_up(struct tog_view *view)
8195 9b058f45 2022-06-30 mark {
8196 9b058f45 2022-06-30 mark switch (view->type) {
8197 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
8198 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
8199 9b058f45 2022-06-30 mark if (s->first_displayed_line == 1) {
8200 9b058f45 2022-06-30 mark s->selected_line = MAX(s->selected_line - view->offset,
8201 9b058f45 2022-06-30 mark 1);
8202 9b058f45 2022-06-30 mark break;
8203 9b058f45 2022-06-30 mark }
8204 9b058f45 2022-06-30 mark if (s->first_displayed_line > view->offset)
8205 9b058f45 2022-06-30 mark s->first_displayed_line -= view->offset;
8206 9b058f45 2022-06-30 mark else
8207 9b058f45 2022-06-30 mark s->first_displayed_line = 1;
8208 9b058f45 2022-06-30 mark s->selected_line += view->offset;
8209 9b058f45 2022-06-30 mark break;
8210 9b058f45 2022-06-30 mark }
8211 9b058f45 2022-06-30 mark case TOG_VIEW_LOG:
8212 9b058f45 2022-06-30 mark log_scroll_up(&view->state.log, view->offset);
8213 9b058f45 2022-06-30 mark view->state.log.selected += view->offset;
8214 9b058f45 2022-06-30 mark break;
8215 9b058f45 2022-06-30 mark case TOG_VIEW_REF:
8216 9b058f45 2022-06-30 mark ref_scroll_up(&view->state.ref, view->offset);
8217 9b058f45 2022-06-30 mark view->state.ref.selected += view->offset;
8218 9b058f45 2022-06-30 mark break;
8219 9b058f45 2022-06-30 mark case TOG_VIEW_TREE:
8220 9b058f45 2022-06-30 mark tree_scroll_up(&view->state.tree, view->offset);
8221 9b058f45 2022-06-30 mark view->state.tree.selected += view->offset;
8222 9b058f45 2022-06-30 mark break;
8223 9b058f45 2022-06-30 mark default:
8224 9b058f45 2022-06-30 mark break;
8225 9b058f45 2022-06-30 mark }
8226 9b058f45 2022-06-30 mark
8227 9b058f45 2022-06-30 mark view->offset = 0;
8228 9b058f45 2022-06-30 mark }
8229 9b058f45 2022-06-30 mark
8230 9b058f45 2022-06-30 mark /*
8231 9b058f45 2022-06-30 mark * If the selected line is in the section of screen covered by the bottom split,
8232 9b058f45 2022-06-30 mark * scroll down offset lines to move it into view and index its new position.
8233 9b058f45 2022-06-30 mark */
8234 9b058f45 2022-06-30 mark static const struct got_error *
8235 9b058f45 2022-06-30 mark offset_selection_down(struct tog_view *view)
8236 9b058f45 2022-06-30 mark {
8237 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
8238 9b058f45 2022-06-30 mark const struct got_error *(*scrolld)(struct tog_view *, int);
8239 9b058f45 2022-06-30 mark int *selected = NULL;
8240 9b058f45 2022-06-30 mark int header, offset;
8241 9b058f45 2022-06-30 mark
8242 9b058f45 2022-06-30 mark switch (view->type) {
8243 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
8244 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
8245 9b058f45 2022-06-30 mark header = 3;
8246 9b058f45 2022-06-30 mark scrolld = NULL;
8247 9b058f45 2022-06-30 mark if (s->selected_line > view->nlines - header) {
8248 9b058f45 2022-06-30 mark offset = abs(view->nlines - s->selected_line - header);
8249 9b058f45 2022-06-30 mark s->first_displayed_line += offset;
8250 9b058f45 2022-06-30 mark s->selected_line -= offset;
8251 9b058f45 2022-06-30 mark view->offset = offset;
8252 9b058f45 2022-06-30 mark }
8253 9b058f45 2022-06-30 mark break;
8254 9b058f45 2022-06-30 mark }
8255 9b058f45 2022-06-30 mark case TOG_VIEW_LOG: {
8256 9b058f45 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
8257 9b058f45 2022-06-30 mark scrolld = &log_scroll_down;
8258 d2366e29 2022-07-07 mark header = view_is_parent_view(view) ? 3 : 2;
8259 9b058f45 2022-06-30 mark selected = &s->selected;
8260 9b058f45 2022-06-30 mark break;
8261 9b058f45 2022-06-30 mark }
8262 9b058f45 2022-06-30 mark case TOG_VIEW_REF: {
8263 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
8264 9b058f45 2022-06-30 mark scrolld = &ref_scroll_down;
8265 9b058f45 2022-06-30 mark header = 3;
8266 9b058f45 2022-06-30 mark selected = &s->selected;
8267 9b058f45 2022-06-30 mark break;
8268 9b058f45 2022-06-30 mark }
8269 9b058f45 2022-06-30 mark case TOG_VIEW_TREE: {
8270 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
8271 9b058f45 2022-06-30 mark scrolld = &tree_scroll_down;
8272 9b058f45 2022-06-30 mark header = 5;
8273 9b058f45 2022-06-30 mark selected = &s->selected;
8274 9b058f45 2022-06-30 mark break;
8275 9b058f45 2022-06-30 mark }
8276 9b058f45 2022-06-30 mark default:
8277 9b058f45 2022-06-30 mark selected = NULL;
8278 9b058f45 2022-06-30 mark scrolld = NULL;
8279 9b058f45 2022-06-30 mark header = 0;
8280 9b058f45 2022-06-30 mark break;
8281 9b058f45 2022-06-30 mark }
8282 9b058f45 2022-06-30 mark
8283 9b058f45 2022-06-30 mark if (selected && *selected > view->nlines - header) {
8284 9b058f45 2022-06-30 mark offset = abs(view->nlines - *selected - header);
8285 9b058f45 2022-06-30 mark view->offset = offset;
8286 9b058f45 2022-06-30 mark if (scrolld && offset) {
8287 9b058f45 2022-06-30 mark err = scrolld(view, offset);
8288 9b058f45 2022-06-30 mark *selected -= offset;
8289 9b058f45 2022-06-30 mark }
8290 9b058f45 2022-06-30 mark }
8291 9b058f45 2022-06-30 mark
8292 9b058f45 2022-06-30 mark return err;
8293 9b058f45 2022-06-30 mark }
8294 9b058f45 2022-06-30 mark
8295 9b058f45 2022-06-30 mark static void
8296 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
8297 ce5b7c56 2019-07-09 stsp {
8298 6059809a 2020-12-17 stsp size_t i;
8299 9f7d7167 2018-04-29 stsp
8300 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
8301 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
8302 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = &tog_commands[i];
8303 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
8304 ce5b7c56 2019-07-09 stsp }
8305 6879ba42 2020-10-01 naddy fputc('\n', fp);
8306 ce5b7c56 2019-07-09 stsp }
8307 ce5b7c56 2019-07-09 stsp
8308 4ed7e80c 2018-05-20 stsp __dead static void
8309 6879ba42 2020-10-01 naddy usage(int hflag, int status)
8310 9f7d7167 2018-04-29 stsp {
8311 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
8312 6879ba42 2020-10-01 naddy
8313 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] [command] [arg ...]\n",
8314 6879ba42 2020-10-01 naddy getprogname());
8315 6879ba42 2020-10-01 naddy if (hflag) {
8316 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
8317 6879ba42 2020-10-01 naddy list_commands(fp);
8318 ee85c5e8 2020-02-29 stsp }
8319 6879ba42 2020-10-01 naddy exit(status);
8320 9f7d7167 2018-04-29 stsp }
8321 9f7d7167 2018-04-29 stsp
8322 c2301be8 2018-04-30 stsp static char **
8323 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
8324 c2301be8 2018-04-30 stsp {
8325 ee85c5e8 2020-02-29 stsp va_list ap;
8326 c2301be8 2018-04-30 stsp char **argv;
8327 ee85c5e8 2020-02-29 stsp int i;
8328 c2301be8 2018-04-30 stsp
8329 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
8330 ee85c5e8 2020-02-29 stsp
8331 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
8332 c2301be8 2018-04-30 stsp if (argv == NULL)
8333 c2301be8 2018-04-30 stsp err(1, "calloc");
8334 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
8335 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
8336 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
8337 e10c916e 2019-09-15 hiltjo err(1, "strdup");
8338 c2301be8 2018-04-30 stsp }
8339 c2301be8 2018-04-30 stsp
8340 ee85c5e8 2020-02-29 stsp va_end(ap);
8341 c2301be8 2018-04-30 stsp return argv;
8342 ee85c5e8 2020-02-29 stsp }
8343 ee85c5e8 2020-02-29 stsp
8344 ee85c5e8 2020-02-29 stsp /*
8345 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
8346 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
8347 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
8348 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
8349 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
8350 ee85c5e8 2020-02-29 stsp */
8351 ee85c5e8 2020-02-29 stsp static const struct got_error *
8352 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
8353 ee85c5e8 2020-02-29 stsp {
8354 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
8355 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
8356 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
8357 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
8358 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
8359 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
8360 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
8361 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
8362 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8363 84de9106 2020-12-26 stsp
8364 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
8365 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
8366 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
8367 ee85c5e8 2020-02-29 stsp
8368 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8369 0ae84acc 2022-06-15 tracey if (error != NULL)
8370 0ae84acc 2022-06-15 tracey goto done;
8371 0ae84acc 2022-06-15 tracey
8372 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
8373 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8374 ee85c5e8 2020-02-29 stsp goto done;
8375 ee85c5e8 2020-02-29 stsp
8376 ee85c5e8 2020-02-29 stsp if (worktree)
8377 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
8378 ee85c5e8 2020-02-29 stsp else
8379 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
8380 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
8381 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
8382 ee85c5e8 2020-02-29 stsp goto done;
8383 ee85c5e8 2020-02-29 stsp }
8384 ee85c5e8 2020-02-29 stsp
8385 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8386 ee85c5e8 2020-02-29 stsp if (error != NULL)
8387 ee85c5e8 2020-02-29 stsp goto done;
8388 ee85c5e8 2020-02-29 stsp
8389 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
8390 ee85c5e8 2020-02-29 stsp repo, worktree);
8391 ee85c5e8 2020-02-29 stsp if (error)
8392 ee85c5e8 2020-02-29 stsp goto done;
8393 ee85c5e8 2020-02-29 stsp
8394 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8395 84de9106 2020-12-26 stsp if (error)
8396 84de9106 2020-12-26 stsp goto done;
8397 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
8398 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
8399 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8400 ee85c5e8 2020-02-29 stsp if (error)
8401 ee85c5e8 2020-02-29 stsp goto done;
8402 ee85c5e8 2020-02-29 stsp
8403 ee85c5e8 2020-02-29 stsp if (worktree) {
8404 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
8405 ee85c5e8 2020-02-29 stsp worktree = NULL;
8406 ee85c5e8 2020-02-29 stsp }
8407 ee85c5e8 2020-02-29 stsp
8408 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
8409 a44927cc 2022-04-07 stsp if (error)
8410 a44927cc 2022-04-07 stsp goto done;
8411 a44927cc 2022-04-07 stsp
8412 a44927cc 2022-04-07 stsp error = got_object_id_by_path(&id, repo, commit, in_repo_path);
8413 ee85c5e8 2020-02-29 stsp if (error) {
8414 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
8415 ee85c5e8 2020-02-29 stsp goto done;
8416 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
8417 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
8418 6879ba42 2020-10-01 naddy usage(1, 1);
8419 ee85c5e8 2020-02-29 stsp /* not reached */
8420 ee85c5e8 2020-02-29 stsp }
8421 ee85c5e8 2020-02-29 stsp
8422 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
8423 ee85c5e8 2020-02-29 stsp if (error)
8424 ee85c5e8 2020-02-29 stsp goto done;
8425 ee85c5e8 2020-02-29 stsp
8426 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
8427 ee85c5e8 2020-02-29 stsp argc = 4;
8428 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
8429 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
8430 ee85c5e8 2020-02-29 stsp done:
8431 1d0f4054 2021-06-17 stsp if (repo) {
8432 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
8433 1d0f4054 2021-06-17 stsp if (error == NULL)
8434 1d0f4054 2021-06-17 stsp error = close_err;
8435 1d0f4054 2021-06-17 stsp }
8436 a44927cc 2022-04-07 stsp if (commit)
8437 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
8438 ee85c5e8 2020-02-29 stsp if (worktree)
8439 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
8440 0ae84acc 2022-06-15 tracey if (pack_fds) {
8441 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8442 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8443 0ae84acc 2022-06-15 tracey if (error == NULL)
8444 0ae84acc 2022-06-15 tracey error = pack_err;
8445 0ae84acc 2022-06-15 tracey }
8446 ee85c5e8 2020-02-29 stsp free(id);
8447 ee85c5e8 2020-02-29 stsp free(commit_id_str);
8448 ee85c5e8 2020-02-29 stsp free(commit_id);
8449 ee85c5e8 2020-02-29 stsp free(cwd);
8450 ee85c5e8 2020-02-29 stsp free(repo_path);
8451 ee85c5e8 2020-02-29 stsp free(in_repo_path);
8452 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
8453 ee85c5e8 2020-02-29 stsp int i;
8454 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
8455 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
8456 ee85c5e8 2020-02-29 stsp free(cmd_argv);
8457 ee85c5e8 2020-02-29 stsp }
8458 87670572 2020-12-26 naddy tog_free_refs();
8459 ee85c5e8 2020-02-29 stsp return error;
8460 c2301be8 2018-04-30 stsp }
8461 c2301be8 2018-04-30 stsp
8462 9f7d7167 2018-04-29 stsp int
8463 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
8464 9f7d7167 2018-04-29 stsp {
8465 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
8466 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
8467 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
8468 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
8469 3e166534 2022-02-16 naddy static const struct option longopts[] = {
8470 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
8471 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
8472 83cd27f8 2020-01-13 stsp };
8473 917d79a7 2022-07-01 stsp char *diff_algo_str = NULL;
8474 9f7d7167 2018-04-29 stsp
8475 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
8476 9f7d7167 2018-04-29 stsp
8477 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
8478 9f7d7167 2018-04-29 stsp switch (ch) {
8479 9f7d7167 2018-04-29 stsp case 'h':
8480 9f7d7167 2018-04-29 stsp hflag = 1;
8481 9f7d7167 2018-04-29 stsp break;
8482 53ccebc2 2019-07-30 stsp case 'V':
8483 53ccebc2 2019-07-30 stsp Vflag = 1;
8484 53ccebc2 2019-07-30 stsp break;
8485 9f7d7167 2018-04-29 stsp default:
8486 6879ba42 2020-10-01 naddy usage(hflag, 1);
8487 9f7d7167 2018-04-29 stsp /* NOTREACHED */
8488 9f7d7167 2018-04-29 stsp }
8489 9f7d7167 2018-04-29 stsp }
8490 9f7d7167 2018-04-29 stsp
8491 9f7d7167 2018-04-29 stsp argc -= optind;
8492 9f7d7167 2018-04-29 stsp argv += optind;
8493 9814e6a3 2020-09-27 naddy optind = 1;
8494 c2301be8 2018-04-30 stsp optreset = 1;
8495 9f7d7167 2018-04-29 stsp
8496 53ccebc2 2019-07-30 stsp if (Vflag) {
8497 53ccebc2 2019-07-30 stsp got_version_print_str();
8498 6879ba42 2020-10-01 naddy return 0;
8499 53ccebc2 2019-07-30 stsp }
8500 4010e238 2020-12-04 stsp
8501 4010e238 2020-12-04 stsp #ifndef PROFILE
8502 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
8503 4010e238 2020-12-04 stsp NULL) == -1)
8504 4010e238 2020-12-04 stsp err(1, "pledge");
8505 4010e238 2020-12-04 stsp #endif
8506 53ccebc2 2019-07-30 stsp
8507 c2301be8 2018-04-30 stsp if (argc == 0) {
8508 f29d3e89 2018-06-23 stsp if (hflag)
8509 6879ba42 2020-10-01 naddy usage(hflag, 0);
8510 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
8511 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
8512 c2301be8 2018-04-30 stsp argc = 1;
8513 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
8514 c2301be8 2018-04-30 stsp } else {
8515 6059809a 2020-12-17 stsp size_t i;
8516 9f7d7167 2018-04-29 stsp
8517 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
8518 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
8519 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
8520 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
8521 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
8522 9f7d7167 2018-04-29 stsp break;
8523 9f7d7167 2018-04-29 stsp }
8524 9f7d7167 2018-04-29 stsp }
8525 ee85c5e8 2020-02-29 stsp }
8526 3642c4c6 2019-07-09 stsp
8527 917d79a7 2022-07-01 stsp diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
8528 917d79a7 2022-07-01 stsp if (diff_algo_str) {
8529 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "patience") == 0)
8530 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
8531 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "myers") == 0)
8532 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
8533 917d79a7 2022-07-01 stsp }
8534 917d79a7 2022-07-01 stsp
8535 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
8536 ee85c5e8 2020-02-29 stsp if (argc != 1)
8537 6879ba42 2020-10-01 naddy usage(0, 1);
8538 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
8539 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
8540 ee85c5e8 2020-02-29 stsp } else {
8541 ee85c5e8 2020-02-29 stsp if (hflag)
8542 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
8543 ee85c5e8 2020-02-29 stsp else
8544 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
8545 9f7d7167 2018-04-29 stsp }
8546 9f7d7167 2018-04-29 stsp
8547 9f7d7167 2018-04-29 stsp endwin();
8548 b46c1e04 2020-09-20 naddy putchar('\n');
8549 a2f4a359 2020-02-28 stsp if (cmd_argv) {
8550 a2f4a359 2020-02-28 stsp int i;
8551 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
8552 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
8553 a2f4a359 2020-02-28 stsp free(cmd_argv);
8554 a2f4a359 2020-02-28 stsp }
8555 a2f4a359 2020-02-28 stsp
8556 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
8557 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
8558 9f7d7167 2018-04-29 stsp return 0;
8559 9f7d7167 2018-04-29 stsp }