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 ec2a9698 2022-09-15 mark TOG_VIEW_HELP
107 ec2a9698 2022-09-15 mark };
108 ec2a9698 2022-09-15 mark
109 ec2a9698 2022-09-15 mark /* Match _DIFF to _HELP with enum tog_view_type TOG_VIEW_* counterparts. */
110 ec2a9698 2022-09-15 mark enum tog_keymap_type {
111 ec2a9698 2022-09-15 mark TOG_KEYMAP_KEYS = -2,
112 ec2a9698 2022-09-15 mark TOG_KEYMAP_GLOBAL,
113 ec2a9698 2022-09-15 mark TOG_KEYMAP_DIFF,
114 ec2a9698 2022-09-15 mark TOG_KEYMAP_LOG,
115 ec2a9698 2022-09-15 mark TOG_KEYMAP_BLAME,
116 ec2a9698 2022-09-15 mark TOG_KEYMAP_TREE,
117 ec2a9698 2022-09-15 mark TOG_KEYMAP_REF,
118 ec2a9698 2022-09-15 mark TOG_KEYMAP_HELP
119 d6b05b5b 2018-08-04 stsp };
120 c3e9aa98 2019-05-13 jcs
121 9b058f45 2022-06-30 mark enum tog_view_mode {
122 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_NONE,
123 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_VERT,
124 9b058f45 2022-06-30 mark TOG_VIEW_SPLIT_HRZN
125 9b058f45 2022-06-30 mark };
126 9b058f45 2022-06-30 mark
127 9b058f45 2022-06-30 mark #define HSPLIT_SCALE 0.3 /* default horizontal split scale */
128 9b058f45 2022-06-30 mark
129 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
130 d6b05b5b 2018-08-04 stsp
131 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
132 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
133 ba4f502b 2018-08-04 stsp struct got_object_id *id;
134 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
135 1a76625f 2018-10-22 stsp int idx;
136 ba4f502b 2018-08-04 stsp };
137 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
138 ba4f502b 2018-08-04 stsp struct commit_queue {
139 ba4f502b 2018-08-04 stsp int ncommits;
140 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
141 6d17833f 2019-11-08 stsp };
142 6d17833f 2019-11-08 stsp
143 f26dddb7 2019-11-08 stsp struct tog_color {
144 dbdddfee 2021-06-23 naddy STAILQ_ENTRY(tog_color) entry;
145 6d17833f 2019-11-08 stsp regex_t regex;
146 6d17833f 2019-11-08 stsp short colorpair;
147 15a087fe 2019-02-21 stsp };
148 dbdddfee 2021-06-23 naddy STAILQ_HEAD(tog_colors, tog_color);
149 11b20872 2019-11-08 stsp
150 d9dff0e5 2020-12-26 stsp static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
151 51a10b52 2020-12-26 stsp static struct got_reflist_object_id_map *tog_refs_idmap;
152 917d79a7 2022-07-01 stsp static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
153 cc488aa7 2022-01-23 stsp
154 cc488aa7 2022-01-23 stsp static const struct got_error *
155 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
156 cc488aa7 2022-01-23 stsp struct got_reference* re2)
157 cc488aa7 2022-01-23 stsp {
158 cc488aa7 2022-01-23 stsp const char *name1 = got_ref_get_name(re1);
159 cc488aa7 2022-01-23 stsp const char *name2 = got_ref_get_name(re2);
160 cc488aa7 2022-01-23 stsp int isbackup1, isbackup2;
161 cc488aa7 2022-01-23 stsp
162 cc488aa7 2022-01-23 stsp /* Sort backup refs towards the bottom of the list. */
163 cc488aa7 2022-01-23 stsp isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
164 cc488aa7 2022-01-23 stsp isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
165 cc488aa7 2022-01-23 stsp if (!isbackup1 && isbackup2) {
166 cc488aa7 2022-01-23 stsp *cmp = -1;
167 cc488aa7 2022-01-23 stsp return NULL;
168 cc488aa7 2022-01-23 stsp } else if (isbackup1 && !isbackup2) {
169 cc488aa7 2022-01-23 stsp *cmp = 1;
170 cc488aa7 2022-01-23 stsp return NULL;
171 cc488aa7 2022-01-23 stsp }
172 cc488aa7 2022-01-23 stsp
173 cc488aa7 2022-01-23 stsp *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
174 cc488aa7 2022-01-23 stsp return NULL;
175 cc488aa7 2022-01-23 stsp }
176 51a10b52 2020-12-26 stsp
177 11b20872 2019-11-08 stsp static const struct got_error *
178 7f66531d 2021-11-16 stsp tog_load_refs(struct got_repository *repo, int sort_by_date)
179 51a10b52 2020-12-26 stsp {
180 51a10b52 2020-12-26 stsp const struct got_error *err;
181 51a10b52 2020-12-26 stsp
182 7f66531d 2021-11-16 stsp err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
183 cc488aa7 2022-01-23 stsp got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
184 7f66531d 2021-11-16 stsp repo);
185 51a10b52 2020-12-26 stsp if (err)
186 51a10b52 2020-12-26 stsp return err;
187 51a10b52 2020-12-26 stsp
188 51a10b52 2020-12-26 stsp return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
189 51a10b52 2020-12-26 stsp repo);
190 51a10b52 2020-12-26 stsp }
191 51a10b52 2020-12-26 stsp
192 51a10b52 2020-12-26 stsp static void
193 51a10b52 2020-12-26 stsp tog_free_refs(void)
194 51a10b52 2020-12-26 stsp {
195 51a10b52 2020-12-26 stsp if (tog_refs_idmap) {
196 f193b038 2020-12-26 stsp got_reflist_object_id_map_free(tog_refs_idmap);
197 51a10b52 2020-12-26 stsp tog_refs_idmap = NULL;
198 51a10b52 2020-12-26 stsp }
199 51a10b52 2020-12-26 stsp got_ref_list_free(&tog_refs);
200 51a10b52 2020-12-26 stsp }
201 51a10b52 2020-12-26 stsp
202 51a10b52 2020-12-26 stsp static const struct got_error *
203 11b20872 2019-11-08 stsp add_color(struct tog_colors *colors, const char *pattern,
204 11b20872 2019-11-08 stsp int idx, short color)
205 11b20872 2019-11-08 stsp {
206 11b20872 2019-11-08 stsp const struct got_error *err = NULL;
207 11b20872 2019-11-08 stsp struct tog_color *tc;
208 11b20872 2019-11-08 stsp int regerr = 0;
209 11b20872 2019-11-08 stsp
210 11b20872 2019-11-08 stsp if (idx < 1 || idx > COLOR_PAIRS - 1)
211 11b20872 2019-11-08 stsp return NULL;
212 11b20872 2019-11-08 stsp
213 11b20872 2019-11-08 stsp init_pair(idx, color, -1);
214 11b20872 2019-11-08 stsp
215 11b20872 2019-11-08 stsp tc = calloc(1, sizeof(*tc));
216 11b20872 2019-11-08 stsp if (tc == NULL)
217 11b20872 2019-11-08 stsp return got_error_from_errno("calloc");
218 11b20872 2019-11-08 stsp regerr = regcomp(&tc->regex, pattern,
219 11b20872 2019-11-08 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
220 11b20872 2019-11-08 stsp if (regerr) {
221 11b20872 2019-11-08 stsp static char regerr_msg[512];
222 11b20872 2019-11-08 stsp static char err_msg[512];
223 11b20872 2019-11-08 stsp regerror(regerr, &tc->regex, regerr_msg,
224 11b20872 2019-11-08 stsp sizeof(regerr_msg));
225 11b20872 2019-11-08 stsp snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
226 11b20872 2019-11-08 stsp regerr_msg);
227 11b20872 2019-11-08 stsp err = got_error_msg(GOT_ERR_REGEX, err_msg);
228 11b20872 2019-11-08 stsp free(tc);
229 11b20872 2019-11-08 stsp return err;
230 11b20872 2019-11-08 stsp }
231 11b20872 2019-11-08 stsp tc->colorpair = idx;
232 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(colors, tc, entry);
233 11b20872 2019-11-08 stsp return NULL;
234 11b20872 2019-11-08 stsp }
235 11b20872 2019-11-08 stsp
236 11b20872 2019-11-08 stsp static void
237 11b20872 2019-11-08 stsp free_colors(struct tog_colors *colors)
238 11b20872 2019-11-08 stsp {
239 11b20872 2019-11-08 stsp struct tog_color *tc;
240 11b20872 2019-11-08 stsp
241 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(colors)) {
242 dbdddfee 2021-06-23 naddy tc = STAILQ_FIRST(colors);
243 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(colors, entry);
244 11b20872 2019-11-08 stsp regfree(&tc->regex);
245 11b20872 2019-11-08 stsp free(tc);
246 11b20872 2019-11-08 stsp }
247 11b20872 2019-11-08 stsp }
248 11b20872 2019-11-08 stsp
249 336075a4 2022-06-25 op static struct tog_color *
250 11b20872 2019-11-08 stsp get_color(struct tog_colors *colors, int colorpair)
251 11b20872 2019-11-08 stsp {
252 11b20872 2019-11-08 stsp struct tog_color *tc = NULL;
253 11b20872 2019-11-08 stsp
254 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
255 11b20872 2019-11-08 stsp if (tc->colorpair == colorpair)
256 11b20872 2019-11-08 stsp return tc;
257 11b20872 2019-11-08 stsp }
258 11b20872 2019-11-08 stsp
259 11b20872 2019-11-08 stsp return NULL;
260 11b20872 2019-11-08 stsp }
261 11b20872 2019-11-08 stsp
262 11b20872 2019-11-08 stsp static int
263 11b20872 2019-11-08 stsp default_color_value(const char *envvar)
264 11b20872 2019-11-08 stsp {
265 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
266 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
267 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
268 11b20872 2019-11-08 stsp return COLOR_CYAN;
269 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
270 11b20872 2019-11-08 stsp return COLOR_YELLOW;
271 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
272 11b20872 2019-11-08 stsp return COLOR_GREEN;
273 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
274 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
275 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
276 91b8c405 2020-01-25 stsp return COLOR_MAGENTA;
277 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
278 91b8c405 2020-01-25 stsp return COLOR_CYAN;
279 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
280 11b20872 2019-11-08 stsp return COLOR_GREEN;
281 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
282 11b20872 2019-11-08 stsp return COLOR_GREEN;
283 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
284 11b20872 2019-11-08 stsp return COLOR_CYAN;
285 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
286 11b20872 2019-11-08 stsp return COLOR_YELLOW;
287 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
288 6458efa5 2020-11-24 stsp return COLOR_GREEN;
289 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
290 6458efa5 2020-11-24 stsp return COLOR_MAGENTA;
291 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
292 6458efa5 2020-11-24 stsp return COLOR_YELLOW;
293 cc488aa7 2022-01-23 stsp if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
294 cc488aa7 2022-01-23 stsp return COLOR_CYAN;
295 11b20872 2019-11-08 stsp
296 11b20872 2019-11-08 stsp return -1;
297 11b20872 2019-11-08 stsp }
298 11b20872 2019-11-08 stsp
299 11b20872 2019-11-08 stsp static int
300 11b20872 2019-11-08 stsp get_color_value(const char *envvar)
301 11b20872 2019-11-08 stsp {
302 11b20872 2019-11-08 stsp const char *val = getenv(envvar);
303 11b20872 2019-11-08 stsp
304 11b20872 2019-11-08 stsp if (val == NULL)
305 11b20872 2019-11-08 stsp return default_color_value(envvar);
306 15a087fe 2019-02-21 stsp
307 11b20872 2019-11-08 stsp if (strcasecmp(val, "black") == 0)
308 11b20872 2019-11-08 stsp return COLOR_BLACK;
309 11b20872 2019-11-08 stsp if (strcasecmp(val, "red") == 0)
310 11b20872 2019-11-08 stsp return COLOR_RED;
311 11b20872 2019-11-08 stsp if (strcasecmp(val, "green") == 0)
312 11b20872 2019-11-08 stsp return COLOR_GREEN;
313 11b20872 2019-11-08 stsp if (strcasecmp(val, "yellow") == 0)
314 11b20872 2019-11-08 stsp return COLOR_YELLOW;
315 11b20872 2019-11-08 stsp if (strcasecmp(val, "blue") == 0)
316 11b20872 2019-11-08 stsp return COLOR_BLUE;
317 11b20872 2019-11-08 stsp if (strcasecmp(val, "magenta") == 0)
318 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
319 11b20872 2019-11-08 stsp if (strcasecmp(val, "cyan") == 0)
320 11b20872 2019-11-08 stsp return COLOR_CYAN;
321 11b20872 2019-11-08 stsp if (strcasecmp(val, "white") == 0)
322 11b20872 2019-11-08 stsp return COLOR_WHITE;
323 11b20872 2019-11-08 stsp if (strcasecmp(val, "default") == 0)
324 11b20872 2019-11-08 stsp return -1;
325 11b20872 2019-11-08 stsp
326 11b20872 2019-11-08 stsp return default_color_value(envvar);
327 11b20872 2019-11-08 stsp }
328 11b20872 2019-11-08 stsp
329 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
330 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
331 3dbaef42 2020-11-24 stsp const char *label1, *label2;
332 b72706c3 2022-06-01 stsp FILE *f, *f1, *f2;
333 f9d37699 2022-06-28 stsp int fd1, fd2;
334 c7d5c43c 2022-08-04 mark int lineno;
335 15a087fe 2019-02-21 stsp int first_displayed_line;
336 15a087fe 2019-02-21 stsp int last_displayed_line;
337 15a087fe 2019-02-21 stsp int eof;
338 15a087fe 2019-02-21 stsp int diff_context;
339 3dbaef42 2020-11-24 stsp int ignore_whitespace;
340 64453f7e 2020-11-21 stsp int force_text_diff;
341 15a087fe 2019-02-21 stsp struct got_repository *repo;
342 c7d5c43c 2022-08-04 mark struct got_diff_line *lines;
343 fe621944 2020-11-10 stsp size_t nlines;
344 f44b1f58 2020-02-02 tracey int matched_line;
345 f44b1f58 2020-02-02 tracey int selected_line;
346 15a087fe 2019-02-21 stsp
347 c0f61fa4 2022-07-11 mark /* passed from log or blame view; may be NULL */
348 c0f61fa4 2022-07-11 mark struct tog_view *parent_view;
349 b01e7d3b 2018-08-04 stsp };
350 b01e7d3b 2018-08-04 stsp
351 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
352 5629093a 2022-07-11 stsp static volatile sig_atomic_t tog_thread_error;
353 1a76625f 2018-10-22 stsp
354 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
355 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
356 7c1452c1 2020-03-26 stsp pthread_cond_t commit_loaded;
357 1a76625f 2018-10-22 stsp int commits_needed;
358 fb280deb 2021-08-30 stsp int load_all;
359 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
360 568eae95 2022-09-11 mark struct commit_queue *real_commits;
361 1a76625f 2018-10-22 stsp const char *in_repo_path;
362 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
363 1a76625f 2018-10-22 stsp struct got_repository *repo;
364 74467cc8 2022-06-15 stsp int *pack_fds;
365 1a76625f 2018-10-22 stsp int log_complete;
366 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
367 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
368 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
369 13add988 2019-10-15 stsp int *searching;
370 13add988 2019-10-15 stsp int *search_next_done;
371 13add988 2019-10-15 stsp regex_t *regex;
372 568eae95 2022-09-11 mark int *limiting;
373 568eae95 2022-09-11 mark int limit_match;
374 568eae95 2022-09-11 mark regex_t *limit_regex;
375 568eae95 2022-09-11 mark struct commit_queue *limit_commits;
376 1a76625f 2018-10-22 stsp };
377 1a76625f 2018-10-22 stsp
378 1a76625f 2018-10-22 stsp struct tog_log_view_state {
379 568eae95 2022-09-11 mark struct commit_queue *commits;
380 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
381 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
382 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
383 568eae95 2022-09-11 mark struct commit_queue real_commits;
384 b01e7d3b 2018-08-04 stsp int selected;
385 b01e7d3b 2018-08-04 stsp char *in_repo_path;
386 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
387 b672a97a 2020-01-27 stsp int log_branches;
388 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
389 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
390 1a76625f 2018-10-22 stsp sig_atomic_t quit;
391 1a76625f 2018-10-22 stsp pthread_t thread;
392 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
393 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
394 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
395 11b20872 2019-11-08 stsp struct tog_colors colors;
396 10aab77f 2022-07-19 op int use_committer;
397 568eae95 2022-09-11 mark int limit_view;
398 568eae95 2022-09-11 mark regex_t limit_regex;
399 568eae95 2022-09-11 mark struct commit_queue limit_commits;
400 ba4f502b 2018-08-04 stsp };
401 11b20872 2019-11-08 stsp
402 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_MINUS 1
403 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_PLUS 2
404 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_CHUNK_HEADER 3
405 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_META 4
406 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SUBMODULE 5
407 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SYMLINK 6
408 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_DIRECTORY 7
409 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_EXECUTABLE 8
410 11b20872 2019-11-08 stsp #define TOG_COLOR_COMMIT 9
411 11b20872 2019-11-08 stsp #define TOG_COLOR_AUTHOR 10
412 bf30f154 2020-12-07 naddy #define TOG_COLOR_DATE 11
413 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_HEADS 12
414 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_TAGS 13
415 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_REMOTES 14
416 cc488aa7 2022-01-23 stsp #define TOG_COLOR_REFS_BACKUP 15
417 ba4f502b 2018-08-04 stsp
418 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
419 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
420 e9424729 2018-08-04 stsp int nlines;
421 e9424729 2018-08-04 stsp
422 e9424729 2018-08-04 stsp struct tog_view *view;
423 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
424 e9424729 2018-08-04 stsp int *quit;
425 e9424729 2018-08-04 stsp };
426 e9424729 2018-08-04 stsp
427 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
428 e9424729 2018-08-04 stsp const char *path;
429 e9424729 2018-08-04 stsp struct got_repository *repo;
430 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
431 e9424729 2018-08-04 stsp int *complete;
432 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
433 fc06ba56 2019-08-22 stsp void *cancel_arg;
434 e9424729 2018-08-04 stsp };
435 e9424729 2018-08-04 stsp
436 e9424729 2018-08-04 stsp struct tog_blame {
437 e9424729 2018-08-04 stsp FILE *f;
438 be659d10 2020-11-18 stsp off_t filesize;
439 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
440 6fcac457 2018-11-19 stsp int nlines;
441 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
442 e9424729 2018-08-04 stsp pthread_t thread;
443 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
444 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
445 e9424729 2018-08-04 stsp const char *path;
446 0ae84acc 2022-06-15 tracey int *pack_fds;
447 e9424729 2018-08-04 stsp };
448 e9424729 2018-08-04 stsp
449 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
450 7cbe629d 2018-08-04 stsp int first_displayed_line;
451 7cbe629d 2018-08-04 stsp int last_displayed_line;
452 7cbe629d 2018-08-04 stsp int selected_line;
453 c0f61fa4 2022-07-11 mark int last_diffed_line;
454 7cbe629d 2018-08-04 stsp int blame_complete;
455 e5a0f69f 2018-08-18 stsp int eof;
456 e5a0f69f 2018-08-18 stsp int done;
457 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
458 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
459 e5a0f69f 2018-08-18 stsp char *path;
460 7cbe629d 2018-08-04 stsp struct got_repository *repo;
461 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
462 136e2bd4 2022-07-23 mark struct got_object_id *id_to_log;
463 e9424729 2018-08-04 stsp struct tog_blame blame;
464 6c4c42e0 2019-06-24 stsp int matched_line;
465 11b20872 2019-11-08 stsp struct tog_colors colors;
466 ad80ab7b 2018-08-04 stsp };
467 ad80ab7b 2018-08-04 stsp
468 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
469 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
470 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
471 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
472 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
473 ad80ab7b 2018-08-04 stsp int selected;
474 ad80ab7b 2018-08-04 stsp };
475 ad80ab7b 2018-08-04 stsp
476 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
477 ad80ab7b 2018-08-04 stsp
478 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
479 ad80ab7b 2018-08-04 stsp char *tree_label;
480 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id;/* commit which this tree belongs to */
481 bc573f3b 2021-07-10 stsp struct got_tree_object *root; /* the commit's root tree entry */
482 bc573f3b 2021-07-10 stsp struct got_tree_object *tree; /* currently displayed (sub-)tree */
483 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
484 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
485 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
486 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
487 bc573f3b 2021-07-10 stsp struct tog_parent_trees parents; /* parent trees of current sub-tree */
488 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
489 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
490 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
491 6458efa5 2020-11-24 stsp struct tog_colors colors;
492 6458efa5 2020-11-24 stsp };
493 6458efa5 2020-11-24 stsp
494 6458efa5 2020-11-24 stsp struct tog_reflist_entry {
495 6458efa5 2020-11-24 stsp TAILQ_ENTRY(tog_reflist_entry) entry;
496 6458efa5 2020-11-24 stsp struct got_reference *ref;
497 6458efa5 2020-11-24 stsp int idx;
498 6458efa5 2020-11-24 stsp };
499 6458efa5 2020-11-24 stsp
500 6458efa5 2020-11-24 stsp TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
501 6458efa5 2020-11-24 stsp
502 6458efa5 2020-11-24 stsp struct tog_ref_view_state {
503 dae613fa 2020-12-26 stsp struct tog_reflist_head refs;
504 6458efa5 2020-11-24 stsp struct tog_reflist_entry *first_displayed_entry;
505 6458efa5 2020-11-24 stsp struct tog_reflist_entry *last_displayed_entry;
506 6458efa5 2020-11-24 stsp struct tog_reflist_entry *selected_entry;
507 b4996bee 2022-06-16 stsp int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
508 6458efa5 2020-11-24 stsp struct got_repository *repo;
509 6458efa5 2020-11-24 stsp struct tog_reflist_entry *matched_entry;
510 bddb1296 2019-11-08 stsp struct tog_colors colors;
511 ec2a9698 2022-09-15 mark };
512 ec2a9698 2022-09-15 mark
513 ec2a9698 2022-09-15 mark struct tog_help_view_state {
514 ec2a9698 2022-09-15 mark FILE *f;
515 ec2a9698 2022-09-15 mark off_t *line_offsets;
516 ec2a9698 2022-09-15 mark size_t nlines;
517 ec2a9698 2022-09-15 mark int lineno;
518 ec2a9698 2022-09-15 mark int first_displayed_line;
519 ec2a9698 2022-09-15 mark int last_displayed_line;
520 ec2a9698 2022-09-15 mark int eof;
521 ec2a9698 2022-09-15 mark int matched_line;
522 ec2a9698 2022-09-15 mark int selected_line;
523 ec2a9698 2022-09-15 mark int all;
524 ec2a9698 2022-09-15 mark enum tog_keymap_type type;
525 ec2a9698 2022-09-15 mark };
526 ec2a9698 2022-09-15 mark
527 ec2a9698 2022-09-15 mark #define GENERATE_HELP \
528 ec2a9698 2022-09-15 mark KEYMAP_("Global", TOG_KEYMAP_GLOBAL), \
529 ec2a9698 2022-09-15 mark KEY_("H F1", "Open view-specific help (double tap for all help)"), \
530 ec2a9698 2022-09-15 mark KEY_("k C-p Up", "Move cursor or page up one line"), \
531 ec2a9698 2022-09-15 mark KEY_("j C-n Down", "Move cursor or page down one line"), \
532 ec2a9698 2022-09-15 mark KEY_("C-b b PgUp", "Scroll the view up one page"), \
533 ec2a9698 2022-09-15 mark KEY_("C-f f PgDn Space", "Scroll the view down one page"), \
534 ec2a9698 2022-09-15 mark KEY_("C-u u", "Scroll the view up one half page"), \
535 ec2a9698 2022-09-15 mark KEY_("C-d d", "Scroll the view down one half page"), \
536 ec2a9698 2022-09-15 mark KEY_("g Home", "Go to line N (default: first line)"), \
537 ec2a9698 2022-09-15 mark KEY_("G End", "Go to line N (default: last line)"), \
538 ec2a9698 2022-09-15 mark KEY_("l Right", "Scroll the view right"), \
539 ec2a9698 2022-09-15 mark KEY_("h Left", "Scroll the view left"), \
540 ec2a9698 2022-09-15 mark KEY_("$", "Scroll view to the rightmost position"), \
541 ec2a9698 2022-09-15 mark KEY_("0", "Scroll view to the leftmost position"), \
542 ec2a9698 2022-09-15 mark KEY_("-", "Decrease size of the focussed split"), \
543 ec2a9698 2022-09-15 mark KEY_("+", "Increase size of the focussed split"), \
544 ec2a9698 2022-09-15 mark KEY_("Tab", "Switch focus between views"), \
545 ec2a9698 2022-09-15 mark KEY_("F", "Toggle fullscreen mode"), \
546 ec2a9698 2022-09-15 mark KEY_("/", "Open prompt to enter search term"), \
547 ec2a9698 2022-09-15 mark KEY_("n", "Find next line/token matching the current search term"), \
548 ec2a9698 2022-09-15 mark KEY_("N", "Find previous line/token matching the current search term"),\
549 16a2d4f0 2022-09-19 stsp KEY_("q", "Quit the focussed view; Quit help screen"), \
550 ec2a9698 2022-09-15 mark KEY_("Q", "Quit tog"), \
551 ec2a9698 2022-09-15 mark \
552 fd6badaa 2022-09-23 stsp KEYMAP_("Log view", TOG_KEYMAP_LOG), \
553 ec2a9698 2022-09-15 mark KEY_("< ,", "Move cursor up one commit"), \
554 ec2a9698 2022-09-15 mark KEY_("> .", "Move cursor down one commit"), \
555 ec2a9698 2022-09-15 mark KEY_("Enter", "Open diff view of the selected commit"), \
556 ec2a9698 2022-09-15 mark KEY_("B", "Reload the log view and toggle display of merged commits"), \
557 ec2a9698 2022-09-15 mark KEY_("R", "Open ref view of all repository references"), \
558 ec2a9698 2022-09-15 mark KEY_("T", "Display tree view of the repository from the selected" \
559 ec2a9698 2022-09-15 mark " commit"), \
560 ec2a9698 2022-09-15 mark KEY_("@", "Toggle between displaying author and committer name"), \
561 ec2a9698 2022-09-15 mark KEY_("&", "Open prompt to enter term to limit commits displayed"), \
562 ec2a9698 2022-09-15 mark KEY_("C-g Backspace", "Cancel current search or log operation"), \
563 ec2a9698 2022-09-15 mark KEY_("C-l", "Reload the log view with new commits in the repository"), \
564 ec2a9698 2022-09-15 mark \
565 fd6badaa 2022-09-23 stsp KEYMAP_("Diff view", TOG_KEYMAP_DIFF), \
566 ec2a9698 2022-09-15 mark KEY_("K < ,", "Display diff of next line in the file/log entry"), \
567 ec2a9698 2022-09-15 mark KEY_("J > .", "Display diff of previous line in the file/log entry"), \
568 ec2a9698 2022-09-15 mark KEY_("A", "Toggle between Myers and Patience diff algorithm"), \
569 ec2a9698 2022-09-15 mark KEY_("a", "Toggle treatment of file as ASCII irrespective of binary" \
570 ec2a9698 2022-09-15 mark " data"), \
571 ec2a9698 2022-09-15 mark KEY_("(", "Go to the previous file in the diff"), \
572 ec2a9698 2022-09-15 mark KEY_(")", "Go to the next file in the diff"), \
573 ec2a9698 2022-09-15 mark KEY_("{", "Go to the previous hunk in the diff"), \
574 ec2a9698 2022-09-15 mark KEY_("}", "Go to the next hunk in the diff"), \
575 ec2a9698 2022-09-15 mark KEY_("[", "Decrease the number of context lines"), \
576 ec2a9698 2022-09-15 mark KEY_("]", "Increase the number of context lines"), \
577 ec2a9698 2022-09-15 mark KEY_("w", "Toggle ignore whitespace-only changes in the diff"), \
578 ec2a9698 2022-09-15 mark \
579 fd6badaa 2022-09-23 stsp KEYMAP_("Blame view", TOG_KEYMAP_BLAME), \
580 ec2a9698 2022-09-15 mark KEY_("Enter", "Display diff view of the selected line's commit"), \
581 ec2a9698 2022-09-15 mark KEY_("A", "Toggle diff algorithm between Myers and Patience"), \
582 ec2a9698 2022-09-15 mark KEY_("L", "Open log view for the currently selected annotated line"), \
583 ec2a9698 2022-09-15 mark KEY_("C", "Reload view with the previously blamed commit"), \
584 ec2a9698 2022-09-15 mark KEY_("c", "Reload view with the version of the file found in the" \
585 ec2a9698 2022-09-15 mark " selected line's commit"), \
586 ec2a9698 2022-09-15 mark KEY_("p", "Reload view with the version of the file found in the" \
587 ec2a9698 2022-09-15 mark " selected line's parent commit"), \
588 ec2a9698 2022-09-15 mark \
589 fd6badaa 2022-09-23 stsp KEYMAP_("Tree view", TOG_KEYMAP_TREE), \
590 ec2a9698 2022-09-15 mark KEY_("Enter", "Enter selected directory or open blame view of the" \
591 ec2a9698 2022-09-15 mark " selected file"), \
592 ec2a9698 2022-09-15 mark KEY_("L", "Open log view for the selected entry"), \
593 ec2a9698 2022-09-15 mark KEY_("R", "Open ref view of all repository references"), \
594 ec2a9698 2022-09-15 mark KEY_("i", "Show object IDs for all tree entries"), \
595 ec2a9698 2022-09-15 mark KEY_("Backspace", "Return to the parent directory"), \
596 ec2a9698 2022-09-15 mark \
597 fd6badaa 2022-09-23 stsp KEYMAP_("Ref view", TOG_KEYMAP_REF), \
598 ec2a9698 2022-09-15 mark KEY_("Enter", "Display log view of the selected reference"), \
599 ec2a9698 2022-09-15 mark KEY_("T", "Display tree view of the selected reference"), \
600 ec2a9698 2022-09-15 mark KEY_("i", "Toggle display of IDs for all non-symbolic references"), \
601 ec2a9698 2022-09-15 mark KEY_("m", "Toggle display of last modified date for each reference"), \
602 ec2a9698 2022-09-15 mark KEY_("o", "Toggle reference sort order (name -> timestamp)"), \
603 ec2a9698 2022-09-15 mark KEY_("C-l", "Reload view with all repository references")
604 ec2a9698 2022-09-15 mark
605 ec2a9698 2022-09-15 mark struct tog_key_map {
606 ec2a9698 2022-09-15 mark const char *keys;
607 ec2a9698 2022-09-15 mark const char *info;
608 ec2a9698 2022-09-15 mark enum tog_keymap_type type;
609 7cbe629d 2018-08-04 stsp };
610 7cbe629d 2018-08-04 stsp
611 669b5ffa 2018-10-07 stsp /*
612 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
613 669b5ffa 2018-10-07 stsp *
614 e78dc838 2020-12-04 stsp * The 'Tab' key switches focus between a parent view and its child view.
615 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
616 669b5ffa 2018-10-07 stsp * there is enough screen estate.
617 669b5ffa 2018-10-07 stsp *
618 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
619 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
620 669b5ffa 2018-10-07 stsp *
621 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
622 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
623 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
624 669b5ffa 2018-10-07 stsp *
625 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
626 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
627 669b5ffa 2018-10-07 stsp */
628 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
629 669b5ffa 2018-10-07 stsp
630 cc3c9aac 2018-08-01 stsp struct tog_view {
631 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
632 26ed57b2 2018-05-19 stsp WINDOW *window;
633 26ed57b2 2018-05-19 stsp PANEL *panel;
634 9b058f45 2022-06-30 mark int nlines, ncols, begin_y, begin_x; /* based on split height/width */
635 3c1dfe12 2022-07-08 mark int resized_y, resized_x; /* begin_y/x based on user resizing */
636 145b6838 2022-06-16 stsp int maxx, x; /* max column and current start column */
637 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
638 9b058f45 2022-06-30 mark int nscrolled, offset; /* lines scrolled and hsplit line offset */
639 94b80cfa 2022-08-01 mark int gline, hiline; /* navigate to and highlight this nG line */
640 640cd7ff 2022-06-22 mark int ch, count; /* current keymap and count prefix */
641 571ccd73 2022-07-19 mark int resized; /* set when in a resize event */
642 e78dc838 2020-12-04 stsp int focussed; /* Only set on one parent or child view at a time. */
643 9970f7fc 2020-12-03 stsp int dying;
644 669b5ffa 2018-10-07 stsp struct tog_view *parent;
645 669b5ffa 2018-10-07 stsp struct tog_view *child;
646 5dc9f4bc 2018-08-04 stsp
647 e78dc838 2020-12-04 stsp /*
648 e78dc838 2020-12-04 stsp * This flag is initially set on parent views when a new child view
649 e78dc838 2020-12-04 stsp * is created. It gets toggled when the 'Tab' key switches focus
650 e78dc838 2020-12-04 stsp * between parent and child.
651 e78dc838 2020-12-04 stsp * The flag indicates whether focus should be passed on to our child
652 e78dc838 2020-12-04 stsp * view if this parent view gets picked for focus after another parent
653 e78dc838 2020-12-04 stsp * view was closed. This prevents child views from losing focus in such
654 e78dc838 2020-12-04 stsp * situations.
655 e78dc838 2020-12-04 stsp */
656 e78dc838 2020-12-04 stsp int focus_child;
657 e78dc838 2020-12-04 stsp
658 9b058f45 2022-06-30 mark enum tog_view_mode mode;
659 5dc9f4bc 2018-08-04 stsp /* type-specific state */
660 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
661 5dc9f4bc 2018-08-04 stsp union {
662 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
663 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
664 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
665 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
666 6458efa5 2020-11-24 stsp struct tog_ref_view_state ref;
667 ec2a9698 2022-09-15 mark struct tog_help_view_state help;
668 5dc9f4bc 2018-08-04 stsp } state;
669 e5a0f69f 2018-08-18 stsp
670 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
671 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
672 e78dc838 2020-12-04 stsp struct tog_view *, int);
673 917d79a7 2022-07-01 stsp const struct got_error *(*reset)(struct tog_view *);
674 571ccd73 2022-07-19 mark const struct got_error *(*resize)(struct tog_view *, int);
675 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
676 60493ae3 2019-06-20 stsp
677 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
678 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
679 eaf2c13e 2022-09-17 mark void (*search_setup)(struct tog_view *, FILE **, off_t **, size_t *,
680 eaf2c13e 2022-09-17 mark int **, int **, int **, int **);
681 c0c4acc8 2021-01-24 stsp int search_started;
682 60493ae3 2019-06-20 stsp int searching;
683 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
684 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
685 60493ae3 2019-06-20 stsp int search_next_done;
686 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_HAVE_MORE 1
687 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_NO_MORE 2
688 f9967bca 2020-03-27 stsp #define TOG_SEARCH_HAVE_NONE 3
689 1803e47f 2019-06-22 stsp regex_t regex;
690 41605754 2020-11-12 stsp regmatch_t regmatch;
691 cc3c9aac 2018-08-01 stsp };
692 cd0acaa7 2018-05-20 stsp
693 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
694 3dbaef42 2020-11-24 stsp struct got_object_id *, struct got_object_id *,
695 3dbaef42 2020-11-24 stsp const char *, const char *, int, int, int, struct tog_view *,
696 78756c87 2020-11-24 stsp struct got_repository *);
697 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
698 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
699 e78dc838 2020-12-04 stsp struct tog_view *, int);
700 917d79a7 2022-07-01 stsp static const struct got_error *reset_diff_view(struct tog_view *);
701 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
702 f44b1f58 2020-02-02 tracey static const struct got_error *search_start_diff_view(struct tog_view *);
703 eaf2c13e 2022-09-17 mark static void search_setup_diff_view(struct tog_view *, FILE **, off_t **,
704 eaf2c13e 2022-09-17 mark size_t *, int **, int **, int **, int **);
705 ec2a9698 2022-09-15 mark static const struct got_error *search_next_view_match(struct tog_view *);
706 e5a0f69f 2018-08-18 stsp
707 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
708 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *,
709 78756c87 2020-11-24 stsp const char *, const char *, int);
710 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
711 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
712 e78dc838 2020-12-04 stsp struct tog_view *, int);
713 571ccd73 2022-07-19 mark static const struct got_error *resize_log_view(struct tog_view *, int);
714 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
715 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
716 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
717 e5a0f69f 2018-08-18 stsp
718 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
719 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *);
720 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
721 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
722 e78dc838 2020-12-04 stsp struct tog_view *, int);
723 917d79a7 2022-07-01 stsp static const struct got_error *reset_blame_view(struct tog_view *);
724 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
725 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
726 eaf2c13e 2022-09-17 mark static void search_setup_blame_view(struct tog_view *, FILE **, off_t **,
727 eaf2c13e 2022-09-17 mark size_t *, int **, int **, int **, int **);
728 e5a0f69f 2018-08-18 stsp
729 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
730 bc573f3b 2021-07-10 stsp struct got_object_id *, const char *, struct got_repository *);
731 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
732 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
733 e78dc838 2020-12-04 stsp struct tog_view *, int);
734 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
735 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
736 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
737 6458efa5 2020-11-24 stsp
738 6458efa5 2020-11-24 stsp static const struct got_error *open_ref_view(struct tog_view *,
739 6458efa5 2020-11-24 stsp struct got_repository *);
740 6458efa5 2020-11-24 stsp static const struct got_error *show_ref_view(struct tog_view *);
741 6458efa5 2020-11-24 stsp static const struct got_error *input_ref_view(struct tog_view **,
742 e78dc838 2020-12-04 stsp struct tog_view *, int);
743 6458efa5 2020-11-24 stsp static const struct got_error *close_ref_view(struct tog_view *);
744 6458efa5 2020-11-24 stsp static const struct got_error *search_start_ref_view(struct tog_view *);
745 6458efa5 2020-11-24 stsp static const struct got_error *search_next_ref_view(struct tog_view *);
746 eaf2c13e 2022-09-17 mark
747 eaf2c13e 2022-09-17 mark static const struct got_error *open_help_view(struct tog_view *,
748 eaf2c13e 2022-09-17 mark struct tog_view *);
749 eaf2c13e 2022-09-17 mark static const struct got_error *show_help_view(struct tog_view *);
750 eaf2c13e 2022-09-17 mark static const struct got_error *input_help_view(struct tog_view **,
751 eaf2c13e 2022-09-17 mark struct tog_view *, int);
752 eaf2c13e 2022-09-17 mark static const struct got_error *reset_help_view(struct tog_view *);
753 eaf2c13e 2022-09-17 mark static const struct got_error* close_help_view(struct tog_view *);
754 eaf2c13e 2022-09-17 mark static const struct got_error *search_start_help_view(struct tog_view *);
755 eaf2c13e 2022-09-17 mark static void search_setup_help_view(struct tog_view *, FILE **, off_t **,
756 eaf2c13e 2022-09-17 mark size_t *, int **, int **, int **, int **);
757 25791caa 2018-10-24 stsp
758 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
759 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
760 61266923 2020-01-14 stsp static volatile sig_atomic_t tog_sigcont_received;
761 2497f032 2022-05-31 stsp static volatile sig_atomic_t tog_sigint_received;
762 2497f032 2022-05-31 stsp static volatile sig_atomic_t tog_sigterm_received;
763 25791caa 2018-10-24 stsp
764 25791caa 2018-10-24 stsp static void
765 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
766 25791caa 2018-10-24 stsp {
767 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
768 83baff54 2019-08-12 stsp }
769 83baff54 2019-08-12 stsp
770 83baff54 2019-08-12 stsp static void
771 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
772 83baff54 2019-08-12 stsp {
773 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
774 25791caa 2018-10-24 stsp }
775 26ed57b2 2018-05-19 stsp
776 61266923 2020-01-14 stsp static void
777 61266923 2020-01-14 stsp tog_sigcont(int signo)
778 61266923 2020-01-14 stsp {
779 61266923 2020-01-14 stsp tog_sigcont_received = 1;
780 61266923 2020-01-14 stsp }
781 61266923 2020-01-14 stsp
782 2497f032 2022-05-31 stsp static void
783 2497f032 2022-05-31 stsp tog_sigint(int signo)
784 2497f032 2022-05-31 stsp {
785 2497f032 2022-05-31 stsp tog_sigint_received = 1;
786 2497f032 2022-05-31 stsp }
787 2497f032 2022-05-31 stsp
788 2497f032 2022-05-31 stsp static void
789 2497f032 2022-05-31 stsp tog_sigterm(int signo)
790 2497f032 2022-05-31 stsp {
791 2497f032 2022-05-31 stsp tog_sigterm_received = 1;
792 2497f032 2022-05-31 stsp }
793 2497f032 2022-05-31 stsp
794 2497f032 2022-05-31 stsp static int
795 dd6e31d7 2022-06-17 stsp tog_fatal_signal_received(void)
796 2497f032 2022-05-31 stsp {
797 2497f032 2022-05-31 stsp return (tog_sigpipe_received ||
798 f044c841 2022-10-24 stsp tog_sigint_received || tog_sigterm_received);
799 2497f032 2022-05-31 stsp }
800 2497f032 2022-05-31 stsp
801 e5a0f69f 2018-08-18 stsp static const struct got_error *
802 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
803 ea5e7bb5 2018-08-01 stsp {
804 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *child_err = NULL;
805 e5a0f69f 2018-08-18 stsp
806 669b5ffa 2018-10-07 stsp if (view->child) {
807 5629093a 2022-07-11 stsp child_err = view_close(view->child);
808 669b5ffa 2018-10-07 stsp view->child = NULL;
809 669b5ffa 2018-10-07 stsp }
810 e5a0f69f 2018-08-18 stsp if (view->close)
811 e5a0f69f 2018-08-18 stsp err = view->close(view);
812 ea5e7bb5 2018-08-01 stsp if (view->panel)
813 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
814 ea5e7bb5 2018-08-01 stsp if (view->window)
815 ea5e7bb5 2018-08-01 stsp delwin(view->window);
816 ea5e7bb5 2018-08-01 stsp free(view);
817 5629093a 2022-07-11 stsp return err ? err : child_err;
818 ea5e7bb5 2018-08-01 stsp }
819 ea5e7bb5 2018-08-01 stsp
820 ea5e7bb5 2018-08-01 stsp static struct tog_view *
821 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
822 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
823 ea5e7bb5 2018-08-01 stsp {
824 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
825 ea5e7bb5 2018-08-01 stsp
826 ea5e7bb5 2018-08-01 stsp if (view == NULL)
827 ea5e7bb5 2018-08-01 stsp return NULL;
828 ea5e7bb5 2018-08-01 stsp
829 d6b05b5b 2018-08-04 stsp view->type = type;
830 f7d12f7e 2018-08-01 stsp view->lines = LINES;
831 f7d12f7e 2018-08-01 stsp view->cols = COLS;
832 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
833 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
834 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
835 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
836 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
837 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
838 96a765a8 2018-08-04 stsp view_close(view);
839 ea5e7bb5 2018-08-01 stsp return NULL;
840 ea5e7bb5 2018-08-01 stsp }
841 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
842 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
843 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
844 96a765a8 2018-08-04 stsp view_close(view);
845 ea5e7bb5 2018-08-01 stsp return NULL;
846 ea5e7bb5 2018-08-01 stsp }
847 ea5e7bb5 2018-08-01 stsp
848 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
849 ea5e7bb5 2018-08-01 stsp return view;
850 cdf1ee82 2018-08-01 stsp }
851 cdf1ee82 2018-08-01 stsp
852 0cf4efb1 2018-09-29 stsp static int
853 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
854 0cf4efb1 2018-09-29 stsp {
855 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
856 0cf4efb1 2018-09-29 stsp return 0;
857 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
858 5c60c32a 2018-10-18 stsp }
859 5c60c32a 2018-10-18 stsp
860 9b058f45 2022-06-30 mark /* XXX Stub till we decide what to do. */
861 9b058f45 2022-06-30 mark static int
862 9b058f45 2022-06-30 mark view_split_begin_y(int lines)
863 9b058f45 2022-06-30 mark {
864 9b058f45 2022-06-30 mark return lines * HSPLIT_SCALE;
865 9b058f45 2022-06-30 mark }
866 9b058f45 2022-06-30 mark
867 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
868 5c60c32a 2018-10-18 stsp
869 5c60c32a 2018-10-18 stsp static const struct got_error *
870 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
871 5c60c32a 2018-10-18 stsp {
872 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
873 5c60c32a 2018-10-18 stsp
874 571ccd73 2022-07-19 mark if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
875 3c1dfe12 2022-07-08 mark if (view->resized_y && view->resized_y < view->lines)
876 3c1dfe12 2022-07-08 mark view->begin_y = view->resized_y;
877 3c1dfe12 2022-07-08 mark else
878 3c1dfe12 2022-07-08 mark view->begin_y = view_split_begin_y(view->nlines);
879 9b058f45 2022-06-30 mark view->begin_x = 0;
880 571ccd73 2022-07-19 mark } else if (!view->resized) {
881 3c1dfe12 2022-07-08 mark if (view->resized_x && view->resized_x < view->cols - 1 &&
882 3c1dfe12 2022-07-08 mark view->cols > 119)
883 3c1dfe12 2022-07-08 mark view->begin_x = view->resized_x;
884 3c1dfe12 2022-07-08 mark else
885 3c1dfe12 2022-07-08 mark view->begin_x = view_split_begin_x(0);
886 9b058f45 2022-06-30 mark view->begin_y = 0;
887 9b058f45 2022-06-30 mark }
888 9b058f45 2022-06-30 mark view->nlines = LINES - view->begin_y;
889 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
890 5c60c32a 2018-10-18 stsp view->lines = LINES;
891 5c60c32a 2018-10-18 stsp view->cols = COLS;
892 5c60c32a 2018-10-18 stsp err = view_resize(view);
893 5c60c32a 2018-10-18 stsp if (err)
894 5c60c32a 2018-10-18 stsp return err;
895 5c60c32a 2018-10-18 stsp
896 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
897 9b058f45 2022-06-30 mark view->parent->nlines = view->begin_y;
898 9b058f45 2022-06-30 mark
899 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
900 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
901 5c60c32a 2018-10-18 stsp
902 5c60c32a 2018-10-18 stsp return NULL;
903 5c60c32a 2018-10-18 stsp }
904 5c60c32a 2018-10-18 stsp
905 5c60c32a 2018-10-18 stsp static const struct got_error *
906 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
907 5c60c32a 2018-10-18 stsp {
908 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
909 5c60c32a 2018-10-18 stsp
910 5c60c32a 2018-10-18 stsp view->begin_x = 0;
911 571ccd73 2022-07-19 mark view->begin_y = view->resized ? view->begin_y : 0;
912 571ccd73 2022-07-19 mark view->nlines = view->resized ? view->nlines : LINES;
913 5c60c32a 2018-10-18 stsp view->ncols = COLS;
914 5c60c32a 2018-10-18 stsp view->lines = LINES;
915 5c60c32a 2018-10-18 stsp view->cols = COLS;
916 5c60c32a 2018-10-18 stsp err = view_resize(view);
917 5c60c32a 2018-10-18 stsp if (err)
918 5c60c32a 2018-10-18 stsp return err;
919 5c60c32a 2018-10-18 stsp
920 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
921 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
922 5c60c32a 2018-10-18 stsp
923 5c60c32a 2018-10-18 stsp return NULL;
924 0cf4efb1 2018-09-29 stsp }
925 0cf4efb1 2018-09-29 stsp
926 5c60c32a 2018-10-18 stsp static int
927 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
928 5c60c32a 2018-10-18 stsp {
929 5c60c32a 2018-10-18 stsp return view->parent == NULL;
930 5c60c32a 2018-10-18 stsp }
931 5c60c32a 2018-10-18 stsp
932 6131ff18 2022-06-20 mark static int
933 6131ff18 2022-06-20 mark view_is_splitscreen(struct tog_view *view)
934 6131ff18 2022-06-20 mark {
935 9b058f45 2022-06-30 mark return view->begin_x > 0 || view->begin_y > 0;
936 24b9cfdc 2022-06-30 stsp }
937 24b9cfdc 2022-06-30 stsp
938 24b9cfdc 2022-06-30 stsp static int
939 24b9cfdc 2022-06-30 stsp view_is_fullscreen(struct tog_view *view)
940 24b9cfdc 2022-06-30 stsp {
941 24b9cfdc 2022-06-30 stsp return view->nlines == LINES && view->ncols == COLS;
942 6131ff18 2022-06-20 mark }
943 6131ff18 2022-06-20 mark
944 49b24ee5 2022-07-03 mark static int
945 49b24ee5 2022-07-03 mark view_is_hsplit_top(struct tog_view *view)
946 49b24ee5 2022-07-03 mark {
947 49b24ee5 2022-07-03 mark return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
948 49b24ee5 2022-07-03 mark view_is_splitscreen(view->child);
949 49b24ee5 2022-07-03 mark }
950 49b24ee5 2022-07-03 mark
951 9b058f45 2022-06-30 mark static void
952 9b058f45 2022-06-30 mark view_border(struct tog_view *view)
953 9b058f45 2022-06-30 mark {
954 9b058f45 2022-06-30 mark PANEL *panel;
955 9b058f45 2022-06-30 mark const struct tog_view *view_above;
956 6131ff18 2022-06-20 mark
957 9b058f45 2022-06-30 mark if (view->parent)
958 9b058f45 2022-06-30 mark return view_border(view->parent);
959 9b058f45 2022-06-30 mark
960 9b058f45 2022-06-30 mark panel = panel_above(view->panel);
961 9b058f45 2022-06-30 mark if (panel == NULL)
962 9b058f45 2022-06-30 mark return;
963 9b058f45 2022-06-30 mark
964 9b058f45 2022-06-30 mark view_above = panel_userptr(panel);
965 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
966 9b058f45 2022-06-30 mark mvwhline(view->window, view_above->begin_y - 1,
967 9b058f45 2022-06-30 mark view->begin_x, got_locale_is_utf8() ?
968 9b058f45 2022-06-30 mark ACS_HLINE : '-', view->ncols);
969 9b058f45 2022-06-30 mark else
970 9b058f45 2022-06-30 mark mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
971 9b058f45 2022-06-30 mark got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
972 9b058f45 2022-06-30 mark }
973 9b058f45 2022-06-30 mark
974 3c1dfe12 2022-07-08 mark static const struct got_error *view_init_hsplit(struct tog_view *, int);
975 9b058f45 2022-06-30 mark static const struct got_error *request_log_commits(struct tog_view *);
976 9b058f45 2022-06-30 mark static const struct got_error *offset_selection_down(struct tog_view *);
977 9b058f45 2022-06-30 mark static void offset_selection_up(struct tog_view *);
978 3c1dfe12 2022-07-08 mark static void view_get_split(struct tog_view *, int *, int *);
979 9b058f45 2022-06-30 mark
980 4d8c2215 2018-08-19 stsp static const struct got_error *
981 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
982 f7d12f7e 2018-08-01 stsp {
983 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
984 9b058f45 2022-06-30 mark int dif, nlines, ncols;
985 f7d12f7e 2018-08-01 stsp
986 9b058f45 2022-06-30 mark dif = LINES - view->lines; /* line difference */
987 9b058f45 2022-06-30 mark
988 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
989 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
990 0cf4efb1 2018-09-29 stsp else
991 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
992 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
993 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
994 0cf4efb1 2018-09-29 stsp else
995 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
996 6d0fee91 2018-08-01 stsp
997 4dd27a72 2022-06-29 stsp if (view->child) {
998 9b058f45 2022-06-30 mark int hs = view->child->begin_y;
999 9b058f45 2022-06-30 mark
1000 24b9cfdc 2022-06-30 stsp if (!view_is_fullscreen(view))
1001 c71ed39a 2022-06-29 stsp view->child->begin_x = view_split_begin_x(view->begin_x);
1002 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN ||
1003 9b058f45 2022-06-30 mark view->child->begin_x == 0) {
1004 0dbbbe90 2022-06-17 op ncols = COLS;
1005 0dbbbe90 2022-06-17 op
1006 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
1007 5c60c32a 2018-10-18 stsp if (view->child->focussed)
1008 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
1009 5c60c32a 2018-10-18 stsp else
1010 5c60c32a 2018-10-18 stsp show_panel(view->panel);
1011 5c60c32a 2018-10-18 stsp } else {
1012 0dbbbe90 2022-06-17 op ncols = view->child->begin_x;
1013 0dbbbe90 2022-06-17 op
1014 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
1015 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
1016 9b058f45 2022-06-30 mark }
1017 9b058f45 2022-06-30 mark /*
1018 9b058f45 2022-06-30 mark * XXX This is ugly and needs to be moved into the above
1019 9b058f45 2022-06-30 mark * logic but "works" for now and my attempts at moving it
1020 9b058f45 2022-06-30 mark * break either 'tab' or 'F' key maps in horizontal splits.
1021 9b058f45 2022-06-30 mark */
1022 9b058f45 2022-06-30 mark if (hs) {
1023 9b058f45 2022-06-30 mark err = view_splitscreen(view->child);
1024 9b058f45 2022-06-30 mark if (err)
1025 9b058f45 2022-06-30 mark return err;
1026 9b058f45 2022-06-30 mark if (dif < 0) { /* top split decreased */
1027 9b058f45 2022-06-30 mark err = offset_selection_down(view);
1028 9b058f45 2022-06-30 mark if (err)
1029 9b058f45 2022-06-30 mark return err;
1030 9b058f45 2022-06-30 mark }
1031 9b058f45 2022-06-30 mark view_border(view);
1032 9b058f45 2022-06-30 mark update_panels();
1033 9b058f45 2022-06-30 mark doupdate();
1034 9b058f45 2022-06-30 mark show_panel(view->child->panel);
1035 9b058f45 2022-06-30 mark nlines = view->nlines;
1036 9b058f45 2022-06-30 mark }
1037 0dbbbe90 2022-06-17 op } else if (view->parent == NULL)
1038 0dbbbe90 2022-06-17 op ncols = COLS;
1039 669b5ffa 2018-10-07 stsp
1040 571ccd73 2022-07-19 mark if (view->resize && dif > 0) {
1041 571ccd73 2022-07-19 mark err = view->resize(view, dif);
1042 571ccd73 2022-07-19 mark if (err)
1043 571ccd73 2022-07-19 mark return err;
1044 571ccd73 2022-07-19 mark }
1045 571ccd73 2022-07-19 mark
1046 0dbbbe90 2022-06-17 op if (wresize(view->window, nlines, ncols) == ERR)
1047 0dbbbe90 2022-06-17 op return got_error_from_errno("wresize");
1048 0dbbbe90 2022-06-17 op if (replace_panel(view->panel, view->window) == ERR)
1049 0dbbbe90 2022-06-17 op return got_error_from_errno("replace_panel");
1050 0dbbbe90 2022-06-17 op wclear(view->window);
1051 0dbbbe90 2022-06-17 op
1052 0dbbbe90 2022-06-17 op view->nlines = nlines;
1053 0dbbbe90 2022-06-17 op view->ncols = ncols;
1054 0dbbbe90 2022-06-17 op view->lines = LINES;
1055 0dbbbe90 2022-06-17 op view->cols = COLS;
1056 0dbbbe90 2022-06-17 op
1057 5c60c32a 2018-10-18 stsp return NULL;
1058 571ccd73 2022-07-19 mark }
1059 571ccd73 2022-07-19 mark
1060 571ccd73 2022-07-19 mark static const struct got_error *
1061 571ccd73 2022-07-19 mark resize_log_view(struct tog_view *view, int increase)
1062 571ccd73 2022-07-19 mark {
1063 6fe51fee 2022-07-22 mark struct tog_log_view_state *s = &view->state.log;
1064 6fe51fee 2022-07-22 mark const struct got_error *err = NULL;
1065 6fe51fee 2022-07-22 mark int n = 0;
1066 571ccd73 2022-07-19 mark
1067 6fe51fee 2022-07-22 mark if (s->selected_entry)
1068 6fe51fee 2022-07-22 mark n = s->selected_entry->idx + view->lines - s->selected;
1069 6fe51fee 2022-07-22 mark
1070 571ccd73 2022-07-19 mark /*
1071 571ccd73 2022-07-19 mark * Request commits to account for the increased
1072 571ccd73 2022-07-19 mark * height so we have enough to populate the view.
1073 571ccd73 2022-07-19 mark */
1074 568eae95 2022-09-11 mark if (s->commits->ncommits < n) {
1075 568eae95 2022-09-11 mark view->nscrolled = n - s->commits->ncommits + increase + 1;
1076 571ccd73 2022-07-19 mark err = request_log_commits(view);
1077 571ccd73 2022-07-19 mark }
1078 571ccd73 2022-07-19 mark
1079 571ccd73 2022-07-19 mark return err;
1080 d9a7ab53 2022-07-11 mark }
1081 d9a7ab53 2022-07-11 mark
1082 d9a7ab53 2022-07-11 mark static void
1083 d9a7ab53 2022-07-11 mark view_adjust_offset(struct tog_view *view, int n)
1084 d9a7ab53 2022-07-11 mark {
1085 d9a7ab53 2022-07-11 mark if (n == 0)
1086 d9a7ab53 2022-07-11 mark return;
1087 d9a7ab53 2022-07-11 mark
1088 d9a7ab53 2022-07-11 mark if (view->parent && view->parent->offset) {
1089 d9a7ab53 2022-07-11 mark if (view->parent->offset + n >= 0)
1090 d9a7ab53 2022-07-11 mark view->parent->offset += n;
1091 d9a7ab53 2022-07-11 mark else
1092 d9a7ab53 2022-07-11 mark view->parent->offset = 0;
1093 d9a7ab53 2022-07-11 mark } else if (view->offset) {
1094 d9a7ab53 2022-07-11 mark if (view->offset - n >= 0)
1095 d9a7ab53 2022-07-11 mark view->offset -= n;
1096 d9a7ab53 2022-07-11 mark else
1097 d9a7ab53 2022-07-11 mark view->offset = 0;
1098 d9a7ab53 2022-07-11 mark }
1099 3c1dfe12 2022-07-08 mark }
1100 3c1dfe12 2022-07-08 mark
1101 3c1dfe12 2022-07-08 mark static const struct got_error *
1102 3c1dfe12 2022-07-08 mark view_resize_split(struct tog_view *view, int resize)
1103 3c1dfe12 2022-07-08 mark {
1104 3c1dfe12 2022-07-08 mark const struct got_error *err = NULL;
1105 3c1dfe12 2022-07-08 mark struct tog_view *v = NULL;
1106 3c1dfe12 2022-07-08 mark
1107 3c1dfe12 2022-07-08 mark if (view->parent)
1108 3c1dfe12 2022-07-08 mark v = view->parent;
1109 3c1dfe12 2022-07-08 mark else
1110 3c1dfe12 2022-07-08 mark v = view;
1111 3c1dfe12 2022-07-08 mark
1112 3c1dfe12 2022-07-08 mark if (!v->child || !view_is_splitscreen(v->child))
1113 3c1dfe12 2022-07-08 mark return NULL;
1114 3c1dfe12 2022-07-08 mark
1115 571ccd73 2022-07-19 mark v->resized = v->child->resized = resize; /* lock for resize event */
1116 3c1dfe12 2022-07-08 mark
1117 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
1118 3c1dfe12 2022-07-08 mark if (v->child->resized_y)
1119 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
1120 3c1dfe12 2022-07-08 mark if (view->parent)
1121 3c1dfe12 2022-07-08 mark v->child->begin_y -= resize;
1122 3c1dfe12 2022-07-08 mark else
1123 3c1dfe12 2022-07-08 mark v->child->begin_y += resize;
1124 3c1dfe12 2022-07-08 mark if (v->child->begin_y < 3) {
1125 3c1dfe12 2022-07-08 mark view->count = 0;
1126 3c1dfe12 2022-07-08 mark v->child->begin_y = 3;
1127 3c1dfe12 2022-07-08 mark } else if (v->child->begin_y > LINES - 1) {
1128 3c1dfe12 2022-07-08 mark view->count = 0;
1129 3c1dfe12 2022-07-08 mark v->child->begin_y = LINES - 1;
1130 3c1dfe12 2022-07-08 mark }
1131 3c1dfe12 2022-07-08 mark v->ncols = COLS;
1132 3c1dfe12 2022-07-08 mark v->child->ncols = COLS;
1133 d9a7ab53 2022-07-11 mark view_adjust_offset(view, resize);
1134 3c1dfe12 2022-07-08 mark err = view_init_hsplit(v, v->child->begin_y);
1135 3c1dfe12 2022-07-08 mark if (err)
1136 3c1dfe12 2022-07-08 mark return err;
1137 3c1dfe12 2022-07-08 mark v->child->resized_y = v->child->begin_y;
1138 3c1dfe12 2022-07-08 mark } else {
1139 3c1dfe12 2022-07-08 mark if (v->child->resized_x)
1140 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1141 3c1dfe12 2022-07-08 mark if (view->parent)
1142 3c1dfe12 2022-07-08 mark v->child->begin_x -= resize;
1143 3c1dfe12 2022-07-08 mark else
1144 3c1dfe12 2022-07-08 mark v->child->begin_x += resize;
1145 3c1dfe12 2022-07-08 mark if (v->child->begin_x < 11) {
1146 3c1dfe12 2022-07-08 mark view->count = 0;
1147 3c1dfe12 2022-07-08 mark v->child->begin_x = 11;
1148 3c1dfe12 2022-07-08 mark } else if (v->child->begin_x > COLS - 1) {
1149 3c1dfe12 2022-07-08 mark view->count = 0;
1150 3c1dfe12 2022-07-08 mark v->child->begin_x = COLS - 1;
1151 3c1dfe12 2022-07-08 mark }
1152 3c1dfe12 2022-07-08 mark v->child->resized_x = v->child->begin_x;
1153 3c1dfe12 2022-07-08 mark }
1154 3c1dfe12 2022-07-08 mark
1155 3c1dfe12 2022-07-08 mark v->child->mode = v->mode;
1156 3c1dfe12 2022-07-08 mark v->child->nlines = v->lines - v->child->begin_y;
1157 3c1dfe12 2022-07-08 mark v->child->ncols = v->cols - v->child->begin_x;
1158 3c1dfe12 2022-07-08 mark v->focus_child = 1;
1159 3c1dfe12 2022-07-08 mark
1160 3c1dfe12 2022-07-08 mark err = view_fullscreen(v);
1161 3c1dfe12 2022-07-08 mark if (err)
1162 3c1dfe12 2022-07-08 mark return err;
1163 3c1dfe12 2022-07-08 mark err = view_splitscreen(v->child);
1164 3c1dfe12 2022-07-08 mark if (err)
1165 3c1dfe12 2022-07-08 mark return err;
1166 3c1dfe12 2022-07-08 mark
1167 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1168 3c1dfe12 2022-07-08 mark err = offset_selection_down(v->child);
1169 3c1dfe12 2022-07-08 mark if (err)
1170 3c1dfe12 2022-07-08 mark return err;
1171 3c1dfe12 2022-07-08 mark }
1172 3c1dfe12 2022-07-08 mark
1173 6fe51fee 2022-07-22 mark if (v->resize)
1174 6fe51fee 2022-07-22 mark err = v->resize(v, 0);
1175 6fe51fee 2022-07-22 mark else if (v->child->resize)
1176 6fe51fee 2022-07-22 mark err = v->child->resize(v->child, 0);
1177 3c1dfe12 2022-07-08 mark
1178 571ccd73 2022-07-19 mark v->resized = v->child->resized = 0;
1179 3c1dfe12 2022-07-08 mark
1180 3c1dfe12 2022-07-08 mark return err;
1181 3c1dfe12 2022-07-08 mark }
1182 3c1dfe12 2022-07-08 mark
1183 3c1dfe12 2022-07-08 mark static void
1184 3c1dfe12 2022-07-08 mark view_transfer_size(struct tog_view *dst, struct tog_view *src)
1185 3c1dfe12 2022-07-08 mark {
1186 3c1dfe12 2022-07-08 mark struct tog_view *v = src->child ? src->child : src;
1187 3c1dfe12 2022-07-08 mark
1188 3c1dfe12 2022-07-08 mark dst->resized_x = v->resized_x;
1189 3c1dfe12 2022-07-08 mark dst->resized_y = v->resized_y;
1190 669b5ffa 2018-10-07 stsp }
1191 669b5ffa 2018-10-07 stsp
1192 669b5ffa 2018-10-07 stsp static const struct got_error *
1193 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
1194 669b5ffa 2018-10-07 stsp {
1195 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1196 669b5ffa 2018-10-07 stsp
1197 669b5ffa 2018-10-07 stsp if (view->child == NULL)
1198 669b5ffa 2018-10-07 stsp return NULL;
1199 669b5ffa 2018-10-07 stsp
1200 669b5ffa 2018-10-07 stsp err = view_close(view->child);
1201 669b5ffa 2018-10-07 stsp view->child = NULL;
1202 669b5ffa 2018-10-07 stsp return err;
1203 669b5ffa 2018-10-07 stsp }
1204 669b5ffa 2018-10-07 stsp
1205 0dbbbe90 2022-06-17 op static const struct got_error *
1206 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
1207 669b5ffa 2018-10-07 stsp {
1208 3c1dfe12 2022-07-08 mark const struct got_error *err = NULL;
1209 3c1dfe12 2022-07-08 mark
1210 669b5ffa 2018-10-07 stsp view->child = child;
1211 669b5ffa 2018-10-07 stsp child->parent = view;
1212 0dbbbe90 2022-06-17 op
1213 3c1dfe12 2022-07-08 mark err = view_resize(view);
1214 3c1dfe12 2022-07-08 mark if (err)
1215 3c1dfe12 2022-07-08 mark return err;
1216 3c1dfe12 2022-07-08 mark
1217 3c1dfe12 2022-07-08 mark if (view->child->resized_x || view->child->resized_y)
1218 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1219 3c1dfe12 2022-07-08 mark
1220 3c1dfe12 2022-07-08 mark return err;
1221 bfddd0d9 2018-09-29 stsp }
1222 136e2bd4 2022-07-23 mark
1223 136e2bd4 2022-07-23 mark static const struct got_error *view_dispatch_request(struct tog_view **,
1224 136e2bd4 2022-07-23 mark struct tog_view *, enum tog_view_type, int, int);
1225 136e2bd4 2022-07-23 mark
1226 136e2bd4 2022-07-23 mark static const struct got_error *
1227 136e2bd4 2022-07-23 mark view_request_new(struct tog_view **requested, struct tog_view *view,
1228 136e2bd4 2022-07-23 mark enum tog_view_type request)
1229 136e2bd4 2022-07-23 mark {
1230 136e2bd4 2022-07-23 mark struct tog_view *new_view = NULL;
1231 136e2bd4 2022-07-23 mark const struct got_error *err;
1232 136e2bd4 2022-07-23 mark int y = 0, x = 0;
1233 136e2bd4 2022-07-23 mark
1234 136e2bd4 2022-07-23 mark *requested = NULL;
1235 136e2bd4 2022-07-23 mark
1236 94274a8f 2022-09-19 mark if (view_is_parent_view(view) && request != TOG_VIEW_HELP)
1237 136e2bd4 2022-07-23 mark view_get_split(view, &y, &x);
1238 bfddd0d9 2018-09-29 stsp
1239 136e2bd4 2022-07-23 mark err = view_dispatch_request(&new_view, view, request, y, x);
1240 136e2bd4 2022-07-23 mark if (err)
1241 136e2bd4 2022-07-23 mark return err;
1242 136e2bd4 2022-07-23 mark
1243 94274a8f 2022-09-19 mark if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN &&
1244 94274a8f 2022-09-19 mark request != TOG_VIEW_HELP) {
1245 136e2bd4 2022-07-23 mark err = view_init_hsplit(view, y);
1246 136e2bd4 2022-07-23 mark if (err)
1247 136e2bd4 2022-07-23 mark return err;
1248 136e2bd4 2022-07-23 mark }
1249 136e2bd4 2022-07-23 mark
1250 136e2bd4 2022-07-23 mark view->focussed = 0;
1251 136e2bd4 2022-07-23 mark new_view->focussed = 1;
1252 136e2bd4 2022-07-23 mark new_view->mode = view->mode;
1253 94274a8f 2022-09-19 mark new_view->nlines = request == TOG_VIEW_HELP ?
1254 94274a8f 2022-09-19 mark view->lines : view->lines - y;
1255 136e2bd4 2022-07-23 mark
1256 94274a8f 2022-09-19 mark if (view_is_parent_view(view) && request != TOG_VIEW_HELP) {
1257 136e2bd4 2022-07-23 mark view_transfer_size(new_view, view);
1258 136e2bd4 2022-07-23 mark err = view_close_child(view);
1259 136e2bd4 2022-07-23 mark if (err)
1260 136e2bd4 2022-07-23 mark return err;
1261 136e2bd4 2022-07-23 mark err = view_set_child(view, new_view);
1262 136e2bd4 2022-07-23 mark if (err)
1263 136e2bd4 2022-07-23 mark return err;
1264 136e2bd4 2022-07-23 mark view->focus_child = 1;
1265 136e2bd4 2022-07-23 mark } else
1266 136e2bd4 2022-07-23 mark *requested = new_view;
1267 136e2bd4 2022-07-23 mark
1268 136e2bd4 2022-07-23 mark return NULL;
1269 136e2bd4 2022-07-23 mark }
1270 136e2bd4 2022-07-23 mark
1271 34bc9ec9 2019-02-22 stsp static void
1272 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
1273 25791caa 2018-10-24 stsp {
1274 25791caa 2018-10-24 stsp int cols, lines;
1275 25791caa 2018-10-24 stsp struct winsize size;
1276 25791caa 2018-10-24 stsp
1277 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1278 25791caa 2018-10-24 stsp cols = 80; /* Default */
1279 25791caa 2018-10-24 stsp lines = 24;
1280 25791caa 2018-10-24 stsp } else {
1281 25791caa 2018-10-24 stsp cols = size.ws_col;
1282 25791caa 2018-10-24 stsp lines = size.ws_row;
1283 25791caa 2018-10-24 stsp }
1284 25791caa 2018-10-24 stsp resize_term(lines, cols);
1285 2b49a8ae 2019-06-22 stsp }
1286 2b49a8ae 2019-06-22 stsp
1287 2b49a8ae 2019-06-22 stsp static const struct got_error *
1288 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
1289 2b49a8ae 2019-06-22 stsp {
1290 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
1291 9b058f45 2022-06-30 mark struct tog_view *v = view;
1292 2b49a8ae 2019-06-22 stsp char pattern[1024];
1293 2b49a8ae 2019-06-22 stsp int ret;
1294 c0c4acc8 2021-01-24 stsp
1295 c0c4acc8 2021-01-24 stsp if (view->search_started) {
1296 c0c4acc8 2021-01-24 stsp regfree(&view->regex);
1297 c0c4acc8 2021-01-24 stsp view->searching = 0;
1298 c0c4acc8 2021-01-24 stsp memset(&view->regmatch, 0, sizeof(view->regmatch));
1299 c0c4acc8 2021-01-24 stsp }
1300 c0c4acc8 2021-01-24 stsp view->search_started = 0;
1301 2b49a8ae 2019-06-22 stsp
1302 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
1303 2b49a8ae 2019-06-22 stsp return NULL;
1304 2b49a8ae 2019-06-22 stsp
1305 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1306 9b058f45 2022-06-30 mark v = view->child;
1307 9d0feb8b 2022-12-27 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1308 9d0feb8b 2022-12-27 mark v = view->parent;
1309 2b49a8ae 2019-06-22 stsp
1310 9b058f45 2022-06-30 mark mvwaddstr(v->window, v->nlines - 1, 0, "/");
1311 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1312 9b058f45 2022-06-30 mark
1313 092a9f9c 2022-12-27 mark nodelay(v->window, FALSE); /* block for search term input */
1314 2b49a8ae 2019-06-22 stsp nocbreak();
1315 2b49a8ae 2019-06-22 stsp echo();
1316 9b058f45 2022-06-30 mark ret = wgetnstr(v->window, pattern, sizeof(pattern));
1317 9b058f45 2022-06-30 mark wrefresh(v->window);
1318 2b49a8ae 2019-06-22 stsp cbreak();
1319 2b49a8ae 2019-06-22 stsp noecho();
1320 092a9f9c 2022-12-27 mark nodelay(v->window, TRUE);
1321 2b49a8ae 2019-06-22 stsp if (ret == ERR)
1322 2b49a8ae 2019-06-22 stsp return NULL;
1323 2b49a8ae 2019-06-22 stsp
1324 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1325 7c32bd05 2019-06-22 stsp err = view->search_start(view);
1326 7c32bd05 2019-06-22 stsp if (err) {
1327 7c32bd05 2019-06-22 stsp regfree(&view->regex);
1328 7c32bd05 2019-06-22 stsp return err;
1329 7c32bd05 2019-06-22 stsp }
1330 c0c4acc8 2021-01-24 stsp view->search_started = 1;
1331 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
1332 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
1333 2b49a8ae 2019-06-22 stsp view->search_next(view);
1334 2b49a8ae 2019-06-22 stsp }
1335 2b49a8ae 2019-06-22 stsp
1336 2b49a8ae 2019-06-22 stsp return NULL;
1337 d2366e29 2022-07-07 mark }
1338 d2366e29 2022-07-07 mark
1339 7532ccda 2022-07-11 mark /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1340 d2366e29 2022-07-07 mark static const struct got_error *
1341 d2366e29 2022-07-07 mark switch_split(struct tog_view *view)
1342 d2366e29 2022-07-07 mark {
1343 d2366e29 2022-07-07 mark const struct got_error *err = NULL;
1344 d2366e29 2022-07-07 mark struct tog_view *v = NULL;
1345 d2366e29 2022-07-07 mark
1346 d2366e29 2022-07-07 mark if (view->parent)
1347 d2366e29 2022-07-07 mark v = view->parent;
1348 d2366e29 2022-07-07 mark else
1349 d2366e29 2022-07-07 mark v = view;
1350 d2366e29 2022-07-07 mark
1351 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN)
1352 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1353 7532ccda 2022-07-11 mark else
1354 d2366e29 2022-07-07 mark v->mode = TOG_VIEW_SPLIT_HRZN;
1355 d2366e29 2022-07-07 mark
1356 7532ccda 2022-07-11 mark if (!v->child)
1357 7532ccda 2022-07-11 mark return NULL;
1358 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1359 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_NONE;
1360 7532ccda 2022-07-11 mark
1361 d2366e29 2022-07-07 mark view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1362 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1363 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
1364 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1365 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1366 d2366e29 2022-07-07 mark
1367 7532ccda 2022-07-11 mark
1368 d2366e29 2022-07-07 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1369 d2366e29 2022-07-07 mark v->ncols = COLS;
1370 d2366e29 2022-07-07 mark v->child->ncols = COLS;
1371 7532ccda 2022-07-11 mark v->child->nscrolled = LINES - v->child->nlines;
1372 d2366e29 2022-07-07 mark
1373 d2366e29 2022-07-07 mark err = view_init_hsplit(v, v->child->begin_y);
1374 d2366e29 2022-07-07 mark if (err)
1375 d2366e29 2022-07-07 mark return err;
1376 d2366e29 2022-07-07 mark }
1377 d2366e29 2022-07-07 mark v->child->mode = v->mode;
1378 d2366e29 2022-07-07 mark v->child->nlines = v->lines - v->child->begin_y;
1379 d2366e29 2022-07-07 mark v->focus_child = 1;
1380 d2366e29 2022-07-07 mark
1381 d2366e29 2022-07-07 mark err = view_fullscreen(v);
1382 d2366e29 2022-07-07 mark if (err)
1383 d2366e29 2022-07-07 mark return err;
1384 d2366e29 2022-07-07 mark err = view_splitscreen(v->child);
1385 d2366e29 2022-07-07 mark if (err)
1386 d2366e29 2022-07-07 mark return err;
1387 d2366e29 2022-07-07 mark
1388 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_NONE)
1389 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1390 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1391 7532ccda 2022-07-11 mark err = offset_selection_down(v);
1392 279d2047 2022-07-29 stsp if (err)
1393 279d2047 2022-07-29 stsp return err;
1394 d2366e29 2022-07-07 mark err = offset_selection_down(v->child);
1395 279d2047 2022-07-29 stsp if (err)
1396 279d2047 2022-07-29 stsp return err;
1397 7532ccda 2022-07-11 mark } else {
1398 7532ccda 2022-07-11 mark offset_selection_up(v);
1399 7532ccda 2022-07-11 mark offset_selection_up(v->child);
1400 d2366e29 2022-07-07 mark }
1401 dff91825 2022-07-22 mark if (v->resize)
1402 dff91825 2022-07-22 mark err = v->resize(v, 0);
1403 dff91825 2022-07-22 mark else if (v->child->resize)
1404 dff91825 2022-07-22 mark err = v->child->resize(v->child, 0);
1405 d2366e29 2022-07-07 mark
1406 d2366e29 2022-07-07 mark return err;
1407 0cf4efb1 2018-09-29 stsp }
1408 6d0fee91 2018-08-01 stsp
1409 640cd7ff 2022-06-22 mark /*
1410 f0032ce6 2022-07-02 mark * Compute view->count from numeric input. Assign total to view->count and
1411 f0032ce6 2022-07-02 mark * return first non-numeric key entered.
1412 640cd7ff 2022-06-22 mark */
1413 640cd7ff 2022-06-22 mark static int
1414 640cd7ff 2022-06-22 mark get_compound_key(struct tog_view *view, int c)
1415 640cd7ff 2022-06-22 mark {
1416 9b058f45 2022-06-30 mark struct tog_view *v = view;
1417 9b058f45 2022-06-30 mark int x, n = 0;
1418 640cd7ff 2022-06-22 mark
1419 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1420 9b058f45 2022-06-30 mark v = view->child;
1421 9b058f45 2022-06-30 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1422 9b058f45 2022-06-30 mark v = view->parent;
1423 9b058f45 2022-06-30 mark
1424 640cd7ff 2022-06-22 mark view->count = 0;
1425 f0032ce6 2022-07-02 mark cbreak(); /* block for input */
1426 94b80cfa 2022-08-01 mark nodelay(view->window, FALSE);
1427 9b058f45 2022-06-30 mark wmove(v->window, v->nlines - 1, 0);
1428 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1429 9b058f45 2022-06-30 mark waddch(v->window, ':');
1430 640cd7ff 2022-06-22 mark
1431 640cd7ff 2022-06-22 mark do {
1432 9b058f45 2022-06-30 mark x = getcurx(v->window);
1433 9b058f45 2022-06-30 mark if (x != ERR && x < view->ncols) {
1434 9b058f45 2022-06-30 mark waddch(v->window, c);
1435 9b058f45 2022-06-30 mark wrefresh(v->window);
1436 9b058f45 2022-06-30 mark }
1437 9b058f45 2022-06-30 mark
1438 640cd7ff 2022-06-22 mark /*
1439 640cd7ff 2022-06-22 mark * Don't overflow. Max valid request should be the greatest
1440 640cd7ff 2022-06-22 mark * between the longest and total lines; cap at 10 million.
1441 640cd7ff 2022-06-22 mark */
1442 640cd7ff 2022-06-22 mark if (n >= 9999999)
1443 640cd7ff 2022-06-22 mark n = 9999999;
1444 640cd7ff 2022-06-22 mark else
1445 640cd7ff 2022-06-22 mark n = n * 10 + (c - '0');
1446 640cd7ff 2022-06-22 mark } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1447 640cd7ff 2022-06-22 mark
1448 94b80cfa 2022-08-01 mark if (c == 'G' || c == 'g') { /* nG key map */
1449 94b80cfa 2022-08-01 mark view->gline = view->hiline = n;
1450 94b80cfa 2022-08-01 mark n = 0;
1451 94b80cfa 2022-08-01 mark c = 0;
1452 94b80cfa 2022-08-01 mark }
1453 94b80cfa 2022-08-01 mark
1454 640cd7ff 2022-06-22 mark /* Massage excessive or inapplicable values at the input handler. */
1455 640cd7ff 2022-06-22 mark view->count = n;
1456 640cd7ff 2022-06-22 mark
1457 640cd7ff 2022-06-22 mark return c;
1458 640cd7ff 2022-06-22 mark }
1459 640cd7ff 2022-06-22 mark
1460 0cf4efb1 2018-09-29 stsp static const struct got_error *
1461 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
1462 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
1463 e5a0f69f 2018-08-18 stsp {
1464 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1465 669b5ffa 2018-10-07 stsp struct tog_view *v;
1466 1a76625f 2018-10-22 stsp int ch, errcode;
1467 e5a0f69f 2018-08-18 stsp
1468 e5a0f69f 2018-08-18 stsp *new = NULL;
1469 8f4ed634 2020-03-26 stsp
1470 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
1471 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1472 640cd7ff 2022-06-22 mark view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1473 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
1474 640cd7ff 2022-06-22 mark view->count = 0;
1475 640cd7ff 2022-06-22 mark }
1476 e5a0f69f 2018-08-18 stsp
1477 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
1478 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1479 82954512 2020-02-03 stsp if (errcode)
1480 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1481 82954512 2020-02-03 stsp "pthread_mutex_unlock");
1482 3da8ef85 2021-09-21 stsp sched_yield();
1483 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
1484 82954512 2020-02-03 stsp if (errcode)
1485 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1486 82954512 2020-02-03 stsp "pthread_mutex_lock");
1487 60493ae3 2019-06-20 stsp view->search_next(view);
1488 60493ae3 2019-06-20 stsp return NULL;
1489 60493ae3 2019-06-20 stsp }
1490 60493ae3 2019-06-20 stsp
1491 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
1492 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1493 1a76625f 2018-10-22 stsp if (errcode)
1494 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
1495 a6d37fac 2022-07-03 mark /* If we have an unfinished count, let C-g or backspace abort. */
1496 a6d37fac 2022-07-03 mark if (view->count && --view->count) {
1497 a6d37fac 2022-07-03 mark cbreak();
1498 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1499 640cd7ff 2022-06-22 mark ch = wgetch(view->window);
1500 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1501 a6d37fac 2022-07-03 mark view->count = 0;
1502 a6d37fac 2022-07-03 mark else
1503 a6d37fac 2022-07-03 mark ch = view->ch;
1504 a6d37fac 2022-07-03 mark } else {
1505 a6d37fac 2022-07-03 mark ch = wgetch(view->window);
1506 640cd7ff 2022-06-22 mark if (ch >= '1' && ch <= '9')
1507 640cd7ff 2022-06-22 mark view->ch = ch = get_compound_key(view, ch);
1508 640cd7ff 2022-06-22 mark }
1509 94b80cfa 2022-08-01 mark if (view->hiline && ch != ERR && ch != 0)
1510 94b80cfa 2022-08-01 mark view->hiline = 0; /* key pressed, clear line highlight */
1511 94b80cfa 2022-08-01 mark nodelay(view->window, TRUE);
1512 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1513 1a76625f 2018-10-22 stsp if (errcode)
1514 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1515 25791caa 2018-10-24 stsp
1516 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
1517 25791caa 2018-10-24 stsp tog_resizeterm();
1518 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
1519 61266923 2020-01-14 stsp tog_sigcont_received = 0;
1520 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
1521 25791caa 2018-10-24 stsp err = view_resize(v);
1522 25791caa 2018-10-24 stsp if (err)
1523 25791caa 2018-10-24 stsp return err;
1524 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
1525 25791caa 2018-10-24 stsp if (err)
1526 25791caa 2018-10-24 stsp return err;
1527 cdfcfb03 2020-12-06 stsp if (v->child) {
1528 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
1529 cdfcfb03 2020-12-06 stsp if (err)
1530 cdfcfb03 2020-12-06 stsp return err;
1531 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
1532 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
1533 cdfcfb03 2020-12-06 stsp if (err)
1534 cdfcfb03 2020-12-06 stsp return err;
1535 3c1dfe12 2022-07-08 mark if (v->child->resized_x || v->child->resized_y) {
1536 3c1dfe12 2022-07-08 mark err = view_resize_split(v, 0);
1537 3c1dfe12 2022-07-08 mark if (err)
1538 3c1dfe12 2022-07-08 mark return err;
1539 3c1dfe12 2022-07-08 mark }
1540 cdfcfb03 2020-12-06 stsp }
1541 25791caa 2018-10-24 stsp }
1542 25791caa 2018-10-24 stsp }
1543 25791caa 2018-10-24 stsp
1544 e5a0f69f 2018-08-18 stsp switch (ch) {
1545 ec2a9698 2022-09-15 mark case '?':
1546 ec2a9698 2022-09-15 mark case 'H':
1547 ec2a9698 2022-09-15 mark case KEY_F(1):
1548 ec2a9698 2022-09-15 mark if (view->type == TOG_VIEW_HELP)
1549 ec2a9698 2022-09-15 mark err = view->reset(view);
1550 ec2a9698 2022-09-15 mark else
1551 ec2a9698 2022-09-15 mark err = view_request_new(new, view, TOG_VIEW_HELP);
1552 ec2a9698 2022-09-15 mark break;
1553 1e37a5c2 2019-05-12 jcs case '\t':
1554 640cd7ff 2022-06-22 mark view->count = 0;
1555 1e37a5c2 2019-05-12 jcs if (view->child) {
1556 e78dc838 2020-12-04 stsp view->focussed = 0;
1557 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1558 e78dc838 2020-12-04 stsp view->focus_child = 1;
1559 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
1560 e78dc838 2020-12-04 stsp view->focussed = 0;
1561 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
1562 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1563 9b058f45 2022-06-30 mark if (!view_is_splitscreen(view)) {
1564 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1565 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent,
1566 6fe51fee 2022-07-22 mark 0);
1567 9b058f45 2022-06-30 mark if (err)
1568 9b058f45 2022-06-30 mark return err;
1569 9b058f45 2022-06-30 mark }
1570 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1571 6131ff18 2022-06-20 mark err = view_fullscreen(view->parent);
1572 9b058f45 2022-06-30 mark if (err)
1573 9b058f45 2022-06-30 mark return err;
1574 9b058f45 2022-06-30 mark }
1575 1e37a5c2 2019-05-12 jcs }
1576 1e37a5c2 2019-05-12 jcs break;
1577 1e37a5c2 2019-05-12 jcs case 'q':
1578 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1579 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1580 9b058f45 2022-06-30 mark /* might need more commits to fill fullscreen */
1581 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent, 0);
1582 9b058f45 2022-06-30 mark if (err)
1583 9b058f45 2022-06-30 mark break;
1584 9b058f45 2022-06-30 mark }
1585 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1586 9b058f45 2022-06-30 mark }
1587 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1588 9970f7fc 2020-12-03 stsp view->dying = 1;
1589 1e37a5c2 2019-05-12 jcs break;
1590 1e37a5c2 2019-05-12 jcs case 'Q':
1591 1e37a5c2 2019-05-12 jcs *done = 1;
1592 1e37a5c2 2019-05-12 jcs break;
1593 61417565 2022-06-20 mark case 'F':
1594 640cd7ff 2022-06-22 mark view->count = 0;
1595 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
1596 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
1597 1e37a5c2 2019-05-12 jcs break;
1598 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
1599 e78dc838 2020-12-04 stsp view->focussed = 0;
1600 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1601 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
1602 3c1dfe12 2022-07-08 mark } else {
1603 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
1604 3c1dfe12 2022-07-08 mark if (!err)
1605 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1606 3c1dfe12 2022-07-08 mark }
1607 1e37a5c2 2019-05-12 jcs if (err)
1608 1e37a5c2 2019-05-12 jcs break;
1609 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
1610 9970f7fc 2020-12-03 stsp KEY_RESIZE);
1611 1e37a5c2 2019-05-12 jcs } else {
1612 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
1613 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
1614 e78dc838 2020-12-04 stsp view->focussed = 1;
1615 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
1616 1e37a5c2 2019-05-12 jcs } else {
1617 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
1618 9b058f45 2022-06-30 mark if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1619 6131ff18 2022-06-20 mark err = view_resize(view->parent);
1620 3c1dfe12 2022-07-08 mark if (!err)
1621 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1622 669b5ffa 2018-10-07 stsp }
1623 1e37a5c2 2019-05-12 jcs if (err)
1624 1e37a5c2 2019-05-12 jcs break;
1625 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
1626 1e37a5c2 2019-05-12 jcs }
1627 9b058f45 2022-06-30 mark if (err)
1628 9b058f45 2022-06-30 mark break;
1629 6fe51fee 2022-07-22 mark if (view->resize) {
1630 6fe51fee 2022-07-22 mark err = view->resize(view, 0);
1631 9b058f45 2022-06-30 mark if (err)
1632 9b058f45 2022-06-30 mark break;
1633 9b058f45 2022-06-30 mark }
1634 9b058f45 2022-06-30 mark if (view->parent)
1635 9b058f45 2022-06-30 mark err = offset_selection_down(view->parent);
1636 9b058f45 2022-06-30 mark if (!err)
1637 9b058f45 2022-06-30 mark err = offset_selection_down(view);
1638 1e37a5c2 2019-05-12 jcs break;
1639 d2366e29 2022-07-07 mark case 'S':
1640 3c1dfe12 2022-07-08 mark view->count = 0;
1641 d2366e29 2022-07-07 mark err = switch_split(view);
1642 3c1dfe12 2022-07-08 mark break;
1643 3c1dfe12 2022-07-08 mark case '-':
1644 3c1dfe12 2022-07-08 mark err = view_resize_split(view, -1);
1645 d2366e29 2022-07-07 mark break;
1646 3c1dfe12 2022-07-08 mark case '+':
1647 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 1);
1648 3c1dfe12 2022-07-08 mark break;
1649 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
1650 60493ae3 2019-06-20 stsp break;
1651 60493ae3 2019-06-20 stsp case '/':
1652 640cd7ff 2022-06-22 mark view->count = 0;
1653 60493ae3 2019-06-20 stsp if (view->search_start)
1654 2b49a8ae 2019-06-22 stsp view_search_start(view);
1655 60493ae3 2019-06-20 stsp else
1656 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1657 1e37a5c2 2019-05-12 jcs break;
1658 b1bf1435 2019-06-21 stsp case 'N':
1659 60493ae3 2019-06-20 stsp case 'n':
1660 c0c4acc8 2021-01-24 stsp if (view->search_started && view->search_next) {
1661 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
1662 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1663 60493ae3 2019-06-20 stsp view->search_next_done = 0;
1664 60493ae3 2019-06-20 stsp view->search_next(view);
1665 60493ae3 2019-06-20 stsp } else
1666 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1667 917d79a7 2022-07-01 stsp break;
1668 917d79a7 2022-07-01 stsp case 'A':
1669 917d79a7 2022-07-01 stsp if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1670 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1671 917d79a7 2022-07-01 stsp else
1672 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1673 917d79a7 2022-07-01 stsp TAILQ_FOREACH(v, views, entry) {
1674 917d79a7 2022-07-01 stsp if (v->reset) {
1675 917d79a7 2022-07-01 stsp err = v->reset(v);
1676 917d79a7 2022-07-01 stsp if (err)
1677 917d79a7 2022-07-01 stsp return err;
1678 917d79a7 2022-07-01 stsp }
1679 917d79a7 2022-07-01 stsp if (v->child && v->child->reset) {
1680 917d79a7 2022-07-01 stsp err = v->child->reset(v->child);
1681 917d79a7 2022-07-01 stsp if (err)
1682 917d79a7 2022-07-01 stsp return err;
1683 917d79a7 2022-07-01 stsp }
1684 917d79a7 2022-07-01 stsp }
1685 60493ae3 2019-06-20 stsp break;
1686 1e37a5c2 2019-05-12 jcs default:
1687 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1688 1e37a5c2 2019-05-12 jcs break;
1689 e5a0f69f 2018-08-18 stsp }
1690 e5a0f69f 2018-08-18 stsp
1691 e5a0f69f 2018-08-18 stsp return err;
1692 e5a0f69f 2018-08-18 stsp }
1693 e5a0f69f 2018-08-18 stsp
1694 336075a4 2022-06-25 op static int
1695 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
1696 a3404814 2018-09-02 stsp {
1697 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
1698 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
1699 669b5ffa 2018-10-07 stsp return 0;
1700 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
1701 669b5ffa 2018-10-07 stsp return 0;
1702 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
1703 a3404814 2018-09-02 stsp return 0;
1704 a3404814 2018-09-02 stsp
1705 669b5ffa 2018-10-07 stsp return view->focussed;
1706 a3404814 2018-09-02 stsp }
1707 a3404814 2018-09-02 stsp
1708 bcbd79e2 2018-08-19 stsp static const struct got_error *
1709 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
1710 e5a0f69f 2018-08-18 stsp {
1711 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1712 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
1713 fb59748f 2020-12-05 stsp struct tog_view *new_view;
1714 d2366e29 2022-07-07 mark char *mode;
1715 fd823528 2018-10-22 stsp int fast_refresh = 10;
1716 1a76625f 2018-10-22 stsp int done = 0, errcode;
1717 e5a0f69f 2018-08-18 stsp
1718 d2366e29 2022-07-07 mark mode = getenv("TOG_VIEW_SPLIT_MODE");
1719 d2366e29 2022-07-07 mark if (!mode || !(*mode == 'h' || *mode == 'H'))
1720 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_VERT;
1721 d2366e29 2022-07-07 mark else
1722 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_HRZN;
1723 d2366e29 2022-07-07 mark
1724 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1725 1a76625f 2018-10-22 stsp if (errcode)
1726 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1727 1a76625f 2018-10-22 stsp
1728 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1729 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1730 e5a0f69f 2018-08-18 stsp
1731 1004088d 2018-09-29 stsp view->focussed = 1;
1732 878940b7 2018-09-29 stsp err = view->show(view);
1733 0cf4efb1 2018-09-29 stsp if (err)
1734 0cf4efb1 2018-09-29 stsp return err;
1735 0cf4efb1 2018-09-29 stsp update_panels();
1736 0cf4efb1 2018-09-29 stsp doupdate();
1737 5629093a 2022-07-11 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1738 5629093a 2022-07-11 stsp !tog_fatal_signal_received()) {
1739 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1740 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1741 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1742 fd823528 2018-10-22 stsp
1743 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1744 e5a0f69f 2018-08-18 stsp if (err)
1745 e5a0f69f 2018-08-18 stsp break;
1746 9970f7fc 2020-12-03 stsp if (view->dying) {
1747 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1748 669b5ffa 2018-10-07 stsp
1749 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1750 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1751 9970f7fc 2020-12-03 stsp entry);
1752 e78dc838 2020-12-04 stsp else if (view->parent)
1753 669b5ffa 2018-10-07 stsp prev = view->parent;
1754 669b5ffa 2018-10-07 stsp
1755 e78dc838 2020-12-04 stsp if (view->parent) {
1756 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1757 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1758 9b058f45 2022-06-30 mark /* Restore fullscreen line height. */
1759 9b058f45 2022-06-30 mark view->parent->nlines = view->parent->lines;
1760 0dbbbe90 2022-06-17 op err = view_resize(view->parent);
1761 0dbbbe90 2022-06-17 op if (err)
1762 0dbbbe90 2022-06-17 op break;
1763 3c1dfe12 2022-07-08 mark /* Make resized splits persist. */
1764 3c1dfe12 2022-07-08 mark view_transfer_size(view->parent, view);
1765 e78dc838 2020-12-04 stsp } else
1766 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1767 669b5ffa 2018-10-07 stsp
1768 9970f7fc 2020-12-03 stsp err = view_close(view);
1769 fb59748f 2020-12-05 stsp if (err)
1770 e5a0f69f 2018-08-18 stsp goto done;
1771 669b5ffa 2018-10-07 stsp
1772 e78dc838 2020-12-04 stsp view = NULL;
1773 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1774 e78dc838 2020-12-04 stsp if (v->focussed)
1775 e78dc838 2020-12-04 stsp break;
1776 0cf4efb1 2018-09-29 stsp }
1777 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1778 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1779 e78dc838 2020-12-04 stsp if (prev)
1780 e78dc838 2020-12-04 stsp view = prev;
1781 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1782 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1783 e78dc838 2020-12-04 stsp tog_view_list_head);
1784 e78dc838 2020-12-04 stsp }
1785 e78dc838 2020-12-04 stsp if (view) {
1786 e78dc838 2020-12-04 stsp if (view->focus_child) {
1787 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1788 e78dc838 2020-12-04 stsp view = view->child;
1789 e78dc838 2020-12-04 stsp } else
1790 e78dc838 2020-12-04 stsp view->focussed = 1;
1791 e78dc838 2020-12-04 stsp }
1792 e78dc838 2020-12-04 stsp }
1793 e5a0f69f 2018-08-18 stsp }
1794 bcbd79e2 2018-08-19 stsp if (new_view) {
1795 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1796 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1797 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1798 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1799 86c66b02 2018-10-18 stsp continue;
1800 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1801 86c66b02 2018-10-18 stsp err = view_close(v);
1802 86c66b02 2018-10-18 stsp if (err)
1803 86c66b02 2018-10-18 stsp goto done;
1804 86c66b02 2018-10-18 stsp break;
1805 86c66b02 2018-10-18 stsp }
1806 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1807 fed7eaa8 2018-10-24 stsp view = new_view;
1808 0ae84acc 2022-06-15 tracey }
1809 669b5ffa 2018-10-07 stsp if (view) {
1810 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1811 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1812 e78dc838 2020-12-04 stsp view = view->child;
1813 e78dc838 2020-12-04 stsp } else {
1814 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1815 e78dc838 2020-12-04 stsp view = view->parent;
1816 1a76625f 2018-10-22 stsp }
1817 e78dc838 2020-12-04 stsp show_panel(view->panel);
1818 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1819 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1820 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1821 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1822 669b5ffa 2018-10-07 stsp if (err)
1823 1a76625f 2018-10-22 stsp goto done;
1824 669b5ffa 2018-10-07 stsp }
1825 669b5ffa 2018-10-07 stsp err = view->show(view);
1826 0cf4efb1 2018-09-29 stsp if (err)
1827 1a76625f 2018-10-22 stsp goto done;
1828 669b5ffa 2018-10-07 stsp if (view->child) {
1829 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1830 669b5ffa 2018-10-07 stsp if (err)
1831 1a76625f 2018-10-22 stsp goto done;
1832 669b5ffa 2018-10-07 stsp }
1833 1a76625f 2018-10-22 stsp update_panels();
1834 1a76625f 2018-10-22 stsp doupdate();
1835 0cf4efb1 2018-09-29 stsp }
1836 e5a0f69f 2018-08-18 stsp }
1837 e5a0f69f 2018-08-18 stsp done:
1838 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1839 5629093a 2022-07-11 stsp const struct got_error *close_err;
1840 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1841 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1842 5629093a 2022-07-11 stsp close_err = view_close(view);
1843 5629093a 2022-07-11 stsp if (close_err && err == NULL)
1844 5629093a 2022-07-11 stsp err = close_err;
1845 e5a0f69f 2018-08-18 stsp }
1846 1a76625f 2018-10-22 stsp
1847 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1848 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1849 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1850 1a76625f 2018-10-22 stsp
1851 e5a0f69f 2018-08-18 stsp return err;
1852 ea5e7bb5 2018-08-01 stsp }
1853 ea5e7bb5 2018-08-01 stsp
1854 4ed7e80c 2018-05-20 stsp __dead static void
1855 9f7d7167 2018-04-29 stsp usage_log(void)
1856 9f7d7167 2018-04-29 stsp {
1857 80ddbec8 2018-04-29 stsp endwin();
1858 c70c5802 2018-08-01 stsp fprintf(stderr,
1859 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1860 9f7d7167 2018-04-29 stsp getprogname());
1861 9f7d7167 2018-04-29 stsp exit(1);
1862 80ddbec8 2018-04-29 stsp }
1863 80ddbec8 2018-04-29 stsp
1864 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1865 80ddbec8 2018-04-29 stsp static const struct got_error *
1866 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1867 963b370f 2018-05-20 stsp {
1868 00dfcb92 2018-06-11 stsp char *vis = NULL;
1869 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1870 963b370f 2018-05-20 stsp
1871 963b370f 2018-05-20 stsp *ws = NULL;
1872 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1873 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1874 00dfcb92 2018-06-11 stsp int vislen;
1875 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1876 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1877 00dfcb92 2018-06-11 stsp
1878 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1879 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1880 00dfcb92 2018-06-11 stsp if (err)
1881 00dfcb92 2018-06-11 stsp return err;
1882 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1883 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1884 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1885 a7f50699 2018-06-11 stsp goto done;
1886 a7f50699 2018-06-11 stsp }
1887 00dfcb92 2018-06-11 stsp }
1888 963b370f 2018-05-20 stsp
1889 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1890 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1891 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1892 a7f50699 2018-06-11 stsp goto done;
1893 a7f50699 2018-06-11 stsp }
1894 963b370f 2018-05-20 stsp
1895 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1896 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1897 a7f50699 2018-06-11 stsp done:
1898 00dfcb92 2018-06-11 stsp free(vis);
1899 963b370f 2018-05-20 stsp if (err) {
1900 963b370f 2018-05-20 stsp free(*ws);
1901 963b370f 2018-05-20 stsp *ws = NULL;
1902 963b370f 2018-05-20 stsp *wlen = 0;
1903 963b370f 2018-05-20 stsp }
1904 963b370f 2018-05-20 stsp return err;
1905 145b6838 2022-06-16 stsp }
1906 145b6838 2022-06-16 stsp
1907 145b6838 2022-06-16 stsp static const struct got_error *
1908 145b6838 2022-06-16 stsp expand_tab(char **ptr, const char *src)
1909 145b6838 2022-06-16 stsp {
1910 145b6838 2022-06-16 stsp char *dst;
1911 145b6838 2022-06-16 stsp size_t len, n, idx = 0, sz = 0;
1912 145b6838 2022-06-16 stsp
1913 145b6838 2022-06-16 stsp *ptr = NULL;
1914 145b6838 2022-06-16 stsp n = len = strlen(src);
1915 6e1c41ad 2022-06-16 mark dst = malloc(n + 1);
1916 145b6838 2022-06-16 stsp if (dst == NULL)
1917 145b6838 2022-06-16 stsp return got_error_from_errno("malloc");
1918 145b6838 2022-06-16 stsp
1919 145b6838 2022-06-16 stsp while (idx < len && src[idx]) {
1920 145b6838 2022-06-16 stsp const char c = src[idx];
1921 145b6838 2022-06-16 stsp
1922 145b6838 2022-06-16 stsp if (c == '\t') {
1923 145b6838 2022-06-16 stsp size_t nb = TABSIZE - sz % TABSIZE;
1924 367ddf28 2022-06-16 mark char *p;
1925 367ddf28 2022-06-16 mark
1926 367ddf28 2022-06-16 mark p = realloc(dst, n + nb);
1927 6e1c41ad 2022-06-16 mark if (p == NULL) {
1928 6e1c41ad 2022-06-16 mark free(dst);
1929 6e1c41ad 2022-06-16 mark return got_error_from_errno("realloc");
1930 6e1c41ad 2022-06-16 mark
1931 6e1c41ad 2022-06-16 mark }
1932 6e1c41ad 2022-06-16 mark dst = p;
1933 145b6838 2022-06-16 stsp n += nb;
1934 6e1c41ad 2022-06-16 mark memset(dst + sz, ' ', nb);
1935 145b6838 2022-06-16 stsp sz += nb;
1936 145b6838 2022-06-16 stsp } else
1937 145b6838 2022-06-16 stsp dst[sz++] = src[idx];
1938 145b6838 2022-06-16 stsp ++idx;
1939 145b6838 2022-06-16 stsp }
1940 145b6838 2022-06-16 stsp
1941 145b6838 2022-06-16 stsp dst[sz] = '\0';
1942 145b6838 2022-06-16 stsp *ptr = dst;
1943 145b6838 2022-06-16 stsp return NULL;
1944 963b370f 2018-05-20 stsp }
1945 963b370f 2018-05-20 stsp
1946 4e4a9ac8 2022-06-17 op /*
1947 4e4a9ac8 2022-06-17 op * Advance at most n columns from wline starting at offset off.
1948 4e4a9ac8 2022-06-17 op * Return the index to the first character after the span operation.
1949 4e4a9ac8 2022-06-17 op * Return the combined column width of all spanned wide character in
1950 4e4a9ac8 2022-06-17 op * *rcol.
1951 ccda2f4d 2022-06-16 stsp */
1952 4e4a9ac8 2022-06-17 op static int
1953 4e4a9ac8 2022-06-17 op span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1954 4e4a9ac8 2022-06-17 op {
1955 4e4a9ac8 2022-06-17 op int width, i, cols = 0;
1956 ccda2f4d 2022-06-16 stsp
1957 4e4a9ac8 2022-06-17 op if (n == 0) {
1958 4e4a9ac8 2022-06-17 op *rcol = cols;
1959 4e4a9ac8 2022-06-17 op return off;
1960 4e4a9ac8 2022-06-17 op }
1961 ccda2f4d 2022-06-16 stsp
1962 4e4a9ac8 2022-06-17 op for (i = off; wline[i] != L'\0'; ++i) {
1963 4e4a9ac8 2022-06-17 op if (wline[i] == L'\t')
1964 4e4a9ac8 2022-06-17 op width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1965 4e4a9ac8 2022-06-17 op else
1966 4e4a9ac8 2022-06-17 op width = wcwidth(wline[i]);
1967 ccda2f4d 2022-06-16 stsp
1968 4e4a9ac8 2022-06-17 op if (width == -1) {
1969 4e4a9ac8 2022-06-17 op width = 1;
1970 4e4a9ac8 2022-06-17 op wline[i] = L'.';
1971 ccda2f4d 2022-06-16 stsp }
1972 ccda2f4d 2022-06-16 stsp
1973 4e4a9ac8 2022-06-17 op if (cols + width > n)
1974 4e4a9ac8 2022-06-17 op break;
1975 4e4a9ac8 2022-06-17 op cols += width;
1976 ccda2f4d 2022-06-16 stsp }
1977 ccda2f4d 2022-06-16 stsp
1978 4e4a9ac8 2022-06-17 op *rcol = cols;
1979 4e4a9ac8 2022-06-17 op return i;
1980 ccda2f4d 2022-06-16 stsp }
1981 ccda2f4d 2022-06-16 stsp
1982 ccda2f4d 2022-06-16 stsp /*
1983 ccda2f4d 2022-06-16 stsp * Format a line for display, ensuring that it won't overflow a width limit.
1984 ccda2f4d 2022-06-16 stsp * With scrolling, the width returned refers to the scrolled version of the
1985 ccda2f4d 2022-06-16 stsp * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1986 ccda2f4d 2022-06-16 stsp */
1987 ccda2f4d 2022-06-16 stsp static const struct got_error *
1988 ccda2f4d 2022-06-16 stsp format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1989 ccda2f4d 2022-06-16 stsp const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1990 ccda2f4d 2022-06-16 stsp {
1991 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1992 4e4a9ac8 2022-06-17 op int cols;
1993 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1994 145b6838 2022-06-16 stsp char *exstr = NULL;
1995 963b370f 2018-05-20 stsp size_t wlen;
1996 4e4a9ac8 2022-06-17 op int i, scrollx;
1997 963b370f 2018-05-20 stsp
1998 963b370f 2018-05-20 stsp *wlinep = NULL;
1999 b700b5d6 2018-07-10 stsp *widthp = 0;
2000 963b370f 2018-05-20 stsp
2001 145b6838 2022-06-16 stsp if (expand) {
2002 145b6838 2022-06-16 stsp err = expand_tab(&exstr, line);
2003 145b6838 2022-06-16 stsp if (err)
2004 145b6838 2022-06-16 stsp return err;
2005 145b6838 2022-06-16 stsp }
2006 145b6838 2022-06-16 stsp
2007 145b6838 2022-06-16 stsp err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2008 145b6838 2022-06-16 stsp free(exstr);
2009 963b370f 2018-05-20 stsp if (err)
2010 963b370f 2018-05-20 stsp return err;
2011 963b370f 2018-05-20 stsp
2012 4e4a9ac8 2022-06-17 op scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2013 ccda2f4d 2022-06-16 stsp
2014 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
2015 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2016 3f670bfb 2020-12-10 stsp wlen--;
2017 3f670bfb 2020-12-10 stsp }
2018 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
2019 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2020 3f670bfb 2020-12-10 stsp wlen--;
2021 3f670bfb 2020-12-10 stsp }
2022 3f670bfb 2020-12-10 stsp
2023 4e4a9ac8 2022-06-17 op i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2024 4e4a9ac8 2022-06-17 op wline[i] = L'\0';
2025 27a741e5 2019-09-11 stsp
2026 b700b5d6 2018-07-10 stsp if (widthp)
2027 b700b5d6 2018-07-10 stsp *widthp = cols;
2028 ccda2f4d 2022-06-16 stsp if (scrollxp)
2029 ccda2f4d 2022-06-16 stsp *scrollxp = scrollx;
2030 963b370f 2018-05-20 stsp if (err)
2031 963b370f 2018-05-20 stsp free(wline);
2032 963b370f 2018-05-20 stsp else
2033 963b370f 2018-05-20 stsp *wlinep = wline;
2034 963b370f 2018-05-20 stsp return err;
2035 963b370f 2018-05-20 stsp }
2036 963b370f 2018-05-20 stsp
2037 8b473291 2019-02-21 stsp static const struct got_error*
2038 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
2039 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
2040 8b473291 2019-02-21 stsp {
2041 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
2042 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
2043 8b473291 2019-02-21 stsp char *s;
2044 8b473291 2019-02-21 stsp const char *name;
2045 8b473291 2019-02-21 stsp
2046 8b473291 2019-02-21 stsp *refs_str = NULL;
2047 8b473291 2019-02-21 stsp
2048 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
2049 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
2050 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
2051 52b5abe1 2019-08-13 stsp int cmp;
2052 52b5abe1 2019-08-13 stsp
2053 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
2054 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
2055 8b473291 2019-02-21 stsp continue;
2056 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
2057 8b473291 2019-02-21 stsp name += 5;
2058 cc488aa7 2022-01-23 stsp if (strncmp(name, "got/", 4) == 0 &&
2059 cc488aa7 2022-01-23 stsp strncmp(name, "got/backup/", 11) != 0)
2060 7143d404 2019-03-12 stsp continue;
2061 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
2062 8b473291 2019-02-21 stsp name += 6;
2063 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
2064 8b473291 2019-02-21 stsp name += 8;
2065 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
2066 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
2067 79cc719f 2020-04-24 stsp continue;
2068 79cc719f 2020-04-24 stsp }
2069 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
2070 48cae60d 2020-09-22 stsp if (err)
2071 48cae60d 2020-09-22 stsp break;
2072 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
2073 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
2074 5d844a1e 2019-08-13 stsp if (err) {
2075 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
2076 48cae60d 2020-09-22 stsp free(ref_id);
2077 5d844a1e 2019-08-13 stsp break;
2078 48cae60d 2020-09-22 stsp }
2079 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
2080 5d844a1e 2019-08-13 stsp err = NULL;
2081 5d844a1e 2019-08-13 stsp tag = NULL;
2082 5d844a1e 2019-08-13 stsp }
2083 52b5abe1 2019-08-13 stsp }
2084 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
2085 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
2086 48cae60d 2020-09-22 stsp free(ref_id);
2087 52b5abe1 2019-08-13 stsp if (tag)
2088 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
2089 52b5abe1 2019-08-13 stsp if (cmp != 0)
2090 52b5abe1 2019-08-13 stsp continue;
2091 8b473291 2019-02-21 stsp s = *refs_str;
2092 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
2093 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
2094 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2095 8b473291 2019-02-21 stsp free(s);
2096 8b473291 2019-02-21 stsp *refs_str = NULL;
2097 8b473291 2019-02-21 stsp break;
2098 8b473291 2019-02-21 stsp }
2099 8b473291 2019-02-21 stsp free(s);
2100 8b473291 2019-02-21 stsp }
2101 8b473291 2019-02-21 stsp
2102 8b473291 2019-02-21 stsp return err;
2103 8b473291 2019-02-21 stsp }
2104 8b473291 2019-02-21 stsp
2105 963b370f 2018-05-20 stsp static const struct got_error *
2106 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2107 27a741e5 2019-09-11 stsp int col_tab_align)
2108 5813d178 2019-03-09 stsp {
2109 e6b8b890 2020-12-29 naddy char *smallerthan;
2110 5813d178 2019-03-09 stsp
2111 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
2112 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
2113 5813d178 2019-03-09 stsp author = smallerthan + 1;
2114 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
2115 ccda2f4d 2022-06-16 stsp return format_line(wauthor, author_width, NULL, author, 0, limit,
2116 ccda2f4d 2022-06-16 stsp col_tab_align, 0);
2117 5813d178 2019-03-09 stsp }
2118 5813d178 2019-03-09 stsp
2119 5813d178 2019-03-09 stsp static const struct got_error *
2120 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
2121 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
2122 8fdc79fe 2020-12-01 naddy int author_display_cols)
2123 80ddbec8 2018-04-29 stsp {
2124 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2125 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
2126 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2127 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
2128 5813d178 2019-03-09 stsp char *author = NULL;
2129 ccda2f4d 2022-06-16 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
2130 bb737323 2018-05-20 stsp int author_width, logmsg_width;
2131 5813d178 2019-03-09 stsp char *newline, *line = NULL;
2132 ccda2f4d 2022-06-16 stsp int col, limit, scrollx;
2133 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
2134 ccb26ccd 2018-11-05 stsp struct tm tm;
2135 45d799e2 2018-12-23 stsp time_t committer_time;
2136 11b20872 2019-11-08 stsp struct tog_color *tc;
2137 80ddbec8 2018-04-29 stsp
2138 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2139 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
2140 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
2141 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2142 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
2143 b39d25c7 2018-07-10 stsp
2144 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
2145 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
2146 b39d25c7 2018-07-10 stsp else
2147 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2148 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
2149 11b20872 2019-11-08 stsp if (tc)
2150 11b20872 2019-11-08 stsp wattr_on(view->window,
2151 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2152 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
2153 11b20872 2019-11-08 stsp if (tc)
2154 11b20872 2019-11-08 stsp wattr_off(view->window,
2155 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2156 27a741e5 2019-09-11 stsp col = limit;
2157 b39d25c7 2018-07-10 stsp if (col > avail)
2158 b39d25c7 2018-07-10 stsp goto done;
2159 6570a66d 2019-11-08 stsp
2160 6570a66d 2019-11-08 stsp if (avail >= 120) {
2161 6570a66d 2019-11-08 stsp char *id_str;
2162 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
2163 6570a66d 2019-11-08 stsp if (err)
2164 6570a66d 2019-11-08 stsp goto done;
2165 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2166 11b20872 2019-11-08 stsp if (tc)
2167 11b20872 2019-11-08 stsp wattr_on(view->window,
2168 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2169 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
2170 11b20872 2019-11-08 stsp if (tc)
2171 11b20872 2019-11-08 stsp wattr_off(view->window,
2172 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2173 6570a66d 2019-11-08 stsp free(id_str);
2174 6570a66d 2019-11-08 stsp col += 9;
2175 6570a66d 2019-11-08 stsp if (col > avail)
2176 6570a66d 2019-11-08 stsp goto done;
2177 6570a66d 2019-11-08 stsp }
2178 b39d25c7 2018-07-10 stsp
2179 10aab77f 2022-07-19 op if (s->use_committer)
2180 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(commit));
2181 10aab77f 2022-07-19 op else
2182 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(commit));
2183 5813d178 2019-03-09 stsp if (author == NULL) {
2184 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2185 80ddbec8 2018-04-29 stsp goto done;
2186 80ddbec8 2018-04-29 stsp }
2187 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
2188 bb737323 2018-05-20 stsp if (err)
2189 bb737323 2018-05-20 stsp goto done;
2190 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2191 11b20872 2019-11-08 stsp if (tc)
2192 11b20872 2019-11-08 stsp wattr_on(view->window,
2193 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2194 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
2195 bb737323 2018-05-20 stsp col += author_width;
2196 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2197 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2198 bb737323 2018-05-20 stsp col++;
2199 bb737323 2018-05-20 stsp author_width++;
2200 bb737323 2018-05-20 stsp }
2201 f0f62654 2022-09-08 mark if (tc)
2202 f0f62654 2022-09-08 mark wattr_off(view->window,
2203 f0f62654 2022-09-08 mark COLOR_PAIR(tc->colorpair), NULL);
2204 9c2eaf34 2018-05-20 stsp if (col > avail)
2205 9c2eaf34 2018-05-20 stsp goto done;
2206 80ddbec8 2018-04-29 stsp
2207 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2208 5943eee2 2019-08-13 stsp if (err)
2209 6d9fbc00 2018-04-29 stsp goto done;
2210 bb737323 2018-05-20 stsp logmsg = logmsg0;
2211 bb737323 2018-05-20 stsp while (*logmsg == '\n')
2212 bb737323 2018-05-20 stsp logmsg++;
2213 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
2214 bb737323 2018-05-20 stsp if (newline)
2215 bb737323 2018-05-20 stsp *newline = '\0';
2216 ccda2f4d 2022-06-16 stsp limit = avail - col;
2217 49b24ee5 2022-07-03 mark if (view->child && !view_is_hsplit_top(view) && limit > 0)
2218 4d1f6af3 2022-06-17 op limit--; /* for the border */
2219 ccda2f4d 2022-06-16 stsp err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2220 ccda2f4d 2022-06-16 stsp limit, col, 1);
2221 29688b02 2022-06-16 stsp if (err)
2222 29688b02 2022-06-16 stsp goto done;
2223 ccda2f4d 2022-06-16 stsp waddwstr(view->window, &wlogmsg[scrollx]);
2224 29688b02 2022-06-16 stsp col += MAX(logmsg_width, 0);
2225 27a741e5 2019-09-11 stsp while (col < avail) {
2226 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2227 bb737323 2018-05-20 stsp col++;
2228 881b2d3e 2018-04-30 stsp }
2229 80ddbec8 2018-04-29 stsp done:
2230 80ddbec8 2018-04-29 stsp free(logmsg0);
2231 bb737323 2018-05-20 stsp free(wlogmsg);
2232 5813d178 2019-03-09 stsp free(author);
2233 bb737323 2018-05-20 stsp free(wauthor);
2234 80ddbec8 2018-04-29 stsp free(line);
2235 80ddbec8 2018-04-29 stsp return err;
2236 80ddbec8 2018-04-29 stsp }
2237 26ed57b2 2018-05-19 stsp
2238 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
2239 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
2240 899d86c2 2018-05-10 stsp struct got_object_id *id)
2241 80ddbec8 2018-04-29 stsp {
2242 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
2243 e15c42de 2022-09-05 op struct got_object_id *dup;
2244 80ddbec8 2018-04-29 stsp
2245 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2246 80ddbec8 2018-04-29 stsp if (entry == NULL)
2247 899d86c2 2018-05-10 stsp return NULL;
2248 99db9666 2018-05-07 stsp
2249 e15c42de 2022-09-05 op dup = got_object_id_dup(id);
2250 e15c42de 2022-09-05 op if (dup == NULL) {
2251 e15c42de 2022-09-05 op free(entry);
2252 e15c42de 2022-09-05 op return NULL;
2253 e15c42de 2022-09-05 op }
2254 e15c42de 2022-09-05 op
2255 e15c42de 2022-09-05 op entry->id = dup;
2256 99db9666 2018-05-07 stsp entry->commit = commit;
2257 899d86c2 2018-05-10 stsp return entry;
2258 99db9666 2018-05-07 stsp }
2259 80ddbec8 2018-04-29 stsp
2260 99db9666 2018-05-07 stsp static void
2261 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2262 99db9666 2018-05-07 stsp {
2263 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2264 99db9666 2018-05-07 stsp
2265 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2266 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2267 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2268 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2269 e15c42de 2022-09-05 op free(entry->id);
2270 99db9666 2018-05-07 stsp free(entry);
2271 99db9666 2018-05-07 stsp }
2272 99db9666 2018-05-07 stsp
2273 99db9666 2018-05-07 stsp static void
2274 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2275 99db9666 2018-05-07 stsp {
2276 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2277 99db9666 2018-05-07 stsp pop_commit(commits);
2278 c4972b91 2018-05-07 stsp }
2279 c4972b91 2018-05-07 stsp
2280 c4972b91 2018-05-07 stsp static const struct got_error *
2281 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2282 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2283 13add988 2019-10-15 stsp {
2284 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2285 13add988 2019-10-15 stsp regmatch_t regmatch;
2286 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2287 13add988 2019-10-15 stsp
2288 13add988 2019-10-15 stsp *have_match = 0;
2289 13add988 2019-10-15 stsp
2290 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2291 13add988 2019-10-15 stsp if (err)
2292 13add988 2019-10-15 stsp return err;
2293 13add988 2019-10-15 stsp
2294 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2295 13add988 2019-10-15 stsp if (err)
2296 13add988 2019-10-15 stsp goto done;
2297 13add988 2019-10-15 stsp
2298 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2299 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2300 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2301 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2302 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2303 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2304 13add988 2019-10-15 stsp *have_match = 1;
2305 13add988 2019-10-15 stsp done:
2306 13add988 2019-10-15 stsp free(id_str);
2307 13add988 2019-10-15 stsp free(logmsg);
2308 13add988 2019-10-15 stsp return err;
2309 13add988 2019-10-15 stsp }
2310 13add988 2019-10-15 stsp
2311 13add988 2019-10-15 stsp static const struct got_error *
2312 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2313 c4972b91 2018-05-07 stsp {
2314 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2315 9ba79e04 2018-06-11 stsp
2316 1a76625f 2018-10-22 stsp /*
2317 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2318 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2319 1a76625f 2018-10-22 stsp * while updating the display.
2320 1a76625f 2018-10-22 stsp */
2321 4e0d2870 2020-12-07 naddy do {
2322 d9787ed8 2022-09-10 op struct got_object_id id;
2323 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2324 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2325 568eae95 2022-09-11 mark int limit_match = 0;
2326 1a76625f 2018-10-22 stsp int errcode;
2327 899d86c2 2018-05-10 stsp
2328 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2329 4e0d2870 2020-12-07 naddy NULL, NULL);
2330 d9787ed8 2022-09-10 op if (err)
2331 ecb28ae0 2018-07-16 stsp break;
2332 899d86c2 2018-05-10 stsp
2333 d9787ed8 2022-09-10 op err = got_object_open_as_commit(&commit, a->repo, &id);
2334 9ba79e04 2018-06-11 stsp if (err)
2335 9ba79e04 2018-06-11 stsp break;
2336 d9787ed8 2022-09-10 op entry = alloc_commit_queue_entry(commit, &id);
2337 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2338 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2339 9ba79e04 2018-06-11 stsp break;
2340 9ba79e04 2018-06-11 stsp }
2341 93e45b7c 2018-09-24 stsp
2342 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2343 1a76625f 2018-10-22 stsp if (errcode) {
2344 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2345 13add988 2019-10-15 stsp "pthread_mutex_lock");
2346 1a76625f 2018-10-22 stsp break;
2347 1a76625f 2018-10-22 stsp }
2348 1a76625f 2018-10-22 stsp
2349 568eae95 2022-09-11 mark entry->idx = a->real_commits->ncommits;
2350 568eae95 2022-09-11 mark TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2351 568eae95 2022-09-11 mark a->real_commits->ncommits++;
2352 1a76625f 2018-10-22 stsp
2353 568eae95 2022-09-11 mark if (*a->limiting) {
2354 568eae95 2022-09-11 mark err = match_commit(&limit_match, &id, commit,
2355 568eae95 2022-09-11 mark a->limit_regex);
2356 568eae95 2022-09-11 mark if (err)
2357 568eae95 2022-09-11 mark break;
2358 568eae95 2022-09-11 mark
2359 568eae95 2022-09-11 mark if (limit_match) {
2360 568eae95 2022-09-11 mark struct commit_queue_entry *matched;
2361 568eae95 2022-09-11 mark
2362 568eae95 2022-09-11 mark matched = alloc_commit_queue_entry(
2363 568eae95 2022-09-11 mark entry->commit, entry->id);
2364 568eae95 2022-09-11 mark if (matched == NULL) {
2365 568eae95 2022-09-11 mark err = got_error_from_errno(
2366 568eae95 2022-09-11 mark "alloc_commit_queue_entry");
2367 568eae95 2022-09-11 mark break;
2368 568eae95 2022-09-11 mark }
2369 34a842a4 2022-09-18 mark matched->commit = entry->commit;
2370 34a842a4 2022-09-18 mark got_object_commit_retain(entry->commit);
2371 568eae95 2022-09-11 mark
2372 568eae95 2022-09-11 mark matched->idx = a->limit_commits->ncommits;
2373 568eae95 2022-09-11 mark TAILQ_INSERT_TAIL(&a->limit_commits->head,
2374 568eae95 2022-09-11 mark matched, entry);
2375 568eae95 2022-09-11 mark a->limit_commits->ncommits++;
2376 568eae95 2022-09-11 mark }
2377 568eae95 2022-09-11 mark
2378 568eae95 2022-09-11 mark /*
2379 568eae95 2022-09-11 mark * This is how we signal log_thread() that we
2380 568eae95 2022-09-11 mark * have found a match, and that it should be
2381 568eae95 2022-09-11 mark * counted as a new entry for the view.
2382 568eae95 2022-09-11 mark */
2383 568eae95 2022-09-11 mark a->limit_match = limit_match;
2384 568eae95 2022-09-11 mark }
2385 568eae95 2022-09-11 mark
2386 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2387 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2388 7c1452c1 2020-03-26 stsp int have_match;
2389 d9787ed8 2022-09-10 op err = match_commit(&have_match, &id, commit, a->regex);
2390 7c1452c1 2020-03-26 stsp if (err)
2391 7c1452c1 2020-03-26 stsp break;
2392 568eae95 2022-09-11 mark
2393 568eae95 2022-09-11 mark if (*a->limiting) {
2394 568eae95 2022-09-11 mark if (limit_match && have_match)
2395 568eae95 2022-09-11 mark *a->search_next_done =
2396 568eae95 2022-09-11 mark TOG_SEARCH_HAVE_MORE;
2397 568eae95 2022-09-11 mark } else if (have_match)
2398 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2399 13add988 2019-10-15 stsp }
2400 13add988 2019-10-15 stsp
2401 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2402 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2403 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2404 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2405 7c1452c1 2020-03-26 stsp if (err)
2406 13add988 2019-10-15 stsp break;
2407 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2408 899d86c2 2018-05-10 stsp
2409 9ba79e04 2018-06-11 stsp return err;
2410 0553a4e3 2018-04-30 stsp }
2411 0553a4e3 2018-04-30 stsp
2412 2b779855 2020-12-05 naddy static void
2413 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2414 2b779855 2020-12-05 naddy {
2415 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2416 2b779855 2020-12-05 naddy int ncommits = 0;
2417 2b779855 2020-12-05 naddy
2418 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2419 2b779855 2020-12-05 naddy while (entry) {
2420 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2421 2b779855 2020-12-05 naddy s->selected_entry = entry;
2422 2b779855 2020-12-05 naddy break;
2423 2b779855 2020-12-05 naddy }
2424 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2425 2b779855 2020-12-05 naddy ncommits++;
2426 2b779855 2020-12-05 naddy }
2427 2b779855 2020-12-05 naddy }
2428 2b779855 2020-12-05 naddy
2429 0553a4e3 2018-04-30 stsp static const struct got_error *
2430 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2431 0553a4e3 2018-04-30 stsp {
2432 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2433 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2434 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2435 cbb0c8d7 2022-08-12 mark int limit = view->nlines;
2436 60493ae3 2019-06-20 stsp int width;
2437 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2438 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2439 8b473291 2019-02-21 stsp char *refs_str = NULL;
2440 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2441 11b20872 2019-11-08 stsp struct tog_color *tc;
2442 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2443 cbb0c8d7 2022-08-12 mark
2444 cbb0c8d7 2022-08-12 mark if (view_is_hsplit_top(view))
2445 cbb0c8d7 2022-08-12 mark --limit; /* account for border */
2446 0553a4e3 2018-04-30 stsp
2447 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2448 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2449 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2450 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2451 1a76625f 2018-10-22 stsp if (err)
2452 ecb28ae0 2018-07-16 stsp return err;
2453 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2454 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2455 d2075bf3 2020-12-25 stsp if (refs) {
2456 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2457 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2458 d2075bf3 2020-12-25 stsp if (err)
2459 d2075bf3 2020-12-25 stsp goto done;
2460 d2075bf3 2020-12-25 stsp }
2461 867c6645 2018-07-10 stsp }
2462 359bfafd 2019-02-22 stsp
2463 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2464 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2465 1a76625f 2018-10-22 stsp
2466 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2467 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2468 568eae95 2022-09-11 mark entry ? entry->idx + 1 : 0, s->commits->ncommits,
2469 38d166d8 2022-09-23 stsp (view->searching && !view->search_next_done) ?
2470 38d166d8 2022-09-23 stsp "searching..." : "loading...") == -1) {
2471 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2472 8f4ed634 2020-03-26 stsp goto done;
2473 8f4ed634 2020-03-26 stsp }
2474 8f4ed634 2020-03-26 stsp } else {
2475 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2476 568eae95 2022-09-11 mark const char *limit_str = NULL;
2477 f9686aa5 2020-03-27 stsp
2478 f9686aa5 2020-03-27 stsp if (view->searching) {
2479 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2480 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2481 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2482 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2483 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2484 f9686aa5 2020-03-27 stsp search_str = "searching...";
2485 f9686aa5 2020-03-27 stsp }
2486 f9686aa5 2020-03-27 stsp
2487 568eae95 2022-09-11 mark if (s->limit_view && s->commits->ncommits == 0)
2488 568eae95 2022-09-11 mark limit_str = "no matches found";
2489 568eae95 2022-09-11 mark
2490 568eae95 2022-09-11 mark if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2491 568eae95 2022-09-11 mark entry ? entry->idx + 1 : 0, s->commits->ncommits,
2492 568eae95 2022-09-11 mark search_str ? search_str : (refs_str ? refs_str : ""),
2493 568eae95 2022-09-11 mark limit_str ? limit_str : "") == -1) {
2494 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2495 8f4ed634 2020-03-26 stsp goto done;
2496 8f4ed634 2020-03-26 stsp }
2497 8b473291 2019-02-21 stsp }
2498 1a76625f 2018-10-22 stsp
2499 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2500 87411fa9 2022-06-16 stsp if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2501 87411fa9 2022-06-16 stsp "........................................",
2502 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2503 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2504 1a76625f 2018-10-22 stsp header = NULL;
2505 1a76625f 2018-10-22 stsp goto done;
2506 1a76625f 2018-10-22 stsp }
2507 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2508 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2509 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
2510 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2511 1a76625f 2018-10-22 stsp header = NULL;
2512 1a76625f 2018-10-22 stsp goto done;
2513 ecb28ae0 2018-07-16 stsp }
2514 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2515 1a76625f 2018-10-22 stsp if (err)
2516 1a76625f 2018-10-22 stsp goto done;
2517 867c6645 2018-07-10 stsp
2518 2814baeb 2018-08-01 stsp werase(view->window);
2519 867c6645 2018-07-10 stsp
2520 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2521 a3404814 2018-09-02 stsp wstandout(view->window);
2522 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2523 11b20872 2019-11-08 stsp if (tc)
2524 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2525 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2526 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2527 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2528 1a76625f 2018-10-22 stsp width++;
2529 1a76625f 2018-10-22 stsp }
2530 0c6ad1bc 2022-09-09 mark if (tc)
2531 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2532 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2533 a3404814 2018-09-02 stsp wstandend(view->window);
2534 ecb28ae0 2018-07-16 stsp free(wline);
2535 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2536 1a76625f 2018-10-22 stsp goto done;
2537 0553a4e3 2018-04-30 stsp
2538 29688b02 2022-06-16 stsp /* Grow author column size if necessary, and set view->maxx. */
2539 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2540 5813d178 2019-03-09 stsp ncommits = 0;
2541 145b6838 2022-06-16 stsp view->maxx = 0;
2542 5813d178 2019-03-09 stsp while (entry) {
2543 10aab77f 2022-07-19 op struct got_commit_object *c = entry->commit;
2544 145b6838 2022-06-16 stsp char *author, *eol, *msg, *msg0;
2545 29688b02 2022-06-16 stsp wchar_t *wauthor, *wmsg;
2546 5813d178 2019-03-09 stsp int width;
2547 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2548 5813d178 2019-03-09 stsp break;
2549 10aab77f 2022-07-19 op if (s->use_committer)
2550 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(c));
2551 10aab77f 2022-07-19 op else
2552 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(c));
2553 5813d178 2019-03-09 stsp if (author == NULL) {
2554 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2555 5813d178 2019-03-09 stsp goto done;
2556 5813d178 2019-03-09 stsp }
2557 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2558 27a741e5 2019-09-11 stsp date_display_cols);
2559 5813d178 2019-03-09 stsp if (author_cols < width)
2560 5813d178 2019-03-09 stsp author_cols = width;
2561 5813d178 2019-03-09 stsp free(wauthor);
2562 5813d178 2019-03-09 stsp free(author);
2563 a310d9c3 2022-07-21 florian if (err)
2564 a310d9c3 2022-07-21 florian goto done;
2565 10aab77f 2022-07-19 op err = got_object_commit_get_logmsg(&msg0, c);
2566 145b6838 2022-06-16 stsp if (err)
2567 145b6838 2022-06-16 stsp goto done;
2568 145b6838 2022-06-16 stsp msg = msg0;
2569 145b6838 2022-06-16 stsp while (*msg == '\n')
2570 145b6838 2022-06-16 stsp ++msg;
2571 145b6838 2022-06-16 stsp if ((eol = strchr(msg, '\n')))
2572 29688b02 2022-06-16 stsp *eol = '\0';
2573 ccda2f4d 2022-06-16 stsp err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2574 29688b02 2022-06-16 stsp date_display_cols + author_cols, 0);
2575 29688b02 2022-06-16 stsp if (err)
2576 29688b02 2022-06-16 stsp goto done;
2577 29688b02 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
2578 145b6838 2022-06-16 stsp free(msg0);
2579 29688b02 2022-06-16 stsp free(wmsg);
2580 7ca04879 2019-10-19 stsp ncommits++;
2581 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2582 5813d178 2019-03-09 stsp }
2583 5813d178 2019-03-09 stsp
2584 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2585 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2586 867c6645 2018-07-10 stsp ncommits = 0;
2587 899d86c2 2018-05-10 stsp while (entry) {
2588 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2589 899d86c2 2018-05-10 stsp break;
2590 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2591 2814baeb 2018-08-01 stsp wstandout(view->window);
2592 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2593 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2594 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2595 2814baeb 2018-08-01 stsp wstandend(view->window);
2596 0553a4e3 2018-04-30 stsp if (err)
2597 60493ae3 2019-06-20 stsp goto done;
2598 0553a4e3 2018-04-30 stsp ncommits++;
2599 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2600 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2601 80ddbec8 2018-04-29 stsp }
2602 80ddbec8 2018-04-29 stsp
2603 9b058f45 2022-06-30 mark view_border(view);
2604 1a76625f 2018-10-22 stsp done:
2605 1a76625f 2018-10-22 stsp free(id_str);
2606 8b473291 2019-02-21 stsp free(refs_str);
2607 1a76625f 2018-10-22 stsp free(ncommits_str);
2608 1a76625f 2018-10-22 stsp free(header);
2609 80ddbec8 2018-04-29 stsp return err;
2610 9f7d7167 2018-04-29 stsp }
2611 07b55e75 2018-05-10 stsp
2612 07b55e75 2018-05-10 stsp static void
2613 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2614 07b55e75 2018-05-10 stsp {
2615 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2616 07b55e75 2018-05-10 stsp int nscrolled = 0;
2617 07b55e75 2018-05-10 stsp
2618 568eae95 2022-09-11 mark entry = TAILQ_FIRST(&s->commits->head);
2619 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2620 07b55e75 2018-05-10 stsp return;
2621 9f7d7167 2018-04-29 stsp
2622 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2623 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2624 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2625 07b55e75 2018-05-10 stsp if (entry) {
2626 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2627 07b55e75 2018-05-10 stsp nscrolled++;
2628 07b55e75 2018-05-10 stsp }
2629 07b55e75 2018-05-10 stsp }
2630 aa075928 2018-05-10 stsp }
2631 aa075928 2018-05-10 stsp
2632 aa075928 2018-05-10 stsp static const struct got_error *
2633 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2634 aa075928 2018-05-10 stsp {
2635 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2636 5e224a3e 2019-02-22 stsp int errcode;
2637 8a42fca8 2019-02-22 stsp
2638 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2639 aa075928 2018-05-10 stsp
2640 5629093a 2022-07-11 stsp while (!ta->log_complete && !tog_thread_error &&
2641 5629093a 2022-07-11 stsp (ta->commits_needed > 0 || ta->load_all)) {
2642 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2643 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2644 7aafa0d1 2019-02-22 stsp if (errcode)
2645 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2646 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2647 7c1452c1 2020-03-26 stsp
2648 7c1452c1 2020-03-26 stsp /*
2649 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2650 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2651 7c1452c1 2020-03-26 stsp */
2652 7c1452c1 2020-03-26 stsp if (!wait)
2653 7c1452c1 2020-03-26 stsp break;
2654 7c1452c1 2020-03-26 stsp
2655 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2656 ffe38506 2020-12-01 naddy show_log_view(view);
2657 7c1452c1 2020-03-26 stsp update_panels();
2658 7c1452c1 2020-03-26 stsp doupdate();
2659 7c1452c1 2020-03-26 stsp
2660 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2661 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2662 82954512 2020-02-03 stsp if (errcode)
2663 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2664 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2665 82954512 2020-02-03 stsp
2666 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2667 ffe38506 2020-12-01 naddy show_log_view(view);
2668 7c1452c1 2020-03-26 stsp update_panels();
2669 7c1452c1 2020-03-26 stsp doupdate();
2670 5e224a3e 2019-02-22 stsp }
2671 5e224a3e 2019-02-22 stsp
2672 5e224a3e 2019-02-22 stsp return NULL;
2673 5e224a3e 2019-02-22 stsp }
2674 5e224a3e 2019-02-22 stsp
2675 5e224a3e 2019-02-22 stsp static const struct got_error *
2676 9b058f45 2022-06-30 mark request_log_commits(struct tog_view *view)
2677 9b058f45 2022-06-30 mark {
2678 9b058f45 2022-06-30 mark struct tog_log_view_state *state = &view->state.log;
2679 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
2680 2525dccb 2022-07-13 mark
2681 2525dccb 2022-07-13 mark if (state->thread_args.log_complete)
2682 2525dccb 2022-07-13 mark return NULL;
2683 9b058f45 2022-06-30 mark
2684 27187d45 2022-07-11 mark state->thread_args.commits_needed += view->nscrolled;
2685 9b058f45 2022-06-30 mark err = trigger_log_thread(view, 1);
2686 9b058f45 2022-06-30 mark view->nscrolled = 0;
2687 9b058f45 2022-06-30 mark
2688 9b058f45 2022-06-30 mark return err;
2689 9b058f45 2022-06-30 mark }
2690 9b058f45 2022-06-30 mark
2691 9b058f45 2022-06-30 mark static const struct got_error *
2692 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2693 5e224a3e 2019-02-22 stsp {
2694 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2695 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2696 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2697 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2698 5e224a3e 2019-02-22 stsp
2699 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2700 5e224a3e 2019-02-22 stsp return NULL;
2701 5e224a3e 2019-02-22 stsp
2702 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2703 568eae95 2022-09-11 mark if (s->commits->ncommits < ncommits_needed &&
2704 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2705 08ebd0a9 2019-02-22 stsp /*
2706 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2707 08ebd0a9 2019-02-22 stsp */
2708 94b80cfa 2022-08-01 mark s->thread_args.commits_needed +=
2709 568eae95 2022-09-11 mark ncommits_needed - s->commits->ncommits;
2710 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2711 5e224a3e 2019-02-22 stsp if (err)
2712 5e224a3e 2019-02-22 stsp return err;
2713 7aafa0d1 2019-02-22 stsp }
2714 b295e71b 2019-02-22 stsp
2715 7aafa0d1 2019-02-22 stsp do {
2716 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2717 9b058f45 2022-06-30 mark if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2718 88048b54 2019-02-21 stsp break;
2719 88048b54 2019-02-21 stsp
2720 9b058f45 2022-06-30 mark s->last_displayed_entry = pentry ?
2721 9b058f45 2022-06-30 mark pentry : s->last_displayed_entry;;
2722 aa075928 2018-05-10 stsp
2723 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2724 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2725 dd0a52c1 2018-05-20 stsp break;
2726 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2727 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2728 aa075928 2018-05-10 stsp
2729 2525dccb 2022-07-13 mark if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2730 9b058f45 2022-06-30 mark view->nscrolled += nscrolled;
2731 9b058f45 2022-06-30 mark else
2732 9b058f45 2022-06-30 mark view->nscrolled = 0;
2733 9b058f45 2022-06-30 mark
2734 dd0a52c1 2018-05-20 stsp return err;
2735 07b55e75 2018-05-10 stsp }
2736 4a7f7875 2018-05-10 stsp
2737 cd0acaa7 2018-05-20 stsp static const struct got_error *
2738 9b058f45 2022-06-30 mark open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2739 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2740 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2741 cd0acaa7 2018-05-20 stsp {
2742 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2743 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2744 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2745 cd0acaa7 2018-05-20 stsp
2746 9b058f45 2022-06-30 mark diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2747 15a94983 2018-12-23 stsp if (diff_view == NULL)
2748 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2749 ea5e7bb5 2018-08-01 stsp
2750 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2751 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2752 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2753 e5a0f69f 2018-08-18 stsp if (err == NULL)
2754 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2755 cd0acaa7 2018-05-20 stsp return err;
2756 4a7f7875 2018-05-10 stsp }
2757 4a7f7875 2018-05-10 stsp
2758 80ddbec8 2018-04-29 stsp static const struct got_error *
2759 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2760 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2761 9343a5fb 2018-06-23 stsp {
2762 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2763 941e9f74 2019-05-21 stsp
2764 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2765 941e9f74 2019-05-21 stsp if (parent == NULL)
2766 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2767 941e9f74 2019-05-21 stsp
2768 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2769 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2770 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2771 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2772 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2773 941e9f74 2019-05-21 stsp s->tree = subtree;
2774 941e9f74 2019-05-21 stsp s->selected = 0;
2775 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2776 941e9f74 2019-05-21 stsp return NULL;
2777 941e9f74 2019-05-21 stsp }
2778 941e9f74 2019-05-21 stsp
2779 941e9f74 2019-05-21 stsp static const struct got_error *
2780 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2781 a44927cc 2022-04-07 stsp struct got_commit_object *commit, const char *path)
2782 941e9f74 2019-05-21 stsp {
2783 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2784 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2785 941e9f74 2019-05-21 stsp const char *p;
2786 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2787 9343a5fb 2018-06-23 stsp
2788 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2789 941e9f74 2019-05-21 stsp p = path;
2790 941e9f74 2019-05-21 stsp while (*p) {
2791 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2792 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2793 56e0773d 2019-11-28 stsp char *te_name;
2794 33cbf02b 2020-01-12 stsp
2795 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2796 33cbf02b 2020-01-12 stsp p++;
2797 941e9f74 2019-05-21 stsp
2798 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2799 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2800 941e9f74 2019-05-21 stsp if (slash == NULL)
2801 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2802 33cbf02b 2020-01-12 stsp else
2803 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2804 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2805 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2806 56e0773d 2019-11-28 stsp break;
2807 941e9f74 2019-05-21 stsp }
2808 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2809 56e0773d 2019-11-28 stsp if (te == NULL) {
2810 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2811 56e0773d 2019-11-28 stsp free(te_name);
2812 941e9f74 2019-05-21 stsp break;
2813 941e9f74 2019-05-21 stsp }
2814 56e0773d 2019-11-28 stsp free(te_name);
2815 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2816 941e9f74 2019-05-21 stsp
2817 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2818 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2819 b03c880f 2019-05-21 stsp
2820 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2821 941e9f74 2019-05-21 stsp if (slash)
2822 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2823 941e9f74 2019-05-21 stsp else
2824 941e9f74 2019-05-21 stsp subpath = strdup(path);
2825 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2826 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2827 941e9f74 2019-05-21 stsp break;
2828 941e9f74 2019-05-21 stsp }
2829 941e9f74 2019-05-21 stsp
2830 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&tree_id, s->repo, commit,
2831 941e9f74 2019-05-21 stsp subpath);
2832 941e9f74 2019-05-21 stsp if (err)
2833 941e9f74 2019-05-21 stsp break;
2834 941e9f74 2019-05-21 stsp
2835 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2836 941e9f74 2019-05-21 stsp free(tree_id);
2837 941e9f74 2019-05-21 stsp if (err)
2838 941e9f74 2019-05-21 stsp break;
2839 941e9f74 2019-05-21 stsp
2840 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2841 941e9f74 2019-05-21 stsp if (err) {
2842 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2843 941e9f74 2019-05-21 stsp break;
2844 941e9f74 2019-05-21 stsp }
2845 941e9f74 2019-05-21 stsp if (slash == NULL)
2846 941e9f74 2019-05-21 stsp break;
2847 941e9f74 2019-05-21 stsp free(subpath);
2848 941e9f74 2019-05-21 stsp subpath = NULL;
2849 941e9f74 2019-05-21 stsp p = slash;
2850 941e9f74 2019-05-21 stsp }
2851 941e9f74 2019-05-21 stsp
2852 941e9f74 2019-05-21 stsp free(subpath);
2853 1a76625f 2018-10-22 stsp return err;
2854 61266923 2020-01-14 stsp }
2855 61266923 2020-01-14 stsp
2856 61266923 2020-01-14 stsp static const struct got_error *
2857 49b24ee5 2022-07-03 mark browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2858 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2859 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2860 55cccc34 2020-02-20 stsp {
2861 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2862 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2863 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2864 55cccc34 2020-02-20 stsp
2865 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2866 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2867 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2868 55cccc34 2020-02-20 stsp
2869 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2870 bc573f3b 2021-07-10 stsp if (err)
2871 55cccc34 2020-02-20 stsp return err;
2872 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2873 55cccc34 2020-02-20 stsp
2874 55cccc34 2020-02-20 stsp *new_view = tree_view;
2875 55cccc34 2020-02-20 stsp
2876 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2877 55cccc34 2020-02-20 stsp return NULL;
2878 55cccc34 2020-02-20 stsp
2879 a44927cc 2022-04-07 stsp return tree_view_walk_path(s, entry->commit, path);
2880 55cccc34 2020-02-20 stsp }
2881 55cccc34 2020-02-20 stsp
2882 55cccc34 2020-02-20 stsp static const struct got_error *
2883 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2884 61266923 2020-01-14 stsp {
2885 61266923 2020-01-14 stsp sigset_t sigset;
2886 61266923 2020-01-14 stsp int errcode;
2887 61266923 2020-01-14 stsp
2888 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2889 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2890 61266923 2020-01-14 stsp
2891 2497f032 2022-05-31 stsp /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2892 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2893 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2894 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2895 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2896 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGINT) == -1)
2897 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2898 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGTERM) == -1)
2899 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2900 61266923 2020-01-14 stsp
2901 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2902 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2903 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2904 61266923 2020-01-14 stsp
2905 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2906 61266923 2020-01-14 stsp if (errcode)
2907 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2908 61266923 2020-01-14 stsp
2909 61266923 2020-01-14 stsp return NULL;
2910 1a76625f 2018-10-22 stsp }
2911 1a76625f 2018-10-22 stsp
2912 1a76625f 2018-10-22 stsp static void *
2913 1a76625f 2018-10-22 stsp log_thread(void *arg)
2914 1a76625f 2018-10-22 stsp {
2915 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2916 1a76625f 2018-10-22 stsp int errcode = 0;
2917 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2918 1a76625f 2018-10-22 stsp int done = 0;
2919 61266923 2020-01-14 stsp
2920 5629093a 2022-07-11 stsp /*
2921 5629093a 2022-07-11 stsp * Sync startup with main thread such that we begin our
2922 5629093a 2022-07-11 stsp * work once view_input() has released the mutex.
2923 5629093a 2022-07-11 stsp */
2924 5629093a 2022-07-11 stsp errcode = pthread_mutex_lock(&tog_mutex);
2925 5629093a 2022-07-11 stsp if (errcode) {
2926 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_lock");
2927 61266923 2020-01-14 stsp return (void *)err;
2928 5629093a 2022-07-11 stsp }
2929 1a76625f 2018-10-22 stsp
2930 5629093a 2022-07-11 stsp err = block_signals_used_by_main_thread();
2931 5629093a 2022-07-11 stsp if (err) {
2932 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2933 5629093a 2022-07-11 stsp goto done;
2934 5629093a 2022-07-11 stsp }
2935 5629093a 2022-07-11 stsp
2936 2497f032 2022-05-31 stsp while (!done && !err && !tog_fatal_signal_received()) {
2937 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2938 5629093a 2022-07-11 stsp if (errcode) {
2939 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode,
2940 5629093a 2022-07-11 stsp "pthread_mutex_unlock");
2941 5629093a 2022-07-11 stsp goto done;
2942 5629093a 2022-07-11 stsp }
2943 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2944 1a76625f 2018-10-22 stsp if (err) {
2945 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2946 5629093a 2022-07-11 stsp goto done;
2947 1a76625f 2018-10-22 stsp err = NULL;
2948 1a76625f 2018-10-22 stsp done = 1;
2949 568eae95 2022-09-11 mark } else if (a->commits_needed > 0 && !a->load_all) {
2950 568eae95 2022-09-11 mark if (*a->limiting) {
2951 568eae95 2022-09-11 mark if (a->limit_match)
2952 568eae95 2022-09-11 mark a->commits_needed--;
2953 568eae95 2022-09-11 mark } else
2954 568eae95 2022-09-11 mark a->commits_needed--;
2955 568eae95 2022-09-11 mark }
2956 1a76625f 2018-10-22 stsp
2957 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2958 3abe8080 2019-04-10 stsp if (errcode) {
2959 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2960 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2961 5629093a 2022-07-11 stsp goto done;
2962 3abe8080 2019-04-10 stsp } else if (*a->quit)
2963 1a76625f 2018-10-22 stsp done = 1;
2964 568eae95 2022-09-11 mark else if (*a->limiting && *a->first_displayed_entry == NULL) {
2965 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2966 568eae95 2022-09-11 mark TAILQ_FIRST(&a->limit_commits->head);
2967 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2968 568eae95 2022-09-11 mark } else if (*a->first_displayed_entry == NULL) {
2969 568eae95 2022-09-11 mark *a->first_displayed_entry =
2970 568eae95 2022-09-11 mark TAILQ_FIRST(&a->real_commits->head);
2971 568eae95 2022-09-11 mark *a->selected_entry = *a->first_displayed_entry;
2972 1a76625f 2018-10-22 stsp }
2973 1a76625f 2018-10-22 stsp
2974 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2975 7c1452c1 2020-03-26 stsp if (errcode) {
2976 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2977 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2978 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2979 5629093a 2022-07-11 stsp goto done;
2980 7c1452c1 2020-03-26 stsp }
2981 7c1452c1 2020-03-26 stsp
2982 1a76625f 2018-10-22 stsp if (done)
2983 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2984 7c1452c1 2020-03-26 stsp else {
2985 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2986 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2987 7c1452c1 2020-03-26 stsp &tog_mutex);
2988 5629093a 2022-07-11 stsp if (errcode) {
2989 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2990 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2991 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2992 5629093a 2022-07-11 stsp goto done;
2993 5629093a 2022-07-11 stsp }
2994 21355643 2020-12-06 stsp if (*a->quit)
2995 21355643 2020-12-06 stsp done = 1;
2996 7c1452c1 2020-03-26 stsp }
2997 1a76625f 2018-10-22 stsp }
2998 1a76625f 2018-10-22 stsp }
2999 3abe8080 2019-04-10 stsp a->log_complete = 1;
3000 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3001 5629093a 2022-07-11 stsp if (errcode)
3002 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3003 5629093a 2022-07-11 stsp done:
3004 5629093a 2022-07-11 stsp if (err) {
3005 5629093a 2022-07-11 stsp tog_thread_error = 1;
3006 5629093a 2022-07-11 stsp pthread_cond_signal(&a->commit_loaded);
3007 5629093a 2022-07-11 stsp }
3008 1a76625f 2018-10-22 stsp return (void *)err;
3009 1a76625f 2018-10-22 stsp }
3010 1a76625f 2018-10-22 stsp
3011 1a76625f 2018-10-22 stsp static const struct got_error *
3012 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
3013 1a76625f 2018-10-22 stsp {
3014 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *thread_err = NULL;
3015 1a76625f 2018-10-22 stsp int errcode;
3016 1a76625f 2018-10-22 stsp
3017 1a76625f 2018-10-22 stsp if (s->thread) {
3018 1a76625f 2018-10-22 stsp s->quit = 1;
3019 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
3020 1a76625f 2018-10-22 stsp if (errcode)
3021 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3022 2af4a041 2019-05-11 jcs "pthread_cond_signal");
3023 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3024 1a76625f 2018-10-22 stsp if (errcode)
3025 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3026 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
3027 5629093a 2022-07-11 stsp errcode = pthread_join(s->thread, (void **)&thread_err);
3028 1a76625f 2018-10-22 stsp if (errcode)
3029 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
3030 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3031 1a76625f 2018-10-22 stsp if (errcode)
3032 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3033 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3034 1a76625f 2018-10-22 stsp s->thread = NULL;
3035 1a76625f 2018-10-22 stsp }
3036 1a76625f 2018-10-22 stsp
3037 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
3038 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
3039 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
3040 74467cc8 2022-06-15 stsp }
3041 74467cc8 2022-06-15 stsp
3042 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds) {
3043 74467cc8 2022-06-15 stsp const struct got_error *pack_err =
3044 74467cc8 2022-06-15 stsp got_repo_pack_fds_close(s->thread_args.pack_fds);
3045 74467cc8 2022-06-15 stsp if (err == NULL)
3046 74467cc8 2022-06-15 stsp err = pack_err;
3047 74467cc8 2022-06-15 stsp s->thread_args.pack_fds = NULL;
3048 1a76625f 2018-10-22 stsp }
3049 1a76625f 2018-10-22 stsp
3050 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
3051 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
3052 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
3053 1a76625f 2018-10-22 stsp }
3054 1a76625f 2018-10-22 stsp
3055 5629093a 2022-07-11 stsp return err ? err : thread_err;
3056 9343a5fb 2018-06-23 stsp }
3057 9343a5fb 2018-06-23 stsp
3058 9343a5fb 2018-06-23 stsp static const struct got_error *
3059 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
3060 1a76625f 2018-10-22 stsp {
3061 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
3062 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
3063 276b94a1 2020-11-13 naddy int errcode;
3064 1a76625f 2018-10-22 stsp
3065 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
3066 276b94a1 2020-11-13 naddy
3067 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3068 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3069 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3070 276b94a1 2020-11-13 naddy
3071 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3072 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3073 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3074 276b94a1 2020-11-13 naddy
3075 568eae95 2022-09-11 mark free_commits(&s->limit_commits);
3076 568eae95 2022-09-11 mark free_commits(&s->real_commits);
3077 1a76625f 2018-10-22 stsp free(s->in_repo_path);
3078 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
3079 1a76625f 2018-10-22 stsp free(s->start_id);
3080 797bc7b9 2018-10-22 stsp s->start_id = NULL;
3081 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
3082 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
3083 1a76625f 2018-10-22 stsp return err;
3084 1a76625f 2018-10-22 stsp }
3085 1a76625f 2018-10-22 stsp
3086 568eae95 2022-09-11 mark /*
3087 568eae95 2022-09-11 mark * We use two queues to implement the limit feature: first consists of
3088 568eae95 2022-09-11 mark * commits matching the current limit_regex; second is the real queue
3089 568eae95 2022-09-11 mark * of all known commits (real_commits). When the user starts limiting,
3090 568eae95 2022-09-11 mark * we swap queues such that all movement and displaying functionality
3091 568eae95 2022-09-11 mark * works with very slight change.
3092 568eae95 2022-09-11 mark */
3093 1a76625f 2018-10-22 stsp static const struct got_error *
3094 568eae95 2022-09-11 mark limit_log_view(struct tog_view *view)
3095 568eae95 2022-09-11 mark {
3096 568eae95 2022-09-11 mark struct tog_log_view_state *s = &view->state.log;
3097 568eae95 2022-09-11 mark struct commit_queue_entry *entry;
3098 568eae95 2022-09-11 mark struct tog_view *v = view;
3099 568eae95 2022-09-11 mark const struct got_error *err = NULL;
3100 568eae95 2022-09-11 mark char pattern[1024];
3101 568eae95 2022-09-11 mark int ret;
3102 568eae95 2022-09-11 mark
3103 568eae95 2022-09-11 mark if (view_is_hsplit_top(view))
3104 568eae95 2022-09-11 mark v = view->child;
3105 568eae95 2022-09-11 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3106 568eae95 2022-09-11 mark v = view->parent;
3107 568eae95 2022-09-11 mark
3108 568eae95 2022-09-11 mark /* Get the pattern */
3109 568eae95 2022-09-11 mark wmove(v->window, v->nlines - 1, 0);
3110 568eae95 2022-09-11 mark wclrtoeol(v->window);
3111 568eae95 2022-09-11 mark mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3112 568eae95 2022-09-11 mark nodelay(v->window, FALSE);
3113 568eae95 2022-09-11 mark nocbreak();
3114 568eae95 2022-09-11 mark echo();
3115 568eae95 2022-09-11 mark ret = wgetnstr(v->window, pattern, sizeof(pattern));
3116 568eae95 2022-09-11 mark cbreak();
3117 568eae95 2022-09-11 mark noecho();
3118 568eae95 2022-09-11 mark nodelay(v->window, TRUE);
3119 568eae95 2022-09-11 mark if (ret == ERR)
3120 568eae95 2022-09-11 mark return NULL;
3121 568eae95 2022-09-11 mark
3122 568eae95 2022-09-11 mark if (*pattern == '\0') {
3123 568eae95 2022-09-11 mark /*
3124 568eae95 2022-09-11 mark * Safety measure for the situation where the user
3125 568eae95 2022-09-11 mark * resets limit without previously limiting anything.
3126 568eae95 2022-09-11 mark */
3127 568eae95 2022-09-11 mark if (!s->limit_view)
3128 568eae95 2022-09-11 mark return NULL;
3129 568eae95 2022-09-11 mark
3130 568eae95 2022-09-11 mark /*
3131 568eae95 2022-09-11 mark * User could have pressed Ctrl+L, which refreshed the
3132 568eae95 2022-09-11 mark * commit queues, it means we can't save previously
3133 568eae95 2022-09-11 mark * (before limit took place) displayed entries,
3134 568eae95 2022-09-11 mark * because they would point to already free'ed memory,
3135 568eae95 2022-09-11 mark * so we are forced to always select first entry of
3136 568eae95 2022-09-11 mark * the queue.
3137 568eae95 2022-09-11 mark */
3138 568eae95 2022-09-11 mark s->commits = &s->real_commits;
3139 568eae95 2022-09-11 mark s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3140 568eae95 2022-09-11 mark s->selected_entry = s->first_displayed_entry;
3141 568eae95 2022-09-11 mark s->selected = 0;
3142 568eae95 2022-09-11 mark s->limit_view = 0;
3143 568eae95 2022-09-11 mark
3144 568eae95 2022-09-11 mark return NULL;
3145 568eae95 2022-09-11 mark }
3146 568eae95 2022-09-11 mark
3147 568eae95 2022-09-11 mark if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3148 568eae95 2022-09-11 mark return NULL;
3149 568eae95 2022-09-11 mark
3150 568eae95 2022-09-11 mark s->limit_view = 1;
3151 568eae95 2022-09-11 mark
3152 568eae95 2022-09-11 mark /* Clear the screen while loading limit view */
3153 568eae95 2022-09-11 mark s->first_displayed_entry = NULL;
3154 568eae95 2022-09-11 mark s->last_displayed_entry = NULL;
3155 568eae95 2022-09-11 mark s->selected_entry = NULL;
3156 568eae95 2022-09-11 mark s->commits = &s->limit_commits;
3157 568eae95 2022-09-11 mark
3158 568eae95 2022-09-11 mark /* Prepare limit queue for new search */
3159 568eae95 2022-09-11 mark free_commits(&s->limit_commits);
3160 568eae95 2022-09-11 mark s->limit_commits.ncommits = 0;
3161 568eae95 2022-09-11 mark
3162 568eae95 2022-09-11 mark /* First process commits, which are in queue already */
3163 568eae95 2022-09-11 mark TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3164 568eae95 2022-09-11 mark int have_match = 0;
3165 568eae95 2022-09-11 mark
3166 568eae95 2022-09-11 mark err = match_commit(&have_match, entry->id,
3167 568eae95 2022-09-11 mark entry->commit, &s->limit_regex);
3168 568eae95 2022-09-11 mark if (err)
3169 568eae95 2022-09-11 mark return err;
3170 568eae95 2022-09-11 mark
3171 568eae95 2022-09-11 mark if (have_match) {
3172 568eae95 2022-09-11 mark struct commit_queue_entry *matched;
3173 568eae95 2022-09-11 mark
3174 568eae95 2022-09-11 mark matched = alloc_commit_queue_entry(entry->commit,
3175 568eae95 2022-09-11 mark entry->id);
3176 568eae95 2022-09-11 mark if (matched == NULL) {
3177 568eae95 2022-09-11 mark err = got_error_from_errno(
3178 568eae95 2022-09-11 mark "alloc_commit_queue_entry");
3179 568eae95 2022-09-11 mark break;
3180 568eae95 2022-09-11 mark }
3181 34a842a4 2022-09-18 mark matched->commit = entry->commit;
3182 34a842a4 2022-09-18 mark got_object_commit_retain(entry->commit);
3183 568eae95 2022-09-11 mark
3184 568eae95 2022-09-11 mark matched->idx = s->limit_commits.ncommits;
3185 568eae95 2022-09-11 mark TAILQ_INSERT_TAIL(&s->limit_commits.head,
3186 568eae95 2022-09-11 mark matched, entry);
3187 568eae95 2022-09-11 mark s->limit_commits.ncommits++;
3188 568eae95 2022-09-11 mark }
3189 568eae95 2022-09-11 mark }
3190 568eae95 2022-09-11 mark
3191 568eae95 2022-09-11 mark /* Second process all the commits, until we fill the screen */
3192 568eae95 2022-09-11 mark if (s->limit_commits.ncommits < view->nlines - 1 &&
3193 568eae95 2022-09-11 mark !s->thread_args.log_complete) {
3194 568eae95 2022-09-11 mark s->thread_args.commits_needed +=
3195 568eae95 2022-09-11 mark view->nlines - s->limit_commits.ncommits - 1;
3196 568eae95 2022-09-11 mark err = trigger_log_thread(view, 1);
3197 568eae95 2022-09-11 mark if (err)
3198 568eae95 2022-09-11 mark return err;
3199 568eae95 2022-09-11 mark }
3200 568eae95 2022-09-11 mark
3201 568eae95 2022-09-11 mark s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3202 568eae95 2022-09-11 mark s->selected_entry = TAILQ_FIRST(&s->commits->head);
3203 568eae95 2022-09-11 mark s->selected = 0;
3204 568eae95 2022-09-11 mark
3205 568eae95 2022-09-11 mark return NULL;
3206 568eae95 2022-09-11 mark }
3207 568eae95 2022-09-11 mark
3208 568eae95 2022-09-11 mark static const struct got_error *
3209 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
3210 60493ae3 2019-06-20 stsp {
3211 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3212 60493ae3 2019-06-20 stsp
3213 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
3214 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3215 60493ae3 2019-06-20 stsp return NULL;
3216 60493ae3 2019-06-20 stsp }
3217 60493ae3 2019-06-20 stsp
3218 60493ae3 2019-06-20 stsp static const struct got_error *
3219 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
3220 60493ae3 2019-06-20 stsp {
3221 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
3222 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3223 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
3224 60493ae3 2019-06-20 stsp
3225 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
3226 f9686aa5 2020-03-27 stsp show_log_view(view);
3227 f9686aa5 2020-03-27 stsp update_panels();
3228 f9686aa5 2020-03-27 stsp doupdate();
3229 f9686aa5 2020-03-27 stsp
3230 96e2b566 2019-07-08 stsp if (s->search_entry) {
3231 13add988 2019-10-15 stsp int errcode, ch;
3232 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3233 13add988 2019-10-15 stsp if (errcode)
3234 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3235 13add988 2019-10-15 stsp "pthread_mutex_unlock");
3236 13add988 2019-10-15 stsp ch = wgetch(view->window);
3237 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
3238 13add988 2019-10-15 stsp if (errcode)
3239 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3240 13add988 2019-10-15 stsp "pthread_mutex_lock");
3241 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3242 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3243 678cbce5 2019-07-28 stsp return NULL;
3244 678cbce5 2019-07-28 stsp }
3245 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
3246 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
3247 96e2b566 2019-07-08 stsp else
3248 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
3249 96e2b566 2019-07-08 stsp commit_queue_head, entry);
3250 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
3251 364ac6fd 2022-06-18 stsp /*
3252 f704b35c 2022-06-18 stsp * If the user has moved the cursor after we hit a match,
3253 f704b35c 2022-06-18 stsp * the position from where we should continue searching
3254 f704b35c 2022-06-18 stsp * might have changed.
3255 364ac6fd 2022-06-18 stsp */
3256 f83ada34 2022-09-13 mark if (view->searching == TOG_SEARCH_FORWARD)
3257 f83ada34 2022-09-13 mark entry = TAILQ_NEXT(s->selected_entry, entry);
3258 f83ada34 2022-09-13 mark else
3259 f83ada34 2022-09-13 mark entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3260 f83ada34 2022-09-13 mark entry);
3261 20be8d96 2019-06-21 stsp } else {
3262 5a5ede53 2021-12-09 stsp entry = s->selected_entry;
3263 20be8d96 2019-06-21 stsp }
3264 60493ae3 2019-06-20 stsp
3265 60493ae3 2019-06-20 stsp while (1) {
3266 13add988 2019-10-15 stsp int have_match = 0;
3267 13add988 2019-10-15 stsp
3268 60493ae3 2019-06-20 stsp if (entry == NULL) {
3269 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
3270 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
3271 f9967bca 2020-03-27 stsp view->search_next_done =
3272 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
3273 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3274 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
3275 f801134a 2019-06-25 stsp return NULL;
3276 60493ae3 2019-06-20 stsp }
3277 96e2b566 2019-07-08 stsp /*
3278 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
3279 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
3280 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
3281 96e2b566 2019-07-08 stsp */
3282 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
3283 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
3284 60493ae3 2019-06-20 stsp }
3285 60493ae3 2019-06-20 stsp
3286 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
3287 13add988 2019-10-15 stsp &view->regex);
3288 5943eee2 2019-08-13 stsp if (err)
3289 13add988 2019-10-15 stsp break;
3290 13add988 2019-10-15 stsp if (have_match) {
3291 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3292 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
3293 60493ae3 2019-06-20 stsp break;
3294 60493ae3 2019-06-20 stsp }
3295 13add988 2019-10-15 stsp
3296 96e2b566 2019-07-08 stsp s->search_entry = entry;
3297 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
3298 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
3299 b1bf1435 2019-06-21 stsp else
3300 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
3301 60493ae3 2019-06-20 stsp }
3302 60493ae3 2019-06-20 stsp
3303 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
3304 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
3305 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
3306 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
3307 60493ae3 2019-06-20 stsp if (err)
3308 60493ae3 2019-06-20 stsp return err;
3309 ead14cbe 2019-06-21 stsp cur++;
3310 ead14cbe 2019-06-21 stsp }
3311 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
3312 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
3313 60493ae3 2019-06-20 stsp if (err)
3314 60493ae3 2019-06-20 stsp return err;
3315 ead14cbe 2019-06-21 stsp cur--;
3316 60493ae3 2019-06-20 stsp }
3317 60493ae3 2019-06-20 stsp }
3318 60493ae3 2019-06-20 stsp
3319 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3320 96e2b566 2019-07-08 stsp
3321 60493ae3 2019-06-20 stsp return NULL;
3322 60493ae3 2019-06-20 stsp }
3323 60493ae3 2019-06-20 stsp
3324 60493ae3 2019-06-20 stsp static const struct got_error *
3325 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3326 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3327 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3328 80ddbec8 2018-04-29 stsp {
3329 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3330 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3331 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3332 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3333 1a76625f 2018-10-22 stsp int errcode;
3334 80ddbec8 2018-04-29 stsp
3335 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3336 f135c941 2020-02-20 stsp free(s->in_repo_path);
3337 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3338 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3339 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3340 f135c941 2020-02-20 stsp }
3341 ecb28ae0 2018-07-16 stsp
3342 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3343 568eae95 2022-09-11 mark TAILQ_INIT(&s->real_commits.head);
3344 568eae95 2022-09-11 mark s->real_commits.ncommits = 0;
3345 568eae95 2022-09-11 mark s->commits = &s->real_commits;
3346 78756c87 2020-11-24 stsp
3347 568eae95 2022-09-11 mark TAILQ_INIT(&s->limit_commits.head);
3348 568eae95 2022-09-11 mark s->limit_view = 0;
3349 568eae95 2022-09-11 mark s->limit_commits.ncommits = 0;
3350 568eae95 2022-09-11 mark
3351 fb2756b9 2018-08-04 stsp s->repo = repo;
3352 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3353 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3354 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3355 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3356 9cd7cbd1 2020-12-07 stsp goto done;
3357 9cd7cbd1 2020-12-07 stsp }
3358 9cd7cbd1 2020-12-07 stsp }
3359 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3360 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3361 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3362 5036bf37 2018-09-24 stsp goto done;
3363 5036bf37 2018-09-24 stsp }
3364 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3365 e5a0f69f 2018-08-18 stsp
3366 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3367 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3368 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3369 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3370 11b20872 2019-11-08 stsp if (err)
3371 11b20872 2019-11-08 stsp goto done;
3372 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3373 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3374 11b20872 2019-11-08 stsp if (err) {
3375 11b20872 2019-11-08 stsp free_colors(&s->colors);
3376 11b20872 2019-11-08 stsp goto done;
3377 11b20872 2019-11-08 stsp }
3378 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3379 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3380 11b20872 2019-11-08 stsp if (err) {
3381 11b20872 2019-11-08 stsp free_colors(&s->colors);
3382 11b20872 2019-11-08 stsp goto done;
3383 11b20872 2019-11-08 stsp }
3384 11b20872 2019-11-08 stsp }
3385 11b20872 2019-11-08 stsp
3386 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3387 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3388 571ccd73 2022-07-19 mark view->resize = resize_log_view;
3389 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3390 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3391 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3392 1a76625f 2018-10-22 stsp
3393 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds == NULL) {
3394 74467cc8 2022-06-15 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3395 74467cc8 2022-06-15 stsp if (err)
3396 74467cc8 2022-06-15 stsp goto done;
3397 74467cc8 2022-06-15 stsp }
3398 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3399 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3400 0ae84acc 2022-06-15 tracey if (err)
3401 0ae84acc 2022-06-15 tracey goto done;
3402 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3403 b672a97a 2020-01-27 stsp !s->log_branches);
3404 1a76625f 2018-10-22 stsp if (err)
3405 1a76625f 2018-10-22 stsp goto done;
3406 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3407 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3408 c5b78334 2020-01-12 stsp if (err)
3409 c5b78334 2020-01-12 stsp goto done;
3410 1a76625f 2018-10-22 stsp
3411 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3412 1a76625f 2018-10-22 stsp if (errcode) {
3413 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3414 1a76625f 2018-10-22 stsp goto done;
3415 1a76625f 2018-10-22 stsp }
3416 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3417 7c1452c1 2020-03-26 stsp if (errcode) {
3418 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3419 7c1452c1 2020-03-26 stsp goto done;
3420 7c1452c1 2020-03-26 stsp }
3421 1a76625f 2018-10-22 stsp
3422 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3423 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3424 568eae95 2022-09-11 mark s->thread_args.real_commits = &s->real_commits;
3425 568eae95 2022-09-11 mark s->thread_args.limit_commits = &s->limit_commits;
3426 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3427 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3428 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3429 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3430 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3431 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3432 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3433 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3434 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3435 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3436 568eae95 2022-09-11 mark s->thread_args.limiting = &s->limit_view;
3437 568eae95 2022-09-11 mark s->thread_args.limit_regex = &s->limit_regex;
3438 568eae95 2022-09-11 mark s->thread_args.limit_commits = &s->limit_commits;
3439 ba4f502b 2018-08-04 stsp done:
3440 1a76625f 2018-10-22 stsp if (err)
3441 1a76625f 2018-10-22 stsp close_log_view(view);
3442 ba4f502b 2018-08-04 stsp return err;
3443 ba4f502b 2018-08-04 stsp }
3444 ba4f502b 2018-08-04 stsp
3445 e5a0f69f 2018-08-18 stsp static const struct got_error *
3446 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3447 ba4f502b 2018-08-04 stsp {
3448 f2f6d207 2020-11-24 stsp const struct got_error *err;
3449 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3450 ba4f502b 2018-08-04 stsp
3451 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
3452 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3453 2b380cc8 2018-10-24 stsp &s->thread_args);
3454 2b380cc8 2018-10-24 stsp if (errcode)
3455 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3456 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3457 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3458 f2f6d207 2020-11-24 stsp if (err)
3459 f2f6d207 2020-11-24 stsp return err;
3460 f2f6d207 2020-11-24 stsp }
3461 2b380cc8 2018-10-24 stsp }
3462 2b380cc8 2018-10-24 stsp
3463 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3464 b880cc75 2022-06-30 mark }
3465 b880cc75 2022-06-30 mark
3466 b880cc75 2022-06-30 mark static void
3467 b880cc75 2022-06-30 mark log_move_cursor_up(struct tog_view *view, int page, int home)
3468 b880cc75 2022-06-30 mark {
3469 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3470 b880cc75 2022-06-30 mark
3471 b880cc75 2022-06-30 mark if (s->first_displayed_entry == NULL)
3472 b880cc75 2022-06-30 mark return;
3473 568eae95 2022-09-11 mark if (s->selected_entry->idx == 0)
3474 568eae95 2022-09-11 mark view->count = 0;
3475 b880cc75 2022-06-30 mark
3476 568eae95 2022-09-11 mark if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3477 b880cc75 2022-06-30 mark || home)
3478 b880cc75 2022-06-30 mark s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3479 b880cc75 2022-06-30 mark
3480 b880cc75 2022-06-30 mark if (!page && !home && s->selected > 0)
3481 b880cc75 2022-06-30 mark --s->selected;
3482 b880cc75 2022-06-30 mark else
3483 568eae95 2022-09-11 mark log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3484 b880cc75 2022-06-30 mark
3485 b880cc75 2022-06-30 mark select_commit(s);
3486 b880cc75 2022-06-30 mark return;
3487 b880cc75 2022-06-30 mark }
3488 b880cc75 2022-06-30 mark
3489 b880cc75 2022-06-30 mark static const struct got_error *
3490 b880cc75 2022-06-30 mark log_move_cursor_down(struct tog_view *view, int page)
3491 b880cc75 2022-06-30 mark {
3492 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3493 b880cc75 2022-06-30 mark const struct got_error *err = NULL;
3494 631e7531 2022-08-12 mark int eos = view->nlines - 2;
3495 b880cc75 2022-06-30 mark
3496 568eae95 2022-09-11 mark if (s->first_displayed_entry == NULL)
3497 568eae95 2022-09-11 mark return NULL;
3498 568eae95 2022-09-11 mark
3499 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3500 568eae95 2022-09-11 mark s->selected_entry->idx >= s->commits->ncommits - 1)
3501 b880cc75 2022-06-30 mark return NULL;
3502 b880cc75 2022-06-30 mark
3503 631e7531 2022-08-12 mark if (view_is_hsplit_top(view))
3504 631e7531 2022-08-12 mark --eos; /* border consumes the last line */
3505 b880cc75 2022-06-30 mark
3506 631e7531 2022-08-12 mark if (!page) {
3507 568eae95 2022-09-11 mark if (s->selected < MIN(eos, s->commits->ncommits - 1))
3508 b880cc75 2022-06-30 mark ++s->selected;
3509 b880cc75 2022-06-30 mark else
3510 b880cc75 2022-06-30 mark err = log_scroll_down(view, 1);
3511 11edf34c 2022-08-12 mark } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3512 631e7531 2022-08-12 mark struct commit_queue_entry *entry;
3513 631e7531 2022-08-12 mark int n;
3514 631e7531 2022-08-12 mark
3515 631e7531 2022-08-12 mark s->selected = 0;
3516 568eae95 2022-09-11 mark entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
3517 631e7531 2022-08-12 mark s->last_displayed_entry = entry;
3518 631e7531 2022-08-12 mark for (n = 0; n <= eos; n++) {
3519 631e7531 2022-08-12 mark if (entry == NULL)
3520 631e7531 2022-08-12 mark break;
3521 631e7531 2022-08-12 mark s->first_displayed_entry = entry;
3522 631e7531 2022-08-12 mark entry = TAILQ_PREV(entry, commit_queue_head, entry);
3523 631e7531 2022-08-12 mark }
3524 631e7531 2022-08-12 mark if (n > 0)
3525 631e7531 2022-08-12 mark s->selected = n - 1;
3526 b880cc75 2022-06-30 mark } else {
3527 568eae95 2022-09-11 mark if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
3528 cbb0c8d7 2022-08-12 mark s->thread_args.log_complete)
3529 cbb0c8d7 2022-08-12 mark s->selected += MIN(page,
3530 568eae95 2022-09-11 mark s->commits->ncommits - s->selected_entry->idx - 1);
3531 cbb0c8d7 2022-08-12 mark else
3532 cbb0c8d7 2022-08-12 mark err = log_scroll_down(view, page);
3533 b880cc75 2022-06-30 mark }
3534 b880cc75 2022-06-30 mark if (err)
3535 b880cc75 2022-06-30 mark return err;
3536 b880cc75 2022-06-30 mark
3537 9b058f45 2022-06-30 mark /*
3538 9b058f45 2022-06-30 mark * We might necessarily overshoot in horizontal
3539 9b058f45 2022-06-30 mark * splits; if so, select the last displayed commit.
3540 9b058f45 2022-06-30 mark */
3541 374f69dd 2022-08-13 stsp if (s->first_displayed_entry && s->last_displayed_entry) {
3542 374f69dd 2022-08-13 stsp s->selected = MIN(s->selected,
3543 374f69dd 2022-08-13 stsp s->last_displayed_entry->idx -
3544 374f69dd 2022-08-13 stsp s->first_displayed_entry->idx);
3545 374f69dd 2022-08-13 stsp }
3546 9b058f45 2022-06-30 mark
3547 b880cc75 2022-06-30 mark select_commit(s);
3548 b880cc75 2022-06-30 mark
3549 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3550 568eae95 2022-09-11 mark s->selected_entry->idx == s->commits->ncommits - 1)
3551 b880cc75 2022-06-30 mark view->count = 0;
3552 b880cc75 2022-06-30 mark
3553 b880cc75 2022-06-30 mark return NULL;
3554 e5a0f69f 2018-08-18 stsp }
3555 04cc582a 2018-08-01 stsp
3556 9b058f45 2022-06-30 mark static void
3557 9b058f45 2022-06-30 mark view_get_split(struct tog_view *view, int *y, int *x)
3558 9b058f45 2022-06-30 mark {
3559 76364b2d 2022-07-02 mark *x = 0;
3560 76364b2d 2022-07-02 mark *y = 0;
3561 76364b2d 2022-07-02 mark
3562 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3563 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_y)
3564 3c1dfe12 2022-07-08 mark *y = view->child->resized_y;
3565 7532ccda 2022-07-11 mark else if (view->resized_y)
3566 7532ccda 2022-07-11 mark *y = view->resized_y;
3567 3c1dfe12 2022-07-08 mark else
3568 3c1dfe12 2022-07-08 mark *y = view_split_begin_y(view->lines);
3569 7532ccda 2022-07-11 mark } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3570 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_x)
3571 3c1dfe12 2022-07-08 mark *x = view->child->resized_x;
3572 7532ccda 2022-07-11 mark else if (view->resized_x)
3573 7532ccda 2022-07-11 mark *x = view->resized_x;
3574 3c1dfe12 2022-07-08 mark else
3575 3c1dfe12 2022-07-08 mark *x = view_split_begin_x(view->begin_x);
3576 3c1dfe12 2022-07-08 mark }
3577 9b058f45 2022-06-30 mark }
3578 9b058f45 2022-06-30 mark
3579 9b058f45 2022-06-30 mark /* Split view horizontally at y and offset view->state->selected line. */
3580 e5a0f69f 2018-08-18 stsp static const struct got_error *
3581 9b058f45 2022-06-30 mark view_init_hsplit(struct tog_view *view, int y)
3582 9b058f45 2022-06-30 mark {
3583 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
3584 9b058f45 2022-06-30 mark
3585 9b058f45 2022-06-30 mark view->nlines = y;
3586 d2366e29 2022-07-07 mark view->ncols = COLS;
3587 9b058f45 2022-06-30 mark err = view_resize(view);
3588 9b058f45 2022-06-30 mark if (err)
3589 9b058f45 2022-06-30 mark return err;
3590 9b058f45 2022-06-30 mark
3591 9b058f45 2022-06-30 mark err = offset_selection_down(view);
3592 9b058f45 2022-06-30 mark
3593 9b058f45 2022-06-30 mark return err;
3594 94b80cfa 2022-08-01 mark }
3595 94b80cfa 2022-08-01 mark
3596 94b80cfa 2022-08-01 mark static const struct got_error *
3597 94b80cfa 2022-08-01 mark log_goto_line(struct tog_view *view, int nlines)
3598 94b80cfa 2022-08-01 mark {
3599 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
3600 94b80cfa 2022-08-01 mark struct tog_log_view_state *s = &view->state.log;
3601 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
3602 374f69dd 2022-08-13 stsp
3603 374f69dd 2022-08-13 stsp if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3604 374f69dd 2022-08-13 stsp return NULL;
3605 94b80cfa 2022-08-01 mark
3606 94b80cfa 2022-08-01 mark g = view->gline;
3607 94b80cfa 2022-08-01 mark view->gline = 0;
3608 94b80cfa 2022-08-01 mark
3609 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
3610 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
3611 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
3612 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
3613 94b80cfa 2022-08-01 mark select_commit(s);
3614 94b80cfa 2022-08-01 mark return NULL;
3615 94b80cfa 2022-08-01 mark }
3616 94b80cfa 2022-08-01 mark
3617 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
3618 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view, g - idx - 1);
3619 94b80cfa 2022-08-01 mark if (!err && g > s->selected_entry->idx + 1)
3620 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view,
3621 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1);
3622 94b80cfa 2022-08-01 mark if (err)
3623 94b80cfa 2022-08-01 mark return err;
3624 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
3625 94b80cfa 2022-08-01 mark log_move_cursor_up(view, idx - g + 1, 0);
3626 94b80cfa 2022-08-01 mark
3627 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
3628 94b80cfa 2022-08-01 mark s->selected = g - 1;
3629 94b80cfa 2022-08-01 mark
3630 94b80cfa 2022-08-01 mark select_commit(s);
3631 94b80cfa 2022-08-01 mark return NULL;
3632 94b80cfa 2022-08-01 mark
3633 9b058f45 2022-06-30 mark }
3634 9b058f45 2022-06-30 mark
3635 9b058f45 2022-06-30 mark static const struct got_error *
3636 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3637 e5a0f69f 2018-08-18 stsp {
3638 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3639 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3640 631e7531 2022-08-12 mark int eos, nscroll;
3641 80ddbec8 2018-04-29 stsp
3642 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3643 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3644 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3645 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3646 568eae95 2022-09-11 mark err = log_move_cursor_down(view, s->commits->ncommits);
3647 0dca135e 2022-06-30 mark s->thread_args.load_all = 0;
3648 fb280deb 2021-08-30 stsp }
3649 11edf34c 2022-08-12 mark if (err)
3650 11edf34c 2022-08-12 mark return err;
3651 528dedf3 2021-08-30 stsp }
3652 0dca135e 2022-06-30 mark
3653 0dca135e 2022-06-30 mark eos = nscroll = view->nlines - 1;
3654 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
3655 0dca135e 2022-06-30 mark --eos; /* border */
3656 94b80cfa 2022-08-01 mark
3657 94b80cfa 2022-08-01 mark if (view->gline)
3658 94b80cfa 2022-08-01 mark return log_goto_line(view, eos);
3659 0dca135e 2022-06-30 mark
3660 528dedf3 2021-08-30 stsp switch (ch) {
3661 568eae95 2022-09-11 mark case '&':
3662 568eae95 2022-09-11 mark err = limit_log_view(view);
3663 568eae95 2022-09-11 mark break;
3664 1e37a5c2 2019-05-12 jcs case 'q':
3665 1e37a5c2 2019-05-12 jcs s->quit = 1;
3666 145b6838 2022-06-16 stsp break;
3667 145b6838 2022-06-16 stsp case '0':
3668 145b6838 2022-06-16 stsp view->x = 0;
3669 145b6838 2022-06-16 stsp break;
3670 145b6838 2022-06-16 stsp case '$':
3671 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 2, 0);
3672 640cd7ff 2022-06-22 mark view->count = 0;
3673 145b6838 2022-06-16 stsp break;
3674 145b6838 2022-06-16 stsp case KEY_RIGHT:
3675 145b6838 2022-06-16 stsp case 'l':
3676 145b6838 2022-06-16 stsp if (view->x + view->ncols / 2 < view->maxx)
3677 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
3678 640cd7ff 2022-06-22 mark else
3679 640cd7ff 2022-06-22 mark view->count = 0;
3680 1e37a5c2 2019-05-12 jcs break;
3681 145b6838 2022-06-16 stsp case KEY_LEFT:
3682 145b6838 2022-06-16 stsp case 'h':
3683 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
3684 640cd7ff 2022-06-22 mark if (view->x <= 0)
3685 640cd7ff 2022-06-22 mark view->count = 0;
3686 145b6838 2022-06-16 stsp break;
3687 1e37a5c2 2019-05-12 jcs case 'k':
3688 1e37a5c2 2019-05-12 jcs case KEY_UP:
3689 1e37a5c2 2019-05-12 jcs case '<':
3690 1e37a5c2 2019-05-12 jcs case ',':
3691 02ffd0d5 2021-10-17 stsp case CTRL('p'):
3692 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 0);
3693 912a3f79 2021-08-30 j break;
3694 912a3f79 2021-08-30 j case 'g':
3695 912a3f79 2021-08-30 j case KEY_HOME:
3696 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 1);
3697 640cd7ff 2022-06-22 mark view->count = 0;
3698 1e37a5c2 2019-05-12 jcs break;
3699 83cc4199 2022-06-13 stsp case CTRL('u'):
3700 33c3719a 2022-06-15 stsp case 'u':
3701 83cc4199 2022-06-13 stsp nscroll /= 2;
3702 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3703 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3704 a4292ac5 2019-05-12 jcs case CTRL('b'):
3705 61417565 2022-06-20 mark case 'b':
3706 b880cc75 2022-06-30 mark log_move_cursor_up(view, nscroll, 0);
3707 1e37a5c2 2019-05-12 jcs break;
3708 1e37a5c2 2019-05-12 jcs case 'j':
3709 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3710 1e37a5c2 2019-05-12 jcs case '>':
3711 1e37a5c2 2019-05-12 jcs case '.':
3712 02ffd0d5 2021-10-17 stsp case CTRL('n'):
3713 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, 0);
3714 912a3f79 2021-08-30 j break;
3715 10aab77f 2022-07-19 op case '@':
3716 10aab77f 2022-07-19 op s->use_committer = !s->use_committer;
3717 10aab77f 2022-07-19 op break;
3718 912a3f79 2021-08-30 j case 'G':
3719 912a3f79 2021-08-30 j case KEY_END: {
3720 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3721 912a3f79 2021-08-30 j * traverse them all. */
3722 640cd7ff 2022-06-22 mark view->count = 0;
3723 631e7531 2022-08-12 mark s->thread_args.load_all = 1;
3724 631e7531 2022-08-12 mark if (!s->thread_args.log_complete)
3725 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3726 568eae95 2022-09-11 mark err = log_move_cursor_down(view, s->commits->ncommits);
3727 631e7531 2022-08-12 mark s->thread_args.load_all = 0;
3728 1e37a5c2 2019-05-12 jcs break;
3729 912a3f79 2021-08-30 j }
3730 80b7e8da 2022-06-11 stsp case CTRL('d'):
3731 33c3719a 2022-06-15 stsp case 'd':
3732 83cc4199 2022-06-13 stsp nscroll /= 2;
3733 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3734 83cc4199 2022-06-13 stsp case KEY_NPAGE:
3735 61417565 2022-06-20 mark case CTRL('f'):
3736 48bb96f0 2022-06-20 naddy case 'f':
3737 b880cc75 2022-06-30 mark case ' ':
3738 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, nscroll);
3739 1e37a5c2 2019-05-12 jcs break;
3740 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3741 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3742 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3743 568eae95 2022-09-11 mark if (s->selected > s->commits->ncommits - 1)
3744 568eae95 2022-09-11 mark s->selected = s->commits->ncommits - 1;
3745 2b779855 2020-12-05 naddy select_commit(s);
3746 568eae95 2022-09-11 mark if (s->commits->ncommits < view->nlines - 1 &&
3747 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3748 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3749 568eae95 2022-09-11 mark s->commits->ncommits;
3750 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3751 0bf7f153 2020-12-02 naddy }
3752 1e37a5c2 2019-05-12 jcs break;
3753 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3754 49b24ee5 2022-07-03 mark case '\r':
3755 640cd7ff 2022-06-22 mark view->count = 0;
3756 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3757 e5a0f69f 2018-08-18 stsp break;
3758 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3759 1e37a5c2 2019-05-12 jcs break;
3760 5e98fb33 2022-07-22 mark case 'T':
3761 640cd7ff 2022-06-22 mark view->count = 0;
3762 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3763 5036bf37 2018-09-24 stsp break;
3764 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
3765 1e37a5c2 2019-05-12 jcs break;
3766 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3767 21355643 2020-12-06 stsp case CTRL('l'):
3768 21355643 2020-12-06 stsp case 'B':
3769 640cd7ff 2022-06-22 mark view->count = 0;
3770 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3771 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3772 1e37a5c2 2019-05-12 jcs break;
3773 21355643 2020-12-06 stsp err = stop_log_thread(s);
3774 74cfe85e 2020-10-20 stsp if (err)
3775 74cfe85e 2020-10-20 stsp return err;
3776 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3777 21355643 2020-12-06 stsp char *parent_path;
3778 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3779 21355643 2020-12-06 stsp if (err)
3780 21355643 2020-12-06 stsp return err;
3781 21355643 2020-12-06 stsp free(s->in_repo_path);
3782 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3783 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3784 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3785 21355643 2020-12-06 stsp struct got_object_id *start_id;
3786 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3787 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3788 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3789 ea371198 2022-11-17 stsp if (err) {
3790 ea371198 2022-11-17 stsp if (s->head_ref_name == NULL ||
3791 ea371198 2022-11-17 stsp err->code != GOT_ERR_NOT_REF)
3792 ea371198 2022-11-17 stsp return err;
3793 ea371198 2022-11-17 stsp /* Try to cope with deleted references. */
3794 ea371198 2022-11-17 stsp free(s->head_ref_name);
3795 ea371198 2022-11-17 stsp s->head_ref_name = NULL;
3796 ea371198 2022-11-17 stsp err = got_repo_match_object_id(&start_id,
3797 ea371198 2022-11-17 stsp NULL, GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT,
3798 ea371198 2022-11-17 stsp &tog_refs, s->repo);
3799 ea371198 2022-11-17 stsp if (err)
3800 ea371198 2022-11-17 stsp return err;
3801 ea371198 2022-11-17 stsp }
3802 21355643 2020-12-06 stsp free(s->start_id);
3803 21355643 2020-12-06 stsp s->start_id = start_id;
3804 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3805 21355643 2020-12-06 stsp } else /* 'B' */
3806 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3807 21355643 2020-12-06 stsp
3808 b0dd8d27 2022-06-16 stsp if (s->thread_args.pack_fds == NULL) {
3809 b0dd8d27 2022-06-16 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3810 b0dd8d27 2022-06-16 stsp if (err)
3811 b0dd8d27 2022-06-16 stsp return err;
3812 b0dd8d27 2022-06-16 stsp }
3813 74467cc8 2022-06-15 stsp err = got_repo_open(&s->thread_args.repo,
3814 74467cc8 2022-06-15 stsp got_repo_get_path(s->repo), NULL,
3815 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3816 74cfe85e 2020-10-20 stsp if (err)
3817 21355643 2020-12-06 stsp return err;
3818 51a10b52 2020-12-26 stsp tog_free_refs();
3819 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, 0);
3820 ca51c541 2020-12-07 stsp if (err)
3821 ca51c541 2020-12-07 stsp return err;
3822 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3823 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3824 d01904d4 2019-06-25 stsp if (err)
3825 d01904d4 2019-06-25 stsp return err;
3826 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3827 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3828 b672a97a 2020-01-27 stsp if (err)
3829 b672a97a 2020-01-27 stsp return err;
3830 568eae95 2022-09-11 mark free_commits(&s->real_commits);
3831 568eae95 2022-09-11 mark free_commits(&s->limit_commits);
3832 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3833 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3834 21355643 2020-12-06 stsp s->selected_entry = NULL;
3835 21355643 2020-12-06 stsp s->selected = 0;
3836 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3837 21355643 2020-12-06 stsp s->quit = 0;
3838 9b058f45 2022-06-30 mark s->thread_args.commits_needed = view->lines;
3839 dfee752e 2022-06-18 op s->matched_entry = NULL;
3840 dfee752e 2022-06-18 op s->search_entry = NULL;
3841 01a7bcaf 2022-07-22 mark view->offset = 0;
3842 d01904d4 2019-06-25 stsp break;
3843 5e98fb33 2022-07-22 mark case 'R':
3844 640cd7ff 2022-06-22 mark view->count = 0;
3845 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
3846 6458efa5 2020-11-24 stsp break;
3847 1e37a5c2 2019-05-12 jcs default:
3848 640cd7ff 2022-06-22 mark view->count = 0;
3849 1e37a5c2 2019-05-12 jcs break;
3850 899d86c2 2018-05-10 stsp }
3851 e5a0f69f 2018-08-18 stsp
3852 80ddbec8 2018-04-29 stsp return err;
3853 80ddbec8 2018-04-29 stsp }
3854 80ddbec8 2018-04-29 stsp
3855 4ed7e80c 2018-05-20 stsp static const struct got_error *
3856 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3857 c2db6724 2019-01-04 stsp {
3858 c2db6724 2019-01-04 stsp const struct got_error *error;
3859 c2db6724 2019-01-04 stsp
3860 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3861 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3862 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3863 37c06ea4 2019-07-15 stsp #endif
3864 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3865 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3866 c2db6724 2019-01-04 stsp
3867 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3868 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3869 c2db6724 2019-01-04 stsp
3870 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3871 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3872 c2db6724 2019-01-04 stsp
3873 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3874 c2db6724 2019-01-04 stsp if (error != NULL)
3875 c2db6724 2019-01-04 stsp return error;
3876 c2db6724 2019-01-04 stsp
3877 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3878 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3879 c2db6724 2019-01-04 stsp
3880 c2db6724 2019-01-04 stsp return NULL;
3881 c2db6724 2019-01-04 stsp }
3882 c2db6724 2019-01-04 stsp
3883 a915003a 2019-02-05 stsp static void
3884 a915003a 2019-02-05 stsp init_curses(void)
3885 a915003a 2019-02-05 stsp {
3886 2497f032 2022-05-31 stsp /*
3887 2497f032 2022-05-31 stsp * Override default signal handlers before starting ncurses.
3888 2497f032 2022-05-31 stsp * This should prevent ncurses from installing its own
3889 2497f032 2022-05-31 stsp * broken cleanup() signal handler.
3890 2497f032 2022-05-31 stsp */
3891 2497f032 2022-05-31 stsp signal(SIGWINCH, tog_sigwinch);
3892 2497f032 2022-05-31 stsp signal(SIGPIPE, tog_sigpipe);
3893 2497f032 2022-05-31 stsp signal(SIGCONT, tog_sigcont);
3894 2497f032 2022-05-31 stsp signal(SIGINT, tog_sigint);
3895 2497f032 2022-05-31 stsp signal(SIGTERM, tog_sigterm);
3896 2497f032 2022-05-31 stsp
3897 a915003a 2019-02-05 stsp initscr();
3898 a915003a 2019-02-05 stsp cbreak();
3899 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3900 a915003a 2019-02-05 stsp noecho();
3901 a915003a 2019-02-05 stsp nonl();
3902 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3903 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3904 a915003a 2019-02-05 stsp curs_set(0);
3905 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3906 6d17833f 2019-11-08 stsp start_color();
3907 6d17833f 2019-11-08 stsp use_default_colors();
3908 6d17833f 2019-11-08 stsp }
3909 a915003a 2019-02-05 stsp }
3910 a915003a 2019-02-05 stsp
3911 c2db6724 2019-01-04 stsp static const struct got_error *
3912 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3913 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3914 f135c941 2020-02-20 stsp {
3915 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3916 f135c941 2020-02-20 stsp
3917 f135c941 2020-02-20 stsp if (argc == 0) {
3918 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3919 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3920 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3921 f135c941 2020-02-20 stsp return NULL;
3922 f135c941 2020-02-20 stsp }
3923 f135c941 2020-02-20 stsp
3924 f135c941 2020-02-20 stsp if (worktree) {
3925 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3926 bfd61697 2020-11-14 stsp char *p;
3927 f135c941 2020-02-20 stsp
3928 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3929 f135c941 2020-02-20 stsp if (err)
3930 f135c941 2020-02-20 stsp return err;
3931 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3932 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3933 bfd61697 2020-11-14 stsp p) == -1) {
3934 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3935 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3936 f135c941 2020-02-20 stsp }
3937 f135c941 2020-02-20 stsp free(p);
3938 f135c941 2020-02-20 stsp } else
3939 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3940 f135c941 2020-02-20 stsp
3941 f135c941 2020-02-20 stsp return err;
3942 f135c941 2020-02-20 stsp }
3943 f135c941 2020-02-20 stsp
3944 f135c941 2020-02-20 stsp static const struct got_error *
3945 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3946 9f7d7167 2018-04-29 stsp {
3947 80ddbec8 2018-04-29 stsp const struct got_error *error;
3948 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3949 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3950 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3951 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3952 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3953 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3954 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3955 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3956 04cc582a 2018-08-01 stsp struct tog_view *view;
3957 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
3958 80ddbec8 2018-04-29 stsp
3959 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3960 80ddbec8 2018-04-29 stsp switch (ch) {
3961 b672a97a 2020-01-27 stsp case 'b':
3962 b672a97a 2020-01-27 stsp log_branches = 1;
3963 b672a97a 2020-01-27 stsp break;
3964 80ddbec8 2018-04-29 stsp case 'c':
3965 80ddbec8 2018-04-29 stsp start_commit = optarg;
3966 80ddbec8 2018-04-29 stsp break;
3967 ecb28ae0 2018-07-16 stsp case 'r':
3968 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3969 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3970 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3971 9ba1d308 2019-10-21 stsp optarg);
3972 ecb28ae0 2018-07-16 stsp break;
3973 80ddbec8 2018-04-29 stsp default:
3974 17020d27 2019-03-07 stsp usage_log();
3975 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3976 80ddbec8 2018-04-29 stsp }
3977 80ddbec8 2018-04-29 stsp }
3978 80ddbec8 2018-04-29 stsp
3979 80ddbec8 2018-04-29 stsp argc -= optind;
3980 80ddbec8 2018-04-29 stsp argv += optind;
3981 80ddbec8 2018-04-29 stsp
3982 f135c941 2020-02-20 stsp if (argc > 1)
3983 f135c941 2020-02-20 stsp usage_log();
3984 963f97a1 2019-03-18 stsp
3985 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
3986 0ae84acc 2022-06-15 tracey if (error != NULL)
3987 0ae84acc 2022-06-15 tracey goto done;
3988 0ae84acc 2022-06-15 tracey
3989 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3990 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3991 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3992 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3993 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3994 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3995 c156c7a4 2020-12-18 stsp goto done;
3996 a1fbf39a 2019-08-11 stsp if (worktree)
3997 6962eb72 2020-02-20 stsp repo_path =
3998 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
3999 a1fbf39a 2019-08-11 stsp else
4000 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
4001 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
4002 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
4003 c156c7a4 2020-12-18 stsp goto done;
4004 c156c7a4 2020-12-18 stsp }
4005 ecb28ae0 2018-07-16 stsp }
4006 ecb28ae0 2018-07-16 stsp
4007 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
4008 80ddbec8 2018-04-29 stsp if (error != NULL)
4009 ecb28ae0 2018-07-16 stsp goto done;
4010 80ddbec8 2018-04-29 stsp
4011 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4012 f135c941 2020-02-20 stsp repo, worktree);
4013 f135c941 2020-02-20 stsp if (error)
4014 f135c941 2020-02-20 stsp goto done;
4015 f135c941 2020-02-20 stsp
4016 f135c941 2020-02-20 stsp init_curses();
4017 f135c941 2020-02-20 stsp
4018 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
4019 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4020 c02c541e 2019-03-29 stsp if (error)
4021 c02c541e 2019-03-29 stsp goto done;
4022 c02c541e 2019-03-29 stsp
4023 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
4024 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
4025 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
4026 87670572 2020-12-26 naddy if (error)
4027 87670572 2020-12-26 naddy goto done;
4028 87670572 2020-12-26 naddy }
4029 51a10b52 2020-12-26 stsp
4030 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
4031 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
4032 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
4033 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4034 d8f38dc4 2020-12-05 stsp if (error)
4035 d8f38dc4 2020-12-05 stsp goto done;
4036 d8f38dc4 2020-12-05 stsp head_ref_name = label;
4037 d8f38dc4 2020-12-05 stsp } else {
4038 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
4039 d8f38dc4 2020-12-05 stsp if (error == NULL)
4040 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
4041 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
4042 d8f38dc4 2020-12-05 stsp goto done;
4043 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
4044 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4045 d8f38dc4 2020-12-05 stsp if (error)
4046 d8f38dc4 2020-12-05 stsp goto done;
4047 d8f38dc4 2020-12-05 stsp }
4048 8b473291 2019-02-21 stsp
4049 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4050 04cc582a 2018-08-01 stsp if (view == NULL) {
4051 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4052 04cc582a 2018-08-01 stsp goto done;
4053 04cc582a 2018-08-01 stsp }
4054 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
4055 f135c941 2020-02-20 stsp in_repo_path, log_branches);
4056 ba4f502b 2018-08-04 stsp if (error)
4057 ba4f502b 2018-08-04 stsp goto done;
4058 2fc00ff4 2019-08-31 stsp if (worktree) {
4059 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
4060 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
4061 2fc00ff4 2019-08-31 stsp worktree = NULL;
4062 2fc00ff4 2019-08-31 stsp }
4063 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4064 ecb28ae0 2018-07-16 stsp done:
4065 f135c941 2020-02-20 stsp free(in_repo_path);
4066 ecb28ae0 2018-07-16 stsp free(repo_path);
4067 ecb28ae0 2018-07-16 stsp free(cwd);
4068 899d86c2 2018-05-10 stsp free(start_id);
4069 d8f38dc4 2020-12-05 stsp free(label);
4070 d8f38dc4 2020-12-05 stsp if (ref)
4071 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
4072 1d0f4054 2021-06-17 stsp if (repo) {
4073 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
4074 1d0f4054 2021-06-17 stsp if (error == NULL)
4075 1d0f4054 2021-06-17 stsp error = close_err;
4076 1d0f4054 2021-06-17 stsp }
4077 ec142235 2019-03-07 stsp if (worktree)
4078 ec142235 2019-03-07 stsp got_worktree_close(worktree);
4079 0ae84acc 2022-06-15 tracey if (pack_fds) {
4080 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
4081 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
4082 0ae84acc 2022-06-15 tracey if (error == NULL)
4083 0ae84acc 2022-06-15 tracey error = pack_err;
4084 0ae84acc 2022-06-15 tracey }
4085 51a10b52 2020-12-26 stsp tog_free_refs();
4086 80ddbec8 2018-04-29 stsp return error;
4087 9f7d7167 2018-04-29 stsp }
4088 9f7d7167 2018-04-29 stsp
4089 4ed7e80c 2018-05-20 stsp __dead static void
4090 9f7d7167 2018-04-29 stsp usage_diff(void)
4091 9f7d7167 2018-04-29 stsp {
4092 80ddbec8 2018-04-29 stsp endwin();
4093 827a167b 2022-08-16 stsp fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4094 827a167b 2022-08-16 stsp "object1 object2\n", getprogname());
4095 9f7d7167 2018-04-29 stsp exit(1);
4096 b304db33 2018-05-20 stsp }
4097 b304db33 2018-05-20 stsp
4098 6d17833f 2019-11-08 stsp static int
4099 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
4100 41605754 2020-11-12 stsp regmatch_t *regmatch)
4101 6d17833f 2019-11-08 stsp {
4102 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
4103 6d17833f 2019-11-08 stsp }
4104 6d17833f 2019-11-08 stsp
4105 336075a4 2022-06-25 op static struct tog_color *
4106 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
4107 6d17833f 2019-11-08 stsp {
4108 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
4109 6d17833f 2019-11-08 stsp
4110 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
4111 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
4112 6d17833f 2019-11-08 stsp return tc;
4113 6d17833f 2019-11-08 stsp }
4114 6d17833f 2019-11-08 stsp
4115 6d17833f 2019-11-08 stsp return NULL;
4116 6d17833f 2019-11-08 stsp }
4117 6d17833f 2019-11-08 stsp
4118 4ed7e80c 2018-05-20 stsp static const struct got_error *
4119 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4120 1853e0f4 2022-06-16 stsp WINDOW *window, int skipcol, regmatch_t *regmatch)
4121 41605754 2020-11-12 stsp {
4122 41605754 2020-11-12 stsp const struct got_error *err = NULL;
4123 44a87665 2022-06-16 stsp char *exstr = NULL;
4124 1853e0f4 2022-06-16 stsp wchar_t *wline = NULL;
4125 1853e0f4 2022-06-16 stsp int rme, rms, n, width, scrollx;
4126 1853e0f4 2022-06-16 stsp int width0 = 0, width1 = 0, width2 = 0;
4127 1853e0f4 2022-06-16 stsp char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4128 41605754 2020-11-12 stsp
4129 41605754 2020-11-12 stsp *wtotal = 0;
4130 1853e0f4 2022-06-16 stsp
4131 145b6838 2022-06-16 stsp rms = regmatch->rm_so;
4132 145b6838 2022-06-16 stsp rme = regmatch->rm_eo;
4133 41605754 2020-11-12 stsp
4134 44a87665 2022-06-16 stsp err = expand_tab(&exstr, line);
4135 44a87665 2022-06-16 stsp if (err)
4136 44a87665 2022-06-16 stsp return err;
4137 44a87665 2022-06-16 stsp
4138 1853e0f4 2022-06-16 stsp /* Split the line into 3 segments, according to match offsets. */
4139 44a87665 2022-06-16 stsp seg0 = strndup(exstr, rms);
4140 44a87665 2022-06-16 stsp if (seg0 == NULL) {
4141 44a87665 2022-06-16 stsp err = got_error_from_errno("strndup");
4142 44a87665 2022-06-16 stsp goto done;
4143 44a87665 2022-06-16 stsp }
4144 44a87665 2022-06-16 stsp seg1 = strndup(exstr + rms, rme - rms);
4145 1853e0f4 2022-06-16 stsp if (seg1 == NULL) {
4146 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
4147 1853e0f4 2022-06-16 stsp goto done;
4148 1853e0f4 2022-06-16 stsp }
4149 44a87665 2022-06-16 stsp seg2 = strdup(exstr + rme);
4150 95d136ac 2022-06-16 stsp if (seg2 == NULL) {
4151 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
4152 1853e0f4 2022-06-16 stsp goto done;
4153 1853e0f4 2022-06-16 stsp }
4154 145b6838 2022-06-16 stsp
4155 145b6838 2022-06-16 stsp /* draw up to matched token if we haven't scrolled past it */
4156 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4157 1853e0f4 2022-06-16 stsp col_tab_align, 1);
4158 1853e0f4 2022-06-16 stsp if (err)
4159 1853e0f4 2022-06-16 stsp goto done;
4160 1853e0f4 2022-06-16 stsp n = MAX(width0 - skipcol, 0);
4161 145b6838 2022-06-16 stsp if (n) {
4162 1853e0f4 2022-06-16 stsp free(wline);
4163 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4164 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
4165 1853e0f4 2022-06-16 stsp if (err)
4166 1853e0f4 2022-06-16 stsp goto done;
4167 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
4168 1853e0f4 2022-06-16 stsp wlimit -= width;
4169 1853e0f4 2022-06-16 stsp *wtotal += width;
4170 41605754 2020-11-12 stsp }
4171 41605754 2020-11-12 stsp
4172 41605754 2020-11-12 stsp if (wlimit > 0) {
4173 1853e0f4 2022-06-16 stsp int i = 0, w = 0;
4174 1853e0f4 2022-06-16 stsp size_t wlen;
4175 1853e0f4 2022-06-16 stsp
4176 1853e0f4 2022-06-16 stsp free(wline);
4177 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4178 1853e0f4 2022-06-16 stsp col_tab_align, 1);
4179 1853e0f4 2022-06-16 stsp if (err)
4180 1853e0f4 2022-06-16 stsp goto done;
4181 1853e0f4 2022-06-16 stsp wlen = wcslen(wline);
4182 1853e0f4 2022-06-16 stsp while (i < wlen) {
4183 1853e0f4 2022-06-16 stsp width = wcwidth(wline[i]);
4184 1853e0f4 2022-06-16 stsp if (width == -1) {
4185 1853e0f4 2022-06-16 stsp /* should not happen, tabs are expanded */
4186 1853e0f4 2022-06-16 stsp err = got_error(GOT_ERR_RANGE);
4187 1853e0f4 2022-06-16 stsp goto done;
4188 1853e0f4 2022-06-16 stsp }
4189 1853e0f4 2022-06-16 stsp if (width0 + w + width > skipcol)
4190 1853e0f4 2022-06-16 stsp break;
4191 61417565 2022-06-20 mark w += width;
4192 1853e0f4 2022-06-16 stsp i++;
4193 41605754 2020-11-12 stsp }
4194 145b6838 2022-06-16 stsp /* draw (visible part of) matched token (if scrolled into it) */
4195 1853e0f4 2022-06-16 stsp if (width1 - w > 0) {
4196 145b6838 2022-06-16 stsp wattron(window, A_STANDOUT);
4197 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[i]);
4198 145b6838 2022-06-16 stsp wattroff(window, A_STANDOUT);
4199 1853e0f4 2022-06-16 stsp wlimit -= (width1 - w);
4200 1853e0f4 2022-06-16 stsp *wtotal += (width1 - w);
4201 41605754 2020-11-12 stsp }
4202 41605754 2020-11-12 stsp }
4203 41605754 2020-11-12 stsp
4204 1853e0f4 2022-06-16 stsp if (wlimit > 0) { /* draw rest of line */
4205 1853e0f4 2022-06-16 stsp free(wline);
4206 1853e0f4 2022-06-16 stsp if (skipcol > width0 + width1) {
4207 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, &scrollx, seg2,
4208 1853e0f4 2022-06-16 stsp skipcol - (width0 + width1), wlimit,
4209 1853e0f4 2022-06-16 stsp col_tab_align, 1);
4210 1853e0f4 2022-06-16 stsp if (err)
4211 1853e0f4 2022-06-16 stsp goto done;
4212 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
4213 1853e0f4 2022-06-16 stsp } else {
4214 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, NULL, seg2, 0,
4215 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
4216 1853e0f4 2022-06-16 stsp if (err)
4217 1853e0f4 2022-06-16 stsp goto done;
4218 1853e0f4 2022-06-16 stsp waddwstr(window, wline);
4219 1853e0f4 2022-06-16 stsp }
4220 1853e0f4 2022-06-16 stsp *wtotal += width2;
4221 41605754 2020-11-12 stsp }
4222 1853e0f4 2022-06-16 stsp done:
4223 145b6838 2022-06-16 stsp free(wline);
4224 44a87665 2022-06-16 stsp free(exstr);
4225 1853e0f4 2022-06-16 stsp free(seg0);
4226 1853e0f4 2022-06-16 stsp free(seg1);
4227 1853e0f4 2022-06-16 stsp free(seg2);
4228 1853e0f4 2022-06-16 stsp return err;
4229 41605754 2020-11-12 stsp }
4230 94b80cfa 2022-08-01 mark
4231 94b80cfa 2022-08-01 mark static int
4232 94b80cfa 2022-08-01 mark gotoline(struct tog_view *view, int *lineno, int *nprinted)
4233 94b80cfa 2022-08-01 mark {
4234 94b80cfa 2022-08-01 mark FILE *f = NULL;
4235 94b80cfa 2022-08-01 mark int *eof, *first, *selected;
4236 94b80cfa 2022-08-01 mark
4237 94b80cfa 2022-08-01 mark if (view->type == TOG_VIEW_DIFF) {
4238 94b80cfa 2022-08-01 mark struct tog_diff_view_state *s = &view->state.diff;
4239 ec2a9698 2022-09-15 mark
4240 ec2a9698 2022-09-15 mark first = &s->first_displayed_line;
4241 ec2a9698 2022-09-15 mark selected = first;
4242 ec2a9698 2022-09-15 mark eof = &s->eof;
4243 ec2a9698 2022-09-15 mark f = s->f;
4244 ec2a9698 2022-09-15 mark } else if (view->type == TOG_VIEW_HELP) {
4245 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
4246 41605754 2020-11-12 stsp
4247 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
4248 94b80cfa 2022-08-01 mark selected = first;
4249 94b80cfa 2022-08-01 mark eof = &s->eof;
4250 94b80cfa 2022-08-01 mark f = s->f;
4251 94b80cfa 2022-08-01 mark } else if (view->type == TOG_VIEW_BLAME) {
4252 94b80cfa 2022-08-01 mark struct tog_blame_view_state *s = &view->state.blame;
4253 94b80cfa 2022-08-01 mark
4254 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
4255 94b80cfa 2022-08-01 mark selected = &s->selected_line;
4256 94b80cfa 2022-08-01 mark eof = &s->eof;
4257 94b80cfa 2022-08-01 mark f = s->blame.f;
4258 94b80cfa 2022-08-01 mark } else
4259 94b80cfa 2022-08-01 mark return 0;
4260 94b80cfa 2022-08-01 mark
4261 94b80cfa 2022-08-01 mark /* Center gline in the middle of the page like vi(1). */
4262 94b80cfa 2022-08-01 mark if (*lineno < view->gline - (view->nlines - 3) / 2)
4263 94b80cfa 2022-08-01 mark return 0;
4264 94b80cfa 2022-08-01 mark if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4265 94b80cfa 2022-08-01 mark rewind(f);
4266 94b80cfa 2022-08-01 mark *eof = 0;
4267 94b80cfa 2022-08-01 mark *first = 1;
4268 94b80cfa 2022-08-01 mark *lineno = 0;
4269 94b80cfa 2022-08-01 mark *nprinted = 0;
4270 94b80cfa 2022-08-01 mark return 0;
4271 94b80cfa 2022-08-01 mark }
4272 94b80cfa 2022-08-01 mark
4273 94b80cfa 2022-08-01 mark *selected = view->gline <= (view->nlines - 3) / 2 ?
4274 94b80cfa 2022-08-01 mark view->gline : (view->nlines - 3) / 2 + 1;
4275 94b80cfa 2022-08-01 mark view->gline = 0;
4276 94b80cfa 2022-08-01 mark
4277 94b80cfa 2022-08-01 mark return 1;
4278 94b80cfa 2022-08-01 mark }
4279 94b80cfa 2022-08-01 mark
4280 41605754 2020-11-12 stsp static const struct got_error *
4281 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
4282 26ed57b2 2018-05-19 stsp {
4283 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
4284 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
4285 61e69b96 2018-05-20 stsp const struct got_error *err;
4286 c7d5c43c 2022-08-04 mark int nprinted = 0;
4287 b304db33 2018-05-20 stsp char *line;
4288 826082fe 2020-12-10 stsp size_t linesize = 0;
4289 826082fe 2020-12-10 stsp ssize_t linelen;
4290 61e69b96 2018-05-20 stsp wchar_t *wline;
4291 e0b650dd 2018-05-20 stsp int width;
4292 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
4293 89f1a395 2020-12-01 naddy int nlines = s->nlines;
4294 fe621944 2020-11-10 stsp off_t line_offset;
4295 26ed57b2 2018-05-19 stsp
4296 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1;
4297 c7d5c43c 2022-08-04 mark line_offset = s->lines[s->first_displayed_line - 1].offset;
4298 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4299 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
4300 fe621944 2020-11-10 stsp
4301 f7d12f7e 2018-08-01 stsp werase(view->window);
4302 a3404814 2018-09-02 stsp
4303 94b80cfa 2022-08-01 mark if (view->gline > s->nlines - 1)
4304 94b80cfa 2022-08-01 mark view->gline = s->nlines - 1;
4305 94b80cfa 2022-08-01 mark
4306 a3404814 2018-09-02 stsp if (header) {
4307 94b80cfa 2022-08-01 mark int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4308 94b80cfa 2022-08-01 mark 1 : view->gline - (view->nlines - 3) / 2 :
4309 c7d5c43c 2022-08-04 mark s->lineno + s->selected_line;
4310 94b80cfa 2022-08-01 mark
4311 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4312 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
4313 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4314 ccda2f4d 2022-06-16 stsp 0, 0);
4315 135a2da0 2020-11-11 stsp free(line);
4316 135a2da0 2020-11-11 stsp if (err)
4317 a3404814 2018-09-02 stsp return err;
4318 a3404814 2018-09-02 stsp
4319 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4320 a3404814 2018-09-02 stsp wstandout(view->window);
4321 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
4322 e54cc94a 2020-11-11 stsp free(wline);
4323 e54cc94a 2020-11-11 stsp wline = NULL;
4324 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
4325 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
4326 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4327 a3404814 2018-09-02 stsp wstandend(view->window);
4328 26ed57b2 2018-05-19 stsp
4329 a3404814 2018-09-02 stsp if (max_lines <= 1)
4330 a3404814 2018-09-02 stsp return NULL;
4331 a3404814 2018-09-02 stsp max_lines--;
4332 a3404814 2018-09-02 stsp }
4333 a3404814 2018-09-02 stsp
4334 89f1a395 2020-12-01 naddy s->eof = 0;
4335 145b6838 2022-06-16 stsp view->maxx = 0;
4336 826082fe 2020-12-10 stsp line = NULL;
4337 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
4338 6a5ff2d4 2022-08-06 mark enum got_diff_line_type linetype;
4339 6a5ff2d4 2022-08-06 mark attr_t attr = 0;
4340 6a5ff2d4 2022-08-06 mark
4341 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4342 826082fe 2020-12-10 stsp if (linelen == -1) {
4343 826082fe 2020-12-10 stsp if (feof(s->f)) {
4344 826082fe 2020-12-10 stsp s->eof = 1;
4345 826082fe 2020-12-10 stsp break;
4346 826082fe 2020-12-10 stsp }
4347 826082fe 2020-12-10 stsp free(line);
4348 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
4349 61e69b96 2018-05-20 stsp }
4350 145b6838 2022-06-16 stsp
4351 c7d5c43c 2022-08-04 mark if (++s->lineno < s->first_displayed_line)
4352 94b80cfa 2022-08-01 mark continue;
4353 c7d5c43c 2022-08-04 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4354 94b80cfa 2022-08-01 mark continue;
4355 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline)
4356 94b80cfa 2022-08-01 mark attr = A_STANDOUT;
4357 94b80cfa 2022-08-01 mark
4358 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
4359 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4360 1853e0f4 2022-06-16 stsp view->x ? 1 : 0);
4361 1853e0f4 2022-06-16 stsp if (err) {
4362 1853e0f4 2022-06-16 stsp free(line);
4363 1853e0f4 2022-06-16 stsp return err;
4364 1853e0f4 2022-06-16 stsp }
4365 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
4366 1853e0f4 2022-06-16 stsp free(wline);
4367 1853e0f4 2022-06-16 stsp wline = NULL;
4368 1853e0f4 2022-06-16 stsp
4369 6a5ff2d4 2022-08-06 mark linetype = s->lines[s->lineno].type;
4370 6a5ff2d4 2022-08-06 mark if (linetype > GOT_DIFF_LINE_LOGMSG &&
4371 6a5ff2d4 2022-08-06 mark linetype < GOT_DIFF_LINE_CONTEXT)
4372 6a5ff2d4 2022-08-06 mark attr |= COLOR_PAIR(linetype);
4373 94b80cfa 2022-08-01 mark if (attr)
4374 94b80cfa 2022-08-01 mark wattron(view->window, attr);
4375 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4376 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4377 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4378 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
4379 41605754 2020-11-12 stsp if (err) {
4380 41605754 2020-11-12 stsp free(line);
4381 41605754 2020-11-12 stsp return err;
4382 41605754 2020-11-12 stsp }
4383 41605754 2020-11-12 stsp } else {
4384 969c159c 2022-06-16 stsp int skip;
4385 969c159c 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
4386 969c159c 2022-06-16 stsp view->x, view->ncols, 0, view->x ? 1 : 0);
4387 969c159c 2022-06-16 stsp if (err) {
4388 969c159c 2022-06-16 stsp free(line);
4389 969c159c 2022-06-16 stsp return err;
4390 969c159c 2022-06-16 stsp }
4391 969c159c 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
4392 969c159c 2022-06-16 stsp free(wline);
4393 41605754 2020-11-12 stsp wline = NULL;
4394 41605754 2020-11-12 stsp }
4395 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline) {
4396 94b80cfa 2022-08-01 mark /* highlight full gline length */
4397 94b80cfa 2022-08-01 mark while (width++ < view->ncols)
4398 94b80cfa 2022-08-01 mark waddch(view->window, ' ');
4399 94b80cfa 2022-08-01 mark } else {
4400 94b80cfa 2022-08-01 mark if (width <= view->ncols - 1)
4401 94b80cfa 2022-08-01 mark waddch(view->window, '\n');
4402 94b80cfa 2022-08-01 mark }
4403 94b80cfa 2022-08-01 mark if (attr)
4404 94b80cfa 2022-08-01 mark wattroff(view->window, attr);
4405 94b80cfa 2022-08-01 mark if (++nprinted == 1)
4406 c7d5c43c 2022-08-04 mark s->first_displayed_line = s->lineno;
4407 826082fe 2020-12-10 stsp }
4408 826082fe 2020-12-10 stsp free(line);
4409 fe621944 2020-11-10 stsp if (nprinted >= 1)
4410 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4411 89f1a395 2020-12-01 naddy (nprinted - 1);
4412 fe621944 2020-11-10 stsp else
4413 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4414 26ed57b2 2018-05-19 stsp
4415 9b058f45 2022-06-30 mark view_border(view);
4416 c3e9aa98 2019-05-13 jcs
4417 89f1a395 2020-12-01 naddy if (s->eof) {
4418 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4419 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4420 c3e9aa98 2019-05-13 jcs nprinted++;
4421 c3e9aa98 2019-05-13 jcs }
4422 c3e9aa98 2019-05-13 jcs
4423 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4424 ccda2f4d 2022-06-16 stsp view->ncols, 0, 0);
4425 c3e9aa98 2019-05-13 jcs if (err) {
4426 c3e9aa98 2019-05-13 jcs return err;
4427 c3e9aa98 2019-05-13 jcs }
4428 26ed57b2 2018-05-19 stsp
4429 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4430 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4431 e54cc94a 2020-11-11 stsp free(wline);
4432 e54cc94a 2020-11-11 stsp wline = NULL;
4433 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4434 c3e9aa98 2019-05-13 jcs }
4435 c3e9aa98 2019-05-13 jcs
4436 26ed57b2 2018-05-19 stsp return NULL;
4437 abd2672a 2018-12-23 stsp }
4438 abd2672a 2018-12-23 stsp
4439 abd2672a 2018-12-23 stsp static char *
4440 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4441 abd2672a 2018-12-23 stsp {
4442 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4443 09867e48 2019-08-13 stsp char *p, *s;
4444 09867e48 2019-08-13 stsp
4445 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4446 09867e48 2019-08-13 stsp if (tm == NULL)
4447 09867e48 2019-08-13 stsp return NULL;
4448 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4449 09867e48 2019-08-13 stsp if (s == NULL)
4450 09867e48 2019-08-13 stsp return NULL;
4451 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4452 abd2672a 2018-12-23 stsp if (p)
4453 abd2672a 2018-12-23 stsp *p = '\0';
4454 abd2672a 2018-12-23 stsp return s;
4455 9f7d7167 2018-04-29 stsp }
4456 9f7d7167 2018-04-29 stsp
4457 4ed7e80c 2018-05-20 stsp static const struct got_error *
4458 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4459 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4460 0208f208 2020-05-05 stsp {
4461 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4462 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4463 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4464 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4465 0208f208 2020-05-05 stsp
4466 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4467 0208f208 2020-05-05 stsp if (qid != NULL) {
4468 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4469 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4470 d7b5a0e8 2022-04-20 stsp &qid->id);
4471 0208f208 2020-05-05 stsp if (err)
4472 0208f208 2020-05-05 stsp return err;
4473 0208f208 2020-05-05 stsp
4474 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4475 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4476 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4477 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4478 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4479 aa8b5dd0 2021-08-01 stsp }
4480 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4481 0208f208 2020-05-05 stsp
4482 0208f208 2020-05-05 stsp }
4483 0208f208 2020-05-05 stsp
4484 0208f208 2020-05-05 stsp if (tree_id1) {
4485 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4486 0208f208 2020-05-05 stsp if (err)
4487 0208f208 2020-05-05 stsp goto done;
4488 0208f208 2020-05-05 stsp }
4489 0208f208 2020-05-05 stsp
4490 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4491 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4492 0208f208 2020-05-05 stsp if (err)
4493 0208f208 2020-05-05 stsp goto done;
4494 0208f208 2020-05-05 stsp
4495 f9d37699 2022-06-28 stsp err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4496 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4497 0208f208 2020-05-05 stsp done:
4498 0208f208 2020-05-05 stsp if (tree1)
4499 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4500 0208f208 2020-05-05 stsp if (tree2)
4501 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4502 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4503 0208f208 2020-05-05 stsp return err;
4504 0208f208 2020-05-05 stsp }
4505 0208f208 2020-05-05 stsp
4506 0208f208 2020-05-05 stsp static const struct got_error *
4507 c7d5c43c 2022-08-04 mark add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4508 c7d5c43c 2022-08-04 mark off_t off, uint8_t type)
4509 abd2672a 2018-12-23 stsp {
4510 c7d5c43c 2022-08-04 mark struct got_diff_line *p;
4511 fe621944 2020-11-10 stsp
4512 c7d5c43c 2022-08-04 mark p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4513 fe621944 2020-11-10 stsp if (p == NULL)
4514 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4515 c7d5c43c 2022-08-04 mark *lines = p;
4516 c7d5c43c 2022-08-04 mark (*lines)[*nlines].offset = off;
4517 c7d5c43c 2022-08-04 mark (*lines)[*nlines].type = type;
4518 fe621944 2020-11-10 stsp (*nlines)++;
4519 c7d5c43c 2022-08-04 mark
4520 fe621944 2020-11-10 stsp return NULL;
4521 fe621944 2020-11-10 stsp }
4522 fe621944 2020-11-10 stsp
4523 fe621944 2020-11-10 stsp static const struct got_error *
4524 c7d5c43c 2022-08-04 mark write_commit_info(struct got_diff_line **lines, size_t *nlines,
4525 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4526 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4527 fe621944 2020-11-10 stsp {
4528 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4529 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4530 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4531 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4532 45d799e2 2018-12-23 stsp time_t committer_time;
4533 45d799e2 2018-12-23 stsp const char *author, *committer;
4534 8b473291 2019-02-21 stsp char *refs_str = NULL;
4535 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4536 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4537 fe621944 2020-11-10 stsp off_t outoff = 0;
4538 fe621944 2020-11-10 stsp int n;
4539 abd2672a 2018-12-23 stsp
4540 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4541 0208f208 2020-05-05 stsp
4542 8b473291 2019-02-21 stsp if (refs) {
4543 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4544 8b473291 2019-02-21 stsp if (err)
4545 8b473291 2019-02-21 stsp return err;
4546 8b473291 2019-02-21 stsp }
4547 8b473291 2019-02-21 stsp
4548 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4549 abd2672a 2018-12-23 stsp if (err)
4550 abd2672a 2018-12-23 stsp return err;
4551 abd2672a 2018-12-23 stsp
4552 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4553 15a94983 2018-12-23 stsp if (err) {
4554 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4555 15a94983 2018-12-23 stsp goto done;
4556 15a94983 2018-12-23 stsp }
4557 abd2672a 2018-12-23 stsp
4558 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4559 fe621944 2020-11-10 stsp if (err)
4560 fe621944 2020-11-10 stsp goto done;
4561 fe621944 2020-11-10 stsp
4562 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4563 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4564 fe621944 2020-11-10 stsp if (n < 0) {
4565 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4566 abd2672a 2018-12-23 stsp goto done;
4567 abd2672a 2018-12-23 stsp }
4568 fe621944 2020-11-10 stsp outoff += n;
4569 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4570 fe621944 2020-11-10 stsp if (err)
4571 fe621944 2020-11-10 stsp goto done;
4572 fe621944 2020-11-10 stsp
4573 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4574 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4575 fe621944 2020-11-10 stsp if (n < 0) {
4576 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4577 abd2672a 2018-12-23 stsp goto done;
4578 abd2672a 2018-12-23 stsp }
4579 fe621944 2020-11-10 stsp outoff += n;
4580 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4581 fe621944 2020-11-10 stsp if (err)
4582 fe621944 2020-11-10 stsp goto done;
4583 fe621944 2020-11-10 stsp
4584 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4585 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4586 fe621944 2020-11-10 stsp if (datestr) {
4587 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4588 fe621944 2020-11-10 stsp if (n < 0) {
4589 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4590 fe621944 2020-11-10 stsp goto done;
4591 fe621944 2020-11-10 stsp }
4592 fe621944 2020-11-10 stsp outoff += n;
4593 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4594 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_DATE);
4595 fe621944 2020-11-10 stsp if (err)
4596 fe621944 2020-11-10 stsp goto done;
4597 abd2672a 2018-12-23 stsp }
4598 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4599 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4600 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4601 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4602 fe621944 2020-11-10 stsp if (n < 0) {
4603 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4604 fe621944 2020-11-10 stsp goto done;
4605 fe621944 2020-11-10 stsp }
4606 fe621944 2020-11-10 stsp outoff += n;
4607 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4608 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_AUTHOR);
4609 fe621944 2020-11-10 stsp if (err)
4610 fe621944 2020-11-10 stsp goto done;
4611 abd2672a 2018-12-23 stsp }
4612 9f98ca05 2021-09-24 stsp if (got_object_commit_get_nparents(commit) > 1) {
4613 9f98ca05 2021-09-24 stsp const struct got_object_id_queue *parent_ids;
4614 9f98ca05 2021-09-24 stsp struct got_object_qid *qid;
4615 9f98ca05 2021-09-24 stsp int pn = 1;
4616 9f98ca05 2021-09-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
4617 9f98ca05 2021-09-24 stsp STAILQ_FOREACH(qid, parent_ids, entry) {
4618 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &qid->id);
4619 9f98ca05 2021-09-24 stsp if (err)
4620 9f98ca05 2021-09-24 stsp goto done;
4621 9f98ca05 2021-09-24 stsp n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4622 9f98ca05 2021-09-24 stsp if (n < 0) {
4623 9f98ca05 2021-09-24 stsp err = got_error_from_errno("fprintf");
4624 9f98ca05 2021-09-24 stsp goto done;
4625 9f98ca05 2021-09-24 stsp }
4626 9f98ca05 2021-09-24 stsp outoff += n;
4627 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4628 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
4629 9f98ca05 2021-09-24 stsp if (err)
4630 9f98ca05 2021-09-24 stsp goto done;
4631 9f98ca05 2021-09-24 stsp free(id_str);
4632 9f98ca05 2021-09-24 stsp id_str = NULL;
4633 9f98ca05 2021-09-24 stsp }
4634 9f98ca05 2021-09-24 stsp }
4635 9f98ca05 2021-09-24 stsp
4636 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4637 5943eee2 2019-08-13 stsp if (err)
4638 5943eee2 2019-08-13 stsp goto done;
4639 fe621944 2020-11-10 stsp s = logmsg;
4640 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4641 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4642 fe621944 2020-11-10 stsp if (n < 0) {
4643 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4644 fe621944 2020-11-10 stsp goto done;
4645 fe621944 2020-11-10 stsp }
4646 fe621944 2020-11-10 stsp outoff += n;
4647 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4648 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_LOGMSG);
4649 fe621944 2020-11-10 stsp if (err)
4650 fe621944 2020-11-10 stsp goto done;
4651 abd2672a 2018-12-23 stsp }
4652 fe621944 2020-11-10 stsp
4653 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4654 0208f208 2020-05-05 stsp if (err)
4655 0208f208 2020-05-05 stsp goto done;
4656 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4657 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4658 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4659 fe621944 2020-11-10 stsp if (n < 0) {
4660 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4661 fe621944 2020-11-10 stsp goto done;
4662 fe621944 2020-11-10 stsp }
4663 fe621944 2020-11-10 stsp outoff += n;
4664 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4665 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_CHANGES);
4666 fe621944 2020-11-10 stsp if (err)
4667 fe621944 2020-11-10 stsp goto done;
4668 0208f208 2020-05-05 stsp free((char *)pe->path);
4669 0208f208 2020-05-05 stsp free(pe->data);
4670 0208f208 2020-05-05 stsp }
4671 fe621944 2020-11-10 stsp
4672 0208f208 2020-05-05 stsp fputc('\n', outfile);
4673 fe621944 2020-11-10 stsp outoff++;
4674 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4675 abd2672a 2018-12-23 stsp done:
4676 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4677 abd2672a 2018-12-23 stsp free(id_str);
4678 5943eee2 2019-08-13 stsp free(logmsg);
4679 8b473291 2019-02-21 stsp free(refs_str);
4680 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4681 7510f233 2020-08-09 stsp if (err) {
4682 c7d5c43c 2022-08-04 mark free(*lines);
4683 c7d5c43c 2022-08-04 mark *lines = NULL;
4684 ae6a6978 2020-08-09 stsp *nlines = 0;
4685 7510f233 2020-08-09 stsp }
4686 fe621944 2020-11-10 stsp return err;
4687 abd2672a 2018-12-23 stsp }
4688 abd2672a 2018-12-23 stsp
4689 abd2672a 2018-12-23 stsp static const struct got_error *
4690 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4691 26ed57b2 2018-05-19 stsp {
4692 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4693 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4694 15a94983 2018-12-23 stsp int obj_type;
4695 fe621944 2020-11-10 stsp
4696 c7d5c43c 2022-08-04 mark free(s->lines);
4697 c7d5c43c 2022-08-04 mark s->lines = malloc(sizeof(*s->lines));
4698 c7d5c43c 2022-08-04 mark if (s->lines == NULL)
4699 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4700 fe621944 2020-11-10 stsp s->nlines = 0;
4701 26ed57b2 2018-05-19 stsp
4702 511a516b 2018-05-19 stsp f = got_opentemp();
4703 48ae06ee 2018-10-18 stsp if (f == NULL) {
4704 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4705 48ae06ee 2018-10-18 stsp goto done;
4706 48ae06ee 2018-10-18 stsp }
4707 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4708 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4709 fb43ecf1 2019-02-11 stsp goto done;
4710 fb43ecf1 2019-02-11 stsp }
4711 48ae06ee 2018-10-18 stsp s->f = f;
4712 26ed57b2 2018-05-19 stsp
4713 15a94983 2018-12-23 stsp if (s->id1)
4714 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4715 15a94983 2018-12-23 stsp else
4716 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4717 15a94983 2018-12-23 stsp if (err)
4718 15a94983 2018-12-23 stsp goto done;
4719 15a94983 2018-12-23 stsp
4720 15a94983 2018-12-23 stsp switch (obj_type) {
4721 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4722 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4723 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4724 917d79a7 2022-07-01 stsp s->label1, s->label2, tog_diff_algo, s->diff_context,
4725 f9d37699 2022-06-28 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4726 26ed57b2 2018-05-19 stsp break;
4727 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4728 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4729 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4730 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4731 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4732 26ed57b2 2018-05-19 stsp break;
4733 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4734 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4735 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4736 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4737 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4738 abd2672a 2018-12-23 stsp
4739 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4740 abd2672a 2018-12-23 stsp if (err)
4741 3ffacbe1 2020-02-02 tracey goto done;
4742 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4743 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4744 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4745 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines, &s->nlines, s->id2,
4746 c7d5c43c 2022-08-04 mark refs, s->repo, s->f);
4747 f44b1f58 2020-02-02 tracey if (err)
4748 f44b1f58 2020-02-02 tracey goto done;
4749 f44b1f58 2020-02-02 tracey } else {
4750 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4751 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4752 d7b5a0e8 2022-04-20 stsp if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4753 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines,
4754 c7d5c43c 2022-08-04 mark &s->nlines, s->id2, refs, s->repo,
4755 c7d5c43c 2022-08-04 mark s->f);
4756 f44b1f58 2020-02-02 tracey if (err)
4757 f44b1f58 2020-02-02 tracey goto done;
4758 f5404e4e 2020-02-02 tracey break;
4759 15a087fe 2019-02-21 stsp }
4760 abd2672a 2018-12-23 stsp }
4761 abd2672a 2018-12-23 stsp }
4762 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4763 abd2672a 2018-12-23 stsp
4764 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4765 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4766 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4767 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4768 26ed57b2 2018-05-19 stsp break;
4769 abd2672a 2018-12-23 stsp }
4770 26ed57b2 2018-05-19 stsp default:
4771 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4772 48ae06ee 2018-10-18 stsp break;
4773 26ed57b2 2018-05-19 stsp }
4774 48ae06ee 2018-10-18 stsp done:
4775 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4776 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4777 48ae06ee 2018-10-18 stsp return err;
4778 48ae06ee 2018-10-18 stsp }
4779 26ed57b2 2018-05-19 stsp
4780 f5215bb9 2019-02-22 stsp static void
4781 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4782 f5215bb9 2019-02-22 stsp {
4783 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4784 f5215bb9 2019-02-22 stsp update_panels();
4785 f5215bb9 2019-02-22 stsp doupdate();
4786 f44b1f58 2020-02-02 tracey }
4787 f44b1f58 2020-02-02 tracey
4788 f44b1f58 2020-02-02 tracey static const struct got_error *
4789 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4790 f44b1f58 2020-02-02 tracey {
4791 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4792 f44b1f58 2020-02-02 tracey
4793 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4794 f44b1f58 2020-02-02 tracey return NULL;
4795 f44b1f58 2020-02-02 tracey }
4796 f44b1f58 2020-02-02 tracey
4797 eaf2c13e 2022-09-17 mark static void
4798 eaf2c13e 2022-09-17 mark search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
4799 ec2a9698 2022-09-15 mark size_t *nlines, int **first, int **last, int **match, int **selected)
4800 f44b1f58 2020-02-02 tracey {
4801 eaf2c13e 2022-09-17 mark struct tog_diff_view_state *s = &view->state.diff;
4802 ec2a9698 2022-09-15 mark
4803 eaf2c13e 2022-09-17 mark *f = s->f;
4804 eaf2c13e 2022-09-17 mark *nlines = s->nlines;
4805 eaf2c13e 2022-09-17 mark *line_offsets = NULL;
4806 eaf2c13e 2022-09-17 mark *match = &s->matched_line;
4807 eaf2c13e 2022-09-17 mark *first = &s->first_displayed_line;
4808 eaf2c13e 2022-09-17 mark *last = &s->last_displayed_line;
4809 eaf2c13e 2022-09-17 mark *selected = &s->selected_line;
4810 ec2a9698 2022-09-15 mark }
4811 ec2a9698 2022-09-15 mark
4812 ec2a9698 2022-09-15 mark static const struct got_error *
4813 ec2a9698 2022-09-15 mark search_next_view_match(struct tog_view *view)
4814 ec2a9698 2022-09-15 mark {
4815 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
4816 ec2a9698 2022-09-15 mark FILE *f;
4817 f44b1f58 2020-02-02 tracey int lineno;
4818 cb713507 2022-06-16 stsp char *line = NULL;
4819 826082fe 2020-12-10 stsp size_t linesize = 0;
4820 826082fe 2020-12-10 stsp ssize_t linelen;
4821 ec2a9698 2022-09-15 mark off_t *line_offsets;
4822 ec2a9698 2022-09-15 mark size_t nlines = 0;
4823 ec2a9698 2022-09-15 mark int *first, *last, *match, *selected;
4824 f44b1f58 2020-02-02 tracey
4825 eaf2c13e 2022-09-17 mark if (!view->search_setup)
4826 eaf2c13e 2022-09-17 mark return got_error_msg(GOT_ERR_NOT_IMPL,
4827 eaf2c13e 2022-09-17 mark "view search not supported");
4828 eaf2c13e 2022-09-17 mark view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
4829 ec2a9698 2022-09-15 mark &match, &selected);
4830 ec2a9698 2022-09-15 mark
4831 f44b1f58 2020-02-02 tracey if (!view->searching) {
4832 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4833 f44b1f58 2020-02-02 tracey return NULL;
4834 f44b1f58 2020-02-02 tracey }
4835 f44b1f58 2020-02-02 tracey
4836 ec2a9698 2022-09-15 mark if (*match) {
4837 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4838 ec2a9698 2022-09-15 mark lineno = *match + 1;
4839 f44b1f58 2020-02-02 tracey else
4840 ec2a9698 2022-09-15 mark lineno = *match - 1;
4841 487cd7d2 2021-12-17 stsp } else
4842 ec2a9698 2022-09-15 mark lineno = *first - 1 + *selected;
4843 f44b1f58 2020-02-02 tracey
4844 f44b1f58 2020-02-02 tracey while (1) {
4845 f44b1f58 2020-02-02 tracey off_t offset;
4846 f44b1f58 2020-02-02 tracey
4847 ec2a9698 2022-09-15 mark if (lineno <= 0 || lineno > nlines) {
4848 ec2a9698 2022-09-15 mark if (*match == 0) {
4849 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4850 f44b1f58 2020-02-02 tracey break;
4851 f44b1f58 2020-02-02 tracey }
4852 f44b1f58 2020-02-02 tracey
4853 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4854 f44b1f58 2020-02-02 tracey lineno = 1;
4855 f44b1f58 2020-02-02 tracey else
4856 ec2a9698 2022-09-15 mark lineno = nlines;
4857 f44b1f58 2020-02-02 tracey }
4858 f44b1f58 2020-02-02 tracey
4859 ec2a9698 2022-09-15 mark offset = view->type == TOG_VIEW_DIFF ?
4860 ec2a9698 2022-09-15 mark view->state.diff.lines[lineno - 1].offset :
4861 ec2a9698 2022-09-15 mark line_offsets[lineno - 1];
4862 ec2a9698 2022-09-15 mark if (fseeko(f, offset, SEEK_SET) != 0) {
4863 f44b1f58 2020-02-02 tracey free(line);
4864 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4865 f44b1f58 2020-02-02 tracey }
4866 ec2a9698 2022-09-15 mark linelen = getline(&line, &linesize, f);
4867 cb713507 2022-06-16 stsp if (linelen != -1) {
4868 cb713507 2022-06-16 stsp char *exstr;
4869 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
4870 cb713507 2022-06-16 stsp if (err)
4871 cb713507 2022-06-16 stsp break;
4872 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
4873 cb713507 2022-06-16 stsp &view->regmatch)) {
4874 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4875 ec2a9698 2022-09-15 mark *match = lineno;
4876 cb713507 2022-06-16 stsp free(exstr);
4877 cb713507 2022-06-16 stsp break;
4878 cb713507 2022-06-16 stsp }
4879 cb713507 2022-06-16 stsp free(exstr);
4880 f44b1f58 2020-02-02 tracey }
4881 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4882 f44b1f58 2020-02-02 tracey lineno++;
4883 f44b1f58 2020-02-02 tracey else
4884 f44b1f58 2020-02-02 tracey lineno--;
4885 f44b1f58 2020-02-02 tracey }
4886 826082fe 2020-12-10 stsp free(line);
4887 f44b1f58 2020-02-02 tracey
4888 ec2a9698 2022-09-15 mark if (*match) {
4889 ec2a9698 2022-09-15 mark *first = *match;
4890 ec2a9698 2022-09-15 mark *selected = 1;
4891 f44b1f58 2020-02-02 tracey }
4892 f44b1f58 2020-02-02 tracey
4893 145b6838 2022-06-16 stsp return err;
4894 f5215bb9 2019-02-22 stsp }
4895 f5215bb9 2019-02-22 stsp
4896 48ae06ee 2018-10-18 stsp static const struct got_error *
4897 b72706c3 2022-06-01 stsp close_diff_view(struct tog_view *view)
4898 b72706c3 2022-06-01 stsp {
4899 b72706c3 2022-06-01 stsp const struct got_error *err = NULL;
4900 b72706c3 2022-06-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4901 b72706c3 2022-06-01 stsp
4902 b72706c3 2022-06-01 stsp free(s->id1);
4903 b72706c3 2022-06-01 stsp s->id1 = NULL;
4904 b72706c3 2022-06-01 stsp free(s->id2);
4905 b72706c3 2022-06-01 stsp s->id2 = NULL;
4906 b72706c3 2022-06-01 stsp if (s->f && fclose(s->f) == EOF)
4907 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4908 b72706c3 2022-06-01 stsp s->f = NULL;
4909 f9d37699 2022-06-28 stsp if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4910 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4911 b72706c3 2022-06-01 stsp s->f1 = NULL;
4912 f9d37699 2022-06-28 stsp if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4913 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4914 b72706c3 2022-06-01 stsp s->f2 = NULL;
4915 f9d37699 2022-06-28 stsp if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4916 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4917 f9d37699 2022-06-28 stsp s->fd1 = -1;
4918 f9d37699 2022-06-28 stsp if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4919 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4920 f9d37699 2022-06-28 stsp s->fd2 = -1;
4921 c7d5c43c 2022-08-04 mark free(s->lines);
4922 c7d5c43c 2022-08-04 mark s->lines = NULL;
4923 b72706c3 2022-06-01 stsp s->nlines = 0;
4924 b72706c3 2022-06-01 stsp return err;
4925 b72706c3 2022-06-01 stsp }
4926 b72706c3 2022-06-01 stsp
4927 b72706c3 2022-06-01 stsp static const struct got_error *
4928 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4929 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4930 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4931 c0f61fa4 2022-07-11 mark struct tog_view *parent_view, struct got_repository *repo)
4932 48ae06ee 2018-10-18 stsp {
4933 48ae06ee 2018-10-18 stsp const struct got_error *err;
4934 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4935 5dc9f4bc 2018-08-04 stsp
4936 b72706c3 2022-06-01 stsp memset(s, 0, sizeof(*s));
4937 f9d37699 2022-06-28 stsp s->fd1 = -1;
4938 f9d37699 2022-06-28 stsp s->fd2 = -1;
4939 b72706c3 2022-06-01 stsp
4940 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4941 15a94983 2018-12-23 stsp int type1, type2;
4942 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4943 15a94983 2018-12-23 stsp if (err)
4944 15a94983 2018-12-23 stsp return err;
4945 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4946 15a94983 2018-12-23 stsp if (err)
4947 15a94983 2018-12-23 stsp return err;
4948 15a94983 2018-12-23 stsp
4949 15a94983 2018-12-23 stsp if (type1 != type2)
4950 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4951 15a94983 2018-12-23 stsp }
4952 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4953 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4954 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4955 f44b1f58 2020-02-02 tracey s->repo = repo;
4956 f44b1f58 2020-02-02 tracey s->id1 = id1;
4957 f44b1f58 2020-02-02 tracey s->id2 = id2;
4958 3dbaef42 2020-11-24 stsp s->label1 = label1;
4959 3dbaef42 2020-11-24 stsp s->label2 = label2;
4960 48ae06ee 2018-10-18 stsp
4961 15a94983 2018-12-23 stsp if (id1) {
4962 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4963 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4964 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4965 48ae06ee 2018-10-18 stsp } else
4966 5465d566 2020-02-01 tracey s->id1 = NULL;
4967 48ae06ee 2018-10-18 stsp
4968 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4969 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4970 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_object_id_dup");
4971 b72706c3 2022-06-01 stsp goto done;
4972 48ae06ee 2018-10-18 stsp }
4973 b72706c3 2022-06-01 stsp
4974 a00719e9 2022-06-17 stsp s->f1 = got_opentemp();
4975 a00719e9 2022-06-17 stsp if (s->f1 == NULL) {
4976 a00719e9 2022-06-17 stsp err = got_error_from_errno("got_opentemp");
4977 a00719e9 2022-06-17 stsp goto done;
4978 a00719e9 2022-06-17 stsp }
4979 a00719e9 2022-06-17 stsp
4980 b72706c3 2022-06-01 stsp s->f2 = got_opentemp();
4981 b72706c3 2022-06-01 stsp if (s->f2 == NULL) {
4982 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_opentemp");
4983 b72706c3 2022-06-01 stsp goto done;
4984 b72706c3 2022-06-01 stsp }
4985 b72706c3 2022-06-01 stsp
4986 f9d37699 2022-06-28 stsp s->fd1 = got_opentempfd();
4987 f9d37699 2022-06-28 stsp if (s->fd1 == -1) {
4988 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4989 f9d37699 2022-06-28 stsp goto done;
4990 f9d37699 2022-06-28 stsp }
4991 f9d37699 2022-06-28 stsp
4992 f9d37699 2022-06-28 stsp s->fd2 = got_opentempfd();
4993 f9d37699 2022-06-28 stsp if (s->fd2 == -1) {
4994 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4995 f9d37699 2022-06-28 stsp goto done;
4996 f9d37699 2022-06-28 stsp }
4997 f9d37699 2022-06-28 stsp
4998 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
4999 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
5000 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
5001 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
5002 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
5003 c0f61fa4 2022-07-11 mark s->parent_view = parent_view;
5004 5465d566 2020-02-01 tracey s->repo = repo;
5005 6d17833f 2019-11-08 stsp
5006 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5007 6a5ff2d4 2022-08-06 mark int rc;
5008 6d17833f 2019-11-08 stsp
5009 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_MINUS,
5010 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5011 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5012 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_PLUS,
5013 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5014 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5015 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_HUNK,
5016 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5017 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5018 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_META,
5019 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5020 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5021 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_CHANGES,
5022 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5023 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5024 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5025 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5026 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5027 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5028 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5029 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5030 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5031 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_AUTHOR"), -1);
5032 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5033 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_DATE,
5034 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DATE"), -1);
5035 6a5ff2d4 2022-08-06 mark if (rc == ERR) {
5036 6a5ff2d4 2022-08-06 mark err = got_error(GOT_ERR_RANGE);
5037 b72706c3 2022-06-01 stsp goto done;
5038 6a5ff2d4 2022-08-06 mark }
5039 6d17833f 2019-11-08 stsp }
5040 5dc9f4bc 2018-08-04 stsp
5041 c0f61fa4 2022-07-11 mark if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5042 c0f61fa4 2022-07-11 mark view_is_splitscreen(view))
5043 c0f61fa4 2022-07-11 mark show_log_view(parent_view); /* draw border */
5044 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
5045 f5215bb9 2019-02-22 stsp
5046 5465d566 2020-02-01 tracey err = create_diff(s);
5047 48ae06ee 2018-10-18 stsp
5048 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
5049 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
5050 917d79a7 2022-07-01 stsp view->reset = reset_diff_view;
5051 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
5052 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
5053 eaf2c13e 2022-09-17 mark view->search_setup = search_setup_diff_view;
5054 ec2a9698 2022-09-15 mark view->search_next = search_next_view_match;
5055 b72706c3 2022-06-01 stsp done:
5056 b72706c3 2022-06-01 stsp if (err)
5057 b72706c3 2022-06-01 stsp close_diff_view(view);
5058 e5a0f69f 2018-08-18 stsp return err;
5059 5dc9f4bc 2018-08-04 stsp }
5060 5dc9f4bc 2018-08-04 stsp
5061 5dc9f4bc 2018-08-04 stsp static const struct got_error *
5062 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
5063 5dc9f4bc 2018-08-04 stsp {
5064 a3404814 2018-09-02 stsp const struct got_error *err;
5065 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
5066 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
5067 3dbaef42 2020-11-24 stsp const char *label1, *label2;
5068 a3404814 2018-09-02 stsp
5069 a3404814 2018-09-02 stsp if (s->id1) {
5070 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
5071 a3404814 2018-09-02 stsp if (err)
5072 a3404814 2018-09-02 stsp return err;
5073 4924afe1 2022-08-31 mark label1 = s->label1 ? s->label1 : id_str1;
5074 3dbaef42 2020-11-24 stsp } else
5075 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
5076 3dbaef42 2020-11-24 stsp
5077 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
5078 a3404814 2018-09-02 stsp if (err)
5079 a3404814 2018-09-02 stsp return err;
5080 4924afe1 2022-08-31 mark label2 = s->label2 ? s->label2 : id_str2;
5081 26ed57b2 2018-05-19 stsp
5082 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5083 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5084 a3404814 2018-09-02 stsp free(id_str1);
5085 a3404814 2018-09-02 stsp free(id_str2);
5086 a3404814 2018-09-02 stsp return err;
5087 a3404814 2018-09-02 stsp }
5088 a3404814 2018-09-02 stsp free(id_str1);
5089 a3404814 2018-09-02 stsp free(id_str2);
5090 a3404814 2018-09-02 stsp
5091 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
5092 267bb3b8 2021-08-01 stsp free(header);
5093 267bb3b8 2021-08-01 stsp return err;
5094 15a087fe 2019-02-21 stsp }
5095 15a087fe 2019-02-21 stsp
5096 15a087fe 2019-02-21 stsp static const struct got_error *
5097 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
5098 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
5099 15a087fe 2019-02-21 stsp {
5100 d7a04538 2019-02-21 stsp const struct got_error *err;
5101 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
5102 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
5103 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
5104 15a087fe 2019-02-21 stsp
5105 15a087fe 2019-02-21 stsp free(s->id2);
5106 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
5107 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
5108 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
5109 15a087fe 2019-02-21 stsp
5110 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5111 d7a04538 2019-02-21 stsp if (err)
5112 d7a04538 2019-02-21 stsp return err;
5113 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
5114 15a087fe 2019-02-21 stsp free(s->id1);
5115 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
5116 d7b5a0e8 2022-04-20 stsp s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5117 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
5118 15a087fe 2019-02-21 stsp return NULL;
5119 0cf4efb1 2018-09-29 stsp }
5120 0cf4efb1 2018-09-29 stsp
5121 0cf4efb1 2018-09-29 stsp static const struct got_error *
5122 917d79a7 2022-07-01 stsp reset_diff_view(struct tog_view *view)
5123 917d79a7 2022-07-01 stsp {
5124 917d79a7 2022-07-01 stsp struct tog_diff_view_state *s = &view->state.diff;
5125 917d79a7 2022-07-01 stsp
5126 917d79a7 2022-07-01 stsp view->count = 0;
5127 917d79a7 2022-07-01 stsp wclear(view->window);
5128 917d79a7 2022-07-01 stsp s->first_displayed_line = 1;
5129 917d79a7 2022-07-01 stsp s->last_displayed_line = view->nlines;
5130 917d79a7 2022-07-01 stsp s->matched_line = 0;
5131 917d79a7 2022-07-01 stsp diff_view_indicate_progress(view);
5132 917d79a7 2022-07-01 stsp return create_diff(s);
5133 c7d5c43c 2022-08-04 mark }
5134 c7d5c43c 2022-08-04 mark
5135 c7d5c43c 2022-08-04 mark static void
5136 c7d5c43c 2022-08-04 mark diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5137 c7d5c43c 2022-08-04 mark {
5138 c7d5c43c 2022-08-04 mark int start, i;
5139 c7d5c43c 2022-08-04 mark
5140 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line - 1;
5141 c7d5c43c 2022-08-04 mark
5142 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
5143 c7d5c43c 2022-08-04 mark if (i == 0)
5144 c7d5c43c 2022-08-04 mark i = s->nlines - 1;
5145 c7d5c43c 2022-08-04 mark if (--i == start)
5146 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
5147 c7d5c43c 2022-08-04 mark }
5148 c7d5c43c 2022-08-04 mark
5149 c7d5c43c 2022-08-04 mark s->selected_line = 1;
5150 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
5151 917d79a7 2022-07-01 stsp }
5152 917d79a7 2022-07-01 stsp
5153 c7d5c43c 2022-08-04 mark static void
5154 c7d5c43c 2022-08-04 mark diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5155 c7d5c43c 2022-08-04 mark {
5156 c7d5c43c 2022-08-04 mark int start, i;
5157 c7d5c43c 2022-08-04 mark
5158 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line + 1;
5159 c7d5c43c 2022-08-04 mark
5160 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
5161 c7d5c43c 2022-08-04 mark if (i == s->nlines - 1)
5162 c7d5c43c 2022-08-04 mark i = 0;
5163 c7d5c43c 2022-08-04 mark if (++i == start)
5164 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
5165 c7d5c43c 2022-08-04 mark }
5166 c7d5c43c 2022-08-04 mark
5167 c7d5c43c 2022-08-04 mark s->selected_line = 1;
5168 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
5169 c7d5c43c 2022-08-04 mark }
5170 c7d5c43c 2022-08-04 mark
5171 c0f61fa4 2022-07-11 mark static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5172 c0f61fa4 2022-07-11 mark int, int, int);
5173 c0f61fa4 2022-07-11 mark static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5174 c0f61fa4 2022-07-11 mark int, int);
5175 c0f61fa4 2022-07-11 mark
5176 917d79a7 2022-07-01 stsp static const struct got_error *
5177 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5178 e5a0f69f 2018-08-18 stsp {
5179 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
5180 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
5181 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
5182 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
5183 826082fe 2020-12-10 stsp char *line = NULL;
5184 826082fe 2020-12-10 stsp size_t linesize = 0;
5185 826082fe 2020-12-10 stsp ssize_t linelen;
5186 c0f61fa4 2022-07-11 mark int i, nscroll = view->nlines - 1, up = 0;
5187 e5a0f69f 2018-08-18 stsp
5188 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
5189 c7d5c43c 2022-08-04 mark
5190 e5a0f69f 2018-08-18 stsp switch (ch) {
5191 145b6838 2022-06-16 stsp case '0':
5192 145b6838 2022-06-16 stsp view->x = 0;
5193 145b6838 2022-06-16 stsp break;
5194 145b6838 2022-06-16 stsp case '$':
5195 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
5196 640cd7ff 2022-06-22 mark view->count = 0;
5197 145b6838 2022-06-16 stsp break;
5198 145b6838 2022-06-16 stsp case KEY_RIGHT:
5199 145b6838 2022-06-16 stsp case 'l':
5200 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
5201 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
5202 640cd7ff 2022-06-22 mark else
5203 640cd7ff 2022-06-22 mark view->count = 0;
5204 145b6838 2022-06-16 stsp break;
5205 145b6838 2022-06-16 stsp case KEY_LEFT:
5206 145b6838 2022-06-16 stsp case 'h':
5207 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
5208 640cd7ff 2022-06-22 mark if (view->x <= 0)
5209 640cd7ff 2022-06-22 mark view->count = 0;
5210 145b6838 2022-06-16 stsp break;
5211 64453f7e 2020-11-21 stsp case 'a':
5212 3dbaef42 2020-11-24 stsp case 'w':
5213 3dbaef42 2020-11-24 stsp if (ch == 'a')
5214 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
5215 3dbaef42 2020-11-24 stsp if (ch == 'w')
5216 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
5217 917d79a7 2022-07-01 stsp err = reset_diff_view(view);
5218 912a3f79 2021-08-30 j break;
5219 912a3f79 2021-08-30 j case 'g':
5220 912a3f79 2021-08-30 j case KEY_HOME:
5221 912a3f79 2021-08-30 j s->first_displayed_line = 1;
5222 640cd7ff 2022-06-22 mark view->count = 0;
5223 64453f7e 2020-11-21 stsp break;
5224 912a3f79 2021-08-30 j case 'G':
5225 912a3f79 2021-08-30 j case KEY_END:
5226 640cd7ff 2022-06-22 mark view->count = 0;
5227 912a3f79 2021-08-30 j if (s->eof)
5228 912a3f79 2021-08-30 j break;
5229 912a3f79 2021-08-30 j
5230 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
5231 912a3f79 2021-08-30 j s->eof = 1;
5232 912a3f79 2021-08-30 j break;
5233 1e37a5c2 2019-05-12 jcs case 'k':
5234 1e37a5c2 2019-05-12 jcs case KEY_UP:
5235 02ffd0d5 2021-10-17 stsp case CTRL('p'):
5236 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
5237 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5238 640cd7ff 2022-06-22 mark else
5239 640cd7ff 2022-06-22 mark view->count = 0;
5240 1e37a5c2 2019-05-12 jcs break;
5241 83cc4199 2022-06-13 stsp case CTRL('u'):
5242 33c3719a 2022-06-15 stsp case 'u':
5243 83cc4199 2022-06-13 stsp nscroll /= 2;
5244 83cc4199 2022-06-13 stsp /* FALL THROUGH */
5245 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5246 a60a9dc4 2019-05-13 jcs case CTRL('b'):
5247 61417565 2022-06-20 mark case 'b':
5248 640cd7ff 2022-06-22 mark if (s->first_displayed_line == 1) {
5249 640cd7ff 2022-06-22 mark view->count = 0;
5250 26ed57b2 2018-05-19 stsp break;
5251 640cd7ff 2022-06-22 mark }
5252 1e37a5c2 2019-05-12 jcs i = 0;
5253 83cc4199 2022-06-13 stsp while (i++ < nscroll && s->first_displayed_line > 1)
5254 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5255 1e37a5c2 2019-05-12 jcs break;
5256 1e37a5c2 2019-05-12 jcs case 'j':
5257 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5258 02ffd0d5 2021-10-17 stsp case CTRL('n'):
5259 1e37a5c2 2019-05-12 jcs if (!s->eof)
5260 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5261 640cd7ff 2022-06-22 mark else
5262 640cd7ff 2022-06-22 mark view->count = 0;
5263 1e37a5c2 2019-05-12 jcs break;
5264 83cc4199 2022-06-13 stsp case CTRL('d'):
5265 33c3719a 2022-06-15 stsp case 'd':
5266 83cc4199 2022-06-13 stsp nscroll /= 2;
5267 83cc4199 2022-06-13 stsp /* FALL THROUGH */
5268 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
5269 a60a9dc4 2019-05-13 jcs case CTRL('f'):
5270 61417565 2022-06-20 mark case 'f':
5271 1e37a5c2 2019-05-12 jcs case ' ':
5272 640cd7ff 2022-06-22 mark if (s->eof) {
5273 640cd7ff 2022-06-22 mark view->count = 0;
5274 1e37a5c2 2019-05-12 jcs break;
5275 640cd7ff 2022-06-22 mark }
5276 1e37a5c2 2019-05-12 jcs i = 0;
5277 83cc4199 2022-06-13 stsp while (!s->eof && i++ < nscroll) {
5278 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
5279 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5280 826082fe 2020-12-10 stsp if (linelen == -1) {
5281 826082fe 2020-12-10 stsp if (feof(s->f)) {
5282 826082fe 2020-12-10 stsp s->eof = 1;
5283 826082fe 2020-12-10 stsp } else
5284 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
5285 34bc9ec9 2019-02-22 stsp break;
5286 826082fe 2020-12-10 stsp }
5287 1e37a5c2 2019-05-12 jcs }
5288 826082fe 2020-12-10 stsp free(line);
5289 1e37a5c2 2019-05-12 jcs break;
5290 c7d5c43c 2022-08-04 mark case '(':
5291 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5292 c7d5c43c 2022-08-04 mark break;
5293 c7d5c43c 2022-08-04 mark case ')':
5294 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5295 c7d5c43c 2022-08-04 mark break;
5296 c7d5c43c 2022-08-04 mark case '{':
5297 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5298 c7d5c43c 2022-08-04 mark break;
5299 c7d5c43c 2022-08-04 mark case '}':
5300 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_HUNK);
5301 c7d5c43c 2022-08-04 mark break;
5302 1e37a5c2 2019-05-12 jcs case '[':
5303 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
5304 1e37a5c2 2019-05-12 jcs s->diff_context--;
5305 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5306 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5307 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5308 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
5309 27829c9e 2020-11-21 stsp s->nlines) {
5310 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
5311 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
5312 27829c9e 2020-11-21 stsp }
5313 640cd7ff 2022-06-22 mark } else
5314 640cd7ff 2022-06-22 mark view->count = 0;
5315 1e37a5c2 2019-05-12 jcs break;
5316 1e37a5c2 2019-05-12 jcs case ']':
5317 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5318 1e37a5c2 2019-05-12 jcs s->diff_context++;
5319 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5320 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5321 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5322 640cd7ff 2022-06-22 mark } else
5323 640cd7ff 2022-06-22 mark view->count = 0;
5324 1e37a5c2 2019-05-12 jcs break;
5325 1e37a5c2 2019-05-12 jcs case '<':
5326 1e37a5c2 2019-05-12 jcs case ',':
5327 2b3e6702 2022-07-20 mark case 'K':
5328 c0f61fa4 2022-07-11 mark up = 1;
5329 c0f61fa4 2022-07-11 mark /* FALL THROUGH */
5330 c0f61fa4 2022-07-11 mark case '>':
5331 c0f61fa4 2022-07-11 mark case '.':
5332 2b3e6702 2022-07-20 mark case 'J':
5333 c0f61fa4 2022-07-11 mark if (s->parent_view == NULL) {
5334 640cd7ff 2022-06-22 mark view->count = 0;
5335 48ae06ee 2018-10-18 stsp break;
5336 640cd7ff 2022-06-22 mark }
5337 c0f61fa4 2022-07-11 mark s->parent_view->count = view->count;
5338 6524637e 2019-02-21 stsp
5339 c0f61fa4 2022-07-11 mark if (s->parent_view->type == TOG_VIEW_LOG) {
5340 c0f61fa4 2022-07-11 mark ls = &s->parent_view->state.log;
5341 c0f61fa4 2022-07-11 mark old_selected_entry = ls->selected_entry;
5342 15a087fe 2019-02-21 stsp
5343 c0f61fa4 2022-07-11 mark err = input_log_view(NULL, s->parent_view,
5344 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
5345 c0f61fa4 2022-07-11 mark if (err)
5346 c0f61fa4 2022-07-11 mark break;
5347 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
5348 15a087fe 2019-02-21 stsp
5349 c0f61fa4 2022-07-11 mark if (old_selected_entry == ls->selected_entry)
5350 c0f61fa4 2022-07-11 mark break;
5351 15a087fe 2019-02-21 stsp
5352 c0f61fa4 2022-07-11 mark err = set_selected_commit(s, ls->selected_entry);
5353 c0f61fa4 2022-07-11 mark if (err)
5354 c0f61fa4 2022-07-11 mark break;
5355 c0f61fa4 2022-07-11 mark } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5356 c0f61fa4 2022-07-11 mark struct tog_blame_view_state *bs;
5357 c0f61fa4 2022-07-11 mark struct got_object_id *id, *prev_id;
5358 5e224a3e 2019-02-22 stsp
5359 c0f61fa4 2022-07-11 mark bs = &s->parent_view->state.blame;
5360 c0f61fa4 2022-07-11 mark prev_id = get_annotation_for_line(bs->blame.lines,
5361 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->last_diffed_line);
5362 c0f61fa4 2022-07-11 mark
5363 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view,
5364 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
5365 c0f61fa4 2022-07-11 mark if (err)
5366 c0f61fa4 2022-07-11 mark break;
5367 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
5368 5a8b5076 2020-12-05 stsp
5369 c0f61fa4 2022-07-11 mark if (prev_id == NULL)
5370 c0f61fa4 2022-07-11 mark break;
5371 c0f61fa4 2022-07-11 mark id = get_selected_commit_id(bs->blame.lines,
5372 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->first_displayed_line,
5373 c0f61fa4 2022-07-11 mark bs->selected_line);
5374 c0f61fa4 2022-07-11 mark if (id == NULL)
5375 c0f61fa4 2022-07-11 mark break;
5376 15a087fe 2019-02-21 stsp
5377 c0f61fa4 2022-07-11 mark if (!got_object_id_cmp(prev_id, id))
5378 c0f61fa4 2022-07-11 mark break;
5379 15a087fe 2019-02-21 stsp
5380 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5381 c0f61fa4 2022-07-11 mark if (err)
5382 c0f61fa4 2022-07-11 mark break;
5383 c0f61fa4 2022-07-11 mark }
5384 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5385 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5386 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5387 145b6838 2022-06-16 stsp view->x = 0;
5388 1e37a5c2 2019-05-12 jcs
5389 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5390 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5391 1e37a5c2 2019-05-12 jcs break;
5392 1e37a5c2 2019-05-12 jcs default:
5393 640cd7ff 2022-06-22 mark view->count = 0;
5394 1e37a5c2 2019-05-12 jcs break;
5395 26ed57b2 2018-05-19 stsp }
5396 e5a0f69f 2018-08-18 stsp
5397 bcbd79e2 2018-08-19 stsp return err;
5398 26ed57b2 2018-05-19 stsp }
5399 26ed57b2 2018-05-19 stsp
5400 4ed7e80c 2018-05-20 stsp static const struct got_error *
5401 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5402 9f7d7167 2018-04-29 stsp {
5403 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5404 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5405 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5406 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5407 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5408 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5409 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5410 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5411 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5412 3dbaef42 2020-11-24 stsp const char *errstr;
5413 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5414 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5415 70ac5f84 2019-03-28 stsp
5416 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5417 26ed57b2 2018-05-19 stsp switch (ch) {
5418 64453f7e 2020-11-21 stsp case 'a':
5419 64453f7e 2020-11-21 stsp force_text_diff = 1;
5420 3dbaef42 2020-11-24 stsp break;
5421 3dbaef42 2020-11-24 stsp case 'C':
5422 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5423 3dbaef42 2020-11-24 stsp &errstr);
5424 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5425 5a20d08d 2022-02-09 op errx(1, "number of context lines is %s: %s",
5426 5a20d08d 2022-02-09 op errstr, errstr);
5427 64453f7e 2020-11-21 stsp break;
5428 09b5bff8 2020-02-23 naddy case 'r':
5429 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5430 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5431 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5432 09b5bff8 2020-02-23 naddy optarg);
5433 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5434 09b5bff8 2020-02-23 naddy break;
5435 3dbaef42 2020-11-24 stsp case 'w':
5436 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5437 3dbaef42 2020-11-24 stsp break;
5438 26ed57b2 2018-05-19 stsp default:
5439 17020d27 2019-03-07 stsp usage_diff();
5440 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5441 26ed57b2 2018-05-19 stsp }
5442 26ed57b2 2018-05-19 stsp }
5443 26ed57b2 2018-05-19 stsp
5444 26ed57b2 2018-05-19 stsp argc -= optind;
5445 26ed57b2 2018-05-19 stsp argv += optind;
5446 26ed57b2 2018-05-19 stsp
5447 26ed57b2 2018-05-19 stsp if (argc == 0) {
5448 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5449 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5450 15a94983 2018-12-23 stsp id_str1 = argv[0];
5451 15a94983 2018-12-23 stsp id_str2 = argv[1];
5452 26ed57b2 2018-05-19 stsp } else
5453 26ed57b2 2018-05-19 stsp usage_diff();
5454 eb6600df 2019-01-04 stsp
5455 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
5456 0ae84acc 2022-06-15 tracey if (error)
5457 0ae84acc 2022-06-15 tracey goto done;
5458 0ae84acc 2022-06-15 tracey
5459 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5460 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5461 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5462 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5463 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5464 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5465 c156c7a4 2020-12-18 stsp goto done;
5466 a273ac94 2020-02-23 naddy if (worktree)
5467 a273ac94 2020-02-23 naddy repo_path =
5468 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5469 a273ac94 2020-02-23 naddy else
5470 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5471 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5472 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5473 c156c7a4 2020-12-18 stsp goto done;
5474 c156c7a4 2020-12-18 stsp }
5475 a273ac94 2020-02-23 naddy }
5476 a273ac94 2020-02-23 naddy
5477 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5478 eb6600df 2019-01-04 stsp if (error)
5479 eb6600df 2019-01-04 stsp goto done;
5480 26ed57b2 2018-05-19 stsp
5481 a273ac94 2020-02-23 naddy init_curses();
5482 a273ac94 2020-02-23 naddy
5483 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5484 51a10b52 2020-12-26 stsp if (error)
5485 51a10b52 2020-12-26 stsp goto done;
5486 51a10b52 2020-12-26 stsp
5487 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
5488 26ed57b2 2018-05-19 stsp if (error)
5489 26ed57b2 2018-05-19 stsp goto done;
5490 26ed57b2 2018-05-19 stsp
5491 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5492 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5493 26ed57b2 2018-05-19 stsp if (error)
5494 26ed57b2 2018-05-19 stsp goto done;
5495 26ed57b2 2018-05-19 stsp
5496 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
5497 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5498 26ed57b2 2018-05-19 stsp if (error)
5499 26ed57b2 2018-05-19 stsp goto done;
5500 26ed57b2 2018-05-19 stsp
5501 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5502 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5503 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5504 ea5e7bb5 2018-08-01 stsp goto done;
5505 ea5e7bb5 2018-08-01 stsp }
5506 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5507 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5508 5dc9f4bc 2018-08-04 stsp if (error)
5509 5dc9f4bc 2018-08-04 stsp goto done;
5510 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5511 26ed57b2 2018-05-19 stsp done:
5512 3dbaef42 2020-11-24 stsp free(label1);
5513 3dbaef42 2020-11-24 stsp free(label2);
5514 c02c541e 2019-03-29 stsp free(repo_path);
5515 a273ac94 2020-02-23 naddy free(cwd);
5516 1d0f4054 2021-06-17 stsp if (repo) {
5517 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5518 1d0f4054 2021-06-17 stsp if (error == NULL)
5519 1d0f4054 2021-06-17 stsp error = close_err;
5520 1d0f4054 2021-06-17 stsp }
5521 a273ac94 2020-02-23 naddy if (worktree)
5522 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5523 0ae84acc 2022-06-15 tracey if (pack_fds) {
5524 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5525 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
5526 0ae84acc 2022-06-15 tracey if (error == NULL)
5527 0ae84acc 2022-06-15 tracey error = pack_err;
5528 0ae84acc 2022-06-15 tracey }
5529 51a10b52 2020-12-26 stsp tog_free_refs();
5530 26ed57b2 2018-05-19 stsp return error;
5531 9f7d7167 2018-04-29 stsp }
5532 9f7d7167 2018-04-29 stsp
5533 4ed7e80c 2018-05-20 stsp __dead static void
5534 9f7d7167 2018-04-29 stsp usage_blame(void)
5535 9f7d7167 2018-04-29 stsp {
5536 80ddbec8 2018-04-29 stsp endwin();
5537 87411fa9 2022-06-16 stsp fprintf(stderr,
5538 87411fa9 2022-06-16 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
5539 9f7d7167 2018-04-29 stsp getprogname());
5540 9f7d7167 2018-04-29 stsp exit(1);
5541 9f7d7167 2018-04-29 stsp }
5542 84451b3e 2018-07-10 stsp
5543 84451b3e 2018-07-10 stsp struct tog_blame_line {
5544 84451b3e 2018-07-10 stsp int annotated;
5545 84451b3e 2018-07-10 stsp struct got_object_id *id;
5546 84451b3e 2018-07-10 stsp };
5547 9f7d7167 2018-04-29 stsp
5548 4ed7e80c 2018-05-20 stsp static const struct got_error *
5549 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5550 84451b3e 2018-07-10 stsp {
5551 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5552 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5553 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5554 84451b3e 2018-07-10 stsp const struct got_error *err;
5555 4cb9d869 2022-06-16 stsp int lineno = 0, nprinted = 0;
5556 826082fe 2020-12-10 stsp char *line = NULL;
5557 826082fe 2020-12-10 stsp size_t linesize = 0;
5558 826082fe 2020-12-10 stsp ssize_t linelen;
5559 84451b3e 2018-07-10 stsp wchar_t *wline;
5560 27a741e5 2019-09-11 stsp int width;
5561 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5562 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5563 ab089a2a 2018-07-12 stsp char *id_str;
5564 11b20872 2019-11-08 stsp struct tog_color *tc;
5565 ab089a2a 2018-07-12 stsp
5566 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &s->blamed_commit->id);
5567 ab089a2a 2018-07-12 stsp if (err)
5568 ab089a2a 2018-07-12 stsp return err;
5569 84451b3e 2018-07-10 stsp
5570 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5571 f7d12f7e 2018-08-01 stsp werase(view->window);
5572 84451b3e 2018-07-10 stsp
5573 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5574 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5575 ab089a2a 2018-07-12 stsp free(id_str);
5576 ab089a2a 2018-07-12 stsp return err;
5577 ab089a2a 2018-07-12 stsp }
5578 ab089a2a 2018-07-12 stsp
5579 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5580 ab089a2a 2018-07-12 stsp free(line);
5581 2550e4c3 2018-07-13 stsp line = NULL;
5582 1cae65b4 2019-09-22 stsp if (err)
5583 1cae65b4 2019-09-22 stsp return err;
5584 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5585 a3404814 2018-09-02 stsp wstandout(view->window);
5586 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5587 11b20872 2019-11-08 stsp if (tc)
5588 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5589 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5590 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
5591 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
5592 11b20872 2019-11-08 stsp if (tc)
5593 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5594 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5595 a3404814 2018-09-02 stsp wstandend(view->window);
5596 2550e4c3 2018-07-13 stsp free(wline);
5597 2550e4c3 2018-07-13 stsp wline = NULL;
5598 ab089a2a 2018-07-12 stsp
5599 94b80cfa 2022-08-01 mark if (view->gline > blame->nlines)
5600 94b80cfa 2022-08-01 mark view->gline = blame->nlines;
5601 94b80cfa 2022-08-01 mark
5602 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5603 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5604 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5605 ab089a2a 2018-07-12 stsp free(id_str);
5606 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5607 ab089a2a 2018-07-12 stsp }
5608 ab089a2a 2018-07-12 stsp free(id_str);
5609 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5610 3f60a8ef 2018-07-10 stsp free(line);
5611 2550e4c3 2018-07-13 stsp line = NULL;
5612 3f60a8ef 2018-07-10 stsp if (err)
5613 3f60a8ef 2018-07-10 stsp return err;
5614 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5615 2550e4c3 2018-07-13 stsp free(wline);
5616 2550e4c3 2018-07-13 stsp wline = NULL;
5617 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5618 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5619 3f60a8ef 2018-07-10 stsp
5620 4f7c3e5e 2020-12-01 naddy s->eof = 0;
5621 145b6838 2022-06-16 stsp view->maxx = 0;
5622 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
5623 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
5624 826082fe 2020-12-10 stsp if (linelen == -1) {
5625 826082fe 2020-12-10 stsp if (feof(blame->f)) {
5626 826082fe 2020-12-10 stsp s->eof = 1;
5627 826082fe 2020-12-10 stsp break;
5628 826082fe 2020-12-10 stsp }
5629 84451b3e 2018-07-10 stsp free(line);
5630 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
5631 84451b3e 2018-07-10 stsp }
5632 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
5633 94b80cfa 2022-08-01 mark continue;
5634 94b80cfa 2022-08-01 mark if (view->gline && !gotoline(view, &lineno, &nprinted))
5635 826082fe 2020-12-10 stsp continue;
5636 1853e0f4 2022-06-16 stsp
5637 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
5638 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5639 1853e0f4 2022-06-16 stsp if (err) {
5640 1853e0f4 2022-06-16 stsp free(line);
5641 1853e0f4 2022-06-16 stsp return err;
5642 1853e0f4 2022-06-16 stsp }
5643 1853e0f4 2022-06-16 stsp free(wline);
5644 1853e0f4 2022-06-16 stsp wline = NULL;
5645 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
5646 84451b3e 2018-07-10 stsp
5647 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5648 f7d12f7e 2018-08-01 stsp wstandout(view->window);
5649 b700b5d6 2018-07-10 stsp
5650 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
5651 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
5652 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
5653 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5654 c0f61fa4 2022-07-11 mark !(nprinted == s->selected_line - 1)) {
5655 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5656 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
5657 8d0fe45a 2019-08-12 stsp char *id_str;
5658 87411fa9 2022-06-16 stsp err = got_object_id_str(&id_str,
5659 87411fa9 2022-06-16 stsp blame_line->id);
5660 8d0fe45a 2019-08-12 stsp if (err) {
5661 8d0fe45a 2019-08-12 stsp free(line);
5662 8d0fe45a 2019-08-12 stsp return err;
5663 8d0fe45a 2019-08-12 stsp }
5664 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5665 11b20872 2019-11-08 stsp if (tc)
5666 11b20872 2019-11-08 stsp wattr_on(view->window,
5667 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5668 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
5669 11b20872 2019-11-08 stsp if (tc)
5670 11b20872 2019-11-08 stsp wattr_off(view->window,
5671 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5672 8d0fe45a 2019-08-12 stsp free(id_str);
5673 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
5674 8d0fe45a 2019-08-12 stsp } else {
5675 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5676 8d0fe45a 2019-08-12 stsp prev_id = NULL;
5677 84451b3e 2018-07-10 stsp }
5678 ee41ec32 2018-07-10 stsp } else {
5679 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5680 ee41ec32 2018-07-10 stsp prev_id = NULL;
5681 ee41ec32 2018-07-10 stsp }
5682 84451b3e 2018-07-10 stsp
5683 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5684 f7d12f7e 2018-08-01 stsp wstandend(view->window);
5685 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5686 27a741e5 2019-09-11 stsp
5687 41605754 2020-11-12 stsp if (view->ncols <= 9) {
5688 41605754 2020-11-12 stsp width = 9;
5689 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
5690 4f7c3e5e 2020-12-01 naddy s->matched_line &&
5691 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5692 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
5693 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
5694 41605754 2020-11-12 stsp if (err) {
5695 41605754 2020-11-12 stsp free(line);
5696 41605754 2020-11-12 stsp return err;
5697 41605754 2020-11-12 stsp }
5698 41605754 2020-11-12 stsp width += 9;
5699 41605754 2020-11-12 stsp } else {
5700 4cb9d869 2022-06-16 stsp int skip;
5701 4cb9d869 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
5702 4cb9d869 2022-06-16 stsp view->x, view->ncols - 9, 9, 1);
5703 4cb9d869 2022-06-16 stsp if (err) {
5704 4cb9d869 2022-06-16 stsp free(line);
5705 4cb9d869 2022-06-16 stsp return err;
5706 145b6838 2022-06-16 stsp }
5707 4cb9d869 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
5708 a75b3e2d 2022-06-16 stsp width += 9;
5709 41605754 2020-11-12 stsp free(wline);
5710 41605754 2020-11-12 stsp wline = NULL;
5711 41605754 2020-11-12 stsp }
5712 41605754 2020-11-12 stsp
5713 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
5714 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
5715 84451b3e 2018-07-10 stsp if (++nprinted == 1)
5716 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
5717 84451b3e 2018-07-10 stsp }
5718 826082fe 2020-12-10 stsp free(line);
5719 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
5720 84451b3e 2018-07-10 stsp
5721 9b058f45 2022-06-30 mark view_border(view);
5722 84451b3e 2018-07-10 stsp
5723 84451b3e 2018-07-10 stsp return NULL;
5724 84451b3e 2018-07-10 stsp }
5725 84451b3e 2018-07-10 stsp
5726 84451b3e 2018-07-10 stsp static const struct got_error *
5727 392891ce 2022-04-07 stsp blame_cb(void *arg, int nlines, int lineno,
5728 392891ce 2022-04-07 stsp struct got_commit_object *commit, struct got_object_id *id)
5729 84451b3e 2018-07-10 stsp {
5730 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
5731 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
5732 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
5733 1a76625f 2018-10-22 stsp int errcode;
5734 84451b3e 2018-07-10 stsp
5735 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
5736 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
5737 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
5738 84451b3e 2018-07-10 stsp
5739 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5740 1a76625f 2018-10-22 stsp if (errcode)
5741 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
5742 84451b3e 2018-07-10 stsp
5743 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
5744 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
5745 d68a0a7d 2018-07-10 stsp goto done;
5746 d68a0a7d 2018-07-10 stsp }
5747 d68a0a7d 2018-07-10 stsp
5748 d68a0a7d 2018-07-10 stsp if (lineno == -1)
5749 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
5750 d68a0a7d 2018-07-10 stsp
5751 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
5752 d68a0a7d 2018-07-10 stsp if (line->annotated)
5753 d68a0a7d 2018-07-10 stsp goto done;
5754 d68a0a7d 2018-07-10 stsp
5755 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
5756 84451b3e 2018-07-10 stsp if (line->id == NULL) {
5757 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5758 84451b3e 2018-07-10 stsp goto done;
5759 84451b3e 2018-07-10 stsp }
5760 84451b3e 2018-07-10 stsp line->annotated = 1;
5761 84451b3e 2018-07-10 stsp done:
5762 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5763 1a76625f 2018-10-22 stsp if (errcode)
5764 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5765 84451b3e 2018-07-10 stsp return err;
5766 84451b3e 2018-07-10 stsp }
5767 84451b3e 2018-07-10 stsp
5768 84451b3e 2018-07-10 stsp static void *
5769 84451b3e 2018-07-10 stsp blame_thread(void *arg)
5770 84451b3e 2018-07-10 stsp {
5771 1d0f4054 2021-06-17 stsp const struct got_error *err, *close_err;
5772 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
5773 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
5774 e6e73e55 2022-06-30 tracey int errcode, fd1 = -1, fd2 = -1;
5775 e6e73e55 2022-06-30 tracey FILE *f1 = NULL, *f2 = NULL;
5776 1b484788 2022-06-28 tracey
5777 e6e73e55 2022-06-30 tracey fd1 = got_opentempfd();
5778 e6e73e55 2022-06-30 tracey if (fd1 == -1)
5779 1b484788 2022-06-28 tracey return (void *)got_error_from_errno("got_opentempfd");
5780 e6e73e55 2022-06-30 tracey
5781 e6e73e55 2022-06-30 tracey fd2 = got_opentempfd();
5782 e6e73e55 2022-06-30 tracey if (fd2 == -1) {
5783 e6e73e55 2022-06-30 tracey err = got_error_from_errno("got_opentempfd");
5784 e6e73e55 2022-06-30 tracey goto done;
5785 e6e73e55 2022-06-30 tracey }
5786 18430de3 2018-07-10 stsp
5787 e6e73e55 2022-06-30 tracey f1 = got_opentemp();
5788 e6e73e55 2022-06-30 tracey if (f1 == NULL) {
5789 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5790 e6e73e55 2022-06-30 tracey goto done;
5791 e6e73e55 2022-06-30 tracey }
5792 e6e73e55 2022-06-30 tracey f2 = got_opentemp();
5793 e6e73e55 2022-06-30 tracey if (f2 == NULL) {
5794 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5795 e6e73e55 2022-06-30 tracey goto done;
5796 e6e73e55 2022-06-30 tracey }
5797 e6e73e55 2022-06-30 tracey
5798 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
5799 61266923 2020-01-14 stsp if (err)
5800 e6e73e55 2022-06-30 tracey goto done;
5801 61266923 2020-01-14 stsp
5802 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
5803 917d79a7 2022-07-01 stsp tog_diff_algo, blame_cb, ta->cb_args,
5804 4b752015 2022-06-30 stsp ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5805 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
5806 fc06ba56 2019-08-22 stsp err = NULL;
5807 18430de3 2018-07-10 stsp
5808 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5809 e6e73e55 2022-06-30 tracey if (errcode) {
5810 e6e73e55 2022-06-30 tracey err = got_error_set_errno(errcode, "pthread_mutex_lock");
5811 e6e73e55 2022-06-30 tracey goto done;
5812 e6e73e55 2022-06-30 tracey }
5813 18430de3 2018-07-10 stsp
5814 1d0f4054 2021-06-17 stsp close_err = got_repo_close(ta->repo);
5815 1d0f4054 2021-06-17 stsp if (err == NULL)
5816 1d0f4054 2021-06-17 stsp err = close_err;
5817 c9beca56 2018-07-22 stsp ta->repo = NULL;
5818 c9beca56 2018-07-22 stsp *ta->complete = 1;
5819 18430de3 2018-07-10 stsp
5820 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5821 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
5822 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5823 18430de3 2018-07-10 stsp
5824 e6e73e55 2022-06-30 tracey done:
5825 e6e73e55 2022-06-30 tracey if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5826 1b484788 2022-06-28 tracey err = got_error_from_errno("close");
5827 e6e73e55 2022-06-30 tracey if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5828 e6e73e55 2022-06-30 tracey err = got_error_from_errno("close");
5829 e6e73e55 2022-06-30 tracey if (f1 && fclose(f1) == EOF && err == NULL)
5830 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5831 e6e73e55 2022-06-30 tracey if (f2 && fclose(f2) == EOF && err == NULL)
5832 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5833 1b484788 2022-06-28 tracey
5834 18430de3 2018-07-10 stsp return (void *)err;
5835 84451b3e 2018-07-10 stsp }
5836 84451b3e 2018-07-10 stsp
5837 245d91c1 2018-07-12 stsp static struct got_object_id *
5838 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5839 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
5840 245d91c1 2018-07-12 stsp {
5841 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
5842 8d0fe45a 2019-08-12 stsp
5843 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
5844 8d0fe45a 2019-08-12 stsp return NULL;
5845 b880a918 2018-07-10 stsp
5846 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
5847 c0f61fa4 2022-07-11 mark if (!line->annotated)
5848 c0f61fa4 2022-07-11 mark return NULL;
5849 c0f61fa4 2022-07-11 mark
5850 c0f61fa4 2022-07-11 mark return line->id;
5851 c0f61fa4 2022-07-11 mark }
5852 c0f61fa4 2022-07-11 mark
5853 c0f61fa4 2022-07-11 mark static struct got_object_id *
5854 c0f61fa4 2022-07-11 mark get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5855 c0f61fa4 2022-07-11 mark int lineno)
5856 c0f61fa4 2022-07-11 mark {
5857 c0f61fa4 2022-07-11 mark struct tog_blame_line *line;
5858 c0f61fa4 2022-07-11 mark
5859 c0f61fa4 2022-07-11 mark if (nlines <= 0 || lineno >= nlines)
5860 c0f61fa4 2022-07-11 mark return NULL;
5861 c0f61fa4 2022-07-11 mark
5862 c0f61fa4 2022-07-11 mark line = &lines[lineno - 1];
5863 245d91c1 2018-07-12 stsp if (!line->annotated)
5864 245d91c1 2018-07-12 stsp return NULL;
5865 245d91c1 2018-07-12 stsp
5866 245d91c1 2018-07-12 stsp return line->id;
5867 b880a918 2018-07-10 stsp }
5868 245d91c1 2018-07-12 stsp
5869 b880a918 2018-07-10 stsp static const struct got_error *
5870 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
5871 a70480e0 2018-06-23 stsp {
5872 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
5873 245d91c1 2018-07-12 stsp int i;
5874 245d91c1 2018-07-12 stsp
5875 245d91c1 2018-07-12 stsp if (blame->thread) {
5876 1a76625f 2018-10-22 stsp int errcode;
5877 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5878 1a76625f 2018-10-22 stsp if (errcode)
5879 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5880 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
5881 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
5882 1a76625f 2018-10-22 stsp if (errcode)
5883 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
5884 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5885 1a76625f 2018-10-22 stsp if (errcode)
5886 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5887 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
5888 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
5889 245d91c1 2018-07-12 stsp err = NULL;
5890 245d91c1 2018-07-12 stsp blame->thread = NULL;
5891 245d91c1 2018-07-12 stsp }
5892 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
5893 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
5894 1d0f4054 2021-06-17 stsp close_err = got_repo_close(blame->thread_args.repo);
5895 1d0f4054 2021-06-17 stsp if (err == NULL)
5896 1d0f4054 2021-06-17 stsp err = close_err;
5897 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
5898 245d91c1 2018-07-12 stsp }
5899 245d91c1 2018-07-12 stsp if (blame->f) {
5900 56b63ca4 2021-01-22 stsp if (fclose(blame->f) == EOF && err == NULL)
5901 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
5902 245d91c1 2018-07-12 stsp blame->f = NULL;
5903 245d91c1 2018-07-12 stsp }
5904 57670559 2018-12-23 stsp if (blame->lines) {
5905 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
5906 57670559 2018-12-23 stsp free(blame->lines[i].id);
5907 57670559 2018-12-23 stsp free(blame->lines);
5908 57670559 2018-12-23 stsp blame->lines = NULL;
5909 57670559 2018-12-23 stsp }
5910 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
5911 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
5912 0ae84acc 2022-06-15 tracey if (blame->pack_fds) {
5913 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5914 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(blame->pack_fds);
5915 0ae84acc 2022-06-15 tracey if (err == NULL)
5916 0ae84acc 2022-06-15 tracey err = pack_err;
5917 8b195234 2022-06-15 stsp blame->pack_fds = NULL;
5918 0ae84acc 2022-06-15 tracey }
5919 245d91c1 2018-07-12 stsp return err;
5920 245d91c1 2018-07-12 stsp }
5921 245d91c1 2018-07-12 stsp
5922 245d91c1 2018-07-12 stsp static const struct got_error *
5923 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
5924 fc06ba56 2019-08-22 stsp {
5925 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
5926 fc06ba56 2019-08-22 stsp int *done = arg;
5927 fc06ba56 2019-08-22 stsp int errcode;
5928 fc06ba56 2019-08-22 stsp
5929 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5930 fc06ba56 2019-08-22 stsp if (errcode)
5931 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5932 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
5933 fc06ba56 2019-08-22 stsp
5934 fc06ba56 2019-08-22 stsp if (*done)
5935 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
5936 fc06ba56 2019-08-22 stsp
5937 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5938 fc06ba56 2019-08-22 stsp if (errcode)
5939 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5940 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
5941 fc06ba56 2019-08-22 stsp
5942 fc06ba56 2019-08-22 stsp return err;
5943 fc06ba56 2019-08-22 stsp }
5944 fc06ba56 2019-08-22 stsp
5945 fc06ba56 2019-08-22 stsp static const struct got_error *
5946 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
5947 245d91c1 2018-07-12 stsp {
5948 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5949 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5950 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
5951 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
5952 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
5953 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
5954 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
5955 eb81bc23 2022-06-28 tracey int obj_type, fd = -1;
5956 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5957 a70480e0 2018-06-23 stsp
5958 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&commit, s->repo,
5959 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id);
5960 27d434c2 2018-09-15 stsp if (err)
5961 15a94983 2018-12-23 stsp return err;
5962 eb81bc23 2022-06-28 tracey
5963 eb81bc23 2022-06-28 tracey fd = got_opentempfd();
5964 eb81bc23 2022-06-28 tracey if (fd == -1) {
5965 eb81bc23 2022-06-28 tracey err = got_error_from_errno("got_opentempfd");
5966 eb81bc23 2022-06-28 tracey goto done;
5967 eb81bc23 2022-06-28 tracey }
5968 a44927cc 2022-04-07 stsp
5969 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
5970 a44927cc 2022-04-07 stsp if (err)
5971 a44927cc 2022-04-07 stsp goto done;
5972 27d434c2 2018-09-15 stsp
5973 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
5974 84451b3e 2018-07-10 stsp if (err)
5975 84451b3e 2018-07-10 stsp goto done;
5976 27d434c2 2018-09-15 stsp
5977 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5978 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5979 84451b3e 2018-07-10 stsp goto done;
5980 84451b3e 2018-07-10 stsp }
5981 a70480e0 2018-06-23 stsp
5982 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
5983 a70480e0 2018-06-23 stsp if (err)
5984 a70480e0 2018-06-23 stsp goto done;
5985 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
5986 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
5987 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
5988 84451b3e 2018-07-10 stsp goto done;
5989 84451b3e 2018-07-10 stsp }
5990 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
5991 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
5992 1fddf795 2021-01-20 stsp if (err)
5993 1fddf795 2021-01-20 stsp goto done;
5994 1fddf795 2021-01-20 stsp if (blame->nlines == 0) {
5995 1fddf795 2021-01-20 stsp s->blame_complete = 1;
5996 84451b3e 2018-07-10 stsp goto done;
5997 1fddf795 2021-01-20 stsp }
5998 b02560ec 2019-08-19 stsp
5999 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
6000 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
6001 b02560ec 2019-08-19 stsp blame->nlines--;
6002 a70480e0 2018-06-23 stsp
6003 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6004 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
6005 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
6006 84451b3e 2018-07-10 stsp goto done;
6007 84451b3e 2018-07-10 stsp }
6008 a70480e0 2018-06-23 stsp
6009 0ae84acc 2022-06-15 tracey err = got_repo_pack_fds_open(&pack_fds);
6010 bd24772e 2018-07-11 stsp if (err)
6011 bd24772e 2018-07-11 stsp goto done;
6012 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6013 0ae84acc 2022-06-15 tracey pack_fds);
6014 0ae84acc 2022-06-15 tracey if (err)
6015 0ae84acc 2022-06-15 tracey goto done;
6016 bd24772e 2018-07-11 stsp
6017 0ae84acc 2022-06-15 tracey blame->pack_fds = pack_fds;
6018 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
6019 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
6020 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
6021 d7b5a0e8 2022-04-20 stsp blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6022 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
6023 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
6024 245d91c1 2018-07-12 stsp goto done;
6025 245d91c1 2018-07-12 stsp }
6026 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
6027 245d91c1 2018-07-12 stsp
6028 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
6029 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
6030 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
6031 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
6032 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
6033 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
6034 a5388363 2020-12-01 naddy s->blame_complete = 0;
6035 f5a09613 2020-12-13 naddy
6036 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6037 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
6038 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
6039 f5a09613 2020-12-13 naddy s->selected_line = 1;
6040 f5a09613 2020-12-13 naddy }
6041 67b5eae1 2021-12-27 naddy s->matched_line = 0;
6042 245d91c1 2018-07-12 stsp
6043 245d91c1 2018-07-12 stsp done:
6044 a44927cc 2022-04-07 stsp if (commit)
6045 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
6046 eb81bc23 2022-06-28 tracey if (fd != -1 && close(fd) == -1 && err == NULL)
6047 eb81bc23 2022-06-28 tracey err = got_error_from_errno("close");
6048 245d91c1 2018-07-12 stsp if (blob)
6049 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
6050 27d434c2 2018-09-15 stsp free(obj_id);
6051 245d91c1 2018-07-12 stsp if (err)
6052 245d91c1 2018-07-12 stsp stop_blame(blame);
6053 245d91c1 2018-07-12 stsp return err;
6054 245d91c1 2018-07-12 stsp }
6055 245d91c1 2018-07-12 stsp
6056 245d91c1 2018-07-12 stsp static const struct got_error *
6057 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
6058 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6059 245d91c1 2018-07-12 stsp {
6060 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
6061 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6062 dbc6a6b6 2018-07-12 stsp
6063 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->blamed_commits);
6064 245d91c1 2018-07-12 stsp
6065 c4843652 2019-08-12 stsp s->path = strdup(path);
6066 c4843652 2019-08-12 stsp if (s->path == NULL)
6067 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
6068 c4843652 2019-08-12 stsp
6069 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6070 c4843652 2019-08-12 stsp if (err) {
6071 c4843652 2019-08-12 stsp free(s->path);
6072 7cbe629d 2018-08-04 stsp return err;
6073 c4843652 2019-08-12 stsp }
6074 245d91c1 2018-07-12 stsp
6075 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6076 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
6077 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
6078 fb2756b9 2018-08-04 stsp s->selected_line = 1;
6079 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
6080 fb2756b9 2018-08-04 stsp s->repo = repo;
6081 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
6082 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
6083 7cbe629d 2018-08-04 stsp
6084 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
6085 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6086 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6087 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6088 11b20872 2019-11-08 stsp if (err)
6089 11b20872 2019-11-08 stsp return err;
6090 11b20872 2019-11-08 stsp }
6091 11b20872 2019-11-08 stsp
6092 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
6093 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
6094 917d79a7 2022-07-01 stsp view->reset = reset_blame_view;
6095 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
6096 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
6097 eaf2c13e 2022-09-17 mark view->search_setup = search_setup_blame_view;
6098 ec2a9698 2022-09-15 mark view->search_next = search_next_view_match;
6099 e5a0f69f 2018-08-18 stsp
6100 a5388363 2020-12-01 naddy return run_blame(view);
6101 7cbe629d 2018-08-04 stsp }
6102 7cbe629d 2018-08-04 stsp
6103 e5a0f69f 2018-08-18 stsp static const struct got_error *
6104 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
6105 7cbe629d 2018-08-04 stsp {
6106 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6107 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6108 7cbe629d 2018-08-04 stsp
6109 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
6110 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
6111 e5a0f69f 2018-08-18 stsp
6112 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&s->blamed_commits)) {
6113 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
6114 dbdddfee 2021-06-23 naddy blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6115 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6116 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
6117 7cbe629d 2018-08-04 stsp }
6118 e5a0f69f 2018-08-18 stsp
6119 e5a0f69f 2018-08-18 stsp free(s->path);
6120 11b20872 2019-11-08 stsp free_colors(&s->colors);
6121 e5a0f69f 2018-08-18 stsp return err;
6122 7cbe629d 2018-08-04 stsp }
6123 7cbe629d 2018-08-04 stsp
6124 7cbe629d 2018-08-04 stsp static const struct got_error *
6125 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
6126 6c4c42e0 2019-06-24 stsp {
6127 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
6128 6c4c42e0 2019-06-24 stsp
6129 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
6130 6c4c42e0 2019-06-24 stsp return NULL;
6131 eaf2c13e 2022-09-17 mark }
6132 eaf2c13e 2022-09-17 mark
6133 eaf2c13e 2022-09-17 mark static void
6134 eaf2c13e 2022-09-17 mark search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6135 eaf2c13e 2022-09-17 mark size_t *nlines, int **first, int **last, int **match, int **selected)
6136 eaf2c13e 2022-09-17 mark {
6137 eaf2c13e 2022-09-17 mark struct tog_blame_view_state *s = &view->state.blame;
6138 eaf2c13e 2022-09-17 mark
6139 eaf2c13e 2022-09-17 mark *f = s->blame.f;
6140 eaf2c13e 2022-09-17 mark *nlines = s->blame.nlines;
6141 eaf2c13e 2022-09-17 mark *line_offsets = s->blame.line_offsets;
6142 eaf2c13e 2022-09-17 mark *match = &s->matched_line;
6143 eaf2c13e 2022-09-17 mark *first = &s->first_displayed_line;
6144 eaf2c13e 2022-09-17 mark *last = &s->last_displayed_line;
6145 eaf2c13e 2022-09-17 mark *selected = &s->selected_line;
6146 6c4c42e0 2019-06-24 stsp }
6147 6c4c42e0 2019-06-24 stsp
6148 6c4c42e0 2019-06-24 stsp static const struct got_error *
6149 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
6150 7cbe629d 2018-08-04 stsp {
6151 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6152 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
6153 2b380cc8 2018-10-24 stsp int errcode;
6154 2b380cc8 2018-10-24 stsp
6155 1fddf795 2021-01-20 stsp if (s->blame.thread == NULL && !s->blame_complete) {
6156 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6157 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
6158 2b380cc8 2018-10-24 stsp if (errcode)
6159 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
6160 51fe7530 2019-08-19 stsp
6161 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
6162 2b380cc8 2018-10-24 stsp }
6163 e5a0f69f 2018-08-18 stsp
6164 51fe7530 2019-08-19 stsp if (s->blame_complete)
6165 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
6166 51fe7530 2019-08-19 stsp
6167 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
6168 e5a0f69f 2018-08-18 stsp
6169 9b058f45 2022-06-30 mark view_border(view);
6170 e5a0f69f 2018-08-18 stsp return err;
6171 e5a0f69f 2018-08-18 stsp }
6172 e5a0f69f 2018-08-18 stsp
6173 e5a0f69f 2018-08-18 stsp static const struct got_error *
6174 05f04cdf 2022-07-20 mark log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6175 05f04cdf 2022-07-20 mark struct got_repository *repo, struct got_object_id *id)
6176 05f04cdf 2022-07-20 mark {
6177 05f04cdf 2022-07-20 mark struct tog_view *log_view;
6178 05f04cdf 2022-07-20 mark const struct got_error *err = NULL;
6179 05f04cdf 2022-07-20 mark
6180 05f04cdf 2022-07-20 mark *new_view = NULL;
6181 05f04cdf 2022-07-20 mark
6182 05f04cdf 2022-07-20 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6183 05f04cdf 2022-07-20 mark if (log_view == NULL)
6184 05f04cdf 2022-07-20 mark return got_error_from_errno("view_open");
6185 05f04cdf 2022-07-20 mark
6186 05f04cdf 2022-07-20 mark err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6187 05f04cdf 2022-07-20 mark if (err)
6188 05f04cdf 2022-07-20 mark view_close(log_view);
6189 05f04cdf 2022-07-20 mark else
6190 05f04cdf 2022-07-20 mark *new_view = log_view;
6191 05f04cdf 2022-07-20 mark
6192 05f04cdf 2022-07-20 mark return err;
6193 05f04cdf 2022-07-20 mark }
6194 05f04cdf 2022-07-20 mark
6195 05f04cdf 2022-07-20 mark static const struct got_error *
6196 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6197 e5a0f69f 2018-08-18 stsp {
6198 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
6199 136e2bd4 2022-07-23 mark struct tog_view *diff_view;
6200 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6201 9b058f45 2022-06-30 mark int eos, nscroll, begin_y = 0, begin_x = 0;
6202 9b058f45 2022-06-30 mark
6203 9b058f45 2022-06-30 mark eos = nscroll = view->nlines - 2;
6204 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6205 9b058f45 2022-06-30 mark --eos; /* border */
6206 7cbe629d 2018-08-04 stsp
6207 e5a0f69f 2018-08-18 stsp switch (ch) {
6208 145b6838 2022-06-16 stsp case '0':
6209 145b6838 2022-06-16 stsp view->x = 0;
6210 145b6838 2022-06-16 stsp break;
6211 145b6838 2022-06-16 stsp case '$':
6212 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
6213 640cd7ff 2022-06-22 mark view->count = 0;
6214 145b6838 2022-06-16 stsp break;
6215 145b6838 2022-06-16 stsp case KEY_RIGHT:
6216 145b6838 2022-06-16 stsp case 'l':
6217 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
6218 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
6219 640cd7ff 2022-06-22 mark else
6220 640cd7ff 2022-06-22 mark view->count = 0;
6221 145b6838 2022-06-16 stsp break;
6222 145b6838 2022-06-16 stsp case KEY_LEFT:
6223 145b6838 2022-06-16 stsp case 'h':
6224 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
6225 640cd7ff 2022-06-22 mark if (view->x <= 0)
6226 640cd7ff 2022-06-22 mark view->count = 0;
6227 145b6838 2022-06-16 stsp break;
6228 1e37a5c2 2019-05-12 jcs case 'q':
6229 1e37a5c2 2019-05-12 jcs s->done = 1;
6230 4deef56f 2021-09-02 naddy break;
6231 4deef56f 2021-09-02 naddy case 'g':
6232 4deef56f 2021-09-02 naddy case KEY_HOME:
6233 4deef56f 2021-09-02 naddy s->selected_line = 1;
6234 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6235 640cd7ff 2022-06-22 mark view->count = 0;
6236 4deef56f 2021-09-02 naddy break;
6237 4deef56f 2021-09-02 naddy case 'G':
6238 4deef56f 2021-09-02 naddy case KEY_END:
6239 9b058f45 2022-06-30 mark if (s->blame.nlines < eos) {
6240 4deef56f 2021-09-02 naddy s->selected_line = s->blame.nlines;
6241 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6242 4deef56f 2021-09-02 naddy } else {
6243 9b058f45 2022-06-30 mark s->selected_line = eos;
6244 9b058f45 2022-06-30 mark s->first_displayed_line = s->blame.nlines - (eos - 1);
6245 4deef56f 2021-09-02 naddy }
6246 640cd7ff 2022-06-22 mark view->count = 0;
6247 1e37a5c2 2019-05-12 jcs break;
6248 1e37a5c2 2019-05-12 jcs case 'k':
6249 1e37a5c2 2019-05-12 jcs case KEY_UP:
6250 02ffd0d5 2021-10-17 stsp case CTRL('p'):
6251 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
6252 1e37a5c2 2019-05-12 jcs s->selected_line--;
6253 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
6254 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
6255 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
6256 640cd7ff 2022-06-22 mark else
6257 640cd7ff 2022-06-22 mark view->count = 0;
6258 1e37a5c2 2019-05-12 jcs break;
6259 83cc4199 2022-06-13 stsp case CTRL('u'):
6260 33c3719a 2022-06-15 stsp case 'u':
6261 83cc4199 2022-06-13 stsp nscroll /= 2;
6262 83cc4199 2022-06-13 stsp /* FALL THROUGH */
6263 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
6264 ea025d1d 2020-02-22 naddy case CTRL('b'):
6265 61417565 2022-06-20 mark case 'b':
6266 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
6267 640cd7ff 2022-06-22 mark if (view->count > 1)
6268 640cd7ff 2022-06-22 mark nscroll += nscroll;
6269 83cc4199 2022-06-13 stsp s->selected_line = MAX(1, s->selected_line - nscroll);
6270 640cd7ff 2022-06-22 mark view->count = 0;
6271 e5a0f69f 2018-08-18 stsp break;
6272 1e37a5c2 2019-05-12 jcs }
6273 83cc4199 2022-06-13 stsp if (s->first_displayed_line > nscroll)
6274 83cc4199 2022-06-13 stsp s->first_displayed_line -= nscroll;
6275 1e37a5c2 2019-05-12 jcs else
6276 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
6277 1e37a5c2 2019-05-12 jcs break;
6278 1e37a5c2 2019-05-12 jcs case 'j':
6279 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
6280 02ffd0d5 2021-10-17 stsp case CTRL('n'):
6281 9b058f45 2022-06-30 mark if (s->selected_line < eos && s->first_displayed_line +
6282 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
6283 1e37a5c2 2019-05-12 jcs s->selected_line++;
6284 9b058f45 2022-06-30 mark else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6285 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
6286 640cd7ff 2022-06-22 mark else
6287 640cd7ff 2022-06-22 mark view->count = 0;
6288 1e37a5c2 2019-05-12 jcs break;
6289 61417565 2022-06-20 mark case 'c':
6290 1e37a5c2 2019-05-12 jcs case 'p': {
6291 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6292 640cd7ff 2022-06-22 mark
6293 640cd7ff 2022-06-22 mark view->count = 0;
6294 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6295 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6296 1e37a5c2 2019-05-12 jcs if (id == NULL)
6297 e5a0f69f 2018-08-18 stsp break;
6298 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
6299 a44927cc 2022-04-07 stsp struct got_commit_object *commit, *pcommit;
6300 15a94983 2018-12-23 stsp struct got_object_qid *pid;
6301 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
6302 1e37a5c2 2019-05-12 jcs int obj_type;
6303 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
6304 1e37a5c2 2019-05-12 jcs s->repo, id);
6305 e5a0f69f 2018-08-18 stsp if (err)
6306 e5a0f69f 2018-08-18 stsp break;
6307 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(
6308 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
6309 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
6310 15a94983 2018-12-23 stsp got_object_commit_close(commit);
6311 e5a0f69f 2018-08-18 stsp break;
6312 e5a0f69f 2018-08-18 stsp }
6313 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
6314 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&pcommit,
6315 d7b5a0e8 2022-04-20 stsp s->repo, &pid->id);
6316 a44927cc 2022-04-07 stsp if (err)
6317 a44927cc 2022-04-07 stsp break;
6318 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
6319 a44927cc 2022-04-07 stsp pcommit, s->path);
6320 a44927cc 2022-04-07 stsp got_object_commit_close(pcommit);
6321 e5a0f69f 2018-08-18 stsp if (err) {
6322 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
6323 1e37a5c2 2019-05-12 jcs err = NULL;
6324 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6325 e5a0f69f 2018-08-18 stsp break;
6326 e5a0f69f 2018-08-18 stsp }
6327 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
6328 1e37a5c2 2019-05-12 jcs blob_id);
6329 1e37a5c2 2019-05-12 jcs free(blob_id);
6330 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
6331 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
6332 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6333 e5a0f69f 2018-08-18 stsp break;
6334 1e37a5c2 2019-05-12 jcs }
6335 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6336 d7b5a0e8 2022-04-20 stsp &pid->id);
6337 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6338 1e37a5c2 2019-05-12 jcs } else {
6339 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
6340 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id) == 0)
6341 1e37a5c2 2019-05-12 jcs break;
6342 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6343 1e37a5c2 2019-05-12 jcs id);
6344 1e37a5c2 2019-05-12 jcs }
6345 1e37a5c2 2019-05-12 jcs if (err)
6346 e5a0f69f 2018-08-18 stsp break;
6347 1e37a5c2 2019-05-12 jcs s->done = 1;
6348 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6349 1e37a5c2 2019-05-12 jcs s->done = 0;
6350 1e37a5c2 2019-05-12 jcs if (thread_err)
6351 1e37a5c2 2019-05-12 jcs break;
6352 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits,
6353 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
6354 a5388363 2020-12-01 naddy err = run_blame(view);
6355 1e37a5c2 2019-05-12 jcs if (err)
6356 1e37a5c2 2019-05-12 jcs break;
6357 1e37a5c2 2019-05-12 jcs break;
6358 1e37a5c2 2019-05-12 jcs }
6359 61417565 2022-06-20 mark case 'C': {
6360 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
6361 640cd7ff 2022-06-22 mark
6362 640cd7ff 2022-06-22 mark view->count = 0;
6363 dbdddfee 2021-06-23 naddy first = STAILQ_FIRST(&s->blamed_commits);
6364 d7b5a0e8 2022-04-20 stsp if (!got_object_id_cmp(&first->id, s->commit_id))
6365 1e37a5c2 2019-05-12 jcs break;
6366 1e37a5c2 2019-05-12 jcs s->done = 1;
6367 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6368 1e37a5c2 2019-05-12 jcs s->done = 0;
6369 1e37a5c2 2019-05-12 jcs if (thread_err)
6370 1e37a5c2 2019-05-12 jcs break;
6371 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6372 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
6373 1e37a5c2 2019-05-12 jcs s->blamed_commit =
6374 dbdddfee 2021-06-23 naddy STAILQ_FIRST(&s->blamed_commits);
6375 a5388363 2020-12-01 naddy err = run_blame(view);
6376 1e37a5c2 2019-05-12 jcs if (err)
6377 1e37a5c2 2019-05-12 jcs break;
6378 1e37a5c2 2019-05-12 jcs break;
6379 1e37a5c2 2019-05-12 jcs }
6380 136e2bd4 2022-07-23 mark case 'L':
6381 05f04cdf 2022-07-20 mark view->count = 0;
6382 136e2bd4 2022-07-23 mark s->id_to_log = get_selected_commit_id(s->blame.lines,
6383 136e2bd4 2022-07-23 mark s->blame.nlines, s->first_displayed_line, s->selected_line);
6384 136e2bd4 2022-07-23 mark if (s->id_to_log)
6385 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6386 05f04cdf 2022-07-20 mark break;
6387 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
6388 1e37a5c2 2019-05-12 jcs case '\r': {
6389 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6390 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
6391 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
6392 640cd7ff 2022-06-22 mark
6393 640cd7ff 2022-06-22 mark view->count = 0;
6394 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6395 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6396 1e37a5c2 2019-05-12 jcs if (id == NULL)
6397 1e37a5c2 2019-05-12 jcs break;
6398 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
6399 1e37a5c2 2019-05-12 jcs if (err)
6400 1e37a5c2 2019-05-12 jcs break;
6401 9b058f45 2022-06-30 mark pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6402 c0f61fa4 2022-07-11 mark if (*new_view) {
6403 c0f61fa4 2022-07-11 mark /* traversed from diff view, release diff resources */
6404 c0f61fa4 2022-07-11 mark err = close_diff_view(*new_view);
6405 c0f61fa4 2022-07-11 mark if (err)
6406 c0f61fa4 2022-07-11 mark break;
6407 c0f61fa4 2022-07-11 mark diff_view = *new_view;
6408 c0f61fa4 2022-07-11 mark } else {
6409 c0f61fa4 2022-07-11 mark if (view_is_parent_view(view))
6410 c0f61fa4 2022-07-11 mark view_get_split(view, &begin_y, &begin_x);
6411 9b058f45 2022-06-30 mark
6412 c0f61fa4 2022-07-11 mark diff_view = view_open(0, 0, begin_y, begin_x,
6413 c0f61fa4 2022-07-11 mark TOG_VIEW_DIFF);
6414 c0f61fa4 2022-07-11 mark if (diff_view == NULL) {
6415 c0f61fa4 2022-07-11 mark got_object_commit_close(commit);
6416 c0f61fa4 2022-07-11 mark err = got_error_from_errno("view_open");
6417 c0f61fa4 2022-07-11 mark break;
6418 c0f61fa4 2022-07-11 mark }
6419 15a94983 2018-12-23 stsp }
6420 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6421 c0f61fa4 2022-07-11 mark id, NULL, NULL, 3, 0, 0, view, s->repo);
6422 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6423 1e37a5c2 2019-05-12 jcs if (err) {
6424 1e37a5c2 2019-05-12 jcs view_close(diff_view);
6425 1e37a5c2 2019-05-12 jcs break;
6426 1e37a5c2 2019-05-12 jcs }
6427 c0f61fa4 2022-07-11 mark s->last_diffed_line = s->first_displayed_line - 1 +
6428 c0f61fa4 2022-07-11 mark s->selected_line;
6429 c0f61fa4 2022-07-11 mark if (*new_view)
6430 c0f61fa4 2022-07-11 mark break; /* still open from active diff view */
6431 49b24ee5 2022-07-03 mark if (view_is_parent_view(view) &&
6432 49b24ee5 2022-07-03 mark view->mode == TOG_VIEW_SPLIT_HRZN) {
6433 9b058f45 2022-06-30 mark err = view_init_hsplit(view, begin_y);
6434 9b058f45 2022-06-30 mark if (err)
6435 9b058f45 2022-06-30 mark break;
6436 9b058f45 2022-06-30 mark }
6437 9b058f45 2022-06-30 mark
6438 e78dc838 2020-12-04 stsp view->focussed = 0;
6439 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
6440 9b058f45 2022-06-30 mark diff_view->mode = view->mode;
6441 9b058f45 2022-06-30 mark diff_view->nlines = view->lines - begin_y;
6442 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
6443 3c1dfe12 2022-07-08 mark view_transfer_size(diff_view, view);
6444 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
6445 1e37a5c2 2019-05-12 jcs if (err)
6446 34bc9ec9 2019-02-22 stsp break;
6447 0dbbbe90 2022-06-17 op err = view_set_child(view, diff_view);
6448 0dbbbe90 2022-06-17 op if (err)
6449 0dbbbe90 2022-06-17 op break;
6450 e78dc838 2020-12-04 stsp view->focus_child = 1;
6451 1e37a5c2 2019-05-12 jcs } else
6452 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
6453 1e37a5c2 2019-05-12 jcs if (err)
6454 e5a0f69f 2018-08-18 stsp break;
6455 1e37a5c2 2019-05-12 jcs break;
6456 1e37a5c2 2019-05-12 jcs }
6457 83cc4199 2022-06-13 stsp case CTRL('d'):
6458 33c3719a 2022-06-15 stsp case 'd':
6459 83cc4199 2022-06-13 stsp nscroll /= 2;
6460 83cc4199 2022-06-13 stsp /* FALL THROUGH */
6461 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
6462 ea025d1d 2020-02-22 naddy case CTRL('f'):
6463 61417565 2022-06-20 mark case 'f':
6464 1e37a5c2 2019-05-12 jcs case ' ':
6465 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6466 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
6467 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
6468 640cd7ff 2022-06-22 mark view->count = 0;
6469 e5a0f69f 2018-08-18 stsp break;
6470 1e37a5c2 2019-05-12 jcs }
6471 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6472 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
6473 83cc4199 2022-06-13 stsp s->selected_line +=
6474 83cc4199 2022-06-13 stsp MIN(nscroll, s->last_displayed_line -
6475 83cc4199 2022-06-13 stsp s->first_displayed_line - s->selected_line + 1);
6476 1e37a5c2 2019-05-12 jcs }
6477 83cc4199 2022-06-13 stsp if (s->last_displayed_line + nscroll <= s->blame.nlines)
6478 83cc4199 2022-06-13 stsp s->first_displayed_line += nscroll;
6479 1e37a5c2 2019-05-12 jcs else
6480 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
6481 83cc4199 2022-06-13 stsp s->blame.nlines - (view->nlines - 3);
6482 1e37a5c2 2019-05-12 jcs break;
6483 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
6484 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
6485 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
6486 1e37a5c2 2019-05-12 jcs view->nlines - 2);
6487 1e37a5c2 2019-05-12 jcs }
6488 1e37a5c2 2019-05-12 jcs break;
6489 1e37a5c2 2019-05-12 jcs default:
6490 640cd7ff 2022-06-22 mark view->count = 0;
6491 1e37a5c2 2019-05-12 jcs break;
6492 a70480e0 2018-06-23 stsp }
6493 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
6494 917d79a7 2022-07-01 stsp }
6495 917d79a7 2022-07-01 stsp
6496 917d79a7 2022-07-01 stsp static const struct got_error *
6497 917d79a7 2022-07-01 stsp reset_blame_view(struct tog_view *view)
6498 917d79a7 2022-07-01 stsp {
6499 917d79a7 2022-07-01 stsp const struct got_error *err;
6500 917d79a7 2022-07-01 stsp struct tog_blame_view_state *s = &view->state.blame;
6501 917d79a7 2022-07-01 stsp
6502 917d79a7 2022-07-01 stsp view->count = 0;
6503 917d79a7 2022-07-01 stsp s->done = 1;
6504 917d79a7 2022-07-01 stsp err = stop_blame(&s->blame);
6505 917d79a7 2022-07-01 stsp s->done = 0;
6506 917d79a7 2022-07-01 stsp if (err)
6507 917d79a7 2022-07-01 stsp return err;
6508 917d79a7 2022-07-01 stsp return run_blame(view);
6509 a70480e0 2018-06-23 stsp }
6510 a70480e0 2018-06-23 stsp
6511 a70480e0 2018-06-23 stsp static const struct got_error *
6512 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
6513 9f7d7167 2018-04-29 stsp {
6514 a70480e0 2018-06-23 stsp const struct got_error *error;
6515 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
6516 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
6517 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6518 0587e10c 2020-07-23 stsp char *link_target = NULL;
6519 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
6520 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
6521 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
6522 a70480e0 2018-06-23 stsp int ch;
6523 e1cd8fed 2018-08-01 stsp struct tog_view *view;
6524 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
6525 a70480e0 2018-06-23 stsp
6526 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6527 a70480e0 2018-06-23 stsp switch (ch) {
6528 a70480e0 2018-06-23 stsp case 'c':
6529 a70480e0 2018-06-23 stsp commit_id_str = optarg;
6530 a70480e0 2018-06-23 stsp break;
6531 69069811 2018-08-02 stsp case 'r':
6532 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
6533 69069811 2018-08-02 stsp if (repo_path == NULL)
6534 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6535 9ba1d308 2019-10-21 stsp optarg);
6536 69069811 2018-08-02 stsp break;
6537 a70480e0 2018-06-23 stsp default:
6538 17020d27 2019-03-07 stsp usage_blame();
6539 a70480e0 2018-06-23 stsp /* NOTREACHED */
6540 a70480e0 2018-06-23 stsp }
6541 a70480e0 2018-06-23 stsp }
6542 a70480e0 2018-06-23 stsp
6543 a70480e0 2018-06-23 stsp argc -= optind;
6544 a70480e0 2018-06-23 stsp argv += optind;
6545 a70480e0 2018-06-23 stsp
6546 f135c941 2020-02-20 stsp if (argc != 1)
6547 a70480e0 2018-06-23 stsp usage_blame();
6548 6962eb72 2020-02-20 stsp
6549 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
6550 0ae84acc 2022-06-15 tracey if (error != NULL)
6551 0ae84acc 2022-06-15 tracey goto done;
6552 0ae84acc 2022-06-15 tracey
6553 69069811 2018-08-02 stsp if (repo_path == NULL) {
6554 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6555 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6556 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6557 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6558 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6559 c156c7a4 2020-12-18 stsp goto done;
6560 f135c941 2020-02-20 stsp if (worktree)
6561 eb41ed75 2019-02-05 stsp repo_path =
6562 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
6563 f135c941 2020-02-20 stsp else
6564 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
6565 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6566 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6567 c156c7a4 2020-12-18 stsp goto done;
6568 c156c7a4 2020-12-18 stsp }
6569 f135c941 2020-02-20 stsp }
6570 a915003a 2019-02-05 stsp
6571 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6572 c02c541e 2019-03-29 stsp if (error != NULL)
6573 8e94dd5b 2019-01-04 stsp goto done;
6574 69069811 2018-08-02 stsp
6575 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6576 f135c941 2020-02-20 stsp worktree);
6577 c02c541e 2019-03-29 stsp if (error)
6578 92205607 2019-01-04 stsp goto done;
6579 69069811 2018-08-02 stsp
6580 f135c941 2020-02-20 stsp init_curses();
6581 f135c941 2020-02-20 stsp
6582 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6583 51a10b52 2020-12-26 stsp if (error)
6584 51a10b52 2020-12-26 stsp goto done;
6585 51a10b52 2020-12-26 stsp
6586 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
6587 eb41ed75 2019-02-05 stsp if (error)
6588 69069811 2018-08-02 stsp goto done;
6589 a70480e0 2018-06-23 stsp
6590 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
6591 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
6592 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
6593 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6594 a70480e0 2018-06-23 stsp if (error != NULL)
6595 66b4983c 2018-06-23 stsp goto done;
6596 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6597 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
6598 a70480e0 2018-06-23 stsp } else {
6599 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6600 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6601 a70480e0 2018-06-23 stsp }
6602 a19e88aa 2018-06-23 stsp if (error != NULL)
6603 8b473291 2019-02-21 stsp goto done;
6604 8b473291 2019-02-21 stsp
6605 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6606 e1cd8fed 2018-08-01 stsp if (view == NULL) {
6607 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
6608 e1cd8fed 2018-08-01 stsp goto done;
6609 e1cd8fed 2018-08-01 stsp }
6610 0587e10c 2020-07-23 stsp
6611 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6612 a44927cc 2022-04-07 stsp if (error)
6613 a44927cc 2022-04-07 stsp goto done;
6614 a44927cc 2022-04-07 stsp
6615 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
6616 a44927cc 2022-04-07 stsp commit, repo);
6617 7cbe629d 2018-08-04 stsp if (error)
6618 7cbe629d 2018-08-04 stsp goto done;
6619 0587e10c 2020-07-23 stsp
6620 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
6621 78756c87 2020-11-24 stsp commit_id, repo);
6622 0587e10c 2020-07-23 stsp if (error)
6623 0587e10c 2020-07-23 stsp goto done;
6624 12314ad4 2019-08-31 stsp if (worktree) {
6625 12314ad4 2019-08-31 stsp /* Release work tree lock. */
6626 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
6627 12314ad4 2019-08-31 stsp worktree = NULL;
6628 12314ad4 2019-08-31 stsp }
6629 e5a0f69f 2018-08-18 stsp error = view_loop(view);
6630 a70480e0 2018-06-23 stsp done:
6631 69069811 2018-08-02 stsp free(repo_path);
6632 f135c941 2020-02-20 stsp free(in_repo_path);
6633 0587e10c 2020-07-23 stsp free(link_target);
6634 69069811 2018-08-02 stsp free(cwd);
6635 a70480e0 2018-06-23 stsp free(commit_id);
6636 a44927cc 2022-04-07 stsp if (commit)
6637 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
6638 eb41ed75 2019-02-05 stsp if (worktree)
6639 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
6640 1d0f4054 2021-06-17 stsp if (repo) {
6641 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6642 1d0f4054 2021-06-17 stsp if (error == NULL)
6643 1d0f4054 2021-06-17 stsp error = close_err;
6644 1d0f4054 2021-06-17 stsp }
6645 0ae84acc 2022-06-15 tracey if (pack_fds) {
6646 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
6647 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
6648 0ae84acc 2022-06-15 tracey if (error == NULL)
6649 0ae84acc 2022-06-15 tracey error = pack_err;
6650 0ae84acc 2022-06-15 tracey }
6651 51a10b52 2020-12-26 stsp tog_free_refs();
6652 a70480e0 2018-06-23 stsp return error;
6653 ffd1d5e5 2018-06-23 stsp }
6654 ffd1d5e5 2018-06-23 stsp
6655 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6656 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
6657 ffd1d5e5 2018-06-23 stsp {
6658 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
6659 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6660 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
6661 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
6662 0c6ad1bc 2022-09-09 mark char *index = NULL;
6663 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6664 94b80cfa 2022-08-01 mark int width, n, nentries, i = 1;
6665 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6666 ffd1d5e5 2018-06-23 stsp
6667 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6668 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6669 9b058f45 2022-06-30 mark --limit; /* border */
6670 ffd1d5e5 2018-06-23 stsp
6671 f7d12f7e 2018-08-01 stsp werase(view->window);
6672 ffd1d5e5 2018-06-23 stsp
6673 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6674 ffd1d5e5 2018-06-23 stsp return NULL;
6675 ffd1d5e5 2018-06-23 stsp
6676 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6677 ccda2f4d 2022-06-16 stsp 0, 0);
6678 ffd1d5e5 2018-06-23 stsp if (err)
6679 ffd1d5e5 2018-06-23 stsp return err;
6680 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6681 a3404814 2018-09-02 stsp wstandout(view->window);
6682 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6683 11b20872 2019-11-08 stsp if (tc)
6684 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6685 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6686 0c6ad1bc 2022-09-09 mark free(wline);
6687 0c6ad1bc 2022-09-09 mark wline = NULL;
6688 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
6689 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
6690 11b20872 2019-11-08 stsp if (tc)
6691 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6692 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6693 a3404814 2018-09-02 stsp wstandend(view->window);
6694 0c6ad1bc 2022-09-09 mark if (--limit <= 0)
6695 0c6ad1bc 2022-09-09 mark return NULL;
6696 94b80cfa 2022-08-01 mark
6697 df68a56b 2022-08-12 mark i += s->selected;
6698 df68a56b 2022-08-12 mark if (s->first_displayed_entry) {
6699 df68a56b 2022-08-12 mark i += got_tree_entry_get_index(s->first_displayed_entry);
6700 df68a56b 2022-08-12 mark if (s->tree != s->root)
6701 df68a56b 2022-08-12 mark ++i; /* account for ".." entry */
6702 94b80cfa 2022-08-01 mark }
6703 94b80cfa 2022-08-01 mark nentries = got_object_tree_get_nentries(s->tree);
6704 0c6ad1bc 2022-09-09 mark if (asprintf(&index, "[%d/%d] %s",
6705 0c6ad1bc 2022-09-09 mark i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6706 0c6ad1bc 2022-09-09 mark return got_error_from_errno("asprintf");
6707 0c6ad1bc 2022-09-09 mark err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6708 0c6ad1bc 2022-09-09 mark free(index);
6709 ce52c690 2018-06-23 stsp if (err)
6710 ce52c690 2018-06-23 stsp return err;
6711 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6712 2550e4c3 2018-07-13 stsp free(wline);
6713 2550e4c3 2018-07-13 stsp wline = NULL;
6714 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6715 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6716 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6717 ffd1d5e5 2018-06-23 stsp return NULL;
6718 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6719 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6720 a1eca9bb 2018-06-23 stsp return NULL;
6721 ffd1d5e5 2018-06-23 stsp
6722 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6723 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6724 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6725 0cf4efb1 2018-09-29 stsp if (view->focussed)
6726 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6727 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6728 ffd1d5e5 2018-06-23 stsp }
6729 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6730 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6731 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6732 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6733 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6734 ffd1d5e5 2018-06-23 stsp return NULL;
6735 ffd1d5e5 2018-06-23 stsp n = 1;
6736 ffd1d5e5 2018-06-23 stsp } else {
6737 ffd1d5e5 2018-06-23 stsp n = 0;
6738 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6739 ffd1d5e5 2018-06-23 stsp }
6740 ffd1d5e5 2018-06-23 stsp
6741 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6742 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6743 848d6979 2019-08-12 stsp const char *modestr = "";
6744 56e0773d 2019-11-28 stsp mode_t mode;
6745 1d13200f 2018-07-12 stsp
6746 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6747 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6748 56e0773d 2019-11-28 stsp
6749 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6750 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6751 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6752 1d13200f 2018-07-12 stsp if (err)
6753 638f9024 2019-05-13 stsp return got_error_from_errno(
6754 230a42bd 2019-05-11 jcs "got_object_id_str");
6755 1d13200f 2018-07-12 stsp }
6756 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6757 63c5ca5d 2019-08-24 stsp modestr = "$";
6758 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6759 0d6c6ee3 2020-05-20 stsp int i;
6760 0d6c6ee3 2020-05-20 stsp
6761 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6762 d86d3b18 2020-12-01 naddy te, s->repo);
6763 0d6c6ee3 2020-05-20 stsp if (err) {
6764 0d6c6ee3 2020-05-20 stsp free(id_str);
6765 0d6c6ee3 2020-05-20 stsp return err;
6766 0d6c6ee3 2020-05-20 stsp }
6767 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6768 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6769 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6770 0d6c6ee3 2020-05-20 stsp }
6771 848d6979 2019-08-12 stsp modestr = "@";
6772 0d6c6ee3 2020-05-20 stsp }
6773 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6774 848d6979 2019-08-12 stsp modestr = "/";
6775 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6776 848d6979 2019-08-12 stsp modestr = "*";
6777 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6778 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6779 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6780 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6781 1d13200f 2018-07-12 stsp free(id_str);
6782 0d6c6ee3 2020-05-20 stsp free(link_target);
6783 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6784 1d13200f 2018-07-12 stsp }
6785 1d13200f 2018-07-12 stsp free(id_str);
6786 0d6c6ee3 2020-05-20 stsp free(link_target);
6787 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6788 ccda2f4d 2022-06-16 stsp 0, 0);
6789 ffd1d5e5 2018-06-23 stsp if (err) {
6790 ffd1d5e5 2018-06-23 stsp free(line);
6791 ffd1d5e5 2018-06-23 stsp break;
6792 ffd1d5e5 2018-06-23 stsp }
6793 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6794 0cf4efb1 2018-09-29 stsp if (view->focussed)
6795 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6796 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6797 ffd1d5e5 2018-06-23 stsp }
6798 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6799 f26dddb7 2019-11-08 stsp if (tc)
6800 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6801 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6802 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6803 f26dddb7 2019-11-08 stsp if (tc)
6804 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6805 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6806 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6807 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6808 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6809 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6810 ffd1d5e5 2018-06-23 stsp free(line);
6811 2550e4c3 2018-07-13 stsp free(wline);
6812 2550e4c3 2018-07-13 stsp wline = NULL;
6813 ffd1d5e5 2018-06-23 stsp n++;
6814 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6815 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6816 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6817 ffd1d5e5 2018-06-23 stsp break;
6818 ffd1d5e5 2018-06-23 stsp }
6819 ffd1d5e5 2018-06-23 stsp
6820 ffd1d5e5 2018-06-23 stsp return err;
6821 ffd1d5e5 2018-06-23 stsp }
6822 ffd1d5e5 2018-06-23 stsp
6823 ffd1d5e5 2018-06-23 stsp static void
6824 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6825 ffd1d5e5 2018-06-23 stsp {
6826 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6827 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6828 fa86c4bf 2020-11-29 stsp int i = 0;
6829 ffd1d5e5 2018-06-23 stsp
6830 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6831 ffd1d5e5 2018-06-23 stsp return;
6832 ffd1d5e5 2018-06-23 stsp
6833 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6834 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6835 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6836 fa86c4bf 2020-11-29 stsp if (!isroot)
6837 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6838 fa86c4bf 2020-11-29 stsp break;
6839 fa86c4bf 2020-11-29 stsp }
6840 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6841 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6842 ffd1d5e5 2018-06-23 stsp }
6843 ffd1d5e5 2018-06-23 stsp }
6844 ffd1d5e5 2018-06-23 stsp
6845 9b058f45 2022-06-30 mark static const struct got_error *
6846 9b058f45 2022-06-30 mark tree_scroll_down(struct tog_view *view, int maxscroll)
6847 ffd1d5e5 2018-06-23 stsp {
6848 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
6849 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6850 ffd1d5e5 2018-06-23 stsp int n = 0;
6851 ffd1d5e5 2018-06-23 stsp
6852 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6853 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6854 694d3271 2020-12-01 naddy s->first_displayed_entry);
6855 694d3271 2020-12-01 naddy else
6856 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6857 56e0773d 2019-11-28 stsp
6858 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6859 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
6860 94b80cfa 2022-08-01 mark if (last) {
6861 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
6862 9b058f45 2022-06-30 mark last = got_tree_entry_get_next(s->tree, last);
6863 94b80cfa 2022-08-01 mark }
6864 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6865 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6866 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6867 768394f3 2019-01-24 stsp }
6868 ffd1d5e5 2018-06-23 stsp }
6869 9b058f45 2022-06-30 mark
6870 9b058f45 2022-06-30 mark return NULL;
6871 ffd1d5e5 2018-06-23 stsp }
6872 ffd1d5e5 2018-06-23 stsp
6873 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6874 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6875 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6876 ffd1d5e5 2018-06-23 stsp {
6877 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6878 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6879 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6880 ffd1d5e5 2018-06-23 stsp
6881 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6882 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6883 56e0773d 2019-11-28 stsp + 1 /* slash */;
6884 ce52c690 2018-06-23 stsp if (te)
6885 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6886 ce52c690 2018-06-23 stsp
6887 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6888 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6889 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6890 ffd1d5e5 2018-06-23 stsp
6891 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6892 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6893 d9765a41 2018-06-23 stsp while (pt) {
6894 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6895 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6896 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6897 cb2ebc8a 2018-06-23 stsp goto done;
6898 cb2ebc8a 2018-06-23 stsp }
6899 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6900 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6901 cb2ebc8a 2018-06-23 stsp goto done;
6902 cb2ebc8a 2018-06-23 stsp }
6903 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6904 ffd1d5e5 2018-06-23 stsp }
6905 ce52c690 2018-06-23 stsp if (te) {
6906 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6907 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6908 ce52c690 2018-06-23 stsp goto done;
6909 ce52c690 2018-06-23 stsp }
6910 cb2ebc8a 2018-06-23 stsp }
6911 ce52c690 2018-06-23 stsp done:
6912 ce52c690 2018-06-23 stsp if (err) {
6913 ce52c690 2018-06-23 stsp free(*path);
6914 ce52c690 2018-06-23 stsp *path = NULL;
6915 ce52c690 2018-06-23 stsp }
6916 ce52c690 2018-06-23 stsp return err;
6917 ce52c690 2018-06-23 stsp }
6918 ce52c690 2018-06-23 stsp
6919 ce52c690 2018-06-23 stsp static const struct got_error *
6920 9b058f45 2022-06-30 mark blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6921 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6922 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6923 ce52c690 2018-06-23 stsp {
6924 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6925 ce52c690 2018-06-23 stsp char *path;
6926 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6927 a0de39f3 2019-08-09 stsp
6928 a0de39f3 2019-08-09 stsp *new_view = NULL;
6929 69efd4c4 2018-07-18 stsp
6930 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6931 ce52c690 2018-06-23 stsp if (err)
6932 ce52c690 2018-06-23 stsp return err;
6933 ffd1d5e5 2018-06-23 stsp
6934 9b058f45 2022-06-30 mark blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6935 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6936 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6937 83ce39e3 2019-08-12 stsp goto done;
6938 83ce39e3 2019-08-12 stsp }
6939 cdf1ee82 2018-08-01 stsp
6940 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6941 e5a0f69f 2018-08-18 stsp if (err) {
6942 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6943 fc06ba56 2019-08-22 stsp err = NULL;
6944 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6945 e5a0f69f 2018-08-18 stsp } else
6946 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6947 83ce39e3 2019-08-12 stsp done:
6948 83ce39e3 2019-08-12 stsp free(path);
6949 69efd4c4 2018-07-18 stsp return err;
6950 69efd4c4 2018-07-18 stsp }
6951 69efd4c4 2018-07-18 stsp
6952 69efd4c4 2018-07-18 stsp static const struct got_error *
6953 49b24ee5 2022-07-03 mark log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6954 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6955 69efd4c4 2018-07-18 stsp {
6956 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6957 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6958 69efd4c4 2018-07-18 stsp char *path;
6959 a0de39f3 2019-08-09 stsp
6960 a0de39f3 2019-08-09 stsp *new_view = NULL;
6961 69efd4c4 2018-07-18 stsp
6962 49b24ee5 2022-07-03 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6963 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6964 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6965 e5a0f69f 2018-08-18 stsp
6966 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6967 69efd4c4 2018-07-18 stsp if (err)
6968 69efd4c4 2018-07-18 stsp return err;
6969 69efd4c4 2018-07-18 stsp
6970 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6971 4e97c21c 2020-12-06 stsp path, 0);
6972 ba4f502b 2018-08-04 stsp if (err)
6973 e5a0f69f 2018-08-18 stsp view_close(log_view);
6974 e5a0f69f 2018-08-18 stsp else
6975 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6976 cb2ebc8a 2018-06-23 stsp free(path);
6977 cb2ebc8a 2018-06-23 stsp return err;
6978 ffd1d5e5 2018-06-23 stsp }
6979 ffd1d5e5 2018-06-23 stsp
6980 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6981 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6982 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6983 ffd1d5e5 2018-06-23 stsp {
6984 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6985 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6986 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6987 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6988 ffd1d5e5 2018-06-23 stsp
6989 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6990 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6991 bc573f3b 2021-07-10 stsp
6992 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6993 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6994 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6995 ffd1d5e5 2018-06-23 stsp
6996 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6997 bc573f3b 2021-07-10 stsp if (err)
6998 bc573f3b 2021-07-10 stsp goto done;
6999 bc573f3b 2021-07-10 stsp
7000 bc573f3b 2021-07-10 stsp /*
7001 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
7002 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
7003 bc573f3b 2021-07-10 stsp * closed on demand.
7004 bc573f3b 2021-07-10 stsp */
7005 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
7006 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
7007 bc573f3b 2021-07-10 stsp if (err)
7008 bc573f3b 2021-07-10 stsp goto done;
7009 bc573f3b 2021-07-10 stsp s->tree = s->root;
7010 bc573f3b 2021-07-10 stsp
7011 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
7012 ffd1d5e5 2018-06-23 stsp if (err != NULL)
7013 ffd1d5e5 2018-06-23 stsp goto done;
7014 ffd1d5e5 2018-06-23 stsp
7015 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7016 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
7017 ffd1d5e5 2018-06-23 stsp goto done;
7018 ffd1d5e5 2018-06-23 stsp }
7019 ffd1d5e5 2018-06-23 stsp
7020 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7021 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7022 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
7023 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
7024 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
7025 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
7026 9cd7cbd1 2020-12-07 stsp goto done;
7027 9cd7cbd1 2020-12-07 stsp }
7028 9cd7cbd1 2020-12-07 stsp }
7029 fb2756b9 2018-08-04 stsp s->repo = repo;
7030 c0b01bdb 2019-11-08 stsp
7031 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7032 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
7033 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
7034 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7035 c0b01bdb 2019-11-08 stsp if (err)
7036 c0b01bdb 2019-11-08 stsp goto done;
7037 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7038 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
7039 bc573f3b 2021-07-10 stsp if (err)
7040 c0b01bdb 2019-11-08 stsp goto done;
7041 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
7042 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
7043 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7044 bc573f3b 2021-07-10 stsp if (err)
7045 c0b01bdb 2019-11-08 stsp goto done;
7046 e5a0f69f 2018-08-18 stsp
7047 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
7048 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
7049 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7050 bc573f3b 2021-07-10 stsp if (err)
7051 11b20872 2019-11-08 stsp goto done;
7052 11b20872 2019-11-08 stsp
7053 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7054 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
7055 bc573f3b 2021-07-10 stsp if (err)
7056 c0b01bdb 2019-11-08 stsp goto done;
7057 c0b01bdb 2019-11-08 stsp }
7058 c0b01bdb 2019-11-08 stsp
7059 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
7060 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
7061 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
7062 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
7063 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
7064 ad80ab7b 2018-08-04 stsp done:
7065 ad80ab7b 2018-08-04 stsp free(commit_id_str);
7066 bc573f3b 2021-07-10 stsp if (commit)
7067 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
7068 bc573f3b 2021-07-10 stsp if (err)
7069 bc573f3b 2021-07-10 stsp close_tree_view(view);
7070 ad80ab7b 2018-08-04 stsp return err;
7071 ad80ab7b 2018-08-04 stsp }
7072 ad80ab7b 2018-08-04 stsp
7073 e5a0f69f 2018-08-18 stsp static const struct got_error *
7074 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
7075 ad80ab7b 2018-08-04 stsp {
7076 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7077 ad80ab7b 2018-08-04 stsp
7078 bddb1296 2019-11-08 stsp free_colors(&s->colors);
7079 fb2756b9 2018-08-04 stsp free(s->tree_label);
7080 6484ec90 2018-09-29 stsp s->tree_label = NULL;
7081 6484ec90 2018-09-29 stsp free(s->commit_id);
7082 6484ec90 2018-09-29 stsp s->commit_id = NULL;
7083 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
7084 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
7085 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
7086 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
7087 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
7088 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
7089 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
7090 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
7091 ad80ab7b 2018-08-04 stsp free(parent);
7092 ad80ab7b 2018-08-04 stsp
7093 ad80ab7b 2018-08-04 stsp }
7094 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
7095 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
7096 bc573f3b 2021-07-10 stsp if (s->root)
7097 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
7098 7c32bd05 2019-06-22 stsp return NULL;
7099 7c32bd05 2019-06-22 stsp }
7100 7c32bd05 2019-06-22 stsp
7101 7c32bd05 2019-06-22 stsp static const struct got_error *
7102 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
7103 7c32bd05 2019-06-22 stsp {
7104 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7105 7c32bd05 2019-06-22 stsp
7106 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
7107 7c32bd05 2019-06-22 stsp return NULL;
7108 7c32bd05 2019-06-22 stsp }
7109 7c32bd05 2019-06-22 stsp
7110 7c32bd05 2019-06-22 stsp static int
7111 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7112 7c32bd05 2019-06-22 stsp {
7113 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
7114 7c32bd05 2019-06-22 stsp
7115 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7116 56e0773d 2019-11-28 stsp 0) == 0;
7117 7c32bd05 2019-06-22 stsp }
7118 7c32bd05 2019-06-22 stsp
7119 7c32bd05 2019-06-22 stsp static const struct got_error *
7120 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
7121 7c32bd05 2019-06-22 stsp {
7122 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7123 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
7124 7c32bd05 2019-06-22 stsp
7125 7c32bd05 2019-06-22 stsp if (!view->searching) {
7126 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7127 7c32bd05 2019-06-22 stsp return NULL;
7128 7c32bd05 2019-06-22 stsp }
7129 7c32bd05 2019-06-22 stsp
7130 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7131 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7132 7c32bd05 2019-06-22 stsp if (s->selected_entry)
7133 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
7134 56e0773d 2019-11-28 stsp s->selected_entry);
7135 7c32bd05 2019-06-22 stsp else
7136 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7137 56e0773d 2019-11-28 stsp } else {
7138 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
7139 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7140 56e0773d 2019-11-28 stsp else
7141 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
7142 56e0773d 2019-11-28 stsp s->selected_entry);
7143 7c32bd05 2019-06-22 stsp }
7144 7c32bd05 2019-06-22 stsp } else {
7145 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7146 487cd7d2 2021-12-17 stsp te = s->selected_entry;
7147 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7148 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7149 56e0773d 2019-11-28 stsp else
7150 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7151 7c32bd05 2019-06-22 stsp }
7152 7c32bd05 2019-06-22 stsp
7153 7c32bd05 2019-06-22 stsp while (1) {
7154 56e0773d 2019-11-28 stsp if (te == NULL) {
7155 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
7156 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7157 ac66afb8 2019-06-24 stsp return NULL;
7158 ac66afb8 2019-06-24 stsp }
7159 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7160 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7161 56e0773d 2019-11-28 stsp else
7162 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7163 7c32bd05 2019-06-22 stsp }
7164 7c32bd05 2019-06-22 stsp
7165 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
7166 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7167 56e0773d 2019-11-28 stsp s->matched_entry = te;
7168 7c32bd05 2019-06-22 stsp break;
7169 7c32bd05 2019-06-22 stsp }
7170 7c32bd05 2019-06-22 stsp
7171 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7172 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
7173 56e0773d 2019-11-28 stsp else
7174 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
7175 7c32bd05 2019-06-22 stsp }
7176 e5a0f69f 2018-08-18 stsp
7177 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7178 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
7179 7c32bd05 2019-06-22 stsp s->selected = 0;
7180 7c32bd05 2019-06-22 stsp }
7181 7c32bd05 2019-06-22 stsp
7182 e5a0f69f 2018-08-18 stsp return NULL;
7183 ad80ab7b 2018-08-04 stsp }
7184 ad80ab7b 2018-08-04 stsp
7185 ad80ab7b 2018-08-04 stsp static const struct got_error *
7186 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
7187 ad80ab7b 2018-08-04 stsp {
7188 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
7189 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7190 e5a0f69f 2018-08-18 stsp char *parent_path;
7191 ad80ab7b 2018-08-04 stsp
7192 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
7193 e5a0f69f 2018-08-18 stsp if (err)
7194 e5a0f69f 2018-08-18 stsp return err;
7195 ffd1d5e5 2018-06-23 stsp
7196 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
7197 e5a0f69f 2018-08-18 stsp free(parent_path);
7198 669b5ffa 2018-10-07 stsp
7199 9b058f45 2022-06-30 mark view_border(view);
7200 e5a0f69f 2018-08-18 stsp return err;
7201 94b80cfa 2022-08-01 mark }
7202 94b80cfa 2022-08-01 mark
7203 94b80cfa 2022-08-01 mark static const struct got_error *
7204 94b80cfa 2022-08-01 mark tree_goto_line(struct tog_view *view, int nlines)
7205 94b80cfa 2022-08-01 mark {
7206 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
7207 94b80cfa 2022-08-01 mark struct tog_tree_view_state *s = &view->state.tree;
7208 94b80cfa 2022-08-01 mark struct got_tree_entry **fte, **lte, **ste;
7209 94b80cfa 2022-08-01 mark int g, last, first = 1, i = 1;
7210 94b80cfa 2022-08-01 mark int root = s->tree == s->root;
7211 94b80cfa 2022-08-01 mark int off = root ? 1 : 2;
7212 94b80cfa 2022-08-01 mark
7213 94b80cfa 2022-08-01 mark g = view->gline;
7214 94b80cfa 2022-08-01 mark view->gline = 0;
7215 94b80cfa 2022-08-01 mark
7216 94b80cfa 2022-08-01 mark if (g == 0)
7217 94b80cfa 2022-08-01 mark g = 1;
7218 94b80cfa 2022-08-01 mark else if (g > got_object_tree_get_nentries(s->tree))
7219 94b80cfa 2022-08-01 mark g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7220 94b80cfa 2022-08-01 mark
7221 94b80cfa 2022-08-01 mark fte = &s->first_displayed_entry;
7222 94b80cfa 2022-08-01 mark lte = &s->last_displayed_entry;
7223 94b80cfa 2022-08-01 mark ste = &s->selected_entry;
7224 94b80cfa 2022-08-01 mark
7225 94b80cfa 2022-08-01 mark if (*fte != NULL) {
7226 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
7227 94b80cfa 2022-08-01 mark first += off; /* account for ".." */
7228 94b80cfa 2022-08-01 mark }
7229 94b80cfa 2022-08-01 mark last = got_tree_entry_get_index(*lte);
7230 94b80cfa 2022-08-01 mark last += off;
7231 94b80cfa 2022-08-01 mark
7232 94b80cfa 2022-08-01 mark if (g >= first && g <= last && g - first < nlines) {
7233 94b80cfa 2022-08-01 mark s->selected = g - first;
7234 94b80cfa 2022-08-01 mark return NULL; /* gline is on the current page */
7235 94b80cfa 2022-08-01 mark }
7236 94b80cfa 2022-08-01 mark
7237 94b80cfa 2022-08-01 mark if (*ste != NULL) {
7238 94b80cfa 2022-08-01 mark i = got_tree_entry_get_index(*ste);
7239 94b80cfa 2022-08-01 mark i += off;
7240 94b80cfa 2022-08-01 mark }
7241 94b80cfa 2022-08-01 mark
7242 94b80cfa 2022-08-01 mark if (i < g) {
7243 94b80cfa 2022-08-01 mark err = tree_scroll_down(view, g - i);
7244 94b80cfa 2022-08-01 mark if (err)
7245 94b80cfa 2022-08-01 mark return err;
7246 94b80cfa 2022-08-01 mark if (got_tree_entry_get_index(*lte) >=
7247 94b80cfa 2022-08-01 mark got_object_tree_get_nentries(s->tree) - 1 &&
7248 94b80cfa 2022-08-01 mark first + s->selected < g &&
7249 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1) {
7250 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
7251 94b80cfa 2022-08-01 mark first += off;
7252 94b80cfa 2022-08-01 mark s->selected = g - first;
7253 94b80cfa 2022-08-01 mark }
7254 94b80cfa 2022-08-01 mark } else if (i > g)
7255 94b80cfa 2022-08-01 mark tree_scroll_up(s, i - g);
7256 94b80cfa 2022-08-01 mark
7257 94b80cfa 2022-08-01 mark if (g < nlines &&
7258 94b80cfa 2022-08-01 mark (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7259 94b80cfa 2022-08-01 mark s->selected = g - 1;
7260 94b80cfa 2022-08-01 mark
7261 94b80cfa 2022-08-01 mark return NULL;
7262 e5a0f69f 2018-08-18 stsp }
7263 ce52c690 2018-06-23 stsp
7264 e5a0f69f 2018-08-18 stsp static const struct got_error *
7265 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7266 e5a0f69f 2018-08-18 stsp {
7267 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
7268 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
7269 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
7270 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 3;
7271 ffd1d5e5 2018-06-23 stsp
7272 94b80cfa 2022-08-01 mark if (view->gline)
7273 94b80cfa 2022-08-01 mark return tree_goto_line(view, nscroll);
7274 94b80cfa 2022-08-01 mark
7275 e5a0f69f 2018-08-18 stsp switch (ch) {
7276 1e37a5c2 2019-05-12 jcs case 'i':
7277 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
7278 640cd7ff 2022-06-22 mark view->count = 0;
7279 1e37a5c2 2019-05-12 jcs break;
7280 5e98fb33 2022-07-22 mark case 'L':
7281 640cd7ff 2022-06-22 mark view->count = 0;
7282 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
7283 ffd1d5e5 2018-06-23 stsp break;
7284 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
7285 152c1c93 2020-11-29 stsp break;
7286 5e98fb33 2022-07-22 mark case 'R':
7287 640cd7ff 2022-06-22 mark view->count = 0;
7288 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
7289 e4526bf5 2021-09-03 naddy break;
7290 e4526bf5 2021-09-03 naddy case 'g':
7291 e4526bf5 2021-09-03 naddy case KEY_HOME:
7292 e4526bf5 2021-09-03 naddy s->selected = 0;
7293 640cd7ff 2022-06-22 mark view->count = 0;
7294 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
7295 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
7296 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
7297 e4526bf5 2021-09-03 naddy else
7298 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7299 1e37a5c2 2019-05-12 jcs break;
7300 e4526bf5 2021-09-03 naddy case 'G':
7301 9b058f45 2022-06-30 mark case KEY_END: {
7302 9b058f45 2022-06-30 mark int eos = view->nlines - 3;
7303 9b058f45 2022-06-30 mark
7304 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
7305 9b058f45 2022-06-30 mark --eos; /* border */
7306 e4526bf5 2021-09-03 naddy s->selected = 0;
7307 640cd7ff 2022-06-22 mark view->count = 0;
7308 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
7309 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
7310 e4526bf5 2021-09-03 naddy if (te == NULL) {
7311 ad055527 2022-07-16 mark if (s->tree != s->root) {
7312 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7313 e4526bf5 2021-09-03 naddy n++;
7314 e4526bf5 2021-09-03 naddy }
7315 e4526bf5 2021-09-03 naddy break;
7316 e4526bf5 2021-09-03 naddy }
7317 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7318 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7319 e4526bf5 2021-09-03 naddy }
7320 e4526bf5 2021-09-03 naddy if (n > 0)
7321 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7322 e4526bf5 2021-09-03 naddy break;
7323 9b058f45 2022-06-30 mark }
7324 1e37a5c2 2019-05-12 jcs case 'k':
7325 1e37a5c2 2019-05-12 jcs case KEY_UP:
7326 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7327 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7328 1e37a5c2 2019-05-12 jcs s->selected--;
7329 fa86c4bf 2020-11-29 stsp break;
7330 1e37a5c2 2019-05-12 jcs }
7331 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7332 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7333 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7334 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7335 640cd7ff 2022-06-22 mark view->count = 0;
7336 1e37a5c2 2019-05-12 jcs break;
7337 83cc4199 2022-06-13 stsp case CTRL('u'):
7338 33c3719a 2022-06-15 stsp case 'u':
7339 83cc4199 2022-06-13 stsp nscroll /= 2;
7340 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7341 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7342 ea025d1d 2020-02-22 naddy case CTRL('b'):
7343 61417565 2022-06-20 mark case 'b':
7344 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7345 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7346 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7347 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7348 fa86c4bf 2020-11-29 stsp } else {
7349 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7350 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7351 fa86c4bf 2020-11-29 stsp }
7352 83cc4199 2022-06-13 stsp tree_scroll_up(s, MAX(0, nscroll));
7353 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7354 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7355 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7356 640cd7ff 2022-06-22 mark view->count = 0;
7357 1e37a5c2 2019-05-12 jcs break;
7358 1e37a5c2 2019-05-12 jcs case 'j':
7359 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7360 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7361 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7362 1e37a5c2 2019-05-12 jcs s->selected++;
7363 1e37a5c2 2019-05-12 jcs break;
7364 1e37a5c2 2019-05-12 jcs }
7365 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7366 640cd7ff 2022-06-22 mark == NULL) {
7367 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7368 640cd7ff 2022-06-22 mark view->count = 0;
7369 1e37a5c2 2019-05-12 jcs break;
7370 640cd7ff 2022-06-22 mark }
7371 9b058f45 2022-06-30 mark tree_scroll_down(view, 1);
7372 1e37a5c2 2019-05-12 jcs break;
7373 83cc4199 2022-06-13 stsp case CTRL('d'):
7374 33c3719a 2022-06-15 stsp case 'd':
7375 83cc4199 2022-06-13 stsp nscroll /= 2;
7376 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7377 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7378 ea025d1d 2020-02-22 naddy case CTRL('f'):
7379 61417565 2022-06-20 mark case 'f':
7380 48bb96f0 2022-06-20 naddy case ' ':
7381 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7382 1e37a5c2 2019-05-12 jcs == NULL) {
7383 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7384 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7385 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7386 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7387 640cd7ff 2022-06-22 mark else
7388 640cd7ff 2022-06-22 mark view->count = 0;
7389 1e37a5c2 2019-05-12 jcs break;
7390 1e37a5c2 2019-05-12 jcs }
7391 9b058f45 2022-06-30 mark tree_scroll_down(view, nscroll);
7392 1e37a5c2 2019-05-12 jcs break;
7393 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7394 1e37a5c2 2019-05-12 jcs case '\r':
7395 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7396 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7397 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7398 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7399 640cd7ff 2022-06-22 mark if (s->tree == s->root) {
7400 640cd7ff 2022-06-22 mark view->count = 0;
7401 1e37a5c2 2019-05-12 jcs break;
7402 640cd7ff 2022-06-22 mark }
7403 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7404 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7405 1e37a5c2 2019-05-12 jcs entry);
7406 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7407 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7408 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7409 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7410 1e37a5c2 2019-05-12 jcs s->selected_entry =
7411 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7412 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7413 9b058f45 2022-06-30 mark if (s->selected > view->nlines - 3) {
7414 9b058f45 2022-06-30 mark err = offset_selection_down(view);
7415 9b058f45 2022-06-30 mark if (err)
7416 9b058f45 2022-06-30 mark break;
7417 9b058f45 2022-06-30 mark }
7418 1e37a5c2 2019-05-12 jcs free(parent);
7419 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7420 56e0773d 2019-11-28 stsp s->selected_entry))) {
7421 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7422 640cd7ff 2022-06-22 mark view->count = 0;
7423 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7424 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7425 1e37a5c2 2019-05-12 jcs if (err)
7426 1e37a5c2 2019-05-12 jcs break;
7427 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7428 941e9f74 2019-05-21 stsp if (err) {
7429 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7430 1e37a5c2 2019-05-12 jcs break;
7431 1e37a5c2 2019-05-12 jcs }
7432 136e2bd4 2022-07-23 mark } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7433 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7434 1e37a5c2 2019-05-12 jcs break;
7435 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7436 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7437 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7438 640cd7ff 2022-06-22 mark view->count = 0;
7439 1e37a5c2 2019-05-12 jcs break;
7440 1e37a5c2 2019-05-12 jcs default:
7441 640cd7ff 2022-06-22 mark view->count = 0;
7442 1e37a5c2 2019-05-12 jcs break;
7443 ffd1d5e5 2018-06-23 stsp }
7444 e5a0f69f 2018-08-18 stsp
7445 ffd1d5e5 2018-06-23 stsp return err;
7446 9f7d7167 2018-04-29 stsp }
7447 9f7d7167 2018-04-29 stsp
7448 ffd1d5e5 2018-06-23 stsp __dead static void
7449 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7450 ffd1d5e5 2018-06-23 stsp {
7451 ffd1d5e5 2018-06-23 stsp endwin();
7452 87411fa9 2022-06-16 stsp fprintf(stderr,
7453 87411fa9 2022-06-16 stsp "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7454 ffd1d5e5 2018-06-23 stsp getprogname());
7455 ffd1d5e5 2018-06-23 stsp exit(1);
7456 ffd1d5e5 2018-06-23 stsp }
7457 ffd1d5e5 2018-06-23 stsp
7458 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7459 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7460 ffd1d5e5 2018-06-23 stsp {
7461 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7462 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7463 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7464 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7465 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7466 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
7467 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7468 4e97c21c 2020-12-06 stsp char *label = NULL;
7469 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7470 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7471 ffd1d5e5 2018-06-23 stsp int ch;
7472 5221c383 2018-08-01 stsp struct tog_view *view;
7473 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
7474 70ac5f84 2019-03-28 stsp
7475 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7476 ffd1d5e5 2018-06-23 stsp switch (ch) {
7477 ffd1d5e5 2018-06-23 stsp case 'c':
7478 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7479 74283ab8 2020-02-07 stsp break;
7480 74283ab8 2020-02-07 stsp case 'r':
7481 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7482 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7483 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7484 74283ab8 2020-02-07 stsp optarg);
7485 ffd1d5e5 2018-06-23 stsp break;
7486 ffd1d5e5 2018-06-23 stsp default:
7487 e99e2d15 2020-11-24 naddy usage_tree();
7488 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7489 ffd1d5e5 2018-06-23 stsp }
7490 ffd1d5e5 2018-06-23 stsp }
7491 ffd1d5e5 2018-06-23 stsp
7492 ffd1d5e5 2018-06-23 stsp argc -= optind;
7493 ffd1d5e5 2018-06-23 stsp argv += optind;
7494 ffd1d5e5 2018-06-23 stsp
7495 55cccc34 2020-02-20 stsp if (argc > 1)
7496 e99e2d15 2020-11-24 naddy usage_tree();
7497 0ae84acc 2022-06-15 tracey
7498 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
7499 0ae84acc 2022-06-15 tracey if (error != NULL)
7500 0ae84acc 2022-06-15 tracey goto done;
7501 74283ab8 2020-02-07 stsp
7502 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7503 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7504 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7505 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7506 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7507 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7508 c156c7a4 2020-12-18 stsp goto done;
7509 55cccc34 2020-02-20 stsp if (worktree)
7510 52185f70 2019-02-05 stsp repo_path =
7511 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7512 55cccc34 2020-02-20 stsp else
7513 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7514 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7515 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7516 c156c7a4 2020-12-18 stsp goto done;
7517 c156c7a4 2020-12-18 stsp }
7518 55cccc34 2020-02-20 stsp }
7519 a915003a 2019-02-05 stsp
7520 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7521 c02c541e 2019-03-29 stsp if (error != NULL)
7522 52185f70 2019-02-05 stsp goto done;
7523 d188b9a6 2019-01-04 stsp
7524 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7525 55cccc34 2020-02-20 stsp repo, worktree);
7526 55cccc34 2020-02-20 stsp if (error)
7527 55cccc34 2020-02-20 stsp goto done;
7528 55cccc34 2020-02-20 stsp
7529 55cccc34 2020-02-20 stsp init_curses();
7530 55cccc34 2020-02-20 stsp
7531 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7532 c02c541e 2019-03-29 stsp if (error)
7533 52185f70 2019-02-05 stsp goto done;
7534 ffd1d5e5 2018-06-23 stsp
7535 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
7536 51a10b52 2020-12-26 stsp if (error)
7537 51a10b52 2020-12-26 stsp goto done;
7538 51a10b52 2020-12-26 stsp
7539 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7540 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7541 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7542 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7543 4e97c21c 2020-12-06 stsp if (error)
7544 4e97c21c 2020-12-06 stsp goto done;
7545 4e97c21c 2020-12-06 stsp head_ref_name = label;
7546 4e97c21c 2020-12-06 stsp } else {
7547 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7548 4e97c21c 2020-12-06 stsp if (error == NULL)
7549 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7550 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7551 4e97c21c 2020-12-06 stsp goto done;
7552 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7553 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7554 4e97c21c 2020-12-06 stsp if (error)
7555 4e97c21c 2020-12-06 stsp goto done;
7556 4e97c21c 2020-12-06 stsp }
7557 ffd1d5e5 2018-06-23 stsp
7558 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
7559 a44927cc 2022-04-07 stsp if (error)
7560 a44927cc 2022-04-07 stsp goto done;
7561 a44927cc 2022-04-07 stsp
7562 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7563 5221c383 2018-08-01 stsp if (view == NULL) {
7564 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7565 5221c383 2018-08-01 stsp goto done;
7566 5221c383 2018-08-01 stsp }
7567 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7568 ad80ab7b 2018-08-04 stsp if (error)
7569 ad80ab7b 2018-08-04 stsp goto done;
7570 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7571 a44927cc 2022-04-07 stsp error = tree_view_walk_path(&view->state.tree, commit,
7572 d91faf3b 2020-12-01 naddy in_repo_path);
7573 55cccc34 2020-02-20 stsp if (error)
7574 55cccc34 2020-02-20 stsp goto done;
7575 55cccc34 2020-02-20 stsp }
7576 55cccc34 2020-02-20 stsp
7577 55cccc34 2020-02-20 stsp if (worktree) {
7578 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7579 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7580 55cccc34 2020-02-20 stsp worktree = NULL;
7581 55cccc34 2020-02-20 stsp }
7582 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7583 ffd1d5e5 2018-06-23 stsp done:
7584 52185f70 2019-02-05 stsp free(repo_path);
7585 e4a0e26d 2020-02-20 stsp free(cwd);
7586 ffd1d5e5 2018-06-23 stsp free(commit_id);
7587 4e97c21c 2020-12-06 stsp free(label);
7588 486cd271 2020-12-06 stsp if (ref)
7589 486cd271 2020-12-06 stsp got_ref_close(ref);
7590 1d0f4054 2021-06-17 stsp if (repo) {
7591 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7592 1d0f4054 2021-06-17 stsp if (error == NULL)
7593 1d0f4054 2021-06-17 stsp error = close_err;
7594 1d0f4054 2021-06-17 stsp }
7595 0ae84acc 2022-06-15 tracey if (pack_fds) {
7596 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
7597 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
7598 0ae84acc 2022-06-15 tracey if (error == NULL)
7599 0ae84acc 2022-06-15 tracey error = pack_err;
7600 0ae84acc 2022-06-15 tracey }
7601 51a10b52 2020-12-26 stsp tog_free_refs();
7602 ffd1d5e5 2018-06-23 stsp return error;
7603 6458efa5 2020-11-24 stsp }
7604 6458efa5 2020-11-24 stsp
7605 6458efa5 2020-11-24 stsp static const struct got_error *
7606 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7607 6458efa5 2020-11-24 stsp {
7608 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7609 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7610 6458efa5 2020-11-24 stsp
7611 6458efa5 2020-11-24 stsp s->nrefs = 0;
7612 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7613 cc488aa7 2022-01-23 stsp if (strncmp(got_ref_get_name(sre->ref),
7614 cc488aa7 2022-01-23 stsp "refs/got/", 9) == 0 &&
7615 cc488aa7 2022-01-23 stsp strncmp(got_ref_get_name(sre->ref),
7616 cc488aa7 2022-01-23 stsp "refs/got/backup/", 16) != 0)
7617 6458efa5 2020-11-24 stsp continue;
7618 6458efa5 2020-11-24 stsp
7619 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7620 6458efa5 2020-11-24 stsp if (re == NULL)
7621 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7622 6458efa5 2020-11-24 stsp
7623 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7624 8924d611 2020-12-26 stsp if (re->ref == NULL)
7625 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7626 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7627 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7628 6458efa5 2020-11-24 stsp }
7629 6458efa5 2020-11-24 stsp
7630 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7631 6458efa5 2020-11-24 stsp return NULL;
7632 6458efa5 2020-11-24 stsp }
7633 6458efa5 2020-11-24 stsp
7634 336075a4 2022-06-25 op static void
7635 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7636 6458efa5 2020-11-24 stsp {
7637 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7638 6458efa5 2020-11-24 stsp
7639 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7640 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7641 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7642 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7643 6458efa5 2020-11-24 stsp free(re);
7644 6458efa5 2020-11-24 stsp }
7645 6458efa5 2020-11-24 stsp }
7646 6458efa5 2020-11-24 stsp
7647 6458efa5 2020-11-24 stsp static const struct got_error *
7648 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7649 6458efa5 2020-11-24 stsp {
7650 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7651 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7652 6458efa5 2020-11-24 stsp
7653 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7654 6458efa5 2020-11-24 stsp s->repo = repo;
7655 6458efa5 2020-11-24 stsp
7656 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7657 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7658 6458efa5 2020-11-24 stsp
7659 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7660 6458efa5 2020-11-24 stsp if (err)
7661 6458efa5 2020-11-24 stsp return err;
7662 34ba6917 2020-11-30 stsp
7663 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7664 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7665 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7666 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7667 6458efa5 2020-11-24 stsp if (err)
7668 6458efa5 2020-11-24 stsp goto done;
7669 6458efa5 2020-11-24 stsp
7670 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7671 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7672 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7673 6458efa5 2020-11-24 stsp if (err)
7674 6458efa5 2020-11-24 stsp goto done;
7675 6458efa5 2020-11-24 stsp
7676 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7677 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7678 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7679 cc488aa7 2022-01-23 stsp if (err)
7680 cc488aa7 2022-01-23 stsp goto done;
7681 cc488aa7 2022-01-23 stsp
7682 cc488aa7 2022-01-23 stsp err = add_color(&s->colors, "^refs/got/backup/",
7683 cc488aa7 2022-01-23 stsp TOG_COLOR_REFS_BACKUP,
7684 cc488aa7 2022-01-23 stsp get_color_value("TOG_COLOR_REFS_BACKUP"));
7685 6458efa5 2020-11-24 stsp if (err)
7686 6458efa5 2020-11-24 stsp goto done;
7687 6458efa5 2020-11-24 stsp }
7688 6458efa5 2020-11-24 stsp
7689 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7690 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7691 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7692 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7693 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7694 6458efa5 2020-11-24 stsp done:
7695 6458efa5 2020-11-24 stsp if (err)
7696 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7697 6458efa5 2020-11-24 stsp return err;
7698 6458efa5 2020-11-24 stsp }
7699 6458efa5 2020-11-24 stsp
7700 6458efa5 2020-11-24 stsp static const struct got_error *
7701 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7702 6458efa5 2020-11-24 stsp {
7703 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7704 6458efa5 2020-11-24 stsp
7705 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7706 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7707 6458efa5 2020-11-24 stsp
7708 6458efa5 2020-11-24 stsp return NULL;
7709 9f7d7167 2018-04-29 stsp }
7710 ce5b7c56 2019-07-09 stsp
7711 6458efa5 2020-11-24 stsp static const struct got_error *
7712 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7713 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7714 6458efa5 2020-11-24 stsp {
7715 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7716 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7717 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7718 6458efa5 2020-11-24 stsp int obj_type;
7719 6458efa5 2020-11-24 stsp
7720 c42c9805 2020-11-24 stsp *commit_id = NULL;
7721 6458efa5 2020-11-24 stsp
7722 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7723 6458efa5 2020-11-24 stsp if (err)
7724 6458efa5 2020-11-24 stsp return err;
7725 6458efa5 2020-11-24 stsp
7726 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7727 6458efa5 2020-11-24 stsp if (err)
7728 6458efa5 2020-11-24 stsp goto done;
7729 6458efa5 2020-11-24 stsp
7730 6458efa5 2020-11-24 stsp switch (obj_type) {
7731 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7732 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7733 6458efa5 2020-11-24 stsp break;
7734 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7735 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7736 6458efa5 2020-11-24 stsp if (err)
7737 6458efa5 2020-11-24 stsp goto done;
7738 c42c9805 2020-11-24 stsp free(obj_id);
7739 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7740 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7741 c42c9805 2020-11-24 stsp if (err)
7742 6458efa5 2020-11-24 stsp goto done;
7743 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7744 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7745 c42c9805 2020-11-24 stsp goto done;
7746 c42c9805 2020-11-24 stsp }
7747 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7748 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7749 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7750 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7751 c42c9805 2020-11-24 stsp goto done;
7752 c42c9805 2020-11-24 stsp }
7753 6458efa5 2020-11-24 stsp break;
7754 6458efa5 2020-11-24 stsp default:
7755 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7756 c42c9805 2020-11-24 stsp break;
7757 6458efa5 2020-11-24 stsp }
7758 6458efa5 2020-11-24 stsp
7759 c42c9805 2020-11-24 stsp done:
7760 c42c9805 2020-11-24 stsp if (tag)
7761 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7762 c42c9805 2020-11-24 stsp if (err) {
7763 c42c9805 2020-11-24 stsp free(*commit_id);
7764 c42c9805 2020-11-24 stsp *commit_id = NULL;
7765 c42c9805 2020-11-24 stsp }
7766 c42c9805 2020-11-24 stsp return err;
7767 c42c9805 2020-11-24 stsp }
7768 c42c9805 2020-11-24 stsp
7769 c42c9805 2020-11-24 stsp static const struct got_error *
7770 9b058f45 2022-06-30 mark log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7771 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7772 c42c9805 2020-11-24 stsp {
7773 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7774 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7775 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7776 c42c9805 2020-11-24 stsp
7777 c42c9805 2020-11-24 stsp *new_view = NULL;
7778 c42c9805 2020-11-24 stsp
7779 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7780 c42c9805 2020-11-24 stsp if (err) {
7781 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7782 c42c9805 2020-11-24 stsp return err;
7783 c42c9805 2020-11-24 stsp else
7784 c42c9805 2020-11-24 stsp return NULL;
7785 c42c9805 2020-11-24 stsp }
7786 c42c9805 2020-11-24 stsp
7787 9b058f45 2022-06-30 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7788 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7789 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7790 6458efa5 2020-11-24 stsp goto done;
7791 6458efa5 2020-11-24 stsp }
7792 6458efa5 2020-11-24 stsp
7793 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7794 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7795 6458efa5 2020-11-24 stsp done:
7796 6458efa5 2020-11-24 stsp if (err)
7797 6458efa5 2020-11-24 stsp view_close(log_view);
7798 6458efa5 2020-11-24 stsp else
7799 6458efa5 2020-11-24 stsp *new_view = log_view;
7800 c42c9805 2020-11-24 stsp free(commit_id);
7801 6458efa5 2020-11-24 stsp return err;
7802 6458efa5 2020-11-24 stsp }
7803 6458efa5 2020-11-24 stsp
7804 ce5b7c56 2019-07-09 stsp static void
7805 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7806 6458efa5 2020-11-24 stsp {
7807 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7808 34ba6917 2020-11-30 stsp int i = 0;
7809 6458efa5 2020-11-24 stsp
7810 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7811 6458efa5 2020-11-24 stsp return;
7812 6458efa5 2020-11-24 stsp
7813 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7814 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7815 34ba6917 2020-11-30 stsp if (re == NULL)
7816 34ba6917 2020-11-30 stsp break;
7817 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7818 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7819 6458efa5 2020-11-24 stsp }
7820 6458efa5 2020-11-24 stsp }
7821 6458efa5 2020-11-24 stsp
7822 9b058f45 2022-06-30 mark static const struct got_error *
7823 9b058f45 2022-06-30 mark ref_scroll_down(struct tog_view *view, int maxscroll)
7824 6458efa5 2020-11-24 stsp {
7825 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
7826 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7827 6458efa5 2020-11-24 stsp int n = 0;
7828 6458efa5 2020-11-24 stsp
7829 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7830 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7831 6458efa5 2020-11-24 stsp else
7832 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7833 6458efa5 2020-11-24 stsp
7834 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7835 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
7836 94b80cfa 2022-08-01 mark if (last) {
7837 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
7838 9b058f45 2022-06-30 mark last = TAILQ_NEXT(last, entry);
7839 94b80cfa 2022-08-01 mark }
7840 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7841 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7842 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7843 6458efa5 2020-11-24 stsp }
7844 6458efa5 2020-11-24 stsp }
7845 9b058f45 2022-06-30 mark
7846 9b058f45 2022-06-30 mark return NULL;
7847 6458efa5 2020-11-24 stsp }
7848 6458efa5 2020-11-24 stsp
7849 6458efa5 2020-11-24 stsp static const struct got_error *
7850 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7851 6458efa5 2020-11-24 stsp {
7852 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7853 6458efa5 2020-11-24 stsp
7854 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7855 6458efa5 2020-11-24 stsp return NULL;
7856 6458efa5 2020-11-24 stsp }
7857 6458efa5 2020-11-24 stsp
7858 6458efa5 2020-11-24 stsp static int
7859 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7860 6458efa5 2020-11-24 stsp {
7861 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7862 6458efa5 2020-11-24 stsp
7863 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7864 6458efa5 2020-11-24 stsp 0) == 0;
7865 6458efa5 2020-11-24 stsp }
7866 6458efa5 2020-11-24 stsp
7867 6458efa5 2020-11-24 stsp static const struct got_error *
7868 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7869 6458efa5 2020-11-24 stsp {
7870 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7871 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7872 6458efa5 2020-11-24 stsp
7873 6458efa5 2020-11-24 stsp if (!view->searching) {
7874 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7875 6458efa5 2020-11-24 stsp return NULL;
7876 6458efa5 2020-11-24 stsp }
7877 6458efa5 2020-11-24 stsp
7878 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7879 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7880 6458efa5 2020-11-24 stsp if (s->selected_entry)
7881 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7882 6458efa5 2020-11-24 stsp else
7883 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7884 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7885 6458efa5 2020-11-24 stsp } else {
7886 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7887 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7888 6458efa5 2020-11-24 stsp else
7889 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7890 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7891 6458efa5 2020-11-24 stsp }
7892 6458efa5 2020-11-24 stsp } else {
7893 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7894 487cd7d2 2021-12-17 stsp re = s->selected_entry;
7895 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7896 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7897 6458efa5 2020-11-24 stsp else
7898 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7899 6458efa5 2020-11-24 stsp }
7900 6458efa5 2020-11-24 stsp
7901 6458efa5 2020-11-24 stsp while (1) {
7902 6458efa5 2020-11-24 stsp if (re == NULL) {
7903 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7904 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7905 6458efa5 2020-11-24 stsp return NULL;
7906 6458efa5 2020-11-24 stsp }
7907 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7908 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7909 6458efa5 2020-11-24 stsp else
7910 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7911 6458efa5 2020-11-24 stsp }
7912 6458efa5 2020-11-24 stsp
7913 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7914 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7915 6458efa5 2020-11-24 stsp s->matched_entry = re;
7916 6458efa5 2020-11-24 stsp break;
7917 6458efa5 2020-11-24 stsp }
7918 6458efa5 2020-11-24 stsp
7919 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7920 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7921 6458efa5 2020-11-24 stsp else
7922 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7923 6458efa5 2020-11-24 stsp }
7924 6458efa5 2020-11-24 stsp
7925 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7926 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7927 6458efa5 2020-11-24 stsp s->selected = 0;
7928 6458efa5 2020-11-24 stsp }
7929 6458efa5 2020-11-24 stsp
7930 6458efa5 2020-11-24 stsp return NULL;
7931 6458efa5 2020-11-24 stsp }
7932 6458efa5 2020-11-24 stsp
7933 6458efa5 2020-11-24 stsp static const struct got_error *
7934 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7935 6458efa5 2020-11-24 stsp {
7936 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7937 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7938 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7939 6458efa5 2020-11-24 stsp char *line = NULL;
7940 6458efa5 2020-11-24 stsp wchar_t *wline;
7941 6458efa5 2020-11-24 stsp struct tog_color *tc;
7942 6458efa5 2020-11-24 stsp int width, n;
7943 6458efa5 2020-11-24 stsp int limit = view->nlines;
7944 6458efa5 2020-11-24 stsp
7945 6458efa5 2020-11-24 stsp werase(view->window);
7946 6458efa5 2020-11-24 stsp
7947 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7948 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
7949 9b058f45 2022-06-30 mark --limit; /* border */
7950 6458efa5 2020-11-24 stsp
7951 6458efa5 2020-11-24 stsp if (limit == 0)
7952 6458efa5 2020-11-24 stsp return NULL;
7953 6458efa5 2020-11-24 stsp
7954 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7955 6458efa5 2020-11-24 stsp
7956 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7957 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7958 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7959 6458efa5 2020-11-24 stsp
7960 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7961 6458efa5 2020-11-24 stsp if (err) {
7962 6458efa5 2020-11-24 stsp free(line);
7963 6458efa5 2020-11-24 stsp return err;
7964 6458efa5 2020-11-24 stsp }
7965 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7966 6458efa5 2020-11-24 stsp wstandout(view->window);
7967 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7968 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
7969 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
7970 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7971 6458efa5 2020-11-24 stsp wstandend(view->window);
7972 6458efa5 2020-11-24 stsp free(wline);
7973 6458efa5 2020-11-24 stsp wline = NULL;
7974 6458efa5 2020-11-24 stsp free(line);
7975 6458efa5 2020-11-24 stsp line = NULL;
7976 6458efa5 2020-11-24 stsp if (--limit <= 0)
7977 6458efa5 2020-11-24 stsp return NULL;
7978 6458efa5 2020-11-24 stsp
7979 6458efa5 2020-11-24 stsp n = 0;
7980 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7981 6458efa5 2020-11-24 stsp char *line = NULL;
7982 b4996bee 2022-06-16 stsp char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7983 6458efa5 2020-11-24 stsp
7984 b4996bee 2022-06-16 stsp if (s->show_date) {
7985 b4996bee 2022-06-16 stsp struct got_commit_object *ci;
7986 b4996bee 2022-06-16 stsp struct got_tag_object *tag;
7987 b4996bee 2022-06-16 stsp struct got_object_id *id;
7988 b4996bee 2022-06-16 stsp struct tm tm;
7989 b4996bee 2022-06-16 stsp time_t t;
7990 b4996bee 2022-06-16 stsp
7991 b4996bee 2022-06-16 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7992 b4996bee 2022-06-16 stsp if (err)
7993 b4996bee 2022-06-16 stsp return err;
7994 b4996bee 2022-06-16 stsp err = got_object_open_as_tag(&tag, s->repo, id);
7995 b4996bee 2022-06-16 stsp if (err) {
7996 b4996bee 2022-06-16 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
7997 b4996bee 2022-06-16 stsp free(id);
7998 b4996bee 2022-06-16 stsp return err;
7999 b4996bee 2022-06-16 stsp }
8000 b4996bee 2022-06-16 stsp err = got_object_open_as_commit(&ci, s->repo,
8001 b4996bee 2022-06-16 stsp id);
8002 b4996bee 2022-06-16 stsp if (err) {
8003 b4996bee 2022-06-16 stsp free(id);
8004 b4996bee 2022-06-16 stsp return err;
8005 b4996bee 2022-06-16 stsp }
8006 b4996bee 2022-06-16 stsp t = got_object_commit_get_committer_time(ci);
8007 b4996bee 2022-06-16 stsp got_object_commit_close(ci);
8008 b4996bee 2022-06-16 stsp } else {
8009 b4996bee 2022-06-16 stsp t = got_object_tag_get_tagger_time(tag);
8010 b4996bee 2022-06-16 stsp got_object_tag_close(tag);
8011 b4996bee 2022-06-16 stsp }
8012 b4996bee 2022-06-16 stsp free(id);
8013 b4996bee 2022-06-16 stsp if (gmtime_r(&t, &tm) == NULL)
8014 b4996bee 2022-06-16 stsp return got_error_from_errno("gmtime_r");
8015 b4996bee 2022-06-16 stsp if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8016 b4996bee 2022-06-16 stsp return got_error(GOT_ERR_NO_SPACE);
8017 b4996bee 2022-06-16 stsp }
8018 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
8019 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s -> %s", s->show_date ?
8020 b4996bee 2022-06-16 stsp ymd : "", got_ref_get_name(re->ref),
8021 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
8022 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
8023 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
8024 6458efa5 2020-11-24 stsp struct got_object_id *id;
8025 6458efa5 2020-11-24 stsp char *id_str;
8026 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
8027 6458efa5 2020-11-24 stsp if (err)
8028 6458efa5 2020-11-24 stsp return err;
8029 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
8030 6458efa5 2020-11-24 stsp if (err) {
8031 6458efa5 2020-11-24 stsp free(id);
8032 6458efa5 2020-11-24 stsp return err;
8033 6458efa5 2020-11-24 stsp }
8034 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8035 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
8036 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
8037 6458efa5 2020-11-24 stsp free(id);
8038 6458efa5 2020-11-24 stsp free(id_str);
8039 6458efa5 2020-11-24 stsp return err;
8040 6458efa5 2020-11-24 stsp }
8041 6458efa5 2020-11-24 stsp free(id);
8042 6458efa5 2020-11-24 stsp free(id_str);
8043 b4996bee 2022-06-16 stsp } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8044 b4996bee 2022-06-16 stsp got_ref_get_name(re->ref)) == -1)
8045 b4996bee 2022-06-16 stsp return got_error_from_errno("asprintf");
8046 6458efa5 2020-11-24 stsp
8047 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
8048 ccda2f4d 2022-06-16 stsp 0, 0);
8049 6458efa5 2020-11-24 stsp if (err) {
8050 6458efa5 2020-11-24 stsp free(line);
8051 6458efa5 2020-11-24 stsp return err;
8052 6458efa5 2020-11-24 stsp }
8053 6458efa5 2020-11-24 stsp if (n == s->selected) {
8054 6458efa5 2020-11-24 stsp if (view->focussed)
8055 6458efa5 2020-11-24 stsp wstandout(view->window);
8056 6458efa5 2020-11-24 stsp s->selected_entry = re;
8057 6458efa5 2020-11-24 stsp }
8058 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
8059 6458efa5 2020-11-24 stsp if (tc)
8060 6458efa5 2020-11-24 stsp wattr_on(view->window,
8061 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8062 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
8063 6458efa5 2020-11-24 stsp if (tc)
8064 6458efa5 2020-11-24 stsp wattr_off(view->window,
8065 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8066 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
8067 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
8068 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
8069 6458efa5 2020-11-24 stsp wstandend(view->window);
8070 6458efa5 2020-11-24 stsp free(line);
8071 6458efa5 2020-11-24 stsp free(wline);
8072 6458efa5 2020-11-24 stsp wline = NULL;
8073 6458efa5 2020-11-24 stsp n++;
8074 6458efa5 2020-11-24 stsp s->ndisplayed++;
8075 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
8076 6458efa5 2020-11-24 stsp
8077 6458efa5 2020-11-24 stsp limit--;
8078 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
8079 6458efa5 2020-11-24 stsp }
8080 6458efa5 2020-11-24 stsp
8081 9b058f45 2022-06-30 mark view_border(view);
8082 6458efa5 2020-11-24 stsp return err;
8083 6458efa5 2020-11-24 stsp }
8084 6458efa5 2020-11-24 stsp
8085 6458efa5 2020-11-24 stsp static const struct got_error *
8086 49b24ee5 2022-07-03 mark browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8087 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
8088 c42c9805 2020-11-24 stsp {
8089 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
8090 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
8091 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
8092 c42c9805 2020-11-24 stsp
8093 c42c9805 2020-11-24 stsp *new_view = NULL;
8094 c42c9805 2020-11-24 stsp
8095 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
8096 c42c9805 2020-11-24 stsp if (err) {
8097 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
8098 c42c9805 2020-11-24 stsp return err;
8099 c42c9805 2020-11-24 stsp else
8100 c42c9805 2020-11-24 stsp return NULL;
8101 c42c9805 2020-11-24 stsp }
8102 c42c9805 2020-11-24 stsp
8103 c42c9805 2020-11-24 stsp
8104 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8105 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
8106 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
8107 c42c9805 2020-11-24 stsp goto done;
8108 c42c9805 2020-11-24 stsp }
8109 c42c9805 2020-11-24 stsp
8110 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
8111 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
8112 c42c9805 2020-11-24 stsp if (err)
8113 c42c9805 2020-11-24 stsp goto done;
8114 c42c9805 2020-11-24 stsp
8115 c42c9805 2020-11-24 stsp *new_view = tree_view;
8116 c42c9805 2020-11-24 stsp done:
8117 c42c9805 2020-11-24 stsp free(commit_id);
8118 c42c9805 2020-11-24 stsp return err;
8119 94b80cfa 2022-08-01 mark }
8120 94b80cfa 2022-08-01 mark
8121 94b80cfa 2022-08-01 mark static const struct got_error *
8122 94b80cfa 2022-08-01 mark ref_goto_line(struct tog_view *view, int nlines)
8123 94b80cfa 2022-08-01 mark {
8124 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
8125 94b80cfa 2022-08-01 mark struct tog_ref_view_state *s = &view->state.ref;
8126 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
8127 94b80cfa 2022-08-01 mark
8128 94b80cfa 2022-08-01 mark g = view->gline;
8129 94b80cfa 2022-08-01 mark view->gline = 0;
8130 94b80cfa 2022-08-01 mark
8131 94b80cfa 2022-08-01 mark if (g == 0)
8132 94b80cfa 2022-08-01 mark g = 1;
8133 94b80cfa 2022-08-01 mark else if (g > s->nrefs)
8134 94b80cfa 2022-08-01 mark g = s->nrefs;
8135 94b80cfa 2022-08-01 mark
8136 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
8137 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
8138 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
8139 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
8140 94b80cfa 2022-08-01 mark return NULL;
8141 94b80cfa 2022-08-01 mark }
8142 94b80cfa 2022-08-01 mark
8143 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
8144 94b80cfa 2022-08-01 mark err = ref_scroll_down(view, g - idx - 1);
8145 94b80cfa 2022-08-01 mark if (err)
8146 94b80cfa 2022-08-01 mark return err;
8147 94b80cfa 2022-08-01 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8148 94b80cfa 2022-08-01 mark s->first_displayed_entry->idx + s->selected < g &&
8149 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1)
8150 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
8151 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
8152 94b80cfa 2022-08-01 mark ref_scroll_up(s, idx - g + 1);
8153 94b80cfa 2022-08-01 mark
8154 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
8155 94b80cfa 2022-08-01 mark s->selected = g - 1;
8156 94b80cfa 2022-08-01 mark
8157 94b80cfa 2022-08-01 mark return NULL;
8158 94b80cfa 2022-08-01 mark
8159 c42c9805 2020-11-24 stsp }
8160 94b80cfa 2022-08-01 mark
8161 c42c9805 2020-11-24 stsp static const struct got_error *
8162 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8163 6458efa5 2020-11-24 stsp {
8164 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
8165 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
8166 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
8167 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 1;
8168 6458efa5 2020-11-24 stsp
8169 94b80cfa 2022-08-01 mark if (view->gline)
8170 94b80cfa 2022-08-01 mark return ref_goto_line(view, nscroll);
8171 94b80cfa 2022-08-01 mark
8172 6458efa5 2020-11-24 stsp switch (ch) {
8173 6458efa5 2020-11-24 stsp case 'i':
8174 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
8175 640cd7ff 2022-06-22 mark view->count = 0;
8176 7f66531d 2021-11-16 stsp break;
8177 b4996bee 2022-06-16 stsp case 'm':
8178 b4996bee 2022-06-16 stsp s->show_date = !s->show_date;
8179 640cd7ff 2022-06-22 mark view->count = 0;
8180 b4996bee 2022-06-16 stsp break;
8181 07a065fe 2021-11-20 stsp case 'o':
8182 7f66531d 2021-11-16 stsp s->sort_by_date = !s->sort_by_date;
8183 640cd7ff 2022-06-22 mark view->count = 0;
8184 50617b77 2021-11-20 stsp err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8185 50617b77 2021-11-20 stsp got_ref_cmp_by_commit_timestamp_descending :
8186 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name, s->repo);
8187 50617b77 2021-11-20 stsp if (err)
8188 50617b77 2021-11-20 stsp break;
8189 50617b77 2021-11-20 stsp got_reflist_object_id_map_free(tog_refs_idmap);
8190 50617b77 2021-11-20 stsp err = got_reflist_object_id_map_create(&tog_refs_idmap,
8191 50617b77 2021-11-20 stsp &tog_refs, s->repo);
8192 7f66531d 2021-11-16 stsp if (err)
8193 7f66531d 2021-11-16 stsp break;
8194 7f66531d 2021-11-16 stsp ref_view_free_refs(s);
8195 7f66531d 2021-11-16 stsp err = ref_view_load_refs(s);
8196 6458efa5 2020-11-24 stsp break;
8197 6458efa5 2020-11-24 stsp case KEY_ENTER:
8198 6458efa5 2020-11-24 stsp case '\r':
8199 640cd7ff 2022-06-22 mark view->count = 0;
8200 6458efa5 2020-11-24 stsp if (!s->selected_entry)
8201 9b058f45 2022-06-30 mark break;
8202 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
8203 6458efa5 2020-11-24 stsp break;
8204 5e98fb33 2022-07-22 mark case 'T':
8205 640cd7ff 2022-06-22 mark view->count = 0;
8206 c42c9805 2020-11-24 stsp if (!s->selected_entry)
8207 c42c9805 2020-11-24 stsp break;
8208 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
8209 c42c9805 2020-11-24 stsp break;
8210 e4526bf5 2021-09-03 naddy case 'g':
8211 e4526bf5 2021-09-03 naddy case KEY_HOME:
8212 e4526bf5 2021-09-03 naddy s->selected = 0;
8213 640cd7ff 2022-06-22 mark view->count = 0;
8214 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8215 e4526bf5 2021-09-03 naddy break;
8216 e4526bf5 2021-09-03 naddy case 'G':
8217 9b058f45 2022-06-30 mark case KEY_END: {
8218 9b058f45 2022-06-30 mark int eos = view->nlines - 1;
8219 9b058f45 2022-06-30 mark
8220 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
8221 9b058f45 2022-06-30 mark --eos; /* border */
8222 e4526bf5 2021-09-03 naddy s->selected = 0;
8223 640cd7ff 2022-06-22 mark view->count = 0;
8224 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
8225 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
8226 e4526bf5 2021-09-03 naddy if (re == NULL)
8227 e4526bf5 2021-09-03 naddy break;
8228 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
8229 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
8230 e4526bf5 2021-09-03 naddy }
8231 e4526bf5 2021-09-03 naddy if (n > 0)
8232 e4526bf5 2021-09-03 naddy s->selected = n - 1;
8233 e4526bf5 2021-09-03 naddy break;
8234 9b058f45 2022-06-30 mark }
8235 6458efa5 2020-11-24 stsp case 'k':
8236 6458efa5 2020-11-24 stsp case KEY_UP:
8237 02ffd0d5 2021-10-17 stsp case CTRL('p'):
8238 6458efa5 2020-11-24 stsp if (s->selected > 0) {
8239 6458efa5 2020-11-24 stsp s->selected--;
8240 6458efa5 2020-11-24 stsp break;
8241 34ba6917 2020-11-30 stsp }
8242 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
8243 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
8244 640cd7ff 2022-06-22 mark view->count = 0;
8245 6458efa5 2020-11-24 stsp break;
8246 83cc4199 2022-06-13 stsp case CTRL('u'):
8247 33c3719a 2022-06-15 stsp case 'u':
8248 83cc4199 2022-06-13 stsp nscroll /= 2;
8249 83cc4199 2022-06-13 stsp /* FALL THROUGH */
8250 6458efa5 2020-11-24 stsp case KEY_PPAGE:
8251 6458efa5 2020-11-24 stsp case CTRL('b'):
8252 61417565 2022-06-20 mark case 'b':
8253 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8254 83cc4199 2022-06-13 stsp s->selected -= MIN(nscroll, s->selected);
8255 83cc4199 2022-06-13 stsp ref_scroll_up(s, MAX(0, nscroll));
8256 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
8257 640cd7ff 2022-06-22 mark view->count = 0;
8258 6458efa5 2020-11-24 stsp break;
8259 6458efa5 2020-11-24 stsp case 'j':
8260 6458efa5 2020-11-24 stsp case KEY_DOWN:
8261 02ffd0d5 2021-10-17 stsp case CTRL('n'):
8262 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
8263 6458efa5 2020-11-24 stsp s->selected++;
8264 6458efa5 2020-11-24 stsp break;
8265 6458efa5 2020-11-24 stsp }
8266 640cd7ff 2022-06-22 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8267 6458efa5 2020-11-24 stsp /* can't scroll any further */
8268 640cd7ff 2022-06-22 mark view->count = 0;
8269 6458efa5 2020-11-24 stsp break;
8270 640cd7ff 2022-06-22 mark }
8271 9b058f45 2022-06-30 mark ref_scroll_down(view, 1);
8272 6458efa5 2020-11-24 stsp break;
8273 83cc4199 2022-06-13 stsp case CTRL('d'):
8274 33c3719a 2022-06-15 stsp case 'd':
8275 83cc4199 2022-06-13 stsp nscroll /= 2;
8276 83cc4199 2022-06-13 stsp /* FALL THROUGH */
8277 6458efa5 2020-11-24 stsp case KEY_NPAGE:
8278 6458efa5 2020-11-24 stsp case CTRL('f'):
8279 61417565 2022-06-20 mark case 'f':
8280 48bb96f0 2022-06-20 naddy case ' ':
8281 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8282 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
8283 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
8284 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
8285 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
8286 640cd7ff 2022-06-22 mark if (view->count > 1 && s->selected < s->ndisplayed - 1)
8287 640cd7ff 2022-06-22 mark s->selected += s->ndisplayed - s->selected - 1;
8288 640cd7ff 2022-06-22 mark view->count = 0;
8289 6458efa5 2020-11-24 stsp break;
8290 6458efa5 2020-11-24 stsp }
8291 9b058f45 2022-06-30 mark ref_scroll_down(view, nscroll);
8292 6458efa5 2020-11-24 stsp break;
8293 6458efa5 2020-11-24 stsp case CTRL('l'):
8294 640cd7ff 2022-06-22 mark view->count = 0;
8295 8924d611 2020-12-26 stsp tog_free_refs();
8296 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, s->sort_by_date);
8297 8924d611 2020-12-26 stsp if (err)
8298 8924d611 2020-12-26 stsp break;
8299 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
8300 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
8301 6458efa5 2020-11-24 stsp break;
8302 6458efa5 2020-11-24 stsp case KEY_RESIZE:
8303 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8304 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
8305 6458efa5 2020-11-24 stsp break;
8306 6458efa5 2020-11-24 stsp default:
8307 640cd7ff 2022-06-22 mark view->count = 0;
8308 6458efa5 2020-11-24 stsp break;
8309 6458efa5 2020-11-24 stsp }
8310 6458efa5 2020-11-24 stsp
8311 6458efa5 2020-11-24 stsp return err;
8312 6458efa5 2020-11-24 stsp }
8313 6458efa5 2020-11-24 stsp
8314 6458efa5 2020-11-24 stsp __dead static void
8315 6458efa5 2020-11-24 stsp usage_ref(void)
8316 6458efa5 2020-11-24 stsp {
8317 6458efa5 2020-11-24 stsp endwin();
8318 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8319 6458efa5 2020-11-24 stsp getprogname());
8320 6458efa5 2020-11-24 stsp exit(1);
8321 6458efa5 2020-11-24 stsp }
8322 6458efa5 2020-11-24 stsp
8323 6458efa5 2020-11-24 stsp static const struct got_error *
8324 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8325 6458efa5 2020-11-24 stsp {
8326 6458efa5 2020-11-24 stsp const struct got_error *error;
8327 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8328 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8329 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8330 6458efa5 2020-11-24 stsp int ch;
8331 6458efa5 2020-11-24 stsp struct tog_view *view;
8332 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8333 6458efa5 2020-11-24 stsp
8334 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8335 6458efa5 2020-11-24 stsp switch (ch) {
8336 6458efa5 2020-11-24 stsp case 'r':
8337 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8338 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8339 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8340 6458efa5 2020-11-24 stsp optarg);
8341 6458efa5 2020-11-24 stsp break;
8342 6458efa5 2020-11-24 stsp default:
8343 e99e2d15 2020-11-24 naddy usage_ref();
8344 6458efa5 2020-11-24 stsp /* NOTREACHED */
8345 6458efa5 2020-11-24 stsp }
8346 6458efa5 2020-11-24 stsp }
8347 6458efa5 2020-11-24 stsp
8348 6458efa5 2020-11-24 stsp argc -= optind;
8349 6458efa5 2020-11-24 stsp argv += optind;
8350 6458efa5 2020-11-24 stsp
8351 6458efa5 2020-11-24 stsp if (argc > 1)
8352 e99e2d15 2020-11-24 naddy usage_ref();
8353 0ae84acc 2022-06-15 tracey
8354 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8355 0ae84acc 2022-06-15 tracey if (error != NULL)
8356 0ae84acc 2022-06-15 tracey goto done;
8357 6458efa5 2020-11-24 stsp
8358 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8359 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8360 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8361 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8362 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8363 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8364 c156c7a4 2020-12-18 stsp goto done;
8365 6458efa5 2020-11-24 stsp if (worktree)
8366 6458efa5 2020-11-24 stsp repo_path =
8367 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8368 6458efa5 2020-11-24 stsp else
8369 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8370 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8371 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8372 c156c7a4 2020-12-18 stsp goto done;
8373 c156c7a4 2020-12-18 stsp }
8374 6458efa5 2020-11-24 stsp }
8375 6458efa5 2020-11-24 stsp
8376 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8377 6458efa5 2020-11-24 stsp if (error != NULL)
8378 6458efa5 2020-11-24 stsp goto done;
8379 6458efa5 2020-11-24 stsp
8380 6458efa5 2020-11-24 stsp init_curses();
8381 6458efa5 2020-11-24 stsp
8382 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8383 51a10b52 2020-12-26 stsp if (error)
8384 51a10b52 2020-12-26 stsp goto done;
8385 51a10b52 2020-12-26 stsp
8386 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8387 6458efa5 2020-11-24 stsp if (error)
8388 6458efa5 2020-11-24 stsp goto done;
8389 6458efa5 2020-11-24 stsp
8390 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8391 6458efa5 2020-11-24 stsp if (view == NULL) {
8392 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8393 6458efa5 2020-11-24 stsp goto done;
8394 6458efa5 2020-11-24 stsp }
8395 6458efa5 2020-11-24 stsp
8396 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8397 6458efa5 2020-11-24 stsp if (error)
8398 6458efa5 2020-11-24 stsp goto done;
8399 6458efa5 2020-11-24 stsp
8400 6458efa5 2020-11-24 stsp if (worktree) {
8401 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8402 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8403 6458efa5 2020-11-24 stsp worktree = NULL;
8404 6458efa5 2020-11-24 stsp }
8405 6458efa5 2020-11-24 stsp error = view_loop(view);
8406 6458efa5 2020-11-24 stsp done:
8407 6458efa5 2020-11-24 stsp free(repo_path);
8408 6458efa5 2020-11-24 stsp free(cwd);
8409 1d0f4054 2021-06-17 stsp if (repo) {
8410 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8411 1d0f4054 2021-06-17 stsp if (close_err)
8412 1d0f4054 2021-06-17 stsp error = close_err;
8413 1d0f4054 2021-06-17 stsp }
8414 0ae84acc 2022-06-15 tracey if (pack_fds) {
8415 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8416 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8417 0ae84acc 2022-06-15 tracey if (error == NULL)
8418 0ae84acc 2022-06-15 tracey error = pack_err;
8419 0ae84acc 2022-06-15 tracey }
8420 51a10b52 2020-12-26 stsp tog_free_refs();
8421 6458efa5 2020-11-24 stsp return error;
8422 6458efa5 2020-11-24 stsp }
8423 6458efa5 2020-11-24 stsp
8424 ec2a9698 2022-09-15 mark static const struct got_error*
8425 ec2a9698 2022-09-15 mark win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8426 ec2a9698 2022-09-15 mark const char *str)
8427 ec2a9698 2022-09-15 mark {
8428 ec2a9698 2022-09-15 mark size_t len;
8429 ec2a9698 2022-09-15 mark
8430 ec2a9698 2022-09-15 mark if (win == NULL)
8431 ec2a9698 2022-09-15 mark win = stdscr;
8432 ec2a9698 2022-09-15 mark
8433 ec2a9698 2022-09-15 mark len = strlen(str);
8434 ec2a9698 2022-09-15 mark x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8435 ec2a9698 2022-09-15 mark
8436 ec2a9698 2022-09-15 mark if (focus)
8437 ec2a9698 2022-09-15 mark wstandout(win);
8438 ec2a9698 2022-09-15 mark if (mvwprintw(win, y, x, "%s", str) == ERR)
8439 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
8440 ec2a9698 2022-09-15 mark if (focus)
8441 ec2a9698 2022-09-15 mark wstandend(win);
8442 ec2a9698 2022-09-15 mark
8443 ec2a9698 2022-09-15 mark return NULL;
8444 ec2a9698 2022-09-15 mark }
8445 ec2a9698 2022-09-15 mark
8446 136e2bd4 2022-07-23 mark static const struct got_error *
8447 ec2a9698 2022-09-15 mark add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
8448 ec2a9698 2022-09-15 mark {
8449 ec2a9698 2022-09-15 mark off_t *p;
8450 ec2a9698 2022-09-15 mark
8451 ec2a9698 2022-09-15 mark p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
8452 ec2a9698 2022-09-15 mark if (p == NULL) {
8453 ec2a9698 2022-09-15 mark free(*line_offsets);
8454 ec2a9698 2022-09-15 mark *line_offsets = NULL;
8455 ec2a9698 2022-09-15 mark return got_error_from_errno("reallocarray");
8456 ec2a9698 2022-09-15 mark }
8457 ec2a9698 2022-09-15 mark
8458 ec2a9698 2022-09-15 mark *line_offsets = p;
8459 ec2a9698 2022-09-15 mark (*line_offsets)[*nlines] = off;
8460 ec2a9698 2022-09-15 mark ++(*nlines);
8461 ec2a9698 2022-09-15 mark return NULL;
8462 ec2a9698 2022-09-15 mark }
8463 ec2a9698 2022-09-15 mark
8464 ec2a9698 2022-09-15 mark static const struct got_error *
8465 ec2a9698 2022-09-15 mark max_key_str(int *ret, const struct tog_key_map *km, size_t n)
8466 ec2a9698 2022-09-15 mark {
8467 ec2a9698 2022-09-15 mark *ret = 0;
8468 ec2a9698 2022-09-15 mark
8469 ec2a9698 2022-09-15 mark for (;n > 0; --n, ++km) {
8470 ec2a9698 2022-09-15 mark char *t0, *t, *k;
8471 ec2a9698 2022-09-15 mark size_t len = 1;
8472 ec2a9698 2022-09-15 mark
8473 ec2a9698 2022-09-15 mark if (km->keys == NULL)
8474 ec2a9698 2022-09-15 mark continue;
8475 ec2a9698 2022-09-15 mark
8476 ec2a9698 2022-09-15 mark t = t0 = strdup(km->keys);
8477 ec2a9698 2022-09-15 mark if (t0 == NULL)
8478 ec2a9698 2022-09-15 mark return got_error_from_errno("strdup");
8479 ec2a9698 2022-09-15 mark
8480 ec2a9698 2022-09-15 mark len += strlen(t);
8481 ec2a9698 2022-09-15 mark while ((k = strsep(&t, " ")) != NULL)
8482 ec2a9698 2022-09-15 mark len += strlen(k) > 1 ? 2 : 0;
8483 ec2a9698 2022-09-15 mark free(t0);
8484 ec2a9698 2022-09-15 mark *ret = MAX(*ret, len);
8485 ec2a9698 2022-09-15 mark }
8486 ec2a9698 2022-09-15 mark
8487 ec2a9698 2022-09-15 mark return NULL;
8488 ec2a9698 2022-09-15 mark }
8489 ec2a9698 2022-09-15 mark
8490 ec2a9698 2022-09-15 mark /*
8491 ec2a9698 2022-09-15 mark * Write keymap section headers, keys, and key info in km to f.
8492 ec2a9698 2022-09-15 mark * Save line offset to *off. If terminal has UTF8 encoding enabled,
8493 ec2a9698 2022-09-15 mark * wrap control and symbolic keys in guillemets, else use <>.
8494 ec2a9698 2022-09-15 mark */
8495 ec2a9698 2022-09-15 mark static const struct got_error *
8496 ec2a9698 2022-09-15 mark format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
8497 ec2a9698 2022-09-15 mark {
8498 ec2a9698 2022-09-15 mark int n, len = width;
8499 ec2a9698 2022-09-15 mark
8500 ec2a9698 2022-09-15 mark if (km->keys) {
8501 1681ba87 2022-09-18 mark static const char *u8_glyph[] = {
8502 1681ba87 2022-09-18 mark "\xe2\x80\xb9", /* U+2039 (utf8 <) */
8503 1681ba87 2022-09-18 mark "\xe2\x80\xba" /* U+203A (utf8 >) */
8504 1681ba87 2022-09-18 mark };
8505 ec2a9698 2022-09-15 mark char *t0, *t, *k;
8506 ec2a9698 2022-09-15 mark int cs, s, first = 1;
8507 ec2a9698 2022-09-15 mark
8508 ec2a9698 2022-09-15 mark cs = got_locale_is_utf8();
8509 ec2a9698 2022-09-15 mark
8510 ec2a9698 2022-09-15 mark t = t0 = strdup(km->keys);
8511 ec2a9698 2022-09-15 mark if (t0 == NULL)
8512 ec2a9698 2022-09-15 mark return got_error_from_errno("strdup");
8513 ec2a9698 2022-09-15 mark
8514 ec2a9698 2022-09-15 mark len = strlen(km->keys);
8515 ec2a9698 2022-09-15 mark while ((k = strsep(&t, " ")) != NULL) {
8516 ec2a9698 2022-09-15 mark s = strlen(k) > 1; /* control or symbolic key */
8517 ec2a9698 2022-09-15 mark n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
8518 1681ba87 2022-09-18 mark cs && s ? u8_glyph[0] : s ? "<" : "", k,
8519 1681ba87 2022-09-18 mark cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
8520 ec2a9698 2022-09-15 mark if (n < 0) {
8521 ec2a9698 2022-09-15 mark free(t0);
8522 ec2a9698 2022-09-15 mark return got_error_from_errno("fprintf");
8523 ec2a9698 2022-09-15 mark }
8524 ec2a9698 2022-09-15 mark first = 0;
8525 ec2a9698 2022-09-15 mark len += s ? 2 : 0;
8526 ec2a9698 2022-09-15 mark *off += n;
8527 ec2a9698 2022-09-15 mark }
8528 ec2a9698 2022-09-15 mark free(t0);
8529 ec2a9698 2022-09-15 mark }
8530 ec2a9698 2022-09-15 mark n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
8531 ec2a9698 2022-09-15 mark if (n < 0)
8532 ec2a9698 2022-09-15 mark return got_error_from_errno("fprintf");
8533 ec2a9698 2022-09-15 mark *off += n;
8534 ec2a9698 2022-09-15 mark
8535 ec2a9698 2022-09-15 mark return NULL;
8536 ec2a9698 2022-09-15 mark }
8537 ec2a9698 2022-09-15 mark
8538 ec2a9698 2022-09-15 mark static const struct got_error *
8539 ec2a9698 2022-09-15 mark format_help(struct tog_help_view_state *s)
8540 ec2a9698 2022-09-15 mark {
8541 ec2a9698 2022-09-15 mark const struct got_error *err = NULL;
8542 ec2a9698 2022-09-15 mark off_t off = 0;
8543 ec2a9698 2022-09-15 mark int i, max, n, show = s->all;
8544 ec2a9698 2022-09-15 mark static const struct tog_key_map km[] = {
8545 ec2a9698 2022-09-15 mark #define KEYMAP_(info, type) { NULL, (info), type }
8546 ec2a9698 2022-09-15 mark #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
8547 ec2a9698 2022-09-15 mark GENERATE_HELP
8548 ec2a9698 2022-09-15 mark #undef KEYMAP_
8549 ec2a9698 2022-09-15 mark #undef KEY_
8550 ec2a9698 2022-09-15 mark };
8551 ec2a9698 2022-09-15 mark
8552 ec2a9698 2022-09-15 mark err = add_line_offset(&s->line_offsets, &s->nlines, 0);
8553 ec2a9698 2022-09-15 mark if (err)
8554 ec2a9698 2022-09-15 mark return err;
8555 ec2a9698 2022-09-15 mark
8556 ec2a9698 2022-09-15 mark n = nitems(km);
8557 ec2a9698 2022-09-15 mark err = max_key_str(&max, km, n);
8558 ec2a9698 2022-09-15 mark if (err)
8559 ec2a9698 2022-09-15 mark return err;
8560 ec2a9698 2022-09-15 mark
8561 ec2a9698 2022-09-15 mark for (i = 0; i < n; ++i) {
8562 ec2a9698 2022-09-15 mark if (km[i].keys == NULL) {
8563 ec2a9698 2022-09-15 mark show = s->all;
8564 ec2a9698 2022-09-15 mark if (km[i].type == TOG_KEYMAP_GLOBAL ||
8565 ec2a9698 2022-09-15 mark km[i].type == s->type || s->all)
8566 ec2a9698 2022-09-15 mark show = 1;
8567 ec2a9698 2022-09-15 mark }
8568 ec2a9698 2022-09-15 mark if (show) {
8569 ec2a9698 2022-09-15 mark err = format_help_line(&off, s->f, &km[i], max);
8570 ec2a9698 2022-09-15 mark if (err)
8571 ec2a9698 2022-09-15 mark return err;
8572 ec2a9698 2022-09-15 mark err = add_line_offset(&s->line_offsets, &s->nlines, off);
8573 ec2a9698 2022-09-15 mark if (err)
8574 ec2a9698 2022-09-15 mark return err;
8575 ec2a9698 2022-09-15 mark }
8576 ec2a9698 2022-09-15 mark }
8577 ec2a9698 2022-09-15 mark fputc('\n', s->f);
8578 ec2a9698 2022-09-15 mark ++off;
8579 ec2a9698 2022-09-15 mark err = add_line_offset(&s->line_offsets, &s->nlines, off);
8580 ec2a9698 2022-09-15 mark return err;
8581 ec2a9698 2022-09-15 mark }
8582 ec2a9698 2022-09-15 mark
8583 ec2a9698 2022-09-15 mark static const struct got_error *
8584 ec2a9698 2022-09-15 mark create_help(struct tog_help_view_state *s)
8585 ec2a9698 2022-09-15 mark {
8586 ec2a9698 2022-09-15 mark FILE *f;
8587 ec2a9698 2022-09-15 mark const struct got_error *err;
8588 ec2a9698 2022-09-15 mark
8589 ec2a9698 2022-09-15 mark free(s->line_offsets);
8590 ec2a9698 2022-09-15 mark s->line_offsets = NULL;
8591 ec2a9698 2022-09-15 mark s->nlines = 0;
8592 ec2a9698 2022-09-15 mark
8593 ec2a9698 2022-09-15 mark f = got_opentemp();
8594 ec2a9698 2022-09-15 mark if (f == NULL)
8595 ec2a9698 2022-09-15 mark return got_error_from_errno("got_opentemp");
8596 ec2a9698 2022-09-15 mark s->f = f;
8597 ec2a9698 2022-09-15 mark
8598 ec2a9698 2022-09-15 mark err = format_help(s);
8599 ec2a9698 2022-09-15 mark if (err)
8600 ec2a9698 2022-09-15 mark return err;
8601 ec2a9698 2022-09-15 mark
8602 ec2a9698 2022-09-15 mark if (s->f && fflush(s->f) != 0)
8603 ec2a9698 2022-09-15 mark return got_error_from_errno("fflush");
8604 ec2a9698 2022-09-15 mark
8605 ec2a9698 2022-09-15 mark return NULL;
8606 ec2a9698 2022-09-15 mark }
8607 ec2a9698 2022-09-15 mark
8608 ec2a9698 2022-09-15 mark static const struct got_error *
8609 ec2a9698 2022-09-15 mark search_start_help_view(struct tog_view *view)
8610 ec2a9698 2022-09-15 mark {
8611 ec2a9698 2022-09-15 mark view->state.help.matched_line = 0;
8612 ec2a9698 2022-09-15 mark return NULL;
8613 ec2a9698 2022-09-15 mark }
8614 ec2a9698 2022-09-15 mark
8615 eaf2c13e 2022-09-17 mark static void
8616 eaf2c13e 2022-09-17 mark search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
8617 eaf2c13e 2022-09-17 mark size_t *nlines, int **first, int **last, int **match, int **selected)
8618 eaf2c13e 2022-09-17 mark {
8619 eaf2c13e 2022-09-17 mark struct tog_help_view_state *s = &view->state.help;
8620 eaf2c13e 2022-09-17 mark
8621 eaf2c13e 2022-09-17 mark *f = s->f;
8622 eaf2c13e 2022-09-17 mark *nlines = s->nlines;
8623 eaf2c13e 2022-09-17 mark *line_offsets = s->line_offsets;
8624 eaf2c13e 2022-09-17 mark *match = &s->matched_line;
8625 eaf2c13e 2022-09-17 mark *first = &s->first_displayed_line;
8626 eaf2c13e 2022-09-17 mark *last = &s->last_displayed_line;
8627 eaf2c13e 2022-09-17 mark *selected = &s->selected_line;
8628 eaf2c13e 2022-09-17 mark }
8629 eaf2c13e 2022-09-17 mark
8630 ec2a9698 2022-09-15 mark static const struct got_error *
8631 ec2a9698 2022-09-15 mark show_help_view(struct tog_view *view)
8632 ec2a9698 2022-09-15 mark {
8633 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8634 ec2a9698 2022-09-15 mark const struct got_error *err;
8635 ec2a9698 2022-09-15 mark regmatch_t *regmatch = &view->regmatch;
8636 ec2a9698 2022-09-15 mark wchar_t *wline;
8637 ec2a9698 2022-09-15 mark char *line;
8638 ec2a9698 2022-09-15 mark ssize_t linelen;
8639 ec2a9698 2022-09-15 mark size_t linesz = 0;
8640 ec2a9698 2022-09-15 mark int width, nprinted = 0, rc = 0;
8641 ec2a9698 2022-09-15 mark int eos = view->nlines;
8642 ec2a9698 2022-09-15 mark
8643 ec2a9698 2022-09-15 mark if (view_is_hsplit_top(view))
8644 ec2a9698 2022-09-15 mark --eos; /* account for border */
8645 ec2a9698 2022-09-15 mark
8646 ec2a9698 2022-09-15 mark s->lineno = 0;
8647 ec2a9698 2022-09-15 mark rewind(s->f);
8648 ec2a9698 2022-09-15 mark werase(view->window);
8649 ec2a9698 2022-09-15 mark
8650 ec2a9698 2022-09-15 mark if (view->gline > s->nlines - 1)
8651 ec2a9698 2022-09-15 mark view->gline = s->nlines - 1;
8652 ec2a9698 2022-09-15 mark
8653 ec2a9698 2022-09-15 mark err = win_draw_center(view->window, 0, 0, view->ncols,
8654 16a2d4f0 2022-09-19 stsp view_needs_focus_indication(view),
8655 12c07a25 2022-09-19 stsp "tog help (press q to return to tog)");
8656 ec2a9698 2022-09-15 mark if (err)
8657 ec2a9698 2022-09-15 mark return err;
8658 ec2a9698 2022-09-15 mark if (eos <= 1)
8659 ec2a9698 2022-09-15 mark return NULL;
8660 ec2a9698 2022-09-15 mark waddstr(view->window, "\n\n");
8661 ec2a9698 2022-09-15 mark eos -= 2;
8662 ec2a9698 2022-09-15 mark
8663 ec2a9698 2022-09-15 mark s->eof = 0;
8664 ec2a9698 2022-09-15 mark view->maxx = 0;
8665 ec2a9698 2022-09-15 mark line = NULL;
8666 ec2a9698 2022-09-15 mark while (eos > 0 && nprinted < eos) {
8667 ec2a9698 2022-09-15 mark attr_t attr = 0;
8668 ec2a9698 2022-09-15 mark
8669 ec2a9698 2022-09-15 mark linelen = getline(&line, &linesz, s->f);
8670 ec2a9698 2022-09-15 mark if (linelen == -1) {
8671 ec2a9698 2022-09-15 mark if (!feof(s->f)) {
8672 ec2a9698 2022-09-15 mark free(line);
8673 ec2a9698 2022-09-15 mark return got_ferror(s->f, GOT_ERR_IO);
8674 ec2a9698 2022-09-15 mark }
8675 ec2a9698 2022-09-15 mark s->eof = 1;
8676 ec2a9698 2022-09-15 mark break;
8677 ec2a9698 2022-09-15 mark }
8678 ec2a9698 2022-09-15 mark if (++s->lineno < s->first_displayed_line)
8679 ec2a9698 2022-09-15 mark continue;
8680 ec2a9698 2022-09-15 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
8681 ec2a9698 2022-09-15 mark continue;
8682 ec2a9698 2022-09-15 mark if (s->lineno == view->hiline)
8683 ec2a9698 2022-09-15 mark attr = A_STANDOUT;
8684 ec2a9698 2022-09-15 mark
8685 ec2a9698 2022-09-15 mark err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
8686 ec2a9698 2022-09-15 mark view->x ? 1 : 0);
8687 ec2a9698 2022-09-15 mark if (err) {
8688 ec2a9698 2022-09-15 mark free(line);
8689 ec2a9698 2022-09-15 mark return err;
8690 ec2a9698 2022-09-15 mark }
8691 ec2a9698 2022-09-15 mark view->maxx = MAX(view->maxx, width);
8692 ec2a9698 2022-09-15 mark free(wline);
8693 ec2a9698 2022-09-15 mark wline = NULL;
8694 ec2a9698 2022-09-15 mark
8695 ec2a9698 2022-09-15 mark if (attr)
8696 ec2a9698 2022-09-15 mark wattron(view->window, attr);
8697 ec2a9698 2022-09-15 mark if (s->first_displayed_line + nprinted == s->matched_line &&
8698 ec2a9698 2022-09-15 mark regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
8699 ec2a9698 2022-09-15 mark err = add_matched_line(&width, line, view->ncols - 1, 0,
8700 ec2a9698 2022-09-15 mark view->window, view->x, regmatch);
8701 ec2a9698 2022-09-15 mark if (err) {
8702 ec2a9698 2022-09-15 mark free(line);
8703 ec2a9698 2022-09-15 mark return err;
8704 ec2a9698 2022-09-15 mark }
8705 ec2a9698 2022-09-15 mark } else {
8706 ec2a9698 2022-09-15 mark int skip;
8707 ec2a9698 2022-09-15 mark
8708 ec2a9698 2022-09-15 mark err = format_line(&wline, &width, &skip, line,
8709 ec2a9698 2022-09-15 mark view->x, view->ncols - 1, 0, view->x ? 1 : 0);
8710 ec2a9698 2022-09-15 mark if (err) {
8711 ec2a9698 2022-09-15 mark free(line);
8712 ec2a9698 2022-09-15 mark return err;
8713 ec2a9698 2022-09-15 mark }
8714 ec2a9698 2022-09-15 mark rc = waddwstr(view->window, &wline[skip]);
8715 ec2a9698 2022-09-15 mark free(wline);
8716 ec2a9698 2022-09-15 mark wline = NULL;
8717 ec2a9698 2022-09-15 mark if (rc == ERR)
8718 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_IO, "waddwstr");
8719 ec2a9698 2022-09-15 mark }
8720 ec2a9698 2022-09-15 mark if (s->lineno == view->hiline) {
8721 ec2a9698 2022-09-15 mark while (width++ < view->ncols)
8722 ec2a9698 2022-09-15 mark waddch(view->window, ' ');
8723 ec2a9698 2022-09-15 mark } else {
8724 ec2a9698 2022-09-15 mark if (width <= view->ncols)
8725 ec2a9698 2022-09-15 mark waddch(view->window, '\n');
8726 ec2a9698 2022-09-15 mark }
8727 ec2a9698 2022-09-15 mark if (attr)
8728 ec2a9698 2022-09-15 mark wattroff(view->window, attr);
8729 ec2a9698 2022-09-15 mark if (++nprinted == 1)
8730 ec2a9698 2022-09-15 mark s->first_displayed_line = s->lineno;
8731 ec2a9698 2022-09-15 mark }
8732 ec2a9698 2022-09-15 mark free(line);
8733 ec2a9698 2022-09-15 mark if (nprinted > 0)
8734 ec2a9698 2022-09-15 mark s->last_displayed_line = s->first_displayed_line + nprinted - 1;
8735 ec2a9698 2022-09-15 mark else
8736 ec2a9698 2022-09-15 mark s->last_displayed_line = s->first_displayed_line;
8737 ec2a9698 2022-09-15 mark
8738 ec2a9698 2022-09-15 mark view_border(view);
8739 ec2a9698 2022-09-15 mark
8740 ec2a9698 2022-09-15 mark if (s->eof) {
8741 ec2a9698 2022-09-15 mark rc = waddnstr(view->window,
8742 ec2a9698 2022-09-15 mark "See the tog(1) manual page for full documentation",
8743 ec2a9698 2022-09-15 mark view->ncols - 1);
8744 ec2a9698 2022-09-15 mark if (rc == ERR)
8745 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8746 ec2a9698 2022-09-15 mark } else {
8747 ec2a9698 2022-09-15 mark wmove(view->window, view->nlines - 1, 0);
8748 ec2a9698 2022-09-15 mark wclrtoeol(view->window);
8749 ec2a9698 2022-09-15 mark wstandout(view->window);
8750 ec2a9698 2022-09-15 mark rc = waddnstr(view->window, "scroll down for more...",
8751 ec2a9698 2022-09-15 mark view->ncols - 1);
8752 ec2a9698 2022-09-15 mark if (rc == ERR)
8753 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8754 ec2a9698 2022-09-15 mark if (getcurx(view->window) < view->ncols - 6) {
8755 ec2a9698 2022-09-15 mark rc = wprintw(view->window, "[%.0f%%]",
8756 ec2a9698 2022-09-15 mark 100.00 * s->last_displayed_line / s->nlines);
8757 ec2a9698 2022-09-15 mark if (rc == ERR)
8758 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_IO, "wprintw");
8759 ec2a9698 2022-09-15 mark }
8760 ec2a9698 2022-09-15 mark wstandend(view->window);
8761 ec2a9698 2022-09-15 mark }
8762 ec2a9698 2022-09-15 mark
8763 ec2a9698 2022-09-15 mark return NULL;
8764 ec2a9698 2022-09-15 mark }
8765 ec2a9698 2022-09-15 mark
8766 ec2a9698 2022-09-15 mark static const struct got_error *
8767 ec2a9698 2022-09-15 mark input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
8768 ec2a9698 2022-09-15 mark {
8769 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8770 ec2a9698 2022-09-15 mark const struct got_error *err = NULL;
8771 ec2a9698 2022-09-15 mark char *line = NULL;
8772 ec2a9698 2022-09-15 mark ssize_t linelen;
8773 ec2a9698 2022-09-15 mark size_t linesz = 0;
8774 ec2a9698 2022-09-15 mark int eos, nscroll;
8775 ec2a9698 2022-09-15 mark
8776 ec2a9698 2022-09-15 mark eos = nscroll = view->nlines;
8777 ec2a9698 2022-09-15 mark if (view_is_hsplit_top(view))
8778 ec2a9698 2022-09-15 mark --eos; /* border */
8779 ec2a9698 2022-09-15 mark
8780 ec2a9698 2022-09-15 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
8781 ec2a9698 2022-09-15 mark
8782 ec2a9698 2022-09-15 mark switch (ch) {
8783 ec2a9698 2022-09-15 mark case '0':
8784 ec2a9698 2022-09-15 mark view->x = 0;
8785 ec2a9698 2022-09-15 mark break;
8786 ec2a9698 2022-09-15 mark case '$':
8787 ec2a9698 2022-09-15 mark view->x = MAX(view->maxx - view->ncols / 3, 0);
8788 ec2a9698 2022-09-15 mark view->count = 0;
8789 ec2a9698 2022-09-15 mark break;
8790 ec2a9698 2022-09-15 mark case KEY_RIGHT:
8791 ec2a9698 2022-09-15 mark case 'l':
8792 ec2a9698 2022-09-15 mark if (view->x + view->ncols / 3 < view->maxx)
8793 ec2a9698 2022-09-15 mark view->x += 2;
8794 ec2a9698 2022-09-15 mark else
8795 ec2a9698 2022-09-15 mark view->count = 0;
8796 ec2a9698 2022-09-15 mark break;
8797 ec2a9698 2022-09-15 mark case KEY_LEFT:
8798 ec2a9698 2022-09-15 mark case 'h':
8799 ec2a9698 2022-09-15 mark view->x -= MIN(view->x, 2);
8800 ec2a9698 2022-09-15 mark if (view->x <= 0)
8801 ec2a9698 2022-09-15 mark view->count = 0;
8802 ec2a9698 2022-09-15 mark break;
8803 ec2a9698 2022-09-15 mark case 'g':
8804 ec2a9698 2022-09-15 mark case KEY_HOME:
8805 ec2a9698 2022-09-15 mark s->first_displayed_line = 1;
8806 ec2a9698 2022-09-15 mark view->count = 0;
8807 ec2a9698 2022-09-15 mark break;
8808 ec2a9698 2022-09-15 mark case 'G':
8809 ec2a9698 2022-09-15 mark case KEY_END:
8810 ec2a9698 2022-09-15 mark view->count = 0;
8811 ec2a9698 2022-09-15 mark if (s->eof)
8812 ec2a9698 2022-09-15 mark break;
8813 ec2a9698 2022-09-15 mark s->first_displayed_line = (s->nlines - eos) + 3;
8814 ec2a9698 2022-09-15 mark s->eof = 1;
8815 ec2a9698 2022-09-15 mark break;
8816 ec2a9698 2022-09-15 mark case 'k':
8817 ec2a9698 2022-09-15 mark case KEY_UP:
8818 ec2a9698 2022-09-15 mark if (s->first_displayed_line > 1)
8819 ec2a9698 2022-09-15 mark --s->first_displayed_line;
8820 ec2a9698 2022-09-15 mark else
8821 ec2a9698 2022-09-15 mark view->count = 0;
8822 ec2a9698 2022-09-15 mark break;
8823 ec2a9698 2022-09-15 mark case CTRL('u'):
8824 ec2a9698 2022-09-15 mark case 'u':
8825 ec2a9698 2022-09-15 mark nscroll /= 2;
8826 ec2a9698 2022-09-15 mark /* FALL THROUGH */
8827 ec2a9698 2022-09-15 mark case KEY_PPAGE:
8828 ec2a9698 2022-09-15 mark case CTRL('b'):
8829 ec2a9698 2022-09-15 mark case 'b':
8830 ec2a9698 2022-09-15 mark if (s->first_displayed_line == 1) {
8831 ec2a9698 2022-09-15 mark view->count = 0;
8832 ec2a9698 2022-09-15 mark break;
8833 ec2a9698 2022-09-15 mark }
8834 ec2a9698 2022-09-15 mark while (--nscroll > 0 && s->first_displayed_line > 1)
8835 ec2a9698 2022-09-15 mark s->first_displayed_line--;
8836 ec2a9698 2022-09-15 mark break;
8837 ec2a9698 2022-09-15 mark case 'j':
8838 ec2a9698 2022-09-15 mark case KEY_DOWN:
8839 ec2a9698 2022-09-15 mark case CTRL('n'):
8840 ec2a9698 2022-09-15 mark if (!s->eof)
8841 ec2a9698 2022-09-15 mark ++s->first_displayed_line;
8842 ec2a9698 2022-09-15 mark else
8843 ec2a9698 2022-09-15 mark view->count = 0;
8844 ec2a9698 2022-09-15 mark break;
8845 ec2a9698 2022-09-15 mark case CTRL('d'):
8846 ec2a9698 2022-09-15 mark case 'd':
8847 ec2a9698 2022-09-15 mark nscroll /= 2;
8848 ec2a9698 2022-09-15 mark /* FALL THROUGH */
8849 ec2a9698 2022-09-15 mark case KEY_NPAGE:
8850 ec2a9698 2022-09-15 mark case CTRL('f'):
8851 ec2a9698 2022-09-15 mark case 'f':
8852 ec2a9698 2022-09-15 mark case ' ':
8853 ec2a9698 2022-09-15 mark if (s->eof) {
8854 ec2a9698 2022-09-15 mark view->count = 0;
8855 ec2a9698 2022-09-15 mark break;
8856 ec2a9698 2022-09-15 mark }
8857 ec2a9698 2022-09-15 mark while (!s->eof && --nscroll > 0) {
8858 ec2a9698 2022-09-15 mark linelen = getline(&line, &linesz, s->f);
8859 ec2a9698 2022-09-15 mark s->first_displayed_line++;
8860 ec2a9698 2022-09-15 mark if (linelen == -1) {
8861 ec2a9698 2022-09-15 mark if (feof(s->f))
8862 ec2a9698 2022-09-15 mark s->eof = 1;
8863 ec2a9698 2022-09-15 mark else
8864 ec2a9698 2022-09-15 mark err = got_ferror(s->f, GOT_ERR_IO);
8865 ec2a9698 2022-09-15 mark break;
8866 ec2a9698 2022-09-15 mark }
8867 ec2a9698 2022-09-15 mark }
8868 ec2a9698 2022-09-15 mark free(line);
8869 ec2a9698 2022-09-15 mark break;
8870 ec2a9698 2022-09-15 mark default:
8871 ec2a9698 2022-09-15 mark view->count = 0;
8872 ec2a9698 2022-09-15 mark break;
8873 ec2a9698 2022-09-15 mark }
8874 ec2a9698 2022-09-15 mark
8875 ec2a9698 2022-09-15 mark return err;
8876 ec2a9698 2022-09-15 mark }
8877 ec2a9698 2022-09-15 mark
8878 ec2a9698 2022-09-15 mark static const struct got_error *
8879 ec2a9698 2022-09-15 mark close_help_view(struct tog_view *view)
8880 ec2a9698 2022-09-15 mark {
8881 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8882 ec2a9698 2022-09-15 mark
8883 ec2a9698 2022-09-15 mark free(s->line_offsets);
8884 ec2a9698 2022-09-15 mark s->line_offsets = NULL;
8885 ec2a9698 2022-09-15 mark if (fclose(s->f) == EOF)
8886 ec2a9698 2022-09-15 mark return got_error_from_errno("fclose");
8887 ec2a9698 2022-09-15 mark
8888 ec2a9698 2022-09-15 mark return NULL;
8889 ec2a9698 2022-09-15 mark }
8890 ec2a9698 2022-09-15 mark
8891 ec2a9698 2022-09-15 mark static const struct got_error *
8892 ec2a9698 2022-09-15 mark reset_help_view(struct tog_view *view)
8893 ec2a9698 2022-09-15 mark {
8894 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8895 ec2a9698 2022-09-15 mark
8896 ec2a9698 2022-09-15 mark
8897 ec2a9698 2022-09-15 mark if (s->f && fclose(s->f) == EOF)
8898 ec2a9698 2022-09-15 mark return got_error_from_errno("fclose");
8899 ec2a9698 2022-09-15 mark
8900 ec2a9698 2022-09-15 mark wclear(view->window);
8901 ec2a9698 2022-09-15 mark view->count = 0;
8902 ec2a9698 2022-09-15 mark view->x = 0;
8903 ec2a9698 2022-09-15 mark s->all = !s->all;
8904 ec2a9698 2022-09-15 mark s->first_displayed_line = 1;
8905 ec2a9698 2022-09-15 mark s->last_displayed_line = view->nlines;
8906 ec2a9698 2022-09-15 mark s->matched_line = 0;
8907 ec2a9698 2022-09-15 mark
8908 ec2a9698 2022-09-15 mark return create_help(s);
8909 ec2a9698 2022-09-15 mark }
8910 ec2a9698 2022-09-15 mark
8911 ec2a9698 2022-09-15 mark static const struct got_error *
8912 ec2a9698 2022-09-15 mark open_help_view(struct tog_view *view, struct tog_view *parent)
8913 ec2a9698 2022-09-15 mark {
8914 ec2a9698 2022-09-15 mark const struct got_error *err = NULL;
8915 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8916 ec2a9698 2022-09-15 mark
8917 ec2a9698 2022-09-15 mark s->type = (enum tog_keymap_type)parent->type;
8918 ec2a9698 2022-09-15 mark s->first_displayed_line = 1;
8919 ec2a9698 2022-09-15 mark s->last_displayed_line = view->nlines;
8920 ec2a9698 2022-09-15 mark s->selected_line = 1;
8921 ec2a9698 2022-09-15 mark
8922 ec2a9698 2022-09-15 mark view->show = show_help_view;
8923 ec2a9698 2022-09-15 mark view->input = input_help_view;
8924 ec2a9698 2022-09-15 mark view->reset = reset_help_view;
8925 ec2a9698 2022-09-15 mark view->close = close_help_view;
8926 ec2a9698 2022-09-15 mark view->search_start = search_start_help_view;
8927 eaf2c13e 2022-09-17 mark view->search_setup = search_setup_help_view;
8928 ec2a9698 2022-09-15 mark view->search_next = search_next_view_match;
8929 ec2a9698 2022-09-15 mark
8930 ec2a9698 2022-09-15 mark err = create_help(s);
8931 ec2a9698 2022-09-15 mark return err;
8932 ec2a9698 2022-09-15 mark }
8933 ec2a9698 2022-09-15 mark
8934 ec2a9698 2022-09-15 mark static const struct got_error *
8935 136e2bd4 2022-07-23 mark view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8936 136e2bd4 2022-07-23 mark enum tog_view_type request, int y, int x)
8937 136e2bd4 2022-07-23 mark {
8938 136e2bd4 2022-07-23 mark const struct got_error *err = NULL;
8939 136e2bd4 2022-07-23 mark
8940 136e2bd4 2022-07-23 mark *new_view = NULL;
8941 136e2bd4 2022-07-23 mark
8942 136e2bd4 2022-07-23 mark switch (request) {
8943 136e2bd4 2022-07-23 mark case TOG_VIEW_DIFF:
8944 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG) {
8945 136e2bd4 2022-07-23 mark struct tog_log_view_state *s = &view->state.log;
8946 136e2bd4 2022-07-23 mark
8947 136e2bd4 2022-07-23 mark err = open_diff_view_for_commit(new_view, y, x,
8948 136e2bd4 2022-07-23 mark s->selected_entry->commit, s->selected_entry->id,
8949 136e2bd4 2022-07-23 mark view, s->repo);
8950 136e2bd4 2022-07-23 mark } else
8951 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8952 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8953 136e2bd4 2022-07-23 mark break;
8954 136e2bd4 2022-07-23 mark case TOG_VIEW_BLAME:
8955 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_TREE) {
8956 136e2bd4 2022-07-23 mark struct tog_tree_view_state *s = &view->state.tree;
8957 136e2bd4 2022-07-23 mark
8958 136e2bd4 2022-07-23 mark err = blame_tree_entry(new_view, y, x,
8959 136e2bd4 2022-07-23 mark s->selected_entry, &s->parents, s->commit_id,
8960 136e2bd4 2022-07-23 mark s->repo);
8961 136e2bd4 2022-07-23 mark } else
8962 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8963 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8964 136e2bd4 2022-07-23 mark break;
8965 136e2bd4 2022-07-23 mark case TOG_VIEW_LOG:
8966 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_BLAME)
8967 136e2bd4 2022-07-23 mark err = log_annotated_line(new_view, y, x,
8968 136e2bd4 2022-07-23 mark view->state.blame.repo, view->state.blame.id_to_log);
8969 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8970 136e2bd4 2022-07-23 mark err = log_selected_tree_entry(new_view, y, x,
8971 136e2bd4 2022-07-23 mark &view->state.tree);
8972 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8973 136e2bd4 2022-07-23 mark err = log_ref_entry(new_view, y, x,
8974 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8975 136e2bd4 2022-07-23 mark view->state.ref.repo);
8976 136e2bd4 2022-07-23 mark else
8977 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8978 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8979 136e2bd4 2022-07-23 mark break;
8980 136e2bd4 2022-07-23 mark case TOG_VIEW_TREE:
8981 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8982 136e2bd4 2022-07-23 mark err = browse_commit_tree(new_view, y, x,
8983 136e2bd4 2022-07-23 mark view->state.log.selected_entry,
8984 136e2bd4 2022-07-23 mark view->state.log.in_repo_path,
8985 136e2bd4 2022-07-23 mark view->state.log.head_ref_name,
8986 136e2bd4 2022-07-23 mark view->state.log.repo);
8987 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8988 136e2bd4 2022-07-23 mark err = browse_ref_tree(new_view, y, x,
8989 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8990 136e2bd4 2022-07-23 mark view->state.ref.repo);
8991 136e2bd4 2022-07-23 mark else
8992 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8993 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8994 136e2bd4 2022-07-23 mark break;
8995 136e2bd4 2022-07-23 mark case TOG_VIEW_REF:
8996 136e2bd4 2022-07-23 mark *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
8997 136e2bd4 2022-07-23 mark if (*new_view == NULL)
8998 136e2bd4 2022-07-23 mark return got_error_from_errno("view_open");
8999 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
9000 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.log.repo);
9001 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
9002 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.tree.repo);
9003 136e2bd4 2022-07-23 mark else
9004 136e2bd4 2022-07-23 mark err = got_error_msg(GOT_ERR_NOT_IMPL,
9005 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
9006 136e2bd4 2022-07-23 mark if (err)
9007 136e2bd4 2022-07-23 mark view_close(*new_view);
9008 136e2bd4 2022-07-23 mark break;
9009 ec2a9698 2022-09-15 mark case TOG_VIEW_HELP:
9010 94274a8f 2022-09-19 mark *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9011 ec2a9698 2022-09-15 mark if (*new_view == NULL)
9012 ec2a9698 2022-09-15 mark return got_error_from_errno("view_open");
9013 ec2a9698 2022-09-15 mark err = open_help_view(*new_view, view);
9014 ec2a9698 2022-09-15 mark if (err)
9015 ec2a9698 2022-09-15 mark view_close(*new_view);
9016 ec2a9698 2022-09-15 mark break;
9017 136e2bd4 2022-07-23 mark default:
9018 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9019 136e2bd4 2022-07-23 mark }
9020 136e2bd4 2022-07-23 mark
9021 136e2bd4 2022-07-23 mark return err;
9022 136e2bd4 2022-07-23 mark }
9023 136e2bd4 2022-07-23 mark
9024 9b058f45 2022-06-30 mark /*
9025 9b058f45 2022-06-30 mark * If view was scrolled down to move the selected line into view when opening a
9026 9b058f45 2022-06-30 mark * horizontal split, scroll back up when closing the split/toggling fullscreen.
9027 9b058f45 2022-06-30 mark */
9028 6458efa5 2020-11-24 stsp static void
9029 9b058f45 2022-06-30 mark offset_selection_up(struct tog_view *view)
9030 9b058f45 2022-06-30 mark {
9031 9b058f45 2022-06-30 mark switch (view->type) {
9032 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
9033 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
9034 9b058f45 2022-06-30 mark if (s->first_displayed_line == 1) {
9035 9b058f45 2022-06-30 mark s->selected_line = MAX(s->selected_line - view->offset,
9036 9b058f45 2022-06-30 mark 1);
9037 9b058f45 2022-06-30 mark break;
9038 9b058f45 2022-06-30 mark }
9039 9b058f45 2022-06-30 mark if (s->first_displayed_line > view->offset)
9040 9b058f45 2022-06-30 mark s->first_displayed_line -= view->offset;
9041 9b058f45 2022-06-30 mark else
9042 9b058f45 2022-06-30 mark s->first_displayed_line = 1;
9043 9b058f45 2022-06-30 mark s->selected_line += view->offset;
9044 9b058f45 2022-06-30 mark break;
9045 9b058f45 2022-06-30 mark }
9046 9b058f45 2022-06-30 mark case TOG_VIEW_LOG:
9047 9b058f45 2022-06-30 mark log_scroll_up(&view->state.log, view->offset);
9048 9b058f45 2022-06-30 mark view->state.log.selected += view->offset;
9049 9b058f45 2022-06-30 mark break;
9050 9b058f45 2022-06-30 mark case TOG_VIEW_REF:
9051 9b058f45 2022-06-30 mark ref_scroll_up(&view->state.ref, view->offset);
9052 9b058f45 2022-06-30 mark view->state.ref.selected += view->offset;
9053 9b058f45 2022-06-30 mark break;
9054 9b058f45 2022-06-30 mark case TOG_VIEW_TREE:
9055 9b058f45 2022-06-30 mark tree_scroll_up(&view->state.tree, view->offset);
9056 9b058f45 2022-06-30 mark view->state.tree.selected += view->offset;
9057 9b058f45 2022-06-30 mark break;
9058 9b058f45 2022-06-30 mark default:
9059 9b058f45 2022-06-30 mark break;
9060 9b058f45 2022-06-30 mark }
9061 9b058f45 2022-06-30 mark
9062 9b058f45 2022-06-30 mark view->offset = 0;
9063 9b058f45 2022-06-30 mark }
9064 9b058f45 2022-06-30 mark
9065 9b058f45 2022-06-30 mark /*
9066 9b058f45 2022-06-30 mark * If the selected line is in the section of screen covered by the bottom split,
9067 9b058f45 2022-06-30 mark * scroll down offset lines to move it into view and index its new position.
9068 9b058f45 2022-06-30 mark */
9069 9b058f45 2022-06-30 mark static const struct got_error *
9070 9b058f45 2022-06-30 mark offset_selection_down(struct tog_view *view)
9071 9b058f45 2022-06-30 mark {
9072 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
9073 9b058f45 2022-06-30 mark const struct got_error *(*scrolld)(struct tog_view *, int);
9074 9b058f45 2022-06-30 mark int *selected = NULL;
9075 9b058f45 2022-06-30 mark int header, offset;
9076 9b058f45 2022-06-30 mark
9077 9b058f45 2022-06-30 mark switch (view->type) {
9078 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
9079 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
9080 9b058f45 2022-06-30 mark header = 3;
9081 9b058f45 2022-06-30 mark scrolld = NULL;
9082 9b058f45 2022-06-30 mark if (s->selected_line > view->nlines - header) {
9083 9b058f45 2022-06-30 mark offset = abs(view->nlines - s->selected_line - header);
9084 9b058f45 2022-06-30 mark s->first_displayed_line += offset;
9085 9b058f45 2022-06-30 mark s->selected_line -= offset;
9086 9b058f45 2022-06-30 mark view->offset = offset;
9087 9b058f45 2022-06-30 mark }
9088 9b058f45 2022-06-30 mark break;
9089 9b058f45 2022-06-30 mark }
9090 9b058f45 2022-06-30 mark case TOG_VIEW_LOG: {
9091 9b058f45 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
9092 9b058f45 2022-06-30 mark scrolld = &log_scroll_down;
9093 d2366e29 2022-07-07 mark header = view_is_parent_view(view) ? 3 : 2;
9094 9b058f45 2022-06-30 mark selected = &s->selected;
9095 9b058f45 2022-06-30 mark break;
9096 9b058f45 2022-06-30 mark }
9097 9b058f45 2022-06-30 mark case TOG_VIEW_REF: {
9098 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
9099 9b058f45 2022-06-30 mark scrolld = &ref_scroll_down;
9100 9b058f45 2022-06-30 mark header = 3;
9101 9b058f45 2022-06-30 mark selected = &s->selected;
9102 9b058f45 2022-06-30 mark break;
9103 9b058f45 2022-06-30 mark }
9104 9b058f45 2022-06-30 mark case TOG_VIEW_TREE: {
9105 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
9106 9b058f45 2022-06-30 mark scrolld = &tree_scroll_down;
9107 9b058f45 2022-06-30 mark header = 5;
9108 9b058f45 2022-06-30 mark selected = &s->selected;
9109 9b058f45 2022-06-30 mark break;
9110 9b058f45 2022-06-30 mark }
9111 9b058f45 2022-06-30 mark default:
9112 9b058f45 2022-06-30 mark selected = NULL;
9113 9b058f45 2022-06-30 mark scrolld = NULL;
9114 9b058f45 2022-06-30 mark header = 0;
9115 9b058f45 2022-06-30 mark break;
9116 9b058f45 2022-06-30 mark }
9117 9b058f45 2022-06-30 mark
9118 9b058f45 2022-06-30 mark if (selected && *selected > view->nlines - header) {
9119 9b058f45 2022-06-30 mark offset = abs(view->nlines - *selected - header);
9120 9b058f45 2022-06-30 mark view->offset = offset;
9121 9b058f45 2022-06-30 mark if (scrolld && offset) {
9122 9b058f45 2022-06-30 mark err = scrolld(view, offset);
9123 9b058f45 2022-06-30 mark *selected -= offset;
9124 9b058f45 2022-06-30 mark }
9125 9b058f45 2022-06-30 mark }
9126 9b058f45 2022-06-30 mark
9127 9b058f45 2022-06-30 mark return err;
9128 9b058f45 2022-06-30 mark }
9129 9b058f45 2022-06-30 mark
9130 9b058f45 2022-06-30 mark static void
9131 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
9132 ce5b7c56 2019-07-09 stsp {
9133 6059809a 2020-12-17 stsp size_t i;
9134 9f7d7167 2018-04-29 stsp
9135 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
9136 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
9137 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = &tog_commands[i];
9138 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
9139 ce5b7c56 2019-07-09 stsp }
9140 6879ba42 2020-10-01 naddy fputc('\n', fp);
9141 ce5b7c56 2019-07-09 stsp }
9142 ce5b7c56 2019-07-09 stsp
9143 4ed7e80c 2018-05-20 stsp __dead static void
9144 6879ba42 2020-10-01 naddy usage(int hflag, int status)
9145 9f7d7167 2018-04-29 stsp {
9146 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
9147 6879ba42 2020-10-01 naddy
9148 6a0a1bd4 2022-10-04 op fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9149 6879ba42 2020-10-01 naddy getprogname());
9150 6879ba42 2020-10-01 naddy if (hflag) {
9151 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
9152 6879ba42 2020-10-01 naddy list_commands(fp);
9153 ee85c5e8 2020-02-29 stsp }
9154 6879ba42 2020-10-01 naddy exit(status);
9155 9f7d7167 2018-04-29 stsp }
9156 9f7d7167 2018-04-29 stsp
9157 c2301be8 2018-04-30 stsp static char **
9158 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
9159 c2301be8 2018-04-30 stsp {
9160 ee85c5e8 2020-02-29 stsp va_list ap;
9161 c2301be8 2018-04-30 stsp char **argv;
9162 ee85c5e8 2020-02-29 stsp int i;
9163 c2301be8 2018-04-30 stsp
9164 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
9165 ee85c5e8 2020-02-29 stsp
9166 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
9167 c2301be8 2018-04-30 stsp if (argv == NULL)
9168 c2301be8 2018-04-30 stsp err(1, "calloc");
9169 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
9170 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
9171 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
9172 e10c916e 2019-09-15 hiltjo err(1, "strdup");
9173 c2301be8 2018-04-30 stsp }
9174 c2301be8 2018-04-30 stsp
9175 ee85c5e8 2020-02-29 stsp va_end(ap);
9176 c2301be8 2018-04-30 stsp return argv;
9177 ee85c5e8 2020-02-29 stsp }
9178 ee85c5e8 2020-02-29 stsp
9179 ee85c5e8 2020-02-29 stsp /*
9180 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
9181 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
9182 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
9183 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
9184 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
9185 ee85c5e8 2020-02-29 stsp */
9186 ee85c5e8 2020-02-29 stsp static const struct got_error *
9187 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
9188 ee85c5e8 2020-02-29 stsp {
9189 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
9190 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
9191 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
9192 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
9193 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
9194 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
9195 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9196 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
9197 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
9198 84de9106 2020-12-26 stsp
9199 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
9200 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
9201 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
9202 ee85c5e8 2020-02-29 stsp
9203 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
9204 0ae84acc 2022-06-15 tracey if (error != NULL)
9205 0ae84acc 2022-06-15 tracey goto done;
9206 0ae84acc 2022-06-15 tracey
9207 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
9208 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
9209 ee85c5e8 2020-02-29 stsp goto done;
9210 ee85c5e8 2020-02-29 stsp
9211 ee85c5e8 2020-02-29 stsp if (worktree)
9212 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
9213 ee85c5e8 2020-02-29 stsp else
9214 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
9215 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
9216 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
9217 ee85c5e8 2020-02-29 stsp goto done;
9218 ee85c5e8 2020-02-29 stsp }
9219 ee85c5e8 2020-02-29 stsp
9220 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9221 ee85c5e8 2020-02-29 stsp if (error != NULL)
9222 ee85c5e8 2020-02-29 stsp goto done;
9223 ee85c5e8 2020-02-29 stsp
9224 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9225 ee85c5e8 2020-02-29 stsp repo, worktree);
9226 ee85c5e8 2020-02-29 stsp if (error)
9227 ee85c5e8 2020-02-29 stsp goto done;
9228 ee85c5e8 2020-02-29 stsp
9229 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
9230 84de9106 2020-12-26 stsp if (error)
9231 84de9106 2020-12-26 stsp goto done;
9232 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9233 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9234 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9235 ee85c5e8 2020-02-29 stsp if (error)
9236 ee85c5e8 2020-02-29 stsp goto done;
9237 ee85c5e8 2020-02-29 stsp
9238 ee85c5e8 2020-02-29 stsp if (worktree) {
9239 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9240 ee85c5e8 2020-02-29 stsp worktree = NULL;
9241 ee85c5e8 2020-02-29 stsp }
9242 ee85c5e8 2020-02-29 stsp
9243 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
9244 a44927cc 2022-04-07 stsp if (error)
9245 a44927cc 2022-04-07 stsp goto done;
9246 a44927cc 2022-04-07 stsp
9247 a44927cc 2022-04-07 stsp error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9248 ee85c5e8 2020-02-29 stsp if (error) {
9249 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
9250 ee85c5e8 2020-02-29 stsp goto done;
9251 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
9252 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
9253 6879ba42 2020-10-01 naddy usage(1, 1);
9254 ee85c5e8 2020-02-29 stsp /* not reached */
9255 ee85c5e8 2020-02-29 stsp }
9256 ee85c5e8 2020-02-29 stsp
9257 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
9258 ee85c5e8 2020-02-29 stsp if (error)
9259 ee85c5e8 2020-02-29 stsp goto done;
9260 ee85c5e8 2020-02-29 stsp
9261 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
9262 ee85c5e8 2020-02-29 stsp argc = 4;
9263 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9264 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
9265 ee85c5e8 2020-02-29 stsp done:
9266 1d0f4054 2021-06-17 stsp if (repo) {
9267 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
9268 1d0f4054 2021-06-17 stsp if (error == NULL)
9269 1d0f4054 2021-06-17 stsp error = close_err;
9270 1d0f4054 2021-06-17 stsp }
9271 a44927cc 2022-04-07 stsp if (commit)
9272 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
9273 ee85c5e8 2020-02-29 stsp if (worktree)
9274 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9275 0ae84acc 2022-06-15 tracey if (pack_fds) {
9276 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
9277 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
9278 0ae84acc 2022-06-15 tracey if (error == NULL)
9279 0ae84acc 2022-06-15 tracey error = pack_err;
9280 0ae84acc 2022-06-15 tracey }
9281 ee85c5e8 2020-02-29 stsp free(id);
9282 ee85c5e8 2020-02-29 stsp free(commit_id_str);
9283 ee85c5e8 2020-02-29 stsp free(commit_id);
9284 ee85c5e8 2020-02-29 stsp free(cwd);
9285 ee85c5e8 2020-02-29 stsp free(repo_path);
9286 ee85c5e8 2020-02-29 stsp free(in_repo_path);
9287 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
9288 ee85c5e8 2020-02-29 stsp int i;
9289 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
9290 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
9291 ee85c5e8 2020-02-29 stsp free(cmd_argv);
9292 ee85c5e8 2020-02-29 stsp }
9293 87670572 2020-12-26 naddy tog_free_refs();
9294 ee85c5e8 2020-02-29 stsp return error;
9295 c2301be8 2018-04-30 stsp }
9296 c2301be8 2018-04-30 stsp
9297 9f7d7167 2018-04-29 stsp int
9298 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
9299 9f7d7167 2018-04-29 stsp {
9300 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
9301 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
9302 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
9303 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
9304 3e166534 2022-02-16 naddy static const struct option longopts[] = {
9305 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
9306 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
9307 83cd27f8 2020-01-13 stsp };
9308 917d79a7 2022-07-01 stsp char *diff_algo_str = NULL;
9309 9f7d7167 2018-04-29 stsp
9310 3264c09c 2022-09-06 mark if (!isatty(STDIN_FILENO))
9311 3264c09c 2022-09-06 mark errx(1, "standard input is not a tty");
9312 3264c09c 2022-09-06 mark
9313 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
9314 9f7d7167 2018-04-29 stsp
9315 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9316 9f7d7167 2018-04-29 stsp switch (ch) {
9317 9f7d7167 2018-04-29 stsp case 'h':
9318 9f7d7167 2018-04-29 stsp hflag = 1;
9319 9f7d7167 2018-04-29 stsp break;
9320 53ccebc2 2019-07-30 stsp case 'V':
9321 53ccebc2 2019-07-30 stsp Vflag = 1;
9322 53ccebc2 2019-07-30 stsp break;
9323 9f7d7167 2018-04-29 stsp default:
9324 6879ba42 2020-10-01 naddy usage(hflag, 1);
9325 9f7d7167 2018-04-29 stsp /* NOTREACHED */
9326 9f7d7167 2018-04-29 stsp }
9327 9f7d7167 2018-04-29 stsp }
9328 9f7d7167 2018-04-29 stsp
9329 9f7d7167 2018-04-29 stsp argc -= optind;
9330 9f7d7167 2018-04-29 stsp argv += optind;
9331 9814e6a3 2020-09-27 naddy optind = 1;
9332 c2301be8 2018-04-30 stsp optreset = 1;
9333 9f7d7167 2018-04-29 stsp
9334 53ccebc2 2019-07-30 stsp if (Vflag) {
9335 53ccebc2 2019-07-30 stsp got_version_print_str();
9336 6879ba42 2020-10-01 naddy return 0;
9337 53ccebc2 2019-07-30 stsp }
9338 4010e238 2020-12-04 stsp
9339 4010e238 2020-12-04 stsp #ifndef PROFILE
9340 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9341 4010e238 2020-12-04 stsp NULL) == -1)
9342 4010e238 2020-12-04 stsp err(1, "pledge");
9343 4010e238 2020-12-04 stsp #endif
9344 53ccebc2 2019-07-30 stsp
9345 c2301be8 2018-04-30 stsp if (argc == 0) {
9346 f29d3e89 2018-06-23 stsp if (hflag)
9347 6879ba42 2020-10-01 naddy usage(hflag, 0);
9348 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
9349 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
9350 c2301be8 2018-04-30 stsp argc = 1;
9351 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
9352 c2301be8 2018-04-30 stsp } else {
9353 6059809a 2020-12-17 stsp size_t i;
9354 9f7d7167 2018-04-29 stsp
9355 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
9356 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
9357 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
9358 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
9359 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
9360 9f7d7167 2018-04-29 stsp break;
9361 9f7d7167 2018-04-29 stsp }
9362 9f7d7167 2018-04-29 stsp }
9363 ee85c5e8 2020-02-29 stsp }
9364 3642c4c6 2019-07-09 stsp
9365 917d79a7 2022-07-01 stsp diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9366 917d79a7 2022-07-01 stsp if (diff_algo_str) {
9367 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "patience") == 0)
9368 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9369 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "myers") == 0)
9370 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9371 917d79a7 2022-07-01 stsp }
9372 917d79a7 2022-07-01 stsp
9373 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
9374 ee85c5e8 2020-02-29 stsp if (argc != 1)
9375 6879ba42 2020-10-01 naddy usage(0, 1);
9376 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
9377 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
9378 ee85c5e8 2020-02-29 stsp } else {
9379 ee85c5e8 2020-02-29 stsp if (hflag)
9380 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
9381 ee85c5e8 2020-02-29 stsp else
9382 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9383 9f7d7167 2018-04-29 stsp }
9384 9f7d7167 2018-04-29 stsp
9385 9f7d7167 2018-04-29 stsp endwin();
9386 b46c1e04 2020-09-20 naddy putchar('\n');
9387 a2f4a359 2020-02-28 stsp if (cmd_argv) {
9388 a2f4a359 2020-02-28 stsp int i;
9389 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
9390 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
9391 a2f4a359 2020-02-28 stsp free(cmd_argv);
9392 a2f4a359 2020-02-28 stsp }
9393 a2f4a359 2020-02-28 stsp
9394 e45c294c 2022-10-24 stsp if (error && error->code != GOT_ERR_CANCELLED &&
9395 e45c294c 2022-10-24 stsp error->code != GOT_ERR_EOF &&
9396 e45c294c 2022-10-24 stsp error->code != GOT_ERR_PRIVSEP_EXIT &&
9397 e45c294c 2022-10-24 stsp error->code != GOT_ERR_PRIVSEP_PIPE &&
9398 e45c294c 2022-10-24 stsp !(error->code == GOT_ERR_ERRNO && errno == EINTR))
9399 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9400 9f7d7167 2018-04-29 stsp return 0;
9401 9f7d7167 2018-04-29 stsp }