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 bb737323 2018-05-20 stsp col += author_width;
2048 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2049 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2050 bb737323 2018-05-20 stsp col++;
2051 bb737323 2018-05-20 stsp author_width++;
2052 bb737323 2018-05-20 stsp }
2053 f0f62654 2022-09-08 mark if (tc)
2054 f0f62654 2022-09-08 mark wattr_off(view->window,
2055 f0f62654 2022-09-08 mark COLOR_PAIR(tc->colorpair), NULL);
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 e15c42de 2022-09-05 op struct got_object_id *dup;
2096 80ddbec8 2018-04-29 stsp
2097 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2098 80ddbec8 2018-04-29 stsp if (entry == NULL)
2099 899d86c2 2018-05-10 stsp return NULL;
2100 99db9666 2018-05-07 stsp
2101 e15c42de 2022-09-05 op dup = got_object_id_dup(id);
2102 e15c42de 2022-09-05 op if (dup == NULL) {
2103 e15c42de 2022-09-05 op free(entry);
2104 e15c42de 2022-09-05 op return NULL;
2105 e15c42de 2022-09-05 op }
2106 e15c42de 2022-09-05 op
2107 e15c42de 2022-09-05 op entry->id = dup;
2108 99db9666 2018-05-07 stsp entry->commit = commit;
2109 899d86c2 2018-05-10 stsp return entry;
2110 99db9666 2018-05-07 stsp }
2111 80ddbec8 2018-04-29 stsp
2112 99db9666 2018-05-07 stsp static void
2113 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2114 99db9666 2018-05-07 stsp {
2115 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2116 99db9666 2018-05-07 stsp
2117 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2118 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2119 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2120 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2121 e15c42de 2022-09-05 op free(entry->id);
2122 99db9666 2018-05-07 stsp free(entry);
2123 99db9666 2018-05-07 stsp }
2124 99db9666 2018-05-07 stsp
2125 99db9666 2018-05-07 stsp static void
2126 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2127 99db9666 2018-05-07 stsp {
2128 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2129 99db9666 2018-05-07 stsp pop_commit(commits);
2130 c4972b91 2018-05-07 stsp }
2131 c4972b91 2018-05-07 stsp
2132 c4972b91 2018-05-07 stsp static const struct got_error *
2133 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2134 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2135 13add988 2019-10-15 stsp {
2136 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2137 13add988 2019-10-15 stsp regmatch_t regmatch;
2138 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2139 13add988 2019-10-15 stsp
2140 13add988 2019-10-15 stsp *have_match = 0;
2141 13add988 2019-10-15 stsp
2142 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2143 13add988 2019-10-15 stsp if (err)
2144 13add988 2019-10-15 stsp return err;
2145 13add988 2019-10-15 stsp
2146 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2147 13add988 2019-10-15 stsp if (err)
2148 13add988 2019-10-15 stsp goto done;
2149 13add988 2019-10-15 stsp
2150 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2151 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2152 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2153 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2154 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2155 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2156 13add988 2019-10-15 stsp *have_match = 1;
2157 13add988 2019-10-15 stsp done:
2158 13add988 2019-10-15 stsp free(id_str);
2159 13add988 2019-10-15 stsp free(logmsg);
2160 13add988 2019-10-15 stsp return err;
2161 13add988 2019-10-15 stsp }
2162 13add988 2019-10-15 stsp
2163 13add988 2019-10-15 stsp static const struct got_error *
2164 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2165 c4972b91 2018-05-07 stsp {
2166 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2167 9ba79e04 2018-06-11 stsp
2168 1a76625f 2018-10-22 stsp /*
2169 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2170 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2171 1a76625f 2018-10-22 stsp * while updating the display.
2172 1a76625f 2018-10-22 stsp */
2173 4e0d2870 2020-12-07 naddy do {
2174 93e45b7c 2018-09-24 stsp struct got_object_id *id;
2175 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2176 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2177 1a76625f 2018-10-22 stsp int errcode;
2178 899d86c2 2018-05-10 stsp
2179 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2180 4e0d2870 2020-12-07 naddy NULL, NULL);
2181 ee780d5c 2020-01-04 stsp if (err || id == NULL)
2182 ecb28ae0 2018-07-16 stsp break;
2183 899d86c2 2018-05-10 stsp
2184 4e0d2870 2020-12-07 naddy err = got_object_open_as_commit(&commit, a->repo, id);
2185 9ba79e04 2018-06-11 stsp if (err)
2186 9ba79e04 2018-06-11 stsp break;
2187 9ba79e04 2018-06-11 stsp entry = alloc_commit_queue_entry(commit, id);
2188 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2189 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2190 9ba79e04 2018-06-11 stsp break;
2191 9ba79e04 2018-06-11 stsp }
2192 93e45b7c 2018-09-24 stsp
2193 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2194 1a76625f 2018-10-22 stsp if (errcode) {
2195 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2196 13add988 2019-10-15 stsp "pthread_mutex_lock");
2197 1a76625f 2018-10-22 stsp break;
2198 1a76625f 2018-10-22 stsp }
2199 1a76625f 2018-10-22 stsp
2200 4e0d2870 2020-12-07 naddy entry->idx = a->commits->ncommits;
2201 4e0d2870 2020-12-07 naddy TAILQ_INSERT_TAIL(&a->commits->head, entry, entry);
2202 4e0d2870 2020-12-07 naddy a->commits->ncommits++;
2203 1a76625f 2018-10-22 stsp
2204 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2205 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2206 7c1452c1 2020-03-26 stsp int have_match;
2207 4e0d2870 2020-12-07 naddy err = match_commit(&have_match, id, commit, a->regex);
2208 7c1452c1 2020-03-26 stsp if (err)
2209 7c1452c1 2020-03-26 stsp break;
2210 7c1452c1 2020-03-26 stsp if (have_match)
2211 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2212 13add988 2019-10-15 stsp }
2213 13add988 2019-10-15 stsp
2214 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2215 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2216 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2217 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2218 7c1452c1 2020-03-26 stsp if (err)
2219 13add988 2019-10-15 stsp break;
2220 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2221 899d86c2 2018-05-10 stsp
2222 9ba79e04 2018-06-11 stsp return err;
2223 0553a4e3 2018-04-30 stsp }
2224 0553a4e3 2018-04-30 stsp
2225 2b779855 2020-12-05 naddy static void
2226 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2227 2b779855 2020-12-05 naddy {
2228 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2229 2b779855 2020-12-05 naddy int ncommits = 0;
2230 2b779855 2020-12-05 naddy
2231 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2232 2b779855 2020-12-05 naddy while (entry) {
2233 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2234 2b779855 2020-12-05 naddy s->selected_entry = entry;
2235 2b779855 2020-12-05 naddy break;
2236 2b779855 2020-12-05 naddy }
2237 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2238 2b779855 2020-12-05 naddy ncommits++;
2239 2b779855 2020-12-05 naddy }
2240 2b779855 2020-12-05 naddy }
2241 2b779855 2020-12-05 naddy
2242 0553a4e3 2018-04-30 stsp static const struct got_error *
2243 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2244 0553a4e3 2018-04-30 stsp {
2245 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2246 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2247 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2248 cbb0c8d7 2022-08-12 mark int limit = view->nlines;
2249 60493ae3 2019-06-20 stsp int width;
2250 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2251 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2252 8b473291 2019-02-21 stsp char *refs_str = NULL;
2253 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2254 11b20872 2019-11-08 stsp struct tog_color *tc;
2255 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2256 cbb0c8d7 2022-08-12 mark
2257 cbb0c8d7 2022-08-12 mark if (view_is_hsplit_top(view))
2258 cbb0c8d7 2022-08-12 mark --limit; /* account for border */
2259 0553a4e3 2018-04-30 stsp
2260 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2261 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2262 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2263 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2264 1a76625f 2018-10-22 stsp if (err)
2265 ecb28ae0 2018-07-16 stsp return err;
2266 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2267 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2268 d2075bf3 2020-12-25 stsp if (refs) {
2269 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2270 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2271 d2075bf3 2020-12-25 stsp if (err)
2272 d2075bf3 2020-12-25 stsp goto done;
2273 d2075bf3 2020-12-25 stsp }
2274 867c6645 2018-07-10 stsp }
2275 359bfafd 2019-02-22 stsp
2276 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2277 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2278 1a76625f 2018-10-22 stsp
2279 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2280 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2281 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
2282 d2ad595c 2020-04-09 stsp (view->searching && !view->search_next_done) ?
2283 d2ad595c 2020-04-09 stsp "searching..." : "loading...") == -1) {
2284 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2285 8f4ed634 2020-03-26 stsp goto done;
2286 8f4ed634 2020-03-26 stsp }
2287 8f4ed634 2020-03-26 stsp } else {
2288 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2289 f9686aa5 2020-03-27 stsp
2290 f9686aa5 2020-03-27 stsp if (view->searching) {
2291 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2292 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2293 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2294 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2295 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2296 f9686aa5 2020-03-27 stsp search_str = "searching...";
2297 f9686aa5 2020-03-27 stsp }
2298 f9686aa5 2020-03-27 stsp
2299 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2300 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
2301 f9686aa5 2020-03-27 stsp search_str ? search_str :
2302 f9686aa5 2020-03-27 stsp (refs_str ? refs_str : "")) == -1) {
2303 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2304 8f4ed634 2020-03-26 stsp goto done;
2305 8f4ed634 2020-03-26 stsp }
2306 8b473291 2019-02-21 stsp }
2307 1a76625f 2018-10-22 stsp
2308 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2309 87411fa9 2022-06-16 stsp if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2310 87411fa9 2022-06-16 stsp "........................................",
2311 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2312 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2313 1a76625f 2018-10-22 stsp header = NULL;
2314 1a76625f 2018-10-22 stsp goto done;
2315 1a76625f 2018-10-22 stsp }
2316 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2317 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2318 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
2319 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2320 1a76625f 2018-10-22 stsp header = NULL;
2321 1a76625f 2018-10-22 stsp goto done;
2322 ecb28ae0 2018-07-16 stsp }
2323 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2324 1a76625f 2018-10-22 stsp if (err)
2325 1a76625f 2018-10-22 stsp goto done;
2326 867c6645 2018-07-10 stsp
2327 2814baeb 2018-08-01 stsp werase(view->window);
2328 867c6645 2018-07-10 stsp
2329 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2330 a3404814 2018-09-02 stsp wstandout(view->window);
2331 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2332 11b20872 2019-11-08 stsp if (tc)
2333 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2334 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2335 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2336 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2337 1a76625f 2018-10-22 stsp width++;
2338 1a76625f 2018-10-22 stsp }
2339 0c6ad1bc 2022-09-09 mark if (tc)
2340 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2341 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2342 a3404814 2018-09-02 stsp wstandend(view->window);
2343 ecb28ae0 2018-07-16 stsp free(wline);
2344 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2345 1a76625f 2018-10-22 stsp goto done;
2346 0553a4e3 2018-04-30 stsp
2347 29688b02 2022-06-16 stsp /* Grow author column size if necessary, and set view->maxx. */
2348 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2349 5813d178 2019-03-09 stsp ncommits = 0;
2350 145b6838 2022-06-16 stsp view->maxx = 0;
2351 5813d178 2019-03-09 stsp while (entry) {
2352 10aab77f 2022-07-19 op struct got_commit_object *c = entry->commit;
2353 145b6838 2022-06-16 stsp char *author, *eol, *msg, *msg0;
2354 29688b02 2022-06-16 stsp wchar_t *wauthor, *wmsg;
2355 5813d178 2019-03-09 stsp int width;
2356 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2357 5813d178 2019-03-09 stsp break;
2358 10aab77f 2022-07-19 op if (s->use_committer)
2359 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(c));
2360 10aab77f 2022-07-19 op else
2361 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(c));
2362 5813d178 2019-03-09 stsp if (author == NULL) {
2363 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2364 5813d178 2019-03-09 stsp goto done;
2365 5813d178 2019-03-09 stsp }
2366 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2367 27a741e5 2019-09-11 stsp date_display_cols);
2368 5813d178 2019-03-09 stsp if (author_cols < width)
2369 5813d178 2019-03-09 stsp author_cols = width;
2370 5813d178 2019-03-09 stsp free(wauthor);
2371 5813d178 2019-03-09 stsp free(author);
2372 a310d9c3 2022-07-21 florian if (err)
2373 a310d9c3 2022-07-21 florian goto done;
2374 10aab77f 2022-07-19 op err = got_object_commit_get_logmsg(&msg0, c);
2375 145b6838 2022-06-16 stsp if (err)
2376 145b6838 2022-06-16 stsp goto done;
2377 145b6838 2022-06-16 stsp msg = msg0;
2378 145b6838 2022-06-16 stsp while (*msg == '\n')
2379 145b6838 2022-06-16 stsp ++msg;
2380 145b6838 2022-06-16 stsp if ((eol = strchr(msg, '\n')))
2381 29688b02 2022-06-16 stsp *eol = '\0';
2382 ccda2f4d 2022-06-16 stsp err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2383 29688b02 2022-06-16 stsp date_display_cols + author_cols, 0);
2384 29688b02 2022-06-16 stsp if (err)
2385 29688b02 2022-06-16 stsp goto done;
2386 29688b02 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
2387 145b6838 2022-06-16 stsp free(msg0);
2388 29688b02 2022-06-16 stsp free(wmsg);
2389 7ca04879 2019-10-19 stsp ncommits++;
2390 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2391 5813d178 2019-03-09 stsp }
2392 5813d178 2019-03-09 stsp
2393 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2394 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2395 867c6645 2018-07-10 stsp ncommits = 0;
2396 899d86c2 2018-05-10 stsp while (entry) {
2397 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2398 899d86c2 2018-05-10 stsp break;
2399 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2400 2814baeb 2018-08-01 stsp wstandout(view->window);
2401 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2402 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2403 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2404 2814baeb 2018-08-01 stsp wstandend(view->window);
2405 0553a4e3 2018-04-30 stsp if (err)
2406 60493ae3 2019-06-20 stsp goto done;
2407 0553a4e3 2018-04-30 stsp ncommits++;
2408 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2409 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2410 80ddbec8 2018-04-29 stsp }
2411 80ddbec8 2018-04-29 stsp
2412 9b058f45 2022-06-30 mark view_border(view);
2413 1a76625f 2018-10-22 stsp done:
2414 1a76625f 2018-10-22 stsp free(id_str);
2415 8b473291 2019-02-21 stsp free(refs_str);
2416 1a76625f 2018-10-22 stsp free(ncommits_str);
2417 1a76625f 2018-10-22 stsp free(header);
2418 80ddbec8 2018-04-29 stsp return err;
2419 9f7d7167 2018-04-29 stsp }
2420 07b55e75 2018-05-10 stsp
2421 07b55e75 2018-05-10 stsp static void
2422 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2423 07b55e75 2018-05-10 stsp {
2424 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2425 07b55e75 2018-05-10 stsp int nscrolled = 0;
2426 07b55e75 2018-05-10 stsp
2427 ffe38506 2020-12-01 naddy entry = TAILQ_FIRST(&s->commits.head);
2428 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2429 07b55e75 2018-05-10 stsp return;
2430 9f7d7167 2018-04-29 stsp
2431 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2432 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2433 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2434 07b55e75 2018-05-10 stsp if (entry) {
2435 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2436 07b55e75 2018-05-10 stsp nscrolled++;
2437 07b55e75 2018-05-10 stsp }
2438 07b55e75 2018-05-10 stsp }
2439 aa075928 2018-05-10 stsp }
2440 aa075928 2018-05-10 stsp
2441 aa075928 2018-05-10 stsp static const struct got_error *
2442 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2443 aa075928 2018-05-10 stsp {
2444 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2445 5e224a3e 2019-02-22 stsp int errcode;
2446 8a42fca8 2019-02-22 stsp
2447 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2448 aa075928 2018-05-10 stsp
2449 5629093a 2022-07-11 stsp while (!ta->log_complete && !tog_thread_error &&
2450 5629093a 2022-07-11 stsp (ta->commits_needed > 0 || ta->load_all)) {
2451 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2452 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2453 7aafa0d1 2019-02-22 stsp if (errcode)
2454 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2455 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2456 7c1452c1 2020-03-26 stsp
2457 7c1452c1 2020-03-26 stsp /*
2458 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2459 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2460 7c1452c1 2020-03-26 stsp */
2461 7c1452c1 2020-03-26 stsp if (!wait)
2462 7c1452c1 2020-03-26 stsp break;
2463 7c1452c1 2020-03-26 stsp
2464 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2465 ffe38506 2020-12-01 naddy show_log_view(view);
2466 7c1452c1 2020-03-26 stsp update_panels();
2467 7c1452c1 2020-03-26 stsp doupdate();
2468 7c1452c1 2020-03-26 stsp
2469 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2470 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2471 82954512 2020-02-03 stsp if (errcode)
2472 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2473 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2474 82954512 2020-02-03 stsp
2475 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2476 ffe38506 2020-12-01 naddy show_log_view(view);
2477 7c1452c1 2020-03-26 stsp update_panels();
2478 7c1452c1 2020-03-26 stsp doupdate();
2479 5e224a3e 2019-02-22 stsp }
2480 5e224a3e 2019-02-22 stsp
2481 5e224a3e 2019-02-22 stsp return NULL;
2482 5e224a3e 2019-02-22 stsp }
2483 5e224a3e 2019-02-22 stsp
2484 5e224a3e 2019-02-22 stsp static const struct got_error *
2485 9b058f45 2022-06-30 mark request_log_commits(struct tog_view *view)
2486 9b058f45 2022-06-30 mark {
2487 9b058f45 2022-06-30 mark struct tog_log_view_state *state = &view->state.log;
2488 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
2489 2525dccb 2022-07-13 mark
2490 2525dccb 2022-07-13 mark if (state->thread_args.log_complete)
2491 2525dccb 2022-07-13 mark return NULL;
2492 9b058f45 2022-06-30 mark
2493 27187d45 2022-07-11 mark state->thread_args.commits_needed += view->nscrolled;
2494 9b058f45 2022-06-30 mark err = trigger_log_thread(view, 1);
2495 9b058f45 2022-06-30 mark view->nscrolled = 0;
2496 9b058f45 2022-06-30 mark
2497 9b058f45 2022-06-30 mark return err;
2498 9b058f45 2022-06-30 mark }
2499 9b058f45 2022-06-30 mark
2500 9b058f45 2022-06-30 mark static const struct got_error *
2501 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2502 5e224a3e 2019-02-22 stsp {
2503 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2504 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2505 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2506 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2507 5e224a3e 2019-02-22 stsp
2508 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2509 5e224a3e 2019-02-22 stsp return NULL;
2510 5e224a3e 2019-02-22 stsp
2511 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2512 ffe38506 2020-12-01 naddy if (s->commits.ncommits < ncommits_needed &&
2513 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2514 08ebd0a9 2019-02-22 stsp /*
2515 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2516 08ebd0a9 2019-02-22 stsp */
2517 94b80cfa 2022-08-01 mark s->thread_args.commits_needed +=
2518 94b80cfa 2022-08-01 mark ncommits_needed - s->commits.ncommits;
2519 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2520 5e224a3e 2019-02-22 stsp if (err)
2521 5e224a3e 2019-02-22 stsp return err;
2522 7aafa0d1 2019-02-22 stsp }
2523 b295e71b 2019-02-22 stsp
2524 7aafa0d1 2019-02-22 stsp do {
2525 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2526 9b058f45 2022-06-30 mark if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2527 88048b54 2019-02-21 stsp break;
2528 88048b54 2019-02-21 stsp
2529 9b058f45 2022-06-30 mark s->last_displayed_entry = pentry ?
2530 9b058f45 2022-06-30 mark pentry : s->last_displayed_entry;;
2531 aa075928 2018-05-10 stsp
2532 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2533 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2534 dd0a52c1 2018-05-20 stsp break;
2535 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2536 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2537 aa075928 2018-05-10 stsp
2538 2525dccb 2022-07-13 mark if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2539 9b058f45 2022-06-30 mark view->nscrolled += nscrolled;
2540 9b058f45 2022-06-30 mark else
2541 9b058f45 2022-06-30 mark view->nscrolled = 0;
2542 9b058f45 2022-06-30 mark
2543 dd0a52c1 2018-05-20 stsp return err;
2544 07b55e75 2018-05-10 stsp }
2545 4a7f7875 2018-05-10 stsp
2546 cd0acaa7 2018-05-20 stsp static const struct got_error *
2547 9b058f45 2022-06-30 mark open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2548 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2549 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2550 cd0acaa7 2018-05-20 stsp {
2551 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2552 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2553 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2554 cd0acaa7 2018-05-20 stsp
2555 9b058f45 2022-06-30 mark diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2556 15a94983 2018-12-23 stsp if (diff_view == NULL)
2557 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2558 ea5e7bb5 2018-08-01 stsp
2559 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2560 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2561 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2562 e5a0f69f 2018-08-18 stsp if (err == NULL)
2563 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2564 cd0acaa7 2018-05-20 stsp return err;
2565 4a7f7875 2018-05-10 stsp }
2566 4a7f7875 2018-05-10 stsp
2567 80ddbec8 2018-04-29 stsp static const struct got_error *
2568 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2569 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2570 9343a5fb 2018-06-23 stsp {
2571 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2572 941e9f74 2019-05-21 stsp
2573 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2574 941e9f74 2019-05-21 stsp if (parent == NULL)
2575 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2576 941e9f74 2019-05-21 stsp
2577 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2578 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2579 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2580 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2581 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2582 941e9f74 2019-05-21 stsp s->tree = subtree;
2583 941e9f74 2019-05-21 stsp s->selected = 0;
2584 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2585 941e9f74 2019-05-21 stsp return NULL;
2586 941e9f74 2019-05-21 stsp }
2587 941e9f74 2019-05-21 stsp
2588 941e9f74 2019-05-21 stsp static const struct got_error *
2589 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2590 a44927cc 2022-04-07 stsp struct got_commit_object *commit, const char *path)
2591 941e9f74 2019-05-21 stsp {
2592 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2593 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2594 941e9f74 2019-05-21 stsp const char *p;
2595 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2596 9343a5fb 2018-06-23 stsp
2597 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2598 941e9f74 2019-05-21 stsp p = path;
2599 941e9f74 2019-05-21 stsp while (*p) {
2600 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2601 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2602 56e0773d 2019-11-28 stsp char *te_name;
2603 33cbf02b 2020-01-12 stsp
2604 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2605 33cbf02b 2020-01-12 stsp p++;
2606 941e9f74 2019-05-21 stsp
2607 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2608 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2609 941e9f74 2019-05-21 stsp if (slash == NULL)
2610 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2611 33cbf02b 2020-01-12 stsp else
2612 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2613 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2614 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2615 56e0773d 2019-11-28 stsp break;
2616 941e9f74 2019-05-21 stsp }
2617 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2618 56e0773d 2019-11-28 stsp if (te == NULL) {
2619 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2620 56e0773d 2019-11-28 stsp free(te_name);
2621 941e9f74 2019-05-21 stsp break;
2622 941e9f74 2019-05-21 stsp }
2623 56e0773d 2019-11-28 stsp free(te_name);
2624 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2625 941e9f74 2019-05-21 stsp
2626 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2627 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2628 b03c880f 2019-05-21 stsp
2629 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2630 941e9f74 2019-05-21 stsp if (slash)
2631 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2632 941e9f74 2019-05-21 stsp else
2633 941e9f74 2019-05-21 stsp subpath = strdup(path);
2634 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2635 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2636 941e9f74 2019-05-21 stsp break;
2637 941e9f74 2019-05-21 stsp }
2638 941e9f74 2019-05-21 stsp
2639 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&tree_id, s->repo, commit,
2640 941e9f74 2019-05-21 stsp subpath);
2641 941e9f74 2019-05-21 stsp if (err)
2642 941e9f74 2019-05-21 stsp break;
2643 941e9f74 2019-05-21 stsp
2644 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2645 941e9f74 2019-05-21 stsp free(tree_id);
2646 941e9f74 2019-05-21 stsp if (err)
2647 941e9f74 2019-05-21 stsp break;
2648 941e9f74 2019-05-21 stsp
2649 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2650 941e9f74 2019-05-21 stsp if (err) {
2651 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2652 941e9f74 2019-05-21 stsp break;
2653 941e9f74 2019-05-21 stsp }
2654 941e9f74 2019-05-21 stsp if (slash == NULL)
2655 941e9f74 2019-05-21 stsp break;
2656 941e9f74 2019-05-21 stsp free(subpath);
2657 941e9f74 2019-05-21 stsp subpath = NULL;
2658 941e9f74 2019-05-21 stsp p = slash;
2659 941e9f74 2019-05-21 stsp }
2660 941e9f74 2019-05-21 stsp
2661 941e9f74 2019-05-21 stsp free(subpath);
2662 1a76625f 2018-10-22 stsp return err;
2663 61266923 2020-01-14 stsp }
2664 61266923 2020-01-14 stsp
2665 61266923 2020-01-14 stsp static const struct got_error *
2666 49b24ee5 2022-07-03 mark browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2667 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2668 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2669 55cccc34 2020-02-20 stsp {
2670 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2671 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2672 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2673 55cccc34 2020-02-20 stsp
2674 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2675 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2676 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2677 55cccc34 2020-02-20 stsp
2678 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2679 bc573f3b 2021-07-10 stsp if (err)
2680 55cccc34 2020-02-20 stsp return err;
2681 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2682 55cccc34 2020-02-20 stsp
2683 55cccc34 2020-02-20 stsp *new_view = tree_view;
2684 55cccc34 2020-02-20 stsp
2685 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2686 55cccc34 2020-02-20 stsp return NULL;
2687 55cccc34 2020-02-20 stsp
2688 a44927cc 2022-04-07 stsp return tree_view_walk_path(s, entry->commit, path);
2689 55cccc34 2020-02-20 stsp }
2690 55cccc34 2020-02-20 stsp
2691 55cccc34 2020-02-20 stsp static const struct got_error *
2692 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2693 61266923 2020-01-14 stsp {
2694 61266923 2020-01-14 stsp sigset_t sigset;
2695 61266923 2020-01-14 stsp int errcode;
2696 61266923 2020-01-14 stsp
2697 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2698 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2699 61266923 2020-01-14 stsp
2700 2497f032 2022-05-31 stsp /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2701 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2702 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2703 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2704 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2705 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGINT) == -1)
2706 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2707 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGTERM) == -1)
2708 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2709 61266923 2020-01-14 stsp
2710 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2711 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2712 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2713 61266923 2020-01-14 stsp
2714 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2715 61266923 2020-01-14 stsp if (errcode)
2716 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2717 61266923 2020-01-14 stsp
2718 61266923 2020-01-14 stsp return NULL;
2719 1a76625f 2018-10-22 stsp }
2720 1a76625f 2018-10-22 stsp
2721 1a76625f 2018-10-22 stsp static void *
2722 1a76625f 2018-10-22 stsp log_thread(void *arg)
2723 1a76625f 2018-10-22 stsp {
2724 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2725 1a76625f 2018-10-22 stsp int errcode = 0;
2726 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2727 1a76625f 2018-10-22 stsp int done = 0;
2728 61266923 2020-01-14 stsp
2729 5629093a 2022-07-11 stsp /*
2730 5629093a 2022-07-11 stsp * Sync startup with main thread such that we begin our
2731 5629093a 2022-07-11 stsp * work once view_input() has released the mutex.
2732 5629093a 2022-07-11 stsp */
2733 5629093a 2022-07-11 stsp errcode = pthread_mutex_lock(&tog_mutex);
2734 5629093a 2022-07-11 stsp if (errcode) {
2735 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_lock");
2736 61266923 2020-01-14 stsp return (void *)err;
2737 5629093a 2022-07-11 stsp }
2738 1a76625f 2018-10-22 stsp
2739 5629093a 2022-07-11 stsp err = block_signals_used_by_main_thread();
2740 5629093a 2022-07-11 stsp if (err) {
2741 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2742 5629093a 2022-07-11 stsp goto done;
2743 5629093a 2022-07-11 stsp }
2744 5629093a 2022-07-11 stsp
2745 2497f032 2022-05-31 stsp while (!done && !err && !tog_fatal_signal_received()) {
2746 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2747 5629093a 2022-07-11 stsp if (errcode) {
2748 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode,
2749 5629093a 2022-07-11 stsp "pthread_mutex_unlock");
2750 5629093a 2022-07-11 stsp goto done;
2751 5629093a 2022-07-11 stsp }
2752 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2753 1a76625f 2018-10-22 stsp if (err) {
2754 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2755 5629093a 2022-07-11 stsp goto done;
2756 1a76625f 2018-10-22 stsp err = NULL;
2757 1a76625f 2018-10-22 stsp done = 1;
2758 fb280deb 2021-08-30 stsp } else if (a->commits_needed > 0 && !a->load_all)
2759 1a76625f 2018-10-22 stsp a->commits_needed--;
2760 1a76625f 2018-10-22 stsp
2761 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2762 3abe8080 2019-04-10 stsp if (errcode) {
2763 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2764 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2765 5629093a 2022-07-11 stsp goto done;
2766 3abe8080 2019-04-10 stsp } else if (*a->quit)
2767 1a76625f 2018-10-22 stsp done = 1;
2768 3abe8080 2019-04-10 stsp else if (*a->first_displayed_entry == NULL) {
2769 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2770 1a76625f 2018-10-22 stsp TAILQ_FIRST(&a->commits->head);
2771 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2772 1a76625f 2018-10-22 stsp }
2773 1a76625f 2018-10-22 stsp
2774 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2775 7c1452c1 2020-03-26 stsp if (errcode) {
2776 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2777 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2778 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2779 5629093a 2022-07-11 stsp goto done;
2780 7c1452c1 2020-03-26 stsp }
2781 7c1452c1 2020-03-26 stsp
2782 1a76625f 2018-10-22 stsp if (done)
2783 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2784 7c1452c1 2020-03-26 stsp else {
2785 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2786 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2787 7c1452c1 2020-03-26 stsp &tog_mutex);
2788 5629093a 2022-07-11 stsp if (errcode) {
2789 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2790 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2791 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2792 5629093a 2022-07-11 stsp goto done;
2793 5629093a 2022-07-11 stsp }
2794 21355643 2020-12-06 stsp if (*a->quit)
2795 21355643 2020-12-06 stsp done = 1;
2796 7c1452c1 2020-03-26 stsp }
2797 1a76625f 2018-10-22 stsp }
2798 1a76625f 2018-10-22 stsp }
2799 3abe8080 2019-04-10 stsp a->log_complete = 1;
2800 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2801 5629093a 2022-07-11 stsp if (errcode)
2802 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
2803 5629093a 2022-07-11 stsp done:
2804 5629093a 2022-07-11 stsp if (err) {
2805 5629093a 2022-07-11 stsp tog_thread_error = 1;
2806 5629093a 2022-07-11 stsp pthread_cond_signal(&a->commit_loaded);
2807 5629093a 2022-07-11 stsp }
2808 1a76625f 2018-10-22 stsp return (void *)err;
2809 1a76625f 2018-10-22 stsp }
2810 1a76625f 2018-10-22 stsp
2811 1a76625f 2018-10-22 stsp static const struct got_error *
2812 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
2813 1a76625f 2018-10-22 stsp {
2814 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *thread_err = NULL;
2815 1a76625f 2018-10-22 stsp int errcode;
2816 1a76625f 2018-10-22 stsp
2817 1a76625f 2018-10-22 stsp if (s->thread) {
2818 1a76625f 2018-10-22 stsp s->quit = 1;
2819 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
2820 1a76625f 2018-10-22 stsp if (errcode)
2821 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2822 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2823 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2824 1a76625f 2018-10-22 stsp if (errcode)
2825 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2826 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2827 5629093a 2022-07-11 stsp errcode = pthread_join(s->thread, (void **)&thread_err);
2828 1a76625f 2018-10-22 stsp if (errcode)
2829 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
2830 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2831 1a76625f 2018-10-22 stsp if (errcode)
2832 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2833 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2834 1a76625f 2018-10-22 stsp s->thread = NULL;
2835 1a76625f 2018-10-22 stsp }
2836 1a76625f 2018-10-22 stsp
2837 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
2838 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
2839 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
2840 74467cc8 2022-06-15 stsp }
2841 74467cc8 2022-06-15 stsp
2842 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds) {
2843 74467cc8 2022-06-15 stsp const struct got_error *pack_err =
2844 74467cc8 2022-06-15 stsp got_repo_pack_fds_close(s->thread_args.pack_fds);
2845 74467cc8 2022-06-15 stsp if (err == NULL)
2846 74467cc8 2022-06-15 stsp err = pack_err;
2847 74467cc8 2022-06-15 stsp s->thread_args.pack_fds = NULL;
2848 1a76625f 2018-10-22 stsp }
2849 1a76625f 2018-10-22 stsp
2850 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
2851 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
2852 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
2853 1a76625f 2018-10-22 stsp }
2854 1a76625f 2018-10-22 stsp
2855 5629093a 2022-07-11 stsp return err ? err : thread_err;
2856 9343a5fb 2018-06-23 stsp }
2857 9343a5fb 2018-06-23 stsp
2858 9343a5fb 2018-06-23 stsp static const struct got_error *
2859 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
2860 1a76625f 2018-10-22 stsp {
2861 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2862 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
2863 276b94a1 2020-11-13 naddy int errcode;
2864 1a76625f 2018-10-22 stsp
2865 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
2866 276b94a1 2020-11-13 naddy
2867 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
2868 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2869 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2870 276b94a1 2020-11-13 naddy
2871 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
2872 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2873 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2874 276b94a1 2020-11-13 naddy
2875 1a76625f 2018-10-22 stsp free_commits(&s->commits);
2876 1a76625f 2018-10-22 stsp free(s->in_repo_path);
2877 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
2878 1a76625f 2018-10-22 stsp free(s->start_id);
2879 797bc7b9 2018-10-22 stsp s->start_id = NULL;
2880 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
2881 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
2882 1a76625f 2018-10-22 stsp return err;
2883 1a76625f 2018-10-22 stsp }
2884 1a76625f 2018-10-22 stsp
2885 1a76625f 2018-10-22 stsp static const struct got_error *
2886 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
2887 60493ae3 2019-06-20 stsp {
2888 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2889 60493ae3 2019-06-20 stsp
2890 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
2891 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2892 60493ae3 2019-06-20 stsp return NULL;
2893 60493ae3 2019-06-20 stsp }
2894 60493ae3 2019-06-20 stsp
2895 60493ae3 2019-06-20 stsp static const struct got_error *
2896 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
2897 60493ae3 2019-06-20 stsp {
2898 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
2899 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2900 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
2901 60493ae3 2019-06-20 stsp
2902 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
2903 f9686aa5 2020-03-27 stsp show_log_view(view);
2904 f9686aa5 2020-03-27 stsp update_panels();
2905 f9686aa5 2020-03-27 stsp doupdate();
2906 f9686aa5 2020-03-27 stsp
2907 96e2b566 2019-07-08 stsp if (s->search_entry) {
2908 13add988 2019-10-15 stsp int errcode, ch;
2909 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2910 13add988 2019-10-15 stsp if (errcode)
2911 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2912 13add988 2019-10-15 stsp "pthread_mutex_unlock");
2913 13add988 2019-10-15 stsp ch = wgetch(view->window);
2914 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
2915 13add988 2019-10-15 stsp if (errcode)
2916 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2917 13add988 2019-10-15 stsp "pthread_mutex_lock");
2918 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
2919 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2920 678cbce5 2019-07-28 stsp return NULL;
2921 678cbce5 2019-07-28 stsp }
2922 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
2923 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
2924 96e2b566 2019-07-08 stsp else
2925 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
2926 96e2b566 2019-07-08 stsp commit_queue_head, entry);
2927 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
2928 364ac6fd 2022-06-18 stsp int matched_idx = s->matched_entry->idx;
2929 364ac6fd 2022-06-18 stsp int selected_idx = s->selected_entry->idx;
2930 364ac6fd 2022-06-18 stsp
2931 364ac6fd 2022-06-18 stsp /*
2932 f704b35c 2022-06-18 stsp * If the user has moved the cursor after we hit a match,
2933 f704b35c 2022-06-18 stsp * the position from where we should continue searching
2934 f704b35c 2022-06-18 stsp * might have changed.
2935 364ac6fd 2022-06-18 stsp */
2936 4bfe9f0a 2022-06-18 stsp if (view->searching == TOG_SEARCH_FORWARD) {
2937 364ac6fd 2022-06-18 stsp if (matched_idx > selected_idx)
2938 364ac6fd 2022-06-18 stsp entry = TAILQ_NEXT(s->selected_entry, entry);
2939 364ac6fd 2022-06-18 stsp else
2940 364ac6fd 2022-06-18 stsp entry = TAILQ_NEXT(s->matched_entry, entry);
2941 4bfe9f0a 2022-06-18 stsp } else {
2942 364ac6fd 2022-06-18 stsp if (matched_idx < selected_idx)
2943 364ac6fd 2022-06-18 stsp entry = TAILQ_PREV(s->selected_entry,
2944 364ac6fd 2022-06-18 stsp commit_queue_head, entry);
2945 364ac6fd 2022-06-18 stsp else
2946 364ac6fd 2022-06-18 stsp entry = TAILQ_PREV(s->matched_entry,
2947 364ac6fd 2022-06-18 stsp commit_queue_head, entry);
2948 4bfe9f0a 2022-06-18 stsp }
2949 20be8d96 2019-06-21 stsp } else {
2950 5a5ede53 2021-12-09 stsp entry = s->selected_entry;
2951 20be8d96 2019-06-21 stsp }
2952 60493ae3 2019-06-20 stsp
2953 60493ae3 2019-06-20 stsp while (1) {
2954 13add988 2019-10-15 stsp int have_match = 0;
2955 13add988 2019-10-15 stsp
2956 60493ae3 2019-06-20 stsp if (entry == NULL) {
2957 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
2958 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
2959 f9967bca 2020-03-27 stsp view->search_next_done =
2960 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
2961 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
2962 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
2963 f801134a 2019-06-25 stsp return NULL;
2964 60493ae3 2019-06-20 stsp }
2965 96e2b566 2019-07-08 stsp /*
2966 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
2967 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
2968 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
2969 96e2b566 2019-07-08 stsp */
2970 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
2971 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
2972 60493ae3 2019-06-20 stsp }
2973 60493ae3 2019-06-20 stsp
2974 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
2975 13add988 2019-10-15 stsp &view->regex);
2976 5943eee2 2019-08-13 stsp if (err)
2977 13add988 2019-10-15 stsp break;
2978 13add988 2019-10-15 stsp if (have_match) {
2979 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2980 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
2981 60493ae3 2019-06-20 stsp break;
2982 60493ae3 2019-06-20 stsp }
2983 13add988 2019-10-15 stsp
2984 96e2b566 2019-07-08 stsp s->search_entry = entry;
2985 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2986 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
2987 b1bf1435 2019-06-21 stsp else
2988 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2989 60493ae3 2019-06-20 stsp }
2990 60493ae3 2019-06-20 stsp
2991 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
2992 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
2993 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
2994 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
2995 60493ae3 2019-06-20 stsp if (err)
2996 60493ae3 2019-06-20 stsp return err;
2997 ead14cbe 2019-06-21 stsp cur++;
2998 ead14cbe 2019-06-21 stsp }
2999 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
3000 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
3001 60493ae3 2019-06-20 stsp if (err)
3002 60493ae3 2019-06-20 stsp return err;
3003 ead14cbe 2019-06-21 stsp cur--;
3004 60493ae3 2019-06-20 stsp }
3005 60493ae3 2019-06-20 stsp }
3006 60493ae3 2019-06-20 stsp
3007 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3008 96e2b566 2019-07-08 stsp
3009 60493ae3 2019-06-20 stsp return NULL;
3010 60493ae3 2019-06-20 stsp }
3011 60493ae3 2019-06-20 stsp
3012 60493ae3 2019-06-20 stsp static const struct got_error *
3013 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3014 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3015 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3016 80ddbec8 2018-04-29 stsp {
3017 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3018 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3019 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3020 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3021 1a76625f 2018-10-22 stsp int errcode;
3022 80ddbec8 2018-04-29 stsp
3023 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3024 f135c941 2020-02-20 stsp free(s->in_repo_path);
3025 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3026 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3027 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3028 f135c941 2020-02-20 stsp }
3029 ecb28ae0 2018-07-16 stsp
3030 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3031 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->commits.head);
3032 fb2756b9 2018-08-04 stsp s->commits.ncommits = 0;
3033 78756c87 2020-11-24 stsp
3034 fb2756b9 2018-08-04 stsp s->repo = repo;
3035 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3036 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3037 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3038 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3039 9cd7cbd1 2020-12-07 stsp goto done;
3040 9cd7cbd1 2020-12-07 stsp }
3041 9cd7cbd1 2020-12-07 stsp }
3042 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3043 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3044 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3045 5036bf37 2018-09-24 stsp goto done;
3046 5036bf37 2018-09-24 stsp }
3047 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3048 e5a0f69f 2018-08-18 stsp
3049 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3050 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3051 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3052 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3053 11b20872 2019-11-08 stsp if (err)
3054 11b20872 2019-11-08 stsp goto done;
3055 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3056 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3057 11b20872 2019-11-08 stsp if (err) {
3058 11b20872 2019-11-08 stsp free_colors(&s->colors);
3059 11b20872 2019-11-08 stsp goto done;
3060 11b20872 2019-11-08 stsp }
3061 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3062 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3063 11b20872 2019-11-08 stsp if (err) {
3064 11b20872 2019-11-08 stsp free_colors(&s->colors);
3065 11b20872 2019-11-08 stsp goto done;
3066 11b20872 2019-11-08 stsp }
3067 11b20872 2019-11-08 stsp }
3068 11b20872 2019-11-08 stsp
3069 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3070 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3071 571ccd73 2022-07-19 mark view->resize = resize_log_view;
3072 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3073 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3074 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3075 1a76625f 2018-10-22 stsp
3076 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds == NULL) {
3077 74467cc8 2022-06-15 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3078 74467cc8 2022-06-15 stsp if (err)
3079 74467cc8 2022-06-15 stsp goto done;
3080 74467cc8 2022-06-15 stsp }
3081 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3082 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3083 0ae84acc 2022-06-15 tracey if (err)
3084 0ae84acc 2022-06-15 tracey goto done;
3085 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3086 b672a97a 2020-01-27 stsp !s->log_branches);
3087 1a76625f 2018-10-22 stsp if (err)
3088 1a76625f 2018-10-22 stsp goto done;
3089 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3090 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3091 c5b78334 2020-01-12 stsp if (err)
3092 c5b78334 2020-01-12 stsp goto done;
3093 1a76625f 2018-10-22 stsp
3094 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3095 1a76625f 2018-10-22 stsp if (errcode) {
3096 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3097 1a76625f 2018-10-22 stsp goto done;
3098 1a76625f 2018-10-22 stsp }
3099 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3100 7c1452c1 2020-03-26 stsp if (errcode) {
3101 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3102 7c1452c1 2020-03-26 stsp goto done;
3103 7c1452c1 2020-03-26 stsp }
3104 1a76625f 2018-10-22 stsp
3105 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3106 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3107 1a76625f 2018-10-22 stsp s->thread_args.commits = &s->commits;
3108 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3109 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3110 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3111 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3112 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3113 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3114 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3115 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3116 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3117 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3118 ba4f502b 2018-08-04 stsp done:
3119 1a76625f 2018-10-22 stsp if (err)
3120 1a76625f 2018-10-22 stsp close_log_view(view);
3121 ba4f502b 2018-08-04 stsp return err;
3122 ba4f502b 2018-08-04 stsp }
3123 ba4f502b 2018-08-04 stsp
3124 e5a0f69f 2018-08-18 stsp static const struct got_error *
3125 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3126 ba4f502b 2018-08-04 stsp {
3127 f2f6d207 2020-11-24 stsp const struct got_error *err;
3128 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3129 ba4f502b 2018-08-04 stsp
3130 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
3131 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3132 2b380cc8 2018-10-24 stsp &s->thread_args);
3133 2b380cc8 2018-10-24 stsp if (errcode)
3134 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3135 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3136 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3137 f2f6d207 2020-11-24 stsp if (err)
3138 f2f6d207 2020-11-24 stsp return err;
3139 f2f6d207 2020-11-24 stsp }
3140 2b380cc8 2018-10-24 stsp }
3141 2b380cc8 2018-10-24 stsp
3142 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3143 b880cc75 2022-06-30 mark }
3144 b880cc75 2022-06-30 mark
3145 b880cc75 2022-06-30 mark static void
3146 b880cc75 2022-06-30 mark log_move_cursor_up(struct tog_view *view, int page, int home)
3147 b880cc75 2022-06-30 mark {
3148 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3149 b880cc75 2022-06-30 mark
3150 b880cc75 2022-06-30 mark if (s->selected_entry->idx == 0)
3151 b880cc75 2022-06-30 mark view->count = 0;
3152 b880cc75 2022-06-30 mark if (s->first_displayed_entry == NULL)
3153 b880cc75 2022-06-30 mark return;
3154 b880cc75 2022-06-30 mark
3155 b880cc75 2022-06-30 mark if ((page && TAILQ_FIRST(&s->commits.head) == s->first_displayed_entry)
3156 b880cc75 2022-06-30 mark || home)
3157 b880cc75 2022-06-30 mark s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3158 b880cc75 2022-06-30 mark
3159 b880cc75 2022-06-30 mark if (!page && !home && s->selected > 0)
3160 b880cc75 2022-06-30 mark --s->selected;
3161 b880cc75 2022-06-30 mark else
3162 b880cc75 2022-06-30 mark log_scroll_up(s, home ? s->commits.ncommits : MAX(page, 1));
3163 b880cc75 2022-06-30 mark
3164 b880cc75 2022-06-30 mark select_commit(s);
3165 b880cc75 2022-06-30 mark return;
3166 b880cc75 2022-06-30 mark }
3167 b880cc75 2022-06-30 mark
3168 b880cc75 2022-06-30 mark static const struct got_error *
3169 b880cc75 2022-06-30 mark log_move_cursor_down(struct tog_view *view, int page)
3170 b880cc75 2022-06-30 mark {
3171 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3172 b880cc75 2022-06-30 mark const struct got_error *err = NULL;
3173 631e7531 2022-08-12 mark int eos = view->nlines - 2;
3174 b880cc75 2022-06-30 mark
3175 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3176 b880cc75 2022-06-30 mark s->selected_entry->idx >= s->commits.ncommits - 1)
3177 b880cc75 2022-06-30 mark return NULL;
3178 b880cc75 2022-06-30 mark
3179 631e7531 2022-08-12 mark if (view_is_hsplit_top(view))
3180 631e7531 2022-08-12 mark --eos; /* border consumes the last line */
3181 b880cc75 2022-06-30 mark
3182 631e7531 2022-08-12 mark if (!page) {
3183 b880cc75 2022-06-30 mark if (s->selected < MIN(eos, s->commits.ncommits - 1))
3184 b880cc75 2022-06-30 mark ++s->selected;
3185 b880cc75 2022-06-30 mark else
3186 b880cc75 2022-06-30 mark err = log_scroll_down(view, 1);
3187 11edf34c 2022-08-12 mark } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3188 631e7531 2022-08-12 mark struct commit_queue_entry *entry;
3189 631e7531 2022-08-12 mark int n;
3190 631e7531 2022-08-12 mark
3191 631e7531 2022-08-12 mark s->selected = 0;
3192 631e7531 2022-08-12 mark entry = TAILQ_LAST(&s->commits.head, commit_queue_head);
3193 631e7531 2022-08-12 mark s->last_displayed_entry = entry;
3194 631e7531 2022-08-12 mark for (n = 0; n <= eos; n++) {
3195 631e7531 2022-08-12 mark if (entry == NULL)
3196 631e7531 2022-08-12 mark break;
3197 631e7531 2022-08-12 mark s->first_displayed_entry = entry;
3198 631e7531 2022-08-12 mark entry = TAILQ_PREV(entry, commit_queue_head, entry);
3199 631e7531 2022-08-12 mark }
3200 631e7531 2022-08-12 mark if (n > 0)
3201 631e7531 2022-08-12 mark s->selected = n - 1;
3202 b880cc75 2022-06-30 mark } else {
3203 cbb0c8d7 2022-08-12 mark if (s->last_displayed_entry->idx == s->commits.ncommits - 1 &&
3204 cbb0c8d7 2022-08-12 mark s->thread_args.log_complete)
3205 cbb0c8d7 2022-08-12 mark s->selected += MIN(page,
3206 cbb0c8d7 2022-08-12 mark s->commits.ncommits - s->selected_entry->idx - 1);
3207 cbb0c8d7 2022-08-12 mark else
3208 cbb0c8d7 2022-08-12 mark err = log_scroll_down(view, page);
3209 b880cc75 2022-06-30 mark }
3210 b880cc75 2022-06-30 mark if (err)
3211 b880cc75 2022-06-30 mark return err;
3212 b880cc75 2022-06-30 mark
3213 9b058f45 2022-06-30 mark /*
3214 9b058f45 2022-06-30 mark * We might necessarily overshoot in horizontal
3215 9b058f45 2022-06-30 mark * splits; if so, select the last displayed commit.
3216 9b058f45 2022-06-30 mark */
3217 374f69dd 2022-08-13 stsp if (s->first_displayed_entry && s->last_displayed_entry) {
3218 374f69dd 2022-08-13 stsp s->selected = MIN(s->selected,
3219 374f69dd 2022-08-13 stsp s->last_displayed_entry->idx -
3220 374f69dd 2022-08-13 stsp s->first_displayed_entry->idx);
3221 374f69dd 2022-08-13 stsp }
3222 9b058f45 2022-06-30 mark
3223 b880cc75 2022-06-30 mark select_commit(s);
3224 b880cc75 2022-06-30 mark
3225 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3226 b880cc75 2022-06-30 mark s->selected_entry->idx == s->commits.ncommits - 1)
3227 b880cc75 2022-06-30 mark view->count = 0;
3228 b880cc75 2022-06-30 mark
3229 b880cc75 2022-06-30 mark return NULL;
3230 e5a0f69f 2018-08-18 stsp }
3231 04cc582a 2018-08-01 stsp
3232 9b058f45 2022-06-30 mark static void
3233 9b058f45 2022-06-30 mark view_get_split(struct tog_view *view, int *y, int *x)
3234 9b058f45 2022-06-30 mark {
3235 76364b2d 2022-07-02 mark *x = 0;
3236 76364b2d 2022-07-02 mark *y = 0;
3237 76364b2d 2022-07-02 mark
3238 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3239 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_y)
3240 3c1dfe12 2022-07-08 mark *y = view->child->resized_y;
3241 7532ccda 2022-07-11 mark else if (view->resized_y)
3242 7532ccda 2022-07-11 mark *y = view->resized_y;
3243 3c1dfe12 2022-07-08 mark else
3244 3c1dfe12 2022-07-08 mark *y = view_split_begin_y(view->lines);
3245 7532ccda 2022-07-11 mark } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3246 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_x)
3247 3c1dfe12 2022-07-08 mark *x = view->child->resized_x;
3248 7532ccda 2022-07-11 mark else if (view->resized_x)
3249 7532ccda 2022-07-11 mark *x = view->resized_x;
3250 3c1dfe12 2022-07-08 mark else
3251 3c1dfe12 2022-07-08 mark *x = view_split_begin_x(view->begin_x);
3252 3c1dfe12 2022-07-08 mark }
3253 9b058f45 2022-06-30 mark }
3254 9b058f45 2022-06-30 mark
3255 9b058f45 2022-06-30 mark /* Split view horizontally at y and offset view->state->selected line. */
3256 e5a0f69f 2018-08-18 stsp static const struct got_error *
3257 9b058f45 2022-06-30 mark view_init_hsplit(struct tog_view *view, int y)
3258 9b058f45 2022-06-30 mark {
3259 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
3260 9b058f45 2022-06-30 mark
3261 9b058f45 2022-06-30 mark view->nlines = y;
3262 d2366e29 2022-07-07 mark view->ncols = COLS;
3263 9b058f45 2022-06-30 mark err = view_resize(view);
3264 9b058f45 2022-06-30 mark if (err)
3265 9b058f45 2022-06-30 mark return err;
3266 9b058f45 2022-06-30 mark
3267 9b058f45 2022-06-30 mark err = offset_selection_down(view);
3268 9b058f45 2022-06-30 mark
3269 9b058f45 2022-06-30 mark return err;
3270 94b80cfa 2022-08-01 mark }
3271 94b80cfa 2022-08-01 mark
3272 94b80cfa 2022-08-01 mark static const struct got_error *
3273 94b80cfa 2022-08-01 mark log_goto_line(struct tog_view *view, int nlines)
3274 94b80cfa 2022-08-01 mark {
3275 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
3276 94b80cfa 2022-08-01 mark struct tog_log_view_state *s = &view->state.log;
3277 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
3278 374f69dd 2022-08-13 stsp
3279 374f69dd 2022-08-13 stsp if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3280 374f69dd 2022-08-13 stsp return NULL;
3281 94b80cfa 2022-08-01 mark
3282 94b80cfa 2022-08-01 mark g = view->gline;
3283 94b80cfa 2022-08-01 mark view->gline = 0;
3284 94b80cfa 2022-08-01 mark
3285 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
3286 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
3287 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
3288 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
3289 94b80cfa 2022-08-01 mark select_commit(s);
3290 94b80cfa 2022-08-01 mark return NULL;
3291 94b80cfa 2022-08-01 mark }
3292 94b80cfa 2022-08-01 mark
3293 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
3294 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view, g - idx - 1);
3295 94b80cfa 2022-08-01 mark if (!err && g > s->selected_entry->idx + 1)
3296 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view,
3297 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1);
3298 94b80cfa 2022-08-01 mark if (err)
3299 94b80cfa 2022-08-01 mark return err;
3300 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
3301 94b80cfa 2022-08-01 mark log_move_cursor_up(view, idx - g + 1, 0);
3302 94b80cfa 2022-08-01 mark
3303 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
3304 94b80cfa 2022-08-01 mark s->selected = g - 1;
3305 94b80cfa 2022-08-01 mark
3306 94b80cfa 2022-08-01 mark select_commit(s);
3307 94b80cfa 2022-08-01 mark return NULL;
3308 94b80cfa 2022-08-01 mark
3309 9b058f45 2022-06-30 mark }
3310 9b058f45 2022-06-30 mark
3311 9b058f45 2022-06-30 mark static const struct got_error *
3312 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3313 e5a0f69f 2018-08-18 stsp {
3314 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3315 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3316 631e7531 2022-08-12 mark int eos, nscroll;
3317 80ddbec8 2018-04-29 stsp
3318 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3319 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3320 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3321 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3322 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, s->commits.ncommits);
3323 0dca135e 2022-06-30 mark s->thread_args.load_all = 0;
3324 fb280deb 2021-08-30 stsp }
3325 11edf34c 2022-08-12 mark if (err)
3326 11edf34c 2022-08-12 mark return err;
3327 528dedf3 2021-08-30 stsp }
3328 0dca135e 2022-06-30 mark
3329 0dca135e 2022-06-30 mark eos = nscroll = view->nlines - 1;
3330 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
3331 0dca135e 2022-06-30 mark --eos; /* border */
3332 94b80cfa 2022-08-01 mark
3333 94b80cfa 2022-08-01 mark if (view->gline)
3334 94b80cfa 2022-08-01 mark return log_goto_line(view, eos);
3335 0dca135e 2022-06-30 mark
3336 528dedf3 2021-08-30 stsp switch (ch) {
3337 1e37a5c2 2019-05-12 jcs case 'q':
3338 1e37a5c2 2019-05-12 jcs s->quit = 1;
3339 145b6838 2022-06-16 stsp break;
3340 145b6838 2022-06-16 stsp case '0':
3341 145b6838 2022-06-16 stsp view->x = 0;
3342 145b6838 2022-06-16 stsp break;
3343 145b6838 2022-06-16 stsp case '$':
3344 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 2, 0);
3345 640cd7ff 2022-06-22 mark view->count = 0;
3346 145b6838 2022-06-16 stsp break;
3347 145b6838 2022-06-16 stsp case KEY_RIGHT:
3348 145b6838 2022-06-16 stsp case 'l':
3349 145b6838 2022-06-16 stsp if (view->x + view->ncols / 2 < view->maxx)
3350 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
3351 640cd7ff 2022-06-22 mark else
3352 640cd7ff 2022-06-22 mark view->count = 0;
3353 1e37a5c2 2019-05-12 jcs break;
3354 145b6838 2022-06-16 stsp case KEY_LEFT:
3355 145b6838 2022-06-16 stsp case 'h':
3356 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
3357 640cd7ff 2022-06-22 mark if (view->x <= 0)
3358 640cd7ff 2022-06-22 mark view->count = 0;
3359 145b6838 2022-06-16 stsp break;
3360 1e37a5c2 2019-05-12 jcs case 'k':
3361 1e37a5c2 2019-05-12 jcs case KEY_UP:
3362 1e37a5c2 2019-05-12 jcs case '<':
3363 1e37a5c2 2019-05-12 jcs case ',':
3364 02ffd0d5 2021-10-17 stsp case CTRL('p'):
3365 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 0);
3366 912a3f79 2021-08-30 j break;
3367 912a3f79 2021-08-30 j case 'g':
3368 912a3f79 2021-08-30 j case KEY_HOME:
3369 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 1);
3370 640cd7ff 2022-06-22 mark view->count = 0;
3371 1e37a5c2 2019-05-12 jcs break;
3372 83cc4199 2022-06-13 stsp case CTRL('u'):
3373 33c3719a 2022-06-15 stsp case 'u':
3374 83cc4199 2022-06-13 stsp nscroll /= 2;
3375 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3376 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3377 a4292ac5 2019-05-12 jcs case CTRL('b'):
3378 61417565 2022-06-20 mark case 'b':
3379 b880cc75 2022-06-30 mark log_move_cursor_up(view, nscroll, 0);
3380 1e37a5c2 2019-05-12 jcs break;
3381 1e37a5c2 2019-05-12 jcs case 'j':
3382 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3383 1e37a5c2 2019-05-12 jcs case '>':
3384 1e37a5c2 2019-05-12 jcs case '.':
3385 02ffd0d5 2021-10-17 stsp case CTRL('n'):
3386 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, 0);
3387 912a3f79 2021-08-30 j break;
3388 10aab77f 2022-07-19 op case '@':
3389 10aab77f 2022-07-19 op s->use_committer = !s->use_committer;
3390 10aab77f 2022-07-19 op break;
3391 912a3f79 2021-08-30 j case 'G':
3392 912a3f79 2021-08-30 j case KEY_END: {
3393 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3394 912a3f79 2021-08-30 j * traverse them all. */
3395 640cd7ff 2022-06-22 mark view->count = 0;
3396 631e7531 2022-08-12 mark s->thread_args.load_all = 1;
3397 631e7531 2022-08-12 mark if (!s->thread_args.log_complete)
3398 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3399 631e7531 2022-08-12 mark err = log_move_cursor_down(view, s->commits.ncommits);
3400 631e7531 2022-08-12 mark s->thread_args.load_all = 0;
3401 1e37a5c2 2019-05-12 jcs break;
3402 912a3f79 2021-08-30 j }
3403 80b7e8da 2022-06-11 stsp case CTRL('d'):
3404 33c3719a 2022-06-15 stsp case 'd':
3405 83cc4199 2022-06-13 stsp nscroll /= 2;
3406 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3407 83cc4199 2022-06-13 stsp case KEY_NPAGE:
3408 61417565 2022-06-20 mark case CTRL('f'):
3409 48bb96f0 2022-06-20 naddy case 'f':
3410 b880cc75 2022-06-30 mark case ' ':
3411 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, nscroll);
3412 1e37a5c2 2019-05-12 jcs break;
3413 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3414 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3415 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3416 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
3417 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
3418 2b779855 2020-12-05 naddy select_commit(s);
3419 0bf7f153 2020-12-02 naddy if (s->commits.ncommits < view->nlines - 1 &&
3420 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3421 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3422 0bf7f153 2020-12-02 naddy s->commits.ncommits;
3423 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3424 0bf7f153 2020-12-02 naddy }
3425 1e37a5c2 2019-05-12 jcs break;
3426 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3427 49b24ee5 2022-07-03 mark case '\r':
3428 640cd7ff 2022-06-22 mark view->count = 0;
3429 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3430 e5a0f69f 2018-08-18 stsp break;
3431 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3432 1e37a5c2 2019-05-12 jcs break;
3433 5e98fb33 2022-07-22 mark case 'T':
3434 640cd7ff 2022-06-22 mark view->count = 0;
3435 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3436 5036bf37 2018-09-24 stsp break;
3437 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
3438 1e37a5c2 2019-05-12 jcs break;
3439 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3440 21355643 2020-12-06 stsp case CTRL('l'):
3441 21355643 2020-12-06 stsp case 'B':
3442 640cd7ff 2022-06-22 mark view->count = 0;
3443 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3444 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3445 1e37a5c2 2019-05-12 jcs break;
3446 21355643 2020-12-06 stsp err = stop_log_thread(s);
3447 74cfe85e 2020-10-20 stsp if (err)
3448 74cfe85e 2020-10-20 stsp return err;
3449 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3450 21355643 2020-12-06 stsp char *parent_path;
3451 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3452 21355643 2020-12-06 stsp if (err)
3453 21355643 2020-12-06 stsp return err;
3454 21355643 2020-12-06 stsp free(s->in_repo_path);
3455 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3456 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3457 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3458 21355643 2020-12-06 stsp struct got_object_id *start_id;
3459 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3460 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3461 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3462 21355643 2020-12-06 stsp if (err)
3463 21355643 2020-12-06 stsp return err;
3464 21355643 2020-12-06 stsp free(s->start_id);
3465 21355643 2020-12-06 stsp s->start_id = start_id;
3466 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3467 21355643 2020-12-06 stsp } else /* 'B' */
3468 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3469 21355643 2020-12-06 stsp
3470 b0dd8d27 2022-06-16 stsp if (s->thread_args.pack_fds == NULL) {
3471 b0dd8d27 2022-06-16 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3472 b0dd8d27 2022-06-16 stsp if (err)
3473 b0dd8d27 2022-06-16 stsp return err;
3474 b0dd8d27 2022-06-16 stsp }
3475 74467cc8 2022-06-15 stsp err = got_repo_open(&s->thread_args.repo,
3476 74467cc8 2022-06-15 stsp got_repo_get_path(s->repo), NULL,
3477 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3478 74cfe85e 2020-10-20 stsp if (err)
3479 21355643 2020-12-06 stsp return err;
3480 51a10b52 2020-12-26 stsp tog_free_refs();
3481 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, 0);
3482 ca51c541 2020-12-07 stsp if (err)
3483 ca51c541 2020-12-07 stsp return err;
3484 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3485 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3486 d01904d4 2019-06-25 stsp if (err)
3487 d01904d4 2019-06-25 stsp return err;
3488 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3489 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3490 b672a97a 2020-01-27 stsp if (err)
3491 b672a97a 2020-01-27 stsp return err;
3492 21355643 2020-12-06 stsp free_commits(&s->commits);
3493 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3494 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3495 21355643 2020-12-06 stsp s->selected_entry = NULL;
3496 21355643 2020-12-06 stsp s->selected = 0;
3497 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3498 21355643 2020-12-06 stsp s->quit = 0;
3499 9b058f45 2022-06-30 mark s->thread_args.commits_needed = view->lines;
3500 dfee752e 2022-06-18 op s->matched_entry = NULL;
3501 dfee752e 2022-06-18 op s->search_entry = NULL;
3502 01a7bcaf 2022-07-22 mark view->offset = 0;
3503 d01904d4 2019-06-25 stsp break;
3504 5e98fb33 2022-07-22 mark case 'R':
3505 640cd7ff 2022-06-22 mark view->count = 0;
3506 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
3507 6458efa5 2020-11-24 stsp break;
3508 1e37a5c2 2019-05-12 jcs default:
3509 640cd7ff 2022-06-22 mark view->count = 0;
3510 1e37a5c2 2019-05-12 jcs break;
3511 899d86c2 2018-05-10 stsp }
3512 e5a0f69f 2018-08-18 stsp
3513 80ddbec8 2018-04-29 stsp return err;
3514 80ddbec8 2018-04-29 stsp }
3515 80ddbec8 2018-04-29 stsp
3516 4ed7e80c 2018-05-20 stsp static const struct got_error *
3517 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3518 c2db6724 2019-01-04 stsp {
3519 c2db6724 2019-01-04 stsp const struct got_error *error;
3520 c2db6724 2019-01-04 stsp
3521 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3522 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3523 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3524 37c06ea4 2019-07-15 stsp #endif
3525 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3526 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3527 c2db6724 2019-01-04 stsp
3528 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3529 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3530 c2db6724 2019-01-04 stsp
3531 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3532 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3533 c2db6724 2019-01-04 stsp
3534 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3535 c2db6724 2019-01-04 stsp if (error != NULL)
3536 c2db6724 2019-01-04 stsp return error;
3537 c2db6724 2019-01-04 stsp
3538 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3539 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3540 c2db6724 2019-01-04 stsp
3541 c2db6724 2019-01-04 stsp return NULL;
3542 c2db6724 2019-01-04 stsp }
3543 c2db6724 2019-01-04 stsp
3544 a915003a 2019-02-05 stsp static void
3545 a915003a 2019-02-05 stsp init_curses(void)
3546 a915003a 2019-02-05 stsp {
3547 2497f032 2022-05-31 stsp /*
3548 2497f032 2022-05-31 stsp * Override default signal handlers before starting ncurses.
3549 2497f032 2022-05-31 stsp * This should prevent ncurses from installing its own
3550 2497f032 2022-05-31 stsp * broken cleanup() signal handler.
3551 2497f032 2022-05-31 stsp */
3552 2497f032 2022-05-31 stsp signal(SIGWINCH, tog_sigwinch);
3553 2497f032 2022-05-31 stsp signal(SIGPIPE, tog_sigpipe);
3554 2497f032 2022-05-31 stsp signal(SIGCONT, tog_sigcont);
3555 2497f032 2022-05-31 stsp signal(SIGINT, tog_sigint);
3556 2497f032 2022-05-31 stsp signal(SIGTERM, tog_sigterm);
3557 2497f032 2022-05-31 stsp
3558 a915003a 2019-02-05 stsp initscr();
3559 a915003a 2019-02-05 stsp cbreak();
3560 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3561 a915003a 2019-02-05 stsp noecho();
3562 a915003a 2019-02-05 stsp nonl();
3563 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3564 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3565 a915003a 2019-02-05 stsp curs_set(0);
3566 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3567 6d17833f 2019-11-08 stsp start_color();
3568 6d17833f 2019-11-08 stsp use_default_colors();
3569 6d17833f 2019-11-08 stsp }
3570 a915003a 2019-02-05 stsp }
3571 a915003a 2019-02-05 stsp
3572 c2db6724 2019-01-04 stsp static const struct got_error *
3573 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3574 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3575 f135c941 2020-02-20 stsp {
3576 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3577 f135c941 2020-02-20 stsp
3578 f135c941 2020-02-20 stsp if (argc == 0) {
3579 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3580 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3581 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3582 f135c941 2020-02-20 stsp return NULL;
3583 f135c941 2020-02-20 stsp }
3584 f135c941 2020-02-20 stsp
3585 f135c941 2020-02-20 stsp if (worktree) {
3586 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3587 bfd61697 2020-11-14 stsp char *p;
3588 f135c941 2020-02-20 stsp
3589 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3590 f135c941 2020-02-20 stsp if (err)
3591 f135c941 2020-02-20 stsp return err;
3592 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3593 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3594 bfd61697 2020-11-14 stsp p) == -1) {
3595 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3596 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3597 f135c941 2020-02-20 stsp }
3598 f135c941 2020-02-20 stsp free(p);
3599 f135c941 2020-02-20 stsp } else
3600 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3601 f135c941 2020-02-20 stsp
3602 f135c941 2020-02-20 stsp return err;
3603 f135c941 2020-02-20 stsp }
3604 f135c941 2020-02-20 stsp
3605 f135c941 2020-02-20 stsp static const struct got_error *
3606 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3607 9f7d7167 2018-04-29 stsp {
3608 80ddbec8 2018-04-29 stsp const struct got_error *error;
3609 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3610 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3611 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3612 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3613 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3614 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3615 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3616 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3617 04cc582a 2018-08-01 stsp struct tog_view *view;
3618 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
3619 80ddbec8 2018-04-29 stsp
3620 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3621 80ddbec8 2018-04-29 stsp switch (ch) {
3622 b672a97a 2020-01-27 stsp case 'b':
3623 b672a97a 2020-01-27 stsp log_branches = 1;
3624 b672a97a 2020-01-27 stsp break;
3625 80ddbec8 2018-04-29 stsp case 'c':
3626 80ddbec8 2018-04-29 stsp start_commit = optarg;
3627 80ddbec8 2018-04-29 stsp break;
3628 ecb28ae0 2018-07-16 stsp case 'r':
3629 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3630 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3631 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3632 9ba1d308 2019-10-21 stsp optarg);
3633 ecb28ae0 2018-07-16 stsp break;
3634 80ddbec8 2018-04-29 stsp default:
3635 17020d27 2019-03-07 stsp usage_log();
3636 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3637 80ddbec8 2018-04-29 stsp }
3638 80ddbec8 2018-04-29 stsp }
3639 80ddbec8 2018-04-29 stsp
3640 80ddbec8 2018-04-29 stsp argc -= optind;
3641 80ddbec8 2018-04-29 stsp argv += optind;
3642 80ddbec8 2018-04-29 stsp
3643 f135c941 2020-02-20 stsp if (argc > 1)
3644 f135c941 2020-02-20 stsp usage_log();
3645 963f97a1 2019-03-18 stsp
3646 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
3647 0ae84acc 2022-06-15 tracey if (error != NULL)
3648 0ae84acc 2022-06-15 tracey goto done;
3649 0ae84acc 2022-06-15 tracey
3650 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3651 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3652 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3653 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3654 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3655 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3656 c156c7a4 2020-12-18 stsp goto done;
3657 a1fbf39a 2019-08-11 stsp if (worktree)
3658 6962eb72 2020-02-20 stsp repo_path =
3659 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
3660 a1fbf39a 2019-08-11 stsp else
3661 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
3662 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
3663 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
3664 c156c7a4 2020-12-18 stsp goto done;
3665 c156c7a4 2020-12-18 stsp }
3666 ecb28ae0 2018-07-16 stsp }
3667 ecb28ae0 2018-07-16 stsp
3668 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
3669 80ddbec8 2018-04-29 stsp if (error != NULL)
3670 ecb28ae0 2018-07-16 stsp goto done;
3671 80ddbec8 2018-04-29 stsp
3672 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
3673 f135c941 2020-02-20 stsp repo, worktree);
3674 f135c941 2020-02-20 stsp if (error)
3675 f135c941 2020-02-20 stsp goto done;
3676 f135c941 2020-02-20 stsp
3677 f135c941 2020-02-20 stsp init_curses();
3678 f135c941 2020-02-20 stsp
3679 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
3680 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3681 c02c541e 2019-03-29 stsp if (error)
3682 c02c541e 2019-03-29 stsp goto done;
3683 c02c541e 2019-03-29 stsp
3684 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
3685 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
3686 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
3687 87670572 2020-12-26 naddy if (error)
3688 87670572 2020-12-26 naddy goto done;
3689 87670572 2020-12-26 naddy }
3690 51a10b52 2020-12-26 stsp
3691 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
3692 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
3693 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
3694 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
3695 d8f38dc4 2020-12-05 stsp if (error)
3696 d8f38dc4 2020-12-05 stsp goto done;
3697 d8f38dc4 2020-12-05 stsp head_ref_name = label;
3698 d8f38dc4 2020-12-05 stsp } else {
3699 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
3700 d8f38dc4 2020-12-05 stsp if (error == NULL)
3701 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
3702 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
3703 d8f38dc4 2020-12-05 stsp goto done;
3704 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
3705 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
3706 d8f38dc4 2020-12-05 stsp if (error)
3707 d8f38dc4 2020-12-05 stsp goto done;
3708 d8f38dc4 2020-12-05 stsp }
3709 8b473291 2019-02-21 stsp
3710 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
3711 04cc582a 2018-08-01 stsp if (view == NULL) {
3712 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3713 04cc582a 2018-08-01 stsp goto done;
3714 04cc582a 2018-08-01 stsp }
3715 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
3716 f135c941 2020-02-20 stsp in_repo_path, log_branches);
3717 ba4f502b 2018-08-04 stsp if (error)
3718 ba4f502b 2018-08-04 stsp goto done;
3719 2fc00ff4 2019-08-31 stsp if (worktree) {
3720 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
3721 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
3722 2fc00ff4 2019-08-31 stsp worktree = NULL;
3723 2fc00ff4 2019-08-31 stsp }
3724 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3725 ecb28ae0 2018-07-16 stsp done:
3726 f135c941 2020-02-20 stsp free(in_repo_path);
3727 ecb28ae0 2018-07-16 stsp free(repo_path);
3728 ecb28ae0 2018-07-16 stsp free(cwd);
3729 899d86c2 2018-05-10 stsp free(start_id);
3730 d8f38dc4 2020-12-05 stsp free(label);
3731 d8f38dc4 2020-12-05 stsp if (ref)
3732 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
3733 1d0f4054 2021-06-17 stsp if (repo) {
3734 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
3735 1d0f4054 2021-06-17 stsp if (error == NULL)
3736 1d0f4054 2021-06-17 stsp error = close_err;
3737 1d0f4054 2021-06-17 stsp }
3738 ec142235 2019-03-07 stsp if (worktree)
3739 ec142235 2019-03-07 stsp got_worktree_close(worktree);
3740 0ae84acc 2022-06-15 tracey if (pack_fds) {
3741 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
3742 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
3743 0ae84acc 2022-06-15 tracey if (error == NULL)
3744 0ae84acc 2022-06-15 tracey error = pack_err;
3745 0ae84acc 2022-06-15 tracey }
3746 51a10b52 2020-12-26 stsp tog_free_refs();
3747 80ddbec8 2018-04-29 stsp return error;
3748 9f7d7167 2018-04-29 stsp }
3749 9f7d7167 2018-04-29 stsp
3750 4ed7e80c 2018-05-20 stsp __dead static void
3751 9f7d7167 2018-04-29 stsp usage_diff(void)
3752 9f7d7167 2018-04-29 stsp {
3753 80ddbec8 2018-04-29 stsp endwin();
3754 827a167b 2022-08-16 stsp fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
3755 827a167b 2022-08-16 stsp "object1 object2\n", getprogname());
3756 9f7d7167 2018-04-29 stsp exit(1);
3757 b304db33 2018-05-20 stsp }
3758 b304db33 2018-05-20 stsp
3759 6d17833f 2019-11-08 stsp static int
3760 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
3761 41605754 2020-11-12 stsp regmatch_t *regmatch)
3762 6d17833f 2019-11-08 stsp {
3763 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
3764 6d17833f 2019-11-08 stsp }
3765 6d17833f 2019-11-08 stsp
3766 336075a4 2022-06-25 op static struct tog_color *
3767 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
3768 6d17833f 2019-11-08 stsp {
3769 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
3770 6d17833f 2019-11-08 stsp
3771 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
3772 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
3773 6d17833f 2019-11-08 stsp return tc;
3774 6d17833f 2019-11-08 stsp }
3775 6d17833f 2019-11-08 stsp
3776 6d17833f 2019-11-08 stsp return NULL;
3777 6d17833f 2019-11-08 stsp }
3778 6d17833f 2019-11-08 stsp
3779 4ed7e80c 2018-05-20 stsp static const struct got_error *
3780 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
3781 1853e0f4 2022-06-16 stsp WINDOW *window, int skipcol, regmatch_t *regmatch)
3782 41605754 2020-11-12 stsp {
3783 41605754 2020-11-12 stsp const struct got_error *err = NULL;
3784 44a87665 2022-06-16 stsp char *exstr = NULL;
3785 1853e0f4 2022-06-16 stsp wchar_t *wline = NULL;
3786 1853e0f4 2022-06-16 stsp int rme, rms, n, width, scrollx;
3787 1853e0f4 2022-06-16 stsp int width0 = 0, width1 = 0, width2 = 0;
3788 1853e0f4 2022-06-16 stsp char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
3789 41605754 2020-11-12 stsp
3790 41605754 2020-11-12 stsp *wtotal = 0;
3791 1853e0f4 2022-06-16 stsp
3792 145b6838 2022-06-16 stsp rms = regmatch->rm_so;
3793 145b6838 2022-06-16 stsp rme = regmatch->rm_eo;
3794 41605754 2020-11-12 stsp
3795 44a87665 2022-06-16 stsp err = expand_tab(&exstr, line);
3796 44a87665 2022-06-16 stsp if (err)
3797 44a87665 2022-06-16 stsp return err;
3798 44a87665 2022-06-16 stsp
3799 1853e0f4 2022-06-16 stsp /* Split the line into 3 segments, according to match offsets. */
3800 44a87665 2022-06-16 stsp seg0 = strndup(exstr, rms);
3801 44a87665 2022-06-16 stsp if (seg0 == NULL) {
3802 44a87665 2022-06-16 stsp err = got_error_from_errno("strndup");
3803 44a87665 2022-06-16 stsp goto done;
3804 44a87665 2022-06-16 stsp }
3805 44a87665 2022-06-16 stsp seg1 = strndup(exstr + rms, rme - rms);
3806 1853e0f4 2022-06-16 stsp if (seg1 == NULL) {
3807 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
3808 1853e0f4 2022-06-16 stsp goto done;
3809 1853e0f4 2022-06-16 stsp }
3810 44a87665 2022-06-16 stsp seg2 = strdup(exstr + rme);
3811 95d136ac 2022-06-16 stsp if (seg2 == NULL) {
3812 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
3813 1853e0f4 2022-06-16 stsp goto done;
3814 1853e0f4 2022-06-16 stsp }
3815 145b6838 2022-06-16 stsp
3816 145b6838 2022-06-16 stsp /* draw up to matched token if we haven't scrolled past it */
3817 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
3818 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3819 1853e0f4 2022-06-16 stsp if (err)
3820 1853e0f4 2022-06-16 stsp goto done;
3821 1853e0f4 2022-06-16 stsp n = MAX(width0 - skipcol, 0);
3822 145b6838 2022-06-16 stsp if (n) {
3823 1853e0f4 2022-06-16 stsp free(wline);
3824 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, &scrollx, seg0, skipcol,
3825 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
3826 1853e0f4 2022-06-16 stsp if (err)
3827 1853e0f4 2022-06-16 stsp goto done;
3828 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
3829 1853e0f4 2022-06-16 stsp wlimit -= width;
3830 1853e0f4 2022-06-16 stsp *wtotal += width;
3831 41605754 2020-11-12 stsp }
3832 41605754 2020-11-12 stsp
3833 41605754 2020-11-12 stsp if (wlimit > 0) {
3834 1853e0f4 2022-06-16 stsp int i = 0, w = 0;
3835 1853e0f4 2022-06-16 stsp size_t wlen;
3836 1853e0f4 2022-06-16 stsp
3837 1853e0f4 2022-06-16 stsp free(wline);
3838 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
3839 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3840 1853e0f4 2022-06-16 stsp if (err)
3841 1853e0f4 2022-06-16 stsp goto done;
3842 1853e0f4 2022-06-16 stsp wlen = wcslen(wline);
3843 1853e0f4 2022-06-16 stsp while (i < wlen) {
3844 1853e0f4 2022-06-16 stsp width = wcwidth(wline[i]);
3845 1853e0f4 2022-06-16 stsp if (width == -1) {
3846 1853e0f4 2022-06-16 stsp /* should not happen, tabs are expanded */
3847 1853e0f4 2022-06-16 stsp err = got_error(GOT_ERR_RANGE);
3848 1853e0f4 2022-06-16 stsp goto done;
3849 1853e0f4 2022-06-16 stsp }
3850 1853e0f4 2022-06-16 stsp if (width0 + w + width > skipcol)
3851 1853e0f4 2022-06-16 stsp break;
3852 61417565 2022-06-20 mark w += width;
3853 1853e0f4 2022-06-16 stsp i++;
3854 41605754 2020-11-12 stsp }
3855 145b6838 2022-06-16 stsp /* draw (visible part of) matched token (if scrolled into it) */
3856 1853e0f4 2022-06-16 stsp if (width1 - w > 0) {
3857 145b6838 2022-06-16 stsp wattron(window, A_STANDOUT);
3858 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[i]);
3859 145b6838 2022-06-16 stsp wattroff(window, A_STANDOUT);
3860 1853e0f4 2022-06-16 stsp wlimit -= (width1 - w);
3861 1853e0f4 2022-06-16 stsp *wtotal += (width1 - w);
3862 41605754 2020-11-12 stsp }
3863 41605754 2020-11-12 stsp }
3864 41605754 2020-11-12 stsp
3865 1853e0f4 2022-06-16 stsp if (wlimit > 0) { /* draw rest of line */
3866 1853e0f4 2022-06-16 stsp free(wline);
3867 1853e0f4 2022-06-16 stsp if (skipcol > width0 + width1) {
3868 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, &scrollx, seg2,
3869 1853e0f4 2022-06-16 stsp skipcol - (width0 + width1), wlimit,
3870 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3871 1853e0f4 2022-06-16 stsp if (err)
3872 1853e0f4 2022-06-16 stsp goto done;
3873 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
3874 1853e0f4 2022-06-16 stsp } else {
3875 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, NULL, seg2, 0,
3876 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
3877 1853e0f4 2022-06-16 stsp if (err)
3878 1853e0f4 2022-06-16 stsp goto done;
3879 1853e0f4 2022-06-16 stsp waddwstr(window, wline);
3880 1853e0f4 2022-06-16 stsp }
3881 1853e0f4 2022-06-16 stsp *wtotal += width2;
3882 41605754 2020-11-12 stsp }
3883 1853e0f4 2022-06-16 stsp done:
3884 145b6838 2022-06-16 stsp free(wline);
3885 44a87665 2022-06-16 stsp free(exstr);
3886 1853e0f4 2022-06-16 stsp free(seg0);
3887 1853e0f4 2022-06-16 stsp free(seg1);
3888 1853e0f4 2022-06-16 stsp free(seg2);
3889 1853e0f4 2022-06-16 stsp return err;
3890 41605754 2020-11-12 stsp }
3891 94b80cfa 2022-08-01 mark
3892 94b80cfa 2022-08-01 mark static int
3893 94b80cfa 2022-08-01 mark gotoline(struct tog_view *view, int *lineno, int *nprinted)
3894 94b80cfa 2022-08-01 mark {
3895 94b80cfa 2022-08-01 mark FILE *f = NULL;
3896 94b80cfa 2022-08-01 mark int *eof, *first, *selected;
3897 94b80cfa 2022-08-01 mark
3898 94b80cfa 2022-08-01 mark if (view->type == TOG_VIEW_DIFF) {
3899 94b80cfa 2022-08-01 mark struct tog_diff_view_state *s = &view->state.diff;
3900 41605754 2020-11-12 stsp
3901 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
3902 94b80cfa 2022-08-01 mark selected = first;
3903 94b80cfa 2022-08-01 mark eof = &s->eof;
3904 94b80cfa 2022-08-01 mark f = s->f;
3905 94b80cfa 2022-08-01 mark } else if (view->type == TOG_VIEW_BLAME) {
3906 94b80cfa 2022-08-01 mark struct tog_blame_view_state *s = &view->state.blame;
3907 94b80cfa 2022-08-01 mark
3908 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
3909 94b80cfa 2022-08-01 mark selected = &s->selected_line;
3910 94b80cfa 2022-08-01 mark eof = &s->eof;
3911 94b80cfa 2022-08-01 mark f = s->blame.f;
3912 94b80cfa 2022-08-01 mark } else
3913 94b80cfa 2022-08-01 mark return 0;
3914 94b80cfa 2022-08-01 mark
3915 94b80cfa 2022-08-01 mark /* Center gline in the middle of the page like vi(1). */
3916 94b80cfa 2022-08-01 mark if (*lineno < view->gline - (view->nlines - 3) / 2)
3917 94b80cfa 2022-08-01 mark return 0;
3918 94b80cfa 2022-08-01 mark if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
3919 94b80cfa 2022-08-01 mark rewind(f);
3920 94b80cfa 2022-08-01 mark *eof = 0;
3921 94b80cfa 2022-08-01 mark *first = 1;
3922 94b80cfa 2022-08-01 mark *lineno = 0;
3923 94b80cfa 2022-08-01 mark *nprinted = 0;
3924 94b80cfa 2022-08-01 mark return 0;
3925 94b80cfa 2022-08-01 mark }
3926 94b80cfa 2022-08-01 mark
3927 94b80cfa 2022-08-01 mark *selected = view->gline <= (view->nlines - 3) / 2 ?
3928 94b80cfa 2022-08-01 mark view->gline : (view->nlines - 3) / 2 + 1;
3929 94b80cfa 2022-08-01 mark view->gline = 0;
3930 94b80cfa 2022-08-01 mark
3931 94b80cfa 2022-08-01 mark return 1;
3932 94b80cfa 2022-08-01 mark }
3933 94b80cfa 2022-08-01 mark
3934 41605754 2020-11-12 stsp static const struct got_error *
3935 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
3936 26ed57b2 2018-05-19 stsp {
3937 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
3938 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
3939 61e69b96 2018-05-20 stsp const struct got_error *err;
3940 c7d5c43c 2022-08-04 mark int nprinted = 0;
3941 b304db33 2018-05-20 stsp char *line;
3942 826082fe 2020-12-10 stsp size_t linesize = 0;
3943 826082fe 2020-12-10 stsp ssize_t linelen;
3944 61e69b96 2018-05-20 stsp wchar_t *wline;
3945 e0b650dd 2018-05-20 stsp int width;
3946 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
3947 89f1a395 2020-12-01 naddy int nlines = s->nlines;
3948 fe621944 2020-11-10 stsp off_t line_offset;
3949 26ed57b2 2018-05-19 stsp
3950 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1;
3951 c7d5c43c 2022-08-04 mark line_offset = s->lines[s->first_displayed_line - 1].offset;
3952 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
3953 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
3954 fe621944 2020-11-10 stsp
3955 f7d12f7e 2018-08-01 stsp werase(view->window);
3956 a3404814 2018-09-02 stsp
3957 94b80cfa 2022-08-01 mark if (view->gline > s->nlines - 1)
3958 94b80cfa 2022-08-01 mark view->gline = s->nlines - 1;
3959 94b80cfa 2022-08-01 mark
3960 a3404814 2018-09-02 stsp if (header) {
3961 94b80cfa 2022-08-01 mark int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
3962 94b80cfa 2022-08-01 mark 1 : view->gline - (view->nlines - 3) / 2 :
3963 c7d5c43c 2022-08-04 mark s->lineno + s->selected_line;
3964 94b80cfa 2022-08-01 mark
3965 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
3966 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
3967 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
3968 ccda2f4d 2022-06-16 stsp 0, 0);
3969 135a2da0 2020-11-11 stsp free(line);
3970 135a2da0 2020-11-11 stsp if (err)
3971 a3404814 2018-09-02 stsp return err;
3972 a3404814 2018-09-02 stsp
3973 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3974 a3404814 2018-09-02 stsp wstandout(view->window);
3975 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
3976 e54cc94a 2020-11-11 stsp free(wline);
3977 e54cc94a 2020-11-11 stsp wline = NULL;
3978 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
3979 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
3980 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3981 a3404814 2018-09-02 stsp wstandend(view->window);
3982 26ed57b2 2018-05-19 stsp
3983 a3404814 2018-09-02 stsp if (max_lines <= 1)
3984 a3404814 2018-09-02 stsp return NULL;
3985 a3404814 2018-09-02 stsp max_lines--;
3986 a3404814 2018-09-02 stsp }
3987 a3404814 2018-09-02 stsp
3988 89f1a395 2020-12-01 naddy s->eof = 0;
3989 145b6838 2022-06-16 stsp view->maxx = 0;
3990 826082fe 2020-12-10 stsp line = NULL;
3991 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
3992 6a5ff2d4 2022-08-06 mark enum got_diff_line_type linetype;
3993 6a5ff2d4 2022-08-06 mark attr_t attr = 0;
3994 6a5ff2d4 2022-08-06 mark
3995 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
3996 826082fe 2020-12-10 stsp if (linelen == -1) {
3997 826082fe 2020-12-10 stsp if (feof(s->f)) {
3998 826082fe 2020-12-10 stsp s->eof = 1;
3999 826082fe 2020-12-10 stsp break;
4000 826082fe 2020-12-10 stsp }
4001 826082fe 2020-12-10 stsp free(line);
4002 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
4003 61e69b96 2018-05-20 stsp }
4004 145b6838 2022-06-16 stsp
4005 c7d5c43c 2022-08-04 mark if (++s->lineno < s->first_displayed_line)
4006 94b80cfa 2022-08-01 mark continue;
4007 c7d5c43c 2022-08-04 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4008 94b80cfa 2022-08-01 mark continue;
4009 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline)
4010 94b80cfa 2022-08-01 mark attr = A_STANDOUT;
4011 94b80cfa 2022-08-01 mark
4012 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
4013 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4014 1853e0f4 2022-06-16 stsp view->x ? 1 : 0);
4015 1853e0f4 2022-06-16 stsp if (err) {
4016 1853e0f4 2022-06-16 stsp free(line);
4017 1853e0f4 2022-06-16 stsp return err;
4018 1853e0f4 2022-06-16 stsp }
4019 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
4020 1853e0f4 2022-06-16 stsp free(wline);
4021 1853e0f4 2022-06-16 stsp wline = NULL;
4022 1853e0f4 2022-06-16 stsp
4023 6a5ff2d4 2022-08-06 mark linetype = s->lines[s->lineno].type;
4024 6a5ff2d4 2022-08-06 mark if (linetype > GOT_DIFF_LINE_LOGMSG &&
4025 6a5ff2d4 2022-08-06 mark linetype < GOT_DIFF_LINE_CONTEXT)
4026 6a5ff2d4 2022-08-06 mark attr |= COLOR_PAIR(linetype);
4027 94b80cfa 2022-08-01 mark if (attr)
4028 94b80cfa 2022-08-01 mark wattron(view->window, attr);
4029 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4030 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4031 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4032 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
4033 41605754 2020-11-12 stsp if (err) {
4034 41605754 2020-11-12 stsp free(line);
4035 41605754 2020-11-12 stsp return err;
4036 41605754 2020-11-12 stsp }
4037 41605754 2020-11-12 stsp } else {
4038 969c159c 2022-06-16 stsp int skip;
4039 969c159c 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
4040 969c159c 2022-06-16 stsp view->x, view->ncols, 0, view->x ? 1 : 0);
4041 969c159c 2022-06-16 stsp if (err) {
4042 969c159c 2022-06-16 stsp free(line);
4043 969c159c 2022-06-16 stsp return err;
4044 969c159c 2022-06-16 stsp }
4045 969c159c 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
4046 969c159c 2022-06-16 stsp free(wline);
4047 41605754 2020-11-12 stsp wline = NULL;
4048 41605754 2020-11-12 stsp }
4049 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline) {
4050 94b80cfa 2022-08-01 mark /* highlight full gline length */
4051 94b80cfa 2022-08-01 mark while (width++ < view->ncols)
4052 94b80cfa 2022-08-01 mark waddch(view->window, ' ');
4053 94b80cfa 2022-08-01 mark } else {
4054 94b80cfa 2022-08-01 mark if (width <= view->ncols - 1)
4055 94b80cfa 2022-08-01 mark waddch(view->window, '\n');
4056 94b80cfa 2022-08-01 mark }
4057 94b80cfa 2022-08-01 mark if (attr)
4058 94b80cfa 2022-08-01 mark wattroff(view->window, attr);
4059 94b80cfa 2022-08-01 mark if (++nprinted == 1)
4060 c7d5c43c 2022-08-04 mark s->first_displayed_line = s->lineno;
4061 826082fe 2020-12-10 stsp }
4062 826082fe 2020-12-10 stsp free(line);
4063 fe621944 2020-11-10 stsp if (nprinted >= 1)
4064 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4065 89f1a395 2020-12-01 naddy (nprinted - 1);
4066 fe621944 2020-11-10 stsp else
4067 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4068 26ed57b2 2018-05-19 stsp
4069 9b058f45 2022-06-30 mark view_border(view);
4070 c3e9aa98 2019-05-13 jcs
4071 89f1a395 2020-12-01 naddy if (s->eof) {
4072 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4073 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4074 c3e9aa98 2019-05-13 jcs nprinted++;
4075 c3e9aa98 2019-05-13 jcs }
4076 c3e9aa98 2019-05-13 jcs
4077 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4078 ccda2f4d 2022-06-16 stsp view->ncols, 0, 0);
4079 c3e9aa98 2019-05-13 jcs if (err) {
4080 c3e9aa98 2019-05-13 jcs return err;
4081 c3e9aa98 2019-05-13 jcs }
4082 26ed57b2 2018-05-19 stsp
4083 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4084 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4085 e54cc94a 2020-11-11 stsp free(wline);
4086 e54cc94a 2020-11-11 stsp wline = NULL;
4087 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4088 c3e9aa98 2019-05-13 jcs }
4089 c3e9aa98 2019-05-13 jcs
4090 26ed57b2 2018-05-19 stsp return NULL;
4091 abd2672a 2018-12-23 stsp }
4092 abd2672a 2018-12-23 stsp
4093 abd2672a 2018-12-23 stsp static char *
4094 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4095 abd2672a 2018-12-23 stsp {
4096 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4097 09867e48 2019-08-13 stsp char *p, *s;
4098 09867e48 2019-08-13 stsp
4099 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4100 09867e48 2019-08-13 stsp if (tm == NULL)
4101 09867e48 2019-08-13 stsp return NULL;
4102 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4103 09867e48 2019-08-13 stsp if (s == NULL)
4104 09867e48 2019-08-13 stsp return NULL;
4105 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4106 abd2672a 2018-12-23 stsp if (p)
4107 abd2672a 2018-12-23 stsp *p = '\0';
4108 abd2672a 2018-12-23 stsp return s;
4109 9f7d7167 2018-04-29 stsp }
4110 9f7d7167 2018-04-29 stsp
4111 4ed7e80c 2018-05-20 stsp static const struct got_error *
4112 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4113 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4114 0208f208 2020-05-05 stsp {
4115 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4116 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4117 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4118 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4119 0208f208 2020-05-05 stsp
4120 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4121 0208f208 2020-05-05 stsp if (qid != NULL) {
4122 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4123 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4124 d7b5a0e8 2022-04-20 stsp &qid->id);
4125 0208f208 2020-05-05 stsp if (err)
4126 0208f208 2020-05-05 stsp return err;
4127 0208f208 2020-05-05 stsp
4128 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4129 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4130 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4131 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4132 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4133 aa8b5dd0 2021-08-01 stsp }
4134 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4135 0208f208 2020-05-05 stsp
4136 0208f208 2020-05-05 stsp }
4137 0208f208 2020-05-05 stsp
4138 0208f208 2020-05-05 stsp if (tree_id1) {
4139 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4140 0208f208 2020-05-05 stsp if (err)
4141 0208f208 2020-05-05 stsp goto done;
4142 0208f208 2020-05-05 stsp }
4143 0208f208 2020-05-05 stsp
4144 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4145 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4146 0208f208 2020-05-05 stsp if (err)
4147 0208f208 2020-05-05 stsp goto done;
4148 0208f208 2020-05-05 stsp
4149 f9d37699 2022-06-28 stsp err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4150 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4151 0208f208 2020-05-05 stsp done:
4152 0208f208 2020-05-05 stsp if (tree1)
4153 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4154 0208f208 2020-05-05 stsp if (tree2)
4155 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4156 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4157 0208f208 2020-05-05 stsp return err;
4158 0208f208 2020-05-05 stsp }
4159 0208f208 2020-05-05 stsp
4160 0208f208 2020-05-05 stsp static const struct got_error *
4161 c7d5c43c 2022-08-04 mark add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4162 c7d5c43c 2022-08-04 mark off_t off, uint8_t type)
4163 abd2672a 2018-12-23 stsp {
4164 c7d5c43c 2022-08-04 mark struct got_diff_line *p;
4165 fe621944 2020-11-10 stsp
4166 c7d5c43c 2022-08-04 mark p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4167 fe621944 2020-11-10 stsp if (p == NULL)
4168 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4169 c7d5c43c 2022-08-04 mark *lines = p;
4170 c7d5c43c 2022-08-04 mark (*lines)[*nlines].offset = off;
4171 c7d5c43c 2022-08-04 mark (*lines)[*nlines].type = type;
4172 fe621944 2020-11-10 stsp (*nlines)++;
4173 c7d5c43c 2022-08-04 mark
4174 fe621944 2020-11-10 stsp return NULL;
4175 fe621944 2020-11-10 stsp }
4176 fe621944 2020-11-10 stsp
4177 fe621944 2020-11-10 stsp static const struct got_error *
4178 c7d5c43c 2022-08-04 mark write_commit_info(struct got_diff_line **lines, size_t *nlines,
4179 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4180 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4181 fe621944 2020-11-10 stsp {
4182 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4183 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4184 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4185 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4186 45d799e2 2018-12-23 stsp time_t committer_time;
4187 45d799e2 2018-12-23 stsp const char *author, *committer;
4188 8b473291 2019-02-21 stsp char *refs_str = NULL;
4189 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4190 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4191 fe621944 2020-11-10 stsp off_t outoff = 0;
4192 fe621944 2020-11-10 stsp int n;
4193 abd2672a 2018-12-23 stsp
4194 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4195 0208f208 2020-05-05 stsp
4196 8b473291 2019-02-21 stsp if (refs) {
4197 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4198 8b473291 2019-02-21 stsp if (err)
4199 8b473291 2019-02-21 stsp return err;
4200 8b473291 2019-02-21 stsp }
4201 8b473291 2019-02-21 stsp
4202 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4203 abd2672a 2018-12-23 stsp if (err)
4204 abd2672a 2018-12-23 stsp return err;
4205 abd2672a 2018-12-23 stsp
4206 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4207 15a94983 2018-12-23 stsp if (err) {
4208 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4209 15a94983 2018-12-23 stsp goto done;
4210 15a94983 2018-12-23 stsp }
4211 abd2672a 2018-12-23 stsp
4212 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4213 fe621944 2020-11-10 stsp if (err)
4214 fe621944 2020-11-10 stsp goto done;
4215 fe621944 2020-11-10 stsp
4216 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4217 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4218 fe621944 2020-11-10 stsp if (n < 0) {
4219 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4220 abd2672a 2018-12-23 stsp goto done;
4221 abd2672a 2018-12-23 stsp }
4222 fe621944 2020-11-10 stsp outoff += n;
4223 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4224 fe621944 2020-11-10 stsp if (err)
4225 fe621944 2020-11-10 stsp goto done;
4226 fe621944 2020-11-10 stsp
4227 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4228 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4229 fe621944 2020-11-10 stsp if (n < 0) {
4230 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4231 abd2672a 2018-12-23 stsp goto done;
4232 abd2672a 2018-12-23 stsp }
4233 fe621944 2020-11-10 stsp outoff += n;
4234 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4235 fe621944 2020-11-10 stsp if (err)
4236 fe621944 2020-11-10 stsp goto done;
4237 fe621944 2020-11-10 stsp
4238 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4239 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4240 fe621944 2020-11-10 stsp if (datestr) {
4241 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4242 fe621944 2020-11-10 stsp if (n < 0) {
4243 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4244 fe621944 2020-11-10 stsp goto done;
4245 fe621944 2020-11-10 stsp }
4246 fe621944 2020-11-10 stsp outoff += n;
4247 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4248 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_DATE);
4249 fe621944 2020-11-10 stsp if (err)
4250 fe621944 2020-11-10 stsp goto done;
4251 abd2672a 2018-12-23 stsp }
4252 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4253 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4254 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4255 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4256 fe621944 2020-11-10 stsp if (n < 0) {
4257 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4258 fe621944 2020-11-10 stsp goto done;
4259 fe621944 2020-11-10 stsp }
4260 fe621944 2020-11-10 stsp outoff += n;
4261 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4262 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_AUTHOR);
4263 fe621944 2020-11-10 stsp if (err)
4264 fe621944 2020-11-10 stsp goto done;
4265 abd2672a 2018-12-23 stsp }
4266 9f98ca05 2021-09-24 stsp if (got_object_commit_get_nparents(commit) > 1) {
4267 9f98ca05 2021-09-24 stsp const struct got_object_id_queue *parent_ids;
4268 9f98ca05 2021-09-24 stsp struct got_object_qid *qid;
4269 9f98ca05 2021-09-24 stsp int pn = 1;
4270 9f98ca05 2021-09-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
4271 9f98ca05 2021-09-24 stsp STAILQ_FOREACH(qid, parent_ids, entry) {
4272 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &qid->id);
4273 9f98ca05 2021-09-24 stsp if (err)
4274 9f98ca05 2021-09-24 stsp goto done;
4275 9f98ca05 2021-09-24 stsp n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4276 9f98ca05 2021-09-24 stsp if (n < 0) {
4277 9f98ca05 2021-09-24 stsp err = got_error_from_errno("fprintf");
4278 9f98ca05 2021-09-24 stsp goto done;
4279 9f98ca05 2021-09-24 stsp }
4280 9f98ca05 2021-09-24 stsp outoff += n;
4281 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4282 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
4283 9f98ca05 2021-09-24 stsp if (err)
4284 9f98ca05 2021-09-24 stsp goto done;
4285 9f98ca05 2021-09-24 stsp free(id_str);
4286 9f98ca05 2021-09-24 stsp id_str = NULL;
4287 9f98ca05 2021-09-24 stsp }
4288 9f98ca05 2021-09-24 stsp }
4289 9f98ca05 2021-09-24 stsp
4290 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4291 5943eee2 2019-08-13 stsp if (err)
4292 5943eee2 2019-08-13 stsp goto done;
4293 fe621944 2020-11-10 stsp s = logmsg;
4294 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4295 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4296 fe621944 2020-11-10 stsp if (n < 0) {
4297 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4298 fe621944 2020-11-10 stsp goto done;
4299 fe621944 2020-11-10 stsp }
4300 fe621944 2020-11-10 stsp outoff += n;
4301 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4302 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_LOGMSG);
4303 fe621944 2020-11-10 stsp if (err)
4304 fe621944 2020-11-10 stsp goto done;
4305 abd2672a 2018-12-23 stsp }
4306 fe621944 2020-11-10 stsp
4307 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4308 0208f208 2020-05-05 stsp if (err)
4309 0208f208 2020-05-05 stsp goto done;
4310 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4311 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4312 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4313 fe621944 2020-11-10 stsp if (n < 0) {
4314 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4315 fe621944 2020-11-10 stsp goto done;
4316 fe621944 2020-11-10 stsp }
4317 fe621944 2020-11-10 stsp outoff += n;
4318 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4319 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_CHANGES);
4320 fe621944 2020-11-10 stsp if (err)
4321 fe621944 2020-11-10 stsp goto done;
4322 0208f208 2020-05-05 stsp free((char *)pe->path);
4323 0208f208 2020-05-05 stsp free(pe->data);
4324 0208f208 2020-05-05 stsp }
4325 fe621944 2020-11-10 stsp
4326 0208f208 2020-05-05 stsp fputc('\n', outfile);
4327 fe621944 2020-11-10 stsp outoff++;
4328 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4329 abd2672a 2018-12-23 stsp done:
4330 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4331 abd2672a 2018-12-23 stsp free(id_str);
4332 5943eee2 2019-08-13 stsp free(logmsg);
4333 8b473291 2019-02-21 stsp free(refs_str);
4334 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4335 7510f233 2020-08-09 stsp if (err) {
4336 c7d5c43c 2022-08-04 mark free(*lines);
4337 c7d5c43c 2022-08-04 mark *lines = NULL;
4338 ae6a6978 2020-08-09 stsp *nlines = 0;
4339 7510f233 2020-08-09 stsp }
4340 fe621944 2020-11-10 stsp return err;
4341 abd2672a 2018-12-23 stsp }
4342 abd2672a 2018-12-23 stsp
4343 abd2672a 2018-12-23 stsp static const struct got_error *
4344 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4345 26ed57b2 2018-05-19 stsp {
4346 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4347 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4348 15a94983 2018-12-23 stsp int obj_type;
4349 fe621944 2020-11-10 stsp
4350 c7d5c43c 2022-08-04 mark free(s->lines);
4351 c7d5c43c 2022-08-04 mark s->lines = malloc(sizeof(*s->lines));
4352 c7d5c43c 2022-08-04 mark if (s->lines == NULL)
4353 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4354 fe621944 2020-11-10 stsp s->nlines = 0;
4355 26ed57b2 2018-05-19 stsp
4356 511a516b 2018-05-19 stsp f = got_opentemp();
4357 48ae06ee 2018-10-18 stsp if (f == NULL) {
4358 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4359 48ae06ee 2018-10-18 stsp goto done;
4360 48ae06ee 2018-10-18 stsp }
4361 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4362 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4363 fb43ecf1 2019-02-11 stsp goto done;
4364 fb43ecf1 2019-02-11 stsp }
4365 48ae06ee 2018-10-18 stsp s->f = f;
4366 26ed57b2 2018-05-19 stsp
4367 15a94983 2018-12-23 stsp if (s->id1)
4368 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4369 15a94983 2018-12-23 stsp else
4370 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4371 15a94983 2018-12-23 stsp if (err)
4372 15a94983 2018-12-23 stsp goto done;
4373 15a94983 2018-12-23 stsp
4374 15a94983 2018-12-23 stsp switch (obj_type) {
4375 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4376 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4377 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4378 917d79a7 2022-07-01 stsp s->label1, s->label2, tog_diff_algo, s->diff_context,
4379 f9d37699 2022-06-28 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4380 26ed57b2 2018-05-19 stsp break;
4381 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4382 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4383 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4384 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4385 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4386 26ed57b2 2018-05-19 stsp break;
4387 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4388 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4389 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4390 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4391 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4392 abd2672a 2018-12-23 stsp
4393 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4394 abd2672a 2018-12-23 stsp if (err)
4395 3ffacbe1 2020-02-02 tracey goto done;
4396 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4397 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4398 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4399 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines, &s->nlines, s->id2,
4400 c7d5c43c 2022-08-04 mark refs, s->repo, s->f);
4401 f44b1f58 2020-02-02 tracey if (err)
4402 f44b1f58 2020-02-02 tracey goto done;
4403 f44b1f58 2020-02-02 tracey } else {
4404 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4405 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4406 d7b5a0e8 2022-04-20 stsp if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4407 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines,
4408 c7d5c43c 2022-08-04 mark &s->nlines, s->id2, refs, s->repo,
4409 c7d5c43c 2022-08-04 mark s->f);
4410 f44b1f58 2020-02-02 tracey if (err)
4411 f44b1f58 2020-02-02 tracey goto done;
4412 f5404e4e 2020-02-02 tracey break;
4413 15a087fe 2019-02-21 stsp }
4414 abd2672a 2018-12-23 stsp }
4415 abd2672a 2018-12-23 stsp }
4416 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4417 abd2672a 2018-12-23 stsp
4418 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4419 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4420 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4421 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4422 26ed57b2 2018-05-19 stsp break;
4423 abd2672a 2018-12-23 stsp }
4424 26ed57b2 2018-05-19 stsp default:
4425 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4426 48ae06ee 2018-10-18 stsp break;
4427 26ed57b2 2018-05-19 stsp }
4428 48ae06ee 2018-10-18 stsp done:
4429 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4430 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4431 48ae06ee 2018-10-18 stsp return err;
4432 48ae06ee 2018-10-18 stsp }
4433 26ed57b2 2018-05-19 stsp
4434 f5215bb9 2019-02-22 stsp static void
4435 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4436 f5215bb9 2019-02-22 stsp {
4437 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4438 f5215bb9 2019-02-22 stsp update_panels();
4439 f5215bb9 2019-02-22 stsp doupdate();
4440 f44b1f58 2020-02-02 tracey }
4441 f44b1f58 2020-02-02 tracey
4442 f44b1f58 2020-02-02 tracey static const struct got_error *
4443 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4444 f44b1f58 2020-02-02 tracey {
4445 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4446 f44b1f58 2020-02-02 tracey
4447 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4448 f44b1f58 2020-02-02 tracey return NULL;
4449 f44b1f58 2020-02-02 tracey }
4450 f44b1f58 2020-02-02 tracey
4451 f44b1f58 2020-02-02 tracey static const struct got_error *
4452 f44b1f58 2020-02-02 tracey search_next_diff_view(struct tog_view *view)
4453 f44b1f58 2020-02-02 tracey {
4454 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4455 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
4456 f44b1f58 2020-02-02 tracey int lineno;
4457 cb713507 2022-06-16 stsp char *line = NULL;
4458 826082fe 2020-12-10 stsp size_t linesize = 0;
4459 826082fe 2020-12-10 stsp ssize_t linelen;
4460 f44b1f58 2020-02-02 tracey
4461 f44b1f58 2020-02-02 tracey if (!view->searching) {
4462 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4463 f44b1f58 2020-02-02 tracey return NULL;
4464 f44b1f58 2020-02-02 tracey }
4465 f44b1f58 2020-02-02 tracey
4466 f44b1f58 2020-02-02 tracey if (s->matched_line) {
4467 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4468 f44b1f58 2020-02-02 tracey lineno = s->matched_line + 1;
4469 f44b1f58 2020-02-02 tracey else
4470 f44b1f58 2020-02-02 tracey lineno = s->matched_line - 1;
4471 487cd7d2 2021-12-17 stsp } else
4472 487cd7d2 2021-12-17 stsp lineno = s->first_displayed_line;
4473 f44b1f58 2020-02-02 tracey
4474 f44b1f58 2020-02-02 tracey while (1) {
4475 f44b1f58 2020-02-02 tracey off_t offset;
4476 f44b1f58 2020-02-02 tracey
4477 f44b1f58 2020-02-02 tracey if (lineno <= 0 || lineno > s->nlines) {
4478 f44b1f58 2020-02-02 tracey if (s->matched_line == 0) {
4479 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4480 f44b1f58 2020-02-02 tracey break;
4481 f44b1f58 2020-02-02 tracey }
4482 f44b1f58 2020-02-02 tracey
4483 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4484 f44b1f58 2020-02-02 tracey lineno = 1;
4485 f44b1f58 2020-02-02 tracey else
4486 f44b1f58 2020-02-02 tracey lineno = s->nlines;
4487 f44b1f58 2020-02-02 tracey }
4488 f44b1f58 2020-02-02 tracey
4489 c7d5c43c 2022-08-04 mark offset = s->lines[lineno - 1].offset;
4490 f44b1f58 2020-02-02 tracey if (fseeko(s->f, offset, SEEK_SET) != 0) {
4491 f44b1f58 2020-02-02 tracey free(line);
4492 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4493 f44b1f58 2020-02-02 tracey }
4494 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4495 cb713507 2022-06-16 stsp if (linelen != -1) {
4496 cb713507 2022-06-16 stsp char *exstr;
4497 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
4498 cb713507 2022-06-16 stsp if (err)
4499 cb713507 2022-06-16 stsp break;
4500 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
4501 cb713507 2022-06-16 stsp &view->regmatch)) {
4502 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4503 cb713507 2022-06-16 stsp s->matched_line = lineno;
4504 cb713507 2022-06-16 stsp free(exstr);
4505 cb713507 2022-06-16 stsp break;
4506 cb713507 2022-06-16 stsp }
4507 cb713507 2022-06-16 stsp free(exstr);
4508 f44b1f58 2020-02-02 tracey }
4509 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4510 f44b1f58 2020-02-02 tracey lineno++;
4511 f44b1f58 2020-02-02 tracey else
4512 f44b1f58 2020-02-02 tracey lineno--;
4513 f44b1f58 2020-02-02 tracey }
4514 826082fe 2020-12-10 stsp free(line);
4515 f44b1f58 2020-02-02 tracey
4516 f44b1f58 2020-02-02 tracey if (s->matched_line) {
4517 f44b1f58 2020-02-02 tracey s->first_displayed_line = s->matched_line;
4518 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4519 f44b1f58 2020-02-02 tracey }
4520 f44b1f58 2020-02-02 tracey
4521 145b6838 2022-06-16 stsp return err;
4522 f5215bb9 2019-02-22 stsp }
4523 f5215bb9 2019-02-22 stsp
4524 48ae06ee 2018-10-18 stsp static const struct got_error *
4525 b72706c3 2022-06-01 stsp close_diff_view(struct tog_view *view)
4526 b72706c3 2022-06-01 stsp {
4527 b72706c3 2022-06-01 stsp const struct got_error *err = NULL;
4528 b72706c3 2022-06-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4529 b72706c3 2022-06-01 stsp
4530 b72706c3 2022-06-01 stsp free(s->id1);
4531 b72706c3 2022-06-01 stsp s->id1 = NULL;
4532 b72706c3 2022-06-01 stsp free(s->id2);
4533 b72706c3 2022-06-01 stsp s->id2 = NULL;
4534 b72706c3 2022-06-01 stsp if (s->f && fclose(s->f) == EOF)
4535 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4536 b72706c3 2022-06-01 stsp s->f = NULL;
4537 f9d37699 2022-06-28 stsp if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4538 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4539 b72706c3 2022-06-01 stsp s->f1 = NULL;
4540 f9d37699 2022-06-28 stsp if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4541 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4542 b72706c3 2022-06-01 stsp s->f2 = NULL;
4543 f9d37699 2022-06-28 stsp if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4544 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4545 f9d37699 2022-06-28 stsp s->fd1 = -1;
4546 f9d37699 2022-06-28 stsp if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4547 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4548 f9d37699 2022-06-28 stsp s->fd2 = -1;
4549 c7d5c43c 2022-08-04 mark free(s->lines);
4550 c7d5c43c 2022-08-04 mark s->lines = NULL;
4551 b72706c3 2022-06-01 stsp s->nlines = 0;
4552 b72706c3 2022-06-01 stsp return err;
4553 b72706c3 2022-06-01 stsp }
4554 b72706c3 2022-06-01 stsp
4555 b72706c3 2022-06-01 stsp static const struct got_error *
4556 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4557 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4558 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4559 c0f61fa4 2022-07-11 mark struct tog_view *parent_view, struct got_repository *repo)
4560 48ae06ee 2018-10-18 stsp {
4561 48ae06ee 2018-10-18 stsp const struct got_error *err;
4562 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4563 5dc9f4bc 2018-08-04 stsp
4564 b72706c3 2022-06-01 stsp memset(s, 0, sizeof(*s));
4565 f9d37699 2022-06-28 stsp s->fd1 = -1;
4566 f9d37699 2022-06-28 stsp s->fd2 = -1;
4567 b72706c3 2022-06-01 stsp
4568 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4569 15a94983 2018-12-23 stsp int type1, type2;
4570 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4571 15a94983 2018-12-23 stsp if (err)
4572 15a94983 2018-12-23 stsp return err;
4573 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4574 15a94983 2018-12-23 stsp if (err)
4575 15a94983 2018-12-23 stsp return err;
4576 15a94983 2018-12-23 stsp
4577 15a94983 2018-12-23 stsp if (type1 != type2)
4578 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4579 15a94983 2018-12-23 stsp }
4580 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4581 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4582 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4583 f44b1f58 2020-02-02 tracey s->repo = repo;
4584 f44b1f58 2020-02-02 tracey s->id1 = id1;
4585 f44b1f58 2020-02-02 tracey s->id2 = id2;
4586 3dbaef42 2020-11-24 stsp s->label1 = label1;
4587 3dbaef42 2020-11-24 stsp s->label2 = label2;
4588 48ae06ee 2018-10-18 stsp
4589 15a94983 2018-12-23 stsp if (id1) {
4590 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4591 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4592 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4593 48ae06ee 2018-10-18 stsp } else
4594 5465d566 2020-02-01 tracey s->id1 = NULL;
4595 48ae06ee 2018-10-18 stsp
4596 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4597 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4598 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_object_id_dup");
4599 b72706c3 2022-06-01 stsp goto done;
4600 48ae06ee 2018-10-18 stsp }
4601 b72706c3 2022-06-01 stsp
4602 a00719e9 2022-06-17 stsp s->f1 = got_opentemp();
4603 a00719e9 2022-06-17 stsp if (s->f1 == NULL) {
4604 a00719e9 2022-06-17 stsp err = got_error_from_errno("got_opentemp");
4605 a00719e9 2022-06-17 stsp goto done;
4606 a00719e9 2022-06-17 stsp }
4607 a00719e9 2022-06-17 stsp
4608 b72706c3 2022-06-01 stsp s->f2 = got_opentemp();
4609 b72706c3 2022-06-01 stsp if (s->f2 == NULL) {
4610 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_opentemp");
4611 b72706c3 2022-06-01 stsp goto done;
4612 b72706c3 2022-06-01 stsp }
4613 b72706c3 2022-06-01 stsp
4614 f9d37699 2022-06-28 stsp s->fd1 = got_opentempfd();
4615 f9d37699 2022-06-28 stsp if (s->fd1 == -1) {
4616 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4617 f9d37699 2022-06-28 stsp goto done;
4618 f9d37699 2022-06-28 stsp }
4619 f9d37699 2022-06-28 stsp
4620 f9d37699 2022-06-28 stsp s->fd2 = got_opentempfd();
4621 f9d37699 2022-06-28 stsp if (s->fd2 == -1) {
4622 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4623 f9d37699 2022-06-28 stsp goto done;
4624 f9d37699 2022-06-28 stsp }
4625 f9d37699 2022-06-28 stsp
4626 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
4627 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
4628 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
4629 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
4630 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
4631 c0f61fa4 2022-07-11 mark s->parent_view = parent_view;
4632 5465d566 2020-02-01 tracey s->repo = repo;
4633 6d17833f 2019-11-08 stsp
4634 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
4635 6a5ff2d4 2022-08-06 mark int rc;
4636 6d17833f 2019-11-08 stsp
4637 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_MINUS,
4638 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
4639 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4640 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_PLUS,
4641 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
4642 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4643 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_HUNK,
4644 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
4645 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4646 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_META,
4647 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4648 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4649 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_CHANGES,
4650 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4651 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4652 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
4653 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4654 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4655 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
4656 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4657 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4658 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_AUTHOR,
4659 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_AUTHOR"), -1);
4660 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4661 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_DATE,
4662 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DATE"), -1);
4663 6a5ff2d4 2022-08-06 mark if (rc == ERR) {
4664 6a5ff2d4 2022-08-06 mark err = got_error(GOT_ERR_RANGE);
4665 b72706c3 2022-06-01 stsp goto done;
4666 6a5ff2d4 2022-08-06 mark }
4667 6d17833f 2019-11-08 stsp }
4668 5dc9f4bc 2018-08-04 stsp
4669 c0f61fa4 2022-07-11 mark if (parent_view && parent_view->type == TOG_VIEW_LOG &&
4670 c0f61fa4 2022-07-11 mark view_is_splitscreen(view))
4671 c0f61fa4 2022-07-11 mark show_log_view(parent_view); /* draw border */
4672 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
4673 f5215bb9 2019-02-22 stsp
4674 5465d566 2020-02-01 tracey err = create_diff(s);
4675 48ae06ee 2018-10-18 stsp
4676 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
4677 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
4678 917d79a7 2022-07-01 stsp view->reset = reset_diff_view;
4679 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
4680 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
4681 f44b1f58 2020-02-02 tracey view->search_next = search_next_diff_view;
4682 b72706c3 2022-06-01 stsp done:
4683 b72706c3 2022-06-01 stsp if (err)
4684 b72706c3 2022-06-01 stsp close_diff_view(view);
4685 e5a0f69f 2018-08-18 stsp return err;
4686 5dc9f4bc 2018-08-04 stsp }
4687 5dc9f4bc 2018-08-04 stsp
4688 5dc9f4bc 2018-08-04 stsp static const struct got_error *
4689 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
4690 5dc9f4bc 2018-08-04 stsp {
4691 a3404814 2018-09-02 stsp const struct got_error *err;
4692 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
4693 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
4694 3dbaef42 2020-11-24 stsp const char *label1, *label2;
4695 a3404814 2018-09-02 stsp
4696 a3404814 2018-09-02 stsp if (s->id1) {
4697 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
4698 a3404814 2018-09-02 stsp if (err)
4699 a3404814 2018-09-02 stsp return err;
4700 4924afe1 2022-08-31 mark label1 = s->label1 ? s->label1 : id_str1;
4701 3dbaef42 2020-11-24 stsp } else
4702 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
4703 3dbaef42 2020-11-24 stsp
4704 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
4705 a3404814 2018-09-02 stsp if (err)
4706 a3404814 2018-09-02 stsp return err;
4707 4924afe1 2022-08-31 mark label2 = s->label2 ? s->label2 : id_str2;
4708 26ed57b2 2018-05-19 stsp
4709 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
4710 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4711 a3404814 2018-09-02 stsp free(id_str1);
4712 a3404814 2018-09-02 stsp free(id_str2);
4713 a3404814 2018-09-02 stsp return err;
4714 a3404814 2018-09-02 stsp }
4715 a3404814 2018-09-02 stsp free(id_str1);
4716 a3404814 2018-09-02 stsp free(id_str2);
4717 a3404814 2018-09-02 stsp
4718 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
4719 267bb3b8 2021-08-01 stsp free(header);
4720 267bb3b8 2021-08-01 stsp return err;
4721 15a087fe 2019-02-21 stsp }
4722 15a087fe 2019-02-21 stsp
4723 15a087fe 2019-02-21 stsp static const struct got_error *
4724 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
4725 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
4726 15a087fe 2019-02-21 stsp {
4727 d7a04538 2019-02-21 stsp const struct got_error *err;
4728 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
4729 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
4730 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
4731 15a087fe 2019-02-21 stsp
4732 15a087fe 2019-02-21 stsp free(s->id2);
4733 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
4734 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
4735 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4736 15a087fe 2019-02-21 stsp
4737 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
4738 d7a04538 2019-02-21 stsp if (err)
4739 d7a04538 2019-02-21 stsp return err;
4740 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
4741 15a087fe 2019-02-21 stsp free(s->id1);
4742 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
4743 d7b5a0e8 2022-04-20 stsp s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
4744 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
4745 15a087fe 2019-02-21 stsp return NULL;
4746 0cf4efb1 2018-09-29 stsp }
4747 0cf4efb1 2018-09-29 stsp
4748 0cf4efb1 2018-09-29 stsp static const struct got_error *
4749 917d79a7 2022-07-01 stsp reset_diff_view(struct tog_view *view)
4750 917d79a7 2022-07-01 stsp {
4751 917d79a7 2022-07-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4752 917d79a7 2022-07-01 stsp
4753 917d79a7 2022-07-01 stsp view->count = 0;
4754 917d79a7 2022-07-01 stsp wclear(view->window);
4755 917d79a7 2022-07-01 stsp s->first_displayed_line = 1;
4756 917d79a7 2022-07-01 stsp s->last_displayed_line = view->nlines;
4757 917d79a7 2022-07-01 stsp s->matched_line = 0;
4758 917d79a7 2022-07-01 stsp diff_view_indicate_progress(view);
4759 917d79a7 2022-07-01 stsp return create_diff(s);
4760 c7d5c43c 2022-08-04 mark }
4761 c7d5c43c 2022-08-04 mark
4762 c7d5c43c 2022-08-04 mark static void
4763 c7d5c43c 2022-08-04 mark diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
4764 c7d5c43c 2022-08-04 mark {
4765 c7d5c43c 2022-08-04 mark int start, i;
4766 c7d5c43c 2022-08-04 mark
4767 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line - 1;
4768 c7d5c43c 2022-08-04 mark
4769 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
4770 c7d5c43c 2022-08-04 mark if (i == 0)
4771 c7d5c43c 2022-08-04 mark i = s->nlines - 1;
4772 c7d5c43c 2022-08-04 mark if (--i == start)
4773 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
4774 c7d5c43c 2022-08-04 mark }
4775 c7d5c43c 2022-08-04 mark
4776 c7d5c43c 2022-08-04 mark s->selected_line = 1;
4777 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
4778 917d79a7 2022-07-01 stsp }
4779 917d79a7 2022-07-01 stsp
4780 c7d5c43c 2022-08-04 mark static void
4781 c7d5c43c 2022-08-04 mark diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
4782 c7d5c43c 2022-08-04 mark {
4783 c7d5c43c 2022-08-04 mark int start, i;
4784 c7d5c43c 2022-08-04 mark
4785 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line + 1;
4786 c7d5c43c 2022-08-04 mark
4787 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
4788 c7d5c43c 2022-08-04 mark if (i == s->nlines - 1)
4789 c7d5c43c 2022-08-04 mark i = 0;
4790 c7d5c43c 2022-08-04 mark if (++i == start)
4791 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
4792 c7d5c43c 2022-08-04 mark }
4793 c7d5c43c 2022-08-04 mark
4794 c7d5c43c 2022-08-04 mark s->selected_line = 1;
4795 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
4796 c7d5c43c 2022-08-04 mark }
4797 c7d5c43c 2022-08-04 mark
4798 c0f61fa4 2022-07-11 mark static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
4799 c0f61fa4 2022-07-11 mark int, int, int);
4800 c0f61fa4 2022-07-11 mark static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
4801 c0f61fa4 2022-07-11 mark int, int);
4802 c0f61fa4 2022-07-11 mark
4803 917d79a7 2022-07-01 stsp static const struct got_error *
4804 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
4805 e5a0f69f 2018-08-18 stsp {
4806 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
4807 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
4808 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
4809 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
4810 826082fe 2020-12-10 stsp char *line = NULL;
4811 826082fe 2020-12-10 stsp size_t linesize = 0;
4812 826082fe 2020-12-10 stsp ssize_t linelen;
4813 c0f61fa4 2022-07-11 mark int i, nscroll = view->nlines - 1, up = 0;
4814 e5a0f69f 2018-08-18 stsp
4815 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
4816 c7d5c43c 2022-08-04 mark
4817 e5a0f69f 2018-08-18 stsp switch (ch) {
4818 145b6838 2022-06-16 stsp case '0':
4819 145b6838 2022-06-16 stsp view->x = 0;
4820 145b6838 2022-06-16 stsp break;
4821 145b6838 2022-06-16 stsp case '$':
4822 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
4823 640cd7ff 2022-06-22 mark view->count = 0;
4824 145b6838 2022-06-16 stsp break;
4825 145b6838 2022-06-16 stsp case KEY_RIGHT:
4826 145b6838 2022-06-16 stsp case 'l':
4827 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
4828 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
4829 640cd7ff 2022-06-22 mark else
4830 640cd7ff 2022-06-22 mark view->count = 0;
4831 145b6838 2022-06-16 stsp break;
4832 145b6838 2022-06-16 stsp case KEY_LEFT:
4833 145b6838 2022-06-16 stsp case 'h':
4834 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
4835 640cd7ff 2022-06-22 mark if (view->x <= 0)
4836 640cd7ff 2022-06-22 mark view->count = 0;
4837 145b6838 2022-06-16 stsp break;
4838 64453f7e 2020-11-21 stsp case 'a':
4839 3dbaef42 2020-11-24 stsp case 'w':
4840 3dbaef42 2020-11-24 stsp if (ch == 'a')
4841 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
4842 3dbaef42 2020-11-24 stsp if (ch == 'w')
4843 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
4844 917d79a7 2022-07-01 stsp err = reset_diff_view(view);
4845 912a3f79 2021-08-30 j break;
4846 912a3f79 2021-08-30 j case 'g':
4847 912a3f79 2021-08-30 j case KEY_HOME:
4848 912a3f79 2021-08-30 j s->first_displayed_line = 1;
4849 640cd7ff 2022-06-22 mark view->count = 0;
4850 64453f7e 2020-11-21 stsp break;
4851 912a3f79 2021-08-30 j case 'G':
4852 912a3f79 2021-08-30 j case KEY_END:
4853 640cd7ff 2022-06-22 mark view->count = 0;
4854 912a3f79 2021-08-30 j if (s->eof)
4855 912a3f79 2021-08-30 j break;
4856 912a3f79 2021-08-30 j
4857 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
4858 912a3f79 2021-08-30 j s->eof = 1;
4859 912a3f79 2021-08-30 j break;
4860 1e37a5c2 2019-05-12 jcs case 'k':
4861 1e37a5c2 2019-05-12 jcs case KEY_UP:
4862 02ffd0d5 2021-10-17 stsp case CTRL('p'):
4863 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
4864 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4865 640cd7ff 2022-06-22 mark else
4866 640cd7ff 2022-06-22 mark view->count = 0;
4867 1e37a5c2 2019-05-12 jcs break;
4868 83cc4199 2022-06-13 stsp case CTRL('u'):
4869 33c3719a 2022-06-15 stsp case 'u':
4870 83cc4199 2022-06-13 stsp nscroll /= 2;
4871 83cc4199 2022-06-13 stsp /* FALL THROUGH */
4872 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4873 a60a9dc4 2019-05-13 jcs case CTRL('b'):
4874 61417565 2022-06-20 mark case 'b':
4875 640cd7ff 2022-06-22 mark if (s->first_displayed_line == 1) {
4876 640cd7ff 2022-06-22 mark view->count = 0;
4877 26ed57b2 2018-05-19 stsp break;
4878 640cd7ff 2022-06-22 mark }
4879 1e37a5c2 2019-05-12 jcs i = 0;
4880 83cc4199 2022-06-13 stsp while (i++ < nscroll && s->first_displayed_line > 1)
4881 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4882 1e37a5c2 2019-05-12 jcs break;
4883 1e37a5c2 2019-05-12 jcs case 'j':
4884 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4885 02ffd0d5 2021-10-17 stsp case CTRL('n'):
4886 1e37a5c2 2019-05-12 jcs if (!s->eof)
4887 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4888 640cd7ff 2022-06-22 mark else
4889 640cd7ff 2022-06-22 mark view->count = 0;
4890 1e37a5c2 2019-05-12 jcs break;
4891 83cc4199 2022-06-13 stsp case CTRL('d'):
4892 33c3719a 2022-06-15 stsp case 'd':
4893 83cc4199 2022-06-13 stsp nscroll /= 2;
4894 83cc4199 2022-06-13 stsp /* FALL THROUGH */
4895 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4896 a60a9dc4 2019-05-13 jcs case CTRL('f'):
4897 61417565 2022-06-20 mark case 'f':
4898 1e37a5c2 2019-05-12 jcs case ' ':
4899 640cd7ff 2022-06-22 mark if (s->eof) {
4900 640cd7ff 2022-06-22 mark view->count = 0;
4901 1e37a5c2 2019-05-12 jcs break;
4902 640cd7ff 2022-06-22 mark }
4903 1e37a5c2 2019-05-12 jcs i = 0;
4904 83cc4199 2022-06-13 stsp while (!s->eof && i++ < nscroll) {
4905 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4906 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4907 826082fe 2020-12-10 stsp if (linelen == -1) {
4908 826082fe 2020-12-10 stsp if (feof(s->f)) {
4909 826082fe 2020-12-10 stsp s->eof = 1;
4910 826082fe 2020-12-10 stsp } else
4911 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
4912 34bc9ec9 2019-02-22 stsp break;
4913 826082fe 2020-12-10 stsp }
4914 1e37a5c2 2019-05-12 jcs }
4915 826082fe 2020-12-10 stsp free(line);
4916 1e37a5c2 2019-05-12 jcs break;
4917 c7d5c43c 2022-08-04 mark case '(':
4918 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
4919 c7d5c43c 2022-08-04 mark break;
4920 c7d5c43c 2022-08-04 mark case ')':
4921 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
4922 c7d5c43c 2022-08-04 mark break;
4923 c7d5c43c 2022-08-04 mark case '{':
4924 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_HUNK);
4925 c7d5c43c 2022-08-04 mark break;
4926 c7d5c43c 2022-08-04 mark case '}':
4927 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_HUNK);
4928 c7d5c43c 2022-08-04 mark break;
4929 1e37a5c2 2019-05-12 jcs case '[':
4930 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
4931 1e37a5c2 2019-05-12 jcs s->diff_context--;
4932 67b5eae1 2021-12-27 naddy s->matched_line = 0;
4933 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
4934 1e37a5c2 2019-05-12 jcs err = create_diff(s);
4935 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
4936 27829c9e 2020-11-21 stsp s->nlines) {
4937 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
4938 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
4939 27829c9e 2020-11-21 stsp }
4940 640cd7ff 2022-06-22 mark } else
4941 640cd7ff 2022-06-22 mark view->count = 0;
4942 1e37a5c2 2019-05-12 jcs break;
4943 1e37a5c2 2019-05-12 jcs case ']':
4944 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
4945 1e37a5c2 2019-05-12 jcs s->diff_context++;
4946 67b5eae1 2021-12-27 naddy s->matched_line = 0;
4947 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
4948 1e37a5c2 2019-05-12 jcs err = create_diff(s);
4949 640cd7ff 2022-06-22 mark } else
4950 640cd7ff 2022-06-22 mark view->count = 0;
4951 1e37a5c2 2019-05-12 jcs break;
4952 1e37a5c2 2019-05-12 jcs case '<':
4953 1e37a5c2 2019-05-12 jcs case ',':
4954 2b3e6702 2022-07-20 mark case 'K':
4955 c0f61fa4 2022-07-11 mark up = 1;
4956 c0f61fa4 2022-07-11 mark /* FALL THROUGH */
4957 c0f61fa4 2022-07-11 mark case '>':
4958 c0f61fa4 2022-07-11 mark case '.':
4959 2b3e6702 2022-07-20 mark case 'J':
4960 c0f61fa4 2022-07-11 mark if (s->parent_view == NULL) {
4961 640cd7ff 2022-06-22 mark view->count = 0;
4962 48ae06ee 2018-10-18 stsp break;
4963 640cd7ff 2022-06-22 mark }
4964 c0f61fa4 2022-07-11 mark s->parent_view->count = view->count;
4965 6524637e 2019-02-21 stsp
4966 c0f61fa4 2022-07-11 mark if (s->parent_view->type == TOG_VIEW_LOG) {
4967 c0f61fa4 2022-07-11 mark ls = &s->parent_view->state.log;
4968 c0f61fa4 2022-07-11 mark old_selected_entry = ls->selected_entry;
4969 15a087fe 2019-02-21 stsp
4970 c0f61fa4 2022-07-11 mark err = input_log_view(NULL, s->parent_view,
4971 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
4972 c0f61fa4 2022-07-11 mark if (err)
4973 c0f61fa4 2022-07-11 mark break;
4974 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
4975 15a087fe 2019-02-21 stsp
4976 c0f61fa4 2022-07-11 mark if (old_selected_entry == ls->selected_entry)
4977 c0f61fa4 2022-07-11 mark break;
4978 15a087fe 2019-02-21 stsp
4979 c0f61fa4 2022-07-11 mark err = set_selected_commit(s, ls->selected_entry);
4980 c0f61fa4 2022-07-11 mark if (err)
4981 c0f61fa4 2022-07-11 mark break;
4982 c0f61fa4 2022-07-11 mark } else if (s->parent_view->type == TOG_VIEW_BLAME) {
4983 c0f61fa4 2022-07-11 mark struct tog_blame_view_state *bs;
4984 c0f61fa4 2022-07-11 mark struct got_object_id *id, *prev_id;
4985 5e224a3e 2019-02-22 stsp
4986 c0f61fa4 2022-07-11 mark bs = &s->parent_view->state.blame;
4987 c0f61fa4 2022-07-11 mark prev_id = get_annotation_for_line(bs->blame.lines,
4988 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->last_diffed_line);
4989 c0f61fa4 2022-07-11 mark
4990 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view,
4991 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
4992 c0f61fa4 2022-07-11 mark if (err)
4993 c0f61fa4 2022-07-11 mark break;
4994 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
4995 5a8b5076 2020-12-05 stsp
4996 c0f61fa4 2022-07-11 mark if (prev_id == NULL)
4997 c0f61fa4 2022-07-11 mark break;
4998 c0f61fa4 2022-07-11 mark id = get_selected_commit_id(bs->blame.lines,
4999 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->first_displayed_line,
5000 c0f61fa4 2022-07-11 mark bs->selected_line);
5001 c0f61fa4 2022-07-11 mark if (id == NULL)
5002 c0f61fa4 2022-07-11 mark break;
5003 15a087fe 2019-02-21 stsp
5004 c0f61fa4 2022-07-11 mark if (!got_object_id_cmp(prev_id, id))
5005 c0f61fa4 2022-07-11 mark break;
5006 15a087fe 2019-02-21 stsp
5007 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5008 c0f61fa4 2022-07-11 mark if (err)
5009 c0f61fa4 2022-07-11 mark break;
5010 c0f61fa4 2022-07-11 mark }
5011 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5012 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5013 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5014 145b6838 2022-06-16 stsp view->x = 0;
5015 1e37a5c2 2019-05-12 jcs
5016 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5017 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5018 1e37a5c2 2019-05-12 jcs break;
5019 1e37a5c2 2019-05-12 jcs default:
5020 640cd7ff 2022-06-22 mark view->count = 0;
5021 1e37a5c2 2019-05-12 jcs break;
5022 26ed57b2 2018-05-19 stsp }
5023 e5a0f69f 2018-08-18 stsp
5024 bcbd79e2 2018-08-19 stsp return err;
5025 26ed57b2 2018-05-19 stsp }
5026 26ed57b2 2018-05-19 stsp
5027 4ed7e80c 2018-05-20 stsp static const struct got_error *
5028 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5029 9f7d7167 2018-04-29 stsp {
5030 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5031 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5032 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5033 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5034 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5035 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5036 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5037 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5038 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5039 3dbaef42 2020-11-24 stsp const char *errstr;
5040 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5041 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5042 70ac5f84 2019-03-28 stsp
5043 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5044 26ed57b2 2018-05-19 stsp switch (ch) {
5045 64453f7e 2020-11-21 stsp case 'a':
5046 64453f7e 2020-11-21 stsp force_text_diff = 1;
5047 3dbaef42 2020-11-24 stsp break;
5048 3dbaef42 2020-11-24 stsp case 'C':
5049 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5050 3dbaef42 2020-11-24 stsp &errstr);
5051 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5052 5a20d08d 2022-02-09 op errx(1, "number of context lines is %s: %s",
5053 5a20d08d 2022-02-09 op errstr, errstr);
5054 64453f7e 2020-11-21 stsp break;
5055 09b5bff8 2020-02-23 naddy case 'r':
5056 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5057 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5058 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5059 09b5bff8 2020-02-23 naddy optarg);
5060 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5061 09b5bff8 2020-02-23 naddy break;
5062 3dbaef42 2020-11-24 stsp case 'w':
5063 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5064 3dbaef42 2020-11-24 stsp break;
5065 26ed57b2 2018-05-19 stsp default:
5066 17020d27 2019-03-07 stsp usage_diff();
5067 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5068 26ed57b2 2018-05-19 stsp }
5069 26ed57b2 2018-05-19 stsp }
5070 26ed57b2 2018-05-19 stsp
5071 26ed57b2 2018-05-19 stsp argc -= optind;
5072 26ed57b2 2018-05-19 stsp argv += optind;
5073 26ed57b2 2018-05-19 stsp
5074 26ed57b2 2018-05-19 stsp if (argc == 0) {
5075 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5076 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5077 15a94983 2018-12-23 stsp id_str1 = argv[0];
5078 15a94983 2018-12-23 stsp id_str2 = argv[1];
5079 26ed57b2 2018-05-19 stsp } else
5080 26ed57b2 2018-05-19 stsp usage_diff();
5081 eb6600df 2019-01-04 stsp
5082 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
5083 0ae84acc 2022-06-15 tracey if (error)
5084 0ae84acc 2022-06-15 tracey goto done;
5085 0ae84acc 2022-06-15 tracey
5086 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5087 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5088 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5089 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5090 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5091 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5092 c156c7a4 2020-12-18 stsp goto done;
5093 a273ac94 2020-02-23 naddy if (worktree)
5094 a273ac94 2020-02-23 naddy repo_path =
5095 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5096 a273ac94 2020-02-23 naddy else
5097 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5098 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5099 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5100 c156c7a4 2020-12-18 stsp goto done;
5101 c156c7a4 2020-12-18 stsp }
5102 a273ac94 2020-02-23 naddy }
5103 a273ac94 2020-02-23 naddy
5104 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5105 eb6600df 2019-01-04 stsp if (error)
5106 eb6600df 2019-01-04 stsp goto done;
5107 26ed57b2 2018-05-19 stsp
5108 a273ac94 2020-02-23 naddy init_curses();
5109 a273ac94 2020-02-23 naddy
5110 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5111 51a10b52 2020-12-26 stsp if (error)
5112 51a10b52 2020-12-26 stsp goto done;
5113 51a10b52 2020-12-26 stsp
5114 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
5115 26ed57b2 2018-05-19 stsp if (error)
5116 26ed57b2 2018-05-19 stsp goto done;
5117 26ed57b2 2018-05-19 stsp
5118 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5119 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5120 26ed57b2 2018-05-19 stsp if (error)
5121 26ed57b2 2018-05-19 stsp goto done;
5122 26ed57b2 2018-05-19 stsp
5123 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
5124 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5125 26ed57b2 2018-05-19 stsp if (error)
5126 26ed57b2 2018-05-19 stsp goto done;
5127 26ed57b2 2018-05-19 stsp
5128 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5129 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5130 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5131 ea5e7bb5 2018-08-01 stsp goto done;
5132 ea5e7bb5 2018-08-01 stsp }
5133 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5134 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5135 5dc9f4bc 2018-08-04 stsp if (error)
5136 5dc9f4bc 2018-08-04 stsp goto done;
5137 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5138 26ed57b2 2018-05-19 stsp done:
5139 3dbaef42 2020-11-24 stsp free(label1);
5140 3dbaef42 2020-11-24 stsp free(label2);
5141 c02c541e 2019-03-29 stsp free(repo_path);
5142 a273ac94 2020-02-23 naddy free(cwd);
5143 1d0f4054 2021-06-17 stsp if (repo) {
5144 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5145 1d0f4054 2021-06-17 stsp if (error == NULL)
5146 1d0f4054 2021-06-17 stsp error = close_err;
5147 1d0f4054 2021-06-17 stsp }
5148 a273ac94 2020-02-23 naddy if (worktree)
5149 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5150 0ae84acc 2022-06-15 tracey if (pack_fds) {
5151 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5152 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
5153 0ae84acc 2022-06-15 tracey if (error == NULL)
5154 0ae84acc 2022-06-15 tracey error = pack_err;
5155 0ae84acc 2022-06-15 tracey }
5156 51a10b52 2020-12-26 stsp tog_free_refs();
5157 26ed57b2 2018-05-19 stsp return error;
5158 9f7d7167 2018-04-29 stsp }
5159 9f7d7167 2018-04-29 stsp
5160 4ed7e80c 2018-05-20 stsp __dead static void
5161 9f7d7167 2018-04-29 stsp usage_blame(void)
5162 9f7d7167 2018-04-29 stsp {
5163 80ddbec8 2018-04-29 stsp endwin();
5164 87411fa9 2022-06-16 stsp fprintf(stderr,
5165 87411fa9 2022-06-16 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
5166 9f7d7167 2018-04-29 stsp getprogname());
5167 9f7d7167 2018-04-29 stsp exit(1);
5168 9f7d7167 2018-04-29 stsp }
5169 84451b3e 2018-07-10 stsp
5170 84451b3e 2018-07-10 stsp struct tog_blame_line {
5171 84451b3e 2018-07-10 stsp int annotated;
5172 84451b3e 2018-07-10 stsp struct got_object_id *id;
5173 84451b3e 2018-07-10 stsp };
5174 9f7d7167 2018-04-29 stsp
5175 4ed7e80c 2018-05-20 stsp static const struct got_error *
5176 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5177 84451b3e 2018-07-10 stsp {
5178 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5179 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5180 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5181 84451b3e 2018-07-10 stsp const struct got_error *err;
5182 4cb9d869 2022-06-16 stsp int lineno = 0, nprinted = 0;
5183 826082fe 2020-12-10 stsp char *line = NULL;
5184 826082fe 2020-12-10 stsp size_t linesize = 0;
5185 826082fe 2020-12-10 stsp ssize_t linelen;
5186 84451b3e 2018-07-10 stsp wchar_t *wline;
5187 27a741e5 2019-09-11 stsp int width;
5188 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5189 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5190 ab089a2a 2018-07-12 stsp char *id_str;
5191 11b20872 2019-11-08 stsp struct tog_color *tc;
5192 ab089a2a 2018-07-12 stsp
5193 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &s->blamed_commit->id);
5194 ab089a2a 2018-07-12 stsp if (err)
5195 ab089a2a 2018-07-12 stsp return err;
5196 84451b3e 2018-07-10 stsp
5197 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5198 f7d12f7e 2018-08-01 stsp werase(view->window);
5199 84451b3e 2018-07-10 stsp
5200 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5201 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5202 ab089a2a 2018-07-12 stsp free(id_str);
5203 ab089a2a 2018-07-12 stsp return err;
5204 ab089a2a 2018-07-12 stsp }
5205 ab089a2a 2018-07-12 stsp
5206 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5207 ab089a2a 2018-07-12 stsp free(line);
5208 2550e4c3 2018-07-13 stsp line = NULL;
5209 1cae65b4 2019-09-22 stsp if (err)
5210 1cae65b4 2019-09-22 stsp return err;
5211 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5212 a3404814 2018-09-02 stsp wstandout(view->window);
5213 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5214 11b20872 2019-11-08 stsp if (tc)
5215 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5216 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5217 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
5218 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
5219 11b20872 2019-11-08 stsp if (tc)
5220 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5221 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5222 a3404814 2018-09-02 stsp wstandend(view->window);
5223 2550e4c3 2018-07-13 stsp free(wline);
5224 2550e4c3 2018-07-13 stsp wline = NULL;
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 0c6ad1bc 2022-09-09 mark char *index = NULL;
6347 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6348 94b80cfa 2022-08-01 mark int width, n, nentries, i = 1;
6349 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6350 ffd1d5e5 2018-06-23 stsp
6351 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6352 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6353 9b058f45 2022-06-30 mark --limit; /* border */
6354 ffd1d5e5 2018-06-23 stsp
6355 f7d12f7e 2018-08-01 stsp werase(view->window);
6356 ffd1d5e5 2018-06-23 stsp
6357 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6358 ffd1d5e5 2018-06-23 stsp return NULL;
6359 ffd1d5e5 2018-06-23 stsp
6360 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6361 ccda2f4d 2022-06-16 stsp 0, 0);
6362 ffd1d5e5 2018-06-23 stsp if (err)
6363 ffd1d5e5 2018-06-23 stsp return err;
6364 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6365 a3404814 2018-09-02 stsp wstandout(view->window);
6366 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6367 11b20872 2019-11-08 stsp if (tc)
6368 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6369 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6370 0c6ad1bc 2022-09-09 mark free(wline);
6371 0c6ad1bc 2022-09-09 mark wline = NULL;
6372 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
6373 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
6374 11b20872 2019-11-08 stsp if (tc)
6375 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6376 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6377 a3404814 2018-09-02 stsp wstandend(view->window);
6378 0c6ad1bc 2022-09-09 mark if (--limit <= 0)
6379 0c6ad1bc 2022-09-09 mark return NULL;
6380 94b80cfa 2022-08-01 mark
6381 df68a56b 2022-08-12 mark i += s->selected;
6382 df68a56b 2022-08-12 mark if (s->first_displayed_entry) {
6383 df68a56b 2022-08-12 mark i += got_tree_entry_get_index(s->first_displayed_entry);
6384 df68a56b 2022-08-12 mark if (s->tree != s->root)
6385 df68a56b 2022-08-12 mark ++i; /* account for ".." entry */
6386 94b80cfa 2022-08-01 mark }
6387 94b80cfa 2022-08-01 mark nentries = got_object_tree_get_nentries(s->tree);
6388 0c6ad1bc 2022-09-09 mark if (asprintf(&index, "[%d/%d] %s",
6389 0c6ad1bc 2022-09-09 mark i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6390 0c6ad1bc 2022-09-09 mark return got_error_from_errno("asprintf");
6391 0c6ad1bc 2022-09-09 mark err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6392 0c6ad1bc 2022-09-09 mark free(index);
6393 ce52c690 2018-06-23 stsp if (err)
6394 ce52c690 2018-06-23 stsp return err;
6395 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6396 2550e4c3 2018-07-13 stsp free(wline);
6397 2550e4c3 2018-07-13 stsp wline = NULL;
6398 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6399 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6400 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6401 ffd1d5e5 2018-06-23 stsp return NULL;
6402 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6403 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6404 a1eca9bb 2018-06-23 stsp return NULL;
6405 ffd1d5e5 2018-06-23 stsp
6406 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6407 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6408 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6409 0cf4efb1 2018-09-29 stsp if (view->focussed)
6410 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6411 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6412 ffd1d5e5 2018-06-23 stsp }
6413 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6414 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6415 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6416 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6417 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6418 ffd1d5e5 2018-06-23 stsp return NULL;
6419 ffd1d5e5 2018-06-23 stsp n = 1;
6420 ffd1d5e5 2018-06-23 stsp } else {
6421 ffd1d5e5 2018-06-23 stsp n = 0;
6422 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6423 ffd1d5e5 2018-06-23 stsp }
6424 ffd1d5e5 2018-06-23 stsp
6425 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6426 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6427 848d6979 2019-08-12 stsp const char *modestr = "";
6428 56e0773d 2019-11-28 stsp mode_t mode;
6429 1d13200f 2018-07-12 stsp
6430 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6431 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6432 56e0773d 2019-11-28 stsp
6433 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6434 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6435 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6436 1d13200f 2018-07-12 stsp if (err)
6437 638f9024 2019-05-13 stsp return got_error_from_errno(
6438 230a42bd 2019-05-11 jcs "got_object_id_str");
6439 1d13200f 2018-07-12 stsp }
6440 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6441 63c5ca5d 2019-08-24 stsp modestr = "$";
6442 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6443 0d6c6ee3 2020-05-20 stsp int i;
6444 0d6c6ee3 2020-05-20 stsp
6445 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6446 d86d3b18 2020-12-01 naddy te, s->repo);
6447 0d6c6ee3 2020-05-20 stsp if (err) {
6448 0d6c6ee3 2020-05-20 stsp free(id_str);
6449 0d6c6ee3 2020-05-20 stsp return err;
6450 0d6c6ee3 2020-05-20 stsp }
6451 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6452 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6453 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6454 0d6c6ee3 2020-05-20 stsp }
6455 848d6979 2019-08-12 stsp modestr = "@";
6456 0d6c6ee3 2020-05-20 stsp }
6457 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6458 848d6979 2019-08-12 stsp modestr = "/";
6459 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6460 848d6979 2019-08-12 stsp modestr = "*";
6461 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6462 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6463 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6464 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6465 1d13200f 2018-07-12 stsp free(id_str);
6466 0d6c6ee3 2020-05-20 stsp free(link_target);
6467 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6468 1d13200f 2018-07-12 stsp }
6469 1d13200f 2018-07-12 stsp free(id_str);
6470 0d6c6ee3 2020-05-20 stsp free(link_target);
6471 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6472 ccda2f4d 2022-06-16 stsp 0, 0);
6473 ffd1d5e5 2018-06-23 stsp if (err) {
6474 ffd1d5e5 2018-06-23 stsp free(line);
6475 ffd1d5e5 2018-06-23 stsp break;
6476 ffd1d5e5 2018-06-23 stsp }
6477 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6478 0cf4efb1 2018-09-29 stsp if (view->focussed)
6479 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6480 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6481 ffd1d5e5 2018-06-23 stsp }
6482 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6483 f26dddb7 2019-11-08 stsp if (tc)
6484 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6485 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6486 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6487 f26dddb7 2019-11-08 stsp if (tc)
6488 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6489 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6490 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6491 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6492 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6493 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6494 ffd1d5e5 2018-06-23 stsp free(line);
6495 2550e4c3 2018-07-13 stsp free(wline);
6496 2550e4c3 2018-07-13 stsp wline = NULL;
6497 ffd1d5e5 2018-06-23 stsp n++;
6498 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6499 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6500 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6501 ffd1d5e5 2018-06-23 stsp break;
6502 ffd1d5e5 2018-06-23 stsp }
6503 ffd1d5e5 2018-06-23 stsp
6504 ffd1d5e5 2018-06-23 stsp return err;
6505 ffd1d5e5 2018-06-23 stsp }
6506 ffd1d5e5 2018-06-23 stsp
6507 ffd1d5e5 2018-06-23 stsp static void
6508 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6509 ffd1d5e5 2018-06-23 stsp {
6510 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6511 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6512 fa86c4bf 2020-11-29 stsp int i = 0;
6513 ffd1d5e5 2018-06-23 stsp
6514 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6515 ffd1d5e5 2018-06-23 stsp return;
6516 ffd1d5e5 2018-06-23 stsp
6517 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6518 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6519 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6520 fa86c4bf 2020-11-29 stsp if (!isroot)
6521 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6522 fa86c4bf 2020-11-29 stsp break;
6523 fa86c4bf 2020-11-29 stsp }
6524 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6525 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6526 ffd1d5e5 2018-06-23 stsp }
6527 ffd1d5e5 2018-06-23 stsp }
6528 ffd1d5e5 2018-06-23 stsp
6529 9b058f45 2022-06-30 mark static const struct got_error *
6530 9b058f45 2022-06-30 mark tree_scroll_down(struct tog_view *view, int maxscroll)
6531 ffd1d5e5 2018-06-23 stsp {
6532 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
6533 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6534 ffd1d5e5 2018-06-23 stsp int n = 0;
6535 ffd1d5e5 2018-06-23 stsp
6536 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6537 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6538 694d3271 2020-12-01 naddy s->first_displayed_entry);
6539 694d3271 2020-12-01 naddy else
6540 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6541 56e0773d 2019-11-28 stsp
6542 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6543 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
6544 94b80cfa 2022-08-01 mark if (last) {
6545 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
6546 9b058f45 2022-06-30 mark last = got_tree_entry_get_next(s->tree, last);
6547 94b80cfa 2022-08-01 mark }
6548 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6549 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6550 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6551 768394f3 2019-01-24 stsp }
6552 ffd1d5e5 2018-06-23 stsp }
6553 9b058f45 2022-06-30 mark
6554 9b058f45 2022-06-30 mark return NULL;
6555 ffd1d5e5 2018-06-23 stsp }
6556 ffd1d5e5 2018-06-23 stsp
6557 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6558 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6559 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6560 ffd1d5e5 2018-06-23 stsp {
6561 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6562 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6563 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6564 ffd1d5e5 2018-06-23 stsp
6565 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6566 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6567 56e0773d 2019-11-28 stsp + 1 /* slash */;
6568 ce52c690 2018-06-23 stsp if (te)
6569 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6570 ce52c690 2018-06-23 stsp
6571 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6572 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6573 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6574 ffd1d5e5 2018-06-23 stsp
6575 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6576 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6577 d9765a41 2018-06-23 stsp while (pt) {
6578 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6579 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6580 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6581 cb2ebc8a 2018-06-23 stsp goto done;
6582 cb2ebc8a 2018-06-23 stsp }
6583 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6584 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6585 cb2ebc8a 2018-06-23 stsp goto done;
6586 cb2ebc8a 2018-06-23 stsp }
6587 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6588 ffd1d5e5 2018-06-23 stsp }
6589 ce52c690 2018-06-23 stsp if (te) {
6590 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6591 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6592 ce52c690 2018-06-23 stsp goto done;
6593 ce52c690 2018-06-23 stsp }
6594 cb2ebc8a 2018-06-23 stsp }
6595 ce52c690 2018-06-23 stsp done:
6596 ce52c690 2018-06-23 stsp if (err) {
6597 ce52c690 2018-06-23 stsp free(*path);
6598 ce52c690 2018-06-23 stsp *path = NULL;
6599 ce52c690 2018-06-23 stsp }
6600 ce52c690 2018-06-23 stsp return err;
6601 ce52c690 2018-06-23 stsp }
6602 ce52c690 2018-06-23 stsp
6603 ce52c690 2018-06-23 stsp static const struct got_error *
6604 9b058f45 2022-06-30 mark blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6605 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6606 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6607 ce52c690 2018-06-23 stsp {
6608 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6609 ce52c690 2018-06-23 stsp char *path;
6610 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6611 a0de39f3 2019-08-09 stsp
6612 a0de39f3 2019-08-09 stsp *new_view = NULL;
6613 69efd4c4 2018-07-18 stsp
6614 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6615 ce52c690 2018-06-23 stsp if (err)
6616 ce52c690 2018-06-23 stsp return err;
6617 ffd1d5e5 2018-06-23 stsp
6618 9b058f45 2022-06-30 mark blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6619 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6620 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6621 83ce39e3 2019-08-12 stsp goto done;
6622 83ce39e3 2019-08-12 stsp }
6623 cdf1ee82 2018-08-01 stsp
6624 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6625 e5a0f69f 2018-08-18 stsp if (err) {
6626 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6627 fc06ba56 2019-08-22 stsp err = NULL;
6628 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6629 e5a0f69f 2018-08-18 stsp } else
6630 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6631 83ce39e3 2019-08-12 stsp done:
6632 83ce39e3 2019-08-12 stsp free(path);
6633 69efd4c4 2018-07-18 stsp return err;
6634 69efd4c4 2018-07-18 stsp }
6635 69efd4c4 2018-07-18 stsp
6636 69efd4c4 2018-07-18 stsp static const struct got_error *
6637 49b24ee5 2022-07-03 mark log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6638 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6639 69efd4c4 2018-07-18 stsp {
6640 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6641 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6642 69efd4c4 2018-07-18 stsp char *path;
6643 a0de39f3 2019-08-09 stsp
6644 a0de39f3 2019-08-09 stsp *new_view = NULL;
6645 69efd4c4 2018-07-18 stsp
6646 49b24ee5 2022-07-03 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6647 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6648 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6649 e5a0f69f 2018-08-18 stsp
6650 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6651 69efd4c4 2018-07-18 stsp if (err)
6652 69efd4c4 2018-07-18 stsp return err;
6653 69efd4c4 2018-07-18 stsp
6654 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6655 4e97c21c 2020-12-06 stsp path, 0);
6656 ba4f502b 2018-08-04 stsp if (err)
6657 e5a0f69f 2018-08-18 stsp view_close(log_view);
6658 e5a0f69f 2018-08-18 stsp else
6659 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6660 cb2ebc8a 2018-06-23 stsp free(path);
6661 cb2ebc8a 2018-06-23 stsp return err;
6662 ffd1d5e5 2018-06-23 stsp }
6663 ffd1d5e5 2018-06-23 stsp
6664 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6665 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6666 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6667 ffd1d5e5 2018-06-23 stsp {
6668 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6669 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6670 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6671 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6672 ffd1d5e5 2018-06-23 stsp
6673 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6674 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6675 bc573f3b 2021-07-10 stsp
6676 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6677 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6678 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6679 ffd1d5e5 2018-06-23 stsp
6680 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6681 bc573f3b 2021-07-10 stsp if (err)
6682 bc573f3b 2021-07-10 stsp goto done;
6683 bc573f3b 2021-07-10 stsp
6684 bc573f3b 2021-07-10 stsp /*
6685 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
6686 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
6687 bc573f3b 2021-07-10 stsp * closed on demand.
6688 bc573f3b 2021-07-10 stsp */
6689 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
6690 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
6691 bc573f3b 2021-07-10 stsp if (err)
6692 bc573f3b 2021-07-10 stsp goto done;
6693 bc573f3b 2021-07-10 stsp s->tree = s->root;
6694 bc573f3b 2021-07-10 stsp
6695 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
6696 ffd1d5e5 2018-06-23 stsp if (err != NULL)
6697 ffd1d5e5 2018-06-23 stsp goto done;
6698 ffd1d5e5 2018-06-23 stsp
6699 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
6700 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
6701 ffd1d5e5 2018-06-23 stsp goto done;
6702 ffd1d5e5 2018-06-23 stsp }
6703 ffd1d5e5 2018-06-23 stsp
6704 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
6705 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
6706 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
6707 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
6708 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
6709 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
6710 9cd7cbd1 2020-12-07 stsp goto done;
6711 9cd7cbd1 2020-12-07 stsp }
6712 9cd7cbd1 2020-12-07 stsp }
6713 fb2756b9 2018-08-04 stsp s->repo = repo;
6714 c0b01bdb 2019-11-08 stsp
6715 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6716 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
6717 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
6718 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
6719 c0b01bdb 2019-11-08 stsp if (err)
6720 c0b01bdb 2019-11-08 stsp goto done;
6721 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
6722 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
6723 bc573f3b 2021-07-10 stsp if (err)
6724 c0b01bdb 2019-11-08 stsp goto done;
6725 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
6726 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
6727 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
6728 bc573f3b 2021-07-10 stsp if (err)
6729 c0b01bdb 2019-11-08 stsp goto done;
6730 e5a0f69f 2018-08-18 stsp
6731 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
6732 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
6733 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
6734 bc573f3b 2021-07-10 stsp if (err)
6735 11b20872 2019-11-08 stsp goto done;
6736 11b20872 2019-11-08 stsp
6737 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
6738 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6739 bc573f3b 2021-07-10 stsp if (err)
6740 c0b01bdb 2019-11-08 stsp goto done;
6741 c0b01bdb 2019-11-08 stsp }
6742 c0b01bdb 2019-11-08 stsp
6743 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
6744 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
6745 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
6746 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
6747 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
6748 ad80ab7b 2018-08-04 stsp done:
6749 ad80ab7b 2018-08-04 stsp free(commit_id_str);
6750 bc573f3b 2021-07-10 stsp if (commit)
6751 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
6752 bc573f3b 2021-07-10 stsp if (err)
6753 bc573f3b 2021-07-10 stsp close_tree_view(view);
6754 ad80ab7b 2018-08-04 stsp return err;
6755 ad80ab7b 2018-08-04 stsp }
6756 ad80ab7b 2018-08-04 stsp
6757 e5a0f69f 2018-08-18 stsp static const struct got_error *
6758 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
6759 ad80ab7b 2018-08-04 stsp {
6760 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6761 ad80ab7b 2018-08-04 stsp
6762 bddb1296 2019-11-08 stsp free_colors(&s->colors);
6763 fb2756b9 2018-08-04 stsp free(s->tree_label);
6764 6484ec90 2018-09-29 stsp s->tree_label = NULL;
6765 6484ec90 2018-09-29 stsp free(s->commit_id);
6766 6484ec90 2018-09-29 stsp s->commit_id = NULL;
6767 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
6768 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
6769 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
6770 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
6771 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
6772 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
6773 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
6774 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
6775 ad80ab7b 2018-08-04 stsp free(parent);
6776 ad80ab7b 2018-08-04 stsp
6777 ad80ab7b 2018-08-04 stsp }
6778 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
6779 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
6780 bc573f3b 2021-07-10 stsp if (s->root)
6781 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
6782 7c32bd05 2019-06-22 stsp return NULL;
6783 7c32bd05 2019-06-22 stsp }
6784 7c32bd05 2019-06-22 stsp
6785 7c32bd05 2019-06-22 stsp static const struct got_error *
6786 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
6787 7c32bd05 2019-06-22 stsp {
6788 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
6789 7c32bd05 2019-06-22 stsp
6790 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
6791 7c32bd05 2019-06-22 stsp return NULL;
6792 7c32bd05 2019-06-22 stsp }
6793 7c32bd05 2019-06-22 stsp
6794 7c32bd05 2019-06-22 stsp static int
6795 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
6796 7c32bd05 2019-06-22 stsp {
6797 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
6798 7c32bd05 2019-06-22 stsp
6799 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
6800 56e0773d 2019-11-28 stsp 0) == 0;
6801 7c32bd05 2019-06-22 stsp }
6802 7c32bd05 2019-06-22 stsp
6803 7c32bd05 2019-06-22 stsp static const struct got_error *
6804 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
6805 7c32bd05 2019-06-22 stsp {
6806 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
6807 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
6808 7c32bd05 2019-06-22 stsp
6809 7c32bd05 2019-06-22 stsp if (!view->searching) {
6810 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6811 7c32bd05 2019-06-22 stsp return NULL;
6812 7c32bd05 2019-06-22 stsp }
6813 7c32bd05 2019-06-22 stsp
6814 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
6815 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
6816 7c32bd05 2019-06-22 stsp if (s->selected_entry)
6817 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
6818 56e0773d 2019-11-28 stsp s->selected_entry);
6819 7c32bd05 2019-06-22 stsp else
6820 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6821 56e0773d 2019-11-28 stsp } else {
6822 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
6823 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6824 56e0773d 2019-11-28 stsp else
6825 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
6826 56e0773d 2019-11-28 stsp s->selected_entry);
6827 7c32bd05 2019-06-22 stsp }
6828 7c32bd05 2019-06-22 stsp } else {
6829 487cd7d2 2021-12-17 stsp if (s->selected_entry)
6830 487cd7d2 2021-12-17 stsp te = s->selected_entry;
6831 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
6832 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6833 56e0773d 2019-11-28 stsp else
6834 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6835 7c32bd05 2019-06-22 stsp }
6836 7c32bd05 2019-06-22 stsp
6837 7c32bd05 2019-06-22 stsp while (1) {
6838 56e0773d 2019-11-28 stsp if (te == NULL) {
6839 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
6840 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6841 ac66afb8 2019-06-24 stsp return NULL;
6842 ac66afb8 2019-06-24 stsp }
6843 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
6844 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6845 56e0773d 2019-11-28 stsp else
6846 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6847 7c32bd05 2019-06-22 stsp }
6848 7c32bd05 2019-06-22 stsp
6849 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
6850 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6851 56e0773d 2019-11-28 stsp s->matched_entry = te;
6852 7c32bd05 2019-06-22 stsp break;
6853 7c32bd05 2019-06-22 stsp }
6854 7c32bd05 2019-06-22 stsp
6855 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
6856 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
6857 56e0773d 2019-11-28 stsp else
6858 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
6859 7c32bd05 2019-06-22 stsp }
6860 e5a0f69f 2018-08-18 stsp
6861 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
6862 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
6863 7c32bd05 2019-06-22 stsp s->selected = 0;
6864 7c32bd05 2019-06-22 stsp }
6865 7c32bd05 2019-06-22 stsp
6866 e5a0f69f 2018-08-18 stsp return NULL;
6867 ad80ab7b 2018-08-04 stsp }
6868 ad80ab7b 2018-08-04 stsp
6869 ad80ab7b 2018-08-04 stsp static const struct got_error *
6870 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
6871 ad80ab7b 2018-08-04 stsp {
6872 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
6873 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6874 e5a0f69f 2018-08-18 stsp char *parent_path;
6875 ad80ab7b 2018-08-04 stsp
6876 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
6877 e5a0f69f 2018-08-18 stsp if (err)
6878 e5a0f69f 2018-08-18 stsp return err;
6879 ffd1d5e5 2018-06-23 stsp
6880 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
6881 e5a0f69f 2018-08-18 stsp free(parent_path);
6882 669b5ffa 2018-10-07 stsp
6883 9b058f45 2022-06-30 mark view_border(view);
6884 e5a0f69f 2018-08-18 stsp return err;
6885 94b80cfa 2022-08-01 mark }
6886 94b80cfa 2022-08-01 mark
6887 94b80cfa 2022-08-01 mark static const struct got_error *
6888 94b80cfa 2022-08-01 mark tree_goto_line(struct tog_view *view, int nlines)
6889 94b80cfa 2022-08-01 mark {
6890 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
6891 94b80cfa 2022-08-01 mark struct tog_tree_view_state *s = &view->state.tree;
6892 94b80cfa 2022-08-01 mark struct got_tree_entry **fte, **lte, **ste;
6893 94b80cfa 2022-08-01 mark int g, last, first = 1, i = 1;
6894 94b80cfa 2022-08-01 mark int root = s->tree == s->root;
6895 94b80cfa 2022-08-01 mark int off = root ? 1 : 2;
6896 94b80cfa 2022-08-01 mark
6897 94b80cfa 2022-08-01 mark g = view->gline;
6898 94b80cfa 2022-08-01 mark view->gline = 0;
6899 94b80cfa 2022-08-01 mark
6900 94b80cfa 2022-08-01 mark if (g == 0)
6901 94b80cfa 2022-08-01 mark g = 1;
6902 94b80cfa 2022-08-01 mark else if (g > got_object_tree_get_nentries(s->tree))
6903 94b80cfa 2022-08-01 mark g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
6904 94b80cfa 2022-08-01 mark
6905 94b80cfa 2022-08-01 mark fte = &s->first_displayed_entry;
6906 94b80cfa 2022-08-01 mark lte = &s->last_displayed_entry;
6907 94b80cfa 2022-08-01 mark ste = &s->selected_entry;
6908 94b80cfa 2022-08-01 mark
6909 94b80cfa 2022-08-01 mark if (*fte != NULL) {
6910 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
6911 94b80cfa 2022-08-01 mark first += off; /* account for ".." */
6912 94b80cfa 2022-08-01 mark }
6913 94b80cfa 2022-08-01 mark last = got_tree_entry_get_index(*lte);
6914 94b80cfa 2022-08-01 mark last += off;
6915 94b80cfa 2022-08-01 mark
6916 94b80cfa 2022-08-01 mark if (g >= first && g <= last && g - first < nlines) {
6917 94b80cfa 2022-08-01 mark s->selected = g - first;
6918 94b80cfa 2022-08-01 mark return NULL; /* gline is on the current page */
6919 94b80cfa 2022-08-01 mark }
6920 94b80cfa 2022-08-01 mark
6921 94b80cfa 2022-08-01 mark if (*ste != NULL) {
6922 94b80cfa 2022-08-01 mark i = got_tree_entry_get_index(*ste);
6923 94b80cfa 2022-08-01 mark i += off;
6924 94b80cfa 2022-08-01 mark }
6925 94b80cfa 2022-08-01 mark
6926 94b80cfa 2022-08-01 mark if (i < g) {
6927 94b80cfa 2022-08-01 mark err = tree_scroll_down(view, g - i);
6928 94b80cfa 2022-08-01 mark if (err)
6929 94b80cfa 2022-08-01 mark return err;
6930 94b80cfa 2022-08-01 mark if (got_tree_entry_get_index(*lte) >=
6931 94b80cfa 2022-08-01 mark got_object_tree_get_nentries(s->tree) - 1 &&
6932 94b80cfa 2022-08-01 mark first + s->selected < g &&
6933 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1) {
6934 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
6935 94b80cfa 2022-08-01 mark first += off;
6936 94b80cfa 2022-08-01 mark s->selected = g - first;
6937 94b80cfa 2022-08-01 mark }
6938 94b80cfa 2022-08-01 mark } else if (i > g)
6939 94b80cfa 2022-08-01 mark tree_scroll_up(s, i - g);
6940 94b80cfa 2022-08-01 mark
6941 94b80cfa 2022-08-01 mark if (g < nlines &&
6942 94b80cfa 2022-08-01 mark (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
6943 94b80cfa 2022-08-01 mark s->selected = g - 1;
6944 94b80cfa 2022-08-01 mark
6945 94b80cfa 2022-08-01 mark return NULL;
6946 e5a0f69f 2018-08-18 stsp }
6947 ce52c690 2018-06-23 stsp
6948 e5a0f69f 2018-08-18 stsp static const struct got_error *
6949 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
6950 e5a0f69f 2018-08-18 stsp {
6951 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6952 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
6953 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
6954 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 3;
6955 ffd1d5e5 2018-06-23 stsp
6956 94b80cfa 2022-08-01 mark if (view->gline)
6957 94b80cfa 2022-08-01 mark return tree_goto_line(view, nscroll);
6958 94b80cfa 2022-08-01 mark
6959 e5a0f69f 2018-08-18 stsp switch (ch) {
6960 1e37a5c2 2019-05-12 jcs case 'i':
6961 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
6962 640cd7ff 2022-06-22 mark view->count = 0;
6963 1e37a5c2 2019-05-12 jcs break;
6964 5e98fb33 2022-07-22 mark case 'L':
6965 640cd7ff 2022-06-22 mark view->count = 0;
6966 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
6967 ffd1d5e5 2018-06-23 stsp break;
6968 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6969 152c1c93 2020-11-29 stsp break;
6970 5e98fb33 2022-07-22 mark case 'R':
6971 640cd7ff 2022-06-22 mark view->count = 0;
6972 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
6973 e4526bf5 2021-09-03 naddy break;
6974 e4526bf5 2021-09-03 naddy case 'g':
6975 e4526bf5 2021-09-03 naddy case KEY_HOME:
6976 e4526bf5 2021-09-03 naddy s->selected = 0;
6977 640cd7ff 2022-06-22 mark view->count = 0;
6978 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
6979 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
6980 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
6981 e4526bf5 2021-09-03 naddy else
6982 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
6983 1e37a5c2 2019-05-12 jcs break;
6984 e4526bf5 2021-09-03 naddy case 'G':
6985 9b058f45 2022-06-30 mark case KEY_END: {
6986 9b058f45 2022-06-30 mark int eos = view->nlines - 3;
6987 9b058f45 2022-06-30 mark
6988 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
6989 9b058f45 2022-06-30 mark --eos; /* border */
6990 e4526bf5 2021-09-03 naddy s->selected = 0;
6991 640cd7ff 2022-06-22 mark view->count = 0;
6992 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
6993 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
6994 e4526bf5 2021-09-03 naddy if (te == NULL) {
6995 ad055527 2022-07-16 mark if (s->tree != s->root) {
6996 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
6997 e4526bf5 2021-09-03 naddy n++;
6998 e4526bf5 2021-09-03 naddy }
6999 e4526bf5 2021-09-03 naddy break;
7000 e4526bf5 2021-09-03 naddy }
7001 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7002 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7003 e4526bf5 2021-09-03 naddy }
7004 e4526bf5 2021-09-03 naddy if (n > 0)
7005 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7006 e4526bf5 2021-09-03 naddy break;
7007 9b058f45 2022-06-30 mark }
7008 1e37a5c2 2019-05-12 jcs case 'k':
7009 1e37a5c2 2019-05-12 jcs case KEY_UP:
7010 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7011 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7012 1e37a5c2 2019-05-12 jcs s->selected--;
7013 fa86c4bf 2020-11-29 stsp break;
7014 1e37a5c2 2019-05-12 jcs }
7015 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7016 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7017 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7018 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7019 640cd7ff 2022-06-22 mark view->count = 0;
7020 1e37a5c2 2019-05-12 jcs break;
7021 83cc4199 2022-06-13 stsp case CTRL('u'):
7022 33c3719a 2022-06-15 stsp case 'u':
7023 83cc4199 2022-06-13 stsp nscroll /= 2;
7024 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7025 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7026 ea025d1d 2020-02-22 naddy case CTRL('b'):
7027 61417565 2022-06-20 mark case 'b':
7028 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7029 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7030 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7031 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7032 fa86c4bf 2020-11-29 stsp } else {
7033 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7034 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7035 fa86c4bf 2020-11-29 stsp }
7036 83cc4199 2022-06-13 stsp tree_scroll_up(s, MAX(0, nscroll));
7037 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7038 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7039 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7040 640cd7ff 2022-06-22 mark view->count = 0;
7041 1e37a5c2 2019-05-12 jcs break;
7042 1e37a5c2 2019-05-12 jcs case 'j':
7043 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7044 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7045 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7046 1e37a5c2 2019-05-12 jcs s->selected++;
7047 1e37a5c2 2019-05-12 jcs break;
7048 1e37a5c2 2019-05-12 jcs }
7049 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7050 640cd7ff 2022-06-22 mark == NULL) {
7051 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7052 640cd7ff 2022-06-22 mark view->count = 0;
7053 1e37a5c2 2019-05-12 jcs break;
7054 640cd7ff 2022-06-22 mark }
7055 9b058f45 2022-06-30 mark tree_scroll_down(view, 1);
7056 1e37a5c2 2019-05-12 jcs break;
7057 83cc4199 2022-06-13 stsp case CTRL('d'):
7058 33c3719a 2022-06-15 stsp case 'd':
7059 83cc4199 2022-06-13 stsp nscroll /= 2;
7060 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7061 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7062 ea025d1d 2020-02-22 naddy case CTRL('f'):
7063 61417565 2022-06-20 mark case 'f':
7064 48bb96f0 2022-06-20 naddy case ' ':
7065 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7066 1e37a5c2 2019-05-12 jcs == NULL) {
7067 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7068 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7069 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7070 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7071 640cd7ff 2022-06-22 mark else
7072 640cd7ff 2022-06-22 mark view->count = 0;
7073 1e37a5c2 2019-05-12 jcs break;
7074 1e37a5c2 2019-05-12 jcs }
7075 9b058f45 2022-06-30 mark tree_scroll_down(view, nscroll);
7076 1e37a5c2 2019-05-12 jcs break;
7077 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7078 1e37a5c2 2019-05-12 jcs case '\r':
7079 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7080 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7081 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7082 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7083 640cd7ff 2022-06-22 mark if (s->tree == s->root) {
7084 640cd7ff 2022-06-22 mark view->count = 0;
7085 1e37a5c2 2019-05-12 jcs break;
7086 640cd7ff 2022-06-22 mark }
7087 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7088 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7089 1e37a5c2 2019-05-12 jcs entry);
7090 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7091 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7092 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7093 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7094 1e37a5c2 2019-05-12 jcs s->selected_entry =
7095 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7096 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7097 9b058f45 2022-06-30 mark if (s->selected > view->nlines - 3) {
7098 9b058f45 2022-06-30 mark err = offset_selection_down(view);
7099 9b058f45 2022-06-30 mark if (err)
7100 9b058f45 2022-06-30 mark break;
7101 9b058f45 2022-06-30 mark }
7102 1e37a5c2 2019-05-12 jcs free(parent);
7103 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7104 56e0773d 2019-11-28 stsp s->selected_entry))) {
7105 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7106 640cd7ff 2022-06-22 mark view->count = 0;
7107 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7108 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7109 1e37a5c2 2019-05-12 jcs if (err)
7110 1e37a5c2 2019-05-12 jcs break;
7111 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7112 941e9f74 2019-05-21 stsp if (err) {
7113 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7114 1e37a5c2 2019-05-12 jcs break;
7115 1e37a5c2 2019-05-12 jcs }
7116 136e2bd4 2022-07-23 mark } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7117 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7118 1e37a5c2 2019-05-12 jcs break;
7119 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7120 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7121 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7122 640cd7ff 2022-06-22 mark view->count = 0;
7123 1e37a5c2 2019-05-12 jcs break;
7124 1e37a5c2 2019-05-12 jcs default:
7125 640cd7ff 2022-06-22 mark view->count = 0;
7126 1e37a5c2 2019-05-12 jcs break;
7127 ffd1d5e5 2018-06-23 stsp }
7128 e5a0f69f 2018-08-18 stsp
7129 ffd1d5e5 2018-06-23 stsp return err;
7130 9f7d7167 2018-04-29 stsp }
7131 9f7d7167 2018-04-29 stsp
7132 ffd1d5e5 2018-06-23 stsp __dead static void
7133 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7134 ffd1d5e5 2018-06-23 stsp {
7135 ffd1d5e5 2018-06-23 stsp endwin();
7136 87411fa9 2022-06-16 stsp fprintf(stderr,
7137 87411fa9 2022-06-16 stsp "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7138 ffd1d5e5 2018-06-23 stsp getprogname());
7139 ffd1d5e5 2018-06-23 stsp exit(1);
7140 ffd1d5e5 2018-06-23 stsp }
7141 ffd1d5e5 2018-06-23 stsp
7142 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7143 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7144 ffd1d5e5 2018-06-23 stsp {
7145 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7146 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7147 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7148 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7149 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7150 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
7151 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7152 4e97c21c 2020-12-06 stsp char *label = NULL;
7153 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7154 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7155 ffd1d5e5 2018-06-23 stsp int ch;
7156 5221c383 2018-08-01 stsp struct tog_view *view;
7157 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
7158 70ac5f84 2019-03-28 stsp
7159 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7160 ffd1d5e5 2018-06-23 stsp switch (ch) {
7161 ffd1d5e5 2018-06-23 stsp case 'c':
7162 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7163 74283ab8 2020-02-07 stsp break;
7164 74283ab8 2020-02-07 stsp case 'r':
7165 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7166 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7167 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7168 74283ab8 2020-02-07 stsp optarg);
7169 ffd1d5e5 2018-06-23 stsp break;
7170 ffd1d5e5 2018-06-23 stsp default:
7171 e99e2d15 2020-11-24 naddy usage_tree();
7172 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7173 ffd1d5e5 2018-06-23 stsp }
7174 ffd1d5e5 2018-06-23 stsp }
7175 ffd1d5e5 2018-06-23 stsp
7176 ffd1d5e5 2018-06-23 stsp argc -= optind;
7177 ffd1d5e5 2018-06-23 stsp argv += optind;
7178 ffd1d5e5 2018-06-23 stsp
7179 55cccc34 2020-02-20 stsp if (argc > 1)
7180 e99e2d15 2020-11-24 naddy usage_tree();
7181 0ae84acc 2022-06-15 tracey
7182 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
7183 0ae84acc 2022-06-15 tracey if (error != NULL)
7184 0ae84acc 2022-06-15 tracey goto done;
7185 74283ab8 2020-02-07 stsp
7186 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7187 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7188 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7189 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7190 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7191 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7192 c156c7a4 2020-12-18 stsp goto done;
7193 55cccc34 2020-02-20 stsp if (worktree)
7194 52185f70 2019-02-05 stsp repo_path =
7195 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7196 55cccc34 2020-02-20 stsp else
7197 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7198 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7199 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7200 c156c7a4 2020-12-18 stsp goto done;
7201 c156c7a4 2020-12-18 stsp }
7202 55cccc34 2020-02-20 stsp }
7203 a915003a 2019-02-05 stsp
7204 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7205 c02c541e 2019-03-29 stsp if (error != NULL)
7206 52185f70 2019-02-05 stsp goto done;
7207 d188b9a6 2019-01-04 stsp
7208 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7209 55cccc34 2020-02-20 stsp repo, worktree);
7210 55cccc34 2020-02-20 stsp if (error)
7211 55cccc34 2020-02-20 stsp goto done;
7212 55cccc34 2020-02-20 stsp
7213 55cccc34 2020-02-20 stsp init_curses();
7214 55cccc34 2020-02-20 stsp
7215 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7216 c02c541e 2019-03-29 stsp if (error)
7217 52185f70 2019-02-05 stsp goto done;
7218 ffd1d5e5 2018-06-23 stsp
7219 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
7220 51a10b52 2020-12-26 stsp if (error)
7221 51a10b52 2020-12-26 stsp goto done;
7222 51a10b52 2020-12-26 stsp
7223 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7224 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7225 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7226 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7227 4e97c21c 2020-12-06 stsp if (error)
7228 4e97c21c 2020-12-06 stsp goto done;
7229 4e97c21c 2020-12-06 stsp head_ref_name = label;
7230 4e97c21c 2020-12-06 stsp } else {
7231 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7232 4e97c21c 2020-12-06 stsp if (error == NULL)
7233 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7234 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7235 4e97c21c 2020-12-06 stsp goto done;
7236 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7237 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7238 4e97c21c 2020-12-06 stsp if (error)
7239 4e97c21c 2020-12-06 stsp goto done;
7240 4e97c21c 2020-12-06 stsp }
7241 ffd1d5e5 2018-06-23 stsp
7242 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
7243 a44927cc 2022-04-07 stsp if (error)
7244 a44927cc 2022-04-07 stsp goto done;
7245 a44927cc 2022-04-07 stsp
7246 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7247 5221c383 2018-08-01 stsp if (view == NULL) {
7248 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7249 5221c383 2018-08-01 stsp goto done;
7250 5221c383 2018-08-01 stsp }
7251 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7252 ad80ab7b 2018-08-04 stsp if (error)
7253 ad80ab7b 2018-08-04 stsp goto done;
7254 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7255 a44927cc 2022-04-07 stsp error = tree_view_walk_path(&view->state.tree, commit,
7256 d91faf3b 2020-12-01 naddy in_repo_path);
7257 55cccc34 2020-02-20 stsp if (error)
7258 55cccc34 2020-02-20 stsp goto done;
7259 55cccc34 2020-02-20 stsp }
7260 55cccc34 2020-02-20 stsp
7261 55cccc34 2020-02-20 stsp if (worktree) {
7262 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7263 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7264 55cccc34 2020-02-20 stsp worktree = NULL;
7265 55cccc34 2020-02-20 stsp }
7266 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7267 ffd1d5e5 2018-06-23 stsp done:
7268 52185f70 2019-02-05 stsp free(repo_path);
7269 e4a0e26d 2020-02-20 stsp free(cwd);
7270 ffd1d5e5 2018-06-23 stsp free(commit_id);
7271 4e97c21c 2020-12-06 stsp free(label);
7272 486cd271 2020-12-06 stsp if (ref)
7273 486cd271 2020-12-06 stsp got_ref_close(ref);
7274 1d0f4054 2021-06-17 stsp if (repo) {
7275 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7276 1d0f4054 2021-06-17 stsp if (error == NULL)
7277 1d0f4054 2021-06-17 stsp error = close_err;
7278 1d0f4054 2021-06-17 stsp }
7279 0ae84acc 2022-06-15 tracey if (pack_fds) {
7280 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
7281 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
7282 0ae84acc 2022-06-15 tracey if (error == NULL)
7283 0ae84acc 2022-06-15 tracey error = pack_err;
7284 0ae84acc 2022-06-15 tracey }
7285 51a10b52 2020-12-26 stsp tog_free_refs();
7286 ffd1d5e5 2018-06-23 stsp return error;
7287 6458efa5 2020-11-24 stsp }
7288 6458efa5 2020-11-24 stsp
7289 6458efa5 2020-11-24 stsp static const struct got_error *
7290 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7291 6458efa5 2020-11-24 stsp {
7292 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7293 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7294 6458efa5 2020-11-24 stsp
7295 6458efa5 2020-11-24 stsp s->nrefs = 0;
7296 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7297 cc488aa7 2022-01-23 stsp if (strncmp(got_ref_get_name(sre->ref),
7298 cc488aa7 2022-01-23 stsp "refs/got/", 9) == 0 &&
7299 cc488aa7 2022-01-23 stsp strncmp(got_ref_get_name(sre->ref),
7300 cc488aa7 2022-01-23 stsp "refs/got/backup/", 16) != 0)
7301 6458efa5 2020-11-24 stsp continue;
7302 6458efa5 2020-11-24 stsp
7303 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7304 6458efa5 2020-11-24 stsp if (re == NULL)
7305 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7306 6458efa5 2020-11-24 stsp
7307 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7308 8924d611 2020-12-26 stsp if (re->ref == NULL)
7309 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7310 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7311 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7312 6458efa5 2020-11-24 stsp }
7313 6458efa5 2020-11-24 stsp
7314 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7315 6458efa5 2020-11-24 stsp return NULL;
7316 6458efa5 2020-11-24 stsp }
7317 6458efa5 2020-11-24 stsp
7318 336075a4 2022-06-25 op static void
7319 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7320 6458efa5 2020-11-24 stsp {
7321 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7322 6458efa5 2020-11-24 stsp
7323 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7324 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7325 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7326 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7327 6458efa5 2020-11-24 stsp free(re);
7328 6458efa5 2020-11-24 stsp }
7329 6458efa5 2020-11-24 stsp }
7330 6458efa5 2020-11-24 stsp
7331 6458efa5 2020-11-24 stsp static const struct got_error *
7332 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7333 6458efa5 2020-11-24 stsp {
7334 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7335 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7336 6458efa5 2020-11-24 stsp
7337 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7338 6458efa5 2020-11-24 stsp s->repo = repo;
7339 6458efa5 2020-11-24 stsp
7340 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7341 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7342 6458efa5 2020-11-24 stsp
7343 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7344 6458efa5 2020-11-24 stsp if (err)
7345 6458efa5 2020-11-24 stsp return err;
7346 34ba6917 2020-11-30 stsp
7347 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7348 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7349 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7350 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7351 6458efa5 2020-11-24 stsp if (err)
7352 6458efa5 2020-11-24 stsp goto done;
7353 6458efa5 2020-11-24 stsp
7354 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7355 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7356 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7357 6458efa5 2020-11-24 stsp if (err)
7358 6458efa5 2020-11-24 stsp goto done;
7359 6458efa5 2020-11-24 stsp
7360 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7361 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7362 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7363 cc488aa7 2022-01-23 stsp if (err)
7364 cc488aa7 2022-01-23 stsp goto done;
7365 cc488aa7 2022-01-23 stsp
7366 cc488aa7 2022-01-23 stsp err = add_color(&s->colors, "^refs/got/backup/",
7367 cc488aa7 2022-01-23 stsp TOG_COLOR_REFS_BACKUP,
7368 cc488aa7 2022-01-23 stsp get_color_value("TOG_COLOR_REFS_BACKUP"));
7369 6458efa5 2020-11-24 stsp if (err)
7370 6458efa5 2020-11-24 stsp goto done;
7371 6458efa5 2020-11-24 stsp }
7372 6458efa5 2020-11-24 stsp
7373 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7374 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7375 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7376 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7377 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7378 6458efa5 2020-11-24 stsp done:
7379 6458efa5 2020-11-24 stsp if (err)
7380 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7381 6458efa5 2020-11-24 stsp return err;
7382 6458efa5 2020-11-24 stsp }
7383 6458efa5 2020-11-24 stsp
7384 6458efa5 2020-11-24 stsp static const struct got_error *
7385 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7386 6458efa5 2020-11-24 stsp {
7387 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7388 6458efa5 2020-11-24 stsp
7389 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7390 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7391 6458efa5 2020-11-24 stsp
7392 6458efa5 2020-11-24 stsp return NULL;
7393 9f7d7167 2018-04-29 stsp }
7394 ce5b7c56 2019-07-09 stsp
7395 6458efa5 2020-11-24 stsp static const struct got_error *
7396 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7397 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7398 6458efa5 2020-11-24 stsp {
7399 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7400 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7401 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7402 6458efa5 2020-11-24 stsp int obj_type;
7403 6458efa5 2020-11-24 stsp
7404 c42c9805 2020-11-24 stsp *commit_id = NULL;
7405 6458efa5 2020-11-24 stsp
7406 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7407 6458efa5 2020-11-24 stsp if (err)
7408 6458efa5 2020-11-24 stsp return err;
7409 6458efa5 2020-11-24 stsp
7410 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7411 6458efa5 2020-11-24 stsp if (err)
7412 6458efa5 2020-11-24 stsp goto done;
7413 6458efa5 2020-11-24 stsp
7414 6458efa5 2020-11-24 stsp switch (obj_type) {
7415 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7416 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7417 6458efa5 2020-11-24 stsp break;
7418 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7419 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7420 6458efa5 2020-11-24 stsp if (err)
7421 6458efa5 2020-11-24 stsp goto done;
7422 c42c9805 2020-11-24 stsp free(obj_id);
7423 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7424 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7425 c42c9805 2020-11-24 stsp if (err)
7426 6458efa5 2020-11-24 stsp goto done;
7427 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7428 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7429 c42c9805 2020-11-24 stsp goto done;
7430 c42c9805 2020-11-24 stsp }
7431 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7432 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7433 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7434 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7435 c42c9805 2020-11-24 stsp goto done;
7436 c42c9805 2020-11-24 stsp }
7437 6458efa5 2020-11-24 stsp break;
7438 6458efa5 2020-11-24 stsp default:
7439 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7440 c42c9805 2020-11-24 stsp break;
7441 6458efa5 2020-11-24 stsp }
7442 6458efa5 2020-11-24 stsp
7443 c42c9805 2020-11-24 stsp done:
7444 c42c9805 2020-11-24 stsp if (tag)
7445 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7446 c42c9805 2020-11-24 stsp if (err) {
7447 c42c9805 2020-11-24 stsp free(*commit_id);
7448 c42c9805 2020-11-24 stsp *commit_id = NULL;
7449 c42c9805 2020-11-24 stsp }
7450 c42c9805 2020-11-24 stsp return err;
7451 c42c9805 2020-11-24 stsp }
7452 c42c9805 2020-11-24 stsp
7453 c42c9805 2020-11-24 stsp static const struct got_error *
7454 9b058f45 2022-06-30 mark log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7455 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7456 c42c9805 2020-11-24 stsp {
7457 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7458 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7459 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7460 c42c9805 2020-11-24 stsp
7461 c42c9805 2020-11-24 stsp *new_view = NULL;
7462 c42c9805 2020-11-24 stsp
7463 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7464 c42c9805 2020-11-24 stsp if (err) {
7465 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7466 c42c9805 2020-11-24 stsp return err;
7467 c42c9805 2020-11-24 stsp else
7468 c42c9805 2020-11-24 stsp return NULL;
7469 c42c9805 2020-11-24 stsp }
7470 c42c9805 2020-11-24 stsp
7471 9b058f45 2022-06-30 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7472 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7473 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7474 6458efa5 2020-11-24 stsp goto done;
7475 6458efa5 2020-11-24 stsp }
7476 6458efa5 2020-11-24 stsp
7477 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7478 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7479 6458efa5 2020-11-24 stsp done:
7480 6458efa5 2020-11-24 stsp if (err)
7481 6458efa5 2020-11-24 stsp view_close(log_view);
7482 6458efa5 2020-11-24 stsp else
7483 6458efa5 2020-11-24 stsp *new_view = log_view;
7484 c42c9805 2020-11-24 stsp free(commit_id);
7485 6458efa5 2020-11-24 stsp return err;
7486 6458efa5 2020-11-24 stsp }
7487 6458efa5 2020-11-24 stsp
7488 ce5b7c56 2019-07-09 stsp static void
7489 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7490 6458efa5 2020-11-24 stsp {
7491 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7492 34ba6917 2020-11-30 stsp int i = 0;
7493 6458efa5 2020-11-24 stsp
7494 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7495 6458efa5 2020-11-24 stsp return;
7496 6458efa5 2020-11-24 stsp
7497 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7498 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7499 34ba6917 2020-11-30 stsp if (re == NULL)
7500 34ba6917 2020-11-30 stsp break;
7501 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7502 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7503 6458efa5 2020-11-24 stsp }
7504 6458efa5 2020-11-24 stsp }
7505 6458efa5 2020-11-24 stsp
7506 9b058f45 2022-06-30 mark static const struct got_error *
7507 9b058f45 2022-06-30 mark ref_scroll_down(struct tog_view *view, int maxscroll)
7508 6458efa5 2020-11-24 stsp {
7509 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
7510 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7511 6458efa5 2020-11-24 stsp int n = 0;
7512 6458efa5 2020-11-24 stsp
7513 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7514 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7515 6458efa5 2020-11-24 stsp else
7516 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7517 6458efa5 2020-11-24 stsp
7518 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7519 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
7520 94b80cfa 2022-08-01 mark if (last) {
7521 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
7522 9b058f45 2022-06-30 mark last = TAILQ_NEXT(last, entry);
7523 94b80cfa 2022-08-01 mark }
7524 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7525 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7526 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7527 6458efa5 2020-11-24 stsp }
7528 6458efa5 2020-11-24 stsp }
7529 9b058f45 2022-06-30 mark
7530 9b058f45 2022-06-30 mark return NULL;
7531 6458efa5 2020-11-24 stsp }
7532 6458efa5 2020-11-24 stsp
7533 6458efa5 2020-11-24 stsp static const struct got_error *
7534 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7535 6458efa5 2020-11-24 stsp {
7536 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7537 6458efa5 2020-11-24 stsp
7538 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7539 6458efa5 2020-11-24 stsp return NULL;
7540 6458efa5 2020-11-24 stsp }
7541 6458efa5 2020-11-24 stsp
7542 6458efa5 2020-11-24 stsp static int
7543 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7544 6458efa5 2020-11-24 stsp {
7545 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7546 6458efa5 2020-11-24 stsp
7547 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7548 6458efa5 2020-11-24 stsp 0) == 0;
7549 6458efa5 2020-11-24 stsp }
7550 6458efa5 2020-11-24 stsp
7551 6458efa5 2020-11-24 stsp static const struct got_error *
7552 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7553 6458efa5 2020-11-24 stsp {
7554 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7555 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7556 6458efa5 2020-11-24 stsp
7557 6458efa5 2020-11-24 stsp if (!view->searching) {
7558 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7559 6458efa5 2020-11-24 stsp return NULL;
7560 6458efa5 2020-11-24 stsp }
7561 6458efa5 2020-11-24 stsp
7562 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7563 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7564 6458efa5 2020-11-24 stsp if (s->selected_entry)
7565 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7566 6458efa5 2020-11-24 stsp else
7567 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7568 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7569 6458efa5 2020-11-24 stsp } else {
7570 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7571 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7572 6458efa5 2020-11-24 stsp else
7573 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7574 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7575 6458efa5 2020-11-24 stsp }
7576 6458efa5 2020-11-24 stsp } else {
7577 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7578 487cd7d2 2021-12-17 stsp re = s->selected_entry;
7579 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7580 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7581 6458efa5 2020-11-24 stsp else
7582 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7583 6458efa5 2020-11-24 stsp }
7584 6458efa5 2020-11-24 stsp
7585 6458efa5 2020-11-24 stsp while (1) {
7586 6458efa5 2020-11-24 stsp if (re == NULL) {
7587 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7588 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7589 6458efa5 2020-11-24 stsp return NULL;
7590 6458efa5 2020-11-24 stsp }
7591 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7592 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7593 6458efa5 2020-11-24 stsp else
7594 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7595 6458efa5 2020-11-24 stsp }
7596 6458efa5 2020-11-24 stsp
7597 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7598 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7599 6458efa5 2020-11-24 stsp s->matched_entry = re;
7600 6458efa5 2020-11-24 stsp break;
7601 6458efa5 2020-11-24 stsp }
7602 6458efa5 2020-11-24 stsp
7603 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7604 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7605 6458efa5 2020-11-24 stsp else
7606 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7607 6458efa5 2020-11-24 stsp }
7608 6458efa5 2020-11-24 stsp
7609 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7610 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7611 6458efa5 2020-11-24 stsp s->selected = 0;
7612 6458efa5 2020-11-24 stsp }
7613 6458efa5 2020-11-24 stsp
7614 6458efa5 2020-11-24 stsp return NULL;
7615 6458efa5 2020-11-24 stsp }
7616 6458efa5 2020-11-24 stsp
7617 6458efa5 2020-11-24 stsp static const struct got_error *
7618 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7619 6458efa5 2020-11-24 stsp {
7620 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7621 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7622 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7623 6458efa5 2020-11-24 stsp char *line = NULL;
7624 6458efa5 2020-11-24 stsp wchar_t *wline;
7625 6458efa5 2020-11-24 stsp struct tog_color *tc;
7626 6458efa5 2020-11-24 stsp int width, n;
7627 6458efa5 2020-11-24 stsp int limit = view->nlines;
7628 6458efa5 2020-11-24 stsp
7629 6458efa5 2020-11-24 stsp werase(view->window);
7630 6458efa5 2020-11-24 stsp
7631 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7632 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
7633 9b058f45 2022-06-30 mark --limit; /* border */
7634 6458efa5 2020-11-24 stsp
7635 6458efa5 2020-11-24 stsp if (limit == 0)
7636 6458efa5 2020-11-24 stsp return NULL;
7637 6458efa5 2020-11-24 stsp
7638 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7639 6458efa5 2020-11-24 stsp
7640 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7641 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7642 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7643 6458efa5 2020-11-24 stsp
7644 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7645 6458efa5 2020-11-24 stsp if (err) {
7646 6458efa5 2020-11-24 stsp free(line);
7647 6458efa5 2020-11-24 stsp return err;
7648 6458efa5 2020-11-24 stsp }
7649 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7650 6458efa5 2020-11-24 stsp wstandout(view->window);
7651 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7652 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
7653 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
7654 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7655 6458efa5 2020-11-24 stsp wstandend(view->window);
7656 6458efa5 2020-11-24 stsp free(wline);
7657 6458efa5 2020-11-24 stsp wline = NULL;
7658 6458efa5 2020-11-24 stsp free(line);
7659 6458efa5 2020-11-24 stsp line = NULL;
7660 6458efa5 2020-11-24 stsp if (--limit <= 0)
7661 6458efa5 2020-11-24 stsp return NULL;
7662 6458efa5 2020-11-24 stsp
7663 6458efa5 2020-11-24 stsp n = 0;
7664 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7665 6458efa5 2020-11-24 stsp char *line = NULL;
7666 b4996bee 2022-06-16 stsp char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7667 6458efa5 2020-11-24 stsp
7668 b4996bee 2022-06-16 stsp if (s->show_date) {
7669 b4996bee 2022-06-16 stsp struct got_commit_object *ci;
7670 b4996bee 2022-06-16 stsp struct got_tag_object *tag;
7671 b4996bee 2022-06-16 stsp struct got_object_id *id;
7672 b4996bee 2022-06-16 stsp struct tm tm;
7673 b4996bee 2022-06-16 stsp time_t t;
7674 b4996bee 2022-06-16 stsp
7675 b4996bee 2022-06-16 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7676 b4996bee 2022-06-16 stsp if (err)
7677 b4996bee 2022-06-16 stsp return err;
7678 b4996bee 2022-06-16 stsp err = got_object_open_as_tag(&tag, s->repo, id);
7679 b4996bee 2022-06-16 stsp if (err) {
7680 b4996bee 2022-06-16 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
7681 b4996bee 2022-06-16 stsp free(id);
7682 b4996bee 2022-06-16 stsp return err;
7683 b4996bee 2022-06-16 stsp }
7684 b4996bee 2022-06-16 stsp err = got_object_open_as_commit(&ci, s->repo,
7685 b4996bee 2022-06-16 stsp id);
7686 b4996bee 2022-06-16 stsp if (err) {
7687 b4996bee 2022-06-16 stsp free(id);
7688 b4996bee 2022-06-16 stsp return err;
7689 b4996bee 2022-06-16 stsp }
7690 b4996bee 2022-06-16 stsp t = got_object_commit_get_committer_time(ci);
7691 b4996bee 2022-06-16 stsp got_object_commit_close(ci);
7692 b4996bee 2022-06-16 stsp } else {
7693 b4996bee 2022-06-16 stsp t = got_object_tag_get_tagger_time(tag);
7694 b4996bee 2022-06-16 stsp got_object_tag_close(tag);
7695 b4996bee 2022-06-16 stsp }
7696 b4996bee 2022-06-16 stsp free(id);
7697 b4996bee 2022-06-16 stsp if (gmtime_r(&t, &tm) == NULL)
7698 b4996bee 2022-06-16 stsp return got_error_from_errno("gmtime_r");
7699 b4996bee 2022-06-16 stsp if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
7700 b4996bee 2022-06-16 stsp return got_error(GOT_ERR_NO_SPACE);
7701 b4996bee 2022-06-16 stsp }
7702 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
7703 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s -> %s", s->show_date ?
7704 b4996bee 2022-06-16 stsp ymd : "", got_ref_get_name(re->ref),
7705 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
7706 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7707 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
7708 6458efa5 2020-11-24 stsp struct got_object_id *id;
7709 6458efa5 2020-11-24 stsp char *id_str;
7710 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7711 6458efa5 2020-11-24 stsp if (err)
7712 6458efa5 2020-11-24 stsp return err;
7713 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
7714 6458efa5 2020-11-24 stsp if (err) {
7715 6458efa5 2020-11-24 stsp free(id);
7716 6458efa5 2020-11-24 stsp return err;
7717 6458efa5 2020-11-24 stsp }
7718 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
7719 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
7720 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
7721 6458efa5 2020-11-24 stsp free(id);
7722 6458efa5 2020-11-24 stsp free(id_str);
7723 6458efa5 2020-11-24 stsp return err;
7724 6458efa5 2020-11-24 stsp }
7725 6458efa5 2020-11-24 stsp free(id);
7726 6458efa5 2020-11-24 stsp free(id_str);
7727 b4996bee 2022-06-16 stsp } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
7728 b4996bee 2022-06-16 stsp got_ref_get_name(re->ref)) == -1)
7729 b4996bee 2022-06-16 stsp return got_error_from_errno("asprintf");
7730 6458efa5 2020-11-24 stsp
7731 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
7732 ccda2f4d 2022-06-16 stsp 0, 0);
7733 6458efa5 2020-11-24 stsp if (err) {
7734 6458efa5 2020-11-24 stsp free(line);
7735 6458efa5 2020-11-24 stsp return err;
7736 6458efa5 2020-11-24 stsp }
7737 6458efa5 2020-11-24 stsp if (n == s->selected) {
7738 6458efa5 2020-11-24 stsp if (view->focussed)
7739 6458efa5 2020-11-24 stsp wstandout(view->window);
7740 6458efa5 2020-11-24 stsp s->selected_entry = re;
7741 6458efa5 2020-11-24 stsp }
7742 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
7743 6458efa5 2020-11-24 stsp if (tc)
7744 6458efa5 2020-11-24 stsp wattr_on(view->window,
7745 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
7746 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7747 6458efa5 2020-11-24 stsp if (tc)
7748 6458efa5 2020-11-24 stsp wattr_off(view->window,
7749 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
7750 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
7751 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
7752 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
7753 6458efa5 2020-11-24 stsp wstandend(view->window);
7754 6458efa5 2020-11-24 stsp free(line);
7755 6458efa5 2020-11-24 stsp free(wline);
7756 6458efa5 2020-11-24 stsp wline = NULL;
7757 6458efa5 2020-11-24 stsp n++;
7758 6458efa5 2020-11-24 stsp s->ndisplayed++;
7759 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
7760 6458efa5 2020-11-24 stsp
7761 6458efa5 2020-11-24 stsp limit--;
7762 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7763 6458efa5 2020-11-24 stsp }
7764 6458efa5 2020-11-24 stsp
7765 9b058f45 2022-06-30 mark view_border(view);
7766 6458efa5 2020-11-24 stsp return err;
7767 6458efa5 2020-11-24 stsp }
7768 6458efa5 2020-11-24 stsp
7769 6458efa5 2020-11-24 stsp static const struct got_error *
7770 49b24ee5 2022-07-03 mark browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
7771 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7772 c42c9805 2020-11-24 stsp {
7773 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7774 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
7775 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
7776 c42c9805 2020-11-24 stsp
7777 c42c9805 2020-11-24 stsp *new_view = NULL;
7778 c42c9805 2020-11-24 stsp
7779 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7780 c42c9805 2020-11-24 stsp if (err) {
7781 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7782 c42c9805 2020-11-24 stsp return err;
7783 c42c9805 2020-11-24 stsp else
7784 c42c9805 2020-11-24 stsp return NULL;
7785 c42c9805 2020-11-24 stsp }
7786 c42c9805 2020-11-24 stsp
7787 c42c9805 2020-11-24 stsp
7788 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
7789 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
7790 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
7791 c42c9805 2020-11-24 stsp goto done;
7792 c42c9805 2020-11-24 stsp }
7793 c42c9805 2020-11-24 stsp
7794 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
7795 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
7796 c42c9805 2020-11-24 stsp if (err)
7797 c42c9805 2020-11-24 stsp goto done;
7798 c42c9805 2020-11-24 stsp
7799 c42c9805 2020-11-24 stsp *new_view = tree_view;
7800 c42c9805 2020-11-24 stsp done:
7801 c42c9805 2020-11-24 stsp free(commit_id);
7802 c42c9805 2020-11-24 stsp return err;
7803 94b80cfa 2022-08-01 mark }
7804 94b80cfa 2022-08-01 mark
7805 94b80cfa 2022-08-01 mark static const struct got_error *
7806 94b80cfa 2022-08-01 mark ref_goto_line(struct tog_view *view, int nlines)
7807 94b80cfa 2022-08-01 mark {
7808 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
7809 94b80cfa 2022-08-01 mark struct tog_ref_view_state *s = &view->state.ref;
7810 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
7811 94b80cfa 2022-08-01 mark
7812 94b80cfa 2022-08-01 mark g = view->gline;
7813 94b80cfa 2022-08-01 mark view->gline = 0;
7814 94b80cfa 2022-08-01 mark
7815 94b80cfa 2022-08-01 mark if (g == 0)
7816 94b80cfa 2022-08-01 mark g = 1;
7817 94b80cfa 2022-08-01 mark else if (g > s->nrefs)
7818 94b80cfa 2022-08-01 mark g = s->nrefs;
7819 94b80cfa 2022-08-01 mark
7820 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
7821 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
7822 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
7823 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
7824 94b80cfa 2022-08-01 mark return NULL;
7825 94b80cfa 2022-08-01 mark }
7826 94b80cfa 2022-08-01 mark
7827 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
7828 94b80cfa 2022-08-01 mark err = ref_scroll_down(view, g - idx - 1);
7829 94b80cfa 2022-08-01 mark if (err)
7830 94b80cfa 2022-08-01 mark return err;
7831 94b80cfa 2022-08-01 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
7832 94b80cfa 2022-08-01 mark s->first_displayed_entry->idx + s->selected < g &&
7833 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1)
7834 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
7835 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
7836 94b80cfa 2022-08-01 mark ref_scroll_up(s, idx - g + 1);
7837 94b80cfa 2022-08-01 mark
7838 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
7839 94b80cfa 2022-08-01 mark s->selected = g - 1;
7840 94b80cfa 2022-08-01 mark
7841 94b80cfa 2022-08-01 mark return NULL;
7842 94b80cfa 2022-08-01 mark
7843 c42c9805 2020-11-24 stsp }
7844 94b80cfa 2022-08-01 mark
7845 c42c9805 2020-11-24 stsp static const struct got_error *
7846 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
7847 6458efa5 2020-11-24 stsp {
7848 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7849 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7850 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
7851 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 1;
7852 6458efa5 2020-11-24 stsp
7853 94b80cfa 2022-08-01 mark if (view->gline)
7854 94b80cfa 2022-08-01 mark return ref_goto_line(view, nscroll);
7855 94b80cfa 2022-08-01 mark
7856 6458efa5 2020-11-24 stsp switch (ch) {
7857 6458efa5 2020-11-24 stsp case 'i':
7858 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
7859 640cd7ff 2022-06-22 mark view->count = 0;
7860 7f66531d 2021-11-16 stsp break;
7861 b4996bee 2022-06-16 stsp case 'm':
7862 b4996bee 2022-06-16 stsp s->show_date = !s->show_date;
7863 640cd7ff 2022-06-22 mark view->count = 0;
7864 b4996bee 2022-06-16 stsp break;
7865 07a065fe 2021-11-20 stsp case 'o':
7866 7f66531d 2021-11-16 stsp s->sort_by_date = !s->sort_by_date;
7867 640cd7ff 2022-06-22 mark view->count = 0;
7868 50617b77 2021-11-20 stsp err = got_reflist_sort(&tog_refs, s->sort_by_date ?
7869 50617b77 2021-11-20 stsp got_ref_cmp_by_commit_timestamp_descending :
7870 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name, s->repo);
7871 50617b77 2021-11-20 stsp if (err)
7872 50617b77 2021-11-20 stsp break;
7873 50617b77 2021-11-20 stsp got_reflist_object_id_map_free(tog_refs_idmap);
7874 50617b77 2021-11-20 stsp err = got_reflist_object_id_map_create(&tog_refs_idmap,
7875 50617b77 2021-11-20 stsp &tog_refs, s->repo);
7876 7f66531d 2021-11-16 stsp if (err)
7877 7f66531d 2021-11-16 stsp break;
7878 7f66531d 2021-11-16 stsp ref_view_free_refs(s);
7879 7f66531d 2021-11-16 stsp err = ref_view_load_refs(s);
7880 6458efa5 2020-11-24 stsp break;
7881 6458efa5 2020-11-24 stsp case KEY_ENTER:
7882 6458efa5 2020-11-24 stsp case '\r':
7883 640cd7ff 2022-06-22 mark view->count = 0;
7884 6458efa5 2020-11-24 stsp if (!s->selected_entry)
7885 9b058f45 2022-06-30 mark break;
7886 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
7887 6458efa5 2020-11-24 stsp break;
7888 5e98fb33 2022-07-22 mark case 'T':
7889 640cd7ff 2022-06-22 mark view->count = 0;
7890 c42c9805 2020-11-24 stsp if (!s->selected_entry)
7891 c42c9805 2020-11-24 stsp break;
7892 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
7893 c42c9805 2020-11-24 stsp break;
7894 e4526bf5 2021-09-03 naddy case 'g':
7895 e4526bf5 2021-09-03 naddy case KEY_HOME:
7896 e4526bf5 2021-09-03 naddy s->selected = 0;
7897 640cd7ff 2022-06-22 mark view->count = 0;
7898 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7899 e4526bf5 2021-09-03 naddy break;
7900 e4526bf5 2021-09-03 naddy case 'G':
7901 9b058f45 2022-06-30 mark case KEY_END: {
7902 9b058f45 2022-06-30 mark int eos = view->nlines - 1;
7903 9b058f45 2022-06-30 mark
7904 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
7905 9b058f45 2022-06-30 mark --eos; /* border */
7906 e4526bf5 2021-09-03 naddy s->selected = 0;
7907 640cd7ff 2022-06-22 mark view->count = 0;
7908 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
7909 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
7910 e4526bf5 2021-09-03 naddy if (re == NULL)
7911 e4526bf5 2021-09-03 naddy break;
7912 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
7913 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
7914 e4526bf5 2021-09-03 naddy }
7915 e4526bf5 2021-09-03 naddy if (n > 0)
7916 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7917 e4526bf5 2021-09-03 naddy break;
7918 9b058f45 2022-06-30 mark }
7919 6458efa5 2020-11-24 stsp case 'k':
7920 6458efa5 2020-11-24 stsp case KEY_UP:
7921 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7922 6458efa5 2020-11-24 stsp if (s->selected > 0) {
7923 6458efa5 2020-11-24 stsp s->selected--;
7924 6458efa5 2020-11-24 stsp break;
7925 34ba6917 2020-11-30 stsp }
7926 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
7927 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
7928 640cd7ff 2022-06-22 mark view->count = 0;
7929 6458efa5 2020-11-24 stsp break;
7930 83cc4199 2022-06-13 stsp case CTRL('u'):
7931 33c3719a 2022-06-15 stsp case 'u':
7932 83cc4199 2022-06-13 stsp nscroll /= 2;
7933 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7934 6458efa5 2020-11-24 stsp case KEY_PPAGE:
7935 6458efa5 2020-11-24 stsp case CTRL('b'):
7936 61417565 2022-06-20 mark case 'b':
7937 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7938 83cc4199 2022-06-13 stsp s->selected -= MIN(nscroll, s->selected);
7939 83cc4199 2022-06-13 stsp ref_scroll_up(s, MAX(0, nscroll));
7940 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
7941 640cd7ff 2022-06-22 mark view->count = 0;
7942 6458efa5 2020-11-24 stsp break;
7943 6458efa5 2020-11-24 stsp case 'j':
7944 6458efa5 2020-11-24 stsp case KEY_DOWN:
7945 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7946 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
7947 6458efa5 2020-11-24 stsp s->selected++;
7948 6458efa5 2020-11-24 stsp break;
7949 6458efa5 2020-11-24 stsp }
7950 640cd7ff 2022-06-22 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
7951 6458efa5 2020-11-24 stsp /* can't scroll any further */
7952 640cd7ff 2022-06-22 mark view->count = 0;
7953 6458efa5 2020-11-24 stsp break;
7954 640cd7ff 2022-06-22 mark }
7955 9b058f45 2022-06-30 mark ref_scroll_down(view, 1);
7956 6458efa5 2020-11-24 stsp break;
7957 83cc4199 2022-06-13 stsp case CTRL('d'):
7958 33c3719a 2022-06-15 stsp case 'd':
7959 83cc4199 2022-06-13 stsp nscroll /= 2;
7960 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7961 6458efa5 2020-11-24 stsp case KEY_NPAGE:
7962 6458efa5 2020-11-24 stsp case CTRL('f'):
7963 61417565 2022-06-20 mark case 'f':
7964 48bb96f0 2022-06-20 naddy case ' ':
7965 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
7966 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
7967 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
7968 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7969 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7970 640cd7ff 2022-06-22 mark if (view->count > 1 && s->selected < s->ndisplayed - 1)
7971 640cd7ff 2022-06-22 mark s->selected += s->ndisplayed - s->selected - 1;
7972 640cd7ff 2022-06-22 mark view->count = 0;
7973 6458efa5 2020-11-24 stsp break;
7974 6458efa5 2020-11-24 stsp }
7975 9b058f45 2022-06-30 mark ref_scroll_down(view, nscroll);
7976 6458efa5 2020-11-24 stsp break;
7977 6458efa5 2020-11-24 stsp case CTRL('l'):
7978 640cd7ff 2022-06-22 mark view->count = 0;
7979 8924d611 2020-12-26 stsp tog_free_refs();
7980 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, s->sort_by_date);
7981 8924d611 2020-12-26 stsp if (err)
7982 8924d611 2020-12-26 stsp break;
7983 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7984 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7985 6458efa5 2020-11-24 stsp break;
7986 6458efa5 2020-11-24 stsp case KEY_RESIZE:
7987 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
7988 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
7989 6458efa5 2020-11-24 stsp break;
7990 6458efa5 2020-11-24 stsp default:
7991 640cd7ff 2022-06-22 mark view->count = 0;
7992 6458efa5 2020-11-24 stsp break;
7993 6458efa5 2020-11-24 stsp }
7994 6458efa5 2020-11-24 stsp
7995 6458efa5 2020-11-24 stsp return err;
7996 6458efa5 2020-11-24 stsp }
7997 6458efa5 2020-11-24 stsp
7998 6458efa5 2020-11-24 stsp __dead static void
7999 6458efa5 2020-11-24 stsp usage_ref(void)
8000 6458efa5 2020-11-24 stsp {
8001 6458efa5 2020-11-24 stsp endwin();
8002 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8003 6458efa5 2020-11-24 stsp getprogname());
8004 6458efa5 2020-11-24 stsp exit(1);
8005 6458efa5 2020-11-24 stsp }
8006 6458efa5 2020-11-24 stsp
8007 6458efa5 2020-11-24 stsp static const struct got_error *
8008 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8009 6458efa5 2020-11-24 stsp {
8010 6458efa5 2020-11-24 stsp const struct got_error *error;
8011 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8012 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8013 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8014 6458efa5 2020-11-24 stsp int ch;
8015 6458efa5 2020-11-24 stsp struct tog_view *view;
8016 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8017 6458efa5 2020-11-24 stsp
8018 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8019 6458efa5 2020-11-24 stsp switch (ch) {
8020 6458efa5 2020-11-24 stsp case 'r':
8021 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8022 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8023 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8024 6458efa5 2020-11-24 stsp optarg);
8025 6458efa5 2020-11-24 stsp break;
8026 6458efa5 2020-11-24 stsp default:
8027 e99e2d15 2020-11-24 naddy usage_ref();
8028 6458efa5 2020-11-24 stsp /* NOTREACHED */
8029 6458efa5 2020-11-24 stsp }
8030 6458efa5 2020-11-24 stsp }
8031 6458efa5 2020-11-24 stsp
8032 6458efa5 2020-11-24 stsp argc -= optind;
8033 6458efa5 2020-11-24 stsp argv += optind;
8034 6458efa5 2020-11-24 stsp
8035 6458efa5 2020-11-24 stsp if (argc > 1)
8036 e99e2d15 2020-11-24 naddy usage_ref();
8037 0ae84acc 2022-06-15 tracey
8038 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8039 0ae84acc 2022-06-15 tracey if (error != NULL)
8040 0ae84acc 2022-06-15 tracey goto done;
8041 6458efa5 2020-11-24 stsp
8042 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8043 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8044 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8045 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8046 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8047 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8048 c156c7a4 2020-12-18 stsp goto done;
8049 6458efa5 2020-11-24 stsp if (worktree)
8050 6458efa5 2020-11-24 stsp repo_path =
8051 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8052 6458efa5 2020-11-24 stsp else
8053 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8054 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8055 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8056 c156c7a4 2020-12-18 stsp goto done;
8057 c156c7a4 2020-12-18 stsp }
8058 6458efa5 2020-11-24 stsp }
8059 6458efa5 2020-11-24 stsp
8060 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8061 6458efa5 2020-11-24 stsp if (error != NULL)
8062 6458efa5 2020-11-24 stsp goto done;
8063 6458efa5 2020-11-24 stsp
8064 6458efa5 2020-11-24 stsp init_curses();
8065 6458efa5 2020-11-24 stsp
8066 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8067 51a10b52 2020-12-26 stsp if (error)
8068 51a10b52 2020-12-26 stsp goto done;
8069 51a10b52 2020-12-26 stsp
8070 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8071 6458efa5 2020-11-24 stsp if (error)
8072 6458efa5 2020-11-24 stsp goto done;
8073 6458efa5 2020-11-24 stsp
8074 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8075 6458efa5 2020-11-24 stsp if (view == NULL) {
8076 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8077 6458efa5 2020-11-24 stsp goto done;
8078 6458efa5 2020-11-24 stsp }
8079 6458efa5 2020-11-24 stsp
8080 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8081 6458efa5 2020-11-24 stsp if (error)
8082 6458efa5 2020-11-24 stsp goto done;
8083 6458efa5 2020-11-24 stsp
8084 6458efa5 2020-11-24 stsp if (worktree) {
8085 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8086 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8087 6458efa5 2020-11-24 stsp worktree = NULL;
8088 6458efa5 2020-11-24 stsp }
8089 6458efa5 2020-11-24 stsp error = view_loop(view);
8090 6458efa5 2020-11-24 stsp done:
8091 6458efa5 2020-11-24 stsp free(repo_path);
8092 6458efa5 2020-11-24 stsp free(cwd);
8093 1d0f4054 2021-06-17 stsp if (repo) {
8094 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8095 1d0f4054 2021-06-17 stsp if (close_err)
8096 1d0f4054 2021-06-17 stsp error = close_err;
8097 1d0f4054 2021-06-17 stsp }
8098 0ae84acc 2022-06-15 tracey if (pack_fds) {
8099 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8100 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8101 0ae84acc 2022-06-15 tracey if (error == NULL)
8102 0ae84acc 2022-06-15 tracey error = pack_err;
8103 0ae84acc 2022-06-15 tracey }
8104 51a10b52 2020-12-26 stsp tog_free_refs();
8105 6458efa5 2020-11-24 stsp return error;
8106 6458efa5 2020-11-24 stsp }
8107 6458efa5 2020-11-24 stsp
8108 136e2bd4 2022-07-23 mark static const struct got_error *
8109 136e2bd4 2022-07-23 mark view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8110 136e2bd4 2022-07-23 mark enum tog_view_type request, int y, int x)
8111 136e2bd4 2022-07-23 mark {
8112 136e2bd4 2022-07-23 mark const struct got_error *err = NULL;
8113 136e2bd4 2022-07-23 mark
8114 136e2bd4 2022-07-23 mark *new_view = NULL;
8115 136e2bd4 2022-07-23 mark
8116 136e2bd4 2022-07-23 mark switch (request) {
8117 136e2bd4 2022-07-23 mark case TOG_VIEW_DIFF:
8118 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG) {
8119 136e2bd4 2022-07-23 mark struct tog_log_view_state *s = &view->state.log;
8120 136e2bd4 2022-07-23 mark
8121 136e2bd4 2022-07-23 mark err = open_diff_view_for_commit(new_view, y, x,
8122 136e2bd4 2022-07-23 mark s->selected_entry->commit, s->selected_entry->id,
8123 136e2bd4 2022-07-23 mark view, s->repo);
8124 136e2bd4 2022-07-23 mark } else
8125 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8126 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8127 136e2bd4 2022-07-23 mark break;
8128 136e2bd4 2022-07-23 mark case TOG_VIEW_BLAME:
8129 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_TREE) {
8130 136e2bd4 2022-07-23 mark struct tog_tree_view_state *s = &view->state.tree;
8131 136e2bd4 2022-07-23 mark
8132 136e2bd4 2022-07-23 mark err = blame_tree_entry(new_view, y, x,
8133 136e2bd4 2022-07-23 mark s->selected_entry, &s->parents, s->commit_id,
8134 136e2bd4 2022-07-23 mark s->repo);
8135 136e2bd4 2022-07-23 mark } else
8136 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8137 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8138 136e2bd4 2022-07-23 mark break;
8139 136e2bd4 2022-07-23 mark case TOG_VIEW_LOG:
8140 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_BLAME)
8141 136e2bd4 2022-07-23 mark err = log_annotated_line(new_view, y, x,
8142 136e2bd4 2022-07-23 mark view->state.blame.repo, view->state.blame.id_to_log);
8143 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8144 136e2bd4 2022-07-23 mark err = log_selected_tree_entry(new_view, y, x,
8145 136e2bd4 2022-07-23 mark &view->state.tree);
8146 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8147 136e2bd4 2022-07-23 mark err = log_ref_entry(new_view, y, x,
8148 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8149 136e2bd4 2022-07-23 mark view->state.ref.repo);
8150 136e2bd4 2022-07-23 mark else
8151 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8152 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8153 136e2bd4 2022-07-23 mark break;
8154 136e2bd4 2022-07-23 mark case TOG_VIEW_TREE:
8155 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8156 136e2bd4 2022-07-23 mark err = browse_commit_tree(new_view, y, x,
8157 136e2bd4 2022-07-23 mark view->state.log.selected_entry,
8158 136e2bd4 2022-07-23 mark view->state.log.in_repo_path,
8159 136e2bd4 2022-07-23 mark view->state.log.head_ref_name,
8160 136e2bd4 2022-07-23 mark view->state.log.repo);
8161 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8162 136e2bd4 2022-07-23 mark err = browse_ref_tree(new_view, y, x,
8163 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8164 136e2bd4 2022-07-23 mark view->state.ref.repo);
8165 136e2bd4 2022-07-23 mark else
8166 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8167 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8168 136e2bd4 2022-07-23 mark break;
8169 136e2bd4 2022-07-23 mark case TOG_VIEW_REF:
8170 136e2bd4 2022-07-23 mark *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
8171 136e2bd4 2022-07-23 mark if (*new_view == NULL)
8172 136e2bd4 2022-07-23 mark return got_error_from_errno("view_open");
8173 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8174 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.log.repo);
8175 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8176 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.tree.repo);
8177 136e2bd4 2022-07-23 mark else
8178 136e2bd4 2022-07-23 mark err = got_error_msg(GOT_ERR_NOT_IMPL,
8179 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8180 136e2bd4 2022-07-23 mark if (err)
8181 136e2bd4 2022-07-23 mark view_close(*new_view);
8182 136e2bd4 2022-07-23 mark break;
8183 136e2bd4 2022-07-23 mark default:
8184 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
8185 136e2bd4 2022-07-23 mark }
8186 136e2bd4 2022-07-23 mark
8187 136e2bd4 2022-07-23 mark return err;
8188 136e2bd4 2022-07-23 mark }
8189 136e2bd4 2022-07-23 mark
8190 9b058f45 2022-06-30 mark /*
8191 9b058f45 2022-06-30 mark * If view was scrolled down to move the selected line into view when opening a
8192 9b058f45 2022-06-30 mark * horizontal split, scroll back up when closing the split/toggling fullscreen.
8193 9b058f45 2022-06-30 mark */
8194 6458efa5 2020-11-24 stsp static void
8195 9b058f45 2022-06-30 mark offset_selection_up(struct tog_view *view)
8196 9b058f45 2022-06-30 mark {
8197 9b058f45 2022-06-30 mark switch (view->type) {
8198 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
8199 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
8200 9b058f45 2022-06-30 mark if (s->first_displayed_line == 1) {
8201 9b058f45 2022-06-30 mark s->selected_line = MAX(s->selected_line - view->offset,
8202 9b058f45 2022-06-30 mark 1);
8203 9b058f45 2022-06-30 mark break;
8204 9b058f45 2022-06-30 mark }
8205 9b058f45 2022-06-30 mark if (s->first_displayed_line > view->offset)
8206 9b058f45 2022-06-30 mark s->first_displayed_line -= view->offset;
8207 9b058f45 2022-06-30 mark else
8208 9b058f45 2022-06-30 mark s->first_displayed_line = 1;
8209 9b058f45 2022-06-30 mark s->selected_line += view->offset;
8210 9b058f45 2022-06-30 mark break;
8211 9b058f45 2022-06-30 mark }
8212 9b058f45 2022-06-30 mark case TOG_VIEW_LOG:
8213 9b058f45 2022-06-30 mark log_scroll_up(&view->state.log, view->offset);
8214 9b058f45 2022-06-30 mark view->state.log.selected += view->offset;
8215 9b058f45 2022-06-30 mark break;
8216 9b058f45 2022-06-30 mark case TOG_VIEW_REF:
8217 9b058f45 2022-06-30 mark ref_scroll_up(&view->state.ref, view->offset);
8218 9b058f45 2022-06-30 mark view->state.ref.selected += view->offset;
8219 9b058f45 2022-06-30 mark break;
8220 9b058f45 2022-06-30 mark case TOG_VIEW_TREE:
8221 9b058f45 2022-06-30 mark tree_scroll_up(&view->state.tree, view->offset);
8222 9b058f45 2022-06-30 mark view->state.tree.selected += view->offset;
8223 9b058f45 2022-06-30 mark break;
8224 9b058f45 2022-06-30 mark default:
8225 9b058f45 2022-06-30 mark break;
8226 9b058f45 2022-06-30 mark }
8227 9b058f45 2022-06-30 mark
8228 9b058f45 2022-06-30 mark view->offset = 0;
8229 9b058f45 2022-06-30 mark }
8230 9b058f45 2022-06-30 mark
8231 9b058f45 2022-06-30 mark /*
8232 9b058f45 2022-06-30 mark * If the selected line is in the section of screen covered by the bottom split,
8233 9b058f45 2022-06-30 mark * scroll down offset lines to move it into view and index its new position.
8234 9b058f45 2022-06-30 mark */
8235 9b058f45 2022-06-30 mark static const struct got_error *
8236 9b058f45 2022-06-30 mark offset_selection_down(struct tog_view *view)
8237 9b058f45 2022-06-30 mark {
8238 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
8239 9b058f45 2022-06-30 mark const struct got_error *(*scrolld)(struct tog_view *, int);
8240 9b058f45 2022-06-30 mark int *selected = NULL;
8241 9b058f45 2022-06-30 mark int header, offset;
8242 9b058f45 2022-06-30 mark
8243 9b058f45 2022-06-30 mark switch (view->type) {
8244 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
8245 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
8246 9b058f45 2022-06-30 mark header = 3;
8247 9b058f45 2022-06-30 mark scrolld = NULL;
8248 9b058f45 2022-06-30 mark if (s->selected_line > view->nlines - header) {
8249 9b058f45 2022-06-30 mark offset = abs(view->nlines - s->selected_line - header);
8250 9b058f45 2022-06-30 mark s->first_displayed_line += offset;
8251 9b058f45 2022-06-30 mark s->selected_line -= offset;
8252 9b058f45 2022-06-30 mark view->offset = offset;
8253 9b058f45 2022-06-30 mark }
8254 9b058f45 2022-06-30 mark break;
8255 9b058f45 2022-06-30 mark }
8256 9b058f45 2022-06-30 mark case TOG_VIEW_LOG: {
8257 9b058f45 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
8258 9b058f45 2022-06-30 mark scrolld = &log_scroll_down;
8259 d2366e29 2022-07-07 mark header = view_is_parent_view(view) ? 3 : 2;
8260 9b058f45 2022-06-30 mark selected = &s->selected;
8261 9b058f45 2022-06-30 mark break;
8262 9b058f45 2022-06-30 mark }
8263 9b058f45 2022-06-30 mark case TOG_VIEW_REF: {
8264 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
8265 9b058f45 2022-06-30 mark scrolld = &ref_scroll_down;
8266 9b058f45 2022-06-30 mark header = 3;
8267 9b058f45 2022-06-30 mark selected = &s->selected;
8268 9b058f45 2022-06-30 mark break;
8269 9b058f45 2022-06-30 mark }
8270 9b058f45 2022-06-30 mark case TOG_VIEW_TREE: {
8271 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
8272 9b058f45 2022-06-30 mark scrolld = &tree_scroll_down;
8273 9b058f45 2022-06-30 mark header = 5;
8274 9b058f45 2022-06-30 mark selected = &s->selected;
8275 9b058f45 2022-06-30 mark break;
8276 9b058f45 2022-06-30 mark }
8277 9b058f45 2022-06-30 mark default:
8278 9b058f45 2022-06-30 mark selected = NULL;
8279 9b058f45 2022-06-30 mark scrolld = NULL;
8280 9b058f45 2022-06-30 mark header = 0;
8281 9b058f45 2022-06-30 mark break;
8282 9b058f45 2022-06-30 mark }
8283 9b058f45 2022-06-30 mark
8284 9b058f45 2022-06-30 mark if (selected && *selected > view->nlines - header) {
8285 9b058f45 2022-06-30 mark offset = abs(view->nlines - *selected - header);
8286 9b058f45 2022-06-30 mark view->offset = offset;
8287 9b058f45 2022-06-30 mark if (scrolld && offset) {
8288 9b058f45 2022-06-30 mark err = scrolld(view, offset);
8289 9b058f45 2022-06-30 mark *selected -= offset;
8290 9b058f45 2022-06-30 mark }
8291 9b058f45 2022-06-30 mark }
8292 9b058f45 2022-06-30 mark
8293 9b058f45 2022-06-30 mark return err;
8294 9b058f45 2022-06-30 mark }
8295 9b058f45 2022-06-30 mark
8296 9b058f45 2022-06-30 mark static void
8297 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
8298 ce5b7c56 2019-07-09 stsp {
8299 6059809a 2020-12-17 stsp size_t i;
8300 9f7d7167 2018-04-29 stsp
8301 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
8302 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
8303 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = &tog_commands[i];
8304 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
8305 ce5b7c56 2019-07-09 stsp }
8306 6879ba42 2020-10-01 naddy fputc('\n', fp);
8307 ce5b7c56 2019-07-09 stsp }
8308 ce5b7c56 2019-07-09 stsp
8309 4ed7e80c 2018-05-20 stsp __dead static void
8310 6879ba42 2020-10-01 naddy usage(int hflag, int status)
8311 9f7d7167 2018-04-29 stsp {
8312 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
8313 6879ba42 2020-10-01 naddy
8314 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] [command] [arg ...]\n",
8315 6879ba42 2020-10-01 naddy getprogname());
8316 6879ba42 2020-10-01 naddy if (hflag) {
8317 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
8318 6879ba42 2020-10-01 naddy list_commands(fp);
8319 ee85c5e8 2020-02-29 stsp }
8320 6879ba42 2020-10-01 naddy exit(status);
8321 9f7d7167 2018-04-29 stsp }
8322 9f7d7167 2018-04-29 stsp
8323 c2301be8 2018-04-30 stsp static char **
8324 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
8325 c2301be8 2018-04-30 stsp {
8326 ee85c5e8 2020-02-29 stsp va_list ap;
8327 c2301be8 2018-04-30 stsp char **argv;
8328 ee85c5e8 2020-02-29 stsp int i;
8329 c2301be8 2018-04-30 stsp
8330 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
8331 ee85c5e8 2020-02-29 stsp
8332 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
8333 c2301be8 2018-04-30 stsp if (argv == NULL)
8334 c2301be8 2018-04-30 stsp err(1, "calloc");
8335 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
8336 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
8337 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
8338 e10c916e 2019-09-15 hiltjo err(1, "strdup");
8339 c2301be8 2018-04-30 stsp }
8340 c2301be8 2018-04-30 stsp
8341 ee85c5e8 2020-02-29 stsp va_end(ap);
8342 c2301be8 2018-04-30 stsp return argv;
8343 ee85c5e8 2020-02-29 stsp }
8344 ee85c5e8 2020-02-29 stsp
8345 ee85c5e8 2020-02-29 stsp /*
8346 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
8347 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
8348 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
8349 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
8350 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
8351 ee85c5e8 2020-02-29 stsp */
8352 ee85c5e8 2020-02-29 stsp static const struct got_error *
8353 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
8354 ee85c5e8 2020-02-29 stsp {
8355 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
8356 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
8357 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
8358 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
8359 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
8360 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
8361 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
8362 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
8363 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8364 84de9106 2020-12-26 stsp
8365 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
8366 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
8367 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
8368 ee85c5e8 2020-02-29 stsp
8369 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8370 0ae84acc 2022-06-15 tracey if (error != NULL)
8371 0ae84acc 2022-06-15 tracey goto done;
8372 0ae84acc 2022-06-15 tracey
8373 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
8374 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8375 ee85c5e8 2020-02-29 stsp goto done;
8376 ee85c5e8 2020-02-29 stsp
8377 ee85c5e8 2020-02-29 stsp if (worktree)
8378 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
8379 ee85c5e8 2020-02-29 stsp else
8380 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
8381 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
8382 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
8383 ee85c5e8 2020-02-29 stsp goto done;
8384 ee85c5e8 2020-02-29 stsp }
8385 ee85c5e8 2020-02-29 stsp
8386 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8387 ee85c5e8 2020-02-29 stsp if (error != NULL)
8388 ee85c5e8 2020-02-29 stsp goto done;
8389 ee85c5e8 2020-02-29 stsp
8390 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
8391 ee85c5e8 2020-02-29 stsp repo, worktree);
8392 ee85c5e8 2020-02-29 stsp if (error)
8393 ee85c5e8 2020-02-29 stsp goto done;
8394 ee85c5e8 2020-02-29 stsp
8395 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8396 84de9106 2020-12-26 stsp if (error)
8397 84de9106 2020-12-26 stsp goto done;
8398 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
8399 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
8400 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8401 ee85c5e8 2020-02-29 stsp if (error)
8402 ee85c5e8 2020-02-29 stsp goto done;
8403 ee85c5e8 2020-02-29 stsp
8404 ee85c5e8 2020-02-29 stsp if (worktree) {
8405 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
8406 ee85c5e8 2020-02-29 stsp worktree = NULL;
8407 ee85c5e8 2020-02-29 stsp }
8408 ee85c5e8 2020-02-29 stsp
8409 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
8410 a44927cc 2022-04-07 stsp if (error)
8411 a44927cc 2022-04-07 stsp goto done;
8412 a44927cc 2022-04-07 stsp
8413 a44927cc 2022-04-07 stsp error = got_object_id_by_path(&id, repo, commit, in_repo_path);
8414 ee85c5e8 2020-02-29 stsp if (error) {
8415 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
8416 ee85c5e8 2020-02-29 stsp goto done;
8417 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
8418 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
8419 6879ba42 2020-10-01 naddy usage(1, 1);
8420 ee85c5e8 2020-02-29 stsp /* not reached */
8421 ee85c5e8 2020-02-29 stsp }
8422 ee85c5e8 2020-02-29 stsp
8423 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
8424 ee85c5e8 2020-02-29 stsp if (error)
8425 ee85c5e8 2020-02-29 stsp goto done;
8426 ee85c5e8 2020-02-29 stsp
8427 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
8428 ee85c5e8 2020-02-29 stsp argc = 4;
8429 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
8430 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
8431 ee85c5e8 2020-02-29 stsp done:
8432 1d0f4054 2021-06-17 stsp if (repo) {
8433 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
8434 1d0f4054 2021-06-17 stsp if (error == NULL)
8435 1d0f4054 2021-06-17 stsp error = close_err;
8436 1d0f4054 2021-06-17 stsp }
8437 a44927cc 2022-04-07 stsp if (commit)
8438 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
8439 ee85c5e8 2020-02-29 stsp if (worktree)
8440 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
8441 0ae84acc 2022-06-15 tracey if (pack_fds) {
8442 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8443 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8444 0ae84acc 2022-06-15 tracey if (error == NULL)
8445 0ae84acc 2022-06-15 tracey error = pack_err;
8446 0ae84acc 2022-06-15 tracey }
8447 ee85c5e8 2020-02-29 stsp free(id);
8448 ee85c5e8 2020-02-29 stsp free(commit_id_str);
8449 ee85c5e8 2020-02-29 stsp free(commit_id);
8450 ee85c5e8 2020-02-29 stsp free(cwd);
8451 ee85c5e8 2020-02-29 stsp free(repo_path);
8452 ee85c5e8 2020-02-29 stsp free(in_repo_path);
8453 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
8454 ee85c5e8 2020-02-29 stsp int i;
8455 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
8456 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
8457 ee85c5e8 2020-02-29 stsp free(cmd_argv);
8458 ee85c5e8 2020-02-29 stsp }
8459 87670572 2020-12-26 naddy tog_free_refs();
8460 ee85c5e8 2020-02-29 stsp return error;
8461 c2301be8 2018-04-30 stsp }
8462 c2301be8 2018-04-30 stsp
8463 9f7d7167 2018-04-29 stsp int
8464 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
8465 9f7d7167 2018-04-29 stsp {
8466 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
8467 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
8468 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
8469 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
8470 3e166534 2022-02-16 naddy static const struct option longopts[] = {
8471 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
8472 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
8473 83cd27f8 2020-01-13 stsp };
8474 917d79a7 2022-07-01 stsp char *diff_algo_str = NULL;
8475 9f7d7167 2018-04-29 stsp
8476 3264c09c 2022-09-06 mark if (!isatty(STDIN_FILENO))
8477 3264c09c 2022-09-06 mark errx(1, "standard input is not a tty");
8478 3264c09c 2022-09-06 mark
8479 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
8480 9f7d7167 2018-04-29 stsp
8481 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
8482 9f7d7167 2018-04-29 stsp switch (ch) {
8483 9f7d7167 2018-04-29 stsp case 'h':
8484 9f7d7167 2018-04-29 stsp hflag = 1;
8485 9f7d7167 2018-04-29 stsp break;
8486 53ccebc2 2019-07-30 stsp case 'V':
8487 53ccebc2 2019-07-30 stsp Vflag = 1;
8488 53ccebc2 2019-07-30 stsp break;
8489 9f7d7167 2018-04-29 stsp default:
8490 6879ba42 2020-10-01 naddy usage(hflag, 1);
8491 9f7d7167 2018-04-29 stsp /* NOTREACHED */
8492 9f7d7167 2018-04-29 stsp }
8493 9f7d7167 2018-04-29 stsp }
8494 9f7d7167 2018-04-29 stsp
8495 9f7d7167 2018-04-29 stsp argc -= optind;
8496 9f7d7167 2018-04-29 stsp argv += optind;
8497 9814e6a3 2020-09-27 naddy optind = 1;
8498 c2301be8 2018-04-30 stsp optreset = 1;
8499 9f7d7167 2018-04-29 stsp
8500 53ccebc2 2019-07-30 stsp if (Vflag) {
8501 53ccebc2 2019-07-30 stsp got_version_print_str();
8502 6879ba42 2020-10-01 naddy return 0;
8503 53ccebc2 2019-07-30 stsp }
8504 4010e238 2020-12-04 stsp
8505 4010e238 2020-12-04 stsp #ifndef PROFILE
8506 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
8507 4010e238 2020-12-04 stsp NULL) == -1)
8508 4010e238 2020-12-04 stsp err(1, "pledge");
8509 4010e238 2020-12-04 stsp #endif
8510 53ccebc2 2019-07-30 stsp
8511 c2301be8 2018-04-30 stsp if (argc == 0) {
8512 f29d3e89 2018-06-23 stsp if (hflag)
8513 6879ba42 2020-10-01 naddy usage(hflag, 0);
8514 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
8515 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
8516 c2301be8 2018-04-30 stsp argc = 1;
8517 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
8518 c2301be8 2018-04-30 stsp } else {
8519 6059809a 2020-12-17 stsp size_t i;
8520 9f7d7167 2018-04-29 stsp
8521 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
8522 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
8523 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
8524 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
8525 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
8526 9f7d7167 2018-04-29 stsp break;
8527 9f7d7167 2018-04-29 stsp }
8528 9f7d7167 2018-04-29 stsp }
8529 ee85c5e8 2020-02-29 stsp }
8530 3642c4c6 2019-07-09 stsp
8531 917d79a7 2022-07-01 stsp diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
8532 917d79a7 2022-07-01 stsp if (diff_algo_str) {
8533 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "patience") == 0)
8534 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
8535 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "myers") == 0)
8536 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
8537 917d79a7 2022-07-01 stsp }
8538 917d79a7 2022-07-01 stsp
8539 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
8540 ee85c5e8 2020-02-29 stsp if (argc != 1)
8541 6879ba42 2020-10-01 naddy usage(0, 1);
8542 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
8543 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
8544 ee85c5e8 2020-02-29 stsp } else {
8545 ee85c5e8 2020-02-29 stsp if (hflag)
8546 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
8547 ee85c5e8 2020-02-29 stsp else
8548 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
8549 9f7d7167 2018-04-29 stsp }
8550 9f7d7167 2018-04-29 stsp
8551 9f7d7167 2018-04-29 stsp endwin();
8552 b46c1e04 2020-09-20 naddy putchar('\n');
8553 a2f4a359 2020-02-28 stsp if (cmd_argv) {
8554 a2f4a359 2020-02-28 stsp int i;
8555 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
8556 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
8557 a2f4a359 2020-02-28 stsp free(cmd_argv);
8558 a2f4a359 2020-02-28 stsp }
8559 a2f4a359 2020-02-28 stsp
8560 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
8561 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
8562 9f7d7167 2018-04-29 stsp return 0;
8563 9f7d7167 2018-04-29 stsp }