Blame


1 9f7d7167 2018-04-29 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 9f7d7167 2018-04-29 stsp *
4 9f7d7167 2018-04-29 stsp * Permission to use, copy, modify, and distribute this software for any
5 9f7d7167 2018-04-29 stsp * purpose with or without fee is hereby granted, provided that the above
6 9f7d7167 2018-04-29 stsp * copyright notice and this permission notice appear in all copies.
7 9f7d7167 2018-04-29 stsp *
8 9f7d7167 2018-04-29 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 9f7d7167 2018-04-29 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 9f7d7167 2018-04-29 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 9f7d7167 2018-04-29 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 9f7d7167 2018-04-29 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 9f7d7167 2018-04-29 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 9f7d7167 2018-04-29 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 9f7d7167 2018-04-29 stsp */
16 9f7d7167 2018-04-29 stsp
17 80ddbec8 2018-04-29 stsp #include <sys/queue.h>
18 ffd1d5e5 2018-06-23 stsp #include <sys/stat.h>
19 25791caa 2018-10-24 stsp #include <sys/ioctl.h>
20 80ddbec8 2018-04-29 stsp
21 0d6c6ee3 2020-05-20 stsp #include <ctype.h>
22 31120ada 2018-04-30 stsp #include <errno.h>
23 6062e8ea 2021-09-21 stsp #define _XOPEN_SOURCE_EXTENDED /* for ncurses wide-character functions */
24 9f7d7167 2018-04-29 stsp #include <curses.h>
25 9f7d7167 2018-04-29 stsp #include <panel.h>
26 9f7d7167 2018-04-29 stsp #include <locale.h>
27 d7b5a0e8 2022-04-20 stsp #include <sha1.h>
28 61266923 2020-01-14 stsp #include <signal.h>
29 9f7d7167 2018-04-29 stsp #include <stdlib.h>
30 ee85c5e8 2020-02-29 stsp #include <stdarg.h>
31 26ed57b2 2018-05-19 stsp #include <stdio.h>
32 9f7d7167 2018-04-29 stsp #include <getopt.h>
33 9f7d7167 2018-04-29 stsp #include <string.h>
34 9f7d7167 2018-04-29 stsp #include <err.h>
35 80ddbec8 2018-04-29 stsp #include <unistd.h>
36 26ed57b2 2018-05-19 stsp #include <limits.h>
37 61e69b96 2018-05-20 stsp #include <wchar.h>
38 788c352e 2018-06-16 stsp #include <time.h>
39 84451b3e 2018-07-10 stsp #include <pthread.h>
40 5036bf37 2018-09-24 stsp #include <libgen.h>
41 60493ae3 2019-06-20 stsp #include <regex.h>
42 3da8ef85 2021-09-21 stsp #include <sched.h>
43 9f7d7167 2018-04-29 stsp
44 53ccebc2 2019-07-30 stsp #include "got_version.h"
45 9f7d7167 2018-04-29 stsp #include "got_error.h"
46 80ddbec8 2018-04-29 stsp #include "got_object.h"
47 80ddbec8 2018-04-29 stsp #include "got_reference.h"
48 80ddbec8 2018-04-29 stsp #include "got_repository.h"
49 80ddbec8 2018-04-29 stsp #include "got_diff.h"
50 511a516b 2018-05-19 stsp #include "got_opentemp.h"
51 00dfcb92 2018-06-11 stsp #include "got_utf8.h"
52 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
53 6fb7cd11 2019-08-22 stsp #include "got_commit_graph.h"
54 a70480e0 2018-06-23 stsp #include "got_blame.h"
55 c2db6724 2019-01-04 stsp #include "got_privsep.h"
56 1dd54920 2019-05-11 stsp #include "got_path.h"
57 b7165be3 2019-02-05 stsp #include "got_worktree.h"
58 9f7d7167 2018-04-29 stsp
59 881b2d3e 2018-04-30 stsp #ifndef MIN
60 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
61 881b2d3e 2018-04-30 stsp #endif
62 881b2d3e 2018-04-30 stsp
63 2bd27830 2018-10-22 stsp #ifndef MAX
64 2bd27830 2018-10-22 stsp #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
65 2bd27830 2018-10-22 stsp #endif
66 2bd27830 2018-10-22 stsp
67 a4292ac5 2019-05-12 jcs #define CTRL(x) ((x) & 0x1f)
68 2bd27830 2018-10-22 stsp
69 9f7d7167 2018-04-29 stsp #ifndef nitems
70 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
71 9f7d7167 2018-04-29 stsp #endif
72 9f7d7167 2018-04-29 stsp
73 9f7d7167 2018-04-29 stsp struct tog_cmd {
74 c2301be8 2018-04-30 stsp const char *name;
75 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
76 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
77 9f7d7167 2018-04-29 stsp };
78 9f7d7167 2018-04-29 stsp
79 6879ba42 2020-10-01 naddy __dead static void usage(int, int);
80 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
81 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
82 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
83 ffd1d5e5 2018-06-23 stsp __dead static void usage_tree(void);
84 6458efa5 2020-11-24 stsp __dead static void usage_ref(void);
85 9f7d7167 2018-04-29 stsp
86 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
87 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
88 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
89 ffd1d5e5 2018-06-23 stsp static const struct got_error* cmd_tree(int, char *[]);
90 6458efa5 2020-11-24 stsp static const struct got_error* cmd_ref(int, char *[]);
91 9f7d7167 2018-04-29 stsp
92 3e166534 2022-02-16 naddy static const struct tog_cmd tog_commands[] = {
93 5e070240 2019-06-22 stsp { "log", cmd_log, usage_log },
94 5e070240 2019-06-22 stsp { "diff", cmd_diff, usage_diff },
95 5e070240 2019-06-22 stsp { "blame", cmd_blame, usage_blame },
96 5e070240 2019-06-22 stsp { "tree", cmd_tree, usage_tree },
97 6458efa5 2020-11-24 stsp { "ref", cmd_ref, usage_ref },
98 9f7d7167 2018-04-29 stsp };
99 9f7d7167 2018-04-29 stsp
100 d6b05b5b 2018-08-04 stsp enum tog_view_type {
101 d6b05b5b 2018-08-04 stsp TOG_VIEW_DIFF,
102 d6b05b5b 2018-08-04 stsp TOG_VIEW_LOG,
103 ad80ab7b 2018-08-04 stsp TOG_VIEW_BLAME,
104 6458efa5 2020-11-24 stsp TOG_VIEW_TREE,
105 6458efa5 2020-11-24 stsp TOG_VIEW_REF,
106 d6b05b5b 2018-08-04 stsp };
107 c3e9aa98 2019-05-13 jcs
108 9b058f45 2022-06-30 mark enum tog_view_mode {
109 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_NONE,
110 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_VERT,
111 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_HRZN
112 9b058f45 2022-06-30 mark };
113 9b058f45 2022-06-30 mark
114 9b058f45 2022-06-30 mark #define HSPLIT_SCALE 0.3 /* default horizontal split scale */
115 9b058f45 2022-06-30 mark
116 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
117 d6b05b5b 2018-08-04 stsp
118 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
119 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
120 ba4f502b 2018-08-04 stsp struct got_object_id *id;
121 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
122 1a76625f 2018-10-22 stsp int idx;
123 ba4f502b 2018-08-04 stsp };
124 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
125 ba4f502b 2018-08-04 stsp struct commit_queue {
126 ba4f502b 2018-08-04 stsp int ncommits;
127 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
128 6d17833f 2019-11-08 stsp };
129 6d17833f 2019-11-08 stsp
130 f26dddb7 2019-11-08 stsp struct tog_color {
131 dbdddfee 2021-06-23 naddy STAILQ_ENTRY(tog_color) entry;
132 6d17833f 2019-11-08 stsp regex_t regex;
133 6d17833f 2019-11-08 stsp short colorpair;
134 15a087fe 2019-02-21 stsp };
135 dbdddfee 2021-06-23 naddy STAILQ_HEAD(tog_colors, tog_color);
136 11b20872 2019-11-08 stsp
137 d9dff0e5 2020-12-26 stsp static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
138 51a10b52 2020-12-26 stsp static struct got_reflist_object_id_map *tog_refs_idmap;
139 917d79a7 2022-07-01 stsp static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
140 cc488aa7 2022-01-23 stsp
141 cc488aa7 2022-01-23 stsp static const struct got_error *
142 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
143 cc488aa7 2022-01-23 stsp struct got_reference* re2)
144 cc488aa7 2022-01-23 stsp {
145 cc488aa7 2022-01-23 stsp const char *name1 = got_ref_get_name(re1);
146 cc488aa7 2022-01-23 stsp const char *name2 = got_ref_get_name(re2);
147 cc488aa7 2022-01-23 stsp int isbackup1, isbackup2;
148 cc488aa7 2022-01-23 stsp
149 cc488aa7 2022-01-23 stsp /* Sort backup refs towards the bottom of the list. */
150 cc488aa7 2022-01-23 stsp isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
151 cc488aa7 2022-01-23 stsp isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
152 cc488aa7 2022-01-23 stsp if (!isbackup1 && isbackup2) {
153 cc488aa7 2022-01-23 stsp *cmp = -1;
154 cc488aa7 2022-01-23 stsp return NULL;
155 cc488aa7 2022-01-23 stsp } else if (isbackup1 && !isbackup2) {
156 cc488aa7 2022-01-23 stsp *cmp = 1;
157 cc488aa7 2022-01-23 stsp return NULL;
158 cc488aa7 2022-01-23 stsp }
159 cc488aa7 2022-01-23 stsp
160 cc488aa7 2022-01-23 stsp *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
161 cc488aa7 2022-01-23 stsp return NULL;
162 cc488aa7 2022-01-23 stsp }
163 51a10b52 2020-12-26 stsp
164 11b20872 2019-11-08 stsp static const struct got_error *
165 7f66531d 2021-11-16 stsp tog_load_refs(struct got_repository *repo, int sort_by_date)
166 51a10b52 2020-12-26 stsp {
167 51a10b52 2020-12-26 stsp const struct got_error *err;
168 51a10b52 2020-12-26 stsp
169 7f66531d 2021-11-16 stsp err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
170 cc488aa7 2022-01-23 stsp got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
171 7f66531d 2021-11-16 stsp repo);
172 51a10b52 2020-12-26 stsp if (err)
173 51a10b52 2020-12-26 stsp return err;
174 51a10b52 2020-12-26 stsp
175 51a10b52 2020-12-26 stsp return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
176 51a10b52 2020-12-26 stsp repo);
177 51a10b52 2020-12-26 stsp }
178 51a10b52 2020-12-26 stsp
179 51a10b52 2020-12-26 stsp static void
180 51a10b52 2020-12-26 stsp tog_free_refs(void)
181 51a10b52 2020-12-26 stsp {
182 51a10b52 2020-12-26 stsp if (tog_refs_idmap) {
183 f193b038 2020-12-26 stsp got_reflist_object_id_map_free(tog_refs_idmap);
184 51a10b52 2020-12-26 stsp tog_refs_idmap = NULL;
185 51a10b52 2020-12-26 stsp }
186 51a10b52 2020-12-26 stsp got_ref_list_free(&tog_refs);
187 51a10b52 2020-12-26 stsp }
188 51a10b52 2020-12-26 stsp
189 51a10b52 2020-12-26 stsp static const struct got_error *
190 11b20872 2019-11-08 stsp add_color(struct tog_colors *colors, const char *pattern,
191 11b20872 2019-11-08 stsp int idx, short color)
192 11b20872 2019-11-08 stsp {
193 11b20872 2019-11-08 stsp const struct got_error *err = NULL;
194 11b20872 2019-11-08 stsp struct tog_color *tc;
195 11b20872 2019-11-08 stsp int regerr = 0;
196 11b20872 2019-11-08 stsp
197 11b20872 2019-11-08 stsp if (idx < 1 || idx > COLOR_PAIRS - 1)
198 11b20872 2019-11-08 stsp return NULL;
199 11b20872 2019-11-08 stsp
200 11b20872 2019-11-08 stsp init_pair(idx, color, -1);
201 11b20872 2019-11-08 stsp
202 11b20872 2019-11-08 stsp tc = calloc(1, sizeof(*tc));
203 11b20872 2019-11-08 stsp if (tc == NULL)
204 11b20872 2019-11-08 stsp return got_error_from_errno("calloc");
205 11b20872 2019-11-08 stsp regerr = regcomp(&tc->regex, pattern,
206 11b20872 2019-11-08 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
207 11b20872 2019-11-08 stsp if (regerr) {
208 11b20872 2019-11-08 stsp static char regerr_msg[512];
209 11b20872 2019-11-08 stsp static char err_msg[512];
210 11b20872 2019-11-08 stsp regerror(regerr, &tc->regex, regerr_msg,
211 11b20872 2019-11-08 stsp sizeof(regerr_msg));
212 11b20872 2019-11-08 stsp snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
213 11b20872 2019-11-08 stsp regerr_msg);
214 11b20872 2019-11-08 stsp err = got_error_msg(GOT_ERR_REGEX, err_msg);
215 11b20872 2019-11-08 stsp free(tc);
216 11b20872 2019-11-08 stsp return err;
217 11b20872 2019-11-08 stsp }
218 11b20872 2019-11-08 stsp tc->colorpair = idx;
219 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(colors, tc, entry);
220 11b20872 2019-11-08 stsp return NULL;
221 11b20872 2019-11-08 stsp }
222 11b20872 2019-11-08 stsp
223 11b20872 2019-11-08 stsp static void
224 11b20872 2019-11-08 stsp free_colors(struct tog_colors *colors)
225 11b20872 2019-11-08 stsp {
226 11b20872 2019-11-08 stsp struct tog_color *tc;
227 11b20872 2019-11-08 stsp
228 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(colors)) {
229 dbdddfee 2021-06-23 naddy tc = STAILQ_FIRST(colors);
230 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(colors, entry);
231 11b20872 2019-11-08 stsp regfree(&tc->regex);
232 11b20872 2019-11-08 stsp free(tc);
233 11b20872 2019-11-08 stsp }
234 11b20872 2019-11-08 stsp }
235 11b20872 2019-11-08 stsp
236 336075a4 2022-06-25 op static struct tog_color *
237 11b20872 2019-11-08 stsp get_color(struct tog_colors *colors, int colorpair)
238 11b20872 2019-11-08 stsp {
239 11b20872 2019-11-08 stsp struct tog_color *tc = NULL;
240 11b20872 2019-11-08 stsp
241 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
242 11b20872 2019-11-08 stsp if (tc->colorpair == colorpair)
243 11b20872 2019-11-08 stsp return tc;
244 11b20872 2019-11-08 stsp }
245 11b20872 2019-11-08 stsp
246 11b20872 2019-11-08 stsp return NULL;
247 11b20872 2019-11-08 stsp }
248 11b20872 2019-11-08 stsp
249 11b20872 2019-11-08 stsp static int
250 11b20872 2019-11-08 stsp default_color_value(const char *envvar)
251 11b20872 2019-11-08 stsp {
252 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
253 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
254 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
255 11b20872 2019-11-08 stsp return COLOR_CYAN;
256 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
257 11b20872 2019-11-08 stsp return COLOR_YELLOW;
258 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
259 11b20872 2019-11-08 stsp return COLOR_GREEN;
260 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
261 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
262 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
263 91b8c405 2020-01-25 stsp return COLOR_MAGENTA;
264 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
265 91b8c405 2020-01-25 stsp return COLOR_CYAN;
266 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
267 11b20872 2019-11-08 stsp return COLOR_GREEN;
268 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
269 11b20872 2019-11-08 stsp return COLOR_GREEN;
270 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
271 11b20872 2019-11-08 stsp return COLOR_CYAN;
272 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
273 11b20872 2019-11-08 stsp return COLOR_YELLOW;
274 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
275 6458efa5 2020-11-24 stsp return COLOR_GREEN;
276 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
277 6458efa5 2020-11-24 stsp return COLOR_MAGENTA;
278 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
279 6458efa5 2020-11-24 stsp return COLOR_YELLOW;
280 cc488aa7 2022-01-23 stsp if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
281 cc488aa7 2022-01-23 stsp return COLOR_CYAN;
282 11b20872 2019-11-08 stsp
283 11b20872 2019-11-08 stsp return -1;
284 11b20872 2019-11-08 stsp }
285 11b20872 2019-11-08 stsp
286 11b20872 2019-11-08 stsp static int
287 11b20872 2019-11-08 stsp get_color_value(const char *envvar)
288 11b20872 2019-11-08 stsp {
289 11b20872 2019-11-08 stsp const char *val = getenv(envvar);
290 11b20872 2019-11-08 stsp
291 11b20872 2019-11-08 stsp if (val == NULL)
292 11b20872 2019-11-08 stsp return default_color_value(envvar);
293 15a087fe 2019-02-21 stsp
294 11b20872 2019-11-08 stsp if (strcasecmp(val, "black") == 0)
295 11b20872 2019-11-08 stsp return COLOR_BLACK;
296 11b20872 2019-11-08 stsp if (strcasecmp(val, "red") == 0)
297 11b20872 2019-11-08 stsp return COLOR_RED;
298 11b20872 2019-11-08 stsp if (strcasecmp(val, "green") == 0)
299 11b20872 2019-11-08 stsp return COLOR_GREEN;
300 11b20872 2019-11-08 stsp if (strcasecmp(val, "yellow") == 0)
301 11b20872 2019-11-08 stsp return COLOR_YELLOW;
302 11b20872 2019-11-08 stsp if (strcasecmp(val, "blue") == 0)
303 11b20872 2019-11-08 stsp return COLOR_BLUE;
304 11b20872 2019-11-08 stsp if (strcasecmp(val, "magenta") == 0)
305 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
306 11b20872 2019-11-08 stsp if (strcasecmp(val, "cyan") == 0)
307 11b20872 2019-11-08 stsp return COLOR_CYAN;
308 11b20872 2019-11-08 stsp if (strcasecmp(val, "white") == 0)
309 11b20872 2019-11-08 stsp return COLOR_WHITE;
310 11b20872 2019-11-08 stsp if (strcasecmp(val, "default") == 0)
311 11b20872 2019-11-08 stsp return -1;
312 11b20872 2019-11-08 stsp
313 11b20872 2019-11-08 stsp return default_color_value(envvar);
314 11b20872 2019-11-08 stsp }
315 11b20872 2019-11-08 stsp
316 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
317 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
318 3dbaef42 2020-11-24 stsp const char *label1, *label2;
319 b72706c3 2022-06-01 stsp FILE *f, *f1, *f2;
320 f9d37699 2022-06-28 stsp int fd1, fd2;
321 c7d5c43c 2022-08-04 mark int lineno;
322 15a087fe 2019-02-21 stsp int first_displayed_line;
323 15a087fe 2019-02-21 stsp int last_displayed_line;
324 15a087fe 2019-02-21 stsp int eof;
325 15a087fe 2019-02-21 stsp int diff_context;
326 3dbaef42 2020-11-24 stsp int ignore_whitespace;
327 64453f7e 2020-11-21 stsp int force_text_diff;
328 15a087fe 2019-02-21 stsp struct got_repository *repo;
329 c7d5c43c 2022-08-04 mark struct got_diff_line *lines;
330 fe621944 2020-11-10 stsp size_t nlines;
331 f44b1f58 2020-02-02 tracey int matched_line;
332 f44b1f58 2020-02-02 tracey int selected_line;
333 15a087fe 2019-02-21 stsp
334 c0f61fa4 2022-07-11 mark /* passed from log or blame view; may be NULL */
335 c0f61fa4 2022-07-11 mark struct tog_view *parent_view;
336 b01e7d3b 2018-08-04 stsp };
337 b01e7d3b 2018-08-04 stsp
338 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
339 5629093a 2022-07-11 stsp static volatile sig_atomic_t tog_thread_error;
340 1a76625f 2018-10-22 stsp
341 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
342 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
343 7c1452c1 2020-03-26 stsp pthread_cond_t commit_loaded;
344 1a76625f 2018-10-22 stsp int commits_needed;
345 fb280deb 2021-08-30 stsp int load_all;
346 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
347 1a76625f 2018-10-22 stsp struct commit_queue *commits;
348 1a76625f 2018-10-22 stsp const char *in_repo_path;
349 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
350 1a76625f 2018-10-22 stsp struct got_repository *repo;
351 74467cc8 2022-06-15 stsp int *pack_fds;
352 1a76625f 2018-10-22 stsp int log_complete;
353 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
354 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
355 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
356 13add988 2019-10-15 stsp int *searching;
357 13add988 2019-10-15 stsp int *search_next_done;
358 13add988 2019-10-15 stsp regex_t *regex;
359 1a76625f 2018-10-22 stsp };
360 1a76625f 2018-10-22 stsp
361 1a76625f 2018-10-22 stsp struct tog_log_view_state {
362 b01e7d3b 2018-08-04 stsp struct commit_queue commits;
363 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
364 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
365 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
366 b01e7d3b 2018-08-04 stsp int selected;
367 b01e7d3b 2018-08-04 stsp char *in_repo_path;
368 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
369 b672a97a 2020-01-27 stsp int log_branches;
370 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
371 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
372 1a76625f 2018-10-22 stsp sig_atomic_t quit;
373 1a76625f 2018-10-22 stsp pthread_t thread;
374 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
375 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
376 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
377 11b20872 2019-11-08 stsp struct tog_colors colors;
378 10aab77f 2022-07-19 op int use_committer;
379 ba4f502b 2018-08-04 stsp };
380 11b20872 2019-11-08 stsp
381 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_MINUS 1
382 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_PLUS 2
383 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_CHUNK_HEADER 3
384 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_META 4
385 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SUBMODULE 5
386 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SYMLINK 6
387 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_DIRECTORY 7
388 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_EXECUTABLE 8
389 11b20872 2019-11-08 stsp #define TOG_COLOR_COMMIT 9
390 11b20872 2019-11-08 stsp #define TOG_COLOR_AUTHOR 10
391 bf30f154 2020-12-07 naddy #define TOG_COLOR_DATE 11
392 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_HEADS 12
393 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_TAGS 13
394 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_REMOTES 14
395 cc488aa7 2022-01-23 stsp #define TOG_COLOR_REFS_BACKUP 15
396 ba4f502b 2018-08-04 stsp
397 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
398 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
399 e9424729 2018-08-04 stsp int nlines;
400 e9424729 2018-08-04 stsp
401 e9424729 2018-08-04 stsp struct tog_view *view;
402 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
403 e9424729 2018-08-04 stsp int *quit;
404 e9424729 2018-08-04 stsp };
405 e9424729 2018-08-04 stsp
406 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
407 e9424729 2018-08-04 stsp const char *path;
408 e9424729 2018-08-04 stsp struct got_repository *repo;
409 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
410 e9424729 2018-08-04 stsp int *complete;
411 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
412 fc06ba56 2019-08-22 stsp void *cancel_arg;
413 e9424729 2018-08-04 stsp };
414 e9424729 2018-08-04 stsp
415 e9424729 2018-08-04 stsp struct tog_blame {
416 e9424729 2018-08-04 stsp FILE *f;
417 be659d10 2020-11-18 stsp off_t filesize;
418 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
419 6fcac457 2018-11-19 stsp int nlines;
420 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
421 e9424729 2018-08-04 stsp pthread_t thread;
422 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
423 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
424 e9424729 2018-08-04 stsp const char *path;
425 0ae84acc 2022-06-15 tracey int *pack_fds;
426 e9424729 2018-08-04 stsp };
427 e9424729 2018-08-04 stsp
428 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
429 7cbe629d 2018-08-04 stsp int first_displayed_line;
430 7cbe629d 2018-08-04 stsp int last_displayed_line;
431 7cbe629d 2018-08-04 stsp int selected_line;
432 c0f61fa4 2022-07-11 mark int last_diffed_line;
433 7cbe629d 2018-08-04 stsp int blame_complete;
434 e5a0f69f 2018-08-18 stsp int eof;
435 e5a0f69f 2018-08-18 stsp int done;
436 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
437 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
438 e5a0f69f 2018-08-18 stsp char *path;
439 7cbe629d 2018-08-04 stsp struct got_repository *repo;
440 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
441 136e2bd4 2022-07-23 mark struct got_object_id *id_to_log;
442 e9424729 2018-08-04 stsp struct tog_blame blame;
443 6c4c42e0 2019-06-24 stsp int matched_line;
444 11b20872 2019-11-08 stsp struct tog_colors colors;
445 ad80ab7b 2018-08-04 stsp };
446 ad80ab7b 2018-08-04 stsp
447 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
448 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
449 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
450 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
451 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
452 ad80ab7b 2018-08-04 stsp int selected;
453 ad80ab7b 2018-08-04 stsp };
454 ad80ab7b 2018-08-04 stsp
455 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
456 ad80ab7b 2018-08-04 stsp
457 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
458 ad80ab7b 2018-08-04 stsp char *tree_label;
459 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id;/* commit which this tree belongs to */
460 bc573f3b 2021-07-10 stsp struct got_tree_object *root; /* the commit's root tree entry */
461 bc573f3b 2021-07-10 stsp struct got_tree_object *tree; /* currently displayed (sub-)tree */
462 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
463 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
464 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
465 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
466 bc573f3b 2021-07-10 stsp struct tog_parent_trees parents; /* parent trees of current sub-tree */
467 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
468 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
469 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
470 6458efa5 2020-11-24 stsp struct tog_colors colors;
471 6458efa5 2020-11-24 stsp };
472 6458efa5 2020-11-24 stsp
473 6458efa5 2020-11-24 stsp struct tog_reflist_entry {
474 6458efa5 2020-11-24 stsp TAILQ_ENTRY(tog_reflist_entry) entry;
475 6458efa5 2020-11-24 stsp struct got_reference *ref;
476 6458efa5 2020-11-24 stsp int idx;
477 6458efa5 2020-11-24 stsp };
478 6458efa5 2020-11-24 stsp
479 6458efa5 2020-11-24 stsp TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
480 6458efa5 2020-11-24 stsp
481 6458efa5 2020-11-24 stsp struct tog_ref_view_state {
482 dae613fa 2020-12-26 stsp struct tog_reflist_head refs;
483 6458efa5 2020-11-24 stsp struct tog_reflist_entry *first_displayed_entry;
484 6458efa5 2020-11-24 stsp struct tog_reflist_entry *last_displayed_entry;
485 6458efa5 2020-11-24 stsp struct tog_reflist_entry *selected_entry;
486 b4996bee 2022-06-16 stsp int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
487 6458efa5 2020-11-24 stsp struct got_repository *repo;
488 6458efa5 2020-11-24 stsp struct tog_reflist_entry *matched_entry;
489 bddb1296 2019-11-08 stsp struct tog_colors colors;
490 7cbe629d 2018-08-04 stsp };
491 7cbe629d 2018-08-04 stsp
492 669b5ffa 2018-10-07 stsp /*
493 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
494 669b5ffa 2018-10-07 stsp *
495 e78dc838 2020-12-04 stsp * The 'Tab' key switches focus between a parent view and its child view.
496 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
497 669b5ffa 2018-10-07 stsp * there is enough screen estate.
498 669b5ffa 2018-10-07 stsp *
499 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
500 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
501 669b5ffa 2018-10-07 stsp *
502 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
503 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
504 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
505 669b5ffa 2018-10-07 stsp *
506 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
507 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
508 669b5ffa 2018-10-07 stsp */
509 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
510 669b5ffa 2018-10-07 stsp
511 cc3c9aac 2018-08-01 stsp struct tog_view {
512 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
513 26ed57b2 2018-05-19 stsp WINDOW *window;
514 26ed57b2 2018-05-19 stsp PANEL *panel;
515 9b058f45 2022-06-30 mark int nlines, ncols, begin_y, begin_x; /* based on split height/width */
516 3c1dfe12 2022-07-08 mark int resized_y, resized_x; /* begin_y/x based on user resizing */
517 145b6838 2022-06-16 stsp int maxx, x; /* max column and current start column */
518 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
519 9b058f45 2022-06-30 mark int nscrolled, offset; /* lines scrolled and hsplit line offset */
520 94b80cfa 2022-08-01 mark int gline, hiline; /* navigate to and highlight this nG line */
521 640cd7ff 2022-06-22 mark int ch, count; /* current keymap and count prefix */
522 571ccd73 2022-07-19 mark int resized; /* set when in a resize event */
523 e78dc838 2020-12-04 stsp int focussed; /* Only set on one parent or child view at a time. */
524 9970f7fc 2020-12-03 stsp int dying;
525 669b5ffa 2018-10-07 stsp struct tog_view *parent;
526 669b5ffa 2018-10-07 stsp struct tog_view *child;
527 5dc9f4bc 2018-08-04 stsp
528 e78dc838 2020-12-04 stsp /*
529 e78dc838 2020-12-04 stsp * This flag is initially set on parent views when a new child view
530 e78dc838 2020-12-04 stsp * is created. It gets toggled when the 'Tab' key switches focus
531 e78dc838 2020-12-04 stsp * between parent and child.
532 e78dc838 2020-12-04 stsp * The flag indicates whether focus should be passed on to our child
533 e78dc838 2020-12-04 stsp * view if this parent view gets picked for focus after another parent
534 e78dc838 2020-12-04 stsp * view was closed. This prevents child views from losing focus in such
535 e78dc838 2020-12-04 stsp * situations.
536 e78dc838 2020-12-04 stsp */
537 e78dc838 2020-12-04 stsp int focus_child;
538 e78dc838 2020-12-04 stsp
539 9b058f45 2022-06-30 mark enum tog_view_mode mode;
540 5dc9f4bc 2018-08-04 stsp /* type-specific state */
541 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
542 5dc9f4bc 2018-08-04 stsp union {
543 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
544 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
545 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
546 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
547 6458efa5 2020-11-24 stsp struct tog_ref_view_state ref;
548 5dc9f4bc 2018-08-04 stsp } state;
549 e5a0f69f 2018-08-18 stsp
550 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
551 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
552 e78dc838 2020-12-04 stsp struct tog_view *, int);
553 917d79a7 2022-07-01 stsp const struct got_error *(*reset)(struct tog_view *);
554 571ccd73 2022-07-19 mark const struct got_error *(*resize)(struct tog_view *, int);
555 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
556 60493ae3 2019-06-20 stsp
557 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
558 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
559 c0c4acc8 2021-01-24 stsp int search_started;
560 60493ae3 2019-06-20 stsp int searching;
561 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
562 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
563 60493ae3 2019-06-20 stsp int search_next_done;
564 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_HAVE_MORE 1
565 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_NO_MORE 2
566 f9967bca 2020-03-27 stsp #define TOG_SEARCH_HAVE_NONE 3
567 1803e47f 2019-06-22 stsp regex_t regex;
568 41605754 2020-11-12 stsp regmatch_t regmatch;
569 cc3c9aac 2018-08-01 stsp };
570 cd0acaa7 2018-05-20 stsp
571 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
572 3dbaef42 2020-11-24 stsp struct got_object_id *, struct got_object_id *,
573 3dbaef42 2020-11-24 stsp const char *, const char *, int, int, int, struct tog_view *,
574 78756c87 2020-11-24 stsp struct got_repository *);
575 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
576 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
577 e78dc838 2020-12-04 stsp struct tog_view *, int);
578 917d79a7 2022-07-01 stsp static const struct got_error *reset_diff_view(struct tog_view *);
579 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
580 f44b1f58 2020-02-02 tracey static const struct got_error *search_start_diff_view(struct tog_view *);
581 f44b1f58 2020-02-02 tracey static const struct got_error *search_next_diff_view(struct tog_view *);
582 e5a0f69f 2018-08-18 stsp
583 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
584 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *,
585 78756c87 2020-11-24 stsp const char *, const char *, int);
586 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
587 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
588 e78dc838 2020-12-04 stsp struct tog_view *, int);
589 571ccd73 2022-07-19 mark static const struct got_error *resize_log_view(struct tog_view *, int);
590 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
591 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
592 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
593 e5a0f69f 2018-08-18 stsp
594 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
595 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *);
596 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
597 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
598 e78dc838 2020-12-04 stsp struct tog_view *, int);
599 917d79a7 2022-07-01 stsp static const struct got_error *reset_blame_view(struct tog_view *);
600 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
601 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
602 6c4c42e0 2019-06-24 stsp static const struct got_error *search_next_blame_view(struct tog_view *);
603 e5a0f69f 2018-08-18 stsp
604 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
605 bc573f3b 2021-07-10 stsp struct got_object_id *, const char *, struct got_repository *);
606 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
607 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
608 e78dc838 2020-12-04 stsp struct tog_view *, int);
609 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
610 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
611 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
612 6458efa5 2020-11-24 stsp
613 6458efa5 2020-11-24 stsp static const struct got_error *open_ref_view(struct tog_view *,
614 6458efa5 2020-11-24 stsp struct got_repository *);
615 6458efa5 2020-11-24 stsp static const struct got_error *show_ref_view(struct tog_view *);
616 6458efa5 2020-11-24 stsp static const struct got_error *input_ref_view(struct tog_view **,
617 e78dc838 2020-12-04 stsp struct tog_view *, int);
618 6458efa5 2020-11-24 stsp static const struct got_error *close_ref_view(struct tog_view *);
619 6458efa5 2020-11-24 stsp static const struct got_error *search_start_ref_view(struct tog_view *);
620 6458efa5 2020-11-24 stsp static const struct got_error *search_next_ref_view(struct tog_view *);
621 25791caa 2018-10-24 stsp
622 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
623 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
624 61266923 2020-01-14 stsp static volatile sig_atomic_t tog_sigcont_received;
625 2497f032 2022-05-31 stsp static volatile sig_atomic_t tog_sigint_received;
626 2497f032 2022-05-31 stsp static volatile sig_atomic_t tog_sigterm_received;
627 25791caa 2018-10-24 stsp
628 25791caa 2018-10-24 stsp static void
629 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
630 25791caa 2018-10-24 stsp {
631 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
632 83baff54 2019-08-12 stsp }
633 83baff54 2019-08-12 stsp
634 83baff54 2019-08-12 stsp static void
635 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
636 83baff54 2019-08-12 stsp {
637 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
638 25791caa 2018-10-24 stsp }
639 26ed57b2 2018-05-19 stsp
640 61266923 2020-01-14 stsp static void
641 61266923 2020-01-14 stsp tog_sigcont(int signo)
642 61266923 2020-01-14 stsp {
643 61266923 2020-01-14 stsp tog_sigcont_received = 1;
644 61266923 2020-01-14 stsp }
645 61266923 2020-01-14 stsp
646 2497f032 2022-05-31 stsp static void
647 2497f032 2022-05-31 stsp tog_sigint(int signo)
648 2497f032 2022-05-31 stsp {
649 2497f032 2022-05-31 stsp tog_sigint_received = 1;
650 2497f032 2022-05-31 stsp }
651 2497f032 2022-05-31 stsp
652 2497f032 2022-05-31 stsp static void
653 2497f032 2022-05-31 stsp tog_sigterm(int signo)
654 2497f032 2022-05-31 stsp {
655 2497f032 2022-05-31 stsp tog_sigterm_received = 1;
656 2497f032 2022-05-31 stsp }
657 2497f032 2022-05-31 stsp
658 2497f032 2022-05-31 stsp static int
659 dd6e31d7 2022-06-17 stsp tog_fatal_signal_received(void)
660 2497f032 2022-05-31 stsp {
661 2497f032 2022-05-31 stsp return (tog_sigpipe_received ||
662 2497f032 2022-05-31 stsp tog_sigint_received || tog_sigint_received);
663 2497f032 2022-05-31 stsp }
664 2497f032 2022-05-31 stsp
665 e5a0f69f 2018-08-18 stsp static const struct got_error *
666 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
667 ea5e7bb5 2018-08-01 stsp {
668 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *child_err = NULL;
669 e5a0f69f 2018-08-18 stsp
670 669b5ffa 2018-10-07 stsp if (view->child) {
671 5629093a 2022-07-11 stsp child_err = view_close(view->child);
672 669b5ffa 2018-10-07 stsp view->child = NULL;
673 669b5ffa 2018-10-07 stsp }
674 e5a0f69f 2018-08-18 stsp if (view->close)
675 e5a0f69f 2018-08-18 stsp err = view->close(view);
676 ea5e7bb5 2018-08-01 stsp if (view->panel)
677 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
678 ea5e7bb5 2018-08-01 stsp if (view->window)
679 ea5e7bb5 2018-08-01 stsp delwin(view->window);
680 ea5e7bb5 2018-08-01 stsp free(view);
681 5629093a 2022-07-11 stsp return err ? err : child_err;
682 ea5e7bb5 2018-08-01 stsp }
683 ea5e7bb5 2018-08-01 stsp
684 ea5e7bb5 2018-08-01 stsp static struct tog_view *
685 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
686 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
687 ea5e7bb5 2018-08-01 stsp {
688 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
689 ea5e7bb5 2018-08-01 stsp
690 ea5e7bb5 2018-08-01 stsp if (view == NULL)
691 ea5e7bb5 2018-08-01 stsp return NULL;
692 ea5e7bb5 2018-08-01 stsp
693 d6b05b5b 2018-08-04 stsp view->type = type;
694 f7d12f7e 2018-08-01 stsp view->lines = LINES;
695 f7d12f7e 2018-08-01 stsp view->cols = COLS;
696 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
697 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
698 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
699 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
700 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
701 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
702 96a765a8 2018-08-04 stsp view_close(view);
703 ea5e7bb5 2018-08-01 stsp return NULL;
704 ea5e7bb5 2018-08-01 stsp }
705 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
706 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
707 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
708 96a765a8 2018-08-04 stsp view_close(view);
709 ea5e7bb5 2018-08-01 stsp return NULL;
710 ea5e7bb5 2018-08-01 stsp }
711 ea5e7bb5 2018-08-01 stsp
712 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
713 ea5e7bb5 2018-08-01 stsp return view;
714 cdf1ee82 2018-08-01 stsp }
715 cdf1ee82 2018-08-01 stsp
716 0cf4efb1 2018-09-29 stsp static int
717 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
718 0cf4efb1 2018-09-29 stsp {
719 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
720 0cf4efb1 2018-09-29 stsp return 0;
721 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
722 5c60c32a 2018-10-18 stsp }
723 5c60c32a 2018-10-18 stsp
724 9b058f45 2022-06-30 mark /* XXX Stub till we decide what to do. */
725 9b058f45 2022-06-30 mark static int
726 9b058f45 2022-06-30 mark view_split_begin_y(int lines)
727 9b058f45 2022-06-30 mark {
728 9b058f45 2022-06-30 mark return lines * HSPLIT_SCALE;
729 9b058f45 2022-06-30 mark }
730 9b058f45 2022-06-30 mark
731 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
732 5c60c32a 2018-10-18 stsp
733 5c60c32a 2018-10-18 stsp static const struct got_error *
734 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
735 5c60c32a 2018-10-18 stsp {
736 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
737 5c60c32a 2018-10-18 stsp
738 571ccd73 2022-07-19 mark if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
739 3c1dfe12 2022-07-08 mark if (view->resized_y && view->resized_y < view->lines)
740 3c1dfe12 2022-07-08 mark view->begin_y = view->resized_y;
741 3c1dfe12 2022-07-08 mark else
742 3c1dfe12 2022-07-08 mark view->begin_y = view_split_begin_y(view->nlines);
743 9b058f45 2022-06-30 mark view->begin_x = 0;
744 571ccd73 2022-07-19 mark } else if (!view->resized) {
745 3c1dfe12 2022-07-08 mark if (view->resized_x && view->resized_x < view->cols - 1 &&
746 3c1dfe12 2022-07-08 mark view->cols > 119)
747 3c1dfe12 2022-07-08 mark view->begin_x = view->resized_x;
748 3c1dfe12 2022-07-08 mark else
749 3c1dfe12 2022-07-08 mark view->begin_x = view_split_begin_x(0);
750 9b058f45 2022-06-30 mark view->begin_y = 0;
751 9b058f45 2022-06-30 mark }
752 9b058f45 2022-06-30 mark view->nlines = LINES - view->begin_y;
753 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
754 5c60c32a 2018-10-18 stsp view->lines = LINES;
755 5c60c32a 2018-10-18 stsp view->cols = COLS;
756 5c60c32a 2018-10-18 stsp err = view_resize(view);
757 5c60c32a 2018-10-18 stsp if (err)
758 5c60c32a 2018-10-18 stsp return err;
759 5c60c32a 2018-10-18 stsp
760 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
761 9b058f45 2022-06-30 mark view->parent->nlines = view->begin_y;
762 9b058f45 2022-06-30 mark
763 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
764 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
765 5c60c32a 2018-10-18 stsp
766 5c60c32a 2018-10-18 stsp return NULL;
767 5c60c32a 2018-10-18 stsp }
768 5c60c32a 2018-10-18 stsp
769 5c60c32a 2018-10-18 stsp static const struct got_error *
770 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
771 5c60c32a 2018-10-18 stsp {
772 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
773 5c60c32a 2018-10-18 stsp
774 5c60c32a 2018-10-18 stsp view->begin_x = 0;
775 571ccd73 2022-07-19 mark view->begin_y = view->resized ? view->begin_y : 0;
776 571ccd73 2022-07-19 mark view->nlines = view->resized ? view->nlines : LINES;
777 5c60c32a 2018-10-18 stsp view->ncols = COLS;
778 5c60c32a 2018-10-18 stsp view->lines = LINES;
779 5c60c32a 2018-10-18 stsp view->cols = COLS;
780 5c60c32a 2018-10-18 stsp err = view_resize(view);
781 5c60c32a 2018-10-18 stsp if (err)
782 5c60c32a 2018-10-18 stsp return err;
783 5c60c32a 2018-10-18 stsp
784 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
785 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
786 5c60c32a 2018-10-18 stsp
787 5c60c32a 2018-10-18 stsp return NULL;
788 0cf4efb1 2018-09-29 stsp }
789 0cf4efb1 2018-09-29 stsp
790 5c60c32a 2018-10-18 stsp static int
791 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
792 5c60c32a 2018-10-18 stsp {
793 5c60c32a 2018-10-18 stsp return view->parent == NULL;
794 5c60c32a 2018-10-18 stsp }
795 5c60c32a 2018-10-18 stsp
796 6131ff18 2022-06-20 mark static int
797 6131ff18 2022-06-20 mark view_is_splitscreen(struct tog_view *view)
798 6131ff18 2022-06-20 mark {
799 9b058f45 2022-06-30 mark return view->begin_x > 0 || view->begin_y > 0;
800 24b9cfdc 2022-06-30 stsp }
801 24b9cfdc 2022-06-30 stsp
802 24b9cfdc 2022-06-30 stsp static int
803 24b9cfdc 2022-06-30 stsp view_is_fullscreen(struct tog_view *view)
804 24b9cfdc 2022-06-30 stsp {
805 24b9cfdc 2022-06-30 stsp return view->nlines == LINES && view->ncols == COLS;
806 6131ff18 2022-06-20 mark }
807 6131ff18 2022-06-20 mark
808 49b24ee5 2022-07-03 mark static int
809 49b24ee5 2022-07-03 mark view_is_hsplit_top(struct tog_view *view)
810 49b24ee5 2022-07-03 mark {
811 49b24ee5 2022-07-03 mark return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
812 49b24ee5 2022-07-03 mark view_is_splitscreen(view->child);
813 49b24ee5 2022-07-03 mark }
814 49b24ee5 2022-07-03 mark
815 9b058f45 2022-06-30 mark static void
816 9b058f45 2022-06-30 mark view_border(struct tog_view *view)
817 9b058f45 2022-06-30 mark {
818 9b058f45 2022-06-30 mark PANEL *panel;
819 9b058f45 2022-06-30 mark const struct tog_view *view_above;
820 6131ff18 2022-06-20 mark
821 9b058f45 2022-06-30 mark if (view->parent)
822 9b058f45 2022-06-30 mark return view_border(view->parent);
823 9b058f45 2022-06-30 mark
824 9b058f45 2022-06-30 mark panel = panel_above(view->panel);
825 9b058f45 2022-06-30 mark if (panel == NULL)
826 9b058f45 2022-06-30 mark return;
827 9b058f45 2022-06-30 mark
828 9b058f45 2022-06-30 mark view_above = panel_userptr(panel);
829 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
830 9b058f45 2022-06-30 mark mvwhline(view->window, view_above->begin_y - 1,
831 9b058f45 2022-06-30 mark view->begin_x, got_locale_is_utf8() ?
832 9b058f45 2022-06-30 mark ACS_HLINE : '-', view->ncols);
833 9b058f45 2022-06-30 mark else
834 9b058f45 2022-06-30 mark mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
835 9b058f45 2022-06-30 mark got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
836 9b058f45 2022-06-30 mark }
837 9b058f45 2022-06-30 mark
838 3c1dfe12 2022-07-08 mark static const struct got_error *view_init_hsplit(struct tog_view *, int);
839 9b058f45 2022-06-30 mark static const struct got_error *request_log_commits(struct tog_view *);
840 9b058f45 2022-06-30 mark static const struct got_error *offset_selection_down(struct tog_view *);
841 9b058f45 2022-06-30 mark static void offset_selection_up(struct tog_view *);
842 3c1dfe12 2022-07-08 mark static void view_get_split(struct tog_view *, int *, int *);
843 9b058f45 2022-06-30 mark
844 4d8c2215 2018-08-19 stsp static const struct got_error *
845 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
846 f7d12f7e 2018-08-01 stsp {
847 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
848 9b058f45 2022-06-30 mark int dif, nlines, ncols;
849 f7d12f7e 2018-08-01 stsp
850 9b058f45 2022-06-30 mark dif = LINES - view->lines; /* line difference */
851 9b058f45 2022-06-30 mark
852 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
853 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
854 0cf4efb1 2018-09-29 stsp else
855 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
856 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
857 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
858 0cf4efb1 2018-09-29 stsp else
859 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
860 6d0fee91 2018-08-01 stsp
861 4dd27a72 2022-06-29 stsp if (view->child) {
862 9b058f45 2022-06-30 mark int hs = view->child->begin_y;
863 9b058f45 2022-06-30 mark
864 24b9cfdc 2022-06-30 stsp if (!view_is_fullscreen(view))
865 c71ed39a 2022-06-29 stsp view->child->begin_x = view_split_begin_x(view->begin_x);
866 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN ||
867 9b058f45 2022-06-30 mark view->child->begin_x == 0) {
868 0dbbbe90 2022-06-17 op ncols = COLS;
869 0dbbbe90 2022-06-17 op
870 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
871 5c60c32a 2018-10-18 stsp if (view->child->focussed)
872 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
873 5c60c32a 2018-10-18 stsp else
874 5c60c32a 2018-10-18 stsp show_panel(view->panel);
875 5c60c32a 2018-10-18 stsp } else {
876 0dbbbe90 2022-06-17 op ncols = view->child->begin_x;
877 0dbbbe90 2022-06-17 op
878 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
879 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
880 9b058f45 2022-06-30 mark }
881 9b058f45 2022-06-30 mark /*
882 9b058f45 2022-06-30 mark * XXX This is ugly and needs to be moved into the above
883 9b058f45 2022-06-30 mark * logic but "works" for now and my attempts at moving it
884 9b058f45 2022-06-30 mark * break either 'tab' or 'F' key maps in horizontal splits.
885 9b058f45 2022-06-30 mark */
886 9b058f45 2022-06-30 mark if (hs) {
887 9b058f45 2022-06-30 mark err = view_splitscreen(view->child);
888 9b058f45 2022-06-30 mark if (err)
889 9b058f45 2022-06-30 mark return err;
890 9b058f45 2022-06-30 mark if (dif < 0) { /* top split decreased */
891 9b058f45 2022-06-30 mark err = offset_selection_down(view);
892 9b058f45 2022-06-30 mark if (err)
893 9b058f45 2022-06-30 mark return err;
894 9b058f45 2022-06-30 mark }
895 9b058f45 2022-06-30 mark view_border(view);
896 9b058f45 2022-06-30 mark update_panels();
897 9b058f45 2022-06-30 mark doupdate();
898 9b058f45 2022-06-30 mark show_panel(view->child->panel);
899 9b058f45 2022-06-30 mark nlines = view->nlines;
900 9b058f45 2022-06-30 mark }
901 0dbbbe90 2022-06-17 op } else if (view->parent == NULL)
902 0dbbbe90 2022-06-17 op ncols = COLS;
903 669b5ffa 2018-10-07 stsp
904 571ccd73 2022-07-19 mark if (view->resize && dif > 0) {
905 571ccd73 2022-07-19 mark err = view->resize(view, dif);
906 571ccd73 2022-07-19 mark if (err)
907 571ccd73 2022-07-19 mark return err;
908 571ccd73 2022-07-19 mark }
909 571ccd73 2022-07-19 mark
910 0dbbbe90 2022-06-17 op if (wresize(view->window, nlines, ncols) == ERR)
911 0dbbbe90 2022-06-17 op return got_error_from_errno("wresize");
912 0dbbbe90 2022-06-17 op if (replace_panel(view->panel, view->window) == ERR)
913 0dbbbe90 2022-06-17 op return got_error_from_errno("replace_panel");
914 0dbbbe90 2022-06-17 op wclear(view->window);
915 0dbbbe90 2022-06-17 op
916 0dbbbe90 2022-06-17 op view->nlines = nlines;
917 0dbbbe90 2022-06-17 op view->ncols = ncols;
918 0dbbbe90 2022-06-17 op view->lines = LINES;
919 0dbbbe90 2022-06-17 op view->cols = COLS;
920 0dbbbe90 2022-06-17 op
921 5c60c32a 2018-10-18 stsp return NULL;
922 571ccd73 2022-07-19 mark }
923 571ccd73 2022-07-19 mark
924 571ccd73 2022-07-19 mark static const struct got_error *
925 571ccd73 2022-07-19 mark resize_log_view(struct tog_view *view, int increase)
926 571ccd73 2022-07-19 mark {
927 6fe51fee 2022-07-22 mark struct tog_log_view_state *s = &view->state.log;
928 6fe51fee 2022-07-22 mark const struct got_error *err = NULL;
929 6fe51fee 2022-07-22 mark int n = 0;
930 571ccd73 2022-07-19 mark
931 6fe51fee 2022-07-22 mark if (s->selected_entry)
932 6fe51fee 2022-07-22 mark n = s->selected_entry->idx + view->lines - s->selected;
933 6fe51fee 2022-07-22 mark
934 571ccd73 2022-07-19 mark /*
935 571ccd73 2022-07-19 mark * Request commits to account for the increased
936 571ccd73 2022-07-19 mark * height so we have enough to populate the view.
937 571ccd73 2022-07-19 mark */
938 571ccd73 2022-07-19 mark if (s->commits.ncommits < n) {
939 571ccd73 2022-07-19 mark view->nscrolled = n - s->commits.ncommits + increase + 1;
940 571ccd73 2022-07-19 mark err = request_log_commits(view);
941 571ccd73 2022-07-19 mark }
942 571ccd73 2022-07-19 mark
943 571ccd73 2022-07-19 mark return err;
944 d9a7ab53 2022-07-11 mark }
945 d9a7ab53 2022-07-11 mark
946 d9a7ab53 2022-07-11 mark static void
947 d9a7ab53 2022-07-11 mark view_adjust_offset(struct tog_view *view, int n)
948 d9a7ab53 2022-07-11 mark {
949 d9a7ab53 2022-07-11 mark if (n == 0)
950 d9a7ab53 2022-07-11 mark return;
951 d9a7ab53 2022-07-11 mark
952 d9a7ab53 2022-07-11 mark if (view->parent && view->parent->offset) {
953 d9a7ab53 2022-07-11 mark if (view->parent->offset + n >= 0)
954 d9a7ab53 2022-07-11 mark view->parent->offset += n;
955 d9a7ab53 2022-07-11 mark else
956 d9a7ab53 2022-07-11 mark view->parent->offset = 0;
957 d9a7ab53 2022-07-11 mark } else if (view->offset) {
958 d9a7ab53 2022-07-11 mark if (view->offset - n >= 0)
959 d9a7ab53 2022-07-11 mark view->offset -= n;
960 d9a7ab53 2022-07-11 mark else
961 d9a7ab53 2022-07-11 mark view->offset = 0;
962 d9a7ab53 2022-07-11 mark }
963 3c1dfe12 2022-07-08 mark }
964 3c1dfe12 2022-07-08 mark
965 3c1dfe12 2022-07-08 mark static const struct got_error *
966 3c1dfe12 2022-07-08 mark view_resize_split(struct tog_view *view, int resize)
967 3c1dfe12 2022-07-08 mark {
968 3c1dfe12 2022-07-08 mark const struct got_error *err = NULL;
969 3c1dfe12 2022-07-08 mark struct tog_view *v = NULL;
970 3c1dfe12 2022-07-08 mark
971 3c1dfe12 2022-07-08 mark if (view->parent)
972 3c1dfe12 2022-07-08 mark v = view->parent;
973 3c1dfe12 2022-07-08 mark else
974 3c1dfe12 2022-07-08 mark v = view;
975 3c1dfe12 2022-07-08 mark
976 3c1dfe12 2022-07-08 mark if (!v->child || !view_is_splitscreen(v->child))
977 3c1dfe12 2022-07-08 mark return NULL;
978 3c1dfe12 2022-07-08 mark
979 571ccd73 2022-07-19 mark v->resized = v->child->resized = resize; /* lock for resize event */
980 3c1dfe12 2022-07-08 mark
981 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
982 3c1dfe12 2022-07-08 mark if (v->child->resized_y)
983 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
984 3c1dfe12 2022-07-08 mark if (view->parent)
985 3c1dfe12 2022-07-08 mark v->child->begin_y -= resize;
986 3c1dfe12 2022-07-08 mark else
987 3c1dfe12 2022-07-08 mark v->child->begin_y += resize;
988 3c1dfe12 2022-07-08 mark if (v->child->begin_y < 3) {
989 3c1dfe12 2022-07-08 mark view->count = 0;
990 3c1dfe12 2022-07-08 mark v->child->begin_y = 3;
991 3c1dfe12 2022-07-08 mark } else if (v->child->begin_y > LINES - 1) {
992 3c1dfe12 2022-07-08 mark view->count = 0;
993 3c1dfe12 2022-07-08 mark v->child->begin_y = LINES - 1;
994 3c1dfe12 2022-07-08 mark }
995 3c1dfe12 2022-07-08 mark v->ncols = COLS;
996 3c1dfe12 2022-07-08 mark v->child->ncols = COLS;
997 d9a7ab53 2022-07-11 mark view_adjust_offset(view, resize);
998 3c1dfe12 2022-07-08 mark err = view_init_hsplit(v, v->child->begin_y);
999 3c1dfe12 2022-07-08 mark if (err)
1000 3c1dfe12 2022-07-08 mark return err;
1001 3c1dfe12 2022-07-08 mark v->child->resized_y = v->child->begin_y;
1002 3c1dfe12 2022-07-08 mark } else {
1003 3c1dfe12 2022-07-08 mark if (v->child->resized_x)
1004 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1005 3c1dfe12 2022-07-08 mark if (view->parent)
1006 3c1dfe12 2022-07-08 mark v->child->begin_x -= resize;
1007 3c1dfe12 2022-07-08 mark else
1008 3c1dfe12 2022-07-08 mark v->child->begin_x += resize;
1009 3c1dfe12 2022-07-08 mark if (v->child->begin_x < 11) {
1010 3c1dfe12 2022-07-08 mark view->count = 0;
1011 3c1dfe12 2022-07-08 mark v->child->begin_x = 11;
1012 3c1dfe12 2022-07-08 mark } else if (v->child->begin_x > COLS - 1) {
1013 3c1dfe12 2022-07-08 mark view->count = 0;
1014 3c1dfe12 2022-07-08 mark v->child->begin_x = COLS - 1;
1015 3c1dfe12 2022-07-08 mark }
1016 3c1dfe12 2022-07-08 mark v->child->resized_x = v->child->begin_x;
1017 3c1dfe12 2022-07-08 mark }
1018 3c1dfe12 2022-07-08 mark
1019 3c1dfe12 2022-07-08 mark v->child->mode = v->mode;
1020 3c1dfe12 2022-07-08 mark v->child->nlines = v->lines - v->child->begin_y;
1021 3c1dfe12 2022-07-08 mark v->child->ncols = v->cols - v->child->begin_x;
1022 3c1dfe12 2022-07-08 mark v->focus_child = 1;
1023 3c1dfe12 2022-07-08 mark
1024 3c1dfe12 2022-07-08 mark err = view_fullscreen(v);
1025 3c1dfe12 2022-07-08 mark if (err)
1026 3c1dfe12 2022-07-08 mark return err;
1027 3c1dfe12 2022-07-08 mark err = view_splitscreen(v->child);
1028 3c1dfe12 2022-07-08 mark if (err)
1029 3c1dfe12 2022-07-08 mark return err;
1030 3c1dfe12 2022-07-08 mark
1031 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1032 3c1dfe12 2022-07-08 mark err = offset_selection_down(v->child);
1033 3c1dfe12 2022-07-08 mark if (err)
1034 3c1dfe12 2022-07-08 mark return err;
1035 3c1dfe12 2022-07-08 mark }
1036 3c1dfe12 2022-07-08 mark
1037 6fe51fee 2022-07-22 mark if (v->resize)
1038 6fe51fee 2022-07-22 mark err = v->resize(v, 0);
1039 6fe51fee 2022-07-22 mark else if (v->child->resize)
1040 6fe51fee 2022-07-22 mark err = v->child->resize(v->child, 0);
1041 3c1dfe12 2022-07-08 mark
1042 571ccd73 2022-07-19 mark v->resized = v->child->resized = 0;
1043 3c1dfe12 2022-07-08 mark
1044 3c1dfe12 2022-07-08 mark return err;
1045 3c1dfe12 2022-07-08 mark }
1046 3c1dfe12 2022-07-08 mark
1047 3c1dfe12 2022-07-08 mark static void
1048 3c1dfe12 2022-07-08 mark view_transfer_size(struct tog_view *dst, struct tog_view *src)
1049 3c1dfe12 2022-07-08 mark {
1050 3c1dfe12 2022-07-08 mark struct tog_view *v = src->child ? src->child : src;
1051 3c1dfe12 2022-07-08 mark
1052 3c1dfe12 2022-07-08 mark dst->resized_x = v->resized_x;
1053 3c1dfe12 2022-07-08 mark dst->resized_y = v->resized_y;
1054 669b5ffa 2018-10-07 stsp }
1055 669b5ffa 2018-10-07 stsp
1056 669b5ffa 2018-10-07 stsp static const struct got_error *
1057 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
1058 669b5ffa 2018-10-07 stsp {
1059 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1060 669b5ffa 2018-10-07 stsp
1061 669b5ffa 2018-10-07 stsp if (view->child == NULL)
1062 669b5ffa 2018-10-07 stsp return NULL;
1063 669b5ffa 2018-10-07 stsp
1064 669b5ffa 2018-10-07 stsp err = view_close(view->child);
1065 669b5ffa 2018-10-07 stsp view->child = NULL;
1066 669b5ffa 2018-10-07 stsp return err;
1067 669b5ffa 2018-10-07 stsp }
1068 669b5ffa 2018-10-07 stsp
1069 0dbbbe90 2022-06-17 op static const struct got_error *
1070 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
1071 669b5ffa 2018-10-07 stsp {
1072 3c1dfe12 2022-07-08 mark const struct got_error *err = NULL;
1073 3c1dfe12 2022-07-08 mark
1074 669b5ffa 2018-10-07 stsp view->child = child;
1075 669b5ffa 2018-10-07 stsp child->parent = view;
1076 0dbbbe90 2022-06-17 op
1077 3c1dfe12 2022-07-08 mark err = view_resize(view);
1078 3c1dfe12 2022-07-08 mark if (err)
1079 3c1dfe12 2022-07-08 mark return err;
1080 3c1dfe12 2022-07-08 mark
1081 3c1dfe12 2022-07-08 mark if (view->child->resized_x || view->child->resized_y)
1082 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1083 3c1dfe12 2022-07-08 mark
1084 3c1dfe12 2022-07-08 mark return err;
1085 bfddd0d9 2018-09-29 stsp }
1086 136e2bd4 2022-07-23 mark
1087 136e2bd4 2022-07-23 mark static const struct got_error *view_dispatch_request(struct tog_view **,
1088 136e2bd4 2022-07-23 mark struct tog_view *, enum tog_view_type, int, int);
1089 136e2bd4 2022-07-23 mark
1090 136e2bd4 2022-07-23 mark static const struct got_error *
1091 136e2bd4 2022-07-23 mark view_request_new(struct tog_view **requested, struct tog_view *view,
1092 136e2bd4 2022-07-23 mark enum tog_view_type request)
1093 136e2bd4 2022-07-23 mark {
1094 136e2bd4 2022-07-23 mark struct tog_view *new_view = NULL;
1095 136e2bd4 2022-07-23 mark const struct got_error *err;
1096 136e2bd4 2022-07-23 mark int y = 0, x = 0;
1097 136e2bd4 2022-07-23 mark
1098 136e2bd4 2022-07-23 mark *requested = NULL;
1099 136e2bd4 2022-07-23 mark
1100 136e2bd4 2022-07-23 mark if (view_is_parent_view(view))
1101 136e2bd4 2022-07-23 mark view_get_split(view, &y, &x);
1102 bfddd0d9 2018-09-29 stsp
1103 136e2bd4 2022-07-23 mark err = view_dispatch_request(&new_view, view, request, y, x);
1104 136e2bd4 2022-07-23 mark if (err)
1105 136e2bd4 2022-07-23 mark return err;
1106 136e2bd4 2022-07-23 mark
1107 136e2bd4 2022-07-23 mark if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN) {
1108 136e2bd4 2022-07-23 mark err = view_init_hsplit(view, y);
1109 136e2bd4 2022-07-23 mark if (err)
1110 136e2bd4 2022-07-23 mark return err;
1111 136e2bd4 2022-07-23 mark }
1112 136e2bd4 2022-07-23 mark
1113 136e2bd4 2022-07-23 mark view->focussed = 0;
1114 136e2bd4 2022-07-23 mark new_view->focussed = 1;
1115 136e2bd4 2022-07-23 mark new_view->mode = view->mode;
1116 136e2bd4 2022-07-23 mark new_view->nlines = view->lines - y;
1117 136e2bd4 2022-07-23 mark
1118 136e2bd4 2022-07-23 mark if (view_is_parent_view(view)) {
1119 136e2bd4 2022-07-23 mark view_transfer_size(new_view, view);
1120 136e2bd4 2022-07-23 mark err = view_close_child(view);
1121 136e2bd4 2022-07-23 mark if (err)
1122 136e2bd4 2022-07-23 mark return err;
1123 136e2bd4 2022-07-23 mark err = view_set_child(view, new_view);
1124 136e2bd4 2022-07-23 mark if (err)
1125 136e2bd4 2022-07-23 mark return err;
1126 136e2bd4 2022-07-23 mark view->focus_child = 1;
1127 136e2bd4 2022-07-23 mark } else
1128 136e2bd4 2022-07-23 mark *requested = new_view;
1129 136e2bd4 2022-07-23 mark
1130 136e2bd4 2022-07-23 mark return NULL;
1131 136e2bd4 2022-07-23 mark }
1132 136e2bd4 2022-07-23 mark
1133 34bc9ec9 2019-02-22 stsp static void
1134 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
1135 25791caa 2018-10-24 stsp {
1136 25791caa 2018-10-24 stsp int cols, lines;
1137 25791caa 2018-10-24 stsp struct winsize size;
1138 25791caa 2018-10-24 stsp
1139 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1140 25791caa 2018-10-24 stsp cols = 80; /* Default */
1141 25791caa 2018-10-24 stsp lines = 24;
1142 25791caa 2018-10-24 stsp } else {
1143 25791caa 2018-10-24 stsp cols = size.ws_col;
1144 25791caa 2018-10-24 stsp lines = size.ws_row;
1145 25791caa 2018-10-24 stsp }
1146 25791caa 2018-10-24 stsp resize_term(lines, cols);
1147 2b49a8ae 2019-06-22 stsp }
1148 2b49a8ae 2019-06-22 stsp
1149 2b49a8ae 2019-06-22 stsp static const struct got_error *
1150 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
1151 2b49a8ae 2019-06-22 stsp {
1152 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
1153 9b058f45 2022-06-30 mark struct tog_view *v = view;
1154 2b49a8ae 2019-06-22 stsp char pattern[1024];
1155 2b49a8ae 2019-06-22 stsp int ret;
1156 c0c4acc8 2021-01-24 stsp
1157 c0c4acc8 2021-01-24 stsp if (view->search_started) {
1158 c0c4acc8 2021-01-24 stsp regfree(&view->regex);
1159 c0c4acc8 2021-01-24 stsp view->searching = 0;
1160 c0c4acc8 2021-01-24 stsp memset(&view->regmatch, 0, sizeof(view->regmatch));
1161 c0c4acc8 2021-01-24 stsp }
1162 c0c4acc8 2021-01-24 stsp view->search_started = 0;
1163 2b49a8ae 2019-06-22 stsp
1164 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
1165 2b49a8ae 2019-06-22 stsp return NULL;
1166 2b49a8ae 2019-06-22 stsp
1167 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1168 9b058f45 2022-06-30 mark v = view->child;
1169 2b49a8ae 2019-06-22 stsp
1170 9b058f45 2022-06-30 mark mvwaddstr(v->window, v->nlines - 1, 0, "/");
1171 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1172 9b058f45 2022-06-30 mark
1173 a6d37fac 2022-07-03 mark nodelay(view->window, FALSE); /* block for search term input */
1174 2b49a8ae 2019-06-22 stsp nocbreak();
1175 2b49a8ae 2019-06-22 stsp echo();
1176 9b058f45 2022-06-30 mark ret = wgetnstr(v->window, pattern, sizeof(pattern));
1177 9b058f45 2022-06-30 mark wrefresh(v->window);
1178 2b49a8ae 2019-06-22 stsp cbreak();
1179 2b49a8ae 2019-06-22 stsp noecho();
1180 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1181 2b49a8ae 2019-06-22 stsp if (ret == ERR)
1182 2b49a8ae 2019-06-22 stsp return NULL;
1183 2b49a8ae 2019-06-22 stsp
1184 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1185 7c32bd05 2019-06-22 stsp err = view->search_start(view);
1186 7c32bd05 2019-06-22 stsp if (err) {
1187 7c32bd05 2019-06-22 stsp regfree(&view->regex);
1188 7c32bd05 2019-06-22 stsp return err;
1189 7c32bd05 2019-06-22 stsp }
1190 c0c4acc8 2021-01-24 stsp view->search_started = 1;
1191 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
1192 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
1193 2b49a8ae 2019-06-22 stsp view->search_next(view);
1194 2b49a8ae 2019-06-22 stsp }
1195 2b49a8ae 2019-06-22 stsp
1196 2b49a8ae 2019-06-22 stsp return NULL;
1197 d2366e29 2022-07-07 mark }
1198 d2366e29 2022-07-07 mark
1199 7532ccda 2022-07-11 mark /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1200 d2366e29 2022-07-07 mark static const struct got_error *
1201 d2366e29 2022-07-07 mark switch_split(struct tog_view *view)
1202 d2366e29 2022-07-07 mark {
1203 d2366e29 2022-07-07 mark const struct got_error *err = NULL;
1204 d2366e29 2022-07-07 mark struct tog_view *v = NULL;
1205 d2366e29 2022-07-07 mark
1206 d2366e29 2022-07-07 mark if (view->parent)
1207 d2366e29 2022-07-07 mark v = view->parent;
1208 d2366e29 2022-07-07 mark else
1209 d2366e29 2022-07-07 mark v = view;
1210 d2366e29 2022-07-07 mark
1211 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN)
1212 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1213 7532ccda 2022-07-11 mark else
1214 d2366e29 2022-07-07 mark v->mode = TOG_VIEW_SPLIT_HRZN;
1215 d2366e29 2022-07-07 mark
1216 7532ccda 2022-07-11 mark if (!v->child)
1217 7532ccda 2022-07-11 mark return NULL;
1218 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1219 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_NONE;
1220 7532ccda 2022-07-11 mark
1221 d2366e29 2022-07-07 mark view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1222 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1223 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
1224 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1225 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1226 d2366e29 2022-07-07 mark
1227 7532ccda 2022-07-11 mark
1228 d2366e29 2022-07-07 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1229 d2366e29 2022-07-07 mark v->ncols = COLS;
1230 d2366e29 2022-07-07 mark v->child->ncols = COLS;
1231 7532ccda 2022-07-11 mark v->child->nscrolled = LINES - v->child->nlines;
1232 d2366e29 2022-07-07 mark
1233 d2366e29 2022-07-07 mark err = view_init_hsplit(v, v->child->begin_y);
1234 d2366e29 2022-07-07 mark if (err)
1235 d2366e29 2022-07-07 mark return err;
1236 d2366e29 2022-07-07 mark }
1237 d2366e29 2022-07-07 mark v->child->mode = v->mode;
1238 d2366e29 2022-07-07 mark v->child->nlines = v->lines - v->child->begin_y;
1239 d2366e29 2022-07-07 mark v->focus_child = 1;
1240 d2366e29 2022-07-07 mark
1241 d2366e29 2022-07-07 mark err = view_fullscreen(v);
1242 d2366e29 2022-07-07 mark if (err)
1243 d2366e29 2022-07-07 mark return err;
1244 d2366e29 2022-07-07 mark err = view_splitscreen(v->child);
1245 d2366e29 2022-07-07 mark if (err)
1246 d2366e29 2022-07-07 mark return err;
1247 d2366e29 2022-07-07 mark
1248 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_NONE)
1249 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1250 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1251 7532ccda 2022-07-11 mark err = offset_selection_down(v);
1252 279d2047 2022-07-29 stsp if (err)
1253 279d2047 2022-07-29 stsp return err;
1254 d2366e29 2022-07-07 mark err = offset_selection_down(v->child);
1255 279d2047 2022-07-29 stsp if (err)
1256 279d2047 2022-07-29 stsp return err;
1257 7532ccda 2022-07-11 mark } else {
1258 7532ccda 2022-07-11 mark offset_selection_up(v);
1259 7532ccda 2022-07-11 mark offset_selection_up(v->child);
1260 d2366e29 2022-07-07 mark }
1261 dff91825 2022-07-22 mark if (v->resize)
1262 dff91825 2022-07-22 mark err = v->resize(v, 0);
1263 dff91825 2022-07-22 mark else if (v->child->resize)
1264 dff91825 2022-07-22 mark err = v->child->resize(v->child, 0);
1265 d2366e29 2022-07-07 mark
1266 d2366e29 2022-07-07 mark return err;
1267 0cf4efb1 2018-09-29 stsp }
1268 6d0fee91 2018-08-01 stsp
1269 640cd7ff 2022-06-22 mark /*
1270 f0032ce6 2022-07-02 mark * Compute view->count from numeric input. Assign total to view->count and
1271 f0032ce6 2022-07-02 mark * return first non-numeric key entered.
1272 640cd7ff 2022-06-22 mark */
1273 640cd7ff 2022-06-22 mark static int
1274 640cd7ff 2022-06-22 mark get_compound_key(struct tog_view *view, int c)
1275 640cd7ff 2022-06-22 mark {
1276 9b058f45 2022-06-30 mark struct tog_view *v = view;
1277 9b058f45 2022-06-30 mark int x, n = 0;
1278 640cd7ff 2022-06-22 mark
1279 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1280 9b058f45 2022-06-30 mark v = view->child;
1281 9b058f45 2022-06-30 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1282 9b058f45 2022-06-30 mark v = view->parent;
1283 9b058f45 2022-06-30 mark
1284 640cd7ff 2022-06-22 mark view->count = 0;
1285 f0032ce6 2022-07-02 mark cbreak(); /* block for input */
1286 94b80cfa 2022-08-01 mark nodelay(view->window, FALSE);
1287 9b058f45 2022-06-30 mark wmove(v->window, v->nlines - 1, 0);
1288 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1289 9b058f45 2022-06-30 mark waddch(v->window, ':');
1290 640cd7ff 2022-06-22 mark
1291 640cd7ff 2022-06-22 mark do {
1292 9b058f45 2022-06-30 mark x = getcurx(v->window);
1293 9b058f45 2022-06-30 mark if (x != ERR && x < view->ncols) {
1294 9b058f45 2022-06-30 mark waddch(v->window, c);
1295 9b058f45 2022-06-30 mark wrefresh(v->window);
1296 9b058f45 2022-06-30 mark }
1297 9b058f45 2022-06-30 mark
1298 640cd7ff 2022-06-22 mark /*
1299 640cd7ff 2022-06-22 mark * Don't overflow. Max valid request should be the greatest
1300 640cd7ff 2022-06-22 mark * between the longest and total lines; cap at 10 million.
1301 640cd7ff 2022-06-22 mark */
1302 640cd7ff 2022-06-22 mark if (n >= 9999999)
1303 640cd7ff 2022-06-22 mark n = 9999999;
1304 640cd7ff 2022-06-22 mark else
1305 640cd7ff 2022-06-22 mark n = n * 10 + (c - '0');
1306 640cd7ff 2022-06-22 mark } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1307 640cd7ff 2022-06-22 mark
1308 94b80cfa 2022-08-01 mark if (c == 'G' || c == 'g') { /* nG key map */
1309 94b80cfa 2022-08-01 mark view->gline = view->hiline = n;
1310 94b80cfa 2022-08-01 mark n = 0;
1311 94b80cfa 2022-08-01 mark c = 0;
1312 94b80cfa 2022-08-01 mark }
1313 94b80cfa 2022-08-01 mark
1314 640cd7ff 2022-06-22 mark /* Massage excessive or inapplicable values at the input handler. */
1315 640cd7ff 2022-06-22 mark view->count = n;
1316 640cd7ff 2022-06-22 mark
1317 640cd7ff 2022-06-22 mark return c;
1318 640cd7ff 2022-06-22 mark }
1319 640cd7ff 2022-06-22 mark
1320 0cf4efb1 2018-09-29 stsp static const struct got_error *
1321 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
1322 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
1323 e5a0f69f 2018-08-18 stsp {
1324 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1325 669b5ffa 2018-10-07 stsp struct tog_view *v;
1326 1a76625f 2018-10-22 stsp int ch, errcode;
1327 e5a0f69f 2018-08-18 stsp
1328 e5a0f69f 2018-08-18 stsp *new = NULL;
1329 8f4ed634 2020-03-26 stsp
1330 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
1331 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1332 640cd7ff 2022-06-22 mark view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1333 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
1334 640cd7ff 2022-06-22 mark view->count = 0;
1335 640cd7ff 2022-06-22 mark }
1336 e5a0f69f 2018-08-18 stsp
1337 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
1338 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1339 82954512 2020-02-03 stsp if (errcode)
1340 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1341 82954512 2020-02-03 stsp "pthread_mutex_unlock");
1342 3da8ef85 2021-09-21 stsp sched_yield();
1343 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
1344 82954512 2020-02-03 stsp if (errcode)
1345 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1346 82954512 2020-02-03 stsp "pthread_mutex_lock");
1347 60493ae3 2019-06-20 stsp view->search_next(view);
1348 60493ae3 2019-06-20 stsp return NULL;
1349 60493ae3 2019-06-20 stsp }
1350 60493ae3 2019-06-20 stsp
1351 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
1352 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1353 1a76625f 2018-10-22 stsp if (errcode)
1354 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
1355 a6d37fac 2022-07-03 mark /* If we have an unfinished count, let C-g or backspace abort. */
1356 a6d37fac 2022-07-03 mark if (view->count && --view->count) {
1357 a6d37fac 2022-07-03 mark cbreak();
1358 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1359 640cd7ff 2022-06-22 mark ch = wgetch(view->window);
1360 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1361 a6d37fac 2022-07-03 mark view->count = 0;
1362 a6d37fac 2022-07-03 mark else
1363 a6d37fac 2022-07-03 mark ch = view->ch;
1364 a6d37fac 2022-07-03 mark } else {
1365 a6d37fac 2022-07-03 mark ch = wgetch(view->window);
1366 640cd7ff 2022-06-22 mark if (ch >= '1' && ch <= '9')
1367 640cd7ff 2022-06-22 mark view->ch = ch = get_compound_key(view, ch);
1368 640cd7ff 2022-06-22 mark }
1369 94b80cfa 2022-08-01 mark if (view->hiline && ch != ERR && ch != 0)
1370 94b80cfa 2022-08-01 mark view->hiline = 0; /* key pressed, clear line highlight */
1371 94b80cfa 2022-08-01 mark nodelay(view->window, TRUE);
1372 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1373 1a76625f 2018-10-22 stsp if (errcode)
1374 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1375 25791caa 2018-10-24 stsp
1376 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
1377 25791caa 2018-10-24 stsp tog_resizeterm();
1378 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
1379 61266923 2020-01-14 stsp tog_sigcont_received = 0;
1380 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
1381 25791caa 2018-10-24 stsp err = view_resize(v);
1382 25791caa 2018-10-24 stsp if (err)
1383 25791caa 2018-10-24 stsp return err;
1384 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
1385 25791caa 2018-10-24 stsp if (err)
1386 25791caa 2018-10-24 stsp return err;
1387 cdfcfb03 2020-12-06 stsp if (v->child) {
1388 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
1389 cdfcfb03 2020-12-06 stsp if (err)
1390 cdfcfb03 2020-12-06 stsp return err;
1391 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
1392 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
1393 cdfcfb03 2020-12-06 stsp if (err)
1394 cdfcfb03 2020-12-06 stsp return err;
1395 3c1dfe12 2022-07-08 mark if (v->child->resized_x || v->child->resized_y) {
1396 3c1dfe12 2022-07-08 mark err = view_resize_split(v, 0);
1397 3c1dfe12 2022-07-08 mark if (err)
1398 3c1dfe12 2022-07-08 mark return err;
1399 3c1dfe12 2022-07-08 mark }
1400 cdfcfb03 2020-12-06 stsp }
1401 25791caa 2018-10-24 stsp }
1402 25791caa 2018-10-24 stsp }
1403 25791caa 2018-10-24 stsp
1404 e5a0f69f 2018-08-18 stsp switch (ch) {
1405 1e37a5c2 2019-05-12 jcs case '\t':
1406 640cd7ff 2022-06-22 mark view->count = 0;
1407 1e37a5c2 2019-05-12 jcs if (view->child) {
1408 e78dc838 2020-12-04 stsp view->focussed = 0;
1409 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1410 e78dc838 2020-12-04 stsp view->focus_child = 1;
1411 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
1412 e78dc838 2020-12-04 stsp view->focussed = 0;
1413 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
1414 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1415 9b058f45 2022-06-30 mark if (!view_is_splitscreen(view)) {
1416 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1417 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent,
1418 6fe51fee 2022-07-22 mark 0);
1419 9b058f45 2022-06-30 mark if (err)
1420 9b058f45 2022-06-30 mark return err;
1421 9b058f45 2022-06-30 mark }
1422 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1423 6131ff18 2022-06-20 mark err = view_fullscreen(view->parent);
1424 9b058f45 2022-06-30 mark if (err)
1425 9b058f45 2022-06-30 mark return err;
1426 9b058f45 2022-06-30 mark }
1427 1e37a5c2 2019-05-12 jcs }
1428 1e37a5c2 2019-05-12 jcs break;
1429 1e37a5c2 2019-05-12 jcs case 'q':
1430 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1431 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1432 9b058f45 2022-06-30 mark /* might need more commits to fill fullscreen */
1433 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent, 0);
1434 9b058f45 2022-06-30 mark if (err)
1435 9b058f45 2022-06-30 mark break;
1436 9b058f45 2022-06-30 mark }
1437 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1438 9b058f45 2022-06-30 mark }
1439 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1440 9970f7fc 2020-12-03 stsp view->dying = 1;
1441 1e37a5c2 2019-05-12 jcs break;
1442 1e37a5c2 2019-05-12 jcs case 'Q':
1443 1e37a5c2 2019-05-12 jcs *done = 1;
1444 1e37a5c2 2019-05-12 jcs break;
1445 61417565 2022-06-20 mark case 'F':
1446 640cd7ff 2022-06-22 mark view->count = 0;
1447 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
1448 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
1449 1e37a5c2 2019-05-12 jcs break;
1450 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
1451 e78dc838 2020-12-04 stsp view->focussed = 0;
1452 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1453 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
1454 3c1dfe12 2022-07-08 mark } else {
1455 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
1456 3c1dfe12 2022-07-08 mark if (!err)
1457 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1458 3c1dfe12 2022-07-08 mark }
1459 1e37a5c2 2019-05-12 jcs if (err)
1460 1e37a5c2 2019-05-12 jcs break;
1461 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
1462 9970f7fc 2020-12-03 stsp KEY_RESIZE);
1463 1e37a5c2 2019-05-12 jcs } else {
1464 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
1465 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
1466 e78dc838 2020-12-04 stsp view->focussed = 1;
1467 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
1468 1e37a5c2 2019-05-12 jcs } else {
1469 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
1470 9b058f45 2022-06-30 mark if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1471 6131ff18 2022-06-20 mark err = view_resize(view->parent);
1472 3c1dfe12 2022-07-08 mark if (!err)
1473 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1474 669b5ffa 2018-10-07 stsp }
1475 1e37a5c2 2019-05-12 jcs if (err)
1476 1e37a5c2 2019-05-12 jcs break;
1477 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
1478 1e37a5c2 2019-05-12 jcs }
1479 9b058f45 2022-06-30 mark if (err)
1480 9b058f45 2022-06-30 mark break;
1481 6fe51fee 2022-07-22 mark if (view->resize) {
1482 6fe51fee 2022-07-22 mark err = view->resize(view, 0);
1483 9b058f45 2022-06-30 mark if (err)
1484 9b058f45 2022-06-30 mark break;
1485 9b058f45 2022-06-30 mark }
1486 9b058f45 2022-06-30 mark if (view->parent)
1487 9b058f45 2022-06-30 mark err = offset_selection_down(view->parent);
1488 9b058f45 2022-06-30 mark if (!err)
1489 9b058f45 2022-06-30 mark err = offset_selection_down(view);
1490 1e37a5c2 2019-05-12 jcs break;
1491 d2366e29 2022-07-07 mark case 'S':
1492 3c1dfe12 2022-07-08 mark view->count = 0;
1493 d2366e29 2022-07-07 mark err = switch_split(view);
1494 3c1dfe12 2022-07-08 mark break;
1495 3c1dfe12 2022-07-08 mark case '-':
1496 3c1dfe12 2022-07-08 mark err = view_resize_split(view, -1);
1497 d2366e29 2022-07-07 mark break;
1498 3c1dfe12 2022-07-08 mark case '+':
1499 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 1);
1500 3c1dfe12 2022-07-08 mark break;
1501 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
1502 60493ae3 2019-06-20 stsp break;
1503 60493ae3 2019-06-20 stsp case '/':
1504 640cd7ff 2022-06-22 mark view->count = 0;
1505 60493ae3 2019-06-20 stsp if (view->search_start)
1506 2b49a8ae 2019-06-22 stsp view_search_start(view);
1507 60493ae3 2019-06-20 stsp else
1508 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1509 1e37a5c2 2019-05-12 jcs break;
1510 b1bf1435 2019-06-21 stsp case 'N':
1511 60493ae3 2019-06-20 stsp case 'n':
1512 c0c4acc8 2021-01-24 stsp if (view->search_started && view->search_next) {
1513 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
1514 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1515 60493ae3 2019-06-20 stsp view->search_next_done = 0;
1516 60493ae3 2019-06-20 stsp view->search_next(view);
1517 60493ae3 2019-06-20 stsp } else
1518 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1519 917d79a7 2022-07-01 stsp break;
1520 917d79a7 2022-07-01 stsp case 'A':
1521 917d79a7 2022-07-01 stsp if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1522 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1523 917d79a7 2022-07-01 stsp else
1524 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1525 917d79a7 2022-07-01 stsp TAILQ_FOREACH(v, views, entry) {
1526 917d79a7 2022-07-01 stsp if (v->reset) {
1527 917d79a7 2022-07-01 stsp err = v->reset(v);
1528 917d79a7 2022-07-01 stsp if (err)
1529 917d79a7 2022-07-01 stsp return err;
1530 917d79a7 2022-07-01 stsp }
1531 917d79a7 2022-07-01 stsp if (v->child && v->child->reset) {
1532 917d79a7 2022-07-01 stsp err = v->child->reset(v->child);
1533 917d79a7 2022-07-01 stsp if (err)
1534 917d79a7 2022-07-01 stsp return err;
1535 917d79a7 2022-07-01 stsp }
1536 917d79a7 2022-07-01 stsp }
1537 60493ae3 2019-06-20 stsp break;
1538 1e37a5c2 2019-05-12 jcs default:
1539 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1540 1e37a5c2 2019-05-12 jcs break;
1541 e5a0f69f 2018-08-18 stsp }
1542 e5a0f69f 2018-08-18 stsp
1543 e5a0f69f 2018-08-18 stsp return err;
1544 e5a0f69f 2018-08-18 stsp }
1545 e5a0f69f 2018-08-18 stsp
1546 336075a4 2022-06-25 op static int
1547 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
1548 a3404814 2018-09-02 stsp {
1549 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
1550 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
1551 669b5ffa 2018-10-07 stsp return 0;
1552 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
1553 669b5ffa 2018-10-07 stsp return 0;
1554 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
1555 a3404814 2018-09-02 stsp return 0;
1556 a3404814 2018-09-02 stsp
1557 669b5ffa 2018-10-07 stsp return view->focussed;
1558 a3404814 2018-09-02 stsp }
1559 a3404814 2018-09-02 stsp
1560 bcbd79e2 2018-08-19 stsp static const struct got_error *
1561 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
1562 e5a0f69f 2018-08-18 stsp {
1563 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1564 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
1565 fb59748f 2020-12-05 stsp struct tog_view *new_view;
1566 d2366e29 2022-07-07 mark char *mode;
1567 fd823528 2018-10-22 stsp int fast_refresh = 10;
1568 1a76625f 2018-10-22 stsp int done = 0, errcode;
1569 e5a0f69f 2018-08-18 stsp
1570 d2366e29 2022-07-07 mark mode = getenv("TOG_VIEW_SPLIT_MODE");
1571 d2366e29 2022-07-07 mark if (!mode || !(*mode == 'h' || *mode == 'H'))
1572 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_VERT;
1573 d2366e29 2022-07-07 mark else
1574 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_HRZN;
1575 d2366e29 2022-07-07 mark
1576 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1577 1a76625f 2018-10-22 stsp if (errcode)
1578 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1579 1a76625f 2018-10-22 stsp
1580 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1581 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1582 e5a0f69f 2018-08-18 stsp
1583 1004088d 2018-09-29 stsp view->focussed = 1;
1584 878940b7 2018-09-29 stsp err = view->show(view);
1585 0cf4efb1 2018-09-29 stsp if (err)
1586 0cf4efb1 2018-09-29 stsp return err;
1587 0cf4efb1 2018-09-29 stsp update_panels();
1588 0cf4efb1 2018-09-29 stsp doupdate();
1589 5629093a 2022-07-11 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1590 5629093a 2022-07-11 stsp !tog_fatal_signal_received()) {
1591 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1592 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1593 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1594 fd823528 2018-10-22 stsp
1595 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1596 e5a0f69f 2018-08-18 stsp if (err)
1597 e5a0f69f 2018-08-18 stsp break;
1598 9970f7fc 2020-12-03 stsp if (view->dying) {
1599 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1600 669b5ffa 2018-10-07 stsp
1601 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1602 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1603 9970f7fc 2020-12-03 stsp entry);
1604 e78dc838 2020-12-04 stsp else if (view->parent)
1605 669b5ffa 2018-10-07 stsp prev = view->parent;
1606 669b5ffa 2018-10-07 stsp
1607 e78dc838 2020-12-04 stsp if (view->parent) {
1608 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1609 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1610 9b058f45 2022-06-30 mark /* Restore fullscreen line height. */
1611 9b058f45 2022-06-30 mark view->parent->nlines = view->parent->lines;
1612 0dbbbe90 2022-06-17 op err = view_resize(view->parent);
1613 0dbbbe90 2022-06-17 op if (err)
1614 0dbbbe90 2022-06-17 op break;
1615 3c1dfe12 2022-07-08 mark /* Make resized splits persist. */
1616 3c1dfe12 2022-07-08 mark view_transfer_size(view->parent, view);
1617 e78dc838 2020-12-04 stsp } else
1618 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1619 669b5ffa 2018-10-07 stsp
1620 9970f7fc 2020-12-03 stsp err = view_close(view);
1621 fb59748f 2020-12-05 stsp if (err)
1622 e5a0f69f 2018-08-18 stsp goto done;
1623 669b5ffa 2018-10-07 stsp
1624 e78dc838 2020-12-04 stsp view = NULL;
1625 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1626 e78dc838 2020-12-04 stsp if (v->focussed)
1627 e78dc838 2020-12-04 stsp break;
1628 0cf4efb1 2018-09-29 stsp }
1629 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1630 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1631 e78dc838 2020-12-04 stsp if (prev)
1632 e78dc838 2020-12-04 stsp view = prev;
1633 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1634 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1635 e78dc838 2020-12-04 stsp tog_view_list_head);
1636 e78dc838 2020-12-04 stsp }
1637 e78dc838 2020-12-04 stsp if (view) {
1638 e78dc838 2020-12-04 stsp if (view->focus_child) {
1639 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1640 e78dc838 2020-12-04 stsp view = view->child;
1641 e78dc838 2020-12-04 stsp } else
1642 e78dc838 2020-12-04 stsp view->focussed = 1;
1643 e78dc838 2020-12-04 stsp }
1644 e78dc838 2020-12-04 stsp }
1645 e5a0f69f 2018-08-18 stsp }
1646 bcbd79e2 2018-08-19 stsp if (new_view) {
1647 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1648 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1649 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1650 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1651 86c66b02 2018-10-18 stsp continue;
1652 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1653 86c66b02 2018-10-18 stsp err = view_close(v);
1654 86c66b02 2018-10-18 stsp if (err)
1655 86c66b02 2018-10-18 stsp goto done;
1656 86c66b02 2018-10-18 stsp break;
1657 86c66b02 2018-10-18 stsp }
1658 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1659 fed7eaa8 2018-10-24 stsp view = new_view;
1660 0ae84acc 2022-06-15 tracey }
1661 669b5ffa 2018-10-07 stsp if (view) {
1662 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1663 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1664 e78dc838 2020-12-04 stsp view = view->child;
1665 e78dc838 2020-12-04 stsp } else {
1666 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1667 e78dc838 2020-12-04 stsp view = view->parent;
1668 1a76625f 2018-10-22 stsp }
1669 e78dc838 2020-12-04 stsp show_panel(view->panel);
1670 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1671 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1672 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1673 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1674 669b5ffa 2018-10-07 stsp if (err)
1675 1a76625f 2018-10-22 stsp goto done;
1676 669b5ffa 2018-10-07 stsp }
1677 669b5ffa 2018-10-07 stsp err = view->show(view);
1678 0cf4efb1 2018-09-29 stsp if (err)
1679 1a76625f 2018-10-22 stsp goto done;
1680 669b5ffa 2018-10-07 stsp if (view->child) {
1681 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1682 669b5ffa 2018-10-07 stsp if (err)
1683 1a76625f 2018-10-22 stsp goto done;
1684 669b5ffa 2018-10-07 stsp }
1685 1a76625f 2018-10-22 stsp update_panels();
1686 1a76625f 2018-10-22 stsp doupdate();
1687 0cf4efb1 2018-09-29 stsp }
1688 e5a0f69f 2018-08-18 stsp }
1689 e5a0f69f 2018-08-18 stsp done:
1690 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1691 5629093a 2022-07-11 stsp const struct got_error *close_err;
1692 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1693 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1694 5629093a 2022-07-11 stsp close_err = view_close(view);
1695 5629093a 2022-07-11 stsp if (close_err && err == NULL)
1696 5629093a 2022-07-11 stsp err = close_err;
1697 e5a0f69f 2018-08-18 stsp }
1698 1a76625f 2018-10-22 stsp
1699 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1700 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1701 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1702 1a76625f 2018-10-22 stsp
1703 e5a0f69f 2018-08-18 stsp return err;
1704 ea5e7bb5 2018-08-01 stsp }
1705 ea5e7bb5 2018-08-01 stsp
1706 4ed7e80c 2018-05-20 stsp __dead static void
1707 9f7d7167 2018-04-29 stsp usage_log(void)
1708 9f7d7167 2018-04-29 stsp {
1709 80ddbec8 2018-04-29 stsp endwin();
1710 c70c5802 2018-08-01 stsp fprintf(stderr,
1711 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1712 9f7d7167 2018-04-29 stsp getprogname());
1713 9f7d7167 2018-04-29 stsp exit(1);
1714 80ddbec8 2018-04-29 stsp }
1715 80ddbec8 2018-04-29 stsp
1716 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1717 80ddbec8 2018-04-29 stsp static const struct got_error *
1718 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1719 963b370f 2018-05-20 stsp {
1720 00dfcb92 2018-06-11 stsp char *vis = NULL;
1721 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1722 963b370f 2018-05-20 stsp
1723 963b370f 2018-05-20 stsp *ws = NULL;
1724 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1725 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1726 00dfcb92 2018-06-11 stsp int vislen;
1727 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1728 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1729 00dfcb92 2018-06-11 stsp
1730 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1731 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1732 00dfcb92 2018-06-11 stsp if (err)
1733 00dfcb92 2018-06-11 stsp return err;
1734 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1735 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1736 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1737 a7f50699 2018-06-11 stsp goto done;
1738 a7f50699 2018-06-11 stsp }
1739 00dfcb92 2018-06-11 stsp }
1740 963b370f 2018-05-20 stsp
1741 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1742 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1743 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1744 a7f50699 2018-06-11 stsp goto done;
1745 a7f50699 2018-06-11 stsp }
1746 963b370f 2018-05-20 stsp
1747 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1748 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1749 a7f50699 2018-06-11 stsp done:
1750 00dfcb92 2018-06-11 stsp free(vis);
1751 963b370f 2018-05-20 stsp if (err) {
1752 963b370f 2018-05-20 stsp free(*ws);
1753 963b370f 2018-05-20 stsp *ws = NULL;
1754 963b370f 2018-05-20 stsp *wlen = 0;
1755 963b370f 2018-05-20 stsp }
1756 963b370f 2018-05-20 stsp return err;
1757 145b6838 2022-06-16 stsp }
1758 145b6838 2022-06-16 stsp
1759 145b6838 2022-06-16 stsp static const struct got_error *
1760 145b6838 2022-06-16 stsp expand_tab(char **ptr, const char *src)
1761 145b6838 2022-06-16 stsp {
1762 145b6838 2022-06-16 stsp char *dst;
1763 145b6838 2022-06-16 stsp size_t len, n, idx = 0, sz = 0;
1764 145b6838 2022-06-16 stsp
1765 145b6838 2022-06-16 stsp *ptr = NULL;
1766 145b6838 2022-06-16 stsp n = len = strlen(src);
1767 6e1c41ad 2022-06-16 mark dst = malloc(n + 1);
1768 145b6838 2022-06-16 stsp if (dst == NULL)
1769 145b6838 2022-06-16 stsp return got_error_from_errno("malloc");
1770 145b6838 2022-06-16 stsp
1771 145b6838 2022-06-16 stsp while (idx < len && src[idx]) {
1772 145b6838 2022-06-16 stsp const char c = src[idx];
1773 145b6838 2022-06-16 stsp
1774 145b6838 2022-06-16 stsp if (c == '\t') {
1775 145b6838 2022-06-16 stsp size_t nb = TABSIZE - sz % TABSIZE;
1776 367ddf28 2022-06-16 mark char *p;
1777 367ddf28 2022-06-16 mark
1778 367ddf28 2022-06-16 mark p = realloc(dst, n + nb);
1779 6e1c41ad 2022-06-16 mark if (p == NULL) {
1780 6e1c41ad 2022-06-16 mark free(dst);
1781 6e1c41ad 2022-06-16 mark return got_error_from_errno("realloc");
1782 6e1c41ad 2022-06-16 mark
1783 6e1c41ad 2022-06-16 mark }
1784 6e1c41ad 2022-06-16 mark dst = p;
1785 145b6838 2022-06-16 stsp n += nb;
1786 6e1c41ad 2022-06-16 mark memset(dst + sz, ' ', nb);
1787 145b6838 2022-06-16 stsp sz += nb;
1788 145b6838 2022-06-16 stsp } else
1789 145b6838 2022-06-16 stsp dst[sz++] = src[idx];
1790 145b6838 2022-06-16 stsp ++idx;
1791 145b6838 2022-06-16 stsp }
1792 145b6838 2022-06-16 stsp
1793 145b6838 2022-06-16 stsp dst[sz] = '\0';
1794 145b6838 2022-06-16 stsp *ptr = dst;
1795 145b6838 2022-06-16 stsp return NULL;
1796 963b370f 2018-05-20 stsp }
1797 963b370f 2018-05-20 stsp
1798 4e4a9ac8 2022-06-17 op /*
1799 4e4a9ac8 2022-06-17 op * Advance at most n columns from wline starting at offset off.
1800 4e4a9ac8 2022-06-17 op * Return the index to the first character after the span operation.
1801 4e4a9ac8 2022-06-17 op * Return the combined column width of all spanned wide character in
1802 4e4a9ac8 2022-06-17 op * *rcol.
1803 ccda2f4d 2022-06-16 stsp */
1804 4e4a9ac8 2022-06-17 op static int
1805 4e4a9ac8 2022-06-17 op span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1806 4e4a9ac8 2022-06-17 op {
1807 4e4a9ac8 2022-06-17 op int width, i, cols = 0;
1808 ccda2f4d 2022-06-16 stsp
1809 4e4a9ac8 2022-06-17 op if (n == 0) {
1810 4e4a9ac8 2022-06-17 op *rcol = cols;
1811 4e4a9ac8 2022-06-17 op return off;
1812 4e4a9ac8 2022-06-17 op }
1813 ccda2f4d 2022-06-16 stsp
1814 4e4a9ac8 2022-06-17 op for (i = off; wline[i] != L'\0'; ++i) {
1815 4e4a9ac8 2022-06-17 op if (wline[i] == L'\t')
1816 4e4a9ac8 2022-06-17 op width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1817 4e4a9ac8 2022-06-17 op else
1818 4e4a9ac8 2022-06-17 op width = wcwidth(wline[i]);
1819 ccda2f4d 2022-06-16 stsp
1820 4e4a9ac8 2022-06-17 op if (width == -1) {
1821 4e4a9ac8 2022-06-17 op width = 1;
1822 4e4a9ac8 2022-06-17 op wline[i] = L'.';
1823 ccda2f4d 2022-06-16 stsp }
1824 ccda2f4d 2022-06-16 stsp
1825 4e4a9ac8 2022-06-17 op if (cols + width > n)
1826 4e4a9ac8 2022-06-17 op break;
1827 4e4a9ac8 2022-06-17 op cols += width;
1828 ccda2f4d 2022-06-16 stsp }
1829 ccda2f4d 2022-06-16 stsp
1830 4e4a9ac8 2022-06-17 op *rcol = cols;
1831 4e4a9ac8 2022-06-17 op return i;
1832 ccda2f4d 2022-06-16 stsp }
1833 ccda2f4d 2022-06-16 stsp
1834 ccda2f4d 2022-06-16 stsp /*
1835 ccda2f4d 2022-06-16 stsp * Format a line for display, ensuring that it won't overflow a width limit.
1836 ccda2f4d 2022-06-16 stsp * With scrolling, the width returned refers to the scrolled version of the
1837 ccda2f4d 2022-06-16 stsp * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1838 ccda2f4d 2022-06-16 stsp */
1839 ccda2f4d 2022-06-16 stsp static const struct got_error *
1840 ccda2f4d 2022-06-16 stsp format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1841 ccda2f4d 2022-06-16 stsp const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1842 ccda2f4d 2022-06-16 stsp {
1843 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1844 4e4a9ac8 2022-06-17 op int cols;
1845 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1846 145b6838 2022-06-16 stsp char *exstr = NULL;
1847 963b370f 2018-05-20 stsp size_t wlen;
1848 4e4a9ac8 2022-06-17 op int i, scrollx;
1849 963b370f 2018-05-20 stsp
1850 963b370f 2018-05-20 stsp *wlinep = NULL;
1851 b700b5d6 2018-07-10 stsp *widthp = 0;
1852 963b370f 2018-05-20 stsp
1853 145b6838 2022-06-16 stsp if (expand) {
1854 145b6838 2022-06-16 stsp err = expand_tab(&exstr, line);
1855 145b6838 2022-06-16 stsp if (err)
1856 145b6838 2022-06-16 stsp return err;
1857 145b6838 2022-06-16 stsp }
1858 145b6838 2022-06-16 stsp
1859 145b6838 2022-06-16 stsp err = mbs2ws(&wline, &wlen, expand ? exstr : line);
1860 145b6838 2022-06-16 stsp free(exstr);
1861 963b370f 2018-05-20 stsp if (err)
1862 963b370f 2018-05-20 stsp return err;
1863 963b370f 2018-05-20 stsp
1864 4e4a9ac8 2022-06-17 op scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
1865 ccda2f4d 2022-06-16 stsp
1866 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
1867 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
1868 3f670bfb 2020-12-10 stsp wlen--;
1869 3f670bfb 2020-12-10 stsp }
1870 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
1871 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
1872 3f670bfb 2020-12-10 stsp wlen--;
1873 3f670bfb 2020-12-10 stsp }
1874 3f670bfb 2020-12-10 stsp
1875 4e4a9ac8 2022-06-17 op i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
1876 4e4a9ac8 2022-06-17 op wline[i] = L'\0';
1877 27a741e5 2019-09-11 stsp
1878 b700b5d6 2018-07-10 stsp if (widthp)
1879 b700b5d6 2018-07-10 stsp *widthp = cols;
1880 ccda2f4d 2022-06-16 stsp if (scrollxp)
1881 ccda2f4d 2022-06-16 stsp *scrollxp = scrollx;
1882 963b370f 2018-05-20 stsp if (err)
1883 963b370f 2018-05-20 stsp free(wline);
1884 963b370f 2018-05-20 stsp else
1885 963b370f 2018-05-20 stsp *wlinep = wline;
1886 963b370f 2018-05-20 stsp return err;
1887 963b370f 2018-05-20 stsp }
1888 963b370f 2018-05-20 stsp
1889 8b473291 2019-02-21 stsp static const struct got_error*
1890 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
1891 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
1892 8b473291 2019-02-21 stsp {
1893 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
1894 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
1895 8b473291 2019-02-21 stsp char *s;
1896 8b473291 2019-02-21 stsp const char *name;
1897 8b473291 2019-02-21 stsp
1898 8b473291 2019-02-21 stsp *refs_str = NULL;
1899 8b473291 2019-02-21 stsp
1900 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
1901 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
1902 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
1903 52b5abe1 2019-08-13 stsp int cmp;
1904 52b5abe1 2019-08-13 stsp
1905 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
1906 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
1907 8b473291 2019-02-21 stsp continue;
1908 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
1909 8b473291 2019-02-21 stsp name += 5;
1910 cc488aa7 2022-01-23 stsp if (strncmp(name, "got/", 4) == 0 &&
1911 cc488aa7 2022-01-23 stsp strncmp(name, "got/backup/", 11) != 0)
1912 7143d404 2019-03-12 stsp continue;
1913 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
1914 8b473291 2019-02-21 stsp name += 6;
1915 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
1916 8b473291 2019-02-21 stsp name += 8;
1917 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
1918 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
1919 79cc719f 2020-04-24 stsp continue;
1920 79cc719f 2020-04-24 stsp }
1921 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
1922 48cae60d 2020-09-22 stsp if (err)
1923 48cae60d 2020-09-22 stsp break;
1924 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
1925 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
1926 5d844a1e 2019-08-13 stsp if (err) {
1927 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
1928 48cae60d 2020-09-22 stsp free(ref_id);
1929 5d844a1e 2019-08-13 stsp break;
1930 48cae60d 2020-09-22 stsp }
1931 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
1932 5d844a1e 2019-08-13 stsp err = NULL;
1933 5d844a1e 2019-08-13 stsp tag = NULL;
1934 5d844a1e 2019-08-13 stsp }
1935 52b5abe1 2019-08-13 stsp }
1936 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
1937 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
1938 48cae60d 2020-09-22 stsp free(ref_id);
1939 52b5abe1 2019-08-13 stsp if (tag)
1940 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
1941 52b5abe1 2019-08-13 stsp if (cmp != 0)
1942 52b5abe1 2019-08-13 stsp continue;
1943 8b473291 2019-02-21 stsp s = *refs_str;
1944 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
1945 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
1946 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1947 8b473291 2019-02-21 stsp free(s);
1948 8b473291 2019-02-21 stsp *refs_str = NULL;
1949 8b473291 2019-02-21 stsp break;
1950 8b473291 2019-02-21 stsp }
1951 8b473291 2019-02-21 stsp free(s);
1952 8b473291 2019-02-21 stsp }
1953 8b473291 2019-02-21 stsp
1954 8b473291 2019-02-21 stsp return err;
1955 8b473291 2019-02-21 stsp }
1956 8b473291 2019-02-21 stsp
1957 963b370f 2018-05-20 stsp static const struct got_error *
1958 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
1959 27a741e5 2019-09-11 stsp int col_tab_align)
1960 5813d178 2019-03-09 stsp {
1961 e6b8b890 2020-12-29 naddy char *smallerthan;
1962 5813d178 2019-03-09 stsp
1963 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
1964 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
1965 5813d178 2019-03-09 stsp author = smallerthan + 1;
1966 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
1967 ccda2f4d 2022-06-16 stsp return format_line(wauthor, author_width, NULL, author, 0, limit,
1968 ccda2f4d 2022-06-16 stsp col_tab_align, 0);
1969 5813d178 2019-03-09 stsp }
1970 5813d178 2019-03-09 stsp
1971 5813d178 2019-03-09 stsp static const struct got_error *
1972 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
1973 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
1974 8fdc79fe 2020-12-01 naddy int author_display_cols)
1975 80ddbec8 2018-04-29 stsp {
1976 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
1977 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
1978 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
1979 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
1980 5813d178 2019-03-09 stsp char *author = NULL;
1981 ccda2f4d 2022-06-16 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
1982 bb737323 2018-05-20 stsp int author_width, logmsg_width;
1983 5813d178 2019-03-09 stsp char *newline, *line = NULL;
1984 ccda2f4d 2022-06-16 stsp int col, limit, scrollx;
1985 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
1986 ccb26ccd 2018-11-05 stsp struct tm tm;
1987 45d799e2 2018-12-23 stsp time_t committer_time;
1988 11b20872 2019-11-08 stsp struct tog_color *tc;
1989 80ddbec8 2018-04-29 stsp
1990 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
1991 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
1992 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
1993 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
1994 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
1995 b39d25c7 2018-07-10 stsp
1996 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
1997 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
1998 b39d25c7 2018-07-10 stsp else
1999 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2000 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
2001 11b20872 2019-11-08 stsp if (tc)
2002 11b20872 2019-11-08 stsp wattr_on(view->window,
2003 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2004 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
2005 11b20872 2019-11-08 stsp if (tc)
2006 11b20872 2019-11-08 stsp wattr_off(view->window,
2007 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2008 27a741e5 2019-09-11 stsp col = limit;
2009 b39d25c7 2018-07-10 stsp if (col > avail)
2010 b39d25c7 2018-07-10 stsp goto done;
2011 6570a66d 2019-11-08 stsp
2012 6570a66d 2019-11-08 stsp if (avail >= 120) {
2013 6570a66d 2019-11-08 stsp char *id_str;
2014 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
2015 6570a66d 2019-11-08 stsp if (err)
2016 6570a66d 2019-11-08 stsp goto done;
2017 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2018 11b20872 2019-11-08 stsp if (tc)
2019 11b20872 2019-11-08 stsp wattr_on(view->window,
2020 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2021 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
2022 11b20872 2019-11-08 stsp if (tc)
2023 11b20872 2019-11-08 stsp wattr_off(view->window,
2024 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2025 6570a66d 2019-11-08 stsp free(id_str);
2026 6570a66d 2019-11-08 stsp col += 9;
2027 6570a66d 2019-11-08 stsp if (col > avail)
2028 6570a66d 2019-11-08 stsp goto done;
2029 6570a66d 2019-11-08 stsp }
2030 b39d25c7 2018-07-10 stsp
2031 10aab77f 2022-07-19 op if (s->use_committer)
2032 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(commit));
2033 10aab77f 2022-07-19 op else
2034 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(commit));
2035 5813d178 2019-03-09 stsp if (author == NULL) {
2036 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2037 80ddbec8 2018-04-29 stsp goto done;
2038 80ddbec8 2018-04-29 stsp }
2039 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
2040 bb737323 2018-05-20 stsp if (err)
2041 bb737323 2018-05-20 stsp goto done;
2042 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2043 11b20872 2019-11-08 stsp if (tc)
2044 11b20872 2019-11-08 stsp wattr_on(view->window,
2045 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2046 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
2047 11b20872 2019-11-08 stsp if (tc)
2048 11b20872 2019-11-08 stsp wattr_off(view->window,
2049 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2050 bb737323 2018-05-20 stsp col += author_width;
2051 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2052 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2053 bb737323 2018-05-20 stsp col++;
2054 bb737323 2018-05-20 stsp author_width++;
2055 bb737323 2018-05-20 stsp }
2056 9c2eaf34 2018-05-20 stsp if (col > avail)
2057 9c2eaf34 2018-05-20 stsp goto done;
2058 80ddbec8 2018-04-29 stsp
2059 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2060 5943eee2 2019-08-13 stsp if (err)
2061 6d9fbc00 2018-04-29 stsp goto done;
2062 bb737323 2018-05-20 stsp logmsg = logmsg0;
2063 bb737323 2018-05-20 stsp while (*logmsg == '\n')
2064 bb737323 2018-05-20 stsp logmsg++;
2065 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
2066 bb737323 2018-05-20 stsp if (newline)
2067 bb737323 2018-05-20 stsp *newline = '\0';
2068 ccda2f4d 2022-06-16 stsp limit = avail - col;
2069 49b24ee5 2022-07-03 mark if (view->child && !view_is_hsplit_top(view) && limit > 0)
2070 4d1f6af3 2022-06-17 op limit--; /* for the border */
2071 ccda2f4d 2022-06-16 stsp err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2072 ccda2f4d 2022-06-16 stsp limit, col, 1);
2073 29688b02 2022-06-16 stsp if (err)
2074 29688b02 2022-06-16 stsp goto done;
2075 ccda2f4d 2022-06-16 stsp waddwstr(view->window, &wlogmsg[scrollx]);
2076 29688b02 2022-06-16 stsp col += MAX(logmsg_width, 0);
2077 27a741e5 2019-09-11 stsp while (col < avail) {
2078 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2079 bb737323 2018-05-20 stsp col++;
2080 881b2d3e 2018-04-30 stsp }
2081 80ddbec8 2018-04-29 stsp done:
2082 80ddbec8 2018-04-29 stsp free(logmsg0);
2083 bb737323 2018-05-20 stsp free(wlogmsg);
2084 5813d178 2019-03-09 stsp free(author);
2085 bb737323 2018-05-20 stsp free(wauthor);
2086 80ddbec8 2018-04-29 stsp free(line);
2087 80ddbec8 2018-04-29 stsp return err;
2088 80ddbec8 2018-04-29 stsp }
2089 26ed57b2 2018-05-19 stsp
2090 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
2091 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
2092 899d86c2 2018-05-10 stsp struct got_object_id *id)
2093 80ddbec8 2018-04-29 stsp {
2094 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
2095 80ddbec8 2018-04-29 stsp
2096 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2097 80ddbec8 2018-04-29 stsp if (entry == NULL)
2098 899d86c2 2018-05-10 stsp return NULL;
2099 99db9666 2018-05-07 stsp
2100 899d86c2 2018-05-10 stsp entry->id = id;
2101 99db9666 2018-05-07 stsp entry->commit = commit;
2102 899d86c2 2018-05-10 stsp return entry;
2103 99db9666 2018-05-07 stsp }
2104 80ddbec8 2018-04-29 stsp
2105 99db9666 2018-05-07 stsp static void
2106 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2107 99db9666 2018-05-07 stsp {
2108 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2109 99db9666 2018-05-07 stsp
2110 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2111 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2112 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2113 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2114 9ba79e04 2018-06-11 stsp /* Don't free entry->id! It is owned by the commit graph. */
2115 99db9666 2018-05-07 stsp free(entry);
2116 99db9666 2018-05-07 stsp }
2117 99db9666 2018-05-07 stsp
2118 99db9666 2018-05-07 stsp static void
2119 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2120 99db9666 2018-05-07 stsp {
2121 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2122 99db9666 2018-05-07 stsp pop_commit(commits);
2123 c4972b91 2018-05-07 stsp }
2124 c4972b91 2018-05-07 stsp
2125 c4972b91 2018-05-07 stsp static const struct got_error *
2126 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2127 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2128 13add988 2019-10-15 stsp {
2129 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2130 13add988 2019-10-15 stsp regmatch_t regmatch;
2131 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2132 13add988 2019-10-15 stsp
2133 13add988 2019-10-15 stsp *have_match = 0;
2134 13add988 2019-10-15 stsp
2135 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2136 13add988 2019-10-15 stsp if (err)
2137 13add988 2019-10-15 stsp return err;
2138 13add988 2019-10-15 stsp
2139 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2140 13add988 2019-10-15 stsp if (err)
2141 13add988 2019-10-15 stsp goto done;
2142 13add988 2019-10-15 stsp
2143 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2144 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2145 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2146 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2147 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2148 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2149 13add988 2019-10-15 stsp *have_match = 1;
2150 13add988 2019-10-15 stsp done:
2151 13add988 2019-10-15 stsp free(id_str);
2152 13add988 2019-10-15 stsp free(logmsg);
2153 13add988 2019-10-15 stsp return err;
2154 13add988 2019-10-15 stsp }
2155 13add988 2019-10-15 stsp
2156 13add988 2019-10-15 stsp static const struct got_error *
2157 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2158 c4972b91 2018-05-07 stsp {
2159 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2160 9ba79e04 2018-06-11 stsp
2161 1a76625f 2018-10-22 stsp /*
2162 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2163 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2164 1a76625f 2018-10-22 stsp * while updating the display.
2165 1a76625f 2018-10-22 stsp */
2166 4e0d2870 2020-12-07 naddy do {
2167 93e45b7c 2018-09-24 stsp struct got_object_id *id;
2168 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2169 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2170 1a76625f 2018-10-22 stsp int errcode;
2171 899d86c2 2018-05-10 stsp
2172 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2173 4e0d2870 2020-12-07 naddy NULL, NULL);
2174 ee780d5c 2020-01-04 stsp if (err || id == NULL)
2175 ecb28ae0 2018-07-16 stsp break;
2176 899d86c2 2018-05-10 stsp
2177 4e0d2870 2020-12-07 naddy err = got_object_open_as_commit(&commit, a->repo, id);
2178 9ba79e04 2018-06-11 stsp if (err)
2179 9ba79e04 2018-06-11 stsp break;
2180 9ba79e04 2018-06-11 stsp entry = alloc_commit_queue_entry(commit, id);
2181 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2182 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2183 9ba79e04 2018-06-11 stsp break;
2184 9ba79e04 2018-06-11 stsp }
2185 93e45b7c 2018-09-24 stsp
2186 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2187 1a76625f 2018-10-22 stsp if (errcode) {
2188 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2189 13add988 2019-10-15 stsp "pthread_mutex_lock");
2190 1a76625f 2018-10-22 stsp break;
2191 1a76625f 2018-10-22 stsp }
2192 1a76625f 2018-10-22 stsp
2193 4e0d2870 2020-12-07 naddy entry->idx = a->commits->ncommits;
2194 4e0d2870 2020-12-07 naddy TAILQ_INSERT_TAIL(&a->commits->head, entry, entry);
2195 4e0d2870 2020-12-07 naddy a->commits->ncommits++;
2196 1a76625f 2018-10-22 stsp
2197 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2198 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2199 7c1452c1 2020-03-26 stsp int have_match;
2200 4e0d2870 2020-12-07 naddy err = match_commit(&have_match, id, commit, a->regex);
2201 7c1452c1 2020-03-26 stsp if (err)
2202 7c1452c1 2020-03-26 stsp break;
2203 7c1452c1 2020-03-26 stsp if (have_match)
2204 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2205 13add988 2019-10-15 stsp }
2206 13add988 2019-10-15 stsp
2207 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2208 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2209 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2210 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2211 7c1452c1 2020-03-26 stsp if (err)
2212 13add988 2019-10-15 stsp break;
2213 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2214 899d86c2 2018-05-10 stsp
2215 9ba79e04 2018-06-11 stsp return err;
2216 0553a4e3 2018-04-30 stsp }
2217 0553a4e3 2018-04-30 stsp
2218 2b779855 2020-12-05 naddy static void
2219 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2220 2b779855 2020-12-05 naddy {
2221 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2222 2b779855 2020-12-05 naddy int ncommits = 0;
2223 2b779855 2020-12-05 naddy
2224 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2225 2b779855 2020-12-05 naddy while (entry) {
2226 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2227 2b779855 2020-12-05 naddy s->selected_entry = entry;
2228 2b779855 2020-12-05 naddy break;
2229 2b779855 2020-12-05 naddy }
2230 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2231 2b779855 2020-12-05 naddy ncommits++;
2232 2b779855 2020-12-05 naddy }
2233 2b779855 2020-12-05 naddy }
2234 2b779855 2020-12-05 naddy
2235 0553a4e3 2018-04-30 stsp static const struct got_error *
2236 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2237 0553a4e3 2018-04-30 stsp {
2238 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2239 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2240 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2241 cbb0c8d7 2022-08-12 mark int limit = view->nlines;
2242 60493ae3 2019-06-20 stsp int width;
2243 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2244 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2245 8b473291 2019-02-21 stsp char *refs_str = NULL;
2246 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2247 11b20872 2019-11-08 stsp struct tog_color *tc;
2248 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2249 cbb0c8d7 2022-08-12 mark
2250 cbb0c8d7 2022-08-12 mark if (view_is_hsplit_top(view))
2251 cbb0c8d7 2022-08-12 mark --limit; /* account for border */
2252 0553a4e3 2018-04-30 stsp
2253 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2254 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2255 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2256 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2257 1a76625f 2018-10-22 stsp if (err)
2258 ecb28ae0 2018-07-16 stsp return err;
2259 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2260 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2261 d2075bf3 2020-12-25 stsp if (refs) {
2262 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2263 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2264 d2075bf3 2020-12-25 stsp if (err)
2265 d2075bf3 2020-12-25 stsp goto done;
2266 d2075bf3 2020-12-25 stsp }
2267 867c6645 2018-07-10 stsp }
2268 359bfafd 2019-02-22 stsp
2269 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2270 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2271 1a76625f 2018-10-22 stsp
2272 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2273 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2274 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
2275 d2ad595c 2020-04-09 stsp (view->searching && !view->search_next_done) ?
2276 d2ad595c 2020-04-09 stsp "searching..." : "loading...") == -1) {
2277 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2278 8f4ed634 2020-03-26 stsp goto done;
2279 8f4ed634 2020-03-26 stsp }
2280 8f4ed634 2020-03-26 stsp } else {
2281 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2282 f9686aa5 2020-03-27 stsp
2283 f9686aa5 2020-03-27 stsp if (view->searching) {
2284 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2285 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2286 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2287 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2288 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2289 f9686aa5 2020-03-27 stsp search_str = "searching...";
2290 f9686aa5 2020-03-27 stsp }
2291 f9686aa5 2020-03-27 stsp
2292 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2293 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
2294 f9686aa5 2020-03-27 stsp search_str ? search_str :
2295 f9686aa5 2020-03-27 stsp (refs_str ? refs_str : "")) == -1) {
2296 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2297 8f4ed634 2020-03-26 stsp goto done;
2298 8f4ed634 2020-03-26 stsp }
2299 8b473291 2019-02-21 stsp }
2300 1a76625f 2018-10-22 stsp
2301 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2302 87411fa9 2022-06-16 stsp if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2303 87411fa9 2022-06-16 stsp "........................................",
2304 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2305 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2306 1a76625f 2018-10-22 stsp header = NULL;
2307 1a76625f 2018-10-22 stsp goto done;
2308 1a76625f 2018-10-22 stsp }
2309 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2310 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2311 1a76625f 2018-10-22 stsp 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 ecb28ae0 2018-07-16 stsp }
2316 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2317 1a76625f 2018-10-22 stsp if (err)
2318 1a76625f 2018-10-22 stsp goto done;
2319 867c6645 2018-07-10 stsp
2320 2814baeb 2018-08-01 stsp werase(view->window);
2321 867c6645 2018-07-10 stsp
2322 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2323 a3404814 2018-09-02 stsp wstandout(view->window);
2324 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2325 11b20872 2019-11-08 stsp if (tc)
2326 11b20872 2019-11-08 stsp wattr_on(view->window,
2327 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2328 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2329 11b20872 2019-11-08 stsp if (tc)
2330 11b20872 2019-11-08 stsp wattr_off(view->window,
2331 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2332 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2333 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2334 1a76625f 2018-10-22 stsp width++;
2335 1a76625f 2018-10-22 stsp }
2336 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2337 a3404814 2018-09-02 stsp wstandend(view->window);
2338 ecb28ae0 2018-07-16 stsp free(wline);
2339 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2340 1a76625f 2018-10-22 stsp goto done;
2341 0553a4e3 2018-04-30 stsp
2342 29688b02 2022-06-16 stsp /* Grow author column size if necessary, and set view->maxx. */
2343 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2344 5813d178 2019-03-09 stsp ncommits = 0;
2345 145b6838 2022-06-16 stsp view->maxx = 0;
2346 5813d178 2019-03-09 stsp while (entry) {
2347 10aab77f 2022-07-19 op struct got_commit_object *c = entry->commit;
2348 145b6838 2022-06-16 stsp char *author, *eol, *msg, *msg0;
2349 29688b02 2022-06-16 stsp wchar_t *wauthor, *wmsg;
2350 5813d178 2019-03-09 stsp int width;
2351 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2352 5813d178 2019-03-09 stsp break;
2353 10aab77f 2022-07-19 op if (s->use_committer)
2354 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(c));
2355 10aab77f 2022-07-19 op else
2356 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(c));
2357 5813d178 2019-03-09 stsp if (author == NULL) {
2358 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2359 5813d178 2019-03-09 stsp goto done;
2360 5813d178 2019-03-09 stsp }
2361 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2362 27a741e5 2019-09-11 stsp date_display_cols);
2363 5813d178 2019-03-09 stsp if (author_cols < width)
2364 5813d178 2019-03-09 stsp author_cols = width;
2365 5813d178 2019-03-09 stsp free(wauthor);
2366 5813d178 2019-03-09 stsp free(author);
2367 a310d9c3 2022-07-21 florian if (err)
2368 a310d9c3 2022-07-21 florian goto done;
2369 10aab77f 2022-07-19 op err = got_object_commit_get_logmsg(&msg0, c);
2370 145b6838 2022-06-16 stsp if (err)
2371 145b6838 2022-06-16 stsp goto done;
2372 145b6838 2022-06-16 stsp msg = msg0;
2373 145b6838 2022-06-16 stsp while (*msg == '\n')
2374 145b6838 2022-06-16 stsp ++msg;
2375 145b6838 2022-06-16 stsp if ((eol = strchr(msg, '\n')))
2376 29688b02 2022-06-16 stsp *eol = '\0';
2377 ccda2f4d 2022-06-16 stsp err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2378 29688b02 2022-06-16 stsp date_display_cols + author_cols, 0);
2379 29688b02 2022-06-16 stsp if (err)
2380 29688b02 2022-06-16 stsp goto done;
2381 29688b02 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
2382 145b6838 2022-06-16 stsp free(msg0);
2383 29688b02 2022-06-16 stsp free(wmsg);
2384 7ca04879 2019-10-19 stsp ncommits++;
2385 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2386 5813d178 2019-03-09 stsp }
2387 5813d178 2019-03-09 stsp
2388 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2389 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2390 867c6645 2018-07-10 stsp ncommits = 0;
2391 899d86c2 2018-05-10 stsp while (entry) {
2392 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2393 899d86c2 2018-05-10 stsp break;
2394 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2395 2814baeb 2018-08-01 stsp wstandout(view->window);
2396 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2397 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2398 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2399 2814baeb 2018-08-01 stsp wstandend(view->window);
2400 0553a4e3 2018-04-30 stsp if (err)
2401 60493ae3 2019-06-20 stsp goto done;
2402 0553a4e3 2018-04-30 stsp ncommits++;
2403 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2404 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2405 80ddbec8 2018-04-29 stsp }
2406 80ddbec8 2018-04-29 stsp
2407 9b058f45 2022-06-30 mark view_border(view);
2408 1a76625f 2018-10-22 stsp done:
2409 1a76625f 2018-10-22 stsp free(id_str);
2410 8b473291 2019-02-21 stsp free(refs_str);
2411 1a76625f 2018-10-22 stsp free(ncommits_str);
2412 1a76625f 2018-10-22 stsp free(header);
2413 80ddbec8 2018-04-29 stsp return err;
2414 9f7d7167 2018-04-29 stsp }
2415 07b55e75 2018-05-10 stsp
2416 07b55e75 2018-05-10 stsp static void
2417 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2418 07b55e75 2018-05-10 stsp {
2419 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2420 07b55e75 2018-05-10 stsp int nscrolled = 0;
2421 07b55e75 2018-05-10 stsp
2422 ffe38506 2020-12-01 naddy entry = TAILQ_FIRST(&s->commits.head);
2423 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2424 07b55e75 2018-05-10 stsp return;
2425 9f7d7167 2018-04-29 stsp
2426 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2427 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2428 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2429 07b55e75 2018-05-10 stsp if (entry) {
2430 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2431 07b55e75 2018-05-10 stsp nscrolled++;
2432 07b55e75 2018-05-10 stsp }
2433 07b55e75 2018-05-10 stsp }
2434 aa075928 2018-05-10 stsp }
2435 aa075928 2018-05-10 stsp
2436 aa075928 2018-05-10 stsp static const struct got_error *
2437 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2438 aa075928 2018-05-10 stsp {
2439 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2440 5e224a3e 2019-02-22 stsp int errcode;
2441 8a42fca8 2019-02-22 stsp
2442 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2443 aa075928 2018-05-10 stsp
2444 5629093a 2022-07-11 stsp while (!ta->log_complete && !tog_thread_error &&
2445 5629093a 2022-07-11 stsp (ta->commits_needed > 0 || ta->load_all)) {
2446 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2447 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2448 7aafa0d1 2019-02-22 stsp if (errcode)
2449 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2450 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2451 7c1452c1 2020-03-26 stsp
2452 7c1452c1 2020-03-26 stsp /*
2453 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2454 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2455 7c1452c1 2020-03-26 stsp */
2456 7c1452c1 2020-03-26 stsp if (!wait)
2457 7c1452c1 2020-03-26 stsp break;
2458 7c1452c1 2020-03-26 stsp
2459 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2460 ffe38506 2020-12-01 naddy show_log_view(view);
2461 7c1452c1 2020-03-26 stsp update_panels();
2462 7c1452c1 2020-03-26 stsp doupdate();
2463 7c1452c1 2020-03-26 stsp
2464 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2465 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2466 82954512 2020-02-03 stsp if (errcode)
2467 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2468 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2469 82954512 2020-02-03 stsp
2470 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2471 ffe38506 2020-12-01 naddy show_log_view(view);
2472 7c1452c1 2020-03-26 stsp update_panels();
2473 7c1452c1 2020-03-26 stsp doupdate();
2474 5e224a3e 2019-02-22 stsp }
2475 5e224a3e 2019-02-22 stsp
2476 5e224a3e 2019-02-22 stsp return NULL;
2477 5e224a3e 2019-02-22 stsp }
2478 5e224a3e 2019-02-22 stsp
2479 5e224a3e 2019-02-22 stsp static const struct got_error *
2480 9b058f45 2022-06-30 mark request_log_commits(struct tog_view *view)
2481 9b058f45 2022-06-30 mark {
2482 9b058f45 2022-06-30 mark struct tog_log_view_state *state = &view->state.log;
2483 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
2484 2525dccb 2022-07-13 mark
2485 2525dccb 2022-07-13 mark if (state->thread_args.log_complete)
2486 2525dccb 2022-07-13 mark return NULL;
2487 9b058f45 2022-06-30 mark
2488 27187d45 2022-07-11 mark state->thread_args.commits_needed += view->nscrolled;
2489 9b058f45 2022-06-30 mark err = trigger_log_thread(view, 1);
2490 9b058f45 2022-06-30 mark view->nscrolled = 0;
2491 9b058f45 2022-06-30 mark
2492 9b058f45 2022-06-30 mark return err;
2493 9b058f45 2022-06-30 mark }
2494 9b058f45 2022-06-30 mark
2495 9b058f45 2022-06-30 mark static const struct got_error *
2496 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2497 5e224a3e 2019-02-22 stsp {
2498 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2499 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2500 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2501 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2502 5e224a3e 2019-02-22 stsp
2503 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2504 5e224a3e 2019-02-22 stsp return NULL;
2505 5e224a3e 2019-02-22 stsp
2506 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2507 ffe38506 2020-12-01 naddy if (s->commits.ncommits < ncommits_needed &&
2508 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2509 08ebd0a9 2019-02-22 stsp /*
2510 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2511 08ebd0a9 2019-02-22 stsp */
2512 94b80cfa 2022-08-01 mark s->thread_args.commits_needed +=
2513 94b80cfa 2022-08-01 mark ncommits_needed - s->commits.ncommits;
2514 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2515 5e224a3e 2019-02-22 stsp if (err)
2516 5e224a3e 2019-02-22 stsp return err;
2517 7aafa0d1 2019-02-22 stsp }
2518 b295e71b 2019-02-22 stsp
2519 7aafa0d1 2019-02-22 stsp do {
2520 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2521 9b058f45 2022-06-30 mark if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2522 88048b54 2019-02-21 stsp break;
2523 88048b54 2019-02-21 stsp
2524 9b058f45 2022-06-30 mark s->last_displayed_entry = pentry ?
2525 9b058f45 2022-06-30 mark pentry : s->last_displayed_entry;;
2526 aa075928 2018-05-10 stsp
2527 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2528 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2529 dd0a52c1 2018-05-20 stsp break;
2530 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2531 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2532 aa075928 2018-05-10 stsp
2533 2525dccb 2022-07-13 mark if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2534 9b058f45 2022-06-30 mark view->nscrolled += nscrolled;
2535 9b058f45 2022-06-30 mark else
2536 9b058f45 2022-06-30 mark view->nscrolled = 0;
2537 9b058f45 2022-06-30 mark
2538 dd0a52c1 2018-05-20 stsp return err;
2539 07b55e75 2018-05-10 stsp }
2540 4a7f7875 2018-05-10 stsp
2541 cd0acaa7 2018-05-20 stsp static const struct got_error *
2542 9b058f45 2022-06-30 mark open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2543 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2544 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2545 cd0acaa7 2018-05-20 stsp {
2546 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2547 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2548 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2549 cd0acaa7 2018-05-20 stsp
2550 9b058f45 2022-06-30 mark diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2551 15a94983 2018-12-23 stsp if (diff_view == NULL)
2552 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2553 ea5e7bb5 2018-08-01 stsp
2554 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2555 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2556 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2557 e5a0f69f 2018-08-18 stsp if (err == NULL)
2558 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2559 cd0acaa7 2018-05-20 stsp return err;
2560 4a7f7875 2018-05-10 stsp }
2561 4a7f7875 2018-05-10 stsp
2562 80ddbec8 2018-04-29 stsp static const struct got_error *
2563 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2564 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2565 9343a5fb 2018-06-23 stsp {
2566 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2567 941e9f74 2019-05-21 stsp
2568 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2569 941e9f74 2019-05-21 stsp if (parent == NULL)
2570 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2571 941e9f74 2019-05-21 stsp
2572 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2573 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2574 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2575 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2576 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2577 941e9f74 2019-05-21 stsp s->tree = subtree;
2578 941e9f74 2019-05-21 stsp s->selected = 0;
2579 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2580 941e9f74 2019-05-21 stsp return NULL;
2581 941e9f74 2019-05-21 stsp }
2582 941e9f74 2019-05-21 stsp
2583 941e9f74 2019-05-21 stsp static const struct got_error *
2584 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2585 a44927cc 2022-04-07 stsp struct got_commit_object *commit, const char *path)
2586 941e9f74 2019-05-21 stsp {
2587 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2588 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2589 941e9f74 2019-05-21 stsp const char *p;
2590 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2591 9343a5fb 2018-06-23 stsp
2592 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2593 941e9f74 2019-05-21 stsp p = path;
2594 941e9f74 2019-05-21 stsp while (*p) {
2595 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2596 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2597 56e0773d 2019-11-28 stsp char *te_name;
2598 33cbf02b 2020-01-12 stsp
2599 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2600 33cbf02b 2020-01-12 stsp p++;
2601 941e9f74 2019-05-21 stsp
2602 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2603 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2604 941e9f74 2019-05-21 stsp if (slash == NULL)
2605 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2606 33cbf02b 2020-01-12 stsp else
2607 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2608 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2609 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2610 56e0773d 2019-11-28 stsp break;
2611 941e9f74 2019-05-21 stsp }
2612 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2613 56e0773d 2019-11-28 stsp if (te == NULL) {
2614 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2615 56e0773d 2019-11-28 stsp free(te_name);
2616 941e9f74 2019-05-21 stsp break;
2617 941e9f74 2019-05-21 stsp }
2618 56e0773d 2019-11-28 stsp free(te_name);
2619 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2620 941e9f74 2019-05-21 stsp
2621 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2622 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2623 b03c880f 2019-05-21 stsp
2624 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2625 941e9f74 2019-05-21 stsp if (slash)
2626 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2627 941e9f74 2019-05-21 stsp else
2628 941e9f74 2019-05-21 stsp subpath = strdup(path);
2629 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2630 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2631 941e9f74 2019-05-21 stsp break;
2632 941e9f74 2019-05-21 stsp }
2633 941e9f74 2019-05-21 stsp
2634 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&tree_id, s->repo, commit,
2635 941e9f74 2019-05-21 stsp subpath);
2636 941e9f74 2019-05-21 stsp if (err)
2637 941e9f74 2019-05-21 stsp break;
2638 941e9f74 2019-05-21 stsp
2639 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2640 941e9f74 2019-05-21 stsp free(tree_id);
2641 941e9f74 2019-05-21 stsp if (err)
2642 941e9f74 2019-05-21 stsp break;
2643 941e9f74 2019-05-21 stsp
2644 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2645 941e9f74 2019-05-21 stsp if (err) {
2646 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2647 941e9f74 2019-05-21 stsp break;
2648 941e9f74 2019-05-21 stsp }
2649 941e9f74 2019-05-21 stsp if (slash == NULL)
2650 941e9f74 2019-05-21 stsp break;
2651 941e9f74 2019-05-21 stsp free(subpath);
2652 941e9f74 2019-05-21 stsp subpath = NULL;
2653 941e9f74 2019-05-21 stsp p = slash;
2654 941e9f74 2019-05-21 stsp }
2655 941e9f74 2019-05-21 stsp
2656 941e9f74 2019-05-21 stsp free(subpath);
2657 1a76625f 2018-10-22 stsp return err;
2658 61266923 2020-01-14 stsp }
2659 61266923 2020-01-14 stsp
2660 61266923 2020-01-14 stsp static const struct got_error *
2661 49b24ee5 2022-07-03 mark browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2662 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2663 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2664 55cccc34 2020-02-20 stsp {
2665 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2666 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2667 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2668 55cccc34 2020-02-20 stsp
2669 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2670 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2671 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2672 55cccc34 2020-02-20 stsp
2673 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2674 bc573f3b 2021-07-10 stsp if (err)
2675 55cccc34 2020-02-20 stsp return err;
2676 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2677 55cccc34 2020-02-20 stsp
2678 55cccc34 2020-02-20 stsp *new_view = tree_view;
2679 55cccc34 2020-02-20 stsp
2680 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2681 55cccc34 2020-02-20 stsp return NULL;
2682 55cccc34 2020-02-20 stsp
2683 a44927cc 2022-04-07 stsp return tree_view_walk_path(s, entry->commit, path);
2684 55cccc34 2020-02-20 stsp }
2685 55cccc34 2020-02-20 stsp
2686 55cccc34 2020-02-20 stsp static const struct got_error *
2687 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2688 61266923 2020-01-14 stsp {
2689 61266923 2020-01-14 stsp sigset_t sigset;
2690 61266923 2020-01-14 stsp int errcode;
2691 61266923 2020-01-14 stsp
2692 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2693 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2694 61266923 2020-01-14 stsp
2695 2497f032 2022-05-31 stsp /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2696 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2697 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2698 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2699 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2700 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGINT) == -1)
2701 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2702 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGTERM) == -1)
2703 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2704 61266923 2020-01-14 stsp
2705 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2706 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2707 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2708 61266923 2020-01-14 stsp
2709 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2710 61266923 2020-01-14 stsp if (errcode)
2711 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2712 61266923 2020-01-14 stsp
2713 61266923 2020-01-14 stsp return NULL;
2714 1a76625f 2018-10-22 stsp }
2715 1a76625f 2018-10-22 stsp
2716 1a76625f 2018-10-22 stsp static void *
2717 1a76625f 2018-10-22 stsp log_thread(void *arg)
2718 1a76625f 2018-10-22 stsp {
2719 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2720 1a76625f 2018-10-22 stsp int errcode = 0;
2721 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2722 1a76625f 2018-10-22 stsp int done = 0;
2723 61266923 2020-01-14 stsp
2724 5629093a 2022-07-11 stsp /*
2725 5629093a 2022-07-11 stsp * Sync startup with main thread such that we begin our
2726 5629093a 2022-07-11 stsp * work once view_input() has released the mutex.
2727 5629093a 2022-07-11 stsp */
2728 5629093a 2022-07-11 stsp errcode = pthread_mutex_lock(&tog_mutex);
2729 5629093a 2022-07-11 stsp if (errcode) {
2730 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_lock");
2731 61266923 2020-01-14 stsp return (void *)err;
2732 5629093a 2022-07-11 stsp }
2733 1a76625f 2018-10-22 stsp
2734 5629093a 2022-07-11 stsp err = block_signals_used_by_main_thread();
2735 5629093a 2022-07-11 stsp if (err) {
2736 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2737 5629093a 2022-07-11 stsp goto done;
2738 5629093a 2022-07-11 stsp }
2739 5629093a 2022-07-11 stsp
2740 2497f032 2022-05-31 stsp while (!done && !err && !tog_fatal_signal_received()) {
2741 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2742 5629093a 2022-07-11 stsp if (errcode) {
2743 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode,
2744 5629093a 2022-07-11 stsp "pthread_mutex_unlock");
2745 5629093a 2022-07-11 stsp goto done;
2746 5629093a 2022-07-11 stsp }
2747 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2748 1a76625f 2018-10-22 stsp if (err) {
2749 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2750 5629093a 2022-07-11 stsp goto done;
2751 1a76625f 2018-10-22 stsp err = NULL;
2752 1a76625f 2018-10-22 stsp done = 1;
2753 fb280deb 2021-08-30 stsp } else if (a->commits_needed > 0 && !a->load_all)
2754 1a76625f 2018-10-22 stsp a->commits_needed--;
2755 1a76625f 2018-10-22 stsp
2756 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2757 3abe8080 2019-04-10 stsp if (errcode) {
2758 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2759 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2760 5629093a 2022-07-11 stsp goto done;
2761 3abe8080 2019-04-10 stsp } else if (*a->quit)
2762 1a76625f 2018-10-22 stsp done = 1;
2763 3abe8080 2019-04-10 stsp else if (*a->first_displayed_entry == NULL) {
2764 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2765 1a76625f 2018-10-22 stsp TAILQ_FIRST(&a->commits->head);
2766 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2767 1a76625f 2018-10-22 stsp }
2768 1a76625f 2018-10-22 stsp
2769 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2770 7c1452c1 2020-03-26 stsp if (errcode) {
2771 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2772 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2773 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2774 5629093a 2022-07-11 stsp goto done;
2775 7c1452c1 2020-03-26 stsp }
2776 7c1452c1 2020-03-26 stsp
2777 1a76625f 2018-10-22 stsp if (done)
2778 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2779 7c1452c1 2020-03-26 stsp else {
2780 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2781 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2782 7c1452c1 2020-03-26 stsp &tog_mutex);
2783 5629093a 2022-07-11 stsp if (errcode) {
2784 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2785 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2786 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2787 5629093a 2022-07-11 stsp goto done;
2788 5629093a 2022-07-11 stsp }
2789 21355643 2020-12-06 stsp if (*a->quit)
2790 21355643 2020-12-06 stsp done = 1;
2791 7c1452c1 2020-03-26 stsp }
2792 1a76625f 2018-10-22 stsp }
2793 1a76625f 2018-10-22 stsp }
2794 3abe8080 2019-04-10 stsp a->log_complete = 1;
2795 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2796 5629093a 2022-07-11 stsp if (errcode)
2797 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
2798 5629093a 2022-07-11 stsp done:
2799 5629093a 2022-07-11 stsp if (err) {
2800 5629093a 2022-07-11 stsp tog_thread_error = 1;
2801 5629093a 2022-07-11 stsp pthread_cond_signal(&a->commit_loaded);
2802 5629093a 2022-07-11 stsp }
2803 1a76625f 2018-10-22 stsp return (void *)err;
2804 1a76625f 2018-10-22 stsp }
2805 1a76625f 2018-10-22 stsp
2806 1a76625f 2018-10-22 stsp static const struct got_error *
2807 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
2808 1a76625f 2018-10-22 stsp {
2809 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *thread_err = NULL;
2810 1a76625f 2018-10-22 stsp int errcode;
2811 1a76625f 2018-10-22 stsp
2812 1a76625f 2018-10-22 stsp if (s->thread) {
2813 1a76625f 2018-10-22 stsp s->quit = 1;
2814 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
2815 1a76625f 2018-10-22 stsp if (errcode)
2816 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2817 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2818 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2819 1a76625f 2018-10-22 stsp if (errcode)
2820 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2821 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2822 5629093a 2022-07-11 stsp errcode = pthread_join(s->thread, (void **)&thread_err);
2823 1a76625f 2018-10-22 stsp if (errcode)
2824 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
2825 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2826 1a76625f 2018-10-22 stsp if (errcode)
2827 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2828 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2829 1a76625f 2018-10-22 stsp s->thread = NULL;
2830 1a76625f 2018-10-22 stsp }
2831 1a76625f 2018-10-22 stsp
2832 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
2833 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
2834 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
2835 74467cc8 2022-06-15 stsp }
2836 74467cc8 2022-06-15 stsp
2837 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds) {
2838 74467cc8 2022-06-15 stsp const struct got_error *pack_err =
2839 74467cc8 2022-06-15 stsp got_repo_pack_fds_close(s->thread_args.pack_fds);
2840 74467cc8 2022-06-15 stsp if (err == NULL)
2841 74467cc8 2022-06-15 stsp err = pack_err;
2842 74467cc8 2022-06-15 stsp s->thread_args.pack_fds = NULL;
2843 1a76625f 2018-10-22 stsp }
2844 1a76625f 2018-10-22 stsp
2845 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
2846 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
2847 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
2848 1a76625f 2018-10-22 stsp }
2849 1a76625f 2018-10-22 stsp
2850 5629093a 2022-07-11 stsp return err ? err : thread_err;
2851 9343a5fb 2018-06-23 stsp }
2852 9343a5fb 2018-06-23 stsp
2853 9343a5fb 2018-06-23 stsp static const struct got_error *
2854 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
2855 1a76625f 2018-10-22 stsp {
2856 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2857 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
2858 276b94a1 2020-11-13 naddy int errcode;
2859 1a76625f 2018-10-22 stsp
2860 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
2861 276b94a1 2020-11-13 naddy
2862 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
2863 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2864 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2865 276b94a1 2020-11-13 naddy
2866 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
2867 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2868 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2869 276b94a1 2020-11-13 naddy
2870 1a76625f 2018-10-22 stsp free_commits(&s->commits);
2871 1a76625f 2018-10-22 stsp free(s->in_repo_path);
2872 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
2873 1a76625f 2018-10-22 stsp free(s->start_id);
2874 797bc7b9 2018-10-22 stsp s->start_id = NULL;
2875 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
2876 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
2877 1a76625f 2018-10-22 stsp return err;
2878 1a76625f 2018-10-22 stsp }
2879 1a76625f 2018-10-22 stsp
2880 1a76625f 2018-10-22 stsp static const struct got_error *
2881 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
2882 60493ae3 2019-06-20 stsp {
2883 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2884 60493ae3 2019-06-20 stsp
2885 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
2886 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2887 60493ae3 2019-06-20 stsp return NULL;
2888 60493ae3 2019-06-20 stsp }
2889 60493ae3 2019-06-20 stsp
2890 60493ae3 2019-06-20 stsp static const struct got_error *
2891 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
2892 60493ae3 2019-06-20 stsp {
2893 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
2894 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2895 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
2896 60493ae3 2019-06-20 stsp
2897 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
2898 f9686aa5 2020-03-27 stsp show_log_view(view);
2899 f9686aa5 2020-03-27 stsp update_panels();
2900 f9686aa5 2020-03-27 stsp doupdate();
2901 f9686aa5 2020-03-27 stsp
2902 96e2b566 2019-07-08 stsp if (s->search_entry) {
2903 13add988 2019-10-15 stsp int errcode, ch;
2904 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2905 13add988 2019-10-15 stsp if (errcode)
2906 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2907 13add988 2019-10-15 stsp "pthread_mutex_unlock");
2908 13add988 2019-10-15 stsp ch = wgetch(view->window);
2909 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&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_lock");
2913 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
2914 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2915 678cbce5 2019-07-28 stsp return NULL;
2916 678cbce5 2019-07-28 stsp }
2917 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
2918 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
2919 96e2b566 2019-07-08 stsp else
2920 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
2921 96e2b566 2019-07-08 stsp commit_queue_head, entry);
2922 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
2923 364ac6fd 2022-06-18 stsp int matched_idx = s->matched_entry->idx;
2924 364ac6fd 2022-06-18 stsp int selected_idx = s->selected_entry->idx;
2925 364ac6fd 2022-06-18 stsp
2926 364ac6fd 2022-06-18 stsp /*
2927 f704b35c 2022-06-18 stsp * If the user has moved the cursor after we hit a match,
2928 f704b35c 2022-06-18 stsp * the position from where we should continue searching
2929 f704b35c 2022-06-18 stsp * might have changed.
2930 364ac6fd 2022-06-18 stsp */
2931 4bfe9f0a 2022-06-18 stsp if (view->searching == TOG_SEARCH_FORWARD) {
2932 364ac6fd 2022-06-18 stsp if (matched_idx > selected_idx)
2933 364ac6fd 2022-06-18 stsp entry = TAILQ_NEXT(s->selected_entry, entry);
2934 364ac6fd 2022-06-18 stsp else
2935 364ac6fd 2022-06-18 stsp entry = TAILQ_NEXT(s->matched_entry, entry);
2936 4bfe9f0a 2022-06-18 stsp } else {
2937 364ac6fd 2022-06-18 stsp if (matched_idx < selected_idx)
2938 364ac6fd 2022-06-18 stsp entry = TAILQ_PREV(s->selected_entry,
2939 364ac6fd 2022-06-18 stsp commit_queue_head, entry);
2940 364ac6fd 2022-06-18 stsp else
2941 364ac6fd 2022-06-18 stsp entry = TAILQ_PREV(s->matched_entry,
2942 364ac6fd 2022-06-18 stsp commit_queue_head, entry);
2943 4bfe9f0a 2022-06-18 stsp }
2944 20be8d96 2019-06-21 stsp } else {
2945 5a5ede53 2021-12-09 stsp entry = s->selected_entry;
2946 20be8d96 2019-06-21 stsp }
2947 60493ae3 2019-06-20 stsp
2948 60493ae3 2019-06-20 stsp while (1) {
2949 13add988 2019-10-15 stsp int have_match = 0;
2950 13add988 2019-10-15 stsp
2951 60493ae3 2019-06-20 stsp if (entry == NULL) {
2952 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
2953 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
2954 f9967bca 2020-03-27 stsp view->search_next_done =
2955 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
2956 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
2957 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
2958 f801134a 2019-06-25 stsp return NULL;
2959 60493ae3 2019-06-20 stsp }
2960 96e2b566 2019-07-08 stsp /*
2961 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
2962 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
2963 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
2964 96e2b566 2019-07-08 stsp */
2965 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
2966 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
2967 60493ae3 2019-06-20 stsp }
2968 60493ae3 2019-06-20 stsp
2969 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
2970 13add988 2019-10-15 stsp &view->regex);
2971 5943eee2 2019-08-13 stsp if (err)
2972 13add988 2019-10-15 stsp break;
2973 13add988 2019-10-15 stsp if (have_match) {
2974 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2975 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
2976 60493ae3 2019-06-20 stsp break;
2977 60493ae3 2019-06-20 stsp }
2978 13add988 2019-10-15 stsp
2979 96e2b566 2019-07-08 stsp s->search_entry = entry;
2980 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2981 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
2982 b1bf1435 2019-06-21 stsp else
2983 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2984 60493ae3 2019-06-20 stsp }
2985 60493ae3 2019-06-20 stsp
2986 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
2987 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
2988 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
2989 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
2990 60493ae3 2019-06-20 stsp if (err)
2991 60493ae3 2019-06-20 stsp return err;
2992 ead14cbe 2019-06-21 stsp cur++;
2993 ead14cbe 2019-06-21 stsp }
2994 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
2995 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
2996 60493ae3 2019-06-20 stsp if (err)
2997 60493ae3 2019-06-20 stsp return err;
2998 ead14cbe 2019-06-21 stsp cur--;
2999 60493ae3 2019-06-20 stsp }
3000 60493ae3 2019-06-20 stsp }
3001 60493ae3 2019-06-20 stsp
3002 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3003 96e2b566 2019-07-08 stsp
3004 60493ae3 2019-06-20 stsp return NULL;
3005 60493ae3 2019-06-20 stsp }
3006 60493ae3 2019-06-20 stsp
3007 60493ae3 2019-06-20 stsp static const struct got_error *
3008 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3009 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3010 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3011 80ddbec8 2018-04-29 stsp {
3012 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3013 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3014 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3015 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3016 1a76625f 2018-10-22 stsp int errcode;
3017 80ddbec8 2018-04-29 stsp
3018 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3019 f135c941 2020-02-20 stsp free(s->in_repo_path);
3020 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3021 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3022 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3023 f135c941 2020-02-20 stsp }
3024 ecb28ae0 2018-07-16 stsp
3025 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3026 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->commits.head);
3027 fb2756b9 2018-08-04 stsp s->commits.ncommits = 0;
3028 78756c87 2020-11-24 stsp
3029 fb2756b9 2018-08-04 stsp s->repo = repo;
3030 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3031 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3032 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3033 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3034 9cd7cbd1 2020-12-07 stsp goto done;
3035 9cd7cbd1 2020-12-07 stsp }
3036 9cd7cbd1 2020-12-07 stsp }
3037 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3038 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3039 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3040 5036bf37 2018-09-24 stsp goto done;
3041 5036bf37 2018-09-24 stsp }
3042 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3043 e5a0f69f 2018-08-18 stsp
3044 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3045 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3046 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3047 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3048 11b20872 2019-11-08 stsp if (err)
3049 11b20872 2019-11-08 stsp goto done;
3050 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3051 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3052 11b20872 2019-11-08 stsp if (err) {
3053 11b20872 2019-11-08 stsp free_colors(&s->colors);
3054 11b20872 2019-11-08 stsp goto done;
3055 11b20872 2019-11-08 stsp }
3056 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3057 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3058 11b20872 2019-11-08 stsp if (err) {
3059 11b20872 2019-11-08 stsp free_colors(&s->colors);
3060 11b20872 2019-11-08 stsp goto done;
3061 11b20872 2019-11-08 stsp }
3062 11b20872 2019-11-08 stsp }
3063 11b20872 2019-11-08 stsp
3064 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3065 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3066 571ccd73 2022-07-19 mark view->resize = resize_log_view;
3067 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3068 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3069 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3070 1a76625f 2018-10-22 stsp
3071 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds == NULL) {
3072 74467cc8 2022-06-15 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3073 74467cc8 2022-06-15 stsp if (err)
3074 74467cc8 2022-06-15 stsp goto done;
3075 74467cc8 2022-06-15 stsp }
3076 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3077 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3078 0ae84acc 2022-06-15 tracey if (err)
3079 0ae84acc 2022-06-15 tracey goto done;
3080 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3081 b672a97a 2020-01-27 stsp !s->log_branches);
3082 1a76625f 2018-10-22 stsp if (err)
3083 1a76625f 2018-10-22 stsp goto done;
3084 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3085 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3086 c5b78334 2020-01-12 stsp if (err)
3087 c5b78334 2020-01-12 stsp goto done;
3088 1a76625f 2018-10-22 stsp
3089 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3090 1a76625f 2018-10-22 stsp if (errcode) {
3091 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3092 1a76625f 2018-10-22 stsp goto done;
3093 1a76625f 2018-10-22 stsp }
3094 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3095 7c1452c1 2020-03-26 stsp if (errcode) {
3096 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3097 7c1452c1 2020-03-26 stsp goto done;
3098 7c1452c1 2020-03-26 stsp }
3099 1a76625f 2018-10-22 stsp
3100 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3101 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3102 1a76625f 2018-10-22 stsp s->thread_args.commits = &s->commits;
3103 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3104 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3105 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3106 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3107 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3108 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3109 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3110 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3111 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3112 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3113 ba4f502b 2018-08-04 stsp done:
3114 1a76625f 2018-10-22 stsp if (err)
3115 1a76625f 2018-10-22 stsp close_log_view(view);
3116 ba4f502b 2018-08-04 stsp return err;
3117 ba4f502b 2018-08-04 stsp }
3118 ba4f502b 2018-08-04 stsp
3119 e5a0f69f 2018-08-18 stsp static const struct got_error *
3120 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3121 ba4f502b 2018-08-04 stsp {
3122 f2f6d207 2020-11-24 stsp const struct got_error *err;
3123 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3124 ba4f502b 2018-08-04 stsp
3125 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
3126 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3127 2b380cc8 2018-10-24 stsp &s->thread_args);
3128 2b380cc8 2018-10-24 stsp if (errcode)
3129 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3130 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3131 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3132 f2f6d207 2020-11-24 stsp if (err)
3133 f2f6d207 2020-11-24 stsp return err;
3134 f2f6d207 2020-11-24 stsp }
3135 2b380cc8 2018-10-24 stsp }
3136 2b380cc8 2018-10-24 stsp
3137 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3138 b880cc75 2022-06-30 mark }
3139 b880cc75 2022-06-30 mark
3140 b880cc75 2022-06-30 mark static void
3141 b880cc75 2022-06-30 mark log_move_cursor_up(struct tog_view *view, int page, int home)
3142 b880cc75 2022-06-30 mark {
3143 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3144 b880cc75 2022-06-30 mark
3145 b880cc75 2022-06-30 mark if (s->selected_entry->idx == 0)
3146 b880cc75 2022-06-30 mark view->count = 0;
3147 b880cc75 2022-06-30 mark if (s->first_displayed_entry == NULL)
3148 b880cc75 2022-06-30 mark return;
3149 b880cc75 2022-06-30 mark
3150 b880cc75 2022-06-30 mark if ((page && TAILQ_FIRST(&s->commits.head) == s->first_displayed_entry)
3151 b880cc75 2022-06-30 mark || home)
3152 b880cc75 2022-06-30 mark s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3153 b880cc75 2022-06-30 mark
3154 b880cc75 2022-06-30 mark if (!page && !home && s->selected > 0)
3155 b880cc75 2022-06-30 mark --s->selected;
3156 b880cc75 2022-06-30 mark else
3157 b880cc75 2022-06-30 mark log_scroll_up(s, home ? s->commits.ncommits : MAX(page, 1));
3158 b880cc75 2022-06-30 mark
3159 b880cc75 2022-06-30 mark select_commit(s);
3160 b880cc75 2022-06-30 mark return;
3161 b880cc75 2022-06-30 mark }
3162 b880cc75 2022-06-30 mark
3163 b880cc75 2022-06-30 mark static const struct got_error *
3164 b880cc75 2022-06-30 mark log_move_cursor_down(struct tog_view *view, int page)
3165 b880cc75 2022-06-30 mark {
3166 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3167 b880cc75 2022-06-30 mark const struct got_error *err = NULL;
3168 631e7531 2022-08-12 mark int eos = view->nlines - 2;
3169 b880cc75 2022-06-30 mark
3170 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3171 b880cc75 2022-06-30 mark s->selected_entry->idx >= s->commits.ncommits - 1)
3172 b880cc75 2022-06-30 mark return NULL;
3173 b880cc75 2022-06-30 mark
3174 631e7531 2022-08-12 mark if (view_is_hsplit_top(view))
3175 631e7531 2022-08-12 mark --eos; /* border consumes the last line */
3176 b880cc75 2022-06-30 mark
3177 631e7531 2022-08-12 mark if (!page) {
3178 b880cc75 2022-06-30 mark if (s->selected < MIN(eos, s->commits.ncommits - 1))
3179 b880cc75 2022-06-30 mark ++s->selected;
3180 b880cc75 2022-06-30 mark else
3181 b880cc75 2022-06-30 mark err = log_scroll_down(view, 1);
3182 11edf34c 2022-08-12 mark } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3183 631e7531 2022-08-12 mark struct commit_queue_entry *entry;
3184 631e7531 2022-08-12 mark int n;
3185 631e7531 2022-08-12 mark
3186 631e7531 2022-08-12 mark s->selected = 0;
3187 631e7531 2022-08-12 mark entry = TAILQ_LAST(&s->commits.head, commit_queue_head);
3188 631e7531 2022-08-12 mark s->last_displayed_entry = entry;
3189 631e7531 2022-08-12 mark for (n = 0; n <= eos; n++) {
3190 631e7531 2022-08-12 mark if (entry == NULL)
3191 631e7531 2022-08-12 mark break;
3192 631e7531 2022-08-12 mark s->first_displayed_entry = entry;
3193 631e7531 2022-08-12 mark entry = TAILQ_PREV(entry, commit_queue_head, entry);
3194 631e7531 2022-08-12 mark }
3195 631e7531 2022-08-12 mark if (n > 0)
3196 631e7531 2022-08-12 mark s->selected = n - 1;
3197 b880cc75 2022-06-30 mark } else {
3198 cbb0c8d7 2022-08-12 mark if (s->last_displayed_entry->idx == s->commits.ncommits - 1 &&
3199 cbb0c8d7 2022-08-12 mark s->thread_args.log_complete)
3200 cbb0c8d7 2022-08-12 mark s->selected += MIN(page,
3201 cbb0c8d7 2022-08-12 mark s->commits.ncommits - s->selected_entry->idx - 1);
3202 cbb0c8d7 2022-08-12 mark else
3203 cbb0c8d7 2022-08-12 mark err = log_scroll_down(view, page);
3204 b880cc75 2022-06-30 mark }
3205 b880cc75 2022-06-30 mark if (err)
3206 b880cc75 2022-06-30 mark return err;
3207 b880cc75 2022-06-30 mark
3208 9b058f45 2022-06-30 mark /*
3209 9b058f45 2022-06-30 mark * We might necessarily overshoot in horizontal
3210 9b058f45 2022-06-30 mark * splits; if so, select the last displayed commit.
3211 9b058f45 2022-06-30 mark */
3212 374f69dd 2022-08-13 stsp if (s->first_displayed_entry && s->last_displayed_entry) {
3213 374f69dd 2022-08-13 stsp s->selected = MIN(s->selected,
3214 374f69dd 2022-08-13 stsp s->last_displayed_entry->idx -
3215 374f69dd 2022-08-13 stsp s->first_displayed_entry->idx);
3216 374f69dd 2022-08-13 stsp }
3217 9b058f45 2022-06-30 mark
3218 b880cc75 2022-06-30 mark select_commit(s);
3219 b880cc75 2022-06-30 mark
3220 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3221 b880cc75 2022-06-30 mark s->selected_entry->idx == s->commits.ncommits - 1)
3222 b880cc75 2022-06-30 mark view->count = 0;
3223 b880cc75 2022-06-30 mark
3224 b880cc75 2022-06-30 mark return NULL;
3225 e5a0f69f 2018-08-18 stsp }
3226 04cc582a 2018-08-01 stsp
3227 9b058f45 2022-06-30 mark static void
3228 9b058f45 2022-06-30 mark view_get_split(struct tog_view *view, int *y, int *x)
3229 9b058f45 2022-06-30 mark {
3230 76364b2d 2022-07-02 mark *x = 0;
3231 76364b2d 2022-07-02 mark *y = 0;
3232 76364b2d 2022-07-02 mark
3233 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3234 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_y)
3235 3c1dfe12 2022-07-08 mark *y = view->child->resized_y;
3236 7532ccda 2022-07-11 mark else if (view->resized_y)
3237 7532ccda 2022-07-11 mark *y = view->resized_y;
3238 3c1dfe12 2022-07-08 mark else
3239 3c1dfe12 2022-07-08 mark *y = view_split_begin_y(view->lines);
3240 7532ccda 2022-07-11 mark } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3241 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_x)
3242 3c1dfe12 2022-07-08 mark *x = view->child->resized_x;
3243 7532ccda 2022-07-11 mark else if (view->resized_x)
3244 7532ccda 2022-07-11 mark *x = view->resized_x;
3245 3c1dfe12 2022-07-08 mark else
3246 3c1dfe12 2022-07-08 mark *x = view_split_begin_x(view->begin_x);
3247 3c1dfe12 2022-07-08 mark }
3248 9b058f45 2022-06-30 mark }
3249 9b058f45 2022-06-30 mark
3250 9b058f45 2022-06-30 mark /* Split view horizontally at y and offset view->state->selected line. */
3251 e5a0f69f 2018-08-18 stsp static const struct got_error *
3252 9b058f45 2022-06-30 mark view_init_hsplit(struct tog_view *view, int y)
3253 9b058f45 2022-06-30 mark {
3254 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
3255 9b058f45 2022-06-30 mark
3256 9b058f45 2022-06-30 mark view->nlines = y;
3257 d2366e29 2022-07-07 mark view->ncols = COLS;
3258 9b058f45 2022-06-30 mark err = view_resize(view);
3259 9b058f45 2022-06-30 mark if (err)
3260 9b058f45 2022-06-30 mark return err;
3261 9b058f45 2022-06-30 mark
3262 9b058f45 2022-06-30 mark err = offset_selection_down(view);
3263 9b058f45 2022-06-30 mark
3264 9b058f45 2022-06-30 mark return err;
3265 94b80cfa 2022-08-01 mark }
3266 94b80cfa 2022-08-01 mark
3267 94b80cfa 2022-08-01 mark static const struct got_error *
3268 94b80cfa 2022-08-01 mark log_goto_line(struct tog_view *view, int nlines)
3269 94b80cfa 2022-08-01 mark {
3270 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
3271 94b80cfa 2022-08-01 mark struct tog_log_view_state *s = &view->state.log;
3272 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
3273 374f69dd 2022-08-13 stsp
3274 374f69dd 2022-08-13 stsp if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3275 374f69dd 2022-08-13 stsp return NULL;
3276 94b80cfa 2022-08-01 mark
3277 94b80cfa 2022-08-01 mark g = view->gline;
3278 94b80cfa 2022-08-01 mark view->gline = 0;
3279 94b80cfa 2022-08-01 mark
3280 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
3281 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
3282 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
3283 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
3284 94b80cfa 2022-08-01 mark select_commit(s);
3285 94b80cfa 2022-08-01 mark return NULL;
3286 94b80cfa 2022-08-01 mark }
3287 94b80cfa 2022-08-01 mark
3288 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
3289 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view, g - idx - 1);
3290 94b80cfa 2022-08-01 mark if (!err && g > s->selected_entry->idx + 1)
3291 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view,
3292 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1);
3293 94b80cfa 2022-08-01 mark if (err)
3294 94b80cfa 2022-08-01 mark return err;
3295 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
3296 94b80cfa 2022-08-01 mark log_move_cursor_up(view, idx - g + 1, 0);
3297 94b80cfa 2022-08-01 mark
3298 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
3299 94b80cfa 2022-08-01 mark s->selected = g - 1;
3300 94b80cfa 2022-08-01 mark
3301 94b80cfa 2022-08-01 mark select_commit(s);
3302 94b80cfa 2022-08-01 mark return NULL;
3303 94b80cfa 2022-08-01 mark
3304 9b058f45 2022-06-30 mark }
3305 9b058f45 2022-06-30 mark
3306 9b058f45 2022-06-30 mark static const struct got_error *
3307 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3308 e5a0f69f 2018-08-18 stsp {
3309 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3310 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3311 631e7531 2022-08-12 mark int eos, nscroll;
3312 80ddbec8 2018-04-29 stsp
3313 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3314 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3315 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3316 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3317 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, s->commits.ncommits);
3318 0dca135e 2022-06-30 mark s->thread_args.load_all = 0;
3319 fb280deb 2021-08-30 stsp }
3320 11edf34c 2022-08-12 mark if (err)
3321 11edf34c 2022-08-12 mark return err;
3322 528dedf3 2021-08-30 stsp }
3323 0dca135e 2022-06-30 mark
3324 0dca135e 2022-06-30 mark eos = nscroll = view->nlines - 1;
3325 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
3326 0dca135e 2022-06-30 mark --eos; /* border */
3327 94b80cfa 2022-08-01 mark
3328 94b80cfa 2022-08-01 mark if (view->gline)
3329 94b80cfa 2022-08-01 mark return log_goto_line(view, eos);
3330 0dca135e 2022-06-30 mark
3331 528dedf3 2021-08-30 stsp switch (ch) {
3332 1e37a5c2 2019-05-12 jcs case 'q':
3333 1e37a5c2 2019-05-12 jcs s->quit = 1;
3334 145b6838 2022-06-16 stsp break;
3335 145b6838 2022-06-16 stsp case '0':
3336 145b6838 2022-06-16 stsp view->x = 0;
3337 145b6838 2022-06-16 stsp break;
3338 145b6838 2022-06-16 stsp case '$':
3339 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 2, 0);
3340 640cd7ff 2022-06-22 mark view->count = 0;
3341 145b6838 2022-06-16 stsp break;
3342 145b6838 2022-06-16 stsp case KEY_RIGHT:
3343 145b6838 2022-06-16 stsp case 'l':
3344 145b6838 2022-06-16 stsp if (view->x + view->ncols / 2 < view->maxx)
3345 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
3346 640cd7ff 2022-06-22 mark else
3347 640cd7ff 2022-06-22 mark view->count = 0;
3348 1e37a5c2 2019-05-12 jcs break;
3349 145b6838 2022-06-16 stsp case KEY_LEFT:
3350 145b6838 2022-06-16 stsp case 'h':
3351 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
3352 640cd7ff 2022-06-22 mark if (view->x <= 0)
3353 640cd7ff 2022-06-22 mark view->count = 0;
3354 145b6838 2022-06-16 stsp break;
3355 1e37a5c2 2019-05-12 jcs case 'k':
3356 1e37a5c2 2019-05-12 jcs case KEY_UP:
3357 1e37a5c2 2019-05-12 jcs case '<':
3358 1e37a5c2 2019-05-12 jcs case ',':
3359 02ffd0d5 2021-10-17 stsp case CTRL('p'):
3360 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 0);
3361 912a3f79 2021-08-30 j break;
3362 912a3f79 2021-08-30 j case 'g':
3363 912a3f79 2021-08-30 j case KEY_HOME:
3364 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 1);
3365 640cd7ff 2022-06-22 mark view->count = 0;
3366 1e37a5c2 2019-05-12 jcs break;
3367 83cc4199 2022-06-13 stsp case CTRL('u'):
3368 33c3719a 2022-06-15 stsp case 'u':
3369 83cc4199 2022-06-13 stsp nscroll /= 2;
3370 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3371 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3372 a4292ac5 2019-05-12 jcs case CTRL('b'):
3373 61417565 2022-06-20 mark case 'b':
3374 b880cc75 2022-06-30 mark log_move_cursor_up(view, nscroll, 0);
3375 1e37a5c2 2019-05-12 jcs break;
3376 1e37a5c2 2019-05-12 jcs case 'j':
3377 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3378 1e37a5c2 2019-05-12 jcs case '>':
3379 1e37a5c2 2019-05-12 jcs case '.':
3380 02ffd0d5 2021-10-17 stsp case CTRL('n'):
3381 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, 0);
3382 912a3f79 2021-08-30 j break;
3383 10aab77f 2022-07-19 op case '@':
3384 10aab77f 2022-07-19 op s->use_committer = !s->use_committer;
3385 10aab77f 2022-07-19 op break;
3386 912a3f79 2021-08-30 j case 'G':
3387 912a3f79 2021-08-30 j case KEY_END: {
3388 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3389 912a3f79 2021-08-30 j * traverse them all. */
3390 640cd7ff 2022-06-22 mark view->count = 0;
3391 631e7531 2022-08-12 mark s->thread_args.load_all = 1;
3392 631e7531 2022-08-12 mark if (!s->thread_args.log_complete)
3393 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3394 631e7531 2022-08-12 mark err = log_move_cursor_down(view, s->commits.ncommits);
3395 631e7531 2022-08-12 mark s->thread_args.load_all = 0;
3396 1e37a5c2 2019-05-12 jcs break;
3397 912a3f79 2021-08-30 j }
3398 80b7e8da 2022-06-11 stsp case CTRL('d'):
3399 33c3719a 2022-06-15 stsp case 'd':
3400 83cc4199 2022-06-13 stsp nscroll /= 2;
3401 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3402 83cc4199 2022-06-13 stsp case KEY_NPAGE:
3403 61417565 2022-06-20 mark case CTRL('f'):
3404 48bb96f0 2022-06-20 naddy case 'f':
3405 b880cc75 2022-06-30 mark case ' ':
3406 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, nscroll);
3407 1e37a5c2 2019-05-12 jcs break;
3408 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3409 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3410 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3411 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
3412 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
3413 2b779855 2020-12-05 naddy select_commit(s);
3414 0bf7f153 2020-12-02 naddy if (s->commits.ncommits < view->nlines - 1 &&
3415 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3416 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3417 0bf7f153 2020-12-02 naddy s->commits.ncommits;
3418 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3419 0bf7f153 2020-12-02 naddy }
3420 1e37a5c2 2019-05-12 jcs break;
3421 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3422 49b24ee5 2022-07-03 mark case '\r':
3423 640cd7ff 2022-06-22 mark view->count = 0;
3424 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3425 e5a0f69f 2018-08-18 stsp break;
3426 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3427 1e37a5c2 2019-05-12 jcs break;
3428 5e98fb33 2022-07-22 mark case 'T':
3429 640cd7ff 2022-06-22 mark view->count = 0;
3430 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3431 5036bf37 2018-09-24 stsp break;
3432 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
3433 1e37a5c2 2019-05-12 jcs break;
3434 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3435 21355643 2020-12-06 stsp case CTRL('l'):
3436 21355643 2020-12-06 stsp case 'B':
3437 640cd7ff 2022-06-22 mark view->count = 0;
3438 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3439 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3440 1e37a5c2 2019-05-12 jcs break;
3441 21355643 2020-12-06 stsp err = stop_log_thread(s);
3442 74cfe85e 2020-10-20 stsp if (err)
3443 74cfe85e 2020-10-20 stsp return err;
3444 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3445 21355643 2020-12-06 stsp char *parent_path;
3446 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3447 21355643 2020-12-06 stsp if (err)
3448 21355643 2020-12-06 stsp return err;
3449 21355643 2020-12-06 stsp free(s->in_repo_path);
3450 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3451 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3452 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3453 21355643 2020-12-06 stsp struct got_object_id *start_id;
3454 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3455 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3456 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3457 21355643 2020-12-06 stsp if (err)
3458 21355643 2020-12-06 stsp return err;
3459 21355643 2020-12-06 stsp free(s->start_id);
3460 21355643 2020-12-06 stsp s->start_id = start_id;
3461 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3462 21355643 2020-12-06 stsp } else /* 'B' */
3463 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3464 21355643 2020-12-06 stsp
3465 b0dd8d27 2022-06-16 stsp if (s->thread_args.pack_fds == NULL) {
3466 b0dd8d27 2022-06-16 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3467 b0dd8d27 2022-06-16 stsp if (err)
3468 b0dd8d27 2022-06-16 stsp return err;
3469 b0dd8d27 2022-06-16 stsp }
3470 74467cc8 2022-06-15 stsp err = got_repo_open(&s->thread_args.repo,
3471 74467cc8 2022-06-15 stsp got_repo_get_path(s->repo), NULL,
3472 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3473 74cfe85e 2020-10-20 stsp if (err)
3474 21355643 2020-12-06 stsp return err;
3475 51a10b52 2020-12-26 stsp tog_free_refs();
3476 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, 0);
3477 ca51c541 2020-12-07 stsp if (err)
3478 ca51c541 2020-12-07 stsp return err;
3479 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3480 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3481 d01904d4 2019-06-25 stsp if (err)
3482 d01904d4 2019-06-25 stsp return err;
3483 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3484 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3485 b672a97a 2020-01-27 stsp if (err)
3486 b672a97a 2020-01-27 stsp return err;
3487 21355643 2020-12-06 stsp free_commits(&s->commits);
3488 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3489 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3490 21355643 2020-12-06 stsp s->selected_entry = NULL;
3491 21355643 2020-12-06 stsp s->selected = 0;
3492 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3493 21355643 2020-12-06 stsp s->quit = 0;
3494 9b058f45 2022-06-30 mark s->thread_args.commits_needed = view->lines;
3495 dfee752e 2022-06-18 op s->matched_entry = NULL;
3496 dfee752e 2022-06-18 op s->search_entry = NULL;
3497 01a7bcaf 2022-07-22 mark view->offset = 0;
3498 d01904d4 2019-06-25 stsp break;
3499 5e98fb33 2022-07-22 mark case 'R':
3500 640cd7ff 2022-06-22 mark view->count = 0;
3501 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
3502 6458efa5 2020-11-24 stsp break;
3503 1e37a5c2 2019-05-12 jcs default:
3504 640cd7ff 2022-06-22 mark view->count = 0;
3505 1e37a5c2 2019-05-12 jcs break;
3506 899d86c2 2018-05-10 stsp }
3507 e5a0f69f 2018-08-18 stsp
3508 80ddbec8 2018-04-29 stsp return err;
3509 80ddbec8 2018-04-29 stsp }
3510 80ddbec8 2018-04-29 stsp
3511 4ed7e80c 2018-05-20 stsp static const struct got_error *
3512 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3513 c2db6724 2019-01-04 stsp {
3514 c2db6724 2019-01-04 stsp const struct got_error *error;
3515 c2db6724 2019-01-04 stsp
3516 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3517 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3518 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3519 37c06ea4 2019-07-15 stsp #endif
3520 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3521 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3522 c2db6724 2019-01-04 stsp
3523 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3524 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3525 c2db6724 2019-01-04 stsp
3526 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3527 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3528 c2db6724 2019-01-04 stsp
3529 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3530 c2db6724 2019-01-04 stsp if (error != NULL)
3531 c2db6724 2019-01-04 stsp return error;
3532 c2db6724 2019-01-04 stsp
3533 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3534 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3535 c2db6724 2019-01-04 stsp
3536 c2db6724 2019-01-04 stsp return NULL;
3537 c2db6724 2019-01-04 stsp }
3538 c2db6724 2019-01-04 stsp
3539 a915003a 2019-02-05 stsp static void
3540 a915003a 2019-02-05 stsp init_curses(void)
3541 a915003a 2019-02-05 stsp {
3542 2497f032 2022-05-31 stsp /*
3543 2497f032 2022-05-31 stsp * Override default signal handlers before starting ncurses.
3544 2497f032 2022-05-31 stsp * This should prevent ncurses from installing its own
3545 2497f032 2022-05-31 stsp * broken cleanup() signal handler.
3546 2497f032 2022-05-31 stsp */
3547 2497f032 2022-05-31 stsp signal(SIGWINCH, tog_sigwinch);
3548 2497f032 2022-05-31 stsp signal(SIGPIPE, tog_sigpipe);
3549 2497f032 2022-05-31 stsp signal(SIGCONT, tog_sigcont);
3550 2497f032 2022-05-31 stsp signal(SIGINT, tog_sigint);
3551 2497f032 2022-05-31 stsp signal(SIGTERM, tog_sigterm);
3552 2497f032 2022-05-31 stsp
3553 a915003a 2019-02-05 stsp initscr();
3554 a915003a 2019-02-05 stsp cbreak();
3555 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3556 a915003a 2019-02-05 stsp noecho();
3557 a915003a 2019-02-05 stsp nonl();
3558 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3559 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3560 a915003a 2019-02-05 stsp curs_set(0);
3561 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3562 6d17833f 2019-11-08 stsp start_color();
3563 6d17833f 2019-11-08 stsp use_default_colors();
3564 6d17833f 2019-11-08 stsp }
3565 a915003a 2019-02-05 stsp }
3566 a915003a 2019-02-05 stsp
3567 c2db6724 2019-01-04 stsp static const struct got_error *
3568 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3569 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3570 f135c941 2020-02-20 stsp {
3571 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3572 f135c941 2020-02-20 stsp
3573 f135c941 2020-02-20 stsp if (argc == 0) {
3574 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3575 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3576 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3577 f135c941 2020-02-20 stsp return NULL;
3578 f135c941 2020-02-20 stsp }
3579 f135c941 2020-02-20 stsp
3580 f135c941 2020-02-20 stsp if (worktree) {
3581 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3582 bfd61697 2020-11-14 stsp char *p;
3583 f135c941 2020-02-20 stsp
3584 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3585 f135c941 2020-02-20 stsp if (err)
3586 f135c941 2020-02-20 stsp return err;
3587 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3588 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3589 bfd61697 2020-11-14 stsp p) == -1) {
3590 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3591 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3592 f135c941 2020-02-20 stsp }
3593 f135c941 2020-02-20 stsp free(p);
3594 f135c941 2020-02-20 stsp } else
3595 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3596 f135c941 2020-02-20 stsp
3597 f135c941 2020-02-20 stsp return err;
3598 f135c941 2020-02-20 stsp }
3599 f135c941 2020-02-20 stsp
3600 f135c941 2020-02-20 stsp static const struct got_error *
3601 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3602 9f7d7167 2018-04-29 stsp {
3603 80ddbec8 2018-04-29 stsp const struct got_error *error;
3604 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3605 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3606 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3607 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3608 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3609 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3610 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3611 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3612 04cc582a 2018-08-01 stsp struct tog_view *view;
3613 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
3614 80ddbec8 2018-04-29 stsp
3615 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3616 80ddbec8 2018-04-29 stsp switch (ch) {
3617 b672a97a 2020-01-27 stsp case 'b':
3618 b672a97a 2020-01-27 stsp log_branches = 1;
3619 b672a97a 2020-01-27 stsp break;
3620 80ddbec8 2018-04-29 stsp case 'c':
3621 80ddbec8 2018-04-29 stsp start_commit = optarg;
3622 80ddbec8 2018-04-29 stsp break;
3623 ecb28ae0 2018-07-16 stsp case 'r':
3624 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3625 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3626 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3627 9ba1d308 2019-10-21 stsp optarg);
3628 ecb28ae0 2018-07-16 stsp break;
3629 80ddbec8 2018-04-29 stsp default:
3630 17020d27 2019-03-07 stsp usage_log();
3631 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3632 80ddbec8 2018-04-29 stsp }
3633 80ddbec8 2018-04-29 stsp }
3634 80ddbec8 2018-04-29 stsp
3635 80ddbec8 2018-04-29 stsp argc -= optind;
3636 80ddbec8 2018-04-29 stsp argv += optind;
3637 80ddbec8 2018-04-29 stsp
3638 f135c941 2020-02-20 stsp if (argc > 1)
3639 f135c941 2020-02-20 stsp usage_log();
3640 963f97a1 2019-03-18 stsp
3641 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
3642 0ae84acc 2022-06-15 tracey if (error != NULL)
3643 0ae84acc 2022-06-15 tracey goto done;
3644 0ae84acc 2022-06-15 tracey
3645 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3646 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3647 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3648 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3649 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3650 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3651 c156c7a4 2020-12-18 stsp goto done;
3652 a1fbf39a 2019-08-11 stsp if (worktree)
3653 6962eb72 2020-02-20 stsp repo_path =
3654 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
3655 a1fbf39a 2019-08-11 stsp else
3656 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
3657 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
3658 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
3659 c156c7a4 2020-12-18 stsp goto done;
3660 c156c7a4 2020-12-18 stsp }
3661 ecb28ae0 2018-07-16 stsp }
3662 ecb28ae0 2018-07-16 stsp
3663 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
3664 80ddbec8 2018-04-29 stsp if (error != NULL)
3665 ecb28ae0 2018-07-16 stsp goto done;
3666 80ddbec8 2018-04-29 stsp
3667 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
3668 f135c941 2020-02-20 stsp repo, worktree);
3669 f135c941 2020-02-20 stsp if (error)
3670 f135c941 2020-02-20 stsp goto done;
3671 f135c941 2020-02-20 stsp
3672 f135c941 2020-02-20 stsp init_curses();
3673 f135c941 2020-02-20 stsp
3674 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
3675 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3676 c02c541e 2019-03-29 stsp if (error)
3677 c02c541e 2019-03-29 stsp goto done;
3678 c02c541e 2019-03-29 stsp
3679 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
3680 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
3681 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
3682 87670572 2020-12-26 naddy if (error)
3683 87670572 2020-12-26 naddy goto done;
3684 87670572 2020-12-26 naddy }
3685 51a10b52 2020-12-26 stsp
3686 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
3687 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
3688 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
3689 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
3690 d8f38dc4 2020-12-05 stsp if (error)
3691 d8f38dc4 2020-12-05 stsp goto done;
3692 d8f38dc4 2020-12-05 stsp head_ref_name = label;
3693 d8f38dc4 2020-12-05 stsp } else {
3694 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
3695 d8f38dc4 2020-12-05 stsp if (error == NULL)
3696 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
3697 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
3698 d8f38dc4 2020-12-05 stsp goto done;
3699 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
3700 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
3701 d8f38dc4 2020-12-05 stsp if (error)
3702 d8f38dc4 2020-12-05 stsp goto done;
3703 d8f38dc4 2020-12-05 stsp }
3704 8b473291 2019-02-21 stsp
3705 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
3706 04cc582a 2018-08-01 stsp if (view == NULL) {
3707 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3708 04cc582a 2018-08-01 stsp goto done;
3709 04cc582a 2018-08-01 stsp }
3710 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
3711 f135c941 2020-02-20 stsp in_repo_path, log_branches);
3712 ba4f502b 2018-08-04 stsp if (error)
3713 ba4f502b 2018-08-04 stsp goto done;
3714 2fc00ff4 2019-08-31 stsp if (worktree) {
3715 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
3716 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
3717 2fc00ff4 2019-08-31 stsp worktree = NULL;
3718 2fc00ff4 2019-08-31 stsp }
3719 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3720 ecb28ae0 2018-07-16 stsp done:
3721 f135c941 2020-02-20 stsp free(in_repo_path);
3722 ecb28ae0 2018-07-16 stsp free(repo_path);
3723 ecb28ae0 2018-07-16 stsp free(cwd);
3724 899d86c2 2018-05-10 stsp free(start_id);
3725 d8f38dc4 2020-12-05 stsp free(label);
3726 d8f38dc4 2020-12-05 stsp if (ref)
3727 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
3728 1d0f4054 2021-06-17 stsp if (repo) {
3729 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
3730 1d0f4054 2021-06-17 stsp if (error == NULL)
3731 1d0f4054 2021-06-17 stsp error = close_err;
3732 1d0f4054 2021-06-17 stsp }
3733 ec142235 2019-03-07 stsp if (worktree)
3734 ec142235 2019-03-07 stsp got_worktree_close(worktree);
3735 0ae84acc 2022-06-15 tracey if (pack_fds) {
3736 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
3737 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
3738 0ae84acc 2022-06-15 tracey if (error == NULL)
3739 0ae84acc 2022-06-15 tracey error = pack_err;
3740 0ae84acc 2022-06-15 tracey }
3741 51a10b52 2020-12-26 stsp tog_free_refs();
3742 80ddbec8 2018-04-29 stsp return error;
3743 9f7d7167 2018-04-29 stsp }
3744 9f7d7167 2018-04-29 stsp
3745 4ed7e80c 2018-05-20 stsp __dead static void
3746 9f7d7167 2018-04-29 stsp usage_diff(void)
3747 9f7d7167 2018-04-29 stsp {
3748 80ddbec8 2018-04-29 stsp endwin();
3749 827a167b 2022-08-16 stsp fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
3750 827a167b 2022-08-16 stsp "object1 object2\n", getprogname());
3751 9f7d7167 2018-04-29 stsp exit(1);
3752 b304db33 2018-05-20 stsp }
3753 b304db33 2018-05-20 stsp
3754 6d17833f 2019-11-08 stsp static int
3755 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
3756 41605754 2020-11-12 stsp regmatch_t *regmatch)
3757 6d17833f 2019-11-08 stsp {
3758 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
3759 6d17833f 2019-11-08 stsp }
3760 6d17833f 2019-11-08 stsp
3761 336075a4 2022-06-25 op static struct tog_color *
3762 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
3763 6d17833f 2019-11-08 stsp {
3764 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
3765 6d17833f 2019-11-08 stsp
3766 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
3767 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
3768 6d17833f 2019-11-08 stsp return tc;
3769 6d17833f 2019-11-08 stsp }
3770 6d17833f 2019-11-08 stsp
3771 6d17833f 2019-11-08 stsp return NULL;
3772 6d17833f 2019-11-08 stsp }
3773 6d17833f 2019-11-08 stsp
3774 4ed7e80c 2018-05-20 stsp static const struct got_error *
3775 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
3776 1853e0f4 2022-06-16 stsp WINDOW *window, int skipcol, regmatch_t *regmatch)
3777 41605754 2020-11-12 stsp {
3778 41605754 2020-11-12 stsp const struct got_error *err = NULL;
3779 44a87665 2022-06-16 stsp char *exstr = NULL;
3780 1853e0f4 2022-06-16 stsp wchar_t *wline = NULL;
3781 1853e0f4 2022-06-16 stsp int rme, rms, n, width, scrollx;
3782 1853e0f4 2022-06-16 stsp int width0 = 0, width1 = 0, width2 = 0;
3783 1853e0f4 2022-06-16 stsp char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
3784 41605754 2020-11-12 stsp
3785 41605754 2020-11-12 stsp *wtotal = 0;
3786 1853e0f4 2022-06-16 stsp
3787 145b6838 2022-06-16 stsp rms = regmatch->rm_so;
3788 145b6838 2022-06-16 stsp rme = regmatch->rm_eo;
3789 41605754 2020-11-12 stsp
3790 44a87665 2022-06-16 stsp err = expand_tab(&exstr, line);
3791 44a87665 2022-06-16 stsp if (err)
3792 44a87665 2022-06-16 stsp return err;
3793 44a87665 2022-06-16 stsp
3794 1853e0f4 2022-06-16 stsp /* Split the line into 3 segments, according to match offsets. */
3795 44a87665 2022-06-16 stsp seg0 = strndup(exstr, rms);
3796 44a87665 2022-06-16 stsp if (seg0 == NULL) {
3797 44a87665 2022-06-16 stsp err = got_error_from_errno("strndup");
3798 44a87665 2022-06-16 stsp goto done;
3799 44a87665 2022-06-16 stsp }
3800 44a87665 2022-06-16 stsp seg1 = strndup(exstr + rms, rme - rms);
3801 1853e0f4 2022-06-16 stsp if (seg1 == NULL) {
3802 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
3803 1853e0f4 2022-06-16 stsp goto done;
3804 1853e0f4 2022-06-16 stsp }
3805 44a87665 2022-06-16 stsp seg2 = strdup(exstr + rme);
3806 95d136ac 2022-06-16 stsp if (seg2 == 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 145b6838 2022-06-16 stsp
3811 145b6838 2022-06-16 stsp /* draw up to matched token if we haven't scrolled past it */
3812 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
3813 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3814 1853e0f4 2022-06-16 stsp if (err)
3815 1853e0f4 2022-06-16 stsp goto done;
3816 1853e0f4 2022-06-16 stsp n = MAX(width0 - skipcol, 0);
3817 145b6838 2022-06-16 stsp if (n) {
3818 1853e0f4 2022-06-16 stsp free(wline);
3819 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, &scrollx, seg0, skipcol,
3820 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
3821 1853e0f4 2022-06-16 stsp if (err)
3822 1853e0f4 2022-06-16 stsp goto done;
3823 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
3824 1853e0f4 2022-06-16 stsp wlimit -= width;
3825 1853e0f4 2022-06-16 stsp *wtotal += width;
3826 41605754 2020-11-12 stsp }
3827 41605754 2020-11-12 stsp
3828 41605754 2020-11-12 stsp if (wlimit > 0) {
3829 1853e0f4 2022-06-16 stsp int i = 0, w = 0;
3830 1853e0f4 2022-06-16 stsp size_t wlen;
3831 1853e0f4 2022-06-16 stsp
3832 1853e0f4 2022-06-16 stsp free(wline);
3833 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
3834 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3835 1853e0f4 2022-06-16 stsp if (err)
3836 1853e0f4 2022-06-16 stsp goto done;
3837 1853e0f4 2022-06-16 stsp wlen = wcslen(wline);
3838 1853e0f4 2022-06-16 stsp while (i < wlen) {
3839 1853e0f4 2022-06-16 stsp width = wcwidth(wline[i]);
3840 1853e0f4 2022-06-16 stsp if (width == -1) {
3841 1853e0f4 2022-06-16 stsp /* should not happen, tabs are expanded */
3842 1853e0f4 2022-06-16 stsp err = got_error(GOT_ERR_RANGE);
3843 1853e0f4 2022-06-16 stsp goto done;
3844 1853e0f4 2022-06-16 stsp }
3845 1853e0f4 2022-06-16 stsp if (width0 + w + width > skipcol)
3846 1853e0f4 2022-06-16 stsp break;
3847 61417565 2022-06-20 mark w += width;
3848 1853e0f4 2022-06-16 stsp i++;
3849 41605754 2020-11-12 stsp }
3850 145b6838 2022-06-16 stsp /* draw (visible part of) matched token (if scrolled into it) */
3851 1853e0f4 2022-06-16 stsp if (width1 - w > 0) {
3852 145b6838 2022-06-16 stsp wattron(window, A_STANDOUT);
3853 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[i]);
3854 145b6838 2022-06-16 stsp wattroff(window, A_STANDOUT);
3855 1853e0f4 2022-06-16 stsp wlimit -= (width1 - w);
3856 1853e0f4 2022-06-16 stsp *wtotal += (width1 - w);
3857 41605754 2020-11-12 stsp }
3858 41605754 2020-11-12 stsp }
3859 41605754 2020-11-12 stsp
3860 1853e0f4 2022-06-16 stsp if (wlimit > 0) { /* draw rest of line */
3861 1853e0f4 2022-06-16 stsp free(wline);
3862 1853e0f4 2022-06-16 stsp if (skipcol > width0 + width1) {
3863 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, &scrollx, seg2,
3864 1853e0f4 2022-06-16 stsp skipcol - (width0 + width1), wlimit,
3865 1853e0f4 2022-06-16 stsp col_tab_align, 1);
3866 1853e0f4 2022-06-16 stsp if (err)
3867 1853e0f4 2022-06-16 stsp goto done;
3868 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
3869 1853e0f4 2022-06-16 stsp } else {
3870 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, NULL, seg2, 0,
3871 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
3872 1853e0f4 2022-06-16 stsp if (err)
3873 1853e0f4 2022-06-16 stsp goto done;
3874 1853e0f4 2022-06-16 stsp waddwstr(window, wline);
3875 1853e0f4 2022-06-16 stsp }
3876 1853e0f4 2022-06-16 stsp *wtotal += width2;
3877 41605754 2020-11-12 stsp }
3878 1853e0f4 2022-06-16 stsp done:
3879 145b6838 2022-06-16 stsp free(wline);
3880 44a87665 2022-06-16 stsp free(exstr);
3881 1853e0f4 2022-06-16 stsp free(seg0);
3882 1853e0f4 2022-06-16 stsp free(seg1);
3883 1853e0f4 2022-06-16 stsp free(seg2);
3884 1853e0f4 2022-06-16 stsp return err;
3885 41605754 2020-11-12 stsp }
3886 94b80cfa 2022-08-01 mark
3887 94b80cfa 2022-08-01 mark static int
3888 94b80cfa 2022-08-01 mark gotoline(struct tog_view *view, int *lineno, int *nprinted)
3889 94b80cfa 2022-08-01 mark {
3890 94b80cfa 2022-08-01 mark FILE *f = NULL;
3891 94b80cfa 2022-08-01 mark int *eof, *first, *selected;
3892 94b80cfa 2022-08-01 mark
3893 94b80cfa 2022-08-01 mark if (view->type == TOG_VIEW_DIFF) {
3894 94b80cfa 2022-08-01 mark struct tog_diff_view_state *s = &view->state.diff;
3895 41605754 2020-11-12 stsp
3896 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
3897 94b80cfa 2022-08-01 mark selected = first;
3898 94b80cfa 2022-08-01 mark eof = &s->eof;
3899 94b80cfa 2022-08-01 mark f = s->f;
3900 94b80cfa 2022-08-01 mark } else if (view->type == TOG_VIEW_BLAME) {
3901 94b80cfa 2022-08-01 mark struct tog_blame_view_state *s = &view->state.blame;
3902 94b80cfa 2022-08-01 mark
3903 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
3904 94b80cfa 2022-08-01 mark selected = &s->selected_line;
3905 94b80cfa 2022-08-01 mark eof = &s->eof;
3906 94b80cfa 2022-08-01 mark f = s->blame.f;
3907 94b80cfa 2022-08-01 mark } else
3908 94b80cfa 2022-08-01 mark return 0;
3909 94b80cfa 2022-08-01 mark
3910 94b80cfa 2022-08-01 mark /* Center gline in the middle of the page like vi(1). */
3911 94b80cfa 2022-08-01 mark if (*lineno < view->gline - (view->nlines - 3) / 2)
3912 94b80cfa 2022-08-01 mark return 0;
3913 94b80cfa 2022-08-01 mark if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
3914 94b80cfa 2022-08-01 mark rewind(f);
3915 94b80cfa 2022-08-01 mark *eof = 0;
3916 94b80cfa 2022-08-01 mark *first = 1;
3917 94b80cfa 2022-08-01 mark *lineno = 0;
3918 94b80cfa 2022-08-01 mark *nprinted = 0;
3919 94b80cfa 2022-08-01 mark return 0;
3920 94b80cfa 2022-08-01 mark }
3921 94b80cfa 2022-08-01 mark
3922 94b80cfa 2022-08-01 mark *selected = view->gline <= (view->nlines - 3) / 2 ?
3923 94b80cfa 2022-08-01 mark view->gline : (view->nlines - 3) / 2 + 1;
3924 94b80cfa 2022-08-01 mark view->gline = 0;
3925 94b80cfa 2022-08-01 mark
3926 94b80cfa 2022-08-01 mark return 1;
3927 94b80cfa 2022-08-01 mark }
3928 94b80cfa 2022-08-01 mark
3929 41605754 2020-11-12 stsp static const struct got_error *
3930 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
3931 26ed57b2 2018-05-19 stsp {
3932 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
3933 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
3934 61e69b96 2018-05-20 stsp const struct got_error *err;
3935 c7d5c43c 2022-08-04 mark int nprinted = 0;
3936 b304db33 2018-05-20 stsp char *line;
3937 826082fe 2020-12-10 stsp size_t linesize = 0;
3938 826082fe 2020-12-10 stsp ssize_t linelen;
3939 61e69b96 2018-05-20 stsp wchar_t *wline;
3940 e0b650dd 2018-05-20 stsp int width;
3941 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
3942 89f1a395 2020-12-01 naddy int nlines = s->nlines;
3943 fe621944 2020-11-10 stsp off_t line_offset;
3944 26ed57b2 2018-05-19 stsp
3945 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1;
3946 c7d5c43c 2022-08-04 mark line_offset = s->lines[s->first_displayed_line - 1].offset;
3947 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
3948 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
3949 fe621944 2020-11-10 stsp
3950 f7d12f7e 2018-08-01 stsp werase(view->window);
3951 a3404814 2018-09-02 stsp
3952 94b80cfa 2022-08-01 mark if (view->gline > s->nlines - 1)
3953 94b80cfa 2022-08-01 mark view->gline = s->nlines - 1;
3954 94b80cfa 2022-08-01 mark
3955 a3404814 2018-09-02 stsp if (header) {
3956 94b80cfa 2022-08-01 mark int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
3957 94b80cfa 2022-08-01 mark 1 : view->gline - (view->nlines - 3) / 2 :
3958 c7d5c43c 2022-08-04 mark s->lineno + s->selected_line;
3959 94b80cfa 2022-08-01 mark
3960 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
3961 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
3962 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
3963 ccda2f4d 2022-06-16 stsp 0, 0);
3964 135a2da0 2020-11-11 stsp free(line);
3965 135a2da0 2020-11-11 stsp if (err)
3966 a3404814 2018-09-02 stsp return err;
3967 a3404814 2018-09-02 stsp
3968 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3969 a3404814 2018-09-02 stsp wstandout(view->window);
3970 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
3971 e54cc94a 2020-11-11 stsp free(wline);
3972 e54cc94a 2020-11-11 stsp wline = NULL;
3973 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3974 a3404814 2018-09-02 stsp wstandend(view->window);
3975 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
3976 a3404814 2018-09-02 stsp waddch(view->window, '\n');
3977 26ed57b2 2018-05-19 stsp
3978 a3404814 2018-09-02 stsp if (max_lines <= 1)
3979 a3404814 2018-09-02 stsp return NULL;
3980 a3404814 2018-09-02 stsp max_lines--;
3981 a3404814 2018-09-02 stsp }
3982 a3404814 2018-09-02 stsp
3983 89f1a395 2020-12-01 naddy s->eof = 0;
3984 145b6838 2022-06-16 stsp view->maxx = 0;
3985 826082fe 2020-12-10 stsp line = NULL;
3986 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
3987 6a5ff2d4 2022-08-06 mark enum got_diff_line_type linetype;
3988 6a5ff2d4 2022-08-06 mark attr_t attr = 0;
3989 6a5ff2d4 2022-08-06 mark
3990 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
3991 826082fe 2020-12-10 stsp if (linelen == -1) {
3992 826082fe 2020-12-10 stsp if (feof(s->f)) {
3993 826082fe 2020-12-10 stsp s->eof = 1;
3994 826082fe 2020-12-10 stsp break;
3995 826082fe 2020-12-10 stsp }
3996 826082fe 2020-12-10 stsp free(line);
3997 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
3998 61e69b96 2018-05-20 stsp }
3999 145b6838 2022-06-16 stsp
4000 c7d5c43c 2022-08-04 mark if (++s->lineno < s->first_displayed_line)
4001 94b80cfa 2022-08-01 mark continue;
4002 c7d5c43c 2022-08-04 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4003 94b80cfa 2022-08-01 mark continue;
4004 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline)
4005 94b80cfa 2022-08-01 mark attr = A_STANDOUT;
4006 94b80cfa 2022-08-01 mark
4007 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
4008 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4009 1853e0f4 2022-06-16 stsp view->x ? 1 : 0);
4010 1853e0f4 2022-06-16 stsp if (err) {
4011 1853e0f4 2022-06-16 stsp free(line);
4012 1853e0f4 2022-06-16 stsp return err;
4013 1853e0f4 2022-06-16 stsp }
4014 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
4015 1853e0f4 2022-06-16 stsp free(wline);
4016 1853e0f4 2022-06-16 stsp wline = NULL;
4017 1853e0f4 2022-06-16 stsp
4018 6a5ff2d4 2022-08-06 mark linetype = s->lines[s->lineno].type;
4019 6a5ff2d4 2022-08-06 mark if (linetype > GOT_DIFF_LINE_LOGMSG &&
4020 6a5ff2d4 2022-08-06 mark linetype < GOT_DIFF_LINE_CONTEXT)
4021 6a5ff2d4 2022-08-06 mark attr |= COLOR_PAIR(linetype);
4022 94b80cfa 2022-08-01 mark if (attr)
4023 94b80cfa 2022-08-01 mark wattron(view->window, attr);
4024 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4025 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4026 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4027 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
4028 41605754 2020-11-12 stsp if (err) {
4029 41605754 2020-11-12 stsp free(line);
4030 41605754 2020-11-12 stsp return err;
4031 41605754 2020-11-12 stsp }
4032 41605754 2020-11-12 stsp } else {
4033 969c159c 2022-06-16 stsp int skip;
4034 969c159c 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
4035 969c159c 2022-06-16 stsp view->x, view->ncols, 0, view->x ? 1 : 0);
4036 969c159c 2022-06-16 stsp if (err) {
4037 969c159c 2022-06-16 stsp free(line);
4038 969c159c 2022-06-16 stsp return err;
4039 969c159c 2022-06-16 stsp }
4040 969c159c 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
4041 969c159c 2022-06-16 stsp free(wline);
4042 41605754 2020-11-12 stsp wline = NULL;
4043 41605754 2020-11-12 stsp }
4044 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline) {
4045 94b80cfa 2022-08-01 mark /* highlight full gline length */
4046 94b80cfa 2022-08-01 mark while (width++ < view->ncols)
4047 94b80cfa 2022-08-01 mark waddch(view->window, ' ');
4048 94b80cfa 2022-08-01 mark } else {
4049 94b80cfa 2022-08-01 mark if (width <= view->ncols - 1)
4050 94b80cfa 2022-08-01 mark waddch(view->window, '\n');
4051 94b80cfa 2022-08-01 mark }
4052 94b80cfa 2022-08-01 mark if (attr)
4053 94b80cfa 2022-08-01 mark wattroff(view->window, attr);
4054 94b80cfa 2022-08-01 mark if (++nprinted == 1)
4055 c7d5c43c 2022-08-04 mark s->first_displayed_line = s->lineno;
4056 826082fe 2020-12-10 stsp }
4057 826082fe 2020-12-10 stsp free(line);
4058 fe621944 2020-11-10 stsp if (nprinted >= 1)
4059 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4060 89f1a395 2020-12-01 naddy (nprinted - 1);
4061 fe621944 2020-11-10 stsp else
4062 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4063 26ed57b2 2018-05-19 stsp
4064 9b058f45 2022-06-30 mark view_border(view);
4065 c3e9aa98 2019-05-13 jcs
4066 89f1a395 2020-12-01 naddy if (s->eof) {
4067 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4068 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4069 c3e9aa98 2019-05-13 jcs nprinted++;
4070 c3e9aa98 2019-05-13 jcs }
4071 c3e9aa98 2019-05-13 jcs
4072 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4073 ccda2f4d 2022-06-16 stsp view->ncols, 0, 0);
4074 c3e9aa98 2019-05-13 jcs if (err) {
4075 c3e9aa98 2019-05-13 jcs return err;
4076 c3e9aa98 2019-05-13 jcs }
4077 26ed57b2 2018-05-19 stsp
4078 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4079 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4080 e54cc94a 2020-11-11 stsp free(wline);
4081 e54cc94a 2020-11-11 stsp wline = NULL;
4082 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4083 c3e9aa98 2019-05-13 jcs }
4084 c3e9aa98 2019-05-13 jcs
4085 26ed57b2 2018-05-19 stsp return NULL;
4086 abd2672a 2018-12-23 stsp }
4087 abd2672a 2018-12-23 stsp
4088 abd2672a 2018-12-23 stsp static char *
4089 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4090 abd2672a 2018-12-23 stsp {
4091 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4092 09867e48 2019-08-13 stsp char *p, *s;
4093 09867e48 2019-08-13 stsp
4094 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4095 09867e48 2019-08-13 stsp if (tm == NULL)
4096 09867e48 2019-08-13 stsp return NULL;
4097 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4098 09867e48 2019-08-13 stsp if (s == NULL)
4099 09867e48 2019-08-13 stsp return NULL;
4100 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4101 abd2672a 2018-12-23 stsp if (p)
4102 abd2672a 2018-12-23 stsp *p = '\0';
4103 abd2672a 2018-12-23 stsp return s;
4104 9f7d7167 2018-04-29 stsp }
4105 9f7d7167 2018-04-29 stsp
4106 4ed7e80c 2018-05-20 stsp static const struct got_error *
4107 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4108 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4109 0208f208 2020-05-05 stsp {
4110 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4111 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4112 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4113 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4114 0208f208 2020-05-05 stsp
4115 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4116 0208f208 2020-05-05 stsp if (qid != NULL) {
4117 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4118 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4119 d7b5a0e8 2022-04-20 stsp &qid->id);
4120 0208f208 2020-05-05 stsp if (err)
4121 0208f208 2020-05-05 stsp return err;
4122 0208f208 2020-05-05 stsp
4123 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4124 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4125 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4126 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4127 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4128 aa8b5dd0 2021-08-01 stsp }
4129 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4130 0208f208 2020-05-05 stsp
4131 0208f208 2020-05-05 stsp }
4132 0208f208 2020-05-05 stsp
4133 0208f208 2020-05-05 stsp if (tree_id1) {
4134 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4135 0208f208 2020-05-05 stsp if (err)
4136 0208f208 2020-05-05 stsp goto done;
4137 0208f208 2020-05-05 stsp }
4138 0208f208 2020-05-05 stsp
4139 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4140 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4141 0208f208 2020-05-05 stsp if (err)
4142 0208f208 2020-05-05 stsp goto done;
4143 0208f208 2020-05-05 stsp
4144 f9d37699 2022-06-28 stsp err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4145 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4146 0208f208 2020-05-05 stsp done:
4147 0208f208 2020-05-05 stsp if (tree1)
4148 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4149 0208f208 2020-05-05 stsp if (tree2)
4150 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4151 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4152 0208f208 2020-05-05 stsp return err;
4153 0208f208 2020-05-05 stsp }
4154 0208f208 2020-05-05 stsp
4155 0208f208 2020-05-05 stsp static const struct got_error *
4156 c7d5c43c 2022-08-04 mark add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4157 c7d5c43c 2022-08-04 mark off_t off, uint8_t type)
4158 abd2672a 2018-12-23 stsp {
4159 c7d5c43c 2022-08-04 mark struct got_diff_line *p;
4160 fe621944 2020-11-10 stsp
4161 c7d5c43c 2022-08-04 mark p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4162 fe621944 2020-11-10 stsp if (p == NULL)
4163 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4164 c7d5c43c 2022-08-04 mark *lines = p;
4165 c7d5c43c 2022-08-04 mark (*lines)[*nlines].offset = off;
4166 c7d5c43c 2022-08-04 mark (*lines)[*nlines].type = type;
4167 fe621944 2020-11-10 stsp (*nlines)++;
4168 c7d5c43c 2022-08-04 mark
4169 fe621944 2020-11-10 stsp return NULL;
4170 fe621944 2020-11-10 stsp }
4171 fe621944 2020-11-10 stsp
4172 fe621944 2020-11-10 stsp static const struct got_error *
4173 c7d5c43c 2022-08-04 mark write_commit_info(struct got_diff_line **lines, size_t *nlines,
4174 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4175 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4176 fe621944 2020-11-10 stsp {
4177 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4178 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4179 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4180 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4181 45d799e2 2018-12-23 stsp time_t committer_time;
4182 45d799e2 2018-12-23 stsp const char *author, *committer;
4183 8b473291 2019-02-21 stsp char *refs_str = NULL;
4184 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4185 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4186 fe621944 2020-11-10 stsp off_t outoff = 0;
4187 fe621944 2020-11-10 stsp int n;
4188 abd2672a 2018-12-23 stsp
4189 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4190 0208f208 2020-05-05 stsp
4191 8b473291 2019-02-21 stsp if (refs) {
4192 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4193 8b473291 2019-02-21 stsp if (err)
4194 8b473291 2019-02-21 stsp return err;
4195 8b473291 2019-02-21 stsp }
4196 8b473291 2019-02-21 stsp
4197 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4198 abd2672a 2018-12-23 stsp if (err)
4199 abd2672a 2018-12-23 stsp return err;
4200 abd2672a 2018-12-23 stsp
4201 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4202 15a94983 2018-12-23 stsp if (err) {
4203 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4204 15a94983 2018-12-23 stsp goto done;
4205 15a94983 2018-12-23 stsp }
4206 abd2672a 2018-12-23 stsp
4207 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4208 fe621944 2020-11-10 stsp if (err)
4209 fe621944 2020-11-10 stsp goto done;
4210 fe621944 2020-11-10 stsp
4211 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4212 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4213 fe621944 2020-11-10 stsp if (n < 0) {
4214 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4215 abd2672a 2018-12-23 stsp goto done;
4216 abd2672a 2018-12-23 stsp }
4217 fe621944 2020-11-10 stsp outoff += n;
4218 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4219 fe621944 2020-11-10 stsp if (err)
4220 fe621944 2020-11-10 stsp goto done;
4221 fe621944 2020-11-10 stsp
4222 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4223 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4224 fe621944 2020-11-10 stsp if (n < 0) {
4225 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4226 abd2672a 2018-12-23 stsp goto done;
4227 abd2672a 2018-12-23 stsp }
4228 fe621944 2020-11-10 stsp outoff += n;
4229 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4230 fe621944 2020-11-10 stsp if (err)
4231 fe621944 2020-11-10 stsp goto done;
4232 fe621944 2020-11-10 stsp
4233 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4234 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4235 fe621944 2020-11-10 stsp if (datestr) {
4236 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4237 fe621944 2020-11-10 stsp if (n < 0) {
4238 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4239 fe621944 2020-11-10 stsp goto done;
4240 fe621944 2020-11-10 stsp }
4241 fe621944 2020-11-10 stsp outoff += n;
4242 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4243 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_DATE);
4244 fe621944 2020-11-10 stsp if (err)
4245 fe621944 2020-11-10 stsp goto done;
4246 abd2672a 2018-12-23 stsp }
4247 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4248 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4249 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4250 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4251 fe621944 2020-11-10 stsp if (n < 0) {
4252 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4253 fe621944 2020-11-10 stsp goto done;
4254 fe621944 2020-11-10 stsp }
4255 fe621944 2020-11-10 stsp outoff += n;
4256 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4257 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_AUTHOR);
4258 fe621944 2020-11-10 stsp if (err)
4259 fe621944 2020-11-10 stsp goto done;
4260 abd2672a 2018-12-23 stsp }
4261 9f98ca05 2021-09-24 stsp if (got_object_commit_get_nparents(commit) > 1) {
4262 9f98ca05 2021-09-24 stsp const struct got_object_id_queue *parent_ids;
4263 9f98ca05 2021-09-24 stsp struct got_object_qid *qid;
4264 9f98ca05 2021-09-24 stsp int pn = 1;
4265 9f98ca05 2021-09-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
4266 9f98ca05 2021-09-24 stsp STAILQ_FOREACH(qid, parent_ids, entry) {
4267 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &qid->id);
4268 9f98ca05 2021-09-24 stsp if (err)
4269 9f98ca05 2021-09-24 stsp goto done;
4270 9f98ca05 2021-09-24 stsp n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4271 9f98ca05 2021-09-24 stsp if (n < 0) {
4272 9f98ca05 2021-09-24 stsp err = got_error_from_errno("fprintf");
4273 9f98ca05 2021-09-24 stsp goto done;
4274 9f98ca05 2021-09-24 stsp }
4275 9f98ca05 2021-09-24 stsp outoff += n;
4276 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4277 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
4278 9f98ca05 2021-09-24 stsp if (err)
4279 9f98ca05 2021-09-24 stsp goto done;
4280 9f98ca05 2021-09-24 stsp free(id_str);
4281 9f98ca05 2021-09-24 stsp id_str = NULL;
4282 9f98ca05 2021-09-24 stsp }
4283 9f98ca05 2021-09-24 stsp }
4284 9f98ca05 2021-09-24 stsp
4285 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4286 5943eee2 2019-08-13 stsp if (err)
4287 5943eee2 2019-08-13 stsp goto done;
4288 fe621944 2020-11-10 stsp s = logmsg;
4289 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4290 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4291 fe621944 2020-11-10 stsp if (n < 0) {
4292 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4293 fe621944 2020-11-10 stsp goto done;
4294 fe621944 2020-11-10 stsp }
4295 fe621944 2020-11-10 stsp outoff += n;
4296 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4297 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_LOGMSG);
4298 fe621944 2020-11-10 stsp if (err)
4299 fe621944 2020-11-10 stsp goto done;
4300 abd2672a 2018-12-23 stsp }
4301 fe621944 2020-11-10 stsp
4302 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4303 0208f208 2020-05-05 stsp if (err)
4304 0208f208 2020-05-05 stsp goto done;
4305 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4306 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4307 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4308 fe621944 2020-11-10 stsp if (n < 0) {
4309 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4310 fe621944 2020-11-10 stsp goto done;
4311 fe621944 2020-11-10 stsp }
4312 fe621944 2020-11-10 stsp outoff += n;
4313 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4314 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_CHANGES);
4315 fe621944 2020-11-10 stsp if (err)
4316 fe621944 2020-11-10 stsp goto done;
4317 0208f208 2020-05-05 stsp free((char *)pe->path);
4318 0208f208 2020-05-05 stsp free(pe->data);
4319 0208f208 2020-05-05 stsp }
4320 fe621944 2020-11-10 stsp
4321 0208f208 2020-05-05 stsp fputc('\n', outfile);
4322 fe621944 2020-11-10 stsp outoff++;
4323 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4324 abd2672a 2018-12-23 stsp done:
4325 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4326 abd2672a 2018-12-23 stsp free(id_str);
4327 5943eee2 2019-08-13 stsp free(logmsg);
4328 8b473291 2019-02-21 stsp free(refs_str);
4329 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4330 7510f233 2020-08-09 stsp if (err) {
4331 c7d5c43c 2022-08-04 mark free(*lines);
4332 c7d5c43c 2022-08-04 mark *lines = NULL;
4333 ae6a6978 2020-08-09 stsp *nlines = 0;
4334 7510f233 2020-08-09 stsp }
4335 fe621944 2020-11-10 stsp return err;
4336 abd2672a 2018-12-23 stsp }
4337 abd2672a 2018-12-23 stsp
4338 abd2672a 2018-12-23 stsp static const struct got_error *
4339 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4340 26ed57b2 2018-05-19 stsp {
4341 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4342 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4343 15a94983 2018-12-23 stsp int obj_type;
4344 fe621944 2020-11-10 stsp
4345 c7d5c43c 2022-08-04 mark free(s->lines);
4346 c7d5c43c 2022-08-04 mark s->lines = malloc(sizeof(*s->lines));
4347 c7d5c43c 2022-08-04 mark if (s->lines == NULL)
4348 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4349 fe621944 2020-11-10 stsp s->nlines = 0;
4350 26ed57b2 2018-05-19 stsp
4351 511a516b 2018-05-19 stsp f = got_opentemp();
4352 48ae06ee 2018-10-18 stsp if (f == NULL) {
4353 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4354 48ae06ee 2018-10-18 stsp goto done;
4355 48ae06ee 2018-10-18 stsp }
4356 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4357 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4358 fb43ecf1 2019-02-11 stsp goto done;
4359 fb43ecf1 2019-02-11 stsp }
4360 48ae06ee 2018-10-18 stsp s->f = f;
4361 26ed57b2 2018-05-19 stsp
4362 15a94983 2018-12-23 stsp if (s->id1)
4363 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4364 15a94983 2018-12-23 stsp else
4365 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4366 15a94983 2018-12-23 stsp if (err)
4367 15a94983 2018-12-23 stsp goto done;
4368 15a94983 2018-12-23 stsp
4369 15a94983 2018-12-23 stsp switch (obj_type) {
4370 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4371 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4372 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4373 917d79a7 2022-07-01 stsp s->label1, s->label2, tog_diff_algo, s->diff_context,
4374 f9d37699 2022-06-28 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4375 26ed57b2 2018-05-19 stsp break;
4376 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4377 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4378 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4379 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4380 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4381 26ed57b2 2018-05-19 stsp break;
4382 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4383 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4384 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4385 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4386 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4387 abd2672a 2018-12-23 stsp
4388 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4389 abd2672a 2018-12-23 stsp if (err)
4390 3ffacbe1 2020-02-02 tracey goto done;
4391 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4392 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4393 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4394 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines, &s->nlines, s->id2,
4395 c7d5c43c 2022-08-04 mark refs, s->repo, s->f);
4396 f44b1f58 2020-02-02 tracey if (err)
4397 f44b1f58 2020-02-02 tracey goto done;
4398 f44b1f58 2020-02-02 tracey } else {
4399 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4400 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4401 d7b5a0e8 2022-04-20 stsp if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4402 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines,
4403 c7d5c43c 2022-08-04 mark &s->nlines, s->id2, refs, s->repo,
4404 c7d5c43c 2022-08-04 mark s->f);
4405 f44b1f58 2020-02-02 tracey if (err)
4406 f44b1f58 2020-02-02 tracey goto done;
4407 f5404e4e 2020-02-02 tracey break;
4408 15a087fe 2019-02-21 stsp }
4409 abd2672a 2018-12-23 stsp }
4410 abd2672a 2018-12-23 stsp }
4411 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4412 abd2672a 2018-12-23 stsp
4413 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4414 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4415 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4416 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4417 26ed57b2 2018-05-19 stsp break;
4418 abd2672a 2018-12-23 stsp }
4419 26ed57b2 2018-05-19 stsp default:
4420 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4421 48ae06ee 2018-10-18 stsp break;
4422 26ed57b2 2018-05-19 stsp }
4423 48ae06ee 2018-10-18 stsp done:
4424 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4425 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4426 48ae06ee 2018-10-18 stsp return err;
4427 48ae06ee 2018-10-18 stsp }
4428 26ed57b2 2018-05-19 stsp
4429 f5215bb9 2019-02-22 stsp static void
4430 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4431 f5215bb9 2019-02-22 stsp {
4432 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4433 f5215bb9 2019-02-22 stsp update_panels();
4434 f5215bb9 2019-02-22 stsp doupdate();
4435 f44b1f58 2020-02-02 tracey }
4436 f44b1f58 2020-02-02 tracey
4437 f44b1f58 2020-02-02 tracey static const struct got_error *
4438 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4439 f44b1f58 2020-02-02 tracey {
4440 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4441 f44b1f58 2020-02-02 tracey
4442 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4443 f44b1f58 2020-02-02 tracey return NULL;
4444 f44b1f58 2020-02-02 tracey }
4445 f44b1f58 2020-02-02 tracey
4446 f44b1f58 2020-02-02 tracey static const struct got_error *
4447 f44b1f58 2020-02-02 tracey search_next_diff_view(struct tog_view *view)
4448 f44b1f58 2020-02-02 tracey {
4449 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4450 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
4451 f44b1f58 2020-02-02 tracey int lineno;
4452 cb713507 2022-06-16 stsp char *line = NULL;
4453 826082fe 2020-12-10 stsp size_t linesize = 0;
4454 826082fe 2020-12-10 stsp ssize_t linelen;
4455 f44b1f58 2020-02-02 tracey
4456 f44b1f58 2020-02-02 tracey if (!view->searching) {
4457 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4458 f44b1f58 2020-02-02 tracey return NULL;
4459 f44b1f58 2020-02-02 tracey }
4460 f44b1f58 2020-02-02 tracey
4461 f44b1f58 2020-02-02 tracey if (s->matched_line) {
4462 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4463 f44b1f58 2020-02-02 tracey lineno = s->matched_line + 1;
4464 f44b1f58 2020-02-02 tracey else
4465 f44b1f58 2020-02-02 tracey lineno = s->matched_line - 1;
4466 487cd7d2 2021-12-17 stsp } else
4467 487cd7d2 2021-12-17 stsp lineno = s->first_displayed_line;
4468 f44b1f58 2020-02-02 tracey
4469 f44b1f58 2020-02-02 tracey while (1) {
4470 f44b1f58 2020-02-02 tracey off_t offset;
4471 f44b1f58 2020-02-02 tracey
4472 f44b1f58 2020-02-02 tracey if (lineno <= 0 || lineno > s->nlines) {
4473 f44b1f58 2020-02-02 tracey if (s->matched_line == 0) {
4474 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4475 f44b1f58 2020-02-02 tracey break;
4476 f44b1f58 2020-02-02 tracey }
4477 f44b1f58 2020-02-02 tracey
4478 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4479 f44b1f58 2020-02-02 tracey lineno = 1;
4480 f44b1f58 2020-02-02 tracey else
4481 f44b1f58 2020-02-02 tracey lineno = s->nlines;
4482 f44b1f58 2020-02-02 tracey }
4483 f44b1f58 2020-02-02 tracey
4484 c7d5c43c 2022-08-04 mark offset = s->lines[lineno - 1].offset;
4485 f44b1f58 2020-02-02 tracey if (fseeko(s->f, offset, SEEK_SET) != 0) {
4486 f44b1f58 2020-02-02 tracey free(line);
4487 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4488 f44b1f58 2020-02-02 tracey }
4489 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4490 cb713507 2022-06-16 stsp if (linelen != -1) {
4491 cb713507 2022-06-16 stsp char *exstr;
4492 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
4493 cb713507 2022-06-16 stsp if (err)
4494 cb713507 2022-06-16 stsp break;
4495 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
4496 cb713507 2022-06-16 stsp &view->regmatch)) {
4497 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4498 cb713507 2022-06-16 stsp s->matched_line = lineno;
4499 cb713507 2022-06-16 stsp free(exstr);
4500 cb713507 2022-06-16 stsp break;
4501 cb713507 2022-06-16 stsp }
4502 cb713507 2022-06-16 stsp free(exstr);
4503 f44b1f58 2020-02-02 tracey }
4504 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4505 f44b1f58 2020-02-02 tracey lineno++;
4506 f44b1f58 2020-02-02 tracey else
4507 f44b1f58 2020-02-02 tracey lineno--;
4508 f44b1f58 2020-02-02 tracey }
4509 826082fe 2020-12-10 stsp free(line);
4510 f44b1f58 2020-02-02 tracey
4511 f44b1f58 2020-02-02 tracey if (s->matched_line) {
4512 f44b1f58 2020-02-02 tracey s->first_displayed_line = s->matched_line;
4513 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4514 f44b1f58 2020-02-02 tracey }
4515 f44b1f58 2020-02-02 tracey
4516 145b6838 2022-06-16 stsp return err;
4517 f5215bb9 2019-02-22 stsp }
4518 f5215bb9 2019-02-22 stsp
4519 48ae06ee 2018-10-18 stsp static const struct got_error *
4520 b72706c3 2022-06-01 stsp close_diff_view(struct tog_view *view)
4521 b72706c3 2022-06-01 stsp {
4522 b72706c3 2022-06-01 stsp const struct got_error *err = NULL;
4523 b72706c3 2022-06-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4524 b72706c3 2022-06-01 stsp
4525 b72706c3 2022-06-01 stsp free(s->id1);
4526 b72706c3 2022-06-01 stsp s->id1 = NULL;
4527 b72706c3 2022-06-01 stsp free(s->id2);
4528 b72706c3 2022-06-01 stsp s->id2 = NULL;
4529 b72706c3 2022-06-01 stsp if (s->f && fclose(s->f) == EOF)
4530 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4531 b72706c3 2022-06-01 stsp s->f = NULL;
4532 f9d37699 2022-06-28 stsp if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4533 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4534 b72706c3 2022-06-01 stsp s->f1 = NULL;
4535 f9d37699 2022-06-28 stsp if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4536 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4537 b72706c3 2022-06-01 stsp s->f2 = NULL;
4538 f9d37699 2022-06-28 stsp if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4539 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4540 f9d37699 2022-06-28 stsp s->fd1 = -1;
4541 f9d37699 2022-06-28 stsp if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4542 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4543 f9d37699 2022-06-28 stsp s->fd2 = -1;
4544 c7d5c43c 2022-08-04 mark free(s->lines);
4545 c7d5c43c 2022-08-04 mark s->lines = NULL;
4546 b72706c3 2022-06-01 stsp s->nlines = 0;
4547 b72706c3 2022-06-01 stsp return err;
4548 b72706c3 2022-06-01 stsp }
4549 b72706c3 2022-06-01 stsp
4550 b72706c3 2022-06-01 stsp static const struct got_error *
4551 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4552 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4553 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4554 c0f61fa4 2022-07-11 mark struct tog_view *parent_view, struct got_repository *repo)
4555 48ae06ee 2018-10-18 stsp {
4556 48ae06ee 2018-10-18 stsp const struct got_error *err;
4557 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4558 5dc9f4bc 2018-08-04 stsp
4559 b72706c3 2022-06-01 stsp memset(s, 0, sizeof(*s));
4560 f9d37699 2022-06-28 stsp s->fd1 = -1;
4561 f9d37699 2022-06-28 stsp s->fd2 = -1;
4562 b72706c3 2022-06-01 stsp
4563 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4564 15a94983 2018-12-23 stsp int type1, type2;
4565 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4566 15a94983 2018-12-23 stsp if (err)
4567 15a94983 2018-12-23 stsp return err;
4568 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4569 15a94983 2018-12-23 stsp if (err)
4570 15a94983 2018-12-23 stsp return err;
4571 15a94983 2018-12-23 stsp
4572 15a94983 2018-12-23 stsp if (type1 != type2)
4573 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4574 15a94983 2018-12-23 stsp }
4575 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4576 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4577 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4578 f44b1f58 2020-02-02 tracey s->repo = repo;
4579 f44b1f58 2020-02-02 tracey s->id1 = id1;
4580 f44b1f58 2020-02-02 tracey s->id2 = id2;
4581 3dbaef42 2020-11-24 stsp s->label1 = label1;
4582 3dbaef42 2020-11-24 stsp s->label2 = label2;
4583 48ae06ee 2018-10-18 stsp
4584 15a94983 2018-12-23 stsp if (id1) {
4585 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4586 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4587 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4588 48ae06ee 2018-10-18 stsp } else
4589 5465d566 2020-02-01 tracey s->id1 = NULL;
4590 48ae06ee 2018-10-18 stsp
4591 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4592 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4593 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_object_id_dup");
4594 b72706c3 2022-06-01 stsp goto done;
4595 48ae06ee 2018-10-18 stsp }
4596 b72706c3 2022-06-01 stsp
4597 a00719e9 2022-06-17 stsp s->f1 = got_opentemp();
4598 a00719e9 2022-06-17 stsp if (s->f1 == NULL) {
4599 a00719e9 2022-06-17 stsp err = got_error_from_errno("got_opentemp");
4600 a00719e9 2022-06-17 stsp goto done;
4601 a00719e9 2022-06-17 stsp }
4602 a00719e9 2022-06-17 stsp
4603 b72706c3 2022-06-01 stsp s->f2 = got_opentemp();
4604 b72706c3 2022-06-01 stsp if (s->f2 == NULL) {
4605 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_opentemp");
4606 b72706c3 2022-06-01 stsp goto done;
4607 b72706c3 2022-06-01 stsp }
4608 b72706c3 2022-06-01 stsp
4609 f9d37699 2022-06-28 stsp s->fd1 = got_opentempfd();
4610 f9d37699 2022-06-28 stsp if (s->fd1 == -1) {
4611 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4612 f9d37699 2022-06-28 stsp goto done;
4613 f9d37699 2022-06-28 stsp }
4614 f9d37699 2022-06-28 stsp
4615 f9d37699 2022-06-28 stsp s->fd2 = got_opentempfd();
4616 f9d37699 2022-06-28 stsp if (s->fd2 == -1) {
4617 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4618 f9d37699 2022-06-28 stsp goto done;
4619 f9d37699 2022-06-28 stsp }
4620 f9d37699 2022-06-28 stsp
4621 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
4622 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
4623 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
4624 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
4625 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
4626 c0f61fa4 2022-07-11 mark s->parent_view = parent_view;
4627 5465d566 2020-02-01 tracey s->repo = repo;
4628 6d17833f 2019-11-08 stsp
4629 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
4630 6a5ff2d4 2022-08-06 mark int rc;
4631 6d17833f 2019-11-08 stsp
4632 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_MINUS,
4633 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
4634 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4635 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_PLUS,
4636 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
4637 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4638 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_HUNK,
4639 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
4640 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4641 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_META,
4642 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4643 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4644 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_CHANGES,
4645 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4646 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4647 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
4648 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4649 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4650 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
4651 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
4652 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4653 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_AUTHOR,
4654 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_AUTHOR"), -1);
4655 6a5ff2d4 2022-08-06 mark if (rc != ERR)
4656 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_DATE,
4657 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DATE"), -1);
4658 6a5ff2d4 2022-08-06 mark if (rc == ERR) {
4659 6a5ff2d4 2022-08-06 mark err = got_error(GOT_ERR_RANGE);
4660 b72706c3 2022-06-01 stsp goto done;
4661 6a5ff2d4 2022-08-06 mark }
4662 6d17833f 2019-11-08 stsp }
4663 5dc9f4bc 2018-08-04 stsp
4664 c0f61fa4 2022-07-11 mark if (parent_view && parent_view->type == TOG_VIEW_LOG &&
4665 c0f61fa4 2022-07-11 mark view_is_splitscreen(view))
4666 c0f61fa4 2022-07-11 mark show_log_view(parent_view); /* draw border */
4667 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
4668 f5215bb9 2019-02-22 stsp
4669 5465d566 2020-02-01 tracey err = create_diff(s);
4670 48ae06ee 2018-10-18 stsp
4671 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
4672 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
4673 917d79a7 2022-07-01 stsp view->reset = reset_diff_view;
4674 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
4675 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
4676 f44b1f58 2020-02-02 tracey view->search_next = search_next_diff_view;
4677 b72706c3 2022-06-01 stsp done:
4678 b72706c3 2022-06-01 stsp if (err)
4679 b72706c3 2022-06-01 stsp close_diff_view(view);
4680 e5a0f69f 2018-08-18 stsp return err;
4681 5dc9f4bc 2018-08-04 stsp }
4682 5dc9f4bc 2018-08-04 stsp
4683 5dc9f4bc 2018-08-04 stsp static const struct got_error *
4684 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
4685 5dc9f4bc 2018-08-04 stsp {
4686 a3404814 2018-09-02 stsp const struct got_error *err;
4687 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
4688 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
4689 3dbaef42 2020-11-24 stsp const char *label1, *label2;
4690 a3404814 2018-09-02 stsp
4691 a3404814 2018-09-02 stsp if (s->id1) {
4692 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
4693 a3404814 2018-09-02 stsp if (err)
4694 a3404814 2018-09-02 stsp return err;
4695 3dbaef42 2020-11-24 stsp label1 = s->label1 ? : id_str1;
4696 3dbaef42 2020-11-24 stsp } else
4697 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
4698 3dbaef42 2020-11-24 stsp
4699 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
4700 a3404814 2018-09-02 stsp if (err)
4701 a3404814 2018-09-02 stsp return err;
4702 3dbaef42 2020-11-24 stsp label2 = s->label2 ? : id_str2;
4703 26ed57b2 2018-05-19 stsp
4704 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
4705 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4706 a3404814 2018-09-02 stsp free(id_str1);
4707 a3404814 2018-09-02 stsp free(id_str2);
4708 a3404814 2018-09-02 stsp return err;
4709 a3404814 2018-09-02 stsp }
4710 a3404814 2018-09-02 stsp free(id_str1);
4711 a3404814 2018-09-02 stsp free(id_str2);
4712 a3404814 2018-09-02 stsp
4713 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
4714 267bb3b8 2021-08-01 stsp free(header);
4715 267bb3b8 2021-08-01 stsp return err;
4716 15a087fe 2019-02-21 stsp }
4717 15a087fe 2019-02-21 stsp
4718 15a087fe 2019-02-21 stsp static const struct got_error *
4719 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
4720 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
4721 15a087fe 2019-02-21 stsp {
4722 d7a04538 2019-02-21 stsp const struct got_error *err;
4723 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
4724 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
4725 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
4726 15a087fe 2019-02-21 stsp
4727 15a087fe 2019-02-21 stsp free(s->id2);
4728 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
4729 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
4730 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4731 15a087fe 2019-02-21 stsp
4732 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
4733 d7a04538 2019-02-21 stsp if (err)
4734 d7a04538 2019-02-21 stsp return err;
4735 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
4736 15a087fe 2019-02-21 stsp free(s->id1);
4737 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
4738 d7b5a0e8 2022-04-20 stsp s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
4739 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
4740 15a087fe 2019-02-21 stsp return NULL;
4741 0cf4efb1 2018-09-29 stsp }
4742 0cf4efb1 2018-09-29 stsp
4743 0cf4efb1 2018-09-29 stsp static const struct got_error *
4744 917d79a7 2022-07-01 stsp reset_diff_view(struct tog_view *view)
4745 917d79a7 2022-07-01 stsp {
4746 917d79a7 2022-07-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4747 917d79a7 2022-07-01 stsp
4748 917d79a7 2022-07-01 stsp view->count = 0;
4749 917d79a7 2022-07-01 stsp wclear(view->window);
4750 917d79a7 2022-07-01 stsp s->first_displayed_line = 1;
4751 917d79a7 2022-07-01 stsp s->last_displayed_line = view->nlines;
4752 917d79a7 2022-07-01 stsp s->matched_line = 0;
4753 917d79a7 2022-07-01 stsp diff_view_indicate_progress(view);
4754 917d79a7 2022-07-01 stsp return create_diff(s);
4755 c7d5c43c 2022-08-04 mark }
4756 c7d5c43c 2022-08-04 mark
4757 c7d5c43c 2022-08-04 mark static void
4758 c7d5c43c 2022-08-04 mark diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
4759 c7d5c43c 2022-08-04 mark {
4760 c7d5c43c 2022-08-04 mark int start, i;
4761 c7d5c43c 2022-08-04 mark
4762 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line - 1;
4763 c7d5c43c 2022-08-04 mark
4764 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
4765 c7d5c43c 2022-08-04 mark if (i == 0)
4766 c7d5c43c 2022-08-04 mark i = s->nlines - 1;
4767 c7d5c43c 2022-08-04 mark if (--i == start)
4768 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
4769 c7d5c43c 2022-08-04 mark }
4770 c7d5c43c 2022-08-04 mark
4771 c7d5c43c 2022-08-04 mark s->selected_line = 1;
4772 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
4773 917d79a7 2022-07-01 stsp }
4774 917d79a7 2022-07-01 stsp
4775 c7d5c43c 2022-08-04 mark static void
4776 c7d5c43c 2022-08-04 mark diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
4777 c7d5c43c 2022-08-04 mark {
4778 c7d5c43c 2022-08-04 mark int start, i;
4779 c7d5c43c 2022-08-04 mark
4780 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line + 1;
4781 c7d5c43c 2022-08-04 mark
4782 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
4783 c7d5c43c 2022-08-04 mark if (i == s->nlines - 1)
4784 c7d5c43c 2022-08-04 mark i = 0;
4785 c7d5c43c 2022-08-04 mark if (++i == start)
4786 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
4787 c7d5c43c 2022-08-04 mark }
4788 c7d5c43c 2022-08-04 mark
4789 c7d5c43c 2022-08-04 mark s->selected_line = 1;
4790 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
4791 c7d5c43c 2022-08-04 mark }
4792 c7d5c43c 2022-08-04 mark
4793 c0f61fa4 2022-07-11 mark static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
4794 c0f61fa4 2022-07-11 mark int, int, int);
4795 c0f61fa4 2022-07-11 mark static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
4796 c0f61fa4 2022-07-11 mark int, int);
4797 c0f61fa4 2022-07-11 mark
4798 917d79a7 2022-07-01 stsp static const struct got_error *
4799 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
4800 e5a0f69f 2018-08-18 stsp {
4801 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
4802 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
4803 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
4804 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
4805 826082fe 2020-12-10 stsp char *line = NULL;
4806 826082fe 2020-12-10 stsp size_t linesize = 0;
4807 826082fe 2020-12-10 stsp ssize_t linelen;
4808 c0f61fa4 2022-07-11 mark int i, nscroll = view->nlines - 1, up = 0;
4809 e5a0f69f 2018-08-18 stsp
4810 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
4811 c7d5c43c 2022-08-04 mark
4812 e5a0f69f 2018-08-18 stsp switch (ch) {
4813 145b6838 2022-06-16 stsp case '0':
4814 145b6838 2022-06-16 stsp view->x = 0;
4815 145b6838 2022-06-16 stsp break;
4816 145b6838 2022-06-16 stsp case '$':
4817 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
4818 640cd7ff 2022-06-22 mark view->count = 0;
4819 145b6838 2022-06-16 stsp break;
4820 145b6838 2022-06-16 stsp case KEY_RIGHT:
4821 145b6838 2022-06-16 stsp case 'l':
4822 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
4823 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
4824 640cd7ff 2022-06-22 mark else
4825 640cd7ff 2022-06-22 mark view->count = 0;
4826 145b6838 2022-06-16 stsp break;
4827 145b6838 2022-06-16 stsp case KEY_LEFT:
4828 145b6838 2022-06-16 stsp case 'h':
4829 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
4830 640cd7ff 2022-06-22 mark if (view->x <= 0)
4831 640cd7ff 2022-06-22 mark view->count = 0;
4832 145b6838 2022-06-16 stsp break;
4833 64453f7e 2020-11-21 stsp case 'a':
4834 3dbaef42 2020-11-24 stsp case 'w':
4835 3dbaef42 2020-11-24 stsp if (ch == 'a')
4836 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
4837 3dbaef42 2020-11-24 stsp if (ch == 'w')
4838 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
4839 917d79a7 2022-07-01 stsp err = reset_diff_view(view);
4840 912a3f79 2021-08-30 j break;
4841 912a3f79 2021-08-30 j case 'g':
4842 912a3f79 2021-08-30 j case KEY_HOME:
4843 912a3f79 2021-08-30 j s->first_displayed_line = 1;
4844 640cd7ff 2022-06-22 mark view->count = 0;
4845 64453f7e 2020-11-21 stsp break;
4846 912a3f79 2021-08-30 j case 'G':
4847 912a3f79 2021-08-30 j case KEY_END:
4848 640cd7ff 2022-06-22 mark view->count = 0;
4849 912a3f79 2021-08-30 j if (s->eof)
4850 912a3f79 2021-08-30 j break;
4851 912a3f79 2021-08-30 j
4852 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
4853 912a3f79 2021-08-30 j s->eof = 1;
4854 912a3f79 2021-08-30 j break;
4855 1e37a5c2 2019-05-12 jcs case 'k':
4856 1e37a5c2 2019-05-12 jcs case KEY_UP:
4857 02ffd0d5 2021-10-17 stsp case CTRL('p'):
4858 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
4859 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4860 640cd7ff 2022-06-22 mark else
4861 640cd7ff 2022-06-22 mark view->count = 0;
4862 1e37a5c2 2019-05-12 jcs break;
4863 83cc4199 2022-06-13 stsp case CTRL('u'):
4864 33c3719a 2022-06-15 stsp case 'u':
4865 83cc4199 2022-06-13 stsp nscroll /= 2;
4866 83cc4199 2022-06-13 stsp /* FALL THROUGH */
4867 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4868 a60a9dc4 2019-05-13 jcs case CTRL('b'):
4869 61417565 2022-06-20 mark case 'b':
4870 640cd7ff 2022-06-22 mark if (s->first_displayed_line == 1) {
4871 640cd7ff 2022-06-22 mark view->count = 0;
4872 26ed57b2 2018-05-19 stsp break;
4873 640cd7ff 2022-06-22 mark }
4874 1e37a5c2 2019-05-12 jcs i = 0;
4875 83cc4199 2022-06-13 stsp while (i++ < nscroll && s->first_displayed_line > 1)
4876 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4877 1e37a5c2 2019-05-12 jcs break;
4878 1e37a5c2 2019-05-12 jcs case 'j':
4879 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4880 02ffd0d5 2021-10-17 stsp case CTRL('n'):
4881 1e37a5c2 2019-05-12 jcs if (!s->eof)
4882 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4883 640cd7ff 2022-06-22 mark else
4884 640cd7ff 2022-06-22 mark view->count = 0;
4885 1e37a5c2 2019-05-12 jcs break;
4886 83cc4199 2022-06-13 stsp case CTRL('d'):
4887 33c3719a 2022-06-15 stsp case 'd':
4888 83cc4199 2022-06-13 stsp nscroll /= 2;
4889 83cc4199 2022-06-13 stsp /* FALL THROUGH */
4890 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4891 a60a9dc4 2019-05-13 jcs case CTRL('f'):
4892 61417565 2022-06-20 mark case 'f':
4893 1e37a5c2 2019-05-12 jcs case ' ':
4894 640cd7ff 2022-06-22 mark if (s->eof) {
4895 640cd7ff 2022-06-22 mark view->count = 0;
4896 1e37a5c2 2019-05-12 jcs break;
4897 640cd7ff 2022-06-22 mark }
4898 1e37a5c2 2019-05-12 jcs i = 0;
4899 83cc4199 2022-06-13 stsp while (!s->eof && i++ < nscroll) {
4900 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4901 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4902 826082fe 2020-12-10 stsp if (linelen == -1) {
4903 826082fe 2020-12-10 stsp if (feof(s->f)) {
4904 826082fe 2020-12-10 stsp s->eof = 1;
4905 826082fe 2020-12-10 stsp } else
4906 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
4907 34bc9ec9 2019-02-22 stsp break;
4908 826082fe 2020-12-10 stsp }
4909 1e37a5c2 2019-05-12 jcs }
4910 826082fe 2020-12-10 stsp free(line);
4911 1e37a5c2 2019-05-12 jcs break;
4912 c7d5c43c 2022-08-04 mark case '(':
4913 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
4914 c7d5c43c 2022-08-04 mark break;
4915 c7d5c43c 2022-08-04 mark case ')':
4916 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
4917 c7d5c43c 2022-08-04 mark break;
4918 c7d5c43c 2022-08-04 mark case '{':
4919 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_HUNK);
4920 c7d5c43c 2022-08-04 mark break;
4921 c7d5c43c 2022-08-04 mark case '}':
4922 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_HUNK);
4923 c7d5c43c 2022-08-04 mark break;
4924 1e37a5c2 2019-05-12 jcs case '[':
4925 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
4926 1e37a5c2 2019-05-12 jcs s->diff_context--;
4927 67b5eae1 2021-12-27 naddy s->matched_line = 0;
4928 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
4929 1e37a5c2 2019-05-12 jcs err = create_diff(s);
4930 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
4931 27829c9e 2020-11-21 stsp s->nlines) {
4932 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
4933 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
4934 27829c9e 2020-11-21 stsp }
4935 640cd7ff 2022-06-22 mark } else
4936 640cd7ff 2022-06-22 mark view->count = 0;
4937 1e37a5c2 2019-05-12 jcs break;
4938 1e37a5c2 2019-05-12 jcs case ']':
4939 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
4940 1e37a5c2 2019-05-12 jcs s->diff_context++;
4941 67b5eae1 2021-12-27 naddy s->matched_line = 0;
4942 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
4943 1e37a5c2 2019-05-12 jcs err = create_diff(s);
4944 640cd7ff 2022-06-22 mark } else
4945 640cd7ff 2022-06-22 mark view->count = 0;
4946 1e37a5c2 2019-05-12 jcs break;
4947 1e37a5c2 2019-05-12 jcs case '<':
4948 1e37a5c2 2019-05-12 jcs case ',':
4949 2b3e6702 2022-07-20 mark case 'K':
4950 c0f61fa4 2022-07-11 mark up = 1;
4951 c0f61fa4 2022-07-11 mark /* FALL THROUGH */
4952 c0f61fa4 2022-07-11 mark case '>':
4953 c0f61fa4 2022-07-11 mark case '.':
4954 2b3e6702 2022-07-20 mark case 'J':
4955 c0f61fa4 2022-07-11 mark if (s->parent_view == NULL) {
4956 640cd7ff 2022-06-22 mark view->count = 0;
4957 48ae06ee 2018-10-18 stsp break;
4958 640cd7ff 2022-06-22 mark }
4959 c0f61fa4 2022-07-11 mark s->parent_view->count = view->count;
4960 6524637e 2019-02-21 stsp
4961 c0f61fa4 2022-07-11 mark if (s->parent_view->type == TOG_VIEW_LOG) {
4962 c0f61fa4 2022-07-11 mark ls = &s->parent_view->state.log;
4963 c0f61fa4 2022-07-11 mark old_selected_entry = ls->selected_entry;
4964 15a087fe 2019-02-21 stsp
4965 c0f61fa4 2022-07-11 mark err = input_log_view(NULL, s->parent_view,
4966 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
4967 c0f61fa4 2022-07-11 mark if (err)
4968 c0f61fa4 2022-07-11 mark break;
4969 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
4970 15a087fe 2019-02-21 stsp
4971 c0f61fa4 2022-07-11 mark if (old_selected_entry == ls->selected_entry)
4972 c0f61fa4 2022-07-11 mark break;
4973 15a087fe 2019-02-21 stsp
4974 c0f61fa4 2022-07-11 mark err = set_selected_commit(s, ls->selected_entry);
4975 c0f61fa4 2022-07-11 mark if (err)
4976 c0f61fa4 2022-07-11 mark break;
4977 c0f61fa4 2022-07-11 mark } else if (s->parent_view->type == TOG_VIEW_BLAME) {
4978 c0f61fa4 2022-07-11 mark struct tog_blame_view_state *bs;
4979 c0f61fa4 2022-07-11 mark struct got_object_id *id, *prev_id;
4980 5e224a3e 2019-02-22 stsp
4981 c0f61fa4 2022-07-11 mark bs = &s->parent_view->state.blame;
4982 c0f61fa4 2022-07-11 mark prev_id = get_annotation_for_line(bs->blame.lines,
4983 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->last_diffed_line);
4984 c0f61fa4 2022-07-11 mark
4985 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view,
4986 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
4987 c0f61fa4 2022-07-11 mark if (err)
4988 c0f61fa4 2022-07-11 mark break;
4989 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
4990 5a8b5076 2020-12-05 stsp
4991 c0f61fa4 2022-07-11 mark if (prev_id == NULL)
4992 c0f61fa4 2022-07-11 mark break;
4993 c0f61fa4 2022-07-11 mark id = get_selected_commit_id(bs->blame.lines,
4994 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->first_displayed_line,
4995 c0f61fa4 2022-07-11 mark bs->selected_line);
4996 c0f61fa4 2022-07-11 mark if (id == NULL)
4997 c0f61fa4 2022-07-11 mark break;
4998 15a087fe 2019-02-21 stsp
4999 c0f61fa4 2022-07-11 mark if (!got_object_id_cmp(prev_id, id))
5000 c0f61fa4 2022-07-11 mark break;
5001 15a087fe 2019-02-21 stsp
5002 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5003 c0f61fa4 2022-07-11 mark if (err)
5004 c0f61fa4 2022-07-11 mark break;
5005 c0f61fa4 2022-07-11 mark }
5006 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5007 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5008 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5009 145b6838 2022-06-16 stsp view->x = 0;
5010 1e37a5c2 2019-05-12 jcs
5011 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5012 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5013 1e37a5c2 2019-05-12 jcs break;
5014 1e37a5c2 2019-05-12 jcs default:
5015 640cd7ff 2022-06-22 mark view->count = 0;
5016 1e37a5c2 2019-05-12 jcs break;
5017 26ed57b2 2018-05-19 stsp }
5018 e5a0f69f 2018-08-18 stsp
5019 bcbd79e2 2018-08-19 stsp return err;
5020 26ed57b2 2018-05-19 stsp }
5021 26ed57b2 2018-05-19 stsp
5022 4ed7e80c 2018-05-20 stsp static const struct got_error *
5023 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5024 9f7d7167 2018-04-29 stsp {
5025 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5026 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5027 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5028 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5029 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5030 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5031 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5032 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5033 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5034 3dbaef42 2020-11-24 stsp const char *errstr;
5035 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5036 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5037 70ac5f84 2019-03-28 stsp
5038 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5039 26ed57b2 2018-05-19 stsp switch (ch) {
5040 64453f7e 2020-11-21 stsp case 'a':
5041 64453f7e 2020-11-21 stsp force_text_diff = 1;
5042 3dbaef42 2020-11-24 stsp break;
5043 3dbaef42 2020-11-24 stsp case 'C':
5044 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5045 3dbaef42 2020-11-24 stsp &errstr);
5046 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5047 5a20d08d 2022-02-09 op errx(1, "number of context lines is %s: %s",
5048 5a20d08d 2022-02-09 op errstr, errstr);
5049 64453f7e 2020-11-21 stsp break;
5050 09b5bff8 2020-02-23 naddy case 'r':
5051 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5052 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5053 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5054 09b5bff8 2020-02-23 naddy optarg);
5055 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5056 09b5bff8 2020-02-23 naddy break;
5057 3dbaef42 2020-11-24 stsp case 'w':
5058 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5059 3dbaef42 2020-11-24 stsp break;
5060 26ed57b2 2018-05-19 stsp default:
5061 17020d27 2019-03-07 stsp usage_diff();
5062 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5063 26ed57b2 2018-05-19 stsp }
5064 26ed57b2 2018-05-19 stsp }
5065 26ed57b2 2018-05-19 stsp
5066 26ed57b2 2018-05-19 stsp argc -= optind;
5067 26ed57b2 2018-05-19 stsp argv += optind;
5068 26ed57b2 2018-05-19 stsp
5069 26ed57b2 2018-05-19 stsp if (argc == 0) {
5070 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5071 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5072 15a94983 2018-12-23 stsp id_str1 = argv[0];
5073 15a94983 2018-12-23 stsp id_str2 = argv[1];
5074 26ed57b2 2018-05-19 stsp } else
5075 26ed57b2 2018-05-19 stsp usage_diff();
5076 eb6600df 2019-01-04 stsp
5077 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
5078 0ae84acc 2022-06-15 tracey if (error)
5079 0ae84acc 2022-06-15 tracey goto done;
5080 0ae84acc 2022-06-15 tracey
5081 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5082 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5083 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5084 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5085 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5086 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5087 c156c7a4 2020-12-18 stsp goto done;
5088 a273ac94 2020-02-23 naddy if (worktree)
5089 a273ac94 2020-02-23 naddy repo_path =
5090 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5091 a273ac94 2020-02-23 naddy else
5092 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5093 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5094 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5095 c156c7a4 2020-12-18 stsp goto done;
5096 c156c7a4 2020-12-18 stsp }
5097 a273ac94 2020-02-23 naddy }
5098 a273ac94 2020-02-23 naddy
5099 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5100 eb6600df 2019-01-04 stsp if (error)
5101 eb6600df 2019-01-04 stsp goto done;
5102 26ed57b2 2018-05-19 stsp
5103 a273ac94 2020-02-23 naddy init_curses();
5104 a273ac94 2020-02-23 naddy
5105 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5106 51a10b52 2020-12-26 stsp if (error)
5107 51a10b52 2020-12-26 stsp goto done;
5108 51a10b52 2020-12-26 stsp
5109 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
5110 26ed57b2 2018-05-19 stsp if (error)
5111 26ed57b2 2018-05-19 stsp goto done;
5112 26ed57b2 2018-05-19 stsp
5113 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5114 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
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(&id2, &label2, id_str2,
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 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5124 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5125 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5126 ea5e7bb5 2018-08-01 stsp goto done;
5127 ea5e7bb5 2018-08-01 stsp }
5128 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5129 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5130 5dc9f4bc 2018-08-04 stsp if (error)
5131 5dc9f4bc 2018-08-04 stsp goto done;
5132 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5133 26ed57b2 2018-05-19 stsp done:
5134 3dbaef42 2020-11-24 stsp free(label1);
5135 3dbaef42 2020-11-24 stsp free(label2);
5136 c02c541e 2019-03-29 stsp free(repo_path);
5137 a273ac94 2020-02-23 naddy free(cwd);
5138 1d0f4054 2021-06-17 stsp if (repo) {
5139 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5140 1d0f4054 2021-06-17 stsp if (error == NULL)
5141 1d0f4054 2021-06-17 stsp error = close_err;
5142 1d0f4054 2021-06-17 stsp }
5143 a273ac94 2020-02-23 naddy if (worktree)
5144 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5145 0ae84acc 2022-06-15 tracey if (pack_fds) {
5146 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5147 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
5148 0ae84acc 2022-06-15 tracey if (error == NULL)
5149 0ae84acc 2022-06-15 tracey error = pack_err;
5150 0ae84acc 2022-06-15 tracey }
5151 51a10b52 2020-12-26 stsp tog_free_refs();
5152 26ed57b2 2018-05-19 stsp return error;
5153 9f7d7167 2018-04-29 stsp }
5154 9f7d7167 2018-04-29 stsp
5155 4ed7e80c 2018-05-20 stsp __dead static void
5156 9f7d7167 2018-04-29 stsp usage_blame(void)
5157 9f7d7167 2018-04-29 stsp {
5158 80ddbec8 2018-04-29 stsp endwin();
5159 87411fa9 2022-06-16 stsp fprintf(stderr,
5160 87411fa9 2022-06-16 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
5161 9f7d7167 2018-04-29 stsp getprogname());
5162 9f7d7167 2018-04-29 stsp exit(1);
5163 9f7d7167 2018-04-29 stsp }
5164 84451b3e 2018-07-10 stsp
5165 84451b3e 2018-07-10 stsp struct tog_blame_line {
5166 84451b3e 2018-07-10 stsp int annotated;
5167 84451b3e 2018-07-10 stsp struct got_object_id *id;
5168 84451b3e 2018-07-10 stsp };
5169 9f7d7167 2018-04-29 stsp
5170 4ed7e80c 2018-05-20 stsp static const struct got_error *
5171 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5172 84451b3e 2018-07-10 stsp {
5173 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5174 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5175 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5176 84451b3e 2018-07-10 stsp const struct got_error *err;
5177 4cb9d869 2022-06-16 stsp int lineno = 0, nprinted = 0;
5178 826082fe 2020-12-10 stsp char *line = NULL;
5179 826082fe 2020-12-10 stsp size_t linesize = 0;
5180 826082fe 2020-12-10 stsp ssize_t linelen;
5181 84451b3e 2018-07-10 stsp wchar_t *wline;
5182 27a741e5 2019-09-11 stsp int width;
5183 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5184 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5185 ab089a2a 2018-07-12 stsp char *id_str;
5186 11b20872 2019-11-08 stsp struct tog_color *tc;
5187 ab089a2a 2018-07-12 stsp
5188 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &s->blamed_commit->id);
5189 ab089a2a 2018-07-12 stsp if (err)
5190 ab089a2a 2018-07-12 stsp return err;
5191 84451b3e 2018-07-10 stsp
5192 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5193 f7d12f7e 2018-08-01 stsp werase(view->window);
5194 84451b3e 2018-07-10 stsp
5195 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5196 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5197 ab089a2a 2018-07-12 stsp free(id_str);
5198 ab089a2a 2018-07-12 stsp return err;
5199 ab089a2a 2018-07-12 stsp }
5200 ab089a2a 2018-07-12 stsp
5201 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5202 ab089a2a 2018-07-12 stsp free(line);
5203 2550e4c3 2018-07-13 stsp line = NULL;
5204 1cae65b4 2019-09-22 stsp if (err)
5205 1cae65b4 2019-09-22 stsp return err;
5206 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5207 a3404814 2018-09-02 stsp wstandout(view->window);
5208 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5209 11b20872 2019-11-08 stsp if (tc)
5210 11b20872 2019-11-08 stsp wattr_on(view->window,
5211 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5212 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5213 11b20872 2019-11-08 stsp if (tc)
5214 11b20872 2019-11-08 stsp wattr_off(view->window,
5215 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5216 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5217 a3404814 2018-09-02 stsp wstandend(view->window);
5218 2550e4c3 2018-07-13 stsp free(wline);
5219 2550e4c3 2018-07-13 stsp wline = NULL;
5220 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5221 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5222 ab089a2a 2018-07-12 stsp
5223 94b80cfa 2022-08-01 mark if (view->gline > blame->nlines)
5224 94b80cfa 2022-08-01 mark view->gline = blame->nlines;
5225 94b80cfa 2022-08-01 mark
5226 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5227 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5228 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5229 ab089a2a 2018-07-12 stsp free(id_str);
5230 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5231 ab089a2a 2018-07-12 stsp }
5232 ab089a2a 2018-07-12 stsp free(id_str);
5233 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5234 3f60a8ef 2018-07-10 stsp free(line);
5235 2550e4c3 2018-07-13 stsp line = NULL;
5236 3f60a8ef 2018-07-10 stsp if (err)
5237 3f60a8ef 2018-07-10 stsp return err;
5238 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5239 2550e4c3 2018-07-13 stsp free(wline);
5240 2550e4c3 2018-07-13 stsp wline = NULL;
5241 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5242 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5243 3f60a8ef 2018-07-10 stsp
5244 4f7c3e5e 2020-12-01 naddy s->eof = 0;
5245 145b6838 2022-06-16 stsp view->maxx = 0;
5246 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
5247 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
5248 826082fe 2020-12-10 stsp if (linelen == -1) {
5249 826082fe 2020-12-10 stsp if (feof(blame->f)) {
5250 826082fe 2020-12-10 stsp s->eof = 1;
5251 826082fe 2020-12-10 stsp break;
5252 826082fe 2020-12-10 stsp }
5253 84451b3e 2018-07-10 stsp free(line);
5254 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
5255 84451b3e 2018-07-10 stsp }
5256 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
5257 94b80cfa 2022-08-01 mark continue;
5258 94b80cfa 2022-08-01 mark if (view->gline && !gotoline(view, &lineno, &nprinted))
5259 826082fe 2020-12-10 stsp continue;
5260 1853e0f4 2022-06-16 stsp
5261 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
5262 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5263 1853e0f4 2022-06-16 stsp if (err) {
5264 1853e0f4 2022-06-16 stsp free(line);
5265 1853e0f4 2022-06-16 stsp return err;
5266 1853e0f4 2022-06-16 stsp }
5267 1853e0f4 2022-06-16 stsp free(wline);
5268 1853e0f4 2022-06-16 stsp wline = NULL;
5269 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
5270 84451b3e 2018-07-10 stsp
5271 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5272 f7d12f7e 2018-08-01 stsp wstandout(view->window);
5273 b700b5d6 2018-07-10 stsp
5274 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
5275 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
5276 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
5277 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5278 c0f61fa4 2022-07-11 mark !(nprinted == s->selected_line - 1)) {
5279 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5280 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
5281 8d0fe45a 2019-08-12 stsp char *id_str;
5282 87411fa9 2022-06-16 stsp err = got_object_id_str(&id_str,
5283 87411fa9 2022-06-16 stsp blame_line->id);
5284 8d0fe45a 2019-08-12 stsp if (err) {
5285 8d0fe45a 2019-08-12 stsp free(line);
5286 8d0fe45a 2019-08-12 stsp return err;
5287 8d0fe45a 2019-08-12 stsp }
5288 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5289 11b20872 2019-11-08 stsp if (tc)
5290 11b20872 2019-11-08 stsp wattr_on(view->window,
5291 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5292 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
5293 11b20872 2019-11-08 stsp if (tc)
5294 11b20872 2019-11-08 stsp wattr_off(view->window,
5295 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5296 8d0fe45a 2019-08-12 stsp free(id_str);
5297 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
5298 8d0fe45a 2019-08-12 stsp } else {
5299 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5300 8d0fe45a 2019-08-12 stsp prev_id = NULL;
5301 84451b3e 2018-07-10 stsp }
5302 ee41ec32 2018-07-10 stsp } else {
5303 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5304 ee41ec32 2018-07-10 stsp prev_id = NULL;
5305 ee41ec32 2018-07-10 stsp }
5306 84451b3e 2018-07-10 stsp
5307 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5308 f7d12f7e 2018-08-01 stsp wstandend(view->window);
5309 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5310 27a741e5 2019-09-11 stsp
5311 41605754 2020-11-12 stsp if (view->ncols <= 9) {
5312 41605754 2020-11-12 stsp width = 9;
5313 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
5314 4f7c3e5e 2020-12-01 naddy s->matched_line &&
5315 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5316 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
5317 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
5318 41605754 2020-11-12 stsp if (err) {
5319 41605754 2020-11-12 stsp free(line);
5320 41605754 2020-11-12 stsp return err;
5321 41605754 2020-11-12 stsp }
5322 41605754 2020-11-12 stsp width += 9;
5323 41605754 2020-11-12 stsp } else {
5324 4cb9d869 2022-06-16 stsp int skip;
5325 4cb9d869 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
5326 4cb9d869 2022-06-16 stsp view->x, view->ncols - 9, 9, 1);
5327 4cb9d869 2022-06-16 stsp if (err) {
5328 4cb9d869 2022-06-16 stsp free(line);
5329 4cb9d869 2022-06-16 stsp return err;
5330 145b6838 2022-06-16 stsp }
5331 4cb9d869 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
5332 a75b3e2d 2022-06-16 stsp width += 9;
5333 41605754 2020-11-12 stsp free(wline);
5334 41605754 2020-11-12 stsp wline = NULL;
5335 41605754 2020-11-12 stsp }
5336 41605754 2020-11-12 stsp
5337 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
5338 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
5339 84451b3e 2018-07-10 stsp if (++nprinted == 1)
5340 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
5341 84451b3e 2018-07-10 stsp }
5342 826082fe 2020-12-10 stsp free(line);
5343 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
5344 84451b3e 2018-07-10 stsp
5345 9b058f45 2022-06-30 mark view_border(view);
5346 84451b3e 2018-07-10 stsp
5347 84451b3e 2018-07-10 stsp return NULL;
5348 84451b3e 2018-07-10 stsp }
5349 84451b3e 2018-07-10 stsp
5350 84451b3e 2018-07-10 stsp static const struct got_error *
5351 392891ce 2022-04-07 stsp blame_cb(void *arg, int nlines, int lineno,
5352 392891ce 2022-04-07 stsp struct got_commit_object *commit, struct got_object_id *id)
5353 84451b3e 2018-07-10 stsp {
5354 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
5355 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
5356 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
5357 1a76625f 2018-10-22 stsp int errcode;
5358 84451b3e 2018-07-10 stsp
5359 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
5360 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
5361 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
5362 84451b3e 2018-07-10 stsp
5363 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5364 1a76625f 2018-10-22 stsp if (errcode)
5365 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
5366 84451b3e 2018-07-10 stsp
5367 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
5368 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
5369 d68a0a7d 2018-07-10 stsp goto done;
5370 d68a0a7d 2018-07-10 stsp }
5371 d68a0a7d 2018-07-10 stsp
5372 d68a0a7d 2018-07-10 stsp if (lineno == -1)
5373 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
5374 d68a0a7d 2018-07-10 stsp
5375 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
5376 d68a0a7d 2018-07-10 stsp if (line->annotated)
5377 d68a0a7d 2018-07-10 stsp goto done;
5378 d68a0a7d 2018-07-10 stsp
5379 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
5380 84451b3e 2018-07-10 stsp if (line->id == NULL) {
5381 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5382 84451b3e 2018-07-10 stsp goto done;
5383 84451b3e 2018-07-10 stsp }
5384 84451b3e 2018-07-10 stsp line->annotated = 1;
5385 84451b3e 2018-07-10 stsp done:
5386 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5387 1a76625f 2018-10-22 stsp if (errcode)
5388 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5389 84451b3e 2018-07-10 stsp return err;
5390 84451b3e 2018-07-10 stsp }
5391 84451b3e 2018-07-10 stsp
5392 84451b3e 2018-07-10 stsp static void *
5393 84451b3e 2018-07-10 stsp blame_thread(void *arg)
5394 84451b3e 2018-07-10 stsp {
5395 1d0f4054 2021-06-17 stsp const struct got_error *err, *close_err;
5396 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
5397 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
5398 e6e73e55 2022-06-30 tracey int errcode, fd1 = -1, fd2 = -1;
5399 e6e73e55 2022-06-30 tracey FILE *f1 = NULL, *f2 = NULL;
5400 1b484788 2022-06-28 tracey
5401 e6e73e55 2022-06-30 tracey fd1 = got_opentempfd();
5402 e6e73e55 2022-06-30 tracey if (fd1 == -1)
5403 1b484788 2022-06-28 tracey return (void *)got_error_from_errno("got_opentempfd");
5404 e6e73e55 2022-06-30 tracey
5405 e6e73e55 2022-06-30 tracey fd2 = got_opentempfd();
5406 e6e73e55 2022-06-30 tracey if (fd2 == -1) {
5407 e6e73e55 2022-06-30 tracey err = got_error_from_errno("got_opentempfd");
5408 e6e73e55 2022-06-30 tracey goto done;
5409 e6e73e55 2022-06-30 tracey }
5410 18430de3 2018-07-10 stsp
5411 e6e73e55 2022-06-30 tracey f1 = got_opentemp();
5412 e6e73e55 2022-06-30 tracey if (f1 == NULL) {
5413 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5414 e6e73e55 2022-06-30 tracey goto done;
5415 e6e73e55 2022-06-30 tracey }
5416 e6e73e55 2022-06-30 tracey f2 = got_opentemp();
5417 e6e73e55 2022-06-30 tracey if (f2 == NULL) {
5418 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5419 e6e73e55 2022-06-30 tracey goto done;
5420 e6e73e55 2022-06-30 tracey }
5421 e6e73e55 2022-06-30 tracey
5422 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
5423 61266923 2020-01-14 stsp if (err)
5424 e6e73e55 2022-06-30 tracey goto done;
5425 61266923 2020-01-14 stsp
5426 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
5427 917d79a7 2022-07-01 stsp tog_diff_algo, blame_cb, ta->cb_args,
5428 4b752015 2022-06-30 stsp ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5429 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
5430 fc06ba56 2019-08-22 stsp err = NULL;
5431 18430de3 2018-07-10 stsp
5432 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5433 e6e73e55 2022-06-30 tracey if (errcode) {
5434 e6e73e55 2022-06-30 tracey err = got_error_set_errno(errcode, "pthread_mutex_lock");
5435 e6e73e55 2022-06-30 tracey goto done;
5436 e6e73e55 2022-06-30 tracey }
5437 18430de3 2018-07-10 stsp
5438 1d0f4054 2021-06-17 stsp close_err = got_repo_close(ta->repo);
5439 1d0f4054 2021-06-17 stsp if (err == NULL)
5440 1d0f4054 2021-06-17 stsp err = close_err;
5441 c9beca56 2018-07-22 stsp ta->repo = NULL;
5442 c9beca56 2018-07-22 stsp *ta->complete = 1;
5443 18430de3 2018-07-10 stsp
5444 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5445 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
5446 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5447 18430de3 2018-07-10 stsp
5448 e6e73e55 2022-06-30 tracey done:
5449 e6e73e55 2022-06-30 tracey if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5450 1b484788 2022-06-28 tracey err = got_error_from_errno("close");
5451 e6e73e55 2022-06-30 tracey if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5452 e6e73e55 2022-06-30 tracey err = got_error_from_errno("close");
5453 e6e73e55 2022-06-30 tracey if (f1 && fclose(f1) == EOF && err == NULL)
5454 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5455 e6e73e55 2022-06-30 tracey if (f2 && fclose(f2) == EOF && err == NULL)
5456 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5457 1b484788 2022-06-28 tracey
5458 18430de3 2018-07-10 stsp return (void *)err;
5459 84451b3e 2018-07-10 stsp }
5460 84451b3e 2018-07-10 stsp
5461 245d91c1 2018-07-12 stsp static struct got_object_id *
5462 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5463 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
5464 245d91c1 2018-07-12 stsp {
5465 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
5466 8d0fe45a 2019-08-12 stsp
5467 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
5468 8d0fe45a 2019-08-12 stsp return NULL;
5469 b880a918 2018-07-10 stsp
5470 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
5471 c0f61fa4 2022-07-11 mark if (!line->annotated)
5472 c0f61fa4 2022-07-11 mark return NULL;
5473 c0f61fa4 2022-07-11 mark
5474 c0f61fa4 2022-07-11 mark return line->id;
5475 c0f61fa4 2022-07-11 mark }
5476 c0f61fa4 2022-07-11 mark
5477 c0f61fa4 2022-07-11 mark static struct got_object_id *
5478 c0f61fa4 2022-07-11 mark get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5479 c0f61fa4 2022-07-11 mark int lineno)
5480 c0f61fa4 2022-07-11 mark {
5481 c0f61fa4 2022-07-11 mark struct tog_blame_line *line;
5482 c0f61fa4 2022-07-11 mark
5483 c0f61fa4 2022-07-11 mark if (nlines <= 0 || lineno >= nlines)
5484 c0f61fa4 2022-07-11 mark return NULL;
5485 c0f61fa4 2022-07-11 mark
5486 c0f61fa4 2022-07-11 mark line = &lines[lineno - 1];
5487 245d91c1 2018-07-12 stsp if (!line->annotated)
5488 245d91c1 2018-07-12 stsp return NULL;
5489 245d91c1 2018-07-12 stsp
5490 245d91c1 2018-07-12 stsp return line->id;
5491 b880a918 2018-07-10 stsp }
5492 245d91c1 2018-07-12 stsp
5493 b880a918 2018-07-10 stsp static const struct got_error *
5494 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
5495 a70480e0 2018-06-23 stsp {
5496 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
5497 245d91c1 2018-07-12 stsp int i;
5498 245d91c1 2018-07-12 stsp
5499 245d91c1 2018-07-12 stsp if (blame->thread) {
5500 1a76625f 2018-10-22 stsp int errcode;
5501 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5502 1a76625f 2018-10-22 stsp if (errcode)
5503 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5504 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
5505 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
5506 1a76625f 2018-10-22 stsp if (errcode)
5507 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
5508 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5509 1a76625f 2018-10-22 stsp if (errcode)
5510 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5511 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
5512 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
5513 245d91c1 2018-07-12 stsp err = NULL;
5514 245d91c1 2018-07-12 stsp blame->thread = NULL;
5515 245d91c1 2018-07-12 stsp }
5516 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
5517 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
5518 1d0f4054 2021-06-17 stsp close_err = got_repo_close(blame->thread_args.repo);
5519 1d0f4054 2021-06-17 stsp if (err == NULL)
5520 1d0f4054 2021-06-17 stsp err = close_err;
5521 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
5522 245d91c1 2018-07-12 stsp }
5523 245d91c1 2018-07-12 stsp if (blame->f) {
5524 56b63ca4 2021-01-22 stsp if (fclose(blame->f) == EOF && err == NULL)
5525 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
5526 245d91c1 2018-07-12 stsp blame->f = NULL;
5527 245d91c1 2018-07-12 stsp }
5528 57670559 2018-12-23 stsp if (blame->lines) {
5529 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
5530 57670559 2018-12-23 stsp free(blame->lines[i].id);
5531 57670559 2018-12-23 stsp free(blame->lines);
5532 57670559 2018-12-23 stsp blame->lines = NULL;
5533 57670559 2018-12-23 stsp }
5534 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
5535 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
5536 0ae84acc 2022-06-15 tracey if (blame->pack_fds) {
5537 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5538 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(blame->pack_fds);
5539 0ae84acc 2022-06-15 tracey if (err == NULL)
5540 0ae84acc 2022-06-15 tracey err = pack_err;
5541 8b195234 2022-06-15 stsp blame->pack_fds = NULL;
5542 0ae84acc 2022-06-15 tracey }
5543 245d91c1 2018-07-12 stsp return err;
5544 245d91c1 2018-07-12 stsp }
5545 245d91c1 2018-07-12 stsp
5546 245d91c1 2018-07-12 stsp static const struct got_error *
5547 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
5548 fc06ba56 2019-08-22 stsp {
5549 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
5550 fc06ba56 2019-08-22 stsp int *done = arg;
5551 fc06ba56 2019-08-22 stsp int errcode;
5552 fc06ba56 2019-08-22 stsp
5553 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5554 fc06ba56 2019-08-22 stsp if (errcode)
5555 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5556 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
5557 fc06ba56 2019-08-22 stsp
5558 fc06ba56 2019-08-22 stsp if (*done)
5559 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
5560 fc06ba56 2019-08-22 stsp
5561 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5562 fc06ba56 2019-08-22 stsp if (errcode)
5563 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5564 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
5565 fc06ba56 2019-08-22 stsp
5566 fc06ba56 2019-08-22 stsp return err;
5567 fc06ba56 2019-08-22 stsp }
5568 fc06ba56 2019-08-22 stsp
5569 fc06ba56 2019-08-22 stsp static const struct got_error *
5570 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
5571 245d91c1 2018-07-12 stsp {
5572 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5573 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5574 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
5575 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
5576 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
5577 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
5578 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
5579 eb81bc23 2022-06-28 tracey int obj_type, fd = -1;
5580 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5581 a70480e0 2018-06-23 stsp
5582 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&commit, s->repo,
5583 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id);
5584 27d434c2 2018-09-15 stsp if (err)
5585 15a94983 2018-12-23 stsp return err;
5586 eb81bc23 2022-06-28 tracey
5587 eb81bc23 2022-06-28 tracey fd = got_opentempfd();
5588 eb81bc23 2022-06-28 tracey if (fd == -1) {
5589 eb81bc23 2022-06-28 tracey err = got_error_from_errno("got_opentempfd");
5590 eb81bc23 2022-06-28 tracey goto done;
5591 eb81bc23 2022-06-28 tracey }
5592 a44927cc 2022-04-07 stsp
5593 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
5594 a44927cc 2022-04-07 stsp if (err)
5595 a44927cc 2022-04-07 stsp goto done;
5596 27d434c2 2018-09-15 stsp
5597 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
5598 84451b3e 2018-07-10 stsp if (err)
5599 84451b3e 2018-07-10 stsp goto done;
5600 27d434c2 2018-09-15 stsp
5601 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5602 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5603 84451b3e 2018-07-10 stsp goto done;
5604 84451b3e 2018-07-10 stsp }
5605 a70480e0 2018-06-23 stsp
5606 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
5607 a70480e0 2018-06-23 stsp if (err)
5608 a70480e0 2018-06-23 stsp goto done;
5609 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
5610 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
5611 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
5612 84451b3e 2018-07-10 stsp goto done;
5613 84451b3e 2018-07-10 stsp }
5614 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
5615 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
5616 1fddf795 2021-01-20 stsp if (err)
5617 1fddf795 2021-01-20 stsp goto done;
5618 1fddf795 2021-01-20 stsp if (blame->nlines == 0) {
5619 1fddf795 2021-01-20 stsp s->blame_complete = 1;
5620 84451b3e 2018-07-10 stsp goto done;
5621 1fddf795 2021-01-20 stsp }
5622 b02560ec 2019-08-19 stsp
5623 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
5624 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
5625 b02560ec 2019-08-19 stsp blame->nlines--;
5626 a70480e0 2018-06-23 stsp
5627 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
5628 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
5629 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
5630 84451b3e 2018-07-10 stsp goto done;
5631 84451b3e 2018-07-10 stsp }
5632 a70480e0 2018-06-23 stsp
5633 0ae84acc 2022-06-15 tracey err = got_repo_pack_fds_open(&pack_fds);
5634 bd24772e 2018-07-11 stsp if (err)
5635 bd24772e 2018-07-11 stsp goto done;
5636 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
5637 0ae84acc 2022-06-15 tracey pack_fds);
5638 0ae84acc 2022-06-15 tracey if (err)
5639 0ae84acc 2022-06-15 tracey goto done;
5640 bd24772e 2018-07-11 stsp
5641 0ae84acc 2022-06-15 tracey blame->pack_fds = pack_fds;
5642 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
5643 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
5644 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
5645 d7b5a0e8 2022-04-20 stsp blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
5646 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
5647 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5648 245d91c1 2018-07-12 stsp goto done;
5649 245d91c1 2018-07-12 stsp }
5650 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
5651 245d91c1 2018-07-12 stsp
5652 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
5653 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
5654 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
5655 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
5656 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
5657 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
5658 a5388363 2020-12-01 naddy s->blame_complete = 0;
5659 f5a09613 2020-12-13 naddy
5660 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
5661 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
5662 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
5663 f5a09613 2020-12-13 naddy s->selected_line = 1;
5664 f5a09613 2020-12-13 naddy }
5665 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5666 245d91c1 2018-07-12 stsp
5667 245d91c1 2018-07-12 stsp done:
5668 a44927cc 2022-04-07 stsp if (commit)
5669 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
5670 eb81bc23 2022-06-28 tracey if (fd != -1 && close(fd) == -1 && err == NULL)
5671 eb81bc23 2022-06-28 tracey err = got_error_from_errno("close");
5672 245d91c1 2018-07-12 stsp if (blob)
5673 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
5674 27d434c2 2018-09-15 stsp free(obj_id);
5675 245d91c1 2018-07-12 stsp if (err)
5676 245d91c1 2018-07-12 stsp stop_blame(blame);
5677 245d91c1 2018-07-12 stsp return err;
5678 245d91c1 2018-07-12 stsp }
5679 245d91c1 2018-07-12 stsp
5680 245d91c1 2018-07-12 stsp static const struct got_error *
5681 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
5682 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5683 245d91c1 2018-07-12 stsp {
5684 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
5685 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
5686 dbc6a6b6 2018-07-12 stsp
5687 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->blamed_commits);
5688 245d91c1 2018-07-12 stsp
5689 c4843652 2019-08-12 stsp s->path = strdup(path);
5690 c4843652 2019-08-12 stsp if (s->path == NULL)
5691 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
5692 c4843652 2019-08-12 stsp
5693 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
5694 c4843652 2019-08-12 stsp if (err) {
5695 c4843652 2019-08-12 stsp free(s->path);
5696 7cbe629d 2018-08-04 stsp return err;
5697 c4843652 2019-08-12 stsp }
5698 245d91c1 2018-07-12 stsp
5699 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
5700 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
5701 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
5702 fb2756b9 2018-08-04 stsp s->selected_line = 1;
5703 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
5704 fb2756b9 2018-08-04 stsp s->repo = repo;
5705 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
5706 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
5707 7cbe629d 2018-08-04 stsp
5708 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
5709 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5710 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
5711 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
5712 11b20872 2019-11-08 stsp if (err)
5713 11b20872 2019-11-08 stsp return err;
5714 11b20872 2019-11-08 stsp }
5715 11b20872 2019-11-08 stsp
5716 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
5717 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
5718 917d79a7 2022-07-01 stsp view->reset = reset_blame_view;
5719 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
5720 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
5721 6c4c42e0 2019-06-24 stsp view->search_next = search_next_blame_view;
5722 e5a0f69f 2018-08-18 stsp
5723 a5388363 2020-12-01 naddy return run_blame(view);
5724 7cbe629d 2018-08-04 stsp }
5725 7cbe629d 2018-08-04 stsp
5726 e5a0f69f 2018-08-18 stsp static const struct got_error *
5727 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
5728 7cbe629d 2018-08-04 stsp {
5729 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
5730 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
5731 7cbe629d 2018-08-04 stsp
5732 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
5733 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
5734 e5a0f69f 2018-08-18 stsp
5735 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&s->blamed_commits)) {
5736 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
5737 dbdddfee 2021-06-23 naddy blamed_commit = STAILQ_FIRST(&s->blamed_commits);
5738 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
5739 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
5740 7cbe629d 2018-08-04 stsp }
5741 e5a0f69f 2018-08-18 stsp
5742 e5a0f69f 2018-08-18 stsp free(s->path);
5743 11b20872 2019-11-08 stsp free_colors(&s->colors);
5744 e5a0f69f 2018-08-18 stsp return err;
5745 7cbe629d 2018-08-04 stsp }
5746 7cbe629d 2018-08-04 stsp
5747 7cbe629d 2018-08-04 stsp static const struct got_error *
5748 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
5749 6c4c42e0 2019-06-24 stsp {
5750 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
5751 6c4c42e0 2019-06-24 stsp
5752 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
5753 6c4c42e0 2019-06-24 stsp return NULL;
5754 6c4c42e0 2019-06-24 stsp }
5755 6c4c42e0 2019-06-24 stsp
5756 6c4c42e0 2019-06-24 stsp static const struct got_error *
5757 6c4c42e0 2019-06-24 stsp search_next_blame_view(struct tog_view *view)
5758 6c4c42e0 2019-06-24 stsp {
5759 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
5760 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
5761 6c4c42e0 2019-06-24 stsp int lineno;
5762 cb713507 2022-06-16 stsp char *line = NULL;
5763 826082fe 2020-12-10 stsp size_t linesize = 0;
5764 826082fe 2020-12-10 stsp ssize_t linelen;
5765 6c4c42e0 2019-06-24 stsp
5766 6c4c42e0 2019-06-24 stsp if (!view->searching) {
5767 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5768 6c4c42e0 2019-06-24 stsp return NULL;
5769 6c4c42e0 2019-06-24 stsp }
5770 6c4c42e0 2019-06-24 stsp
5771 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
5772 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5773 2246482e 2019-06-25 stsp lineno = s->matched_line + 1;
5774 6c4c42e0 2019-06-24 stsp else
5775 2246482e 2019-06-25 stsp lineno = s->matched_line - 1;
5776 487cd7d2 2021-12-17 stsp } else
5777 487cd7d2 2021-12-17 stsp lineno = s->first_displayed_line - 1 + s->selected_line;
5778 6c4c42e0 2019-06-24 stsp
5779 6c4c42e0 2019-06-24 stsp while (1) {
5780 6c4c42e0 2019-06-24 stsp off_t offset;
5781 6c4c42e0 2019-06-24 stsp
5782 6c4c42e0 2019-06-24 stsp if (lineno <= 0 || lineno > s->blame.nlines) {
5783 6c4c42e0 2019-06-24 stsp if (s->matched_line == 0) {
5784 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5785 6c4c42e0 2019-06-24 stsp break;
5786 6c4c42e0 2019-06-24 stsp }
5787 2246482e 2019-06-25 stsp
5788 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5789 6c4c42e0 2019-06-24 stsp lineno = 1;
5790 6c4c42e0 2019-06-24 stsp else
5791 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
5792 6c4c42e0 2019-06-24 stsp }
5793 6c4c42e0 2019-06-24 stsp
5794 6c4c42e0 2019-06-24 stsp offset = s->blame.line_offsets[lineno - 1];
5795 6c4c42e0 2019-06-24 stsp if (fseeko(s->blame.f, offset, SEEK_SET) != 0) {
5796 6c4c42e0 2019-06-24 stsp free(line);
5797 6c4c42e0 2019-06-24 stsp return got_error_from_errno("fseeko");
5798 6c4c42e0 2019-06-24 stsp }
5799 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->blame.f);
5800 cb713507 2022-06-16 stsp if (linelen != -1) {
5801 cb713507 2022-06-16 stsp char *exstr;
5802 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
5803 cb713507 2022-06-16 stsp if (err)
5804 cb713507 2022-06-16 stsp break;
5805 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
5806 cb713507 2022-06-16 stsp &view->regmatch)) {
5807 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5808 cb713507 2022-06-16 stsp s->matched_line = lineno;
5809 cb713507 2022-06-16 stsp free(exstr);
5810 cb713507 2022-06-16 stsp break;
5811 cb713507 2022-06-16 stsp }
5812 cb713507 2022-06-16 stsp free(exstr);
5813 6c4c42e0 2019-06-24 stsp }
5814 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5815 6c4c42e0 2019-06-24 stsp lineno++;
5816 6c4c42e0 2019-06-24 stsp else
5817 6c4c42e0 2019-06-24 stsp lineno--;
5818 6c4c42e0 2019-06-24 stsp }
5819 826082fe 2020-12-10 stsp free(line);
5820 6c4c42e0 2019-06-24 stsp
5821 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
5822 6c4c42e0 2019-06-24 stsp s->first_displayed_line = s->matched_line;
5823 6c4c42e0 2019-06-24 stsp s->selected_line = 1;
5824 6c4c42e0 2019-06-24 stsp }
5825 6c4c42e0 2019-06-24 stsp
5826 145b6838 2022-06-16 stsp return err;
5827 6c4c42e0 2019-06-24 stsp }
5828 6c4c42e0 2019-06-24 stsp
5829 6c4c42e0 2019-06-24 stsp static const struct got_error *
5830 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
5831 7cbe629d 2018-08-04 stsp {
5832 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
5833 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
5834 2b380cc8 2018-10-24 stsp int errcode;
5835 2b380cc8 2018-10-24 stsp
5836 1fddf795 2021-01-20 stsp if (s->blame.thread == NULL && !s->blame_complete) {
5837 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
5838 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
5839 2b380cc8 2018-10-24 stsp if (errcode)
5840 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
5841 51fe7530 2019-08-19 stsp
5842 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
5843 2b380cc8 2018-10-24 stsp }
5844 e5a0f69f 2018-08-18 stsp
5845 51fe7530 2019-08-19 stsp if (s->blame_complete)
5846 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
5847 51fe7530 2019-08-19 stsp
5848 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
5849 e5a0f69f 2018-08-18 stsp
5850 9b058f45 2022-06-30 mark view_border(view);
5851 e5a0f69f 2018-08-18 stsp return err;
5852 e5a0f69f 2018-08-18 stsp }
5853 e5a0f69f 2018-08-18 stsp
5854 e5a0f69f 2018-08-18 stsp static const struct got_error *
5855 05f04cdf 2022-07-20 mark log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
5856 05f04cdf 2022-07-20 mark struct got_repository *repo, struct got_object_id *id)
5857 05f04cdf 2022-07-20 mark {
5858 05f04cdf 2022-07-20 mark struct tog_view *log_view;
5859 05f04cdf 2022-07-20 mark const struct got_error *err = NULL;
5860 05f04cdf 2022-07-20 mark
5861 05f04cdf 2022-07-20 mark *new_view = NULL;
5862 05f04cdf 2022-07-20 mark
5863 05f04cdf 2022-07-20 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
5864 05f04cdf 2022-07-20 mark if (log_view == NULL)
5865 05f04cdf 2022-07-20 mark return got_error_from_errno("view_open");
5866 05f04cdf 2022-07-20 mark
5867 05f04cdf 2022-07-20 mark err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
5868 05f04cdf 2022-07-20 mark if (err)
5869 05f04cdf 2022-07-20 mark view_close(log_view);
5870 05f04cdf 2022-07-20 mark else
5871 05f04cdf 2022-07-20 mark *new_view = log_view;
5872 05f04cdf 2022-07-20 mark
5873 05f04cdf 2022-07-20 mark return err;
5874 05f04cdf 2022-07-20 mark }
5875 05f04cdf 2022-07-20 mark
5876 05f04cdf 2022-07-20 mark static const struct got_error *
5877 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
5878 e5a0f69f 2018-08-18 stsp {
5879 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
5880 136e2bd4 2022-07-23 mark struct tog_view *diff_view;
5881 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
5882 9b058f45 2022-06-30 mark int eos, nscroll, begin_y = 0, begin_x = 0;
5883 9b058f45 2022-06-30 mark
5884 9b058f45 2022-06-30 mark eos = nscroll = view->nlines - 2;
5885 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
5886 9b058f45 2022-06-30 mark --eos; /* border */
5887 7cbe629d 2018-08-04 stsp
5888 e5a0f69f 2018-08-18 stsp switch (ch) {
5889 145b6838 2022-06-16 stsp case '0':
5890 145b6838 2022-06-16 stsp view->x = 0;
5891 145b6838 2022-06-16 stsp break;
5892 145b6838 2022-06-16 stsp case '$':
5893 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
5894 640cd7ff 2022-06-22 mark view->count = 0;
5895 145b6838 2022-06-16 stsp break;
5896 145b6838 2022-06-16 stsp case KEY_RIGHT:
5897 145b6838 2022-06-16 stsp case 'l':
5898 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
5899 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
5900 640cd7ff 2022-06-22 mark else
5901 640cd7ff 2022-06-22 mark view->count = 0;
5902 145b6838 2022-06-16 stsp break;
5903 145b6838 2022-06-16 stsp case KEY_LEFT:
5904 145b6838 2022-06-16 stsp case 'h':
5905 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
5906 640cd7ff 2022-06-22 mark if (view->x <= 0)
5907 640cd7ff 2022-06-22 mark view->count = 0;
5908 145b6838 2022-06-16 stsp break;
5909 1e37a5c2 2019-05-12 jcs case 'q':
5910 1e37a5c2 2019-05-12 jcs s->done = 1;
5911 4deef56f 2021-09-02 naddy break;
5912 4deef56f 2021-09-02 naddy case 'g':
5913 4deef56f 2021-09-02 naddy case KEY_HOME:
5914 4deef56f 2021-09-02 naddy s->selected_line = 1;
5915 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
5916 640cd7ff 2022-06-22 mark view->count = 0;
5917 4deef56f 2021-09-02 naddy break;
5918 4deef56f 2021-09-02 naddy case 'G':
5919 4deef56f 2021-09-02 naddy case KEY_END:
5920 9b058f45 2022-06-30 mark if (s->blame.nlines < eos) {
5921 4deef56f 2021-09-02 naddy s->selected_line = s->blame.nlines;
5922 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
5923 4deef56f 2021-09-02 naddy } else {
5924 9b058f45 2022-06-30 mark s->selected_line = eos;
5925 9b058f45 2022-06-30 mark s->first_displayed_line = s->blame.nlines - (eos - 1);
5926 4deef56f 2021-09-02 naddy }
5927 640cd7ff 2022-06-22 mark view->count = 0;
5928 1e37a5c2 2019-05-12 jcs break;
5929 1e37a5c2 2019-05-12 jcs case 'k':
5930 1e37a5c2 2019-05-12 jcs case KEY_UP:
5931 02ffd0d5 2021-10-17 stsp case CTRL('p'):
5932 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
5933 1e37a5c2 2019-05-12 jcs s->selected_line--;
5934 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
5935 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
5936 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5937 640cd7ff 2022-06-22 mark else
5938 640cd7ff 2022-06-22 mark view->count = 0;
5939 1e37a5c2 2019-05-12 jcs break;
5940 83cc4199 2022-06-13 stsp case CTRL('u'):
5941 33c3719a 2022-06-15 stsp case 'u':
5942 83cc4199 2022-06-13 stsp nscroll /= 2;
5943 83cc4199 2022-06-13 stsp /* FALL THROUGH */
5944 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5945 ea025d1d 2020-02-22 naddy case CTRL('b'):
5946 61417565 2022-06-20 mark case 'b':
5947 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
5948 640cd7ff 2022-06-22 mark if (view->count > 1)
5949 640cd7ff 2022-06-22 mark nscroll += nscroll;
5950 83cc4199 2022-06-13 stsp s->selected_line = MAX(1, s->selected_line - nscroll);
5951 640cd7ff 2022-06-22 mark view->count = 0;
5952 e5a0f69f 2018-08-18 stsp break;
5953 1e37a5c2 2019-05-12 jcs }
5954 83cc4199 2022-06-13 stsp if (s->first_displayed_line > nscroll)
5955 83cc4199 2022-06-13 stsp s->first_displayed_line -= nscroll;
5956 1e37a5c2 2019-05-12 jcs else
5957 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5958 1e37a5c2 2019-05-12 jcs break;
5959 1e37a5c2 2019-05-12 jcs case 'j':
5960 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5961 02ffd0d5 2021-10-17 stsp case CTRL('n'):
5962 9b058f45 2022-06-30 mark if (s->selected_line < eos && s->first_displayed_line +
5963 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
5964 1e37a5c2 2019-05-12 jcs s->selected_line++;
5965 9b058f45 2022-06-30 mark else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
5966 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5967 640cd7ff 2022-06-22 mark else
5968 640cd7ff 2022-06-22 mark view->count = 0;
5969 1e37a5c2 2019-05-12 jcs break;
5970 61417565 2022-06-20 mark case 'c':
5971 1e37a5c2 2019-05-12 jcs case 'p': {
5972 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
5973 640cd7ff 2022-06-22 mark
5974 640cd7ff 2022-06-22 mark view->count = 0;
5975 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
5976 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
5977 1e37a5c2 2019-05-12 jcs if (id == NULL)
5978 e5a0f69f 2018-08-18 stsp break;
5979 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
5980 a44927cc 2022-04-07 stsp struct got_commit_object *commit, *pcommit;
5981 15a94983 2018-12-23 stsp struct got_object_qid *pid;
5982 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
5983 1e37a5c2 2019-05-12 jcs int obj_type;
5984 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
5985 1e37a5c2 2019-05-12 jcs s->repo, id);
5986 e5a0f69f 2018-08-18 stsp if (err)
5987 e5a0f69f 2018-08-18 stsp break;
5988 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(
5989 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
5990 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
5991 15a94983 2018-12-23 stsp got_object_commit_close(commit);
5992 e5a0f69f 2018-08-18 stsp break;
5993 e5a0f69f 2018-08-18 stsp }
5994 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
5995 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&pcommit,
5996 d7b5a0e8 2022-04-20 stsp s->repo, &pid->id);
5997 a44927cc 2022-04-07 stsp if (err)
5998 a44927cc 2022-04-07 stsp break;
5999 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
6000 a44927cc 2022-04-07 stsp pcommit, s->path);
6001 a44927cc 2022-04-07 stsp got_object_commit_close(pcommit);
6002 e5a0f69f 2018-08-18 stsp if (err) {
6003 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
6004 1e37a5c2 2019-05-12 jcs err = NULL;
6005 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6006 e5a0f69f 2018-08-18 stsp break;
6007 e5a0f69f 2018-08-18 stsp }
6008 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
6009 1e37a5c2 2019-05-12 jcs blob_id);
6010 1e37a5c2 2019-05-12 jcs free(blob_id);
6011 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
6012 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
6013 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6014 e5a0f69f 2018-08-18 stsp break;
6015 1e37a5c2 2019-05-12 jcs }
6016 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6017 d7b5a0e8 2022-04-20 stsp &pid->id);
6018 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6019 1e37a5c2 2019-05-12 jcs } else {
6020 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
6021 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id) == 0)
6022 1e37a5c2 2019-05-12 jcs break;
6023 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6024 1e37a5c2 2019-05-12 jcs id);
6025 1e37a5c2 2019-05-12 jcs }
6026 1e37a5c2 2019-05-12 jcs if (err)
6027 e5a0f69f 2018-08-18 stsp break;
6028 1e37a5c2 2019-05-12 jcs s->done = 1;
6029 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6030 1e37a5c2 2019-05-12 jcs s->done = 0;
6031 1e37a5c2 2019-05-12 jcs if (thread_err)
6032 1e37a5c2 2019-05-12 jcs break;
6033 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits,
6034 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
6035 a5388363 2020-12-01 naddy err = run_blame(view);
6036 1e37a5c2 2019-05-12 jcs if (err)
6037 1e37a5c2 2019-05-12 jcs break;
6038 1e37a5c2 2019-05-12 jcs break;
6039 1e37a5c2 2019-05-12 jcs }
6040 61417565 2022-06-20 mark case 'C': {
6041 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
6042 640cd7ff 2022-06-22 mark
6043 640cd7ff 2022-06-22 mark view->count = 0;
6044 dbdddfee 2021-06-23 naddy first = STAILQ_FIRST(&s->blamed_commits);
6045 d7b5a0e8 2022-04-20 stsp if (!got_object_id_cmp(&first->id, s->commit_id))
6046 1e37a5c2 2019-05-12 jcs break;
6047 1e37a5c2 2019-05-12 jcs s->done = 1;
6048 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6049 1e37a5c2 2019-05-12 jcs s->done = 0;
6050 1e37a5c2 2019-05-12 jcs if (thread_err)
6051 1e37a5c2 2019-05-12 jcs break;
6052 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6053 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
6054 1e37a5c2 2019-05-12 jcs s->blamed_commit =
6055 dbdddfee 2021-06-23 naddy STAILQ_FIRST(&s->blamed_commits);
6056 a5388363 2020-12-01 naddy err = run_blame(view);
6057 1e37a5c2 2019-05-12 jcs if (err)
6058 1e37a5c2 2019-05-12 jcs break;
6059 1e37a5c2 2019-05-12 jcs break;
6060 1e37a5c2 2019-05-12 jcs }
6061 136e2bd4 2022-07-23 mark case 'L':
6062 05f04cdf 2022-07-20 mark view->count = 0;
6063 136e2bd4 2022-07-23 mark s->id_to_log = get_selected_commit_id(s->blame.lines,
6064 136e2bd4 2022-07-23 mark s->blame.nlines, s->first_displayed_line, s->selected_line);
6065 136e2bd4 2022-07-23 mark if (s->id_to_log)
6066 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6067 05f04cdf 2022-07-20 mark break;
6068 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
6069 1e37a5c2 2019-05-12 jcs case '\r': {
6070 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6071 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
6072 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
6073 640cd7ff 2022-06-22 mark
6074 640cd7ff 2022-06-22 mark view->count = 0;
6075 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6076 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6077 1e37a5c2 2019-05-12 jcs if (id == NULL)
6078 1e37a5c2 2019-05-12 jcs break;
6079 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
6080 1e37a5c2 2019-05-12 jcs if (err)
6081 1e37a5c2 2019-05-12 jcs break;
6082 9b058f45 2022-06-30 mark pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6083 c0f61fa4 2022-07-11 mark if (*new_view) {
6084 c0f61fa4 2022-07-11 mark /* traversed from diff view, release diff resources */
6085 c0f61fa4 2022-07-11 mark err = close_diff_view(*new_view);
6086 c0f61fa4 2022-07-11 mark if (err)
6087 c0f61fa4 2022-07-11 mark break;
6088 c0f61fa4 2022-07-11 mark diff_view = *new_view;
6089 c0f61fa4 2022-07-11 mark } else {
6090 c0f61fa4 2022-07-11 mark if (view_is_parent_view(view))
6091 c0f61fa4 2022-07-11 mark view_get_split(view, &begin_y, &begin_x);
6092 9b058f45 2022-06-30 mark
6093 c0f61fa4 2022-07-11 mark diff_view = view_open(0, 0, begin_y, begin_x,
6094 c0f61fa4 2022-07-11 mark TOG_VIEW_DIFF);
6095 c0f61fa4 2022-07-11 mark if (diff_view == NULL) {
6096 c0f61fa4 2022-07-11 mark got_object_commit_close(commit);
6097 c0f61fa4 2022-07-11 mark err = got_error_from_errno("view_open");
6098 c0f61fa4 2022-07-11 mark break;
6099 c0f61fa4 2022-07-11 mark }
6100 15a94983 2018-12-23 stsp }
6101 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6102 c0f61fa4 2022-07-11 mark id, NULL, NULL, 3, 0, 0, view, s->repo);
6103 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6104 1e37a5c2 2019-05-12 jcs if (err) {
6105 1e37a5c2 2019-05-12 jcs view_close(diff_view);
6106 1e37a5c2 2019-05-12 jcs break;
6107 1e37a5c2 2019-05-12 jcs }
6108 c0f61fa4 2022-07-11 mark s->last_diffed_line = s->first_displayed_line - 1 +
6109 c0f61fa4 2022-07-11 mark s->selected_line;
6110 c0f61fa4 2022-07-11 mark if (*new_view)
6111 c0f61fa4 2022-07-11 mark break; /* still open from active diff view */
6112 49b24ee5 2022-07-03 mark if (view_is_parent_view(view) &&
6113 49b24ee5 2022-07-03 mark view->mode == TOG_VIEW_SPLIT_HRZN) {
6114 9b058f45 2022-06-30 mark err = view_init_hsplit(view, begin_y);
6115 9b058f45 2022-06-30 mark if (err)
6116 9b058f45 2022-06-30 mark break;
6117 9b058f45 2022-06-30 mark }
6118 9b058f45 2022-06-30 mark
6119 e78dc838 2020-12-04 stsp view->focussed = 0;
6120 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
6121 9b058f45 2022-06-30 mark diff_view->mode = view->mode;
6122 9b058f45 2022-06-30 mark diff_view->nlines = view->lines - begin_y;
6123 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
6124 3c1dfe12 2022-07-08 mark view_transfer_size(diff_view, view);
6125 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
6126 1e37a5c2 2019-05-12 jcs if (err)
6127 34bc9ec9 2019-02-22 stsp break;
6128 0dbbbe90 2022-06-17 op err = view_set_child(view, diff_view);
6129 0dbbbe90 2022-06-17 op if (err)
6130 0dbbbe90 2022-06-17 op break;
6131 e78dc838 2020-12-04 stsp view->focus_child = 1;
6132 1e37a5c2 2019-05-12 jcs } else
6133 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
6134 1e37a5c2 2019-05-12 jcs if (err)
6135 e5a0f69f 2018-08-18 stsp break;
6136 1e37a5c2 2019-05-12 jcs break;
6137 1e37a5c2 2019-05-12 jcs }
6138 83cc4199 2022-06-13 stsp case CTRL('d'):
6139 33c3719a 2022-06-15 stsp case 'd':
6140 83cc4199 2022-06-13 stsp nscroll /= 2;
6141 83cc4199 2022-06-13 stsp /* FALL THROUGH */
6142 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
6143 ea025d1d 2020-02-22 naddy case CTRL('f'):
6144 61417565 2022-06-20 mark case 'f':
6145 1e37a5c2 2019-05-12 jcs case ' ':
6146 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6147 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
6148 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
6149 640cd7ff 2022-06-22 mark view->count = 0;
6150 e5a0f69f 2018-08-18 stsp break;
6151 1e37a5c2 2019-05-12 jcs }
6152 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6153 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
6154 83cc4199 2022-06-13 stsp s->selected_line +=
6155 83cc4199 2022-06-13 stsp MIN(nscroll, s->last_displayed_line -
6156 83cc4199 2022-06-13 stsp s->first_displayed_line - s->selected_line + 1);
6157 1e37a5c2 2019-05-12 jcs }
6158 83cc4199 2022-06-13 stsp if (s->last_displayed_line + nscroll <= s->blame.nlines)
6159 83cc4199 2022-06-13 stsp s->first_displayed_line += nscroll;
6160 1e37a5c2 2019-05-12 jcs else
6161 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
6162 83cc4199 2022-06-13 stsp s->blame.nlines - (view->nlines - 3);
6163 1e37a5c2 2019-05-12 jcs break;
6164 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
6165 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
6166 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
6167 1e37a5c2 2019-05-12 jcs view->nlines - 2);
6168 1e37a5c2 2019-05-12 jcs }
6169 1e37a5c2 2019-05-12 jcs break;
6170 1e37a5c2 2019-05-12 jcs default:
6171 640cd7ff 2022-06-22 mark view->count = 0;
6172 1e37a5c2 2019-05-12 jcs break;
6173 a70480e0 2018-06-23 stsp }
6174 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
6175 917d79a7 2022-07-01 stsp }
6176 917d79a7 2022-07-01 stsp
6177 917d79a7 2022-07-01 stsp static const struct got_error *
6178 917d79a7 2022-07-01 stsp reset_blame_view(struct tog_view *view)
6179 917d79a7 2022-07-01 stsp {
6180 917d79a7 2022-07-01 stsp const struct got_error *err;
6181 917d79a7 2022-07-01 stsp struct tog_blame_view_state *s = &view->state.blame;
6182 917d79a7 2022-07-01 stsp
6183 917d79a7 2022-07-01 stsp view->count = 0;
6184 917d79a7 2022-07-01 stsp s->done = 1;
6185 917d79a7 2022-07-01 stsp err = stop_blame(&s->blame);
6186 917d79a7 2022-07-01 stsp s->done = 0;
6187 917d79a7 2022-07-01 stsp if (err)
6188 917d79a7 2022-07-01 stsp return err;
6189 917d79a7 2022-07-01 stsp return run_blame(view);
6190 a70480e0 2018-06-23 stsp }
6191 a70480e0 2018-06-23 stsp
6192 a70480e0 2018-06-23 stsp static const struct got_error *
6193 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
6194 9f7d7167 2018-04-29 stsp {
6195 a70480e0 2018-06-23 stsp const struct got_error *error;
6196 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
6197 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
6198 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6199 0587e10c 2020-07-23 stsp char *link_target = NULL;
6200 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
6201 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
6202 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
6203 a70480e0 2018-06-23 stsp int ch;
6204 e1cd8fed 2018-08-01 stsp struct tog_view *view;
6205 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
6206 a70480e0 2018-06-23 stsp
6207 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6208 a70480e0 2018-06-23 stsp switch (ch) {
6209 a70480e0 2018-06-23 stsp case 'c':
6210 a70480e0 2018-06-23 stsp commit_id_str = optarg;
6211 a70480e0 2018-06-23 stsp break;
6212 69069811 2018-08-02 stsp case 'r':
6213 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
6214 69069811 2018-08-02 stsp if (repo_path == NULL)
6215 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6216 9ba1d308 2019-10-21 stsp optarg);
6217 69069811 2018-08-02 stsp break;
6218 a70480e0 2018-06-23 stsp default:
6219 17020d27 2019-03-07 stsp usage_blame();
6220 a70480e0 2018-06-23 stsp /* NOTREACHED */
6221 a70480e0 2018-06-23 stsp }
6222 a70480e0 2018-06-23 stsp }
6223 a70480e0 2018-06-23 stsp
6224 a70480e0 2018-06-23 stsp argc -= optind;
6225 a70480e0 2018-06-23 stsp argv += optind;
6226 a70480e0 2018-06-23 stsp
6227 f135c941 2020-02-20 stsp if (argc != 1)
6228 a70480e0 2018-06-23 stsp usage_blame();
6229 6962eb72 2020-02-20 stsp
6230 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
6231 0ae84acc 2022-06-15 tracey if (error != NULL)
6232 0ae84acc 2022-06-15 tracey goto done;
6233 0ae84acc 2022-06-15 tracey
6234 69069811 2018-08-02 stsp if (repo_path == NULL) {
6235 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6236 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6237 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6238 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6239 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6240 c156c7a4 2020-12-18 stsp goto done;
6241 f135c941 2020-02-20 stsp if (worktree)
6242 eb41ed75 2019-02-05 stsp repo_path =
6243 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
6244 f135c941 2020-02-20 stsp else
6245 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
6246 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6247 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6248 c156c7a4 2020-12-18 stsp goto done;
6249 c156c7a4 2020-12-18 stsp }
6250 f135c941 2020-02-20 stsp }
6251 a915003a 2019-02-05 stsp
6252 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6253 c02c541e 2019-03-29 stsp if (error != NULL)
6254 8e94dd5b 2019-01-04 stsp goto done;
6255 69069811 2018-08-02 stsp
6256 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6257 f135c941 2020-02-20 stsp worktree);
6258 c02c541e 2019-03-29 stsp if (error)
6259 92205607 2019-01-04 stsp goto done;
6260 69069811 2018-08-02 stsp
6261 f135c941 2020-02-20 stsp init_curses();
6262 f135c941 2020-02-20 stsp
6263 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6264 51a10b52 2020-12-26 stsp if (error)
6265 51a10b52 2020-12-26 stsp goto done;
6266 51a10b52 2020-12-26 stsp
6267 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
6268 eb41ed75 2019-02-05 stsp if (error)
6269 69069811 2018-08-02 stsp goto done;
6270 a70480e0 2018-06-23 stsp
6271 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
6272 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
6273 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
6274 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6275 a70480e0 2018-06-23 stsp if (error != NULL)
6276 66b4983c 2018-06-23 stsp goto done;
6277 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6278 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
6279 a70480e0 2018-06-23 stsp } else {
6280 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6281 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6282 a70480e0 2018-06-23 stsp }
6283 a19e88aa 2018-06-23 stsp if (error != NULL)
6284 8b473291 2019-02-21 stsp goto done;
6285 8b473291 2019-02-21 stsp
6286 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6287 e1cd8fed 2018-08-01 stsp if (view == NULL) {
6288 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
6289 e1cd8fed 2018-08-01 stsp goto done;
6290 e1cd8fed 2018-08-01 stsp }
6291 0587e10c 2020-07-23 stsp
6292 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6293 a44927cc 2022-04-07 stsp if (error)
6294 a44927cc 2022-04-07 stsp goto done;
6295 a44927cc 2022-04-07 stsp
6296 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
6297 a44927cc 2022-04-07 stsp commit, repo);
6298 7cbe629d 2018-08-04 stsp if (error)
6299 7cbe629d 2018-08-04 stsp goto done;
6300 0587e10c 2020-07-23 stsp
6301 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
6302 78756c87 2020-11-24 stsp commit_id, repo);
6303 0587e10c 2020-07-23 stsp if (error)
6304 0587e10c 2020-07-23 stsp goto done;
6305 12314ad4 2019-08-31 stsp if (worktree) {
6306 12314ad4 2019-08-31 stsp /* Release work tree lock. */
6307 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
6308 12314ad4 2019-08-31 stsp worktree = NULL;
6309 12314ad4 2019-08-31 stsp }
6310 e5a0f69f 2018-08-18 stsp error = view_loop(view);
6311 a70480e0 2018-06-23 stsp done:
6312 69069811 2018-08-02 stsp free(repo_path);
6313 f135c941 2020-02-20 stsp free(in_repo_path);
6314 0587e10c 2020-07-23 stsp free(link_target);
6315 69069811 2018-08-02 stsp free(cwd);
6316 a70480e0 2018-06-23 stsp free(commit_id);
6317 a44927cc 2022-04-07 stsp if (commit)
6318 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
6319 eb41ed75 2019-02-05 stsp if (worktree)
6320 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
6321 1d0f4054 2021-06-17 stsp if (repo) {
6322 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6323 1d0f4054 2021-06-17 stsp if (error == NULL)
6324 1d0f4054 2021-06-17 stsp error = close_err;
6325 1d0f4054 2021-06-17 stsp }
6326 0ae84acc 2022-06-15 tracey if (pack_fds) {
6327 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
6328 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
6329 0ae84acc 2022-06-15 tracey if (error == NULL)
6330 0ae84acc 2022-06-15 tracey error = pack_err;
6331 0ae84acc 2022-06-15 tracey }
6332 51a10b52 2020-12-26 stsp tog_free_refs();
6333 a70480e0 2018-06-23 stsp return error;
6334 ffd1d5e5 2018-06-23 stsp }
6335 ffd1d5e5 2018-06-23 stsp
6336 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6337 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
6338 ffd1d5e5 2018-06-23 stsp {
6339 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
6340 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6341 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
6342 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
6343 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6344 94b80cfa 2022-08-01 mark int width, n, nentries, i = 1;
6345 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6346 ffd1d5e5 2018-06-23 stsp
6347 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6348 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6349 9b058f45 2022-06-30 mark --limit; /* border */
6350 ffd1d5e5 2018-06-23 stsp
6351 f7d12f7e 2018-08-01 stsp werase(view->window);
6352 ffd1d5e5 2018-06-23 stsp
6353 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6354 ffd1d5e5 2018-06-23 stsp return NULL;
6355 ffd1d5e5 2018-06-23 stsp
6356 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6357 ccda2f4d 2022-06-16 stsp 0, 0);
6358 ffd1d5e5 2018-06-23 stsp if (err)
6359 ffd1d5e5 2018-06-23 stsp return err;
6360 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6361 a3404814 2018-09-02 stsp wstandout(view->window);
6362 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6363 11b20872 2019-11-08 stsp if (tc)
6364 11b20872 2019-11-08 stsp wattr_on(view->window,
6365 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6366 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6367 11b20872 2019-11-08 stsp if (tc)
6368 11b20872 2019-11-08 stsp wattr_off(view->window,
6369 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6370 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6371 a3404814 2018-09-02 stsp wstandend(view->window);
6372 2550e4c3 2018-07-13 stsp free(wline);
6373 2550e4c3 2018-07-13 stsp wline = NULL;
6374 94b80cfa 2022-08-01 mark
6375 df68a56b 2022-08-12 mark i += s->selected;
6376 df68a56b 2022-08-12 mark if (s->first_displayed_entry) {
6377 df68a56b 2022-08-12 mark i += got_tree_entry_get_index(s->first_displayed_entry);
6378 df68a56b 2022-08-12 mark if (s->tree != s->root)
6379 df68a56b 2022-08-12 mark ++i; /* account for ".." entry */
6380 94b80cfa 2022-08-01 mark }
6381 94b80cfa 2022-08-01 mark nentries = got_object_tree_get_nentries(s->tree);
6382 94b80cfa 2022-08-01 mark wprintw(view->window, " [%d/%d]", i,
6383 94b80cfa 2022-08-01 mark nentries + (s->tree == s->root ? 0 : 1)); /* ".." in !root tree */
6384 94b80cfa 2022-08-01 mark
6385 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6386 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6387 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6388 ffd1d5e5 2018-06-23 stsp return NULL;
6389 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, parent_path, 0, view->ncols,
6390 ccda2f4d 2022-06-16 stsp 0, 0);
6391 ce52c690 2018-06-23 stsp if (err)
6392 ce52c690 2018-06-23 stsp return err;
6393 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6394 2550e4c3 2018-07-13 stsp free(wline);
6395 2550e4c3 2018-07-13 stsp wline = NULL;
6396 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6397 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6398 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6399 ffd1d5e5 2018-06-23 stsp return NULL;
6400 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6401 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6402 a1eca9bb 2018-06-23 stsp return NULL;
6403 ffd1d5e5 2018-06-23 stsp
6404 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6405 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6406 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6407 0cf4efb1 2018-09-29 stsp if (view->focussed)
6408 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6409 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6410 ffd1d5e5 2018-06-23 stsp }
6411 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6412 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6413 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6414 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6415 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6416 ffd1d5e5 2018-06-23 stsp return NULL;
6417 ffd1d5e5 2018-06-23 stsp n = 1;
6418 ffd1d5e5 2018-06-23 stsp } else {
6419 ffd1d5e5 2018-06-23 stsp n = 0;
6420 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6421 ffd1d5e5 2018-06-23 stsp }
6422 ffd1d5e5 2018-06-23 stsp
6423 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6424 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6425 848d6979 2019-08-12 stsp const char *modestr = "";
6426 56e0773d 2019-11-28 stsp mode_t mode;
6427 1d13200f 2018-07-12 stsp
6428 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6429 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6430 56e0773d 2019-11-28 stsp
6431 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6432 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6433 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6434 1d13200f 2018-07-12 stsp if (err)
6435 638f9024 2019-05-13 stsp return got_error_from_errno(
6436 230a42bd 2019-05-11 jcs "got_object_id_str");
6437 1d13200f 2018-07-12 stsp }
6438 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6439 63c5ca5d 2019-08-24 stsp modestr = "$";
6440 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6441 0d6c6ee3 2020-05-20 stsp int i;
6442 0d6c6ee3 2020-05-20 stsp
6443 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6444 d86d3b18 2020-12-01 naddy te, s->repo);
6445 0d6c6ee3 2020-05-20 stsp if (err) {
6446 0d6c6ee3 2020-05-20 stsp free(id_str);
6447 0d6c6ee3 2020-05-20 stsp return err;
6448 0d6c6ee3 2020-05-20 stsp }
6449 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6450 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6451 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6452 0d6c6ee3 2020-05-20 stsp }
6453 848d6979 2019-08-12 stsp modestr = "@";
6454 0d6c6ee3 2020-05-20 stsp }
6455 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6456 848d6979 2019-08-12 stsp modestr = "/";
6457 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6458 848d6979 2019-08-12 stsp modestr = "*";
6459 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6460 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6461 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6462 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6463 1d13200f 2018-07-12 stsp free(id_str);
6464 0d6c6ee3 2020-05-20 stsp free(link_target);
6465 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6466 1d13200f 2018-07-12 stsp }
6467 1d13200f 2018-07-12 stsp free(id_str);
6468 0d6c6ee3 2020-05-20 stsp free(link_target);
6469 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6470 ccda2f4d 2022-06-16 stsp 0, 0);
6471 ffd1d5e5 2018-06-23 stsp if (err) {
6472 ffd1d5e5 2018-06-23 stsp free(line);
6473 ffd1d5e5 2018-06-23 stsp break;
6474 ffd1d5e5 2018-06-23 stsp }
6475 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6476 0cf4efb1 2018-09-29 stsp if (view->focussed)
6477 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6478 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6479 ffd1d5e5 2018-06-23 stsp }
6480 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6481 f26dddb7 2019-11-08 stsp if (tc)
6482 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6483 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6484 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6485 f26dddb7 2019-11-08 stsp if (tc)
6486 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6487 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6488 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6489 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6490 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6491 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6492 ffd1d5e5 2018-06-23 stsp free(line);
6493 2550e4c3 2018-07-13 stsp free(wline);
6494 2550e4c3 2018-07-13 stsp wline = NULL;
6495 ffd1d5e5 2018-06-23 stsp n++;
6496 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6497 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6498 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6499 ffd1d5e5 2018-06-23 stsp break;
6500 ffd1d5e5 2018-06-23 stsp }
6501 ffd1d5e5 2018-06-23 stsp
6502 ffd1d5e5 2018-06-23 stsp return err;
6503 ffd1d5e5 2018-06-23 stsp }
6504 ffd1d5e5 2018-06-23 stsp
6505 ffd1d5e5 2018-06-23 stsp static void
6506 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6507 ffd1d5e5 2018-06-23 stsp {
6508 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6509 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6510 fa86c4bf 2020-11-29 stsp int i = 0;
6511 ffd1d5e5 2018-06-23 stsp
6512 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6513 ffd1d5e5 2018-06-23 stsp return;
6514 ffd1d5e5 2018-06-23 stsp
6515 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6516 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6517 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6518 fa86c4bf 2020-11-29 stsp if (!isroot)
6519 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6520 fa86c4bf 2020-11-29 stsp break;
6521 fa86c4bf 2020-11-29 stsp }
6522 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6523 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6524 ffd1d5e5 2018-06-23 stsp }
6525 ffd1d5e5 2018-06-23 stsp }
6526 ffd1d5e5 2018-06-23 stsp
6527 9b058f45 2022-06-30 mark static const struct got_error *
6528 9b058f45 2022-06-30 mark tree_scroll_down(struct tog_view *view, int maxscroll)
6529 ffd1d5e5 2018-06-23 stsp {
6530 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
6531 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6532 ffd1d5e5 2018-06-23 stsp int n = 0;
6533 ffd1d5e5 2018-06-23 stsp
6534 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6535 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6536 694d3271 2020-12-01 naddy s->first_displayed_entry);
6537 694d3271 2020-12-01 naddy else
6538 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6539 56e0773d 2019-11-28 stsp
6540 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6541 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
6542 94b80cfa 2022-08-01 mark if (last) {
6543 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
6544 9b058f45 2022-06-30 mark last = got_tree_entry_get_next(s->tree, last);
6545 94b80cfa 2022-08-01 mark }
6546 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6547 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6548 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6549 768394f3 2019-01-24 stsp }
6550 ffd1d5e5 2018-06-23 stsp }
6551 9b058f45 2022-06-30 mark
6552 9b058f45 2022-06-30 mark return NULL;
6553 ffd1d5e5 2018-06-23 stsp }
6554 ffd1d5e5 2018-06-23 stsp
6555 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6556 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6557 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6558 ffd1d5e5 2018-06-23 stsp {
6559 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6560 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6561 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6562 ffd1d5e5 2018-06-23 stsp
6563 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6564 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6565 56e0773d 2019-11-28 stsp + 1 /* slash */;
6566 ce52c690 2018-06-23 stsp if (te)
6567 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6568 ce52c690 2018-06-23 stsp
6569 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6570 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6571 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6572 ffd1d5e5 2018-06-23 stsp
6573 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6574 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6575 d9765a41 2018-06-23 stsp while (pt) {
6576 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6577 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6578 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6579 cb2ebc8a 2018-06-23 stsp goto done;
6580 cb2ebc8a 2018-06-23 stsp }
6581 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6582 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6583 cb2ebc8a 2018-06-23 stsp goto done;
6584 cb2ebc8a 2018-06-23 stsp }
6585 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6586 ffd1d5e5 2018-06-23 stsp }
6587 ce52c690 2018-06-23 stsp if (te) {
6588 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6589 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6590 ce52c690 2018-06-23 stsp goto done;
6591 ce52c690 2018-06-23 stsp }
6592 cb2ebc8a 2018-06-23 stsp }
6593 ce52c690 2018-06-23 stsp done:
6594 ce52c690 2018-06-23 stsp if (err) {
6595 ce52c690 2018-06-23 stsp free(*path);
6596 ce52c690 2018-06-23 stsp *path = NULL;
6597 ce52c690 2018-06-23 stsp }
6598 ce52c690 2018-06-23 stsp return err;
6599 ce52c690 2018-06-23 stsp }
6600 ce52c690 2018-06-23 stsp
6601 ce52c690 2018-06-23 stsp static const struct got_error *
6602 9b058f45 2022-06-30 mark blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6603 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6604 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6605 ce52c690 2018-06-23 stsp {
6606 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6607 ce52c690 2018-06-23 stsp char *path;
6608 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6609 a0de39f3 2019-08-09 stsp
6610 a0de39f3 2019-08-09 stsp *new_view = NULL;
6611 69efd4c4 2018-07-18 stsp
6612 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6613 ce52c690 2018-06-23 stsp if (err)
6614 ce52c690 2018-06-23 stsp return err;
6615 ffd1d5e5 2018-06-23 stsp
6616 9b058f45 2022-06-30 mark blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6617 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6618 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6619 83ce39e3 2019-08-12 stsp goto done;
6620 83ce39e3 2019-08-12 stsp }
6621 cdf1ee82 2018-08-01 stsp
6622 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6623 e5a0f69f 2018-08-18 stsp if (err) {
6624 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6625 fc06ba56 2019-08-22 stsp err = NULL;
6626 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6627 e5a0f69f 2018-08-18 stsp } else
6628 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6629 83ce39e3 2019-08-12 stsp done:
6630 83ce39e3 2019-08-12 stsp free(path);
6631 69efd4c4 2018-07-18 stsp return err;
6632 69efd4c4 2018-07-18 stsp }
6633 69efd4c4 2018-07-18 stsp
6634 69efd4c4 2018-07-18 stsp static const struct got_error *
6635 49b24ee5 2022-07-03 mark log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6636 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6637 69efd4c4 2018-07-18 stsp {
6638 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6639 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6640 69efd4c4 2018-07-18 stsp char *path;
6641 a0de39f3 2019-08-09 stsp
6642 a0de39f3 2019-08-09 stsp *new_view = NULL;
6643 69efd4c4 2018-07-18 stsp
6644 49b24ee5 2022-07-03 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6645 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6646 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6647 e5a0f69f 2018-08-18 stsp
6648 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6649 69efd4c4 2018-07-18 stsp if (err)
6650 69efd4c4 2018-07-18 stsp return err;
6651 69efd4c4 2018-07-18 stsp
6652 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6653 4e97c21c 2020-12-06 stsp path, 0);
6654 ba4f502b 2018-08-04 stsp if (err)
6655 e5a0f69f 2018-08-18 stsp view_close(log_view);
6656 e5a0f69f 2018-08-18 stsp else
6657 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6658 cb2ebc8a 2018-06-23 stsp free(path);
6659 cb2ebc8a 2018-06-23 stsp return err;
6660 ffd1d5e5 2018-06-23 stsp }
6661 ffd1d5e5 2018-06-23 stsp
6662 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6663 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6664 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6665 ffd1d5e5 2018-06-23 stsp {
6666 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6667 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6668 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6669 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6670 ffd1d5e5 2018-06-23 stsp
6671 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6672 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6673 bc573f3b 2021-07-10 stsp
6674 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6675 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6676 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6677 ffd1d5e5 2018-06-23 stsp
6678 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6679 bc573f3b 2021-07-10 stsp if (err)
6680 bc573f3b 2021-07-10 stsp goto done;
6681 bc573f3b 2021-07-10 stsp
6682 bc573f3b 2021-07-10 stsp /*
6683 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
6684 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
6685 bc573f3b 2021-07-10 stsp * closed on demand.
6686 bc573f3b 2021-07-10 stsp */
6687 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
6688 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
6689 bc573f3b 2021-07-10 stsp if (err)
6690 bc573f3b 2021-07-10 stsp goto done;
6691 bc573f3b 2021-07-10 stsp s->tree = s->root;
6692 bc573f3b 2021-07-10 stsp
6693 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
6694 ffd1d5e5 2018-06-23 stsp if (err != NULL)
6695 ffd1d5e5 2018-06-23 stsp goto done;
6696 ffd1d5e5 2018-06-23 stsp
6697 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
6698 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
6699 ffd1d5e5 2018-06-23 stsp goto done;
6700 ffd1d5e5 2018-06-23 stsp }
6701 ffd1d5e5 2018-06-23 stsp
6702 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
6703 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
6704 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
6705 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
6706 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
6707 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
6708 9cd7cbd1 2020-12-07 stsp goto done;
6709 9cd7cbd1 2020-12-07 stsp }
6710 9cd7cbd1 2020-12-07 stsp }
6711 fb2756b9 2018-08-04 stsp s->repo = repo;
6712 c0b01bdb 2019-11-08 stsp
6713 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6714 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
6715 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
6716 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
6717 c0b01bdb 2019-11-08 stsp if (err)
6718 c0b01bdb 2019-11-08 stsp goto done;
6719 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
6720 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
6721 bc573f3b 2021-07-10 stsp if (err)
6722 c0b01bdb 2019-11-08 stsp goto done;
6723 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
6724 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
6725 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
6726 bc573f3b 2021-07-10 stsp if (err)
6727 c0b01bdb 2019-11-08 stsp goto done;
6728 e5a0f69f 2018-08-18 stsp
6729 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
6730 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
6731 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
6732 bc573f3b 2021-07-10 stsp if (err)
6733 11b20872 2019-11-08 stsp goto done;
6734 11b20872 2019-11-08 stsp
6735 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
6736 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6737 bc573f3b 2021-07-10 stsp if (err)
6738 c0b01bdb 2019-11-08 stsp goto done;
6739 c0b01bdb 2019-11-08 stsp }
6740 c0b01bdb 2019-11-08 stsp
6741 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
6742 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
6743 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
6744 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
6745 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
6746 ad80ab7b 2018-08-04 stsp done:
6747 ad80ab7b 2018-08-04 stsp free(commit_id_str);
6748 bc573f3b 2021-07-10 stsp if (commit)
6749 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
6750 bc573f3b 2021-07-10 stsp if (err)
6751 bc573f3b 2021-07-10 stsp close_tree_view(view);
6752 ad80ab7b 2018-08-04 stsp return err;
6753 ad80ab7b 2018-08-04 stsp }
6754 ad80ab7b 2018-08-04 stsp
6755 e5a0f69f 2018-08-18 stsp static const struct got_error *
6756 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
6757 ad80ab7b 2018-08-04 stsp {
6758 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6759 ad80ab7b 2018-08-04 stsp
6760 bddb1296 2019-11-08 stsp free_colors(&s->colors);
6761 fb2756b9 2018-08-04 stsp free(s->tree_label);
6762 6484ec90 2018-09-29 stsp s->tree_label = NULL;
6763 6484ec90 2018-09-29 stsp free(s->commit_id);
6764 6484ec90 2018-09-29 stsp s->commit_id = NULL;
6765 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
6766 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
6767 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
6768 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
6769 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
6770 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
6771 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
6772 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
6773 ad80ab7b 2018-08-04 stsp free(parent);
6774 ad80ab7b 2018-08-04 stsp
6775 ad80ab7b 2018-08-04 stsp }
6776 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
6777 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
6778 bc573f3b 2021-07-10 stsp if (s->root)
6779 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
6780 7c32bd05 2019-06-22 stsp return NULL;
6781 7c32bd05 2019-06-22 stsp }
6782 7c32bd05 2019-06-22 stsp
6783 7c32bd05 2019-06-22 stsp static const struct got_error *
6784 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
6785 7c32bd05 2019-06-22 stsp {
6786 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
6787 7c32bd05 2019-06-22 stsp
6788 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
6789 7c32bd05 2019-06-22 stsp return NULL;
6790 7c32bd05 2019-06-22 stsp }
6791 7c32bd05 2019-06-22 stsp
6792 7c32bd05 2019-06-22 stsp static int
6793 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
6794 7c32bd05 2019-06-22 stsp {
6795 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
6796 7c32bd05 2019-06-22 stsp
6797 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
6798 56e0773d 2019-11-28 stsp 0) == 0;
6799 7c32bd05 2019-06-22 stsp }
6800 7c32bd05 2019-06-22 stsp
6801 7c32bd05 2019-06-22 stsp static const struct got_error *
6802 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
6803 7c32bd05 2019-06-22 stsp {
6804 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
6805 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
6806 7c32bd05 2019-06-22 stsp
6807 7c32bd05 2019-06-22 stsp if (!view->searching) {
6808 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6809 7c32bd05 2019-06-22 stsp return NULL;
6810 7c32bd05 2019-06-22 stsp }
6811 7c32bd05 2019-06-22 stsp
6812 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
6813 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
6814 7c32bd05 2019-06-22 stsp if (s->selected_entry)
6815 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
6816 56e0773d 2019-11-28 stsp s->selected_entry);
6817 7c32bd05 2019-06-22 stsp else
6818 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6819 56e0773d 2019-11-28 stsp } else {
6820 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
6821 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6822 56e0773d 2019-11-28 stsp else
6823 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
6824 56e0773d 2019-11-28 stsp s->selected_entry);
6825 7c32bd05 2019-06-22 stsp }
6826 7c32bd05 2019-06-22 stsp } else {
6827 487cd7d2 2021-12-17 stsp if (s->selected_entry)
6828 487cd7d2 2021-12-17 stsp te = s->selected_entry;
6829 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
6830 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6831 56e0773d 2019-11-28 stsp else
6832 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6833 7c32bd05 2019-06-22 stsp }
6834 7c32bd05 2019-06-22 stsp
6835 7c32bd05 2019-06-22 stsp while (1) {
6836 56e0773d 2019-11-28 stsp if (te == NULL) {
6837 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
6838 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6839 ac66afb8 2019-06-24 stsp return NULL;
6840 ac66afb8 2019-06-24 stsp }
6841 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
6842 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
6843 56e0773d 2019-11-28 stsp else
6844 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
6845 7c32bd05 2019-06-22 stsp }
6846 7c32bd05 2019-06-22 stsp
6847 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
6848 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
6849 56e0773d 2019-11-28 stsp s->matched_entry = te;
6850 7c32bd05 2019-06-22 stsp break;
6851 7c32bd05 2019-06-22 stsp }
6852 7c32bd05 2019-06-22 stsp
6853 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
6854 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
6855 56e0773d 2019-11-28 stsp else
6856 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
6857 7c32bd05 2019-06-22 stsp }
6858 e5a0f69f 2018-08-18 stsp
6859 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
6860 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
6861 7c32bd05 2019-06-22 stsp s->selected = 0;
6862 7c32bd05 2019-06-22 stsp }
6863 7c32bd05 2019-06-22 stsp
6864 e5a0f69f 2018-08-18 stsp return NULL;
6865 ad80ab7b 2018-08-04 stsp }
6866 ad80ab7b 2018-08-04 stsp
6867 ad80ab7b 2018-08-04 stsp static const struct got_error *
6868 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
6869 ad80ab7b 2018-08-04 stsp {
6870 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
6871 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6872 e5a0f69f 2018-08-18 stsp char *parent_path;
6873 ad80ab7b 2018-08-04 stsp
6874 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
6875 e5a0f69f 2018-08-18 stsp if (err)
6876 e5a0f69f 2018-08-18 stsp return err;
6877 ffd1d5e5 2018-06-23 stsp
6878 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
6879 e5a0f69f 2018-08-18 stsp free(parent_path);
6880 669b5ffa 2018-10-07 stsp
6881 9b058f45 2022-06-30 mark view_border(view);
6882 e5a0f69f 2018-08-18 stsp return err;
6883 94b80cfa 2022-08-01 mark }
6884 94b80cfa 2022-08-01 mark
6885 94b80cfa 2022-08-01 mark static const struct got_error *
6886 94b80cfa 2022-08-01 mark tree_goto_line(struct tog_view *view, int nlines)
6887 94b80cfa 2022-08-01 mark {
6888 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
6889 94b80cfa 2022-08-01 mark struct tog_tree_view_state *s = &view->state.tree;
6890 94b80cfa 2022-08-01 mark struct got_tree_entry **fte, **lte, **ste;
6891 94b80cfa 2022-08-01 mark int g, last, first = 1, i = 1;
6892 94b80cfa 2022-08-01 mark int root = s->tree == s->root;
6893 94b80cfa 2022-08-01 mark int off = root ? 1 : 2;
6894 94b80cfa 2022-08-01 mark
6895 94b80cfa 2022-08-01 mark g = view->gline;
6896 94b80cfa 2022-08-01 mark view->gline = 0;
6897 94b80cfa 2022-08-01 mark
6898 94b80cfa 2022-08-01 mark if (g == 0)
6899 94b80cfa 2022-08-01 mark g = 1;
6900 94b80cfa 2022-08-01 mark else if (g > got_object_tree_get_nentries(s->tree))
6901 94b80cfa 2022-08-01 mark g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
6902 94b80cfa 2022-08-01 mark
6903 94b80cfa 2022-08-01 mark fte = &s->first_displayed_entry;
6904 94b80cfa 2022-08-01 mark lte = &s->last_displayed_entry;
6905 94b80cfa 2022-08-01 mark ste = &s->selected_entry;
6906 94b80cfa 2022-08-01 mark
6907 94b80cfa 2022-08-01 mark if (*fte != NULL) {
6908 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
6909 94b80cfa 2022-08-01 mark first += off; /* account for ".." */
6910 94b80cfa 2022-08-01 mark }
6911 94b80cfa 2022-08-01 mark last = got_tree_entry_get_index(*lte);
6912 94b80cfa 2022-08-01 mark last += off;
6913 94b80cfa 2022-08-01 mark
6914 94b80cfa 2022-08-01 mark if (g >= first && g <= last && g - first < nlines) {
6915 94b80cfa 2022-08-01 mark s->selected = g - first;
6916 94b80cfa 2022-08-01 mark return NULL; /* gline is on the current page */
6917 94b80cfa 2022-08-01 mark }
6918 94b80cfa 2022-08-01 mark
6919 94b80cfa 2022-08-01 mark if (*ste != NULL) {
6920 94b80cfa 2022-08-01 mark i = got_tree_entry_get_index(*ste);
6921 94b80cfa 2022-08-01 mark i += off;
6922 94b80cfa 2022-08-01 mark }
6923 94b80cfa 2022-08-01 mark
6924 94b80cfa 2022-08-01 mark if (i < g) {
6925 94b80cfa 2022-08-01 mark err = tree_scroll_down(view, g - i);
6926 94b80cfa 2022-08-01 mark if (err)
6927 94b80cfa 2022-08-01 mark return err;
6928 94b80cfa 2022-08-01 mark if (got_tree_entry_get_index(*lte) >=
6929 94b80cfa 2022-08-01 mark got_object_tree_get_nentries(s->tree) - 1 &&
6930 94b80cfa 2022-08-01 mark first + s->selected < g &&
6931 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1) {
6932 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
6933 94b80cfa 2022-08-01 mark first += off;
6934 94b80cfa 2022-08-01 mark s->selected = g - first;
6935 94b80cfa 2022-08-01 mark }
6936 94b80cfa 2022-08-01 mark } else if (i > g)
6937 94b80cfa 2022-08-01 mark tree_scroll_up(s, i - g);
6938 94b80cfa 2022-08-01 mark
6939 94b80cfa 2022-08-01 mark if (g < nlines &&
6940 94b80cfa 2022-08-01 mark (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
6941 94b80cfa 2022-08-01 mark s->selected = g - 1;
6942 94b80cfa 2022-08-01 mark
6943 94b80cfa 2022-08-01 mark return NULL;
6944 e5a0f69f 2018-08-18 stsp }
6945 ce52c690 2018-06-23 stsp
6946 e5a0f69f 2018-08-18 stsp static const struct got_error *
6947 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
6948 e5a0f69f 2018-08-18 stsp {
6949 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6950 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
6951 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
6952 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 3;
6953 ffd1d5e5 2018-06-23 stsp
6954 94b80cfa 2022-08-01 mark if (view->gline)
6955 94b80cfa 2022-08-01 mark return tree_goto_line(view, nscroll);
6956 94b80cfa 2022-08-01 mark
6957 e5a0f69f 2018-08-18 stsp switch (ch) {
6958 1e37a5c2 2019-05-12 jcs case 'i':
6959 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
6960 640cd7ff 2022-06-22 mark view->count = 0;
6961 1e37a5c2 2019-05-12 jcs break;
6962 5e98fb33 2022-07-22 mark case 'L':
6963 640cd7ff 2022-06-22 mark view->count = 0;
6964 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
6965 ffd1d5e5 2018-06-23 stsp break;
6966 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6967 152c1c93 2020-11-29 stsp break;
6968 5e98fb33 2022-07-22 mark case 'R':
6969 640cd7ff 2022-06-22 mark view->count = 0;
6970 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
6971 e4526bf5 2021-09-03 naddy break;
6972 e4526bf5 2021-09-03 naddy case 'g':
6973 e4526bf5 2021-09-03 naddy case KEY_HOME:
6974 e4526bf5 2021-09-03 naddy s->selected = 0;
6975 640cd7ff 2022-06-22 mark view->count = 0;
6976 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
6977 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
6978 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
6979 e4526bf5 2021-09-03 naddy else
6980 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
6981 1e37a5c2 2019-05-12 jcs break;
6982 e4526bf5 2021-09-03 naddy case 'G':
6983 9b058f45 2022-06-30 mark case KEY_END: {
6984 9b058f45 2022-06-30 mark int eos = view->nlines - 3;
6985 9b058f45 2022-06-30 mark
6986 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
6987 9b058f45 2022-06-30 mark --eos; /* border */
6988 e4526bf5 2021-09-03 naddy s->selected = 0;
6989 640cd7ff 2022-06-22 mark view->count = 0;
6990 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
6991 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
6992 e4526bf5 2021-09-03 naddy if (te == NULL) {
6993 ad055527 2022-07-16 mark if (s->tree != s->root) {
6994 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
6995 e4526bf5 2021-09-03 naddy n++;
6996 e4526bf5 2021-09-03 naddy }
6997 e4526bf5 2021-09-03 naddy break;
6998 e4526bf5 2021-09-03 naddy }
6999 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7000 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7001 e4526bf5 2021-09-03 naddy }
7002 e4526bf5 2021-09-03 naddy if (n > 0)
7003 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7004 e4526bf5 2021-09-03 naddy break;
7005 9b058f45 2022-06-30 mark }
7006 1e37a5c2 2019-05-12 jcs case 'k':
7007 1e37a5c2 2019-05-12 jcs case KEY_UP:
7008 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7009 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7010 1e37a5c2 2019-05-12 jcs s->selected--;
7011 fa86c4bf 2020-11-29 stsp break;
7012 1e37a5c2 2019-05-12 jcs }
7013 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7014 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7015 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7016 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7017 640cd7ff 2022-06-22 mark view->count = 0;
7018 1e37a5c2 2019-05-12 jcs break;
7019 83cc4199 2022-06-13 stsp case CTRL('u'):
7020 33c3719a 2022-06-15 stsp case 'u':
7021 83cc4199 2022-06-13 stsp nscroll /= 2;
7022 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7023 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7024 ea025d1d 2020-02-22 naddy case CTRL('b'):
7025 61417565 2022-06-20 mark case 'b':
7026 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7027 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7028 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7029 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7030 fa86c4bf 2020-11-29 stsp } else {
7031 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7032 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7033 fa86c4bf 2020-11-29 stsp }
7034 83cc4199 2022-06-13 stsp tree_scroll_up(s, MAX(0, nscroll));
7035 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7036 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7037 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7038 640cd7ff 2022-06-22 mark view->count = 0;
7039 1e37a5c2 2019-05-12 jcs break;
7040 1e37a5c2 2019-05-12 jcs case 'j':
7041 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7042 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7043 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7044 1e37a5c2 2019-05-12 jcs s->selected++;
7045 1e37a5c2 2019-05-12 jcs break;
7046 1e37a5c2 2019-05-12 jcs }
7047 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7048 640cd7ff 2022-06-22 mark == NULL) {
7049 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7050 640cd7ff 2022-06-22 mark view->count = 0;
7051 1e37a5c2 2019-05-12 jcs break;
7052 640cd7ff 2022-06-22 mark }
7053 9b058f45 2022-06-30 mark tree_scroll_down(view, 1);
7054 1e37a5c2 2019-05-12 jcs break;
7055 83cc4199 2022-06-13 stsp case CTRL('d'):
7056 33c3719a 2022-06-15 stsp case 'd':
7057 83cc4199 2022-06-13 stsp nscroll /= 2;
7058 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7059 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7060 ea025d1d 2020-02-22 naddy case CTRL('f'):
7061 61417565 2022-06-20 mark case 'f':
7062 48bb96f0 2022-06-20 naddy case ' ':
7063 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7064 1e37a5c2 2019-05-12 jcs == NULL) {
7065 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7066 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7067 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7068 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7069 640cd7ff 2022-06-22 mark else
7070 640cd7ff 2022-06-22 mark view->count = 0;
7071 1e37a5c2 2019-05-12 jcs break;
7072 1e37a5c2 2019-05-12 jcs }
7073 9b058f45 2022-06-30 mark tree_scroll_down(view, nscroll);
7074 1e37a5c2 2019-05-12 jcs break;
7075 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7076 1e37a5c2 2019-05-12 jcs case '\r':
7077 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7078 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7079 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7080 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7081 640cd7ff 2022-06-22 mark if (s->tree == s->root) {
7082 640cd7ff 2022-06-22 mark view->count = 0;
7083 1e37a5c2 2019-05-12 jcs break;
7084 640cd7ff 2022-06-22 mark }
7085 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7086 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7087 1e37a5c2 2019-05-12 jcs entry);
7088 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7089 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7090 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7091 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7092 1e37a5c2 2019-05-12 jcs s->selected_entry =
7093 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7094 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7095 9b058f45 2022-06-30 mark if (s->selected > view->nlines - 3) {
7096 9b058f45 2022-06-30 mark err = offset_selection_down(view);
7097 9b058f45 2022-06-30 mark if (err)
7098 9b058f45 2022-06-30 mark break;
7099 9b058f45 2022-06-30 mark }
7100 1e37a5c2 2019-05-12 jcs free(parent);
7101 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7102 56e0773d 2019-11-28 stsp s->selected_entry))) {
7103 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7104 640cd7ff 2022-06-22 mark view->count = 0;
7105 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7106 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7107 1e37a5c2 2019-05-12 jcs if (err)
7108 1e37a5c2 2019-05-12 jcs break;
7109 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7110 941e9f74 2019-05-21 stsp if (err) {
7111 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7112 1e37a5c2 2019-05-12 jcs break;
7113 1e37a5c2 2019-05-12 jcs }
7114 136e2bd4 2022-07-23 mark } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7115 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7116 1e37a5c2 2019-05-12 jcs break;
7117 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7118 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7119 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7120 640cd7ff 2022-06-22 mark view->count = 0;
7121 1e37a5c2 2019-05-12 jcs break;
7122 1e37a5c2 2019-05-12 jcs default:
7123 640cd7ff 2022-06-22 mark view->count = 0;
7124 1e37a5c2 2019-05-12 jcs break;
7125 ffd1d5e5 2018-06-23 stsp }
7126 e5a0f69f 2018-08-18 stsp
7127 ffd1d5e5 2018-06-23 stsp return err;
7128 9f7d7167 2018-04-29 stsp }
7129 9f7d7167 2018-04-29 stsp
7130 ffd1d5e5 2018-06-23 stsp __dead static void
7131 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7132 ffd1d5e5 2018-06-23 stsp {
7133 ffd1d5e5 2018-06-23 stsp endwin();
7134 87411fa9 2022-06-16 stsp fprintf(stderr,
7135 87411fa9 2022-06-16 stsp "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7136 ffd1d5e5 2018-06-23 stsp getprogname());
7137 ffd1d5e5 2018-06-23 stsp exit(1);
7138 ffd1d5e5 2018-06-23 stsp }
7139 ffd1d5e5 2018-06-23 stsp
7140 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7141 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7142 ffd1d5e5 2018-06-23 stsp {
7143 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7144 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7145 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7146 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7147 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7148 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
7149 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7150 4e97c21c 2020-12-06 stsp char *label = NULL;
7151 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7152 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7153 ffd1d5e5 2018-06-23 stsp int ch;
7154 5221c383 2018-08-01 stsp struct tog_view *view;
7155 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
7156 70ac5f84 2019-03-28 stsp
7157 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7158 ffd1d5e5 2018-06-23 stsp switch (ch) {
7159 ffd1d5e5 2018-06-23 stsp case 'c':
7160 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7161 74283ab8 2020-02-07 stsp break;
7162 74283ab8 2020-02-07 stsp case 'r':
7163 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7164 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7165 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7166 74283ab8 2020-02-07 stsp optarg);
7167 ffd1d5e5 2018-06-23 stsp break;
7168 ffd1d5e5 2018-06-23 stsp default:
7169 e99e2d15 2020-11-24 naddy usage_tree();
7170 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7171 ffd1d5e5 2018-06-23 stsp }
7172 ffd1d5e5 2018-06-23 stsp }
7173 ffd1d5e5 2018-06-23 stsp
7174 ffd1d5e5 2018-06-23 stsp argc -= optind;
7175 ffd1d5e5 2018-06-23 stsp argv += optind;
7176 ffd1d5e5 2018-06-23 stsp
7177 55cccc34 2020-02-20 stsp if (argc > 1)
7178 e99e2d15 2020-11-24 naddy usage_tree();
7179 0ae84acc 2022-06-15 tracey
7180 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
7181 0ae84acc 2022-06-15 tracey if (error != NULL)
7182 0ae84acc 2022-06-15 tracey goto done;
7183 74283ab8 2020-02-07 stsp
7184 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7185 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7186 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7187 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7188 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7189 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7190 c156c7a4 2020-12-18 stsp goto done;
7191 55cccc34 2020-02-20 stsp if (worktree)
7192 52185f70 2019-02-05 stsp repo_path =
7193 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7194 55cccc34 2020-02-20 stsp else
7195 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7196 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7197 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7198 c156c7a4 2020-12-18 stsp goto done;
7199 c156c7a4 2020-12-18 stsp }
7200 55cccc34 2020-02-20 stsp }
7201 a915003a 2019-02-05 stsp
7202 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7203 c02c541e 2019-03-29 stsp if (error != NULL)
7204 52185f70 2019-02-05 stsp goto done;
7205 d188b9a6 2019-01-04 stsp
7206 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7207 55cccc34 2020-02-20 stsp repo, worktree);
7208 55cccc34 2020-02-20 stsp if (error)
7209 55cccc34 2020-02-20 stsp goto done;
7210 55cccc34 2020-02-20 stsp
7211 55cccc34 2020-02-20 stsp init_curses();
7212 55cccc34 2020-02-20 stsp
7213 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7214 c02c541e 2019-03-29 stsp if (error)
7215 52185f70 2019-02-05 stsp goto done;
7216 ffd1d5e5 2018-06-23 stsp
7217 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
7218 51a10b52 2020-12-26 stsp if (error)
7219 51a10b52 2020-12-26 stsp goto done;
7220 51a10b52 2020-12-26 stsp
7221 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7222 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7223 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7224 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7225 4e97c21c 2020-12-06 stsp if (error)
7226 4e97c21c 2020-12-06 stsp goto done;
7227 4e97c21c 2020-12-06 stsp head_ref_name = label;
7228 4e97c21c 2020-12-06 stsp } else {
7229 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7230 4e97c21c 2020-12-06 stsp if (error == NULL)
7231 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7232 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7233 4e97c21c 2020-12-06 stsp goto done;
7234 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7235 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7236 4e97c21c 2020-12-06 stsp if (error)
7237 4e97c21c 2020-12-06 stsp goto done;
7238 4e97c21c 2020-12-06 stsp }
7239 ffd1d5e5 2018-06-23 stsp
7240 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
7241 a44927cc 2022-04-07 stsp if (error)
7242 a44927cc 2022-04-07 stsp goto done;
7243 a44927cc 2022-04-07 stsp
7244 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7245 5221c383 2018-08-01 stsp if (view == NULL) {
7246 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7247 5221c383 2018-08-01 stsp goto done;
7248 5221c383 2018-08-01 stsp }
7249 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7250 ad80ab7b 2018-08-04 stsp if (error)
7251 ad80ab7b 2018-08-04 stsp goto done;
7252 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7253 a44927cc 2022-04-07 stsp error = tree_view_walk_path(&view->state.tree, commit,
7254 d91faf3b 2020-12-01 naddy in_repo_path);
7255 55cccc34 2020-02-20 stsp if (error)
7256 55cccc34 2020-02-20 stsp goto done;
7257 55cccc34 2020-02-20 stsp }
7258 55cccc34 2020-02-20 stsp
7259 55cccc34 2020-02-20 stsp if (worktree) {
7260 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7261 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7262 55cccc34 2020-02-20 stsp worktree = NULL;
7263 55cccc34 2020-02-20 stsp }
7264 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7265 ffd1d5e5 2018-06-23 stsp done:
7266 52185f70 2019-02-05 stsp free(repo_path);
7267 e4a0e26d 2020-02-20 stsp free(cwd);
7268 ffd1d5e5 2018-06-23 stsp free(commit_id);
7269 4e97c21c 2020-12-06 stsp free(label);
7270 486cd271 2020-12-06 stsp if (ref)
7271 486cd271 2020-12-06 stsp got_ref_close(ref);
7272 1d0f4054 2021-06-17 stsp if (repo) {
7273 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7274 1d0f4054 2021-06-17 stsp if (error == NULL)
7275 1d0f4054 2021-06-17 stsp error = close_err;
7276 1d0f4054 2021-06-17 stsp }
7277 0ae84acc 2022-06-15 tracey if (pack_fds) {
7278 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
7279 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
7280 0ae84acc 2022-06-15 tracey if (error == NULL)
7281 0ae84acc 2022-06-15 tracey error = pack_err;
7282 0ae84acc 2022-06-15 tracey }
7283 51a10b52 2020-12-26 stsp tog_free_refs();
7284 ffd1d5e5 2018-06-23 stsp return error;
7285 6458efa5 2020-11-24 stsp }
7286 6458efa5 2020-11-24 stsp
7287 6458efa5 2020-11-24 stsp static const struct got_error *
7288 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7289 6458efa5 2020-11-24 stsp {
7290 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7291 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7292 6458efa5 2020-11-24 stsp
7293 6458efa5 2020-11-24 stsp s->nrefs = 0;
7294 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7295 cc488aa7 2022-01-23 stsp if (strncmp(got_ref_get_name(sre->ref),
7296 cc488aa7 2022-01-23 stsp "refs/got/", 9) == 0 &&
7297 cc488aa7 2022-01-23 stsp strncmp(got_ref_get_name(sre->ref),
7298 cc488aa7 2022-01-23 stsp "refs/got/backup/", 16) != 0)
7299 6458efa5 2020-11-24 stsp continue;
7300 6458efa5 2020-11-24 stsp
7301 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7302 6458efa5 2020-11-24 stsp if (re == NULL)
7303 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7304 6458efa5 2020-11-24 stsp
7305 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7306 8924d611 2020-12-26 stsp if (re->ref == NULL)
7307 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7308 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7309 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7310 6458efa5 2020-11-24 stsp }
7311 6458efa5 2020-11-24 stsp
7312 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7313 6458efa5 2020-11-24 stsp return NULL;
7314 6458efa5 2020-11-24 stsp }
7315 6458efa5 2020-11-24 stsp
7316 336075a4 2022-06-25 op static void
7317 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7318 6458efa5 2020-11-24 stsp {
7319 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7320 6458efa5 2020-11-24 stsp
7321 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7322 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7323 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7324 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7325 6458efa5 2020-11-24 stsp free(re);
7326 6458efa5 2020-11-24 stsp }
7327 6458efa5 2020-11-24 stsp }
7328 6458efa5 2020-11-24 stsp
7329 6458efa5 2020-11-24 stsp static const struct got_error *
7330 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7331 6458efa5 2020-11-24 stsp {
7332 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7333 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7334 6458efa5 2020-11-24 stsp
7335 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7336 6458efa5 2020-11-24 stsp s->repo = repo;
7337 6458efa5 2020-11-24 stsp
7338 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7339 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7340 6458efa5 2020-11-24 stsp
7341 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7342 6458efa5 2020-11-24 stsp if (err)
7343 6458efa5 2020-11-24 stsp return err;
7344 34ba6917 2020-11-30 stsp
7345 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7346 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7347 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7348 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7349 6458efa5 2020-11-24 stsp if (err)
7350 6458efa5 2020-11-24 stsp goto done;
7351 6458efa5 2020-11-24 stsp
7352 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7353 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7354 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7355 6458efa5 2020-11-24 stsp if (err)
7356 6458efa5 2020-11-24 stsp goto done;
7357 6458efa5 2020-11-24 stsp
7358 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7359 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7360 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7361 cc488aa7 2022-01-23 stsp if (err)
7362 cc488aa7 2022-01-23 stsp goto done;
7363 cc488aa7 2022-01-23 stsp
7364 cc488aa7 2022-01-23 stsp err = add_color(&s->colors, "^refs/got/backup/",
7365 cc488aa7 2022-01-23 stsp TOG_COLOR_REFS_BACKUP,
7366 cc488aa7 2022-01-23 stsp get_color_value("TOG_COLOR_REFS_BACKUP"));
7367 6458efa5 2020-11-24 stsp if (err)
7368 6458efa5 2020-11-24 stsp goto done;
7369 6458efa5 2020-11-24 stsp }
7370 6458efa5 2020-11-24 stsp
7371 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7372 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7373 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7374 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7375 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7376 6458efa5 2020-11-24 stsp done:
7377 6458efa5 2020-11-24 stsp if (err)
7378 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7379 6458efa5 2020-11-24 stsp return err;
7380 6458efa5 2020-11-24 stsp }
7381 6458efa5 2020-11-24 stsp
7382 6458efa5 2020-11-24 stsp static const struct got_error *
7383 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7384 6458efa5 2020-11-24 stsp {
7385 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7386 6458efa5 2020-11-24 stsp
7387 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7388 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7389 6458efa5 2020-11-24 stsp
7390 6458efa5 2020-11-24 stsp return NULL;
7391 9f7d7167 2018-04-29 stsp }
7392 ce5b7c56 2019-07-09 stsp
7393 6458efa5 2020-11-24 stsp static const struct got_error *
7394 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7395 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7396 6458efa5 2020-11-24 stsp {
7397 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7398 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7399 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7400 6458efa5 2020-11-24 stsp int obj_type;
7401 6458efa5 2020-11-24 stsp
7402 c42c9805 2020-11-24 stsp *commit_id = NULL;
7403 6458efa5 2020-11-24 stsp
7404 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7405 6458efa5 2020-11-24 stsp if (err)
7406 6458efa5 2020-11-24 stsp return err;
7407 6458efa5 2020-11-24 stsp
7408 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7409 6458efa5 2020-11-24 stsp if (err)
7410 6458efa5 2020-11-24 stsp goto done;
7411 6458efa5 2020-11-24 stsp
7412 6458efa5 2020-11-24 stsp switch (obj_type) {
7413 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7414 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7415 6458efa5 2020-11-24 stsp break;
7416 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7417 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7418 6458efa5 2020-11-24 stsp if (err)
7419 6458efa5 2020-11-24 stsp goto done;
7420 c42c9805 2020-11-24 stsp free(obj_id);
7421 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7422 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7423 c42c9805 2020-11-24 stsp if (err)
7424 6458efa5 2020-11-24 stsp goto done;
7425 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7426 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7427 c42c9805 2020-11-24 stsp goto done;
7428 c42c9805 2020-11-24 stsp }
7429 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7430 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7431 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7432 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7433 c42c9805 2020-11-24 stsp goto done;
7434 c42c9805 2020-11-24 stsp }
7435 6458efa5 2020-11-24 stsp break;
7436 6458efa5 2020-11-24 stsp default:
7437 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7438 c42c9805 2020-11-24 stsp break;
7439 6458efa5 2020-11-24 stsp }
7440 6458efa5 2020-11-24 stsp
7441 c42c9805 2020-11-24 stsp done:
7442 c42c9805 2020-11-24 stsp if (tag)
7443 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7444 c42c9805 2020-11-24 stsp if (err) {
7445 c42c9805 2020-11-24 stsp free(*commit_id);
7446 c42c9805 2020-11-24 stsp *commit_id = NULL;
7447 c42c9805 2020-11-24 stsp }
7448 c42c9805 2020-11-24 stsp return err;
7449 c42c9805 2020-11-24 stsp }
7450 c42c9805 2020-11-24 stsp
7451 c42c9805 2020-11-24 stsp static const struct got_error *
7452 9b058f45 2022-06-30 mark log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7453 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7454 c42c9805 2020-11-24 stsp {
7455 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7456 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7457 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7458 c42c9805 2020-11-24 stsp
7459 c42c9805 2020-11-24 stsp *new_view = NULL;
7460 c42c9805 2020-11-24 stsp
7461 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7462 c42c9805 2020-11-24 stsp if (err) {
7463 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7464 c42c9805 2020-11-24 stsp return err;
7465 c42c9805 2020-11-24 stsp else
7466 c42c9805 2020-11-24 stsp return NULL;
7467 c42c9805 2020-11-24 stsp }
7468 c42c9805 2020-11-24 stsp
7469 9b058f45 2022-06-30 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7470 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7471 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7472 6458efa5 2020-11-24 stsp goto done;
7473 6458efa5 2020-11-24 stsp }
7474 6458efa5 2020-11-24 stsp
7475 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7476 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7477 6458efa5 2020-11-24 stsp done:
7478 6458efa5 2020-11-24 stsp if (err)
7479 6458efa5 2020-11-24 stsp view_close(log_view);
7480 6458efa5 2020-11-24 stsp else
7481 6458efa5 2020-11-24 stsp *new_view = log_view;
7482 c42c9805 2020-11-24 stsp free(commit_id);
7483 6458efa5 2020-11-24 stsp return err;
7484 6458efa5 2020-11-24 stsp }
7485 6458efa5 2020-11-24 stsp
7486 ce5b7c56 2019-07-09 stsp static void
7487 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7488 6458efa5 2020-11-24 stsp {
7489 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7490 34ba6917 2020-11-30 stsp int i = 0;
7491 6458efa5 2020-11-24 stsp
7492 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7493 6458efa5 2020-11-24 stsp return;
7494 6458efa5 2020-11-24 stsp
7495 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7496 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7497 34ba6917 2020-11-30 stsp if (re == NULL)
7498 34ba6917 2020-11-30 stsp break;
7499 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7500 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7501 6458efa5 2020-11-24 stsp }
7502 6458efa5 2020-11-24 stsp }
7503 6458efa5 2020-11-24 stsp
7504 9b058f45 2022-06-30 mark static const struct got_error *
7505 9b058f45 2022-06-30 mark ref_scroll_down(struct tog_view *view, int maxscroll)
7506 6458efa5 2020-11-24 stsp {
7507 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
7508 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7509 6458efa5 2020-11-24 stsp int n = 0;
7510 6458efa5 2020-11-24 stsp
7511 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7512 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7513 6458efa5 2020-11-24 stsp else
7514 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7515 6458efa5 2020-11-24 stsp
7516 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7517 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
7518 94b80cfa 2022-08-01 mark if (last) {
7519 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
7520 9b058f45 2022-06-30 mark last = TAILQ_NEXT(last, entry);
7521 94b80cfa 2022-08-01 mark }
7522 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7523 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7524 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7525 6458efa5 2020-11-24 stsp }
7526 6458efa5 2020-11-24 stsp }
7527 9b058f45 2022-06-30 mark
7528 9b058f45 2022-06-30 mark return NULL;
7529 6458efa5 2020-11-24 stsp }
7530 6458efa5 2020-11-24 stsp
7531 6458efa5 2020-11-24 stsp static const struct got_error *
7532 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7533 6458efa5 2020-11-24 stsp {
7534 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7535 6458efa5 2020-11-24 stsp
7536 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7537 6458efa5 2020-11-24 stsp return NULL;
7538 6458efa5 2020-11-24 stsp }
7539 6458efa5 2020-11-24 stsp
7540 6458efa5 2020-11-24 stsp static int
7541 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7542 6458efa5 2020-11-24 stsp {
7543 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7544 6458efa5 2020-11-24 stsp
7545 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7546 6458efa5 2020-11-24 stsp 0) == 0;
7547 6458efa5 2020-11-24 stsp }
7548 6458efa5 2020-11-24 stsp
7549 6458efa5 2020-11-24 stsp static const struct got_error *
7550 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7551 6458efa5 2020-11-24 stsp {
7552 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7553 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7554 6458efa5 2020-11-24 stsp
7555 6458efa5 2020-11-24 stsp if (!view->searching) {
7556 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7557 6458efa5 2020-11-24 stsp return NULL;
7558 6458efa5 2020-11-24 stsp }
7559 6458efa5 2020-11-24 stsp
7560 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7561 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7562 6458efa5 2020-11-24 stsp if (s->selected_entry)
7563 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7564 6458efa5 2020-11-24 stsp else
7565 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7566 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7567 6458efa5 2020-11-24 stsp } else {
7568 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7569 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7570 6458efa5 2020-11-24 stsp else
7571 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7572 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7573 6458efa5 2020-11-24 stsp }
7574 6458efa5 2020-11-24 stsp } else {
7575 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7576 487cd7d2 2021-12-17 stsp re = s->selected_entry;
7577 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7578 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7579 6458efa5 2020-11-24 stsp else
7580 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7581 6458efa5 2020-11-24 stsp }
7582 6458efa5 2020-11-24 stsp
7583 6458efa5 2020-11-24 stsp while (1) {
7584 6458efa5 2020-11-24 stsp if (re == NULL) {
7585 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7586 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7587 6458efa5 2020-11-24 stsp return NULL;
7588 6458efa5 2020-11-24 stsp }
7589 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7590 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7591 6458efa5 2020-11-24 stsp else
7592 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7593 6458efa5 2020-11-24 stsp }
7594 6458efa5 2020-11-24 stsp
7595 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7596 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7597 6458efa5 2020-11-24 stsp s->matched_entry = re;
7598 6458efa5 2020-11-24 stsp break;
7599 6458efa5 2020-11-24 stsp }
7600 6458efa5 2020-11-24 stsp
7601 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7602 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7603 6458efa5 2020-11-24 stsp else
7604 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7605 6458efa5 2020-11-24 stsp }
7606 6458efa5 2020-11-24 stsp
7607 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7608 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7609 6458efa5 2020-11-24 stsp s->selected = 0;
7610 6458efa5 2020-11-24 stsp }
7611 6458efa5 2020-11-24 stsp
7612 6458efa5 2020-11-24 stsp return NULL;
7613 6458efa5 2020-11-24 stsp }
7614 6458efa5 2020-11-24 stsp
7615 6458efa5 2020-11-24 stsp static const struct got_error *
7616 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7617 6458efa5 2020-11-24 stsp {
7618 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7619 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7620 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7621 6458efa5 2020-11-24 stsp char *line = NULL;
7622 6458efa5 2020-11-24 stsp wchar_t *wline;
7623 6458efa5 2020-11-24 stsp struct tog_color *tc;
7624 6458efa5 2020-11-24 stsp int width, n;
7625 6458efa5 2020-11-24 stsp int limit = view->nlines;
7626 6458efa5 2020-11-24 stsp
7627 6458efa5 2020-11-24 stsp werase(view->window);
7628 6458efa5 2020-11-24 stsp
7629 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7630 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
7631 9b058f45 2022-06-30 mark --limit; /* border */
7632 6458efa5 2020-11-24 stsp
7633 6458efa5 2020-11-24 stsp if (limit == 0)
7634 6458efa5 2020-11-24 stsp return NULL;
7635 6458efa5 2020-11-24 stsp
7636 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7637 6458efa5 2020-11-24 stsp
7638 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7639 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7640 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7641 6458efa5 2020-11-24 stsp
7642 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7643 6458efa5 2020-11-24 stsp if (err) {
7644 6458efa5 2020-11-24 stsp free(line);
7645 6458efa5 2020-11-24 stsp return err;
7646 6458efa5 2020-11-24 stsp }
7647 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7648 6458efa5 2020-11-24 stsp wstandout(view->window);
7649 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7650 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7651 6458efa5 2020-11-24 stsp wstandend(view->window);
7652 6458efa5 2020-11-24 stsp free(wline);
7653 6458efa5 2020-11-24 stsp wline = NULL;
7654 6458efa5 2020-11-24 stsp free(line);
7655 6458efa5 2020-11-24 stsp line = NULL;
7656 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
7657 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
7658 6458efa5 2020-11-24 stsp if (--limit <= 0)
7659 6458efa5 2020-11-24 stsp return NULL;
7660 6458efa5 2020-11-24 stsp
7661 6458efa5 2020-11-24 stsp n = 0;
7662 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7663 6458efa5 2020-11-24 stsp char *line = NULL;
7664 b4996bee 2022-06-16 stsp char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7665 6458efa5 2020-11-24 stsp
7666 b4996bee 2022-06-16 stsp if (s->show_date) {
7667 b4996bee 2022-06-16 stsp struct got_commit_object *ci;
7668 b4996bee 2022-06-16 stsp struct got_tag_object *tag;
7669 b4996bee 2022-06-16 stsp struct got_object_id *id;
7670 b4996bee 2022-06-16 stsp struct tm tm;
7671 b4996bee 2022-06-16 stsp time_t t;
7672 b4996bee 2022-06-16 stsp
7673 b4996bee 2022-06-16 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7674 b4996bee 2022-06-16 stsp if (err)
7675 b4996bee 2022-06-16 stsp return err;
7676 b4996bee 2022-06-16 stsp err = got_object_open_as_tag(&tag, s->repo, id);
7677 b4996bee 2022-06-16 stsp if (err) {
7678 b4996bee 2022-06-16 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
7679 b4996bee 2022-06-16 stsp free(id);
7680 b4996bee 2022-06-16 stsp return err;
7681 b4996bee 2022-06-16 stsp }
7682 b4996bee 2022-06-16 stsp err = got_object_open_as_commit(&ci, s->repo,
7683 b4996bee 2022-06-16 stsp id);
7684 b4996bee 2022-06-16 stsp if (err) {
7685 b4996bee 2022-06-16 stsp free(id);
7686 b4996bee 2022-06-16 stsp return err;
7687 b4996bee 2022-06-16 stsp }
7688 b4996bee 2022-06-16 stsp t = got_object_commit_get_committer_time(ci);
7689 b4996bee 2022-06-16 stsp got_object_commit_close(ci);
7690 b4996bee 2022-06-16 stsp } else {
7691 b4996bee 2022-06-16 stsp t = got_object_tag_get_tagger_time(tag);
7692 b4996bee 2022-06-16 stsp got_object_tag_close(tag);
7693 b4996bee 2022-06-16 stsp }
7694 b4996bee 2022-06-16 stsp free(id);
7695 b4996bee 2022-06-16 stsp if (gmtime_r(&t, &tm) == NULL)
7696 b4996bee 2022-06-16 stsp return got_error_from_errno("gmtime_r");
7697 b4996bee 2022-06-16 stsp if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
7698 b4996bee 2022-06-16 stsp return got_error(GOT_ERR_NO_SPACE);
7699 b4996bee 2022-06-16 stsp }
7700 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
7701 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s -> %s", s->show_date ?
7702 b4996bee 2022-06-16 stsp ymd : "", got_ref_get_name(re->ref),
7703 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
7704 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7705 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
7706 6458efa5 2020-11-24 stsp struct got_object_id *id;
7707 6458efa5 2020-11-24 stsp char *id_str;
7708 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7709 6458efa5 2020-11-24 stsp if (err)
7710 6458efa5 2020-11-24 stsp return err;
7711 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
7712 6458efa5 2020-11-24 stsp if (err) {
7713 6458efa5 2020-11-24 stsp free(id);
7714 6458efa5 2020-11-24 stsp return err;
7715 6458efa5 2020-11-24 stsp }
7716 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
7717 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
7718 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
7719 6458efa5 2020-11-24 stsp free(id);
7720 6458efa5 2020-11-24 stsp free(id_str);
7721 6458efa5 2020-11-24 stsp return err;
7722 6458efa5 2020-11-24 stsp }
7723 6458efa5 2020-11-24 stsp free(id);
7724 6458efa5 2020-11-24 stsp free(id_str);
7725 b4996bee 2022-06-16 stsp } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
7726 b4996bee 2022-06-16 stsp got_ref_get_name(re->ref)) == -1)
7727 b4996bee 2022-06-16 stsp return got_error_from_errno("asprintf");
7728 6458efa5 2020-11-24 stsp
7729 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
7730 ccda2f4d 2022-06-16 stsp 0, 0);
7731 6458efa5 2020-11-24 stsp if (err) {
7732 6458efa5 2020-11-24 stsp free(line);
7733 6458efa5 2020-11-24 stsp return err;
7734 6458efa5 2020-11-24 stsp }
7735 6458efa5 2020-11-24 stsp if (n == s->selected) {
7736 6458efa5 2020-11-24 stsp if (view->focussed)
7737 6458efa5 2020-11-24 stsp wstandout(view->window);
7738 6458efa5 2020-11-24 stsp s->selected_entry = re;
7739 6458efa5 2020-11-24 stsp }
7740 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
7741 6458efa5 2020-11-24 stsp if (tc)
7742 6458efa5 2020-11-24 stsp wattr_on(view->window,
7743 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
7744 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7745 6458efa5 2020-11-24 stsp if (tc)
7746 6458efa5 2020-11-24 stsp wattr_off(view->window,
7747 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
7748 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
7749 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
7750 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
7751 6458efa5 2020-11-24 stsp wstandend(view->window);
7752 6458efa5 2020-11-24 stsp free(line);
7753 6458efa5 2020-11-24 stsp free(wline);
7754 6458efa5 2020-11-24 stsp wline = NULL;
7755 6458efa5 2020-11-24 stsp n++;
7756 6458efa5 2020-11-24 stsp s->ndisplayed++;
7757 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
7758 6458efa5 2020-11-24 stsp
7759 6458efa5 2020-11-24 stsp limit--;
7760 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7761 6458efa5 2020-11-24 stsp }
7762 6458efa5 2020-11-24 stsp
7763 9b058f45 2022-06-30 mark view_border(view);
7764 6458efa5 2020-11-24 stsp return err;
7765 6458efa5 2020-11-24 stsp }
7766 6458efa5 2020-11-24 stsp
7767 6458efa5 2020-11-24 stsp static const struct got_error *
7768 49b24ee5 2022-07-03 mark browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
7769 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7770 c42c9805 2020-11-24 stsp {
7771 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7772 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
7773 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
7774 c42c9805 2020-11-24 stsp
7775 c42c9805 2020-11-24 stsp *new_view = NULL;
7776 c42c9805 2020-11-24 stsp
7777 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7778 c42c9805 2020-11-24 stsp if (err) {
7779 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7780 c42c9805 2020-11-24 stsp return err;
7781 c42c9805 2020-11-24 stsp else
7782 c42c9805 2020-11-24 stsp return NULL;
7783 c42c9805 2020-11-24 stsp }
7784 c42c9805 2020-11-24 stsp
7785 c42c9805 2020-11-24 stsp
7786 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
7787 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
7788 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
7789 c42c9805 2020-11-24 stsp goto done;
7790 c42c9805 2020-11-24 stsp }
7791 c42c9805 2020-11-24 stsp
7792 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
7793 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
7794 c42c9805 2020-11-24 stsp if (err)
7795 c42c9805 2020-11-24 stsp goto done;
7796 c42c9805 2020-11-24 stsp
7797 c42c9805 2020-11-24 stsp *new_view = tree_view;
7798 c42c9805 2020-11-24 stsp done:
7799 c42c9805 2020-11-24 stsp free(commit_id);
7800 c42c9805 2020-11-24 stsp return err;
7801 94b80cfa 2022-08-01 mark }
7802 94b80cfa 2022-08-01 mark
7803 94b80cfa 2022-08-01 mark static const struct got_error *
7804 94b80cfa 2022-08-01 mark ref_goto_line(struct tog_view *view, int nlines)
7805 94b80cfa 2022-08-01 mark {
7806 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
7807 94b80cfa 2022-08-01 mark struct tog_ref_view_state *s = &view->state.ref;
7808 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
7809 94b80cfa 2022-08-01 mark
7810 94b80cfa 2022-08-01 mark g = view->gline;
7811 94b80cfa 2022-08-01 mark view->gline = 0;
7812 94b80cfa 2022-08-01 mark
7813 94b80cfa 2022-08-01 mark if (g == 0)
7814 94b80cfa 2022-08-01 mark g = 1;
7815 94b80cfa 2022-08-01 mark else if (g > s->nrefs)
7816 94b80cfa 2022-08-01 mark g = s->nrefs;
7817 94b80cfa 2022-08-01 mark
7818 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
7819 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
7820 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
7821 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
7822 94b80cfa 2022-08-01 mark return NULL;
7823 94b80cfa 2022-08-01 mark }
7824 94b80cfa 2022-08-01 mark
7825 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
7826 94b80cfa 2022-08-01 mark err = ref_scroll_down(view, g - idx - 1);
7827 94b80cfa 2022-08-01 mark if (err)
7828 94b80cfa 2022-08-01 mark return err;
7829 94b80cfa 2022-08-01 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
7830 94b80cfa 2022-08-01 mark s->first_displayed_entry->idx + s->selected < g &&
7831 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1)
7832 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
7833 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
7834 94b80cfa 2022-08-01 mark ref_scroll_up(s, idx - g + 1);
7835 94b80cfa 2022-08-01 mark
7836 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
7837 94b80cfa 2022-08-01 mark s->selected = g - 1;
7838 94b80cfa 2022-08-01 mark
7839 94b80cfa 2022-08-01 mark return NULL;
7840 94b80cfa 2022-08-01 mark
7841 c42c9805 2020-11-24 stsp }
7842 94b80cfa 2022-08-01 mark
7843 c42c9805 2020-11-24 stsp static const struct got_error *
7844 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
7845 6458efa5 2020-11-24 stsp {
7846 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7847 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7848 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
7849 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 1;
7850 6458efa5 2020-11-24 stsp
7851 94b80cfa 2022-08-01 mark if (view->gline)
7852 94b80cfa 2022-08-01 mark return ref_goto_line(view, nscroll);
7853 94b80cfa 2022-08-01 mark
7854 6458efa5 2020-11-24 stsp switch (ch) {
7855 6458efa5 2020-11-24 stsp case 'i':
7856 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
7857 640cd7ff 2022-06-22 mark view->count = 0;
7858 7f66531d 2021-11-16 stsp break;
7859 b4996bee 2022-06-16 stsp case 'm':
7860 b4996bee 2022-06-16 stsp s->show_date = !s->show_date;
7861 640cd7ff 2022-06-22 mark view->count = 0;
7862 b4996bee 2022-06-16 stsp break;
7863 07a065fe 2021-11-20 stsp case 'o':
7864 7f66531d 2021-11-16 stsp s->sort_by_date = !s->sort_by_date;
7865 640cd7ff 2022-06-22 mark view->count = 0;
7866 50617b77 2021-11-20 stsp err = got_reflist_sort(&tog_refs, s->sort_by_date ?
7867 50617b77 2021-11-20 stsp got_ref_cmp_by_commit_timestamp_descending :
7868 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name, s->repo);
7869 50617b77 2021-11-20 stsp if (err)
7870 50617b77 2021-11-20 stsp break;
7871 50617b77 2021-11-20 stsp got_reflist_object_id_map_free(tog_refs_idmap);
7872 50617b77 2021-11-20 stsp err = got_reflist_object_id_map_create(&tog_refs_idmap,
7873 50617b77 2021-11-20 stsp &tog_refs, s->repo);
7874 7f66531d 2021-11-16 stsp if (err)
7875 7f66531d 2021-11-16 stsp break;
7876 7f66531d 2021-11-16 stsp ref_view_free_refs(s);
7877 7f66531d 2021-11-16 stsp err = ref_view_load_refs(s);
7878 6458efa5 2020-11-24 stsp break;
7879 6458efa5 2020-11-24 stsp case KEY_ENTER:
7880 6458efa5 2020-11-24 stsp case '\r':
7881 640cd7ff 2022-06-22 mark view->count = 0;
7882 6458efa5 2020-11-24 stsp if (!s->selected_entry)
7883 9b058f45 2022-06-30 mark break;
7884 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
7885 6458efa5 2020-11-24 stsp break;
7886 5e98fb33 2022-07-22 mark case 'T':
7887 640cd7ff 2022-06-22 mark view->count = 0;
7888 c42c9805 2020-11-24 stsp if (!s->selected_entry)
7889 c42c9805 2020-11-24 stsp break;
7890 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
7891 c42c9805 2020-11-24 stsp break;
7892 e4526bf5 2021-09-03 naddy case 'g':
7893 e4526bf5 2021-09-03 naddy case KEY_HOME:
7894 e4526bf5 2021-09-03 naddy s->selected = 0;
7895 640cd7ff 2022-06-22 mark view->count = 0;
7896 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7897 e4526bf5 2021-09-03 naddy break;
7898 e4526bf5 2021-09-03 naddy case 'G':
7899 9b058f45 2022-06-30 mark case KEY_END: {
7900 9b058f45 2022-06-30 mark int eos = view->nlines - 1;
7901 9b058f45 2022-06-30 mark
7902 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
7903 9b058f45 2022-06-30 mark --eos; /* border */
7904 e4526bf5 2021-09-03 naddy s->selected = 0;
7905 640cd7ff 2022-06-22 mark view->count = 0;
7906 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
7907 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
7908 e4526bf5 2021-09-03 naddy if (re == NULL)
7909 e4526bf5 2021-09-03 naddy break;
7910 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
7911 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
7912 e4526bf5 2021-09-03 naddy }
7913 e4526bf5 2021-09-03 naddy if (n > 0)
7914 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7915 e4526bf5 2021-09-03 naddy break;
7916 9b058f45 2022-06-30 mark }
7917 6458efa5 2020-11-24 stsp case 'k':
7918 6458efa5 2020-11-24 stsp case KEY_UP:
7919 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7920 6458efa5 2020-11-24 stsp if (s->selected > 0) {
7921 6458efa5 2020-11-24 stsp s->selected--;
7922 6458efa5 2020-11-24 stsp break;
7923 34ba6917 2020-11-30 stsp }
7924 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
7925 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
7926 640cd7ff 2022-06-22 mark view->count = 0;
7927 6458efa5 2020-11-24 stsp break;
7928 83cc4199 2022-06-13 stsp case CTRL('u'):
7929 33c3719a 2022-06-15 stsp case 'u':
7930 83cc4199 2022-06-13 stsp nscroll /= 2;
7931 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7932 6458efa5 2020-11-24 stsp case KEY_PPAGE:
7933 6458efa5 2020-11-24 stsp case CTRL('b'):
7934 61417565 2022-06-20 mark case 'b':
7935 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7936 83cc4199 2022-06-13 stsp s->selected -= MIN(nscroll, s->selected);
7937 83cc4199 2022-06-13 stsp ref_scroll_up(s, MAX(0, nscroll));
7938 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
7939 640cd7ff 2022-06-22 mark view->count = 0;
7940 6458efa5 2020-11-24 stsp break;
7941 6458efa5 2020-11-24 stsp case 'j':
7942 6458efa5 2020-11-24 stsp case KEY_DOWN:
7943 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7944 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
7945 6458efa5 2020-11-24 stsp s->selected++;
7946 6458efa5 2020-11-24 stsp break;
7947 6458efa5 2020-11-24 stsp }
7948 640cd7ff 2022-06-22 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
7949 6458efa5 2020-11-24 stsp /* can't scroll any further */
7950 640cd7ff 2022-06-22 mark view->count = 0;
7951 6458efa5 2020-11-24 stsp break;
7952 640cd7ff 2022-06-22 mark }
7953 9b058f45 2022-06-30 mark ref_scroll_down(view, 1);
7954 6458efa5 2020-11-24 stsp break;
7955 83cc4199 2022-06-13 stsp case CTRL('d'):
7956 33c3719a 2022-06-15 stsp case 'd':
7957 83cc4199 2022-06-13 stsp nscroll /= 2;
7958 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7959 6458efa5 2020-11-24 stsp case KEY_NPAGE:
7960 6458efa5 2020-11-24 stsp case CTRL('f'):
7961 61417565 2022-06-20 mark case 'f':
7962 48bb96f0 2022-06-20 naddy case ' ':
7963 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
7964 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
7965 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
7966 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7967 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7968 640cd7ff 2022-06-22 mark if (view->count > 1 && s->selected < s->ndisplayed - 1)
7969 640cd7ff 2022-06-22 mark s->selected += s->ndisplayed - s->selected - 1;
7970 640cd7ff 2022-06-22 mark view->count = 0;
7971 6458efa5 2020-11-24 stsp break;
7972 6458efa5 2020-11-24 stsp }
7973 9b058f45 2022-06-30 mark ref_scroll_down(view, nscroll);
7974 6458efa5 2020-11-24 stsp break;
7975 6458efa5 2020-11-24 stsp case CTRL('l'):
7976 640cd7ff 2022-06-22 mark view->count = 0;
7977 8924d611 2020-12-26 stsp tog_free_refs();
7978 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, s->sort_by_date);
7979 8924d611 2020-12-26 stsp if (err)
7980 8924d611 2020-12-26 stsp break;
7981 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7982 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7983 6458efa5 2020-11-24 stsp break;
7984 6458efa5 2020-11-24 stsp case KEY_RESIZE:
7985 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
7986 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
7987 6458efa5 2020-11-24 stsp break;
7988 6458efa5 2020-11-24 stsp default:
7989 640cd7ff 2022-06-22 mark view->count = 0;
7990 6458efa5 2020-11-24 stsp break;
7991 6458efa5 2020-11-24 stsp }
7992 6458efa5 2020-11-24 stsp
7993 6458efa5 2020-11-24 stsp return err;
7994 6458efa5 2020-11-24 stsp }
7995 6458efa5 2020-11-24 stsp
7996 6458efa5 2020-11-24 stsp __dead static void
7997 6458efa5 2020-11-24 stsp usage_ref(void)
7998 6458efa5 2020-11-24 stsp {
7999 6458efa5 2020-11-24 stsp endwin();
8000 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8001 6458efa5 2020-11-24 stsp getprogname());
8002 6458efa5 2020-11-24 stsp exit(1);
8003 6458efa5 2020-11-24 stsp }
8004 6458efa5 2020-11-24 stsp
8005 6458efa5 2020-11-24 stsp static const struct got_error *
8006 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8007 6458efa5 2020-11-24 stsp {
8008 6458efa5 2020-11-24 stsp const struct got_error *error;
8009 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8010 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8011 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8012 6458efa5 2020-11-24 stsp int ch;
8013 6458efa5 2020-11-24 stsp struct tog_view *view;
8014 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8015 6458efa5 2020-11-24 stsp
8016 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8017 6458efa5 2020-11-24 stsp switch (ch) {
8018 6458efa5 2020-11-24 stsp case 'r':
8019 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8020 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8021 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8022 6458efa5 2020-11-24 stsp optarg);
8023 6458efa5 2020-11-24 stsp break;
8024 6458efa5 2020-11-24 stsp default:
8025 e99e2d15 2020-11-24 naddy usage_ref();
8026 6458efa5 2020-11-24 stsp /* NOTREACHED */
8027 6458efa5 2020-11-24 stsp }
8028 6458efa5 2020-11-24 stsp }
8029 6458efa5 2020-11-24 stsp
8030 6458efa5 2020-11-24 stsp argc -= optind;
8031 6458efa5 2020-11-24 stsp argv += optind;
8032 6458efa5 2020-11-24 stsp
8033 6458efa5 2020-11-24 stsp if (argc > 1)
8034 e99e2d15 2020-11-24 naddy usage_ref();
8035 0ae84acc 2022-06-15 tracey
8036 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8037 0ae84acc 2022-06-15 tracey if (error != NULL)
8038 0ae84acc 2022-06-15 tracey goto done;
8039 6458efa5 2020-11-24 stsp
8040 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8041 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8042 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8043 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8044 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8045 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8046 c156c7a4 2020-12-18 stsp goto done;
8047 6458efa5 2020-11-24 stsp if (worktree)
8048 6458efa5 2020-11-24 stsp repo_path =
8049 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8050 6458efa5 2020-11-24 stsp else
8051 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8052 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8053 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8054 c156c7a4 2020-12-18 stsp goto done;
8055 c156c7a4 2020-12-18 stsp }
8056 6458efa5 2020-11-24 stsp }
8057 6458efa5 2020-11-24 stsp
8058 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8059 6458efa5 2020-11-24 stsp if (error != NULL)
8060 6458efa5 2020-11-24 stsp goto done;
8061 6458efa5 2020-11-24 stsp
8062 6458efa5 2020-11-24 stsp init_curses();
8063 6458efa5 2020-11-24 stsp
8064 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8065 51a10b52 2020-12-26 stsp if (error)
8066 51a10b52 2020-12-26 stsp goto done;
8067 51a10b52 2020-12-26 stsp
8068 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8069 6458efa5 2020-11-24 stsp if (error)
8070 6458efa5 2020-11-24 stsp goto done;
8071 6458efa5 2020-11-24 stsp
8072 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8073 6458efa5 2020-11-24 stsp if (view == NULL) {
8074 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8075 6458efa5 2020-11-24 stsp goto done;
8076 6458efa5 2020-11-24 stsp }
8077 6458efa5 2020-11-24 stsp
8078 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8079 6458efa5 2020-11-24 stsp if (error)
8080 6458efa5 2020-11-24 stsp goto done;
8081 6458efa5 2020-11-24 stsp
8082 6458efa5 2020-11-24 stsp if (worktree) {
8083 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8084 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8085 6458efa5 2020-11-24 stsp worktree = NULL;
8086 6458efa5 2020-11-24 stsp }
8087 6458efa5 2020-11-24 stsp error = view_loop(view);
8088 6458efa5 2020-11-24 stsp done:
8089 6458efa5 2020-11-24 stsp free(repo_path);
8090 6458efa5 2020-11-24 stsp free(cwd);
8091 1d0f4054 2021-06-17 stsp if (repo) {
8092 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8093 1d0f4054 2021-06-17 stsp if (close_err)
8094 1d0f4054 2021-06-17 stsp error = close_err;
8095 1d0f4054 2021-06-17 stsp }
8096 0ae84acc 2022-06-15 tracey if (pack_fds) {
8097 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8098 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8099 0ae84acc 2022-06-15 tracey if (error == NULL)
8100 0ae84acc 2022-06-15 tracey error = pack_err;
8101 0ae84acc 2022-06-15 tracey }
8102 51a10b52 2020-12-26 stsp tog_free_refs();
8103 6458efa5 2020-11-24 stsp return error;
8104 6458efa5 2020-11-24 stsp }
8105 6458efa5 2020-11-24 stsp
8106 136e2bd4 2022-07-23 mark static const struct got_error *
8107 136e2bd4 2022-07-23 mark view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8108 136e2bd4 2022-07-23 mark enum tog_view_type request, int y, int x)
8109 136e2bd4 2022-07-23 mark {
8110 136e2bd4 2022-07-23 mark const struct got_error *err = NULL;
8111 136e2bd4 2022-07-23 mark
8112 136e2bd4 2022-07-23 mark *new_view = NULL;
8113 136e2bd4 2022-07-23 mark
8114 136e2bd4 2022-07-23 mark switch (request) {
8115 136e2bd4 2022-07-23 mark case TOG_VIEW_DIFF:
8116 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG) {
8117 136e2bd4 2022-07-23 mark struct tog_log_view_state *s = &view->state.log;
8118 136e2bd4 2022-07-23 mark
8119 136e2bd4 2022-07-23 mark err = open_diff_view_for_commit(new_view, y, x,
8120 136e2bd4 2022-07-23 mark s->selected_entry->commit, s->selected_entry->id,
8121 136e2bd4 2022-07-23 mark view, s->repo);
8122 136e2bd4 2022-07-23 mark } else
8123 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8124 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8125 136e2bd4 2022-07-23 mark break;
8126 136e2bd4 2022-07-23 mark case TOG_VIEW_BLAME:
8127 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_TREE) {
8128 136e2bd4 2022-07-23 mark struct tog_tree_view_state *s = &view->state.tree;
8129 136e2bd4 2022-07-23 mark
8130 136e2bd4 2022-07-23 mark err = blame_tree_entry(new_view, y, x,
8131 136e2bd4 2022-07-23 mark s->selected_entry, &s->parents, s->commit_id,
8132 136e2bd4 2022-07-23 mark s->repo);
8133 136e2bd4 2022-07-23 mark } else
8134 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8135 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8136 136e2bd4 2022-07-23 mark break;
8137 136e2bd4 2022-07-23 mark case TOG_VIEW_LOG:
8138 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_BLAME)
8139 136e2bd4 2022-07-23 mark err = log_annotated_line(new_view, y, x,
8140 136e2bd4 2022-07-23 mark view->state.blame.repo, view->state.blame.id_to_log);
8141 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8142 136e2bd4 2022-07-23 mark err = log_selected_tree_entry(new_view, y, x,
8143 136e2bd4 2022-07-23 mark &view->state.tree);
8144 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8145 136e2bd4 2022-07-23 mark err = log_ref_entry(new_view, y, x,
8146 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8147 136e2bd4 2022-07-23 mark view->state.ref.repo);
8148 136e2bd4 2022-07-23 mark else
8149 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8150 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8151 136e2bd4 2022-07-23 mark break;
8152 136e2bd4 2022-07-23 mark case TOG_VIEW_TREE:
8153 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8154 136e2bd4 2022-07-23 mark err = browse_commit_tree(new_view, y, x,
8155 136e2bd4 2022-07-23 mark view->state.log.selected_entry,
8156 136e2bd4 2022-07-23 mark view->state.log.in_repo_path,
8157 136e2bd4 2022-07-23 mark view->state.log.head_ref_name,
8158 136e2bd4 2022-07-23 mark view->state.log.repo);
8159 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8160 136e2bd4 2022-07-23 mark err = browse_ref_tree(new_view, y, x,
8161 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8162 136e2bd4 2022-07-23 mark view->state.ref.repo);
8163 136e2bd4 2022-07-23 mark else
8164 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8165 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8166 136e2bd4 2022-07-23 mark break;
8167 136e2bd4 2022-07-23 mark case TOG_VIEW_REF:
8168 136e2bd4 2022-07-23 mark *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
8169 136e2bd4 2022-07-23 mark if (*new_view == NULL)
8170 136e2bd4 2022-07-23 mark return got_error_from_errno("view_open");
8171 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8172 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.log.repo);
8173 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8174 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.tree.repo);
8175 136e2bd4 2022-07-23 mark else
8176 136e2bd4 2022-07-23 mark err = got_error_msg(GOT_ERR_NOT_IMPL,
8177 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8178 136e2bd4 2022-07-23 mark if (err)
8179 136e2bd4 2022-07-23 mark view_close(*new_view);
8180 136e2bd4 2022-07-23 mark break;
8181 136e2bd4 2022-07-23 mark default:
8182 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
8183 136e2bd4 2022-07-23 mark }
8184 136e2bd4 2022-07-23 mark
8185 136e2bd4 2022-07-23 mark return err;
8186 136e2bd4 2022-07-23 mark }
8187 136e2bd4 2022-07-23 mark
8188 9b058f45 2022-06-30 mark /*
8189 9b058f45 2022-06-30 mark * If view was scrolled down to move the selected line into view when opening a
8190 9b058f45 2022-06-30 mark * horizontal split, scroll back up when closing the split/toggling fullscreen.
8191 9b058f45 2022-06-30 mark */
8192 6458efa5 2020-11-24 stsp static void
8193 9b058f45 2022-06-30 mark offset_selection_up(struct tog_view *view)
8194 9b058f45 2022-06-30 mark {
8195 9b058f45 2022-06-30 mark switch (view->type) {
8196 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
8197 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
8198 9b058f45 2022-06-30 mark if (s->first_displayed_line == 1) {
8199 9b058f45 2022-06-30 mark s->selected_line = MAX(s->selected_line - view->offset,
8200 9b058f45 2022-06-30 mark 1);
8201 9b058f45 2022-06-30 mark break;
8202 9b058f45 2022-06-30 mark }
8203 9b058f45 2022-06-30 mark if (s->first_displayed_line > view->offset)
8204 9b058f45 2022-06-30 mark s->first_displayed_line -= view->offset;
8205 9b058f45 2022-06-30 mark else
8206 9b058f45 2022-06-30 mark s->first_displayed_line = 1;
8207 9b058f45 2022-06-30 mark s->selected_line += view->offset;
8208 9b058f45 2022-06-30 mark break;
8209 9b058f45 2022-06-30 mark }
8210 9b058f45 2022-06-30 mark case TOG_VIEW_LOG:
8211 9b058f45 2022-06-30 mark log_scroll_up(&view->state.log, view->offset);
8212 9b058f45 2022-06-30 mark view->state.log.selected += view->offset;
8213 9b058f45 2022-06-30 mark break;
8214 9b058f45 2022-06-30 mark case TOG_VIEW_REF:
8215 9b058f45 2022-06-30 mark ref_scroll_up(&view->state.ref, view->offset);
8216 9b058f45 2022-06-30 mark view->state.ref.selected += view->offset;
8217 9b058f45 2022-06-30 mark break;
8218 9b058f45 2022-06-30 mark case TOG_VIEW_TREE:
8219 9b058f45 2022-06-30 mark tree_scroll_up(&view->state.tree, view->offset);
8220 9b058f45 2022-06-30 mark view->state.tree.selected += view->offset;
8221 9b058f45 2022-06-30 mark break;
8222 9b058f45 2022-06-30 mark default:
8223 9b058f45 2022-06-30 mark break;
8224 9b058f45 2022-06-30 mark }
8225 9b058f45 2022-06-30 mark
8226 9b058f45 2022-06-30 mark view->offset = 0;
8227 9b058f45 2022-06-30 mark }
8228 9b058f45 2022-06-30 mark
8229 9b058f45 2022-06-30 mark /*
8230 9b058f45 2022-06-30 mark * If the selected line is in the section of screen covered by the bottom split,
8231 9b058f45 2022-06-30 mark * scroll down offset lines to move it into view and index its new position.
8232 9b058f45 2022-06-30 mark */
8233 9b058f45 2022-06-30 mark static const struct got_error *
8234 9b058f45 2022-06-30 mark offset_selection_down(struct tog_view *view)
8235 9b058f45 2022-06-30 mark {
8236 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
8237 9b058f45 2022-06-30 mark const struct got_error *(*scrolld)(struct tog_view *, int);
8238 9b058f45 2022-06-30 mark int *selected = NULL;
8239 9b058f45 2022-06-30 mark int header, offset;
8240 9b058f45 2022-06-30 mark
8241 9b058f45 2022-06-30 mark switch (view->type) {
8242 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
8243 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
8244 9b058f45 2022-06-30 mark header = 3;
8245 9b058f45 2022-06-30 mark scrolld = NULL;
8246 9b058f45 2022-06-30 mark if (s->selected_line > view->nlines - header) {
8247 9b058f45 2022-06-30 mark offset = abs(view->nlines - s->selected_line - header);
8248 9b058f45 2022-06-30 mark s->first_displayed_line += offset;
8249 9b058f45 2022-06-30 mark s->selected_line -= offset;
8250 9b058f45 2022-06-30 mark view->offset = offset;
8251 9b058f45 2022-06-30 mark }
8252 9b058f45 2022-06-30 mark break;
8253 9b058f45 2022-06-30 mark }
8254 9b058f45 2022-06-30 mark case TOG_VIEW_LOG: {
8255 9b058f45 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
8256 9b058f45 2022-06-30 mark scrolld = &log_scroll_down;
8257 d2366e29 2022-07-07 mark header = view_is_parent_view(view) ? 3 : 2;
8258 9b058f45 2022-06-30 mark selected = &s->selected;
8259 9b058f45 2022-06-30 mark break;
8260 9b058f45 2022-06-30 mark }
8261 9b058f45 2022-06-30 mark case TOG_VIEW_REF: {
8262 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
8263 9b058f45 2022-06-30 mark scrolld = &ref_scroll_down;
8264 9b058f45 2022-06-30 mark header = 3;
8265 9b058f45 2022-06-30 mark selected = &s->selected;
8266 9b058f45 2022-06-30 mark break;
8267 9b058f45 2022-06-30 mark }
8268 9b058f45 2022-06-30 mark case TOG_VIEW_TREE: {
8269 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
8270 9b058f45 2022-06-30 mark scrolld = &tree_scroll_down;
8271 9b058f45 2022-06-30 mark header = 5;
8272 9b058f45 2022-06-30 mark selected = &s->selected;
8273 9b058f45 2022-06-30 mark break;
8274 9b058f45 2022-06-30 mark }
8275 9b058f45 2022-06-30 mark default:
8276 9b058f45 2022-06-30 mark selected = NULL;
8277 9b058f45 2022-06-30 mark scrolld = NULL;
8278 9b058f45 2022-06-30 mark header = 0;
8279 9b058f45 2022-06-30 mark break;
8280 9b058f45 2022-06-30 mark }
8281 9b058f45 2022-06-30 mark
8282 9b058f45 2022-06-30 mark if (selected && *selected > view->nlines - header) {
8283 9b058f45 2022-06-30 mark offset = abs(view->nlines - *selected - header);
8284 9b058f45 2022-06-30 mark view->offset = offset;
8285 9b058f45 2022-06-30 mark if (scrolld && offset) {
8286 9b058f45 2022-06-30 mark err = scrolld(view, offset);
8287 9b058f45 2022-06-30 mark *selected -= offset;
8288 9b058f45 2022-06-30 mark }
8289 9b058f45 2022-06-30 mark }
8290 9b058f45 2022-06-30 mark
8291 9b058f45 2022-06-30 mark return err;
8292 9b058f45 2022-06-30 mark }
8293 9b058f45 2022-06-30 mark
8294 9b058f45 2022-06-30 mark static void
8295 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
8296 ce5b7c56 2019-07-09 stsp {
8297 6059809a 2020-12-17 stsp size_t i;
8298 9f7d7167 2018-04-29 stsp
8299 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
8300 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
8301 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = &tog_commands[i];
8302 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
8303 ce5b7c56 2019-07-09 stsp }
8304 6879ba42 2020-10-01 naddy fputc('\n', fp);
8305 ce5b7c56 2019-07-09 stsp }
8306 ce5b7c56 2019-07-09 stsp
8307 4ed7e80c 2018-05-20 stsp __dead static void
8308 6879ba42 2020-10-01 naddy usage(int hflag, int status)
8309 9f7d7167 2018-04-29 stsp {
8310 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
8311 6879ba42 2020-10-01 naddy
8312 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] [command] [arg ...]\n",
8313 6879ba42 2020-10-01 naddy getprogname());
8314 6879ba42 2020-10-01 naddy if (hflag) {
8315 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
8316 6879ba42 2020-10-01 naddy list_commands(fp);
8317 ee85c5e8 2020-02-29 stsp }
8318 6879ba42 2020-10-01 naddy exit(status);
8319 9f7d7167 2018-04-29 stsp }
8320 9f7d7167 2018-04-29 stsp
8321 c2301be8 2018-04-30 stsp static char **
8322 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
8323 c2301be8 2018-04-30 stsp {
8324 ee85c5e8 2020-02-29 stsp va_list ap;
8325 c2301be8 2018-04-30 stsp char **argv;
8326 ee85c5e8 2020-02-29 stsp int i;
8327 c2301be8 2018-04-30 stsp
8328 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
8329 ee85c5e8 2020-02-29 stsp
8330 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
8331 c2301be8 2018-04-30 stsp if (argv == NULL)
8332 c2301be8 2018-04-30 stsp err(1, "calloc");
8333 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
8334 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
8335 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
8336 e10c916e 2019-09-15 hiltjo err(1, "strdup");
8337 c2301be8 2018-04-30 stsp }
8338 c2301be8 2018-04-30 stsp
8339 ee85c5e8 2020-02-29 stsp va_end(ap);
8340 c2301be8 2018-04-30 stsp return argv;
8341 ee85c5e8 2020-02-29 stsp }
8342 ee85c5e8 2020-02-29 stsp
8343 ee85c5e8 2020-02-29 stsp /*
8344 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
8345 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
8346 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
8347 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
8348 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
8349 ee85c5e8 2020-02-29 stsp */
8350 ee85c5e8 2020-02-29 stsp static const struct got_error *
8351 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
8352 ee85c5e8 2020-02-29 stsp {
8353 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
8354 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
8355 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
8356 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
8357 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
8358 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
8359 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
8360 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
8361 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8362 84de9106 2020-12-26 stsp
8363 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
8364 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
8365 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
8366 ee85c5e8 2020-02-29 stsp
8367 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8368 0ae84acc 2022-06-15 tracey if (error != NULL)
8369 0ae84acc 2022-06-15 tracey goto done;
8370 0ae84acc 2022-06-15 tracey
8371 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
8372 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8373 ee85c5e8 2020-02-29 stsp goto done;
8374 ee85c5e8 2020-02-29 stsp
8375 ee85c5e8 2020-02-29 stsp if (worktree)
8376 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
8377 ee85c5e8 2020-02-29 stsp else
8378 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
8379 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
8380 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
8381 ee85c5e8 2020-02-29 stsp goto done;
8382 ee85c5e8 2020-02-29 stsp }
8383 ee85c5e8 2020-02-29 stsp
8384 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8385 ee85c5e8 2020-02-29 stsp if (error != NULL)
8386 ee85c5e8 2020-02-29 stsp goto done;
8387 ee85c5e8 2020-02-29 stsp
8388 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
8389 ee85c5e8 2020-02-29 stsp repo, worktree);
8390 ee85c5e8 2020-02-29 stsp if (error)
8391 ee85c5e8 2020-02-29 stsp goto done;
8392 ee85c5e8 2020-02-29 stsp
8393 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8394 84de9106 2020-12-26 stsp if (error)
8395 84de9106 2020-12-26 stsp goto done;
8396 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
8397 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
8398 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
8399 ee85c5e8 2020-02-29 stsp if (error)
8400 ee85c5e8 2020-02-29 stsp goto done;
8401 ee85c5e8 2020-02-29 stsp
8402 ee85c5e8 2020-02-29 stsp if (worktree) {
8403 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
8404 ee85c5e8 2020-02-29 stsp worktree = NULL;
8405 ee85c5e8 2020-02-29 stsp }
8406 ee85c5e8 2020-02-29 stsp
8407 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
8408 a44927cc 2022-04-07 stsp if (error)
8409 a44927cc 2022-04-07 stsp goto done;
8410 a44927cc 2022-04-07 stsp
8411 a44927cc 2022-04-07 stsp error = got_object_id_by_path(&id, repo, commit, in_repo_path);
8412 ee85c5e8 2020-02-29 stsp if (error) {
8413 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
8414 ee85c5e8 2020-02-29 stsp goto done;
8415 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
8416 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
8417 6879ba42 2020-10-01 naddy usage(1, 1);
8418 ee85c5e8 2020-02-29 stsp /* not reached */
8419 ee85c5e8 2020-02-29 stsp }
8420 ee85c5e8 2020-02-29 stsp
8421 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
8422 ee85c5e8 2020-02-29 stsp if (error)
8423 ee85c5e8 2020-02-29 stsp goto done;
8424 ee85c5e8 2020-02-29 stsp
8425 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
8426 ee85c5e8 2020-02-29 stsp argc = 4;
8427 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
8428 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
8429 ee85c5e8 2020-02-29 stsp done:
8430 1d0f4054 2021-06-17 stsp if (repo) {
8431 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
8432 1d0f4054 2021-06-17 stsp if (error == NULL)
8433 1d0f4054 2021-06-17 stsp error = close_err;
8434 1d0f4054 2021-06-17 stsp }
8435 a44927cc 2022-04-07 stsp if (commit)
8436 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
8437 ee85c5e8 2020-02-29 stsp if (worktree)
8438 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
8439 0ae84acc 2022-06-15 tracey if (pack_fds) {
8440 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8441 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8442 0ae84acc 2022-06-15 tracey if (error == NULL)
8443 0ae84acc 2022-06-15 tracey error = pack_err;
8444 0ae84acc 2022-06-15 tracey }
8445 ee85c5e8 2020-02-29 stsp free(id);
8446 ee85c5e8 2020-02-29 stsp free(commit_id_str);
8447 ee85c5e8 2020-02-29 stsp free(commit_id);
8448 ee85c5e8 2020-02-29 stsp free(cwd);
8449 ee85c5e8 2020-02-29 stsp free(repo_path);
8450 ee85c5e8 2020-02-29 stsp free(in_repo_path);
8451 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
8452 ee85c5e8 2020-02-29 stsp int i;
8453 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
8454 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
8455 ee85c5e8 2020-02-29 stsp free(cmd_argv);
8456 ee85c5e8 2020-02-29 stsp }
8457 87670572 2020-12-26 naddy tog_free_refs();
8458 ee85c5e8 2020-02-29 stsp return error;
8459 c2301be8 2018-04-30 stsp }
8460 c2301be8 2018-04-30 stsp
8461 9f7d7167 2018-04-29 stsp int
8462 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
8463 9f7d7167 2018-04-29 stsp {
8464 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
8465 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
8466 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
8467 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
8468 3e166534 2022-02-16 naddy static const struct option longopts[] = {
8469 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
8470 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
8471 83cd27f8 2020-01-13 stsp };
8472 917d79a7 2022-07-01 stsp char *diff_algo_str = NULL;
8473 9f7d7167 2018-04-29 stsp
8474 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
8475 9f7d7167 2018-04-29 stsp
8476 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
8477 9f7d7167 2018-04-29 stsp switch (ch) {
8478 9f7d7167 2018-04-29 stsp case 'h':
8479 9f7d7167 2018-04-29 stsp hflag = 1;
8480 9f7d7167 2018-04-29 stsp break;
8481 53ccebc2 2019-07-30 stsp case 'V':
8482 53ccebc2 2019-07-30 stsp Vflag = 1;
8483 53ccebc2 2019-07-30 stsp break;
8484 9f7d7167 2018-04-29 stsp default:
8485 6879ba42 2020-10-01 naddy usage(hflag, 1);
8486 9f7d7167 2018-04-29 stsp /* NOTREACHED */
8487 9f7d7167 2018-04-29 stsp }
8488 9f7d7167 2018-04-29 stsp }
8489 9f7d7167 2018-04-29 stsp
8490 9f7d7167 2018-04-29 stsp argc -= optind;
8491 9f7d7167 2018-04-29 stsp argv += optind;
8492 9814e6a3 2020-09-27 naddy optind = 1;
8493 c2301be8 2018-04-30 stsp optreset = 1;
8494 9f7d7167 2018-04-29 stsp
8495 53ccebc2 2019-07-30 stsp if (Vflag) {
8496 53ccebc2 2019-07-30 stsp got_version_print_str();
8497 6879ba42 2020-10-01 naddy return 0;
8498 53ccebc2 2019-07-30 stsp }
8499 4010e238 2020-12-04 stsp
8500 4010e238 2020-12-04 stsp #ifndef PROFILE
8501 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
8502 4010e238 2020-12-04 stsp NULL) == -1)
8503 4010e238 2020-12-04 stsp err(1, "pledge");
8504 4010e238 2020-12-04 stsp #endif
8505 53ccebc2 2019-07-30 stsp
8506 c2301be8 2018-04-30 stsp if (argc == 0) {
8507 f29d3e89 2018-06-23 stsp if (hflag)
8508 6879ba42 2020-10-01 naddy usage(hflag, 0);
8509 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
8510 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
8511 c2301be8 2018-04-30 stsp argc = 1;
8512 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
8513 c2301be8 2018-04-30 stsp } else {
8514 6059809a 2020-12-17 stsp size_t i;
8515 9f7d7167 2018-04-29 stsp
8516 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
8517 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
8518 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
8519 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
8520 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
8521 9f7d7167 2018-04-29 stsp break;
8522 9f7d7167 2018-04-29 stsp }
8523 9f7d7167 2018-04-29 stsp }
8524 ee85c5e8 2020-02-29 stsp }
8525 3642c4c6 2019-07-09 stsp
8526 917d79a7 2022-07-01 stsp diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
8527 917d79a7 2022-07-01 stsp if (diff_algo_str) {
8528 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "patience") == 0)
8529 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
8530 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "myers") == 0)
8531 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
8532 917d79a7 2022-07-01 stsp }
8533 917d79a7 2022-07-01 stsp
8534 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
8535 ee85c5e8 2020-02-29 stsp if (argc != 1)
8536 6879ba42 2020-10-01 naddy usage(0, 1);
8537 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
8538 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
8539 ee85c5e8 2020-02-29 stsp } else {
8540 ee85c5e8 2020-02-29 stsp if (hflag)
8541 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
8542 ee85c5e8 2020-02-29 stsp else
8543 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
8544 9f7d7167 2018-04-29 stsp }
8545 9f7d7167 2018-04-29 stsp
8546 9f7d7167 2018-04-29 stsp endwin();
8547 b46c1e04 2020-09-20 naddy putchar('\n');
8548 a2f4a359 2020-02-28 stsp if (cmd_argv) {
8549 a2f4a359 2020-02-28 stsp int i;
8550 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
8551 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
8552 a2f4a359 2020-02-28 stsp free(cmd_argv);
8553 a2f4a359 2020-02-28 stsp }
8554 a2f4a359 2020-02-28 stsp
8555 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
8556 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
8557 9f7d7167 2018-04-29 stsp return 0;
8558 9f7d7167 2018-04-29 stsp }