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 2b49a8ae 2019-06-22 stsp
1308 9b058f45 2022-06-30 mark mvwaddstr(v->window, v->nlines - 1, 0, "/");
1309 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1310 9b058f45 2022-06-30 mark
1311 a6d37fac 2022-07-03 mark nodelay(view->window, FALSE); /* block for search term input */
1312 2b49a8ae 2019-06-22 stsp nocbreak();
1313 2b49a8ae 2019-06-22 stsp echo();
1314 9b058f45 2022-06-30 mark ret = wgetnstr(v->window, pattern, sizeof(pattern));
1315 9b058f45 2022-06-30 mark wrefresh(v->window);
1316 2b49a8ae 2019-06-22 stsp cbreak();
1317 2b49a8ae 2019-06-22 stsp noecho();
1318 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1319 2b49a8ae 2019-06-22 stsp if (ret == ERR)
1320 2b49a8ae 2019-06-22 stsp return NULL;
1321 2b49a8ae 2019-06-22 stsp
1322 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1323 7c32bd05 2019-06-22 stsp err = view->search_start(view);
1324 7c32bd05 2019-06-22 stsp if (err) {
1325 7c32bd05 2019-06-22 stsp regfree(&view->regex);
1326 7c32bd05 2019-06-22 stsp return err;
1327 7c32bd05 2019-06-22 stsp }
1328 c0c4acc8 2021-01-24 stsp view->search_started = 1;
1329 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
1330 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
1331 2b49a8ae 2019-06-22 stsp view->search_next(view);
1332 2b49a8ae 2019-06-22 stsp }
1333 2b49a8ae 2019-06-22 stsp
1334 2b49a8ae 2019-06-22 stsp return NULL;
1335 d2366e29 2022-07-07 mark }
1336 d2366e29 2022-07-07 mark
1337 7532ccda 2022-07-11 mark /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1338 d2366e29 2022-07-07 mark static const struct got_error *
1339 d2366e29 2022-07-07 mark switch_split(struct tog_view *view)
1340 d2366e29 2022-07-07 mark {
1341 d2366e29 2022-07-07 mark const struct got_error *err = NULL;
1342 d2366e29 2022-07-07 mark struct tog_view *v = NULL;
1343 d2366e29 2022-07-07 mark
1344 d2366e29 2022-07-07 mark if (view->parent)
1345 d2366e29 2022-07-07 mark v = view->parent;
1346 d2366e29 2022-07-07 mark else
1347 d2366e29 2022-07-07 mark v = view;
1348 d2366e29 2022-07-07 mark
1349 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN)
1350 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1351 7532ccda 2022-07-11 mark else
1352 d2366e29 2022-07-07 mark v->mode = TOG_VIEW_SPLIT_HRZN;
1353 d2366e29 2022-07-07 mark
1354 7532ccda 2022-07-11 mark if (!v->child)
1355 7532ccda 2022-07-11 mark return NULL;
1356 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1357 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_NONE;
1358 7532ccda 2022-07-11 mark
1359 d2366e29 2022-07-07 mark view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1360 3c1dfe12 2022-07-08 mark if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1361 3c1dfe12 2022-07-08 mark v->child->begin_y = v->child->resized_y;
1362 7532ccda 2022-07-11 mark else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1363 3c1dfe12 2022-07-08 mark v->child->begin_x = v->child->resized_x;
1364 d2366e29 2022-07-07 mark
1365 7532ccda 2022-07-11 mark
1366 d2366e29 2022-07-07 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1367 d2366e29 2022-07-07 mark v->ncols = COLS;
1368 d2366e29 2022-07-07 mark v->child->ncols = COLS;
1369 7532ccda 2022-07-11 mark v->child->nscrolled = LINES - v->child->nlines;
1370 d2366e29 2022-07-07 mark
1371 d2366e29 2022-07-07 mark err = view_init_hsplit(v, v->child->begin_y);
1372 d2366e29 2022-07-07 mark if (err)
1373 d2366e29 2022-07-07 mark return err;
1374 d2366e29 2022-07-07 mark }
1375 d2366e29 2022-07-07 mark v->child->mode = v->mode;
1376 d2366e29 2022-07-07 mark v->child->nlines = v->lines - v->child->begin_y;
1377 d2366e29 2022-07-07 mark v->focus_child = 1;
1378 d2366e29 2022-07-07 mark
1379 d2366e29 2022-07-07 mark err = view_fullscreen(v);
1380 d2366e29 2022-07-07 mark if (err)
1381 d2366e29 2022-07-07 mark return err;
1382 d2366e29 2022-07-07 mark err = view_splitscreen(v->child);
1383 d2366e29 2022-07-07 mark if (err)
1384 d2366e29 2022-07-07 mark return err;
1385 d2366e29 2022-07-07 mark
1386 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_NONE)
1387 7532ccda 2022-07-11 mark v->mode = TOG_VIEW_SPLIT_VERT;
1388 7532ccda 2022-07-11 mark if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1389 7532ccda 2022-07-11 mark err = offset_selection_down(v);
1390 279d2047 2022-07-29 stsp if (err)
1391 279d2047 2022-07-29 stsp return err;
1392 d2366e29 2022-07-07 mark err = offset_selection_down(v->child);
1393 279d2047 2022-07-29 stsp if (err)
1394 279d2047 2022-07-29 stsp return err;
1395 7532ccda 2022-07-11 mark } else {
1396 7532ccda 2022-07-11 mark offset_selection_up(v);
1397 7532ccda 2022-07-11 mark offset_selection_up(v->child);
1398 d2366e29 2022-07-07 mark }
1399 dff91825 2022-07-22 mark if (v->resize)
1400 dff91825 2022-07-22 mark err = v->resize(v, 0);
1401 dff91825 2022-07-22 mark else if (v->child->resize)
1402 dff91825 2022-07-22 mark err = v->child->resize(v->child, 0);
1403 d2366e29 2022-07-07 mark
1404 d2366e29 2022-07-07 mark return err;
1405 0cf4efb1 2018-09-29 stsp }
1406 6d0fee91 2018-08-01 stsp
1407 640cd7ff 2022-06-22 mark /*
1408 f0032ce6 2022-07-02 mark * Compute view->count from numeric input. Assign total to view->count and
1409 f0032ce6 2022-07-02 mark * return first non-numeric key entered.
1410 640cd7ff 2022-06-22 mark */
1411 640cd7ff 2022-06-22 mark static int
1412 640cd7ff 2022-06-22 mark get_compound_key(struct tog_view *view, int c)
1413 640cd7ff 2022-06-22 mark {
1414 9b058f45 2022-06-30 mark struct tog_view *v = view;
1415 9b058f45 2022-06-30 mark int x, n = 0;
1416 640cd7ff 2022-06-22 mark
1417 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
1418 9b058f45 2022-06-30 mark v = view->child;
1419 9b058f45 2022-06-30 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1420 9b058f45 2022-06-30 mark v = view->parent;
1421 9b058f45 2022-06-30 mark
1422 640cd7ff 2022-06-22 mark view->count = 0;
1423 f0032ce6 2022-07-02 mark cbreak(); /* block for input */
1424 94b80cfa 2022-08-01 mark nodelay(view->window, FALSE);
1425 9b058f45 2022-06-30 mark wmove(v->window, v->nlines - 1, 0);
1426 9b058f45 2022-06-30 mark wclrtoeol(v->window);
1427 9b058f45 2022-06-30 mark waddch(v->window, ':');
1428 640cd7ff 2022-06-22 mark
1429 640cd7ff 2022-06-22 mark do {
1430 9b058f45 2022-06-30 mark x = getcurx(v->window);
1431 9b058f45 2022-06-30 mark if (x != ERR && x < view->ncols) {
1432 9b058f45 2022-06-30 mark waddch(v->window, c);
1433 9b058f45 2022-06-30 mark wrefresh(v->window);
1434 9b058f45 2022-06-30 mark }
1435 9b058f45 2022-06-30 mark
1436 640cd7ff 2022-06-22 mark /*
1437 640cd7ff 2022-06-22 mark * Don't overflow. Max valid request should be the greatest
1438 640cd7ff 2022-06-22 mark * between the longest and total lines; cap at 10 million.
1439 640cd7ff 2022-06-22 mark */
1440 640cd7ff 2022-06-22 mark if (n >= 9999999)
1441 640cd7ff 2022-06-22 mark n = 9999999;
1442 640cd7ff 2022-06-22 mark else
1443 640cd7ff 2022-06-22 mark n = n * 10 + (c - '0');
1444 640cd7ff 2022-06-22 mark } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1445 640cd7ff 2022-06-22 mark
1446 94b80cfa 2022-08-01 mark if (c == 'G' || c == 'g') { /* nG key map */
1447 94b80cfa 2022-08-01 mark view->gline = view->hiline = n;
1448 94b80cfa 2022-08-01 mark n = 0;
1449 94b80cfa 2022-08-01 mark c = 0;
1450 94b80cfa 2022-08-01 mark }
1451 94b80cfa 2022-08-01 mark
1452 640cd7ff 2022-06-22 mark /* Massage excessive or inapplicable values at the input handler. */
1453 640cd7ff 2022-06-22 mark view->count = n;
1454 640cd7ff 2022-06-22 mark
1455 640cd7ff 2022-06-22 mark return c;
1456 640cd7ff 2022-06-22 mark }
1457 640cd7ff 2022-06-22 mark
1458 0cf4efb1 2018-09-29 stsp static const struct got_error *
1459 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
1460 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
1461 e5a0f69f 2018-08-18 stsp {
1462 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1463 669b5ffa 2018-10-07 stsp struct tog_view *v;
1464 1a76625f 2018-10-22 stsp int ch, errcode;
1465 e5a0f69f 2018-08-18 stsp
1466 e5a0f69f 2018-08-18 stsp *new = NULL;
1467 8f4ed634 2020-03-26 stsp
1468 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
1469 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1470 640cd7ff 2022-06-22 mark view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1471 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
1472 640cd7ff 2022-06-22 mark view->count = 0;
1473 640cd7ff 2022-06-22 mark }
1474 e5a0f69f 2018-08-18 stsp
1475 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
1476 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1477 82954512 2020-02-03 stsp if (errcode)
1478 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1479 82954512 2020-02-03 stsp "pthread_mutex_unlock");
1480 3da8ef85 2021-09-21 stsp sched_yield();
1481 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
1482 82954512 2020-02-03 stsp if (errcode)
1483 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1484 82954512 2020-02-03 stsp "pthread_mutex_lock");
1485 60493ae3 2019-06-20 stsp view->search_next(view);
1486 60493ae3 2019-06-20 stsp return NULL;
1487 60493ae3 2019-06-20 stsp }
1488 60493ae3 2019-06-20 stsp
1489 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
1490 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1491 1a76625f 2018-10-22 stsp if (errcode)
1492 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
1493 a6d37fac 2022-07-03 mark /* If we have an unfinished count, let C-g or backspace abort. */
1494 a6d37fac 2022-07-03 mark if (view->count && --view->count) {
1495 a6d37fac 2022-07-03 mark cbreak();
1496 a6d37fac 2022-07-03 mark nodelay(view->window, TRUE);
1497 640cd7ff 2022-06-22 mark ch = wgetch(view->window);
1498 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1499 a6d37fac 2022-07-03 mark view->count = 0;
1500 a6d37fac 2022-07-03 mark else
1501 a6d37fac 2022-07-03 mark ch = view->ch;
1502 a6d37fac 2022-07-03 mark } else {
1503 a6d37fac 2022-07-03 mark ch = wgetch(view->window);
1504 640cd7ff 2022-06-22 mark if (ch >= '1' && ch <= '9')
1505 640cd7ff 2022-06-22 mark view->ch = ch = get_compound_key(view, ch);
1506 640cd7ff 2022-06-22 mark }
1507 94b80cfa 2022-08-01 mark if (view->hiline && ch != ERR && ch != 0)
1508 94b80cfa 2022-08-01 mark view->hiline = 0; /* key pressed, clear line highlight */
1509 94b80cfa 2022-08-01 mark nodelay(view->window, TRUE);
1510 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1511 1a76625f 2018-10-22 stsp if (errcode)
1512 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1513 25791caa 2018-10-24 stsp
1514 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
1515 25791caa 2018-10-24 stsp tog_resizeterm();
1516 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
1517 61266923 2020-01-14 stsp tog_sigcont_received = 0;
1518 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
1519 25791caa 2018-10-24 stsp err = view_resize(v);
1520 25791caa 2018-10-24 stsp if (err)
1521 25791caa 2018-10-24 stsp return err;
1522 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
1523 25791caa 2018-10-24 stsp if (err)
1524 25791caa 2018-10-24 stsp return err;
1525 cdfcfb03 2020-12-06 stsp if (v->child) {
1526 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
1527 cdfcfb03 2020-12-06 stsp if (err)
1528 cdfcfb03 2020-12-06 stsp return err;
1529 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
1530 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
1531 cdfcfb03 2020-12-06 stsp if (err)
1532 cdfcfb03 2020-12-06 stsp return err;
1533 3c1dfe12 2022-07-08 mark if (v->child->resized_x || v->child->resized_y) {
1534 3c1dfe12 2022-07-08 mark err = view_resize_split(v, 0);
1535 3c1dfe12 2022-07-08 mark if (err)
1536 3c1dfe12 2022-07-08 mark return err;
1537 3c1dfe12 2022-07-08 mark }
1538 cdfcfb03 2020-12-06 stsp }
1539 25791caa 2018-10-24 stsp }
1540 25791caa 2018-10-24 stsp }
1541 25791caa 2018-10-24 stsp
1542 e5a0f69f 2018-08-18 stsp switch (ch) {
1543 ec2a9698 2022-09-15 mark case '?':
1544 ec2a9698 2022-09-15 mark case 'H':
1545 ec2a9698 2022-09-15 mark case KEY_F(1):
1546 ec2a9698 2022-09-15 mark if (view->type == TOG_VIEW_HELP)
1547 ec2a9698 2022-09-15 mark err = view->reset(view);
1548 ec2a9698 2022-09-15 mark else
1549 ec2a9698 2022-09-15 mark err = view_request_new(new, view, TOG_VIEW_HELP);
1550 ec2a9698 2022-09-15 mark break;
1551 1e37a5c2 2019-05-12 jcs case '\t':
1552 640cd7ff 2022-06-22 mark view->count = 0;
1553 1e37a5c2 2019-05-12 jcs if (view->child) {
1554 e78dc838 2020-12-04 stsp view->focussed = 0;
1555 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1556 e78dc838 2020-12-04 stsp view->focus_child = 1;
1557 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
1558 e78dc838 2020-12-04 stsp view->focussed = 0;
1559 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
1560 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1561 9b058f45 2022-06-30 mark if (!view_is_splitscreen(view)) {
1562 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1563 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent,
1564 6fe51fee 2022-07-22 mark 0);
1565 9b058f45 2022-06-30 mark if (err)
1566 9b058f45 2022-06-30 mark return err;
1567 9b058f45 2022-06-30 mark }
1568 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1569 6131ff18 2022-06-20 mark err = view_fullscreen(view->parent);
1570 9b058f45 2022-06-30 mark if (err)
1571 9b058f45 2022-06-30 mark return err;
1572 9b058f45 2022-06-30 mark }
1573 1e37a5c2 2019-05-12 jcs }
1574 1e37a5c2 2019-05-12 jcs break;
1575 1e37a5c2 2019-05-12 jcs case 'q':
1576 9b058f45 2022-06-30 mark if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1577 6fe51fee 2022-07-22 mark if (view->parent->resize) {
1578 9b058f45 2022-06-30 mark /* might need more commits to fill fullscreen */
1579 6fe51fee 2022-07-22 mark err = view->parent->resize(view->parent, 0);
1580 9b058f45 2022-06-30 mark if (err)
1581 9b058f45 2022-06-30 mark break;
1582 9b058f45 2022-06-30 mark }
1583 9b058f45 2022-06-30 mark offset_selection_up(view->parent);
1584 9b058f45 2022-06-30 mark }
1585 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1586 9970f7fc 2020-12-03 stsp view->dying = 1;
1587 1e37a5c2 2019-05-12 jcs break;
1588 1e37a5c2 2019-05-12 jcs case 'Q':
1589 1e37a5c2 2019-05-12 jcs *done = 1;
1590 1e37a5c2 2019-05-12 jcs break;
1591 61417565 2022-06-20 mark case 'F':
1592 640cd7ff 2022-06-22 mark view->count = 0;
1593 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
1594 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
1595 1e37a5c2 2019-05-12 jcs break;
1596 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
1597 e78dc838 2020-12-04 stsp view->focussed = 0;
1598 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1599 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
1600 3c1dfe12 2022-07-08 mark } else {
1601 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
1602 3c1dfe12 2022-07-08 mark if (!err)
1603 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1604 3c1dfe12 2022-07-08 mark }
1605 1e37a5c2 2019-05-12 jcs if (err)
1606 1e37a5c2 2019-05-12 jcs break;
1607 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
1608 9970f7fc 2020-12-03 stsp KEY_RESIZE);
1609 1e37a5c2 2019-05-12 jcs } else {
1610 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
1611 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
1612 e78dc838 2020-12-04 stsp view->focussed = 1;
1613 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
1614 1e37a5c2 2019-05-12 jcs } else {
1615 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
1616 9b058f45 2022-06-30 mark if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1617 6131ff18 2022-06-20 mark err = view_resize(view->parent);
1618 3c1dfe12 2022-07-08 mark if (!err)
1619 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 0);
1620 669b5ffa 2018-10-07 stsp }
1621 1e37a5c2 2019-05-12 jcs if (err)
1622 1e37a5c2 2019-05-12 jcs break;
1623 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
1624 1e37a5c2 2019-05-12 jcs }
1625 9b058f45 2022-06-30 mark if (err)
1626 9b058f45 2022-06-30 mark break;
1627 6fe51fee 2022-07-22 mark if (view->resize) {
1628 6fe51fee 2022-07-22 mark err = view->resize(view, 0);
1629 9b058f45 2022-06-30 mark if (err)
1630 9b058f45 2022-06-30 mark break;
1631 9b058f45 2022-06-30 mark }
1632 9b058f45 2022-06-30 mark if (view->parent)
1633 9b058f45 2022-06-30 mark err = offset_selection_down(view->parent);
1634 9b058f45 2022-06-30 mark if (!err)
1635 9b058f45 2022-06-30 mark err = offset_selection_down(view);
1636 1e37a5c2 2019-05-12 jcs break;
1637 d2366e29 2022-07-07 mark case 'S':
1638 3c1dfe12 2022-07-08 mark view->count = 0;
1639 d2366e29 2022-07-07 mark err = switch_split(view);
1640 3c1dfe12 2022-07-08 mark break;
1641 3c1dfe12 2022-07-08 mark case '-':
1642 3c1dfe12 2022-07-08 mark err = view_resize_split(view, -1);
1643 d2366e29 2022-07-07 mark break;
1644 3c1dfe12 2022-07-08 mark case '+':
1645 3c1dfe12 2022-07-08 mark err = view_resize_split(view, 1);
1646 3c1dfe12 2022-07-08 mark break;
1647 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
1648 60493ae3 2019-06-20 stsp break;
1649 60493ae3 2019-06-20 stsp case '/':
1650 640cd7ff 2022-06-22 mark view->count = 0;
1651 60493ae3 2019-06-20 stsp if (view->search_start)
1652 2b49a8ae 2019-06-22 stsp view_search_start(view);
1653 60493ae3 2019-06-20 stsp else
1654 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1655 1e37a5c2 2019-05-12 jcs break;
1656 b1bf1435 2019-06-21 stsp case 'N':
1657 60493ae3 2019-06-20 stsp case 'n':
1658 c0c4acc8 2021-01-24 stsp if (view->search_started && view->search_next) {
1659 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
1660 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1661 60493ae3 2019-06-20 stsp view->search_next_done = 0;
1662 60493ae3 2019-06-20 stsp view->search_next(view);
1663 60493ae3 2019-06-20 stsp } else
1664 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1665 917d79a7 2022-07-01 stsp break;
1666 917d79a7 2022-07-01 stsp case 'A':
1667 917d79a7 2022-07-01 stsp if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1668 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1669 917d79a7 2022-07-01 stsp else
1670 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1671 917d79a7 2022-07-01 stsp TAILQ_FOREACH(v, views, entry) {
1672 917d79a7 2022-07-01 stsp if (v->reset) {
1673 917d79a7 2022-07-01 stsp err = v->reset(v);
1674 917d79a7 2022-07-01 stsp if (err)
1675 917d79a7 2022-07-01 stsp return err;
1676 917d79a7 2022-07-01 stsp }
1677 917d79a7 2022-07-01 stsp if (v->child && v->child->reset) {
1678 917d79a7 2022-07-01 stsp err = v->child->reset(v->child);
1679 917d79a7 2022-07-01 stsp if (err)
1680 917d79a7 2022-07-01 stsp return err;
1681 917d79a7 2022-07-01 stsp }
1682 917d79a7 2022-07-01 stsp }
1683 60493ae3 2019-06-20 stsp break;
1684 1e37a5c2 2019-05-12 jcs default:
1685 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1686 1e37a5c2 2019-05-12 jcs break;
1687 e5a0f69f 2018-08-18 stsp }
1688 e5a0f69f 2018-08-18 stsp
1689 e5a0f69f 2018-08-18 stsp return err;
1690 e5a0f69f 2018-08-18 stsp }
1691 e5a0f69f 2018-08-18 stsp
1692 336075a4 2022-06-25 op static int
1693 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
1694 a3404814 2018-09-02 stsp {
1695 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
1696 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
1697 669b5ffa 2018-10-07 stsp return 0;
1698 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
1699 669b5ffa 2018-10-07 stsp return 0;
1700 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
1701 a3404814 2018-09-02 stsp return 0;
1702 a3404814 2018-09-02 stsp
1703 669b5ffa 2018-10-07 stsp return view->focussed;
1704 a3404814 2018-09-02 stsp }
1705 a3404814 2018-09-02 stsp
1706 bcbd79e2 2018-08-19 stsp static const struct got_error *
1707 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
1708 e5a0f69f 2018-08-18 stsp {
1709 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1710 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
1711 fb59748f 2020-12-05 stsp struct tog_view *new_view;
1712 d2366e29 2022-07-07 mark char *mode;
1713 fd823528 2018-10-22 stsp int fast_refresh = 10;
1714 1a76625f 2018-10-22 stsp int done = 0, errcode;
1715 e5a0f69f 2018-08-18 stsp
1716 d2366e29 2022-07-07 mark mode = getenv("TOG_VIEW_SPLIT_MODE");
1717 d2366e29 2022-07-07 mark if (!mode || !(*mode == 'h' || *mode == 'H'))
1718 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_VERT;
1719 d2366e29 2022-07-07 mark else
1720 d2366e29 2022-07-07 mark view->mode = TOG_VIEW_SPLIT_HRZN;
1721 d2366e29 2022-07-07 mark
1722 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1723 1a76625f 2018-10-22 stsp if (errcode)
1724 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1725 1a76625f 2018-10-22 stsp
1726 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1727 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1728 e5a0f69f 2018-08-18 stsp
1729 1004088d 2018-09-29 stsp view->focussed = 1;
1730 878940b7 2018-09-29 stsp err = view->show(view);
1731 0cf4efb1 2018-09-29 stsp if (err)
1732 0cf4efb1 2018-09-29 stsp return err;
1733 0cf4efb1 2018-09-29 stsp update_panels();
1734 0cf4efb1 2018-09-29 stsp doupdate();
1735 5629093a 2022-07-11 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1736 5629093a 2022-07-11 stsp !tog_fatal_signal_received()) {
1737 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1738 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1739 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1740 fd823528 2018-10-22 stsp
1741 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1742 e5a0f69f 2018-08-18 stsp if (err)
1743 e5a0f69f 2018-08-18 stsp break;
1744 9970f7fc 2020-12-03 stsp if (view->dying) {
1745 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1746 669b5ffa 2018-10-07 stsp
1747 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1748 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1749 9970f7fc 2020-12-03 stsp entry);
1750 e78dc838 2020-12-04 stsp else if (view->parent)
1751 669b5ffa 2018-10-07 stsp prev = view->parent;
1752 669b5ffa 2018-10-07 stsp
1753 e78dc838 2020-12-04 stsp if (view->parent) {
1754 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1755 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1756 9b058f45 2022-06-30 mark /* Restore fullscreen line height. */
1757 9b058f45 2022-06-30 mark view->parent->nlines = view->parent->lines;
1758 0dbbbe90 2022-06-17 op err = view_resize(view->parent);
1759 0dbbbe90 2022-06-17 op if (err)
1760 0dbbbe90 2022-06-17 op break;
1761 3c1dfe12 2022-07-08 mark /* Make resized splits persist. */
1762 3c1dfe12 2022-07-08 mark view_transfer_size(view->parent, view);
1763 e78dc838 2020-12-04 stsp } else
1764 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1765 669b5ffa 2018-10-07 stsp
1766 9970f7fc 2020-12-03 stsp err = view_close(view);
1767 fb59748f 2020-12-05 stsp if (err)
1768 e5a0f69f 2018-08-18 stsp goto done;
1769 669b5ffa 2018-10-07 stsp
1770 e78dc838 2020-12-04 stsp view = NULL;
1771 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1772 e78dc838 2020-12-04 stsp if (v->focussed)
1773 e78dc838 2020-12-04 stsp break;
1774 0cf4efb1 2018-09-29 stsp }
1775 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1776 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1777 e78dc838 2020-12-04 stsp if (prev)
1778 e78dc838 2020-12-04 stsp view = prev;
1779 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1780 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1781 e78dc838 2020-12-04 stsp tog_view_list_head);
1782 e78dc838 2020-12-04 stsp }
1783 e78dc838 2020-12-04 stsp if (view) {
1784 e78dc838 2020-12-04 stsp if (view->focus_child) {
1785 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1786 e78dc838 2020-12-04 stsp view = view->child;
1787 e78dc838 2020-12-04 stsp } else
1788 e78dc838 2020-12-04 stsp view->focussed = 1;
1789 e78dc838 2020-12-04 stsp }
1790 e78dc838 2020-12-04 stsp }
1791 e5a0f69f 2018-08-18 stsp }
1792 bcbd79e2 2018-08-19 stsp if (new_view) {
1793 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1794 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1795 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1796 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1797 86c66b02 2018-10-18 stsp continue;
1798 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1799 86c66b02 2018-10-18 stsp err = view_close(v);
1800 86c66b02 2018-10-18 stsp if (err)
1801 86c66b02 2018-10-18 stsp goto done;
1802 86c66b02 2018-10-18 stsp break;
1803 86c66b02 2018-10-18 stsp }
1804 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1805 fed7eaa8 2018-10-24 stsp view = new_view;
1806 0ae84acc 2022-06-15 tracey }
1807 669b5ffa 2018-10-07 stsp if (view) {
1808 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1809 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1810 e78dc838 2020-12-04 stsp view = view->child;
1811 e78dc838 2020-12-04 stsp } else {
1812 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1813 e78dc838 2020-12-04 stsp view = view->parent;
1814 1a76625f 2018-10-22 stsp }
1815 e78dc838 2020-12-04 stsp show_panel(view->panel);
1816 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1817 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1818 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1819 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1820 669b5ffa 2018-10-07 stsp if (err)
1821 1a76625f 2018-10-22 stsp goto done;
1822 669b5ffa 2018-10-07 stsp }
1823 669b5ffa 2018-10-07 stsp err = view->show(view);
1824 0cf4efb1 2018-09-29 stsp if (err)
1825 1a76625f 2018-10-22 stsp goto done;
1826 669b5ffa 2018-10-07 stsp if (view->child) {
1827 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1828 669b5ffa 2018-10-07 stsp if (err)
1829 1a76625f 2018-10-22 stsp goto done;
1830 669b5ffa 2018-10-07 stsp }
1831 1a76625f 2018-10-22 stsp update_panels();
1832 1a76625f 2018-10-22 stsp doupdate();
1833 0cf4efb1 2018-09-29 stsp }
1834 e5a0f69f 2018-08-18 stsp }
1835 e5a0f69f 2018-08-18 stsp done:
1836 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1837 5629093a 2022-07-11 stsp const struct got_error *close_err;
1838 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1839 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1840 5629093a 2022-07-11 stsp close_err = view_close(view);
1841 5629093a 2022-07-11 stsp if (close_err && err == NULL)
1842 5629093a 2022-07-11 stsp err = close_err;
1843 e5a0f69f 2018-08-18 stsp }
1844 1a76625f 2018-10-22 stsp
1845 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1846 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1847 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1848 1a76625f 2018-10-22 stsp
1849 e5a0f69f 2018-08-18 stsp return err;
1850 ea5e7bb5 2018-08-01 stsp }
1851 ea5e7bb5 2018-08-01 stsp
1852 4ed7e80c 2018-05-20 stsp __dead static void
1853 9f7d7167 2018-04-29 stsp usage_log(void)
1854 9f7d7167 2018-04-29 stsp {
1855 80ddbec8 2018-04-29 stsp endwin();
1856 c70c5802 2018-08-01 stsp fprintf(stderr,
1857 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1858 9f7d7167 2018-04-29 stsp getprogname());
1859 9f7d7167 2018-04-29 stsp exit(1);
1860 80ddbec8 2018-04-29 stsp }
1861 80ddbec8 2018-04-29 stsp
1862 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1863 80ddbec8 2018-04-29 stsp static const struct got_error *
1864 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1865 963b370f 2018-05-20 stsp {
1866 00dfcb92 2018-06-11 stsp char *vis = NULL;
1867 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1868 963b370f 2018-05-20 stsp
1869 963b370f 2018-05-20 stsp *ws = NULL;
1870 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1871 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1872 00dfcb92 2018-06-11 stsp int vislen;
1873 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1874 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1875 00dfcb92 2018-06-11 stsp
1876 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1877 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1878 00dfcb92 2018-06-11 stsp if (err)
1879 00dfcb92 2018-06-11 stsp return err;
1880 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1881 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1882 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1883 a7f50699 2018-06-11 stsp goto done;
1884 a7f50699 2018-06-11 stsp }
1885 00dfcb92 2018-06-11 stsp }
1886 963b370f 2018-05-20 stsp
1887 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1888 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1889 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1890 a7f50699 2018-06-11 stsp goto done;
1891 a7f50699 2018-06-11 stsp }
1892 963b370f 2018-05-20 stsp
1893 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1894 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1895 a7f50699 2018-06-11 stsp done:
1896 00dfcb92 2018-06-11 stsp free(vis);
1897 963b370f 2018-05-20 stsp if (err) {
1898 963b370f 2018-05-20 stsp free(*ws);
1899 963b370f 2018-05-20 stsp *ws = NULL;
1900 963b370f 2018-05-20 stsp *wlen = 0;
1901 963b370f 2018-05-20 stsp }
1902 963b370f 2018-05-20 stsp return err;
1903 145b6838 2022-06-16 stsp }
1904 145b6838 2022-06-16 stsp
1905 145b6838 2022-06-16 stsp static const struct got_error *
1906 145b6838 2022-06-16 stsp expand_tab(char **ptr, const char *src)
1907 145b6838 2022-06-16 stsp {
1908 145b6838 2022-06-16 stsp char *dst;
1909 145b6838 2022-06-16 stsp size_t len, n, idx = 0, sz = 0;
1910 145b6838 2022-06-16 stsp
1911 145b6838 2022-06-16 stsp *ptr = NULL;
1912 145b6838 2022-06-16 stsp n = len = strlen(src);
1913 6e1c41ad 2022-06-16 mark dst = malloc(n + 1);
1914 145b6838 2022-06-16 stsp if (dst == NULL)
1915 145b6838 2022-06-16 stsp return got_error_from_errno("malloc");
1916 145b6838 2022-06-16 stsp
1917 145b6838 2022-06-16 stsp while (idx < len && src[idx]) {
1918 145b6838 2022-06-16 stsp const char c = src[idx];
1919 145b6838 2022-06-16 stsp
1920 145b6838 2022-06-16 stsp if (c == '\t') {
1921 145b6838 2022-06-16 stsp size_t nb = TABSIZE - sz % TABSIZE;
1922 367ddf28 2022-06-16 mark char *p;
1923 367ddf28 2022-06-16 mark
1924 367ddf28 2022-06-16 mark p = realloc(dst, n + nb);
1925 6e1c41ad 2022-06-16 mark if (p == NULL) {
1926 6e1c41ad 2022-06-16 mark free(dst);
1927 6e1c41ad 2022-06-16 mark return got_error_from_errno("realloc");
1928 6e1c41ad 2022-06-16 mark
1929 6e1c41ad 2022-06-16 mark }
1930 6e1c41ad 2022-06-16 mark dst = p;
1931 145b6838 2022-06-16 stsp n += nb;
1932 6e1c41ad 2022-06-16 mark memset(dst + sz, ' ', nb);
1933 145b6838 2022-06-16 stsp sz += nb;
1934 145b6838 2022-06-16 stsp } else
1935 145b6838 2022-06-16 stsp dst[sz++] = src[idx];
1936 145b6838 2022-06-16 stsp ++idx;
1937 145b6838 2022-06-16 stsp }
1938 145b6838 2022-06-16 stsp
1939 145b6838 2022-06-16 stsp dst[sz] = '\0';
1940 145b6838 2022-06-16 stsp *ptr = dst;
1941 145b6838 2022-06-16 stsp return NULL;
1942 963b370f 2018-05-20 stsp }
1943 963b370f 2018-05-20 stsp
1944 4e4a9ac8 2022-06-17 op /*
1945 4e4a9ac8 2022-06-17 op * Advance at most n columns from wline starting at offset off.
1946 4e4a9ac8 2022-06-17 op * Return the index to the first character after the span operation.
1947 4e4a9ac8 2022-06-17 op * Return the combined column width of all spanned wide character in
1948 4e4a9ac8 2022-06-17 op * *rcol.
1949 ccda2f4d 2022-06-16 stsp */
1950 4e4a9ac8 2022-06-17 op static int
1951 4e4a9ac8 2022-06-17 op span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1952 4e4a9ac8 2022-06-17 op {
1953 4e4a9ac8 2022-06-17 op int width, i, cols = 0;
1954 ccda2f4d 2022-06-16 stsp
1955 4e4a9ac8 2022-06-17 op if (n == 0) {
1956 4e4a9ac8 2022-06-17 op *rcol = cols;
1957 4e4a9ac8 2022-06-17 op return off;
1958 4e4a9ac8 2022-06-17 op }
1959 ccda2f4d 2022-06-16 stsp
1960 4e4a9ac8 2022-06-17 op for (i = off; wline[i] != L'\0'; ++i) {
1961 4e4a9ac8 2022-06-17 op if (wline[i] == L'\t')
1962 4e4a9ac8 2022-06-17 op width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1963 4e4a9ac8 2022-06-17 op else
1964 4e4a9ac8 2022-06-17 op width = wcwidth(wline[i]);
1965 ccda2f4d 2022-06-16 stsp
1966 4e4a9ac8 2022-06-17 op if (width == -1) {
1967 4e4a9ac8 2022-06-17 op width = 1;
1968 4e4a9ac8 2022-06-17 op wline[i] = L'.';
1969 ccda2f4d 2022-06-16 stsp }
1970 ccda2f4d 2022-06-16 stsp
1971 4e4a9ac8 2022-06-17 op if (cols + width > n)
1972 4e4a9ac8 2022-06-17 op break;
1973 4e4a9ac8 2022-06-17 op cols += width;
1974 ccda2f4d 2022-06-16 stsp }
1975 ccda2f4d 2022-06-16 stsp
1976 4e4a9ac8 2022-06-17 op *rcol = cols;
1977 4e4a9ac8 2022-06-17 op return i;
1978 ccda2f4d 2022-06-16 stsp }
1979 ccda2f4d 2022-06-16 stsp
1980 ccda2f4d 2022-06-16 stsp /*
1981 ccda2f4d 2022-06-16 stsp * Format a line for display, ensuring that it won't overflow a width limit.
1982 ccda2f4d 2022-06-16 stsp * With scrolling, the width returned refers to the scrolled version of the
1983 ccda2f4d 2022-06-16 stsp * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1984 ccda2f4d 2022-06-16 stsp */
1985 ccda2f4d 2022-06-16 stsp static const struct got_error *
1986 ccda2f4d 2022-06-16 stsp format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1987 ccda2f4d 2022-06-16 stsp const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1988 ccda2f4d 2022-06-16 stsp {
1989 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1990 4e4a9ac8 2022-06-17 op int cols;
1991 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1992 145b6838 2022-06-16 stsp char *exstr = NULL;
1993 963b370f 2018-05-20 stsp size_t wlen;
1994 4e4a9ac8 2022-06-17 op int i, scrollx;
1995 963b370f 2018-05-20 stsp
1996 963b370f 2018-05-20 stsp *wlinep = NULL;
1997 b700b5d6 2018-07-10 stsp *widthp = 0;
1998 963b370f 2018-05-20 stsp
1999 145b6838 2022-06-16 stsp if (expand) {
2000 145b6838 2022-06-16 stsp err = expand_tab(&exstr, line);
2001 145b6838 2022-06-16 stsp if (err)
2002 145b6838 2022-06-16 stsp return err;
2003 145b6838 2022-06-16 stsp }
2004 145b6838 2022-06-16 stsp
2005 145b6838 2022-06-16 stsp err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2006 145b6838 2022-06-16 stsp free(exstr);
2007 963b370f 2018-05-20 stsp if (err)
2008 963b370f 2018-05-20 stsp return err;
2009 963b370f 2018-05-20 stsp
2010 4e4a9ac8 2022-06-17 op scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2011 ccda2f4d 2022-06-16 stsp
2012 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
2013 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2014 3f670bfb 2020-12-10 stsp wlen--;
2015 3f670bfb 2020-12-10 stsp }
2016 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
2017 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2018 3f670bfb 2020-12-10 stsp wlen--;
2019 3f670bfb 2020-12-10 stsp }
2020 3f670bfb 2020-12-10 stsp
2021 4e4a9ac8 2022-06-17 op i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2022 4e4a9ac8 2022-06-17 op wline[i] = L'\0';
2023 27a741e5 2019-09-11 stsp
2024 b700b5d6 2018-07-10 stsp if (widthp)
2025 b700b5d6 2018-07-10 stsp *widthp = cols;
2026 ccda2f4d 2022-06-16 stsp if (scrollxp)
2027 ccda2f4d 2022-06-16 stsp *scrollxp = scrollx;
2028 963b370f 2018-05-20 stsp if (err)
2029 963b370f 2018-05-20 stsp free(wline);
2030 963b370f 2018-05-20 stsp else
2031 963b370f 2018-05-20 stsp *wlinep = wline;
2032 963b370f 2018-05-20 stsp return err;
2033 963b370f 2018-05-20 stsp }
2034 963b370f 2018-05-20 stsp
2035 8b473291 2019-02-21 stsp static const struct got_error*
2036 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
2037 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
2038 8b473291 2019-02-21 stsp {
2039 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
2040 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
2041 8b473291 2019-02-21 stsp char *s;
2042 8b473291 2019-02-21 stsp const char *name;
2043 8b473291 2019-02-21 stsp
2044 8b473291 2019-02-21 stsp *refs_str = NULL;
2045 8b473291 2019-02-21 stsp
2046 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
2047 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
2048 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
2049 52b5abe1 2019-08-13 stsp int cmp;
2050 52b5abe1 2019-08-13 stsp
2051 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
2052 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
2053 8b473291 2019-02-21 stsp continue;
2054 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
2055 8b473291 2019-02-21 stsp name += 5;
2056 cc488aa7 2022-01-23 stsp if (strncmp(name, "got/", 4) == 0 &&
2057 cc488aa7 2022-01-23 stsp strncmp(name, "got/backup/", 11) != 0)
2058 7143d404 2019-03-12 stsp continue;
2059 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
2060 8b473291 2019-02-21 stsp name += 6;
2061 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
2062 8b473291 2019-02-21 stsp name += 8;
2063 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
2064 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
2065 79cc719f 2020-04-24 stsp continue;
2066 79cc719f 2020-04-24 stsp }
2067 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
2068 48cae60d 2020-09-22 stsp if (err)
2069 48cae60d 2020-09-22 stsp break;
2070 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
2071 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
2072 5d844a1e 2019-08-13 stsp if (err) {
2073 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
2074 48cae60d 2020-09-22 stsp free(ref_id);
2075 5d844a1e 2019-08-13 stsp break;
2076 48cae60d 2020-09-22 stsp }
2077 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
2078 5d844a1e 2019-08-13 stsp err = NULL;
2079 5d844a1e 2019-08-13 stsp tag = NULL;
2080 5d844a1e 2019-08-13 stsp }
2081 52b5abe1 2019-08-13 stsp }
2082 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
2083 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
2084 48cae60d 2020-09-22 stsp free(ref_id);
2085 52b5abe1 2019-08-13 stsp if (tag)
2086 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
2087 52b5abe1 2019-08-13 stsp if (cmp != 0)
2088 52b5abe1 2019-08-13 stsp continue;
2089 8b473291 2019-02-21 stsp s = *refs_str;
2090 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
2091 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
2092 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2093 8b473291 2019-02-21 stsp free(s);
2094 8b473291 2019-02-21 stsp *refs_str = NULL;
2095 8b473291 2019-02-21 stsp break;
2096 8b473291 2019-02-21 stsp }
2097 8b473291 2019-02-21 stsp free(s);
2098 8b473291 2019-02-21 stsp }
2099 8b473291 2019-02-21 stsp
2100 8b473291 2019-02-21 stsp return err;
2101 8b473291 2019-02-21 stsp }
2102 8b473291 2019-02-21 stsp
2103 963b370f 2018-05-20 stsp static const struct got_error *
2104 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2105 27a741e5 2019-09-11 stsp int col_tab_align)
2106 5813d178 2019-03-09 stsp {
2107 e6b8b890 2020-12-29 naddy char *smallerthan;
2108 5813d178 2019-03-09 stsp
2109 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
2110 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
2111 5813d178 2019-03-09 stsp author = smallerthan + 1;
2112 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
2113 ccda2f4d 2022-06-16 stsp return format_line(wauthor, author_width, NULL, author, 0, limit,
2114 ccda2f4d 2022-06-16 stsp col_tab_align, 0);
2115 5813d178 2019-03-09 stsp }
2116 5813d178 2019-03-09 stsp
2117 5813d178 2019-03-09 stsp static const struct got_error *
2118 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
2119 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
2120 8fdc79fe 2020-12-01 naddy int author_display_cols)
2121 80ddbec8 2018-04-29 stsp {
2122 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2123 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
2124 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2125 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
2126 5813d178 2019-03-09 stsp char *author = NULL;
2127 ccda2f4d 2022-06-16 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
2128 bb737323 2018-05-20 stsp int author_width, logmsg_width;
2129 5813d178 2019-03-09 stsp char *newline, *line = NULL;
2130 ccda2f4d 2022-06-16 stsp int col, limit, scrollx;
2131 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
2132 ccb26ccd 2018-11-05 stsp struct tm tm;
2133 45d799e2 2018-12-23 stsp time_t committer_time;
2134 11b20872 2019-11-08 stsp struct tog_color *tc;
2135 80ddbec8 2018-04-29 stsp
2136 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2137 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
2138 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
2139 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2140 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
2141 b39d25c7 2018-07-10 stsp
2142 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
2143 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
2144 b39d25c7 2018-07-10 stsp else
2145 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2146 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
2147 11b20872 2019-11-08 stsp if (tc)
2148 11b20872 2019-11-08 stsp wattr_on(view->window,
2149 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2150 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
2151 11b20872 2019-11-08 stsp if (tc)
2152 11b20872 2019-11-08 stsp wattr_off(view->window,
2153 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2154 27a741e5 2019-09-11 stsp col = limit;
2155 b39d25c7 2018-07-10 stsp if (col > avail)
2156 b39d25c7 2018-07-10 stsp goto done;
2157 6570a66d 2019-11-08 stsp
2158 6570a66d 2019-11-08 stsp if (avail >= 120) {
2159 6570a66d 2019-11-08 stsp char *id_str;
2160 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
2161 6570a66d 2019-11-08 stsp if (err)
2162 6570a66d 2019-11-08 stsp goto done;
2163 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2164 11b20872 2019-11-08 stsp if (tc)
2165 11b20872 2019-11-08 stsp wattr_on(view->window,
2166 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2167 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
2168 11b20872 2019-11-08 stsp if (tc)
2169 11b20872 2019-11-08 stsp wattr_off(view->window,
2170 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2171 6570a66d 2019-11-08 stsp free(id_str);
2172 6570a66d 2019-11-08 stsp col += 9;
2173 6570a66d 2019-11-08 stsp if (col > avail)
2174 6570a66d 2019-11-08 stsp goto done;
2175 6570a66d 2019-11-08 stsp }
2176 b39d25c7 2018-07-10 stsp
2177 10aab77f 2022-07-19 op if (s->use_committer)
2178 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(commit));
2179 10aab77f 2022-07-19 op else
2180 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(commit));
2181 5813d178 2019-03-09 stsp if (author == NULL) {
2182 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2183 80ddbec8 2018-04-29 stsp goto done;
2184 80ddbec8 2018-04-29 stsp }
2185 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
2186 bb737323 2018-05-20 stsp if (err)
2187 bb737323 2018-05-20 stsp goto done;
2188 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2189 11b20872 2019-11-08 stsp if (tc)
2190 11b20872 2019-11-08 stsp wattr_on(view->window,
2191 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2192 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
2193 bb737323 2018-05-20 stsp col += author_width;
2194 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2195 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2196 bb737323 2018-05-20 stsp col++;
2197 bb737323 2018-05-20 stsp author_width++;
2198 bb737323 2018-05-20 stsp }
2199 f0f62654 2022-09-08 mark if (tc)
2200 f0f62654 2022-09-08 mark wattr_off(view->window,
2201 f0f62654 2022-09-08 mark COLOR_PAIR(tc->colorpair), NULL);
2202 9c2eaf34 2018-05-20 stsp if (col > avail)
2203 9c2eaf34 2018-05-20 stsp goto done;
2204 80ddbec8 2018-04-29 stsp
2205 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2206 5943eee2 2019-08-13 stsp if (err)
2207 6d9fbc00 2018-04-29 stsp goto done;
2208 bb737323 2018-05-20 stsp logmsg = logmsg0;
2209 bb737323 2018-05-20 stsp while (*logmsg == '\n')
2210 bb737323 2018-05-20 stsp logmsg++;
2211 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
2212 bb737323 2018-05-20 stsp if (newline)
2213 bb737323 2018-05-20 stsp *newline = '\0';
2214 ccda2f4d 2022-06-16 stsp limit = avail - col;
2215 49b24ee5 2022-07-03 mark if (view->child && !view_is_hsplit_top(view) && limit > 0)
2216 4d1f6af3 2022-06-17 op limit--; /* for the border */
2217 ccda2f4d 2022-06-16 stsp err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2218 ccda2f4d 2022-06-16 stsp limit, col, 1);
2219 29688b02 2022-06-16 stsp if (err)
2220 29688b02 2022-06-16 stsp goto done;
2221 ccda2f4d 2022-06-16 stsp waddwstr(view->window, &wlogmsg[scrollx]);
2222 29688b02 2022-06-16 stsp col += MAX(logmsg_width, 0);
2223 27a741e5 2019-09-11 stsp while (col < avail) {
2224 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2225 bb737323 2018-05-20 stsp col++;
2226 881b2d3e 2018-04-30 stsp }
2227 80ddbec8 2018-04-29 stsp done:
2228 80ddbec8 2018-04-29 stsp free(logmsg0);
2229 bb737323 2018-05-20 stsp free(wlogmsg);
2230 5813d178 2019-03-09 stsp free(author);
2231 bb737323 2018-05-20 stsp free(wauthor);
2232 80ddbec8 2018-04-29 stsp free(line);
2233 80ddbec8 2018-04-29 stsp return err;
2234 80ddbec8 2018-04-29 stsp }
2235 26ed57b2 2018-05-19 stsp
2236 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
2237 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
2238 899d86c2 2018-05-10 stsp struct got_object_id *id)
2239 80ddbec8 2018-04-29 stsp {
2240 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
2241 e15c42de 2022-09-05 op struct got_object_id *dup;
2242 80ddbec8 2018-04-29 stsp
2243 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2244 80ddbec8 2018-04-29 stsp if (entry == NULL)
2245 899d86c2 2018-05-10 stsp return NULL;
2246 99db9666 2018-05-07 stsp
2247 e15c42de 2022-09-05 op dup = got_object_id_dup(id);
2248 e15c42de 2022-09-05 op if (dup == NULL) {
2249 e15c42de 2022-09-05 op free(entry);
2250 e15c42de 2022-09-05 op return NULL;
2251 e15c42de 2022-09-05 op }
2252 e15c42de 2022-09-05 op
2253 e15c42de 2022-09-05 op entry->id = dup;
2254 99db9666 2018-05-07 stsp entry->commit = commit;
2255 899d86c2 2018-05-10 stsp return entry;
2256 99db9666 2018-05-07 stsp }
2257 80ddbec8 2018-04-29 stsp
2258 99db9666 2018-05-07 stsp static void
2259 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2260 99db9666 2018-05-07 stsp {
2261 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2262 99db9666 2018-05-07 stsp
2263 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2264 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2265 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2266 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2267 e15c42de 2022-09-05 op free(entry->id);
2268 99db9666 2018-05-07 stsp free(entry);
2269 99db9666 2018-05-07 stsp }
2270 99db9666 2018-05-07 stsp
2271 99db9666 2018-05-07 stsp static void
2272 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2273 99db9666 2018-05-07 stsp {
2274 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2275 99db9666 2018-05-07 stsp pop_commit(commits);
2276 c4972b91 2018-05-07 stsp }
2277 c4972b91 2018-05-07 stsp
2278 c4972b91 2018-05-07 stsp static const struct got_error *
2279 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2280 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2281 13add988 2019-10-15 stsp {
2282 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2283 13add988 2019-10-15 stsp regmatch_t regmatch;
2284 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2285 13add988 2019-10-15 stsp
2286 13add988 2019-10-15 stsp *have_match = 0;
2287 13add988 2019-10-15 stsp
2288 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2289 13add988 2019-10-15 stsp if (err)
2290 13add988 2019-10-15 stsp return err;
2291 13add988 2019-10-15 stsp
2292 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2293 13add988 2019-10-15 stsp if (err)
2294 13add988 2019-10-15 stsp goto done;
2295 13add988 2019-10-15 stsp
2296 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2297 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2298 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2299 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2300 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2301 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2302 13add988 2019-10-15 stsp *have_match = 1;
2303 13add988 2019-10-15 stsp done:
2304 13add988 2019-10-15 stsp free(id_str);
2305 13add988 2019-10-15 stsp free(logmsg);
2306 13add988 2019-10-15 stsp return err;
2307 13add988 2019-10-15 stsp }
2308 13add988 2019-10-15 stsp
2309 13add988 2019-10-15 stsp static const struct got_error *
2310 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2311 c4972b91 2018-05-07 stsp {
2312 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2313 9ba79e04 2018-06-11 stsp
2314 1a76625f 2018-10-22 stsp /*
2315 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2316 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2317 1a76625f 2018-10-22 stsp * while updating the display.
2318 1a76625f 2018-10-22 stsp */
2319 4e0d2870 2020-12-07 naddy do {
2320 d9787ed8 2022-09-10 op struct got_object_id id;
2321 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2322 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2323 568eae95 2022-09-11 mark int limit_match = 0;
2324 1a76625f 2018-10-22 stsp int errcode;
2325 899d86c2 2018-05-10 stsp
2326 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2327 4e0d2870 2020-12-07 naddy NULL, NULL);
2328 d9787ed8 2022-09-10 op if (err)
2329 ecb28ae0 2018-07-16 stsp break;
2330 899d86c2 2018-05-10 stsp
2331 d9787ed8 2022-09-10 op err = got_object_open_as_commit(&commit, a->repo, &id);
2332 9ba79e04 2018-06-11 stsp if (err)
2333 9ba79e04 2018-06-11 stsp break;
2334 d9787ed8 2022-09-10 op entry = alloc_commit_queue_entry(commit, &id);
2335 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2336 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2337 9ba79e04 2018-06-11 stsp break;
2338 9ba79e04 2018-06-11 stsp }
2339 93e45b7c 2018-09-24 stsp
2340 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2341 1a76625f 2018-10-22 stsp if (errcode) {
2342 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2343 13add988 2019-10-15 stsp "pthread_mutex_lock");
2344 1a76625f 2018-10-22 stsp break;
2345 1a76625f 2018-10-22 stsp }
2346 1a76625f 2018-10-22 stsp
2347 568eae95 2022-09-11 mark entry->idx = a->real_commits->ncommits;
2348 568eae95 2022-09-11 mark TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2349 568eae95 2022-09-11 mark a->real_commits->ncommits++;
2350 1a76625f 2018-10-22 stsp
2351 568eae95 2022-09-11 mark if (*a->limiting) {
2352 568eae95 2022-09-11 mark err = match_commit(&limit_match, &id, commit,
2353 568eae95 2022-09-11 mark a->limit_regex);
2354 568eae95 2022-09-11 mark if (err)
2355 568eae95 2022-09-11 mark break;
2356 568eae95 2022-09-11 mark
2357 568eae95 2022-09-11 mark if (limit_match) {
2358 568eae95 2022-09-11 mark struct commit_queue_entry *matched;
2359 568eae95 2022-09-11 mark
2360 568eae95 2022-09-11 mark matched = alloc_commit_queue_entry(
2361 568eae95 2022-09-11 mark entry->commit, entry->id);
2362 568eae95 2022-09-11 mark if (matched == NULL) {
2363 568eae95 2022-09-11 mark err = got_error_from_errno(
2364 568eae95 2022-09-11 mark "alloc_commit_queue_entry");
2365 568eae95 2022-09-11 mark break;
2366 568eae95 2022-09-11 mark }
2367 34a842a4 2022-09-18 mark matched->commit = entry->commit;
2368 34a842a4 2022-09-18 mark got_object_commit_retain(entry->commit);
2369 568eae95 2022-09-11 mark
2370 568eae95 2022-09-11 mark matched->idx = a->limit_commits->ncommits;
2371 568eae95 2022-09-11 mark TAILQ_INSERT_TAIL(&a->limit_commits->head,
2372 568eae95 2022-09-11 mark matched, entry);
2373 568eae95 2022-09-11 mark a->limit_commits->ncommits++;
2374 568eae95 2022-09-11 mark }
2375 568eae95 2022-09-11 mark
2376 568eae95 2022-09-11 mark /*
2377 568eae95 2022-09-11 mark * This is how we signal log_thread() that we
2378 568eae95 2022-09-11 mark * have found a match, and that it should be
2379 568eae95 2022-09-11 mark * counted as a new entry for the view.
2380 568eae95 2022-09-11 mark */
2381 568eae95 2022-09-11 mark a->limit_match = limit_match;
2382 568eae95 2022-09-11 mark }
2383 568eae95 2022-09-11 mark
2384 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2385 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2386 7c1452c1 2020-03-26 stsp int have_match;
2387 d9787ed8 2022-09-10 op err = match_commit(&have_match, &id, commit, a->regex);
2388 7c1452c1 2020-03-26 stsp if (err)
2389 7c1452c1 2020-03-26 stsp break;
2390 568eae95 2022-09-11 mark
2391 568eae95 2022-09-11 mark if (*a->limiting) {
2392 568eae95 2022-09-11 mark if (limit_match && have_match)
2393 568eae95 2022-09-11 mark *a->search_next_done =
2394 568eae95 2022-09-11 mark TOG_SEARCH_HAVE_MORE;
2395 568eae95 2022-09-11 mark } else if (have_match)
2396 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2397 13add988 2019-10-15 stsp }
2398 13add988 2019-10-15 stsp
2399 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2400 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2401 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2402 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2403 7c1452c1 2020-03-26 stsp if (err)
2404 13add988 2019-10-15 stsp break;
2405 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2406 899d86c2 2018-05-10 stsp
2407 9ba79e04 2018-06-11 stsp return err;
2408 0553a4e3 2018-04-30 stsp }
2409 0553a4e3 2018-04-30 stsp
2410 2b779855 2020-12-05 naddy static void
2411 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2412 2b779855 2020-12-05 naddy {
2413 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2414 2b779855 2020-12-05 naddy int ncommits = 0;
2415 2b779855 2020-12-05 naddy
2416 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2417 2b779855 2020-12-05 naddy while (entry) {
2418 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2419 2b779855 2020-12-05 naddy s->selected_entry = entry;
2420 2b779855 2020-12-05 naddy break;
2421 2b779855 2020-12-05 naddy }
2422 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2423 2b779855 2020-12-05 naddy ncommits++;
2424 2b779855 2020-12-05 naddy }
2425 2b779855 2020-12-05 naddy }
2426 2b779855 2020-12-05 naddy
2427 0553a4e3 2018-04-30 stsp static const struct got_error *
2428 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2429 0553a4e3 2018-04-30 stsp {
2430 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2431 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2432 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2433 cbb0c8d7 2022-08-12 mark int limit = view->nlines;
2434 60493ae3 2019-06-20 stsp int width;
2435 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2436 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2437 8b473291 2019-02-21 stsp char *refs_str = NULL;
2438 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2439 11b20872 2019-11-08 stsp struct tog_color *tc;
2440 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2441 cbb0c8d7 2022-08-12 mark
2442 cbb0c8d7 2022-08-12 mark if (view_is_hsplit_top(view))
2443 cbb0c8d7 2022-08-12 mark --limit; /* account for border */
2444 0553a4e3 2018-04-30 stsp
2445 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2446 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2447 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2448 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2449 1a76625f 2018-10-22 stsp if (err)
2450 ecb28ae0 2018-07-16 stsp return err;
2451 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2452 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2453 d2075bf3 2020-12-25 stsp if (refs) {
2454 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2455 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2456 d2075bf3 2020-12-25 stsp if (err)
2457 d2075bf3 2020-12-25 stsp goto done;
2458 d2075bf3 2020-12-25 stsp }
2459 867c6645 2018-07-10 stsp }
2460 359bfafd 2019-02-22 stsp
2461 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2462 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2463 1a76625f 2018-10-22 stsp
2464 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2465 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2466 568eae95 2022-09-11 mark entry ? entry->idx + 1 : 0, s->commits->ncommits,
2467 38d166d8 2022-09-23 stsp (view->searching && !view->search_next_done) ?
2468 38d166d8 2022-09-23 stsp "searching..." : "loading...") == -1) {
2469 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2470 8f4ed634 2020-03-26 stsp goto done;
2471 8f4ed634 2020-03-26 stsp }
2472 8f4ed634 2020-03-26 stsp } else {
2473 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2474 568eae95 2022-09-11 mark const char *limit_str = NULL;
2475 f9686aa5 2020-03-27 stsp
2476 f9686aa5 2020-03-27 stsp if (view->searching) {
2477 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2478 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2479 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2480 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2481 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2482 f9686aa5 2020-03-27 stsp search_str = "searching...";
2483 f9686aa5 2020-03-27 stsp }
2484 f9686aa5 2020-03-27 stsp
2485 568eae95 2022-09-11 mark if (s->limit_view && s->commits->ncommits == 0)
2486 568eae95 2022-09-11 mark limit_str = "no matches found";
2487 568eae95 2022-09-11 mark
2488 568eae95 2022-09-11 mark if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2489 568eae95 2022-09-11 mark entry ? entry->idx + 1 : 0, s->commits->ncommits,
2490 568eae95 2022-09-11 mark search_str ? search_str : (refs_str ? refs_str : ""),
2491 568eae95 2022-09-11 mark limit_str ? limit_str : "") == -1) {
2492 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2493 8f4ed634 2020-03-26 stsp goto done;
2494 8f4ed634 2020-03-26 stsp }
2495 8b473291 2019-02-21 stsp }
2496 1a76625f 2018-10-22 stsp
2497 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2498 87411fa9 2022-06-16 stsp if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2499 87411fa9 2022-06-16 stsp "........................................",
2500 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2501 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2502 1a76625f 2018-10-22 stsp header = NULL;
2503 1a76625f 2018-10-22 stsp goto done;
2504 1a76625f 2018-10-22 stsp }
2505 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2506 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2507 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
2508 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2509 1a76625f 2018-10-22 stsp header = NULL;
2510 1a76625f 2018-10-22 stsp goto done;
2511 ecb28ae0 2018-07-16 stsp }
2512 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2513 1a76625f 2018-10-22 stsp if (err)
2514 1a76625f 2018-10-22 stsp goto done;
2515 867c6645 2018-07-10 stsp
2516 2814baeb 2018-08-01 stsp werase(view->window);
2517 867c6645 2018-07-10 stsp
2518 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2519 a3404814 2018-09-02 stsp wstandout(view->window);
2520 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2521 11b20872 2019-11-08 stsp if (tc)
2522 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2523 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2524 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2525 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2526 1a76625f 2018-10-22 stsp width++;
2527 1a76625f 2018-10-22 stsp }
2528 0c6ad1bc 2022-09-09 mark if (tc)
2529 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2530 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2531 a3404814 2018-09-02 stsp wstandend(view->window);
2532 ecb28ae0 2018-07-16 stsp free(wline);
2533 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2534 1a76625f 2018-10-22 stsp goto done;
2535 0553a4e3 2018-04-30 stsp
2536 29688b02 2022-06-16 stsp /* Grow author column size if necessary, and set view->maxx. */
2537 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2538 5813d178 2019-03-09 stsp ncommits = 0;
2539 145b6838 2022-06-16 stsp view->maxx = 0;
2540 5813d178 2019-03-09 stsp while (entry) {
2541 10aab77f 2022-07-19 op struct got_commit_object *c = entry->commit;
2542 145b6838 2022-06-16 stsp char *author, *eol, *msg, *msg0;
2543 29688b02 2022-06-16 stsp wchar_t *wauthor, *wmsg;
2544 5813d178 2019-03-09 stsp int width;
2545 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2546 5813d178 2019-03-09 stsp break;
2547 10aab77f 2022-07-19 op if (s->use_committer)
2548 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_committer(c));
2549 10aab77f 2022-07-19 op else
2550 10aab77f 2022-07-19 op author = strdup(got_object_commit_get_author(c));
2551 5813d178 2019-03-09 stsp if (author == NULL) {
2552 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2553 5813d178 2019-03-09 stsp goto done;
2554 5813d178 2019-03-09 stsp }
2555 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2556 27a741e5 2019-09-11 stsp date_display_cols);
2557 5813d178 2019-03-09 stsp if (author_cols < width)
2558 5813d178 2019-03-09 stsp author_cols = width;
2559 5813d178 2019-03-09 stsp free(wauthor);
2560 5813d178 2019-03-09 stsp free(author);
2561 a310d9c3 2022-07-21 florian if (err)
2562 a310d9c3 2022-07-21 florian goto done;
2563 10aab77f 2022-07-19 op err = got_object_commit_get_logmsg(&msg0, c);
2564 145b6838 2022-06-16 stsp if (err)
2565 145b6838 2022-06-16 stsp goto done;
2566 145b6838 2022-06-16 stsp msg = msg0;
2567 145b6838 2022-06-16 stsp while (*msg == '\n')
2568 145b6838 2022-06-16 stsp ++msg;
2569 145b6838 2022-06-16 stsp if ((eol = strchr(msg, '\n')))
2570 29688b02 2022-06-16 stsp *eol = '\0';
2571 ccda2f4d 2022-06-16 stsp err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2572 29688b02 2022-06-16 stsp date_display_cols + author_cols, 0);
2573 29688b02 2022-06-16 stsp if (err)
2574 29688b02 2022-06-16 stsp goto done;
2575 29688b02 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
2576 145b6838 2022-06-16 stsp free(msg0);
2577 29688b02 2022-06-16 stsp free(wmsg);
2578 7ca04879 2019-10-19 stsp ncommits++;
2579 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2580 5813d178 2019-03-09 stsp }
2581 5813d178 2019-03-09 stsp
2582 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2583 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2584 867c6645 2018-07-10 stsp ncommits = 0;
2585 899d86c2 2018-05-10 stsp while (entry) {
2586 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2587 899d86c2 2018-05-10 stsp break;
2588 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2589 2814baeb 2018-08-01 stsp wstandout(view->window);
2590 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2591 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2592 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2593 2814baeb 2018-08-01 stsp wstandend(view->window);
2594 0553a4e3 2018-04-30 stsp if (err)
2595 60493ae3 2019-06-20 stsp goto done;
2596 0553a4e3 2018-04-30 stsp ncommits++;
2597 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2598 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2599 80ddbec8 2018-04-29 stsp }
2600 80ddbec8 2018-04-29 stsp
2601 9b058f45 2022-06-30 mark view_border(view);
2602 1a76625f 2018-10-22 stsp done:
2603 1a76625f 2018-10-22 stsp free(id_str);
2604 8b473291 2019-02-21 stsp free(refs_str);
2605 1a76625f 2018-10-22 stsp free(ncommits_str);
2606 1a76625f 2018-10-22 stsp free(header);
2607 80ddbec8 2018-04-29 stsp return err;
2608 9f7d7167 2018-04-29 stsp }
2609 07b55e75 2018-05-10 stsp
2610 07b55e75 2018-05-10 stsp static void
2611 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2612 07b55e75 2018-05-10 stsp {
2613 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2614 07b55e75 2018-05-10 stsp int nscrolled = 0;
2615 07b55e75 2018-05-10 stsp
2616 568eae95 2022-09-11 mark entry = TAILQ_FIRST(&s->commits->head);
2617 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2618 07b55e75 2018-05-10 stsp return;
2619 9f7d7167 2018-04-29 stsp
2620 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2621 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2622 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2623 07b55e75 2018-05-10 stsp if (entry) {
2624 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2625 07b55e75 2018-05-10 stsp nscrolled++;
2626 07b55e75 2018-05-10 stsp }
2627 07b55e75 2018-05-10 stsp }
2628 aa075928 2018-05-10 stsp }
2629 aa075928 2018-05-10 stsp
2630 aa075928 2018-05-10 stsp static const struct got_error *
2631 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2632 aa075928 2018-05-10 stsp {
2633 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2634 5e224a3e 2019-02-22 stsp int errcode;
2635 8a42fca8 2019-02-22 stsp
2636 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2637 aa075928 2018-05-10 stsp
2638 5629093a 2022-07-11 stsp while (!ta->log_complete && !tog_thread_error &&
2639 5629093a 2022-07-11 stsp (ta->commits_needed > 0 || ta->load_all)) {
2640 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2641 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2642 7aafa0d1 2019-02-22 stsp if (errcode)
2643 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2644 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2645 7c1452c1 2020-03-26 stsp
2646 7c1452c1 2020-03-26 stsp /*
2647 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2648 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2649 7c1452c1 2020-03-26 stsp */
2650 7c1452c1 2020-03-26 stsp if (!wait)
2651 7c1452c1 2020-03-26 stsp break;
2652 7c1452c1 2020-03-26 stsp
2653 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2654 ffe38506 2020-12-01 naddy show_log_view(view);
2655 7c1452c1 2020-03-26 stsp update_panels();
2656 7c1452c1 2020-03-26 stsp doupdate();
2657 7c1452c1 2020-03-26 stsp
2658 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2659 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2660 82954512 2020-02-03 stsp if (errcode)
2661 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2662 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2663 82954512 2020-02-03 stsp
2664 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2665 ffe38506 2020-12-01 naddy show_log_view(view);
2666 7c1452c1 2020-03-26 stsp update_panels();
2667 7c1452c1 2020-03-26 stsp doupdate();
2668 5e224a3e 2019-02-22 stsp }
2669 5e224a3e 2019-02-22 stsp
2670 5e224a3e 2019-02-22 stsp return NULL;
2671 5e224a3e 2019-02-22 stsp }
2672 5e224a3e 2019-02-22 stsp
2673 5e224a3e 2019-02-22 stsp static const struct got_error *
2674 9b058f45 2022-06-30 mark request_log_commits(struct tog_view *view)
2675 9b058f45 2022-06-30 mark {
2676 9b058f45 2022-06-30 mark struct tog_log_view_state *state = &view->state.log;
2677 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
2678 2525dccb 2022-07-13 mark
2679 2525dccb 2022-07-13 mark if (state->thread_args.log_complete)
2680 2525dccb 2022-07-13 mark return NULL;
2681 9b058f45 2022-06-30 mark
2682 27187d45 2022-07-11 mark state->thread_args.commits_needed += view->nscrolled;
2683 9b058f45 2022-06-30 mark err = trigger_log_thread(view, 1);
2684 9b058f45 2022-06-30 mark view->nscrolled = 0;
2685 9b058f45 2022-06-30 mark
2686 9b058f45 2022-06-30 mark return err;
2687 9b058f45 2022-06-30 mark }
2688 9b058f45 2022-06-30 mark
2689 9b058f45 2022-06-30 mark static const struct got_error *
2690 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2691 5e224a3e 2019-02-22 stsp {
2692 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2693 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2694 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2695 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2696 5e224a3e 2019-02-22 stsp
2697 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2698 5e224a3e 2019-02-22 stsp return NULL;
2699 5e224a3e 2019-02-22 stsp
2700 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2701 568eae95 2022-09-11 mark if (s->commits->ncommits < ncommits_needed &&
2702 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2703 08ebd0a9 2019-02-22 stsp /*
2704 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2705 08ebd0a9 2019-02-22 stsp */
2706 94b80cfa 2022-08-01 mark s->thread_args.commits_needed +=
2707 568eae95 2022-09-11 mark ncommits_needed - s->commits->ncommits;
2708 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2709 5e224a3e 2019-02-22 stsp if (err)
2710 5e224a3e 2019-02-22 stsp return err;
2711 7aafa0d1 2019-02-22 stsp }
2712 b295e71b 2019-02-22 stsp
2713 7aafa0d1 2019-02-22 stsp do {
2714 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2715 9b058f45 2022-06-30 mark if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2716 88048b54 2019-02-21 stsp break;
2717 88048b54 2019-02-21 stsp
2718 9b058f45 2022-06-30 mark s->last_displayed_entry = pentry ?
2719 9b058f45 2022-06-30 mark pentry : s->last_displayed_entry;;
2720 aa075928 2018-05-10 stsp
2721 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2722 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2723 dd0a52c1 2018-05-20 stsp break;
2724 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2725 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2726 aa075928 2018-05-10 stsp
2727 2525dccb 2022-07-13 mark if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2728 9b058f45 2022-06-30 mark view->nscrolled += nscrolled;
2729 9b058f45 2022-06-30 mark else
2730 9b058f45 2022-06-30 mark view->nscrolled = 0;
2731 9b058f45 2022-06-30 mark
2732 dd0a52c1 2018-05-20 stsp return err;
2733 07b55e75 2018-05-10 stsp }
2734 4a7f7875 2018-05-10 stsp
2735 cd0acaa7 2018-05-20 stsp static const struct got_error *
2736 9b058f45 2022-06-30 mark open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2737 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2738 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2739 cd0acaa7 2018-05-20 stsp {
2740 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2741 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2742 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2743 cd0acaa7 2018-05-20 stsp
2744 9b058f45 2022-06-30 mark diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2745 15a94983 2018-12-23 stsp if (diff_view == NULL)
2746 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2747 ea5e7bb5 2018-08-01 stsp
2748 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2749 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2750 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2751 e5a0f69f 2018-08-18 stsp if (err == NULL)
2752 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2753 cd0acaa7 2018-05-20 stsp return err;
2754 4a7f7875 2018-05-10 stsp }
2755 4a7f7875 2018-05-10 stsp
2756 80ddbec8 2018-04-29 stsp static const struct got_error *
2757 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2758 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2759 9343a5fb 2018-06-23 stsp {
2760 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2761 941e9f74 2019-05-21 stsp
2762 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2763 941e9f74 2019-05-21 stsp if (parent == NULL)
2764 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2765 941e9f74 2019-05-21 stsp
2766 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2767 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2768 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2769 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2770 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2771 941e9f74 2019-05-21 stsp s->tree = subtree;
2772 941e9f74 2019-05-21 stsp s->selected = 0;
2773 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2774 941e9f74 2019-05-21 stsp return NULL;
2775 941e9f74 2019-05-21 stsp }
2776 941e9f74 2019-05-21 stsp
2777 941e9f74 2019-05-21 stsp static const struct got_error *
2778 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2779 a44927cc 2022-04-07 stsp struct got_commit_object *commit, const char *path)
2780 941e9f74 2019-05-21 stsp {
2781 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2782 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2783 941e9f74 2019-05-21 stsp const char *p;
2784 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2785 9343a5fb 2018-06-23 stsp
2786 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2787 941e9f74 2019-05-21 stsp p = path;
2788 941e9f74 2019-05-21 stsp while (*p) {
2789 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2790 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2791 56e0773d 2019-11-28 stsp char *te_name;
2792 33cbf02b 2020-01-12 stsp
2793 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2794 33cbf02b 2020-01-12 stsp p++;
2795 941e9f74 2019-05-21 stsp
2796 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2797 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2798 941e9f74 2019-05-21 stsp if (slash == NULL)
2799 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2800 33cbf02b 2020-01-12 stsp else
2801 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2802 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2803 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2804 56e0773d 2019-11-28 stsp break;
2805 941e9f74 2019-05-21 stsp }
2806 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2807 56e0773d 2019-11-28 stsp if (te == NULL) {
2808 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2809 56e0773d 2019-11-28 stsp free(te_name);
2810 941e9f74 2019-05-21 stsp break;
2811 941e9f74 2019-05-21 stsp }
2812 56e0773d 2019-11-28 stsp free(te_name);
2813 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2814 941e9f74 2019-05-21 stsp
2815 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2816 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2817 b03c880f 2019-05-21 stsp
2818 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2819 941e9f74 2019-05-21 stsp if (slash)
2820 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2821 941e9f74 2019-05-21 stsp else
2822 941e9f74 2019-05-21 stsp subpath = strdup(path);
2823 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2824 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2825 941e9f74 2019-05-21 stsp break;
2826 941e9f74 2019-05-21 stsp }
2827 941e9f74 2019-05-21 stsp
2828 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&tree_id, s->repo, commit,
2829 941e9f74 2019-05-21 stsp subpath);
2830 941e9f74 2019-05-21 stsp if (err)
2831 941e9f74 2019-05-21 stsp break;
2832 941e9f74 2019-05-21 stsp
2833 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2834 941e9f74 2019-05-21 stsp free(tree_id);
2835 941e9f74 2019-05-21 stsp if (err)
2836 941e9f74 2019-05-21 stsp break;
2837 941e9f74 2019-05-21 stsp
2838 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2839 941e9f74 2019-05-21 stsp if (err) {
2840 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2841 941e9f74 2019-05-21 stsp break;
2842 941e9f74 2019-05-21 stsp }
2843 941e9f74 2019-05-21 stsp if (slash == NULL)
2844 941e9f74 2019-05-21 stsp break;
2845 941e9f74 2019-05-21 stsp free(subpath);
2846 941e9f74 2019-05-21 stsp subpath = NULL;
2847 941e9f74 2019-05-21 stsp p = slash;
2848 941e9f74 2019-05-21 stsp }
2849 941e9f74 2019-05-21 stsp
2850 941e9f74 2019-05-21 stsp free(subpath);
2851 1a76625f 2018-10-22 stsp return err;
2852 61266923 2020-01-14 stsp }
2853 61266923 2020-01-14 stsp
2854 61266923 2020-01-14 stsp static const struct got_error *
2855 49b24ee5 2022-07-03 mark browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2856 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2857 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2858 55cccc34 2020-02-20 stsp {
2859 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2860 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2861 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2862 55cccc34 2020-02-20 stsp
2863 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2864 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2865 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2866 55cccc34 2020-02-20 stsp
2867 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2868 bc573f3b 2021-07-10 stsp if (err)
2869 55cccc34 2020-02-20 stsp return err;
2870 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2871 55cccc34 2020-02-20 stsp
2872 55cccc34 2020-02-20 stsp *new_view = tree_view;
2873 55cccc34 2020-02-20 stsp
2874 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2875 55cccc34 2020-02-20 stsp return NULL;
2876 55cccc34 2020-02-20 stsp
2877 a44927cc 2022-04-07 stsp return tree_view_walk_path(s, entry->commit, path);
2878 55cccc34 2020-02-20 stsp }
2879 55cccc34 2020-02-20 stsp
2880 55cccc34 2020-02-20 stsp static const struct got_error *
2881 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2882 61266923 2020-01-14 stsp {
2883 61266923 2020-01-14 stsp sigset_t sigset;
2884 61266923 2020-01-14 stsp int errcode;
2885 61266923 2020-01-14 stsp
2886 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2887 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2888 61266923 2020-01-14 stsp
2889 2497f032 2022-05-31 stsp /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2890 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2891 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2892 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2893 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2894 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGINT) == -1)
2895 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2896 2497f032 2022-05-31 stsp if (sigaddset(&sigset, SIGTERM) == -1)
2897 2497f032 2022-05-31 stsp return got_error_from_errno("sigaddset");
2898 61266923 2020-01-14 stsp
2899 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2900 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2901 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2902 61266923 2020-01-14 stsp
2903 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2904 61266923 2020-01-14 stsp if (errcode)
2905 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2906 61266923 2020-01-14 stsp
2907 61266923 2020-01-14 stsp return NULL;
2908 1a76625f 2018-10-22 stsp }
2909 1a76625f 2018-10-22 stsp
2910 1a76625f 2018-10-22 stsp static void *
2911 1a76625f 2018-10-22 stsp log_thread(void *arg)
2912 1a76625f 2018-10-22 stsp {
2913 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2914 1a76625f 2018-10-22 stsp int errcode = 0;
2915 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2916 1a76625f 2018-10-22 stsp int done = 0;
2917 61266923 2020-01-14 stsp
2918 5629093a 2022-07-11 stsp /*
2919 5629093a 2022-07-11 stsp * Sync startup with main thread such that we begin our
2920 5629093a 2022-07-11 stsp * work once view_input() has released the mutex.
2921 5629093a 2022-07-11 stsp */
2922 5629093a 2022-07-11 stsp errcode = pthread_mutex_lock(&tog_mutex);
2923 5629093a 2022-07-11 stsp if (errcode) {
2924 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_lock");
2925 61266923 2020-01-14 stsp return (void *)err;
2926 5629093a 2022-07-11 stsp }
2927 1a76625f 2018-10-22 stsp
2928 5629093a 2022-07-11 stsp err = block_signals_used_by_main_thread();
2929 5629093a 2022-07-11 stsp if (err) {
2930 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2931 5629093a 2022-07-11 stsp goto done;
2932 5629093a 2022-07-11 stsp }
2933 5629093a 2022-07-11 stsp
2934 2497f032 2022-05-31 stsp while (!done && !err && !tog_fatal_signal_received()) {
2935 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2936 5629093a 2022-07-11 stsp if (errcode) {
2937 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode,
2938 5629093a 2022-07-11 stsp "pthread_mutex_unlock");
2939 5629093a 2022-07-11 stsp goto done;
2940 5629093a 2022-07-11 stsp }
2941 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2942 1a76625f 2018-10-22 stsp if (err) {
2943 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2944 5629093a 2022-07-11 stsp goto done;
2945 1a76625f 2018-10-22 stsp err = NULL;
2946 1a76625f 2018-10-22 stsp done = 1;
2947 568eae95 2022-09-11 mark } else if (a->commits_needed > 0 && !a->load_all) {
2948 568eae95 2022-09-11 mark if (*a->limiting) {
2949 568eae95 2022-09-11 mark if (a->limit_match)
2950 568eae95 2022-09-11 mark a->commits_needed--;
2951 568eae95 2022-09-11 mark } else
2952 568eae95 2022-09-11 mark a->commits_needed--;
2953 568eae95 2022-09-11 mark }
2954 1a76625f 2018-10-22 stsp
2955 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2956 3abe8080 2019-04-10 stsp if (errcode) {
2957 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2958 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2959 5629093a 2022-07-11 stsp goto done;
2960 3abe8080 2019-04-10 stsp } else if (*a->quit)
2961 1a76625f 2018-10-22 stsp done = 1;
2962 568eae95 2022-09-11 mark else if (*a->limiting && *a->first_displayed_entry == NULL) {
2963 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2964 568eae95 2022-09-11 mark TAILQ_FIRST(&a->limit_commits->head);
2965 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2966 568eae95 2022-09-11 mark } else if (*a->first_displayed_entry == NULL) {
2967 568eae95 2022-09-11 mark *a->first_displayed_entry =
2968 568eae95 2022-09-11 mark TAILQ_FIRST(&a->real_commits->head);
2969 568eae95 2022-09-11 mark *a->selected_entry = *a->first_displayed_entry;
2970 1a76625f 2018-10-22 stsp }
2971 1a76625f 2018-10-22 stsp
2972 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2973 7c1452c1 2020-03-26 stsp if (errcode) {
2974 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2975 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2976 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2977 5629093a 2022-07-11 stsp goto done;
2978 7c1452c1 2020-03-26 stsp }
2979 7c1452c1 2020-03-26 stsp
2980 1a76625f 2018-10-22 stsp if (done)
2981 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2982 7c1452c1 2020-03-26 stsp else {
2983 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2984 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2985 7c1452c1 2020-03-26 stsp &tog_mutex);
2986 5629093a 2022-07-11 stsp if (errcode) {
2987 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2988 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2989 5629093a 2022-07-11 stsp pthread_mutex_unlock(&tog_mutex);
2990 5629093a 2022-07-11 stsp goto done;
2991 5629093a 2022-07-11 stsp }
2992 21355643 2020-12-06 stsp if (*a->quit)
2993 21355643 2020-12-06 stsp done = 1;
2994 7c1452c1 2020-03-26 stsp }
2995 1a76625f 2018-10-22 stsp }
2996 1a76625f 2018-10-22 stsp }
2997 3abe8080 2019-04-10 stsp a->log_complete = 1;
2998 5629093a 2022-07-11 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2999 5629093a 2022-07-11 stsp if (errcode)
3000 5629093a 2022-07-11 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3001 5629093a 2022-07-11 stsp done:
3002 5629093a 2022-07-11 stsp if (err) {
3003 5629093a 2022-07-11 stsp tog_thread_error = 1;
3004 5629093a 2022-07-11 stsp pthread_cond_signal(&a->commit_loaded);
3005 5629093a 2022-07-11 stsp }
3006 1a76625f 2018-10-22 stsp return (void *)err;
3007 1a76625f 2018-10-22 stsp }
3008 1a76625f 2018-10-22 stsp
3009 1a76625f 2018-10-22 stsp static const struct got_error *
3010 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
3011 1a76625f 2018-10-22 stsp {
3012 5629093a 2022-07-11 stsp const struct got_error *err = NULL, *thread_err = NULL;
3013 1a76625f 2018-10-22 stsp int errcode;
3014 1a76625f 2018-10-22 stsp
3015 1a76625f 2018-10-22 stsp if (s->thread) {
3016 1a76625f 2018-10-22 stsp s->quit = 1;
3017 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
3018 1a76625f 2018-10-22 stsp if (errcode)
3019 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3020 2af4a041 2019-05-11 jcs "pthread_cond_signal");
3021 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3022 1a76625f 2018-10-22 stsp if (errcode)
3023 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3024 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
3025 5629093a 2022-07-11 stsp errcode = pthread_join(s->thread, (void **)&thread_err);
3026 1a76625f 2018-10-22 stsp if (errcode)
3027 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
3028 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3029 1a76625f 2018-10-22 stsp if (errcode)
3030 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3031 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3032 1a76625f 2018-10-22 stsp s->thread = NULL;
3033 1a76625f 2018-10-22 stsp }
3034 1a76625f 2018-10-22 stsp
3035 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
3036 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
3037 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
3038 74467cc8 2022-06-15 stsp }
3039 74467cc8 2022-06-15 stsp
3040 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds) {
3041 74467cc8 2022-06-15 stsp const struct got_error *pack_err =
3042 74467cc8 2022-06-15 stsp got_repo_pack_fds_close(s->thread_args.pack_fds);
3043 74467cc8 2022-06-15 stsp if (err == NULL)
3044 74467cc8 2022-06-15 stsp err = pack_err;
3045 74467cc8 2022-06-15 stsp s->thread_args.pack_fds = NULL;
3046 1a76625f 2018-10-22 stsp }
3047 1a76625f 2018-10-22 stsp
3048 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
3049 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
3050 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
3051 1a76625f 2018-10-22 stsp }
3052 1a76625f 2018-10-22 stsp
3053 5629093a 2022-07-11 stsp return err ? err : thread_err;
3054 9343a5fb 2018-06-23 stsp }
3055 9343a5fb 2018-06-23 stsp
3056 9343a5fb 2018-06-23 stsp static const struct got_error *
3057 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
3058 1a76625f 2018-10-22 stsp {
3059 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
3060 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
3061 276b94a1 2020-11-13 naddy int errcode;
3062 1a76625f 2018-10-22 stsp
3063 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
3064 276b94a1 2020-11-13 naddy
3065 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3066 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3067 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3068 276b94a1 2020-11-13 naddy
3069 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3070 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3071 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3072 276b94a1 2020-11-13 naddy
3073 568eae95 2022-09-11 mark free_commits(&s->limit_commits);
3074 568eae95 2022-09-11 mark free_commits(&s->real_commits);
3075 1a76625f 2018-10-22 stsp free(s->in_repo_path);
3076 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
3077 1a76625f 2018-10-22 stsp free(s->start_id);
3078 797bc7b9 2018-10-22 stsp s->start_id = NULL;
3079 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
3080 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
3081 1a76625f 2018-10-22 stsp return err;
3082 1a76625f 2018-10-22 stsp }
3083 1a76625f 2018-10-22 stsp
3084 568eae95 2022-09-11 mark /*
3085 568eae95 2022-09-11 mark * We use two queues to implement the limit feature: first consists of
3086 568eae95 2022-09-11 mark * commits matching the current limit_regex; second is the real queue
3087 568eae95 2022-09-11 mark * of all known commits (real_commits). When the user starts limiting,
3088 568eae95 2022-09-11 mark * we swap queues such that all movement and displaying functionality
3089 568eae95 2022-09-11 mark * works with very slight change.
3090 568eae95 2022-09-11 mark */
3091 1a76625f 2018-10-22 stsp static const struct got_error *
3092 568eae95 2022-09-11 mark limit_log_view(struct tog_view *view)
3093 568eae95 2022-09-11 mark {
3094 568eae95 2022-09-11 mark struct tog_log_view_state *s = &view->state.log;
3095 568eae95 2022-09-11 mark struct commit_queue_entry *entry;
3096 568eae95 2022-09-11 mark struct tog_view *v = view;
3097 568eae95 2022-09-11 mark const struct got_error *err = NULL;
3098 568eae95 2022-09-11 mark char pattern[1024];
3099 568eae95 2022-09-11 mark int ret;
3100 568eae95 2022-09-11 mark
3101 568eae95 2022-09-11 mark if (view_is_hsplit_top(view))
3102 568eae95 2022-09-11 mark v = view->child;
3103 568eae95 2022-09-11 mark else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3104 568eae95 2022-09-11 mark v = view->parent;
3105 568eae95 2022-09-11 mark
3106 568eae95 2022-09-11 mark /* Get the pattern */
3107 568eae95 2022-09-11 mark wmove(v->window, v->nlines - 1, 0);
3108 568eae95 2022-09-11 mark wclrtoeol(v->window);
3109 568eae95 2022-09-11 mark mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3110 568eae95 2022-09-11 mark nodelay(v->window, FALSE);
3111 568eae95 2022-09-11 mark nocbreak();
3112 568eae95 2022-09-11 mark echo();
3113 568eae95 2022-09-11 mark ret = wgetnstr(v->window, pattern, sizeof(pattern));
3114 568eae95 2022-09-11 mark cbreak();
3115 568eae95 2022-09-11 mark noecho();
3116 568eae95 2022-09-11 mark nodelay(v->window, TRUE);
3117 568eae95 2022-09-11 mark if (ret == ERR)
3118 568eae95 2022-09-11 mark return NULL;
3119 568eae95 2022-09-11 mark
3120 568eae95 2022-09-11 mark if (*pattern == '\0') {
3121 568eae95 2022-09-11 mark /*
3122 568eae95 2022-09-11 mark * Safety measure for the situation where the user
3123 568eae95 2022-09-11 mark * resets limit without previously limiting anything.
3124 568eae95 2022-09-11 mark */
3125 568eae95 2022-09-11 mark if (!s->limit_view)
3126 568eae95 2022-09-11 mark return NULL;
3127 568eae95 2022-09-11 mark
3128 568eae95 2022-09-11 mark /*
3129 568eae95 2022-09-11 mark * User could have pressed Ctrl+L, which refreshed the
3130 568eae95 2022-09-11 mark * commit queues, it means we can't save previously
3131 568eae95 2022-09-11 mark * (before limit took place) displayed entries,
3132 568eae95 2022-09-11 mark * because they would point to already free'ed memory,
3133 568eae95 2022-09-11 mark * so we are forced to always select first entry of
3134 568eae95 2022-09-11 mark * the queue.
3135 568eae95 2022-09-11 mark */
3136 568eae95 2022-09-11 mark s->commits = &s->real_commits;
3137 568eae95 2022-09-11 mark s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3138 568eae95 2022-09-11 mark s->selected_entry = s->first_displayed_entry;
3139 568eae95 2022-09-11 mark s->selected = 0;
3140 568eae95 2022-09-11 mark s->limit_view = 0;
3141 568eae95 2022-09-11 mark
3142 568eae95 2022-09-11 mark return NULL;
3143 568eae95 2022-09-11 mark }
3144 568eae95 2022-09-11 mark
3145 568eae95 2022-09-11 mark if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3146 568eae95 2022-09-11 mark return NULL;
3147 568eae95 2022-09-11 mark
3148 568eae95 2022-09-11 mark s->limit_view = 1;
3149 568eae95 2022-09-11 mark
3150 568eae95 2022-09-11 mark /* Clear the screen while loading limit view */
3151 568eae95 2022-09-11 mark s->first_displayed_entry = NULL;
3152 568eae95 2022-09-11 mark s->last_displayed_entry = NULL;
3153 568eae95 2022-09-11 mark s->selected_entry = NULL;
3154 568eae95 2022-09-11 mark s->commits = &s->limit_commits;
3155 568eae95 2022-09-11 mark
3156 568eae95 2022-09-11 mark /* Prepare limit queue for new search */
3157 568eae95 2022-09-11 mark free_commits(&s->limit_commits);
3158 568eae95 2022-09-11 mark s->limit_commits.ncommits = 0;
3159 568eae95 2022-09-11 mark
3160 568eae95 2022-09-11 mark /* First process commits, which are in queue already */
3161 568eae95 2022-09-11 mark TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3162 568eae95 2022-09-11 mark int have_match = 0;
3163 568eae95 2022-09-11 mark
3164 568eae95 2022-09-11 mark err = match_commit(&have_match, entry->id,
3165 568eae95 2022-09-11 mark entry->commit, &s->limit_regex);
3166 568eae95 2022-09-11 mark if (err)
3167 568eae95 2022-09-11 mark return err;
3168 568eae95 2022-09-11 mark
3169 568eae95 2022-09-11 mark if (have_match) {
3170 568eae95 2022-09-11 mark struct commit_queue_entry *matched;
3171 568eae95 2022-09-11 mark
3172 568eae95 2022-09-11 mark matched = alloc_commit_queue_entry(entry->commit,
3173 568eae95 2022-09-11 mark entry->id);
3174 568eae95 2022-09-11 mark if (matched == NULL) {
3175 568eae95 2022-09-11 mark err = got_error_from_errno(
3176 568eae95 2022-09-11 mark "alloc_commit_queue_entry");
3177 568eae95 2022-09-11 mark break;
3178 568eae95 2022-09-11 mark }
3179 34a842a4 2022-09-18 mark matched->commit = entry->commit;
3180 34a842a4 2022-09-18 mark got_object_commit_retain(entry->commit);
3181 568eae95 2022-09-11 mark
3182 568eae95 2022-09-11 mark matched->idx = s->limit_commits.ncommits;
3183 568eae95 2022-09-11 mark TAILQ_INSERT_TAIL(&s->limit_commits.head,
3184 568eae95 2022-09-11 mark matched, entry);
3185 568eae95 2022-09-11 mark s->limit_commits.ncommits++;
3186 568eae95 2022-09-11 mark }
3187 568eae95 2022-09-11 mark }
3188 568eae95 2022-09-11 mark
3189 568eae95 2022-09-11 mark /* Second process all the commits, until we fill the screen */
3190 568eae95 2022-09-11 mark if (s->limit_commits.ncommits < view->nlines - 1 &&
3191 568eae95 2022-09-11 mark !s->thread_args.log_complete) {
3192 568eae95 2022-09-11 mark s->thread_args.commits_needed +=
3193 568eae95 2022-09-11 mark view->nlines - s->limit_commits.ncommits - 1;
3194 568eae95 2022-09-11 mark err = trigger_log_thread(view, 1);
3195 568eae95 2022-09-11 mark if (err)
3196 568eae95 2022-09-11 mark return err;
3197 568eae95 2022-09-11 mark }
3198 568eae95 2022-09-11 mark
3199 568eae95 2022-09-11 mark s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3200 568eae95 2022-09-11 mark s->selected_entry = TAILQ_FIRST(&s->commits->head);
3201 568eae95 2022-09-11 mark s->selected = 0;
3202 568eae95 2022-09-11 mark
3203 568eae95 2022-09-11 mark return NULL;
3204 568eae95 2022-09-11 mark }
3205 568eae95 2022-09-11 mark
3206 568eae95 2022-09-11 mark static const struct got_error *
3207 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
3208 60493ae3 2019-06-20 stsp {
3209 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3210 60493ae3 2019-06-20 stsp
3211 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
3212 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3213 60493ae3 2019-06-20 stsp return NULL;
3214 60493ae3 2019-06-20 stsp }
3215 60493ae3 2019-06-20 stsp
3216 60493ae3 2019-06-20 stsp static const struct got_error *
3217 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
3218 60493ae3 2019-06-20 stsp {
3219 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
3220 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3221 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
3222 60493ae3 2019-06-20 stsp
3223 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
3224 f9686aa5 2020-03-27 stsp show_log_view(view);
3225 f9686aa5 2020-03-27 stsp update_panels();
3226 f9686aa5 2020-03-27 stsp doupdate();
3227 f9686aa5 2020-03-27 stsp
3228 96e2b566 2019-07-08 stsp if (s->search_entry) {
3229 13add988 2019-10-15 stsp int errcode, ch;
3230 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3231 13add988 2019-10-15 stsp if (errcode)
3232 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3233 13add988 2019-10-15 stsp "pthread_mutex_unlock");
3234 13add988 2019-10-15 stsp ch = wgetch(view->window);
3235 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
3236 13add988 2019-10-15 stsp if (errcode)
3237 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3238 13add988 2019-10-15 stsp "pthread_mutex_lock");
3239 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3240 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3241 678cbce5 2019-07-28 stsp return NULL;
3242 678cbce5 2019-07-28 stsp }
3243 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
3244 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
3245 96e2b566 2019-07-08 stsp else
3246 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
3247 96e2b566 2019-07-08 stsp commit_queue_head, entry);
3248 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
3249 364ac6fd 2022-06-18 stsp /*
3250 f704b35c 2022-06-18 stsp * If the user has moved the cursor after we hit a match,
3251 f704b35c 2022-06-18 stsp * the position from where we should continue searching
3252 f704b35c 2022-06-18 stsp * might have changed.
3253 364ac6fd 2022-06-18 stsp */
3254 f83ada34 2022-09-13 mark if (view->searching == TOG_SEARCH_FORWARD)
3255 f83ada34 2022-09-13 mark entry = TAILQ_NEXT(s->selected_entry, entry);
3256 f83ada34 2022-09-13 mark else
3257 f83ada34 2022-09-13 mark entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3258 f83ada34 2022-09-13 mark entry);
3259 20be8d96 2019-06-21 stsp } else {
3260 5a5ede53 2021-12-09 stsp entry = s->selected_entry;
3261 20be8d96 2019-06-21 stsp }
3262 60493ae3 2019-06-20 stsp
3263 60493ae3 2019-06-20 stsp while (1) {
3264 13add988 2019-10-15 stsp int have_match = 0;
3265 13add988 2019-10-15 stsp
3266 60493ae3 2019-06-20 stsp if (entry == NULL) {
3267 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
3268 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
3269 f9967bca 2020-03-27 stsp view->search_next_done =
3270 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
3271 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3272 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
3273 f801134a 2019-06-25 stsp return NULL;
3274 60493ae3 2019-06-20 stsp }
3275 96e2b566 2019-07-08 stsp /*
3276 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
3277 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
3278 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
3279 96e2b566 2019-07-08 stsp */
3280 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
3281 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
3282 60493ae3 2019-06-20 stsp }
3283 60493ae3 2019-06-20 stsp
3284 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
3285 13add988 2019-10-15 stsp &view->regex);
3286 5943eee2 2019-08-13 stsp if (err)
3287 13add988 2019-10-15 stsp break;
3288 13add988 2019-10-15 stsp if (have_match) {
3289 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3290 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
3291 60493ae3 2019-06-20 stsp break;
3292 60493ae3 2019-06-20 stsp }
3293 13add988 2019-10-15 stsp
3294 96e2b566 2019-07-08 stsp s->search_entry = entry;
3295 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
3296 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
3297 b1bf1435 2019-06-21 stsp else
3298 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
3299 60493ae3 2019-06-20 stsp }
3300 60493ae3 2019-06-20 stsp
3301 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
3302 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
3303 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
3304 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
3305 60493ae3 2019-06-20 stsp if (err)
3306 60493ae3 2019-06-20 stsp return err;
3307 ead14cbe 2019-06-21 stsp cur++;
3308 ead14cbe 2019-06-21 stsp }
3309 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
3310 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
3311 60493ae3 2019-06-20 stsp if (err)
3312 60493ae3 2019-06-20 stsp return err;
3313 ead14cbe 2019-06-21 stsp cur--;
3314 60493ae3 2019-06-20 stsp }
3315 60493ae3 2019-06-20 stsp }
3316 60493ae3 2019-06-20 stsp
3317 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3318 96e2b566 2019-07-08 stsp
3319 60493ae3 2019-06-20 stsp return NULL;
3320 60493ae3 2019-06-20 stsp }
3321 60493ae3 2019-06-20 stsp
3322 60493ae3 2019-06-20 stsp static const struct got_error *
3323 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3324 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3325 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3326 80ddbec8 2018-04-29 stsp {
3327 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3328 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3329 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3330 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3331 1a76625f 2018-10-22 stsp int errcode;
3332 80ddbec8 2018-04-29 stsp
3333 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3334 f135c941 2020-02-20 stsp free(s->in_repo_path);
3335 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3336 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3337 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3338 f135c941 2020-02-20 stsp }
3339 ecb28ae0 2018-07-16 stsp
3340 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3341 568eae95 2022-09-11 mark TAILQ_INIT(&s->real_commits.head);
3342 568eae95 2022-09-11 mark s->real_commits.ncommits = 0;
3343 568eae95 2022-09-11 mark s->commits = &s->real_commits;
3344 78756c87 2020-11-24 stsp
3345 568eae95 2022-09-11 mark TAILQ_INIT(&s->limit_commits.head);
3346 568eae95 2022-09-11 mark s->limit_view = 0;
3347 568eae95 2022-09-11 mark s->limit_commits.ncommits = 0;
3348 568eae95 2022-09-11 mark
3349 fb2756b9 2018-08-04 stsp s->repo = repo;
3350 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3351 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3352 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3353 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3354 9cd7cbd1 2020-12-07 stsp goto done;
3355 9cd7cbd1 2020-12-07 stsp }
3356 9cd7cbd1 2020-12-07 stsp }
3357 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3358 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3359 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3360 5036bf37 2018-09-24 stsp goto done;
3361 5036bf37 2018-09-24 stsp }
3362 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3363 e5a0f69f 2018-08-18 stsp
3364 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3365 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3366 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3367 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3368 11b20872 2019-11-08 stsp if (err)
3369 11b20872 2019-11-08 stsp goto done;
3370 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3371 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3372 11b20872 2019-11-08 stsp if (err) {
3373 11b20872 2019-11-08 stsp free_colors(&s->colors);
3374 11b20872 2019-11-08 stsp goto done;
3375 11b20872 2019-11-08 stsp }
3376 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3377 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3378 11b20872 2019-11-08 stsp if (err) {
3379 11b20872 2019-11-08 stsp free_colors(&s->colors);
3380 11b20872 2019-11-08 stsp goto done;
3381 11b20872 2019-11-08 stsp }
3382 11b20872 2019-11-08 stsp }
3383 11b20872 2019-11-08 stsp
3384 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3385 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3386 571ccd73 2022-07-19 mark view->resize = resize_log_view;
3387 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3388 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3389 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3390 1a76625f 2018-10-22 stsp
3391 74467cc8 2022-06-15 stsp if (s->thread_args.pack_fds == NULL) {
3392 74467cc8 2022-06-15 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3393 74467cc8 2022-06-15 stsp if (err)
3394 74467cc8 2022-06-15 stsp goto done;
3395 74467cc8 2022-06-15 stsp }
3396 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3397 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3398 0ae84acc 2022-06-15 tracey if (err)
3399 0ae84acc 2022-06-15 tracey goto done;
3400 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3401 b672a97a 2020-01-27 stsp !s->log_branches);
3402 1a76625f 2018-10-22 stsp if (err)
3403 1a76625f 2018-10-22 stsp goto done;
3404 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3405 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3406 c5b78334 2020-01-12 stsp if (err)
3407 c5b78334 2020-01-12 stsp goto done;
3408 1a76625f 2018-10-22 stsp
3409 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3410 1a76625f 2018-10-22 stsp if (errcode) {
3411 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3412 1a76625f 2018-10-22 stsp goto done;
3413 1a76625f 2018-10-22 stsp }
3414 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3415 7c1452c1 2020-03-26 stsp if (errcode) {
3416 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3417 7c1452c1 2020-03-26 stsp goto done;
3418 7c1452c1 2020-03-26 stsp }
3419 1a76625f 2018-10-22 stsp
3420 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3421 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3422 568eae95 2022-09-11 mark s->thread_args.real_commits = &s->real_commits;
3423 568eae95 2022-09-11 mark s->thread_args.limit_commits = &s->limit_commits;
3424 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3425 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3426 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3427 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3428 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3429 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3430 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3431 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3432 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3433 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3434 568eae95 2022-09-11 mark s->thread_args.limiting = &s->limit_view;
3435 568eae95 2022-09-11 mark s->thread_args.limit_regex = &s->limit_regex;
3436 568eae95 2022-09-11 mark s->thread_args.limit_commits = &s->limit_commits;
3437 ba4f502b 2018-08-04 stsp done:
3438 1a76625f 2018-10-22 stsp if (err)
3439 1a76625f 2018-10-22 stsp close_log_view(view);
3440 ba4f502b 2018-08-04 stsp return err;
3441 ba4f502b 2018-08-04 stsp }
3442 ba4f502b 2018-08-04 stsp
3443 e5a0f69f 2018-08-18 stsp static const struct got_error *
3444 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3445 ba4f502b 2018-08-04 stsp {
3446 f2f6d207 2020-11-24 stsp const struct got_error *err;
3447 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3448 ba4f502b 2018-08-04 stsp
3449 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
3450 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3451 2b380cc8 2018-10-24 stsp &s->thread_args);
3452 2b380cc8 2018-10-24 stsp if (errcode)
3453 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3454 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3455 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3456 f2f6d207 2020-11-24 stsp if (err)
3457 f2f6d207 2020-11-24 stsp return err;
3458 f2f6d207 2020-11-24 stsp }
3459 2b380cc8 2018-10-24 stsp }
3460 2b380cc8 2018-10-24 stsp
3461 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3462 b880cc75 2022-06-30 mark }
3463 b880cc75 2022-06-30 mark
3464 b880cc75 2022-06-30 mark static void
3465 b880cc75 2022-06-30 mark log_move_cursor_up(struct tog_view *view, int page, int home)
3466 b880cc75 2022-06-30 mark {
3467 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3468 b880cc75 2022-06-30 mark
3469 b880cc75 2022-06-30 mark if (s->first_displayed_entry == NULL)
3470 b880cc75 2022-06-30 mark return;
3471 568eae95 2022-09-11 mark if (s->selected_entry->idx == 0)
3472 568eae95 2022-09-11 mark view->count = 0;
3473 b880cc75 2022-06-30 mark
3474 568eae95 2022-09-11 mark if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3475 b880cc75 2022-06-30 mark || home)
3476 b880cc75 2022-06-30 mark s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3477 b880cc75 2022-06-30 mark
3478 b880cc75 2022-06-30 mark if (!page && !home && s->selected > 0)
3479 b880cc75 2022-06-30 mark --s->selected;
3480 b880cc75 2022-06-30 mark else
3481 568eae95 2022-09-11 mark log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3482 b880cc75 2022-06-30 mark
3483 b880cc75 2022-06-30 mark select_commit(s);
3484 b880cc75 2022-06-30 mark return;
3485 b880cc75 2022-06-30 mark }
3486 b880cc75 2022-06-30 mark
3487 b880cc75 2022-06-30 mark static const struct got_error *
3488 b880cc75 2022-06-30 mark log_move_cursor_down(struct tog_view *view, int page)
3489 b880cc75 2022-06-30 mark {
3490 b880cc75 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
3491 b880cc75 2022-06-30 mark const struct got_error *err = NULL;
3492 631e7531 2022-08-12 mark int eos = view->nlines - 2;
3493 b880cc75 2022-06-30 mark
3494 568eae95 2022-09-11 mark if (s->first_displayed_entry == NULL)
3495 568eae95 2022-09-11 mark return NULL;
3496 568eae95 2022-09-11 mark
3497 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3498 568eae95 2022-09-11 mark s->selected_entry->idx >= s->commits->ncommits - 1)
3499 b880cc75 2022-06-30 mark return NULL;
3500 b880cc75 2022-06-30 mark
3501 631e7531 2022-08-12 mark if (view_is_hsplit_top(view))
3502 631e7531 2022-08-12 mark --eos; /* border consumes the last line */
3503 b880cc75 2022-06-30 mark
3504 631e7531 2022-08-12 mark if (!page) {
3505 568eae95 2022-09-11 mark if (s->selected < MIN(eos, s->commits->ncommits - 1))
3506 b880cc75 2022-06-30 mark ++s->selected;
3507 b880cc75 2022-06-30 mark else
3508 b880cc75 2022-06-30 mark err = log_scroll_down(view, 1);
3509 11edf34c 2022-08-12 mark } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3510 631e7531 2022-08-12 mark struct commit_queue_entry *entry;
3511 631e7531 2022-08-12 mark int n;
3512 631e7531 2022-08-12 mark
3513 631e7531 2022-08-12 mark s->selected = 0;
3514 568eae95 2022-09-11 mark entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
3515 631e7531 2022-08-12 mark s->last_displayed_entry = entry;
3516 631e7531 2022-08-12 mark for (n = 0; n <= eos; n++) {
3517 631e7531 2022-08-12 mark if (entry == NULL)
3518 631e7531 2022-08-12 mark break;
3519 631e7531 2022-08-12 mark s->first_displayed_entry = entry;
3520 631e7531 2022-08-12 mark entry = TAILQ_PREV(entry, commit_queue_head, entry);
3521 631e7531 2022-08-12 mark }
3522 631e7531 2022-08-12 mark if (n > 0)
3523 631e7531 2022-08-12 mark s->selected = n - 1;
3524 b880cc75 2022-06-30 mark } else {
3525 568eae95 2022-09-11 mark if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
3526 cbb0c8d7 2022-08-12 mark s->thread_args.log_complete)
3527 cbb0c8d7 2022-08-12 mark s->selected += MIN(page,
3528 568eae95 2022-09-11 mark s->commits->ncommits - s->selected_entry->idx - 1);
3529 cbb0c8d7 2022-08-12 mark else
3530 cbb0c8d7 2022-08-12 mark err = log_scroll_down(view, page);
3531 b880cc75 2022-06-30 mark }
3532 b880cc75 2022-06-30 mark if (err)
3533 b880cc75 2022-06-30 mark return err;
3534 b880cc75 2022-06-30 mark
3535 9b058f45 2022-06-30 mark /*
3536 9b058f45 2022-06-30 mark * We might necessarily overshoot in horizontal
3537 9b058f45 2022-06-30 mark * splits; if so, select the last displayed commit.
3538 9b058f45 2022-06-30 mark */
3539 374f69dd 2022-08-13 stsp if (s->first_displayed_entry && s->last_displayed_entry) {
3540 374f69dd 2022-08-13 stsp s->selected = MIN(s->selected,
3541 374f69dd 2022-08-13 stsp s->last_displayed_entry->idx -
3542 374f69dd 2022-08-13 stsp s->first_displayed_entry->idx);
3543 374f69dd 2022-08-13 stsp }
3544 9b058f45 2022-06-30 mark
3545 b880cc75 2022-06-30 mark select_commit(s);
3546 b880cc75 2022-06-30 mark
3547 b880cc75 2022-06-30 mark if (s->thread_args.log_complete &&
3548 568eae95 2022-09-11 mark s->selected_entry->idx == s->commits->ncommits - 1)
3549 b880cc75 2022-06-30 mark view->count = 0;
3550 b880cc75 2022-06-30 mark
3551 b880cc75 2022-06-30 mark return NULL;
3552 e5a0f69f 2018-08-18 stsp }
3553 04cc582a 2018-08-01 stsp
3554 9b058f45 2022-06-30 mark static void
3555 9b058f45 2022-06-30 mark view_get_split(struct tog_view *view, int *y, int *x)
3556 9b058f45 2022-06-30 mark {
3557 76364b2d 2022-07-02 mark *x = 0;
3558 76364b2d 2022-07-02 mark *y = 0;
3559 76364b2d 2022-07-02 mark
3560 3c1dfe12 2022-07-08 mark if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3561 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_y)
3562 3c1dfe12 2022-07-08 mark *y = view->child->resized_y;
3563 7532ccda 2022-07-11 mark else if (view->resized_y)
3564 7532ccda 2022-07-11 mark *y = view->resized_y;
3565 3c1dfe12 2022-07-08 mark else
3566 3c1dfe12 2022-07-08 mark *y = view_split_begin_y(view->lines);
3567 7532ccda 2022-07-11 mark } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3568 3c1dfe12 2022-07-08 mark if (view->child && view->child->resized_x)
3569 3c1dfe12 2022-07-08 mark *x = view->child->resized_x;
3570 7532ccda 2022-07-11 mark else if (view->resized_x)
3571 7532ccda 2022-07-11 mark *x = view->resized_x;
3572 3c1dfe12 2022-07-08 mark else
3573 3c1dfe12 2022-07-08 mark *x = view_split_begin_x(view->begin_x);
3574 3c1dfe12 2022-07-08 mark }
3575 9b058f45 2022-06-30 mark }
3576 9b058f45 2022-06-30 mark
3577 9b058f45 2022-06-30 mark /* Split view horizontally at y and offset view->state->selected line. */
3578 e5a0f69f 2018-08-18 stsp static const struct got_error *
3579 9b058f45 2022-06-30 mark view_init_hsplit(struct tog_view *view, int y)
3580 9b058f45 2022-06-30 mark {
3581 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
3582 9b058f45 2022-06-30 mark
3583 9b058f45 2022-06-30 mark view->nlines = y;
3584 d2366e29 2022-07-07 mark view->ncols = COLS;
3585 9b058f45 2022-06-30 mark err = view_resize(view);
3586 9b058f45 2022-06-30 mark if (err)
3587 9b058f45 2022-06-30 mark return err;
3588 9b058f45 2022-06-30 mark
3589 9b058f45 2022-06-30 mark err = offset_selection_down(view);
3590 9b058f45 2022-06-30 mark
3591 9b058f45 2022-06-30 mark return err;
3592 94b80cfa 2022-08-01 mark }
3593 94b80cfa 2022-08-01 mark
3594 94b80cfa 2022-08-01 mark static const struct got_error *
3595 94b80cfa 2022-08-01 mark log_goto_line(struct tog_view *view, int nlines)
3596 94b80cfa 2022-08-01 mark {
3597 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
3598 94b80cfa 2022-08-01 mark struct tog_log_view_state *s = &view->state.log;
3599 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
3600 374f69dd 2022-08-13 stsp
3601 374f69dd 2022-08-13 stsp if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3602 374f69dd 2022-08-13 stsp return NULL;
3603 94b80cfa 2022-08-01 mark
3604 94b80cfa 2022-08-01 mark g = view->gline;
3605 94b80cfa 2022-08-01 mark view->gline = 0;
3606 94b80cfa 2022-08-01 mark
3607 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
3608 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
3609 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
3610 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
3611 94b80cfa 2022-08-01 mark select_commit(s);
3612 94b80cfa 2022-08-01 mark return NULL;
3613 94b80cfa 2022-08-01 mark }
3614 94b80cfa 2022-08-01 mark
3615 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
3616 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view, g - idx - 1);
3617 94b80cfa 2022-08-01 mark if (!err && g > s->selected_entry->idx + 1)
3618 94b80cfa 2022-08-01 mark err = log_move_cursor_down(view,
3619 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1);
3620 94b80cfa 2022-08-01 mark if (err)
3621 94b80cfa 2022-08-01 mark return err;
3622 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
3623 94b80cfa 2022-08-01 mark log_move_cursor_up(view, idx - g + 1, 0);
3624 94b80cfa 2022-08-01 mark
3625 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
3626 94b80cfa 2022-08-01 mark s->selected = g - 1;
3627 94b80cfa 2022-08-01 mark
3628 94b80cfa 2022-08-01 mark select_commit(s);
3629 94b80cfa 2022-08-01 mark return NULL;
3630 94b80cfa 2022-08-01 mark
3631 9b058f45 2022-06-30 mark }
3632 9b058f45 2022-06-30 mark
3633 9b058f45 2022-06-30 mark static const struct got_error *
3634 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3635 e5a0f69f 2018-08-18 stsp {
3636 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3637 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3638 631e7531 2022-08-12 mark int eos, nscroll;
3639 80ddbec8 2018-04-29 stsp
3640 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3641 a6d37fac 2022-07-03 mark if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3642 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3643 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3644 568eae95 2022-09-11 mark err = log_move_cursor_down(view, s->commits->ncommits);
3645 0dca135e 2022-06-30 mark s->thread_args.load_all = 0;
3646 fb280deb 2021-08-30 stsp }
3647 11edf34c 2022-08-12 mark if (err)
3648 11edf34c 2022-08-12 mark return err;
3649 528dedf3 2021-08-30 stsp }
3650 0dca135e 2022-06-30 mark
3651 0dca135e 2022-06-30 mark eos = nscroll = view->nlines - 1;
3652 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
3653 0dca135e 2022-06-30 mark --eos; /* border */
3654 94b80cfa 2022-08-01 mark
3655 94b80cfa 2022-08-01 mark if (view->gline)
3656 94b80cfa 2022-08-01 mark return log_goto_line(view, eos);
3657 0dca135e 2022-06-30 mark
3658 528dedf3 2021-08-30 stsp switch (ch) {
3659 568eae95 2022-09-11 mark case '&':
3660 568eae95 2022-09-11 mark err = limit_log_view(view);
3661 568eae95 2022-09-11 mark break;
3662 1e37a5c2 2019-05-12 jcs case 'q':
3663 1e37a5c2 2019-05-12 jcs s->quit = 1;
3664 145b6838 2022-06-16 stsp break;
3665 145b6838 2022-06-16 stsp case '0':
3666 145b6838 2022-06-16 stsp view->x = 0;
3667 145b6838 2022-06-16 stsp break;
3668 145b6838 2022-06-16 stsp case '$':
3669 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 2, 0);
3670 640cd7ff 2022-06-22 mark view->count = 0;
3671 145b6838 2022-06-16 stsp break;
3672 145b6838 2022-06-16 stsp case KEY_RIGHT:
3673 145b6838 2022-06-16 stsp case 'l':
3674 145b6838 2022-06-16 stsp if (view->x + view->ncols / 2 < view->maxx)
3675 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
3676 640cd7ff 2022-06-22 mark else
3677 640cd7ff 2022-06-22 mark view->count = 0;
3678 1e37a5c2 2019-05-12 jcs break;
3679 145b6838 2022-06-16 stsp case KEY_LEFT:
3680 145b6838 2022-06-16 stsp case 'h':
3681 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
3682 640cd7ff 2022-06-22 mark if (view->x <= 0)
3683 640cd7ff 2022-06-22 mark view->count = 0;
3684 145b6838 2022-06-16 stsp break;
3685 1e37a5c2 2019-05-12 jcs case 'k':
3686 1e37a5c2 2019-05-12 jcs case KEY_UP:
3687 1e37a5c2 2019-05-12 jcs case '<':
3688 1e37a5c2 2019-05-12 jcs case ',':
3689 02ffd0d5 2021-10-17 stsp case CTRL('p'):
3690 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 0);
3691 912a3f79 2021-08-30 j break;
3692 912a3f79 2021-08-30 j case 'g':
3693 912a3f79 2021-08-30 j case KEY_HOME:
3694 b880cc75 2022-06-30 mark log_move_cursor_up(view, 0, 1);
3695 640cd7ff 2022-06-22 mark view->count = 0;
3696 1e37a5c2 2019-05-12 jcs break;
3697 83cc4199 2022-06-13 stsp case CTRL('u'):
3698 33c3719a 2022-06-15 stsp case 'u':
3699 83cc4199 2022-06-13 stsp nscroll /= 2;
3700 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3701 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3702 a4292ac5 2019-05-12 jcs case CTRL('b'):
3703 61417565 2022-06-20 mark case 'b':
3704 b880cc75 2022-06-30 mark log_move_cursor_up(view, nscroll, 0);
3705 1e37a5c2 2019-05-12 jcs break;
3706 1e37a5c2 2019-05-12 jcs case 'j':
3707 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3708 1e37a5c2 2019-05-12 jcs case '>':
3709 1e37a5c2 2019-05-12 jcs case '.':
3710 02ffd0d5 2021-10-17 stsp case CTRL('n'):
3711 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, 0);
3712 912a3f79 2021-08-30 j break;
3713 10aab77f 2022-07-19 op case '@':
3714 10aab77f 2022-07-19 op s->use_committer = !s->use_committer;
3715 10aab77f 2022-07-19 op break;
3716 912a3f79 2021-08-30 j case 'G':
3717 912a3f79 2021-08-30 j case KEY_END: {
3718 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3719 912a3f79 2021-08-30 j * traverse them all. */
3720 640cd7ff 2022-06-22 mark view->count = 0;
3721 631e7531 2022-08-12 mark s->thread_args.load_all = 1;
3722 631e7531 2022-08-12 mark if (!s->thread_args.log_complete)
3723 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3724 568eae95 2022-09-11 mark err = log_move_cursor_down(view, s->commits->ncommits);
3725 631e7531 2022-08-12 mark s->thread_args.load_all = 0;
3726 1e37a5c2 2019-05-12 jcs break;
3727 912a3f79 2021-08-30 j }
3728 80b7e8da 2022-06-11 stsp case CTRL('d'):
3729 33c3719a 2022-06-15 stsp case 'd':
3730 83cc4199 2022-06-13 stsp nscroll /= 2;
3731 83cc4199 2022-06-13 stsp /* FALL THROUGH */
3732 83cc4199 2022-06-13 stsp case KEY_NPAGE:
3733 61417565 2022-06-20 mark case CTRL('f'):
3734 48bb96f0 2022-06-20 naddy case 'f':
3735 b880cc75 2022-06-30 mark case ' ':
3736 b880cc75 2022-06-30 mark err = log_move_cursor_down(view, nscroll);
3737 1e37a5c2 2019-05-12 jcs break;
3738 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3739 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3740 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3741 568eae95 2022-09-11 mark if (s->selected > s->commits->ncommits - 1)
3742 568eae95 2022-09-11 mark s->selected = s->commits->ncommits - 1;
3743 2b779855 2020-12-05 naddy select_commit(s);
3744 568eae95 2022-09-11 mark if (s->commits->ncommits < view->nlines - 1 &&
3745 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3746 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3747 568eae95 2022-09-11 mark s->commits->ncommits;
3748 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3749 0bf7f153 2020-12-02 naddy }
3750 1e37a5c2 2019-05-12 jcs break;
3751 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3752 49b24ee5 2022-07-03 mark case '\r':
3753 640cd7ff 2022-06-22 mark view->count = 0;
3754 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3755 e5a0f69f 2018-08-18 stsp break;
3756 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3757 1e37a5c2 2019-05-12 jcs break;
3758 5e98fb33 2022-07-22 mark case 'T':
3759 640cd7ff 2022-06-22 mark view->count = 0;
3760 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3761 5036bf37 2018-09-24 stsp break;
3762 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
3763 1e37a5c2 2019-05-12 jcs break;
3764 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3765 21355643 2020-12-06 stsp case CTRL('l'):
3766 21355643 2020-12-06 stsp case 'B':
3767 640cd7ff 2022-06-22 mark view->count = 0;
3768 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3769 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3770 1e37a5c2 2019-05-12 jcs break;
3771 21355643 2020-12-06 stsp err = stop_log_thread(s);
3772 74cfe85e 2020-10-20 stsp if (err)
3773 74cfe85e 2020-10-20 stsp return err;
3774 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3775 21355643 2020-12-06 stsp char *parent_path;
3776 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3777 21355643 2020-12-06 stsp if (err)
3778 21355643 2020-12-06 stsp return err;
3779 21355643 2020-12-06 stsp free(s->in_repo_path);
3780 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3781 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3782 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3783 21355643 2020-12-06 stsp struct got_object_id *start_id;
3784 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3785 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3786 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3787 ea371198 2022-11-17 stsp if (err) {
3788 ea371198 2022-11-17 stsp if (s->head_ref_name == NULL ||
3789 ea371198 2022-11-17 stsp err->code != GOT_ERR_NOT_REF)
3790 ea371198 2022-11-17 stsp return err;
3791 ea371198 2022-11-17 stsp /* Try to cope with deleted references. */
3792 ea371198 2022-11-17 stsp free(s->head_ref_name);
3793 ea371198 2022-11-17 stsp s->head_ref_name = NULL;
3794 ea371198 2022-11-17 stsp err = got_repo_match_object_id(&start_id,
3795 ea371198 2022-11-17 stsp NULL, GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT,
3796 ea371198 2022-11-17 stsp &tog_refs, s->repo);
3797 ea371198 2022-11-17 stsp if (err)
3798 ea371198 2022-11-17 stsp return err;
3799 ea371198 2022-11-17 stsp }
3800 21355643 2020-12-06 stsp free(s->start_id);
3801 21355643 2020-12-06 stsp s->start_id = start_id;
3802 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3803 21355643 2020-12-06 stsp } else /* 'B' */
3804 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3805 21355643 2020-12-06 stsp
3806 b0dd8d27 2022-06-16 stsp if (s->thread_args.pack_fds == NULL) {
3807 b0dd8d27 2022-06-16 stsp err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3808 b0dd8d27 2022-06-16 stsp if (err)
3809 b0dd8d27 2022-06-16 stsp return err;
3810 b0dd8d27 2022-06-16 stsp }
3811 74467cc8 2022-06-15 stsp err = got_repo_open(&s->thread_args.repo,
3812 74467cc8 2022-06-15 stsp got_repo_get_path(s->repo), NULL,
3813 74467cc8 2022-06-15 stsp s->thread_args.pack_fds);
3814 74cfe85e 2020-10-20 stsp if (err)
3815 21355643 2020-12-06 stsp return err;
3816 51a10b52 2020-12-26 stsp tog_free_refs();
3817 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, 0);
3818 ca51c541 2020-12-07 stsp if (err)
3819 ca51c541 2020-12-07 stsp return err;
3820 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3821 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3822 d01904d4 2019-06-25 stsp if (err)
3823 d01904d4 2019-06-25 stsp return err;
3824 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3825 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3826 b672a97a 2020-01-27 stsp if (err)
3827 b672a97a 2020-01-27 stsp return err;
3828 568eae95 2022-09-11 mark free_commits(&s->real_commits);
3829 568eae95 2022-09-11 mark free_commits(&s->limit_commits);
3830 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3831 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3832 21355643 2020-12-06 stsp s->selected_entry = NULL;
3833 21355643 2020-12-06 stsp s->selected = 0;
3834 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3835 21355643 2020-12-06 stsp s->quit = 0;
3836 9b058f45 2022-06-30 mark s->thread_args.commits_needed = view->lines;
3837 dfee752e 2022-06-18 op s->matched_entry = NULL;
3838 dfee752e 2022-06-18 op s->search_entry = NULL;
3839 01a7bcaf 2022-07-22 mark view->offset = 0;
3840 d01904d4 2019-06-25 stsp break;
3841 5e98fb33 2022-07-22 mark case 'R':
3842 640cd7ff 2022-06-22 mark view->count = 0;
3843 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
3844 6458efa5 2020-11-24 stsp break;
3845 1e37a5c2 2019-05-12 jcs default:
3846 640cd7ff 2022-06-22 mark view->count = 0;
3847 1e37a5c2 2019-05-12 jcs break;
3848 899d86c2 2018-05-10 stsp }
3849 e5a0f69f 2018-08-18 stsp
3850 80ddbec8 2018-04-29 stsp return err;
3851 80ddbec8 2018-04-29 stsp }
3852 80ddbec8 2018-04-29 stsp
3853 4ed7e80c 2018-05-20 stsp static const struct got_error *
3854 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3855 c2db6724 2019-01-04 stsp {
3856 c2db6724 2019-01-04 stsp const struct got_error *error;
3857 c2db6724 2019-01-04 stsp
3858 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3859 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3860 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3861 37c06ea4 2019-07-15 stsp #endif
3862 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3863 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3864 c2db6724 2019-01-04 stsp
3865 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3866 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3867 c2db6724 2019-01-04 stsp
3868 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3869 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3870 c2db6724 2019-01-04 stsp
3871 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3872 c2db6724 2019-01-04 stsp if (error != NULL)
3873 c2db6724 2019-01-04 stsp return error;
3874 c2db6724 2019-01-04 stsp
3875 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3876 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3877 c2db6724 2019-01-04 stsp
3878 c2db6724 2019-01-04 stsp return NULL;
3879 c2db6724 2019-01-04 stsp }
3880 c2db6724 2019-01-04 stsp
3881 a915003a 2019-02-05 stsp static void
3882 a915003a 2019-02-05 stsp init_curses(void)
3883 a915003a 2019-02-05 stsp {
3884 2497f032 2022-05-31 stsp /*
3885 2497f032 2022-05-31 stsp * Override default signal handlers before starting ncurses.
3886 2497f032 2022-05-31 stsp * This should prevent ncurses from installing its own
3887 2497f032 2022-05-31 stsp * broken cleanup() signal handler.
3888 2497f032 2022-05-31 stsp */
3889 2497f032 2022-05-31 stsp signal(SIGWINCH, tog_sigwinch);
3890 2497f032 2022-05-31 stsp signal(SIGPIPE, tog_sigpipe);
3891 2497f032 2022-05-31 stsp signal(SIGCONT, tog_sigcont);
3892 2497f032 2022-05-31 stsp signal(SIGINT, tog_sigint);
3893 2497f032 2022-05-31 stsp signal(SIGTERM, tog_sigterm);
3894 2497f032 2022-05-31 stsp
3895 a915003a 2019-02-05 stsp initscr();
3896 a915003a 2019-02-05 stsp cbreak();
3897 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3898 a915003a 2019-02-05 stsp noecho();
3899 a915003a 2019-02-05 stsp nonl();
3900 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3901 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3902 a915003a 2019-02-05 stsp curs_set(0);
3903 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3904 6d17833f 2019-11-08 stsp start_color();
3905 6d17833f 2019-11-08 stsp use_default_colors();
3906 6d17833f 2019-11-08 stsp }
3907 a915003a 2019-02-05 stsp }
3908 a915003a 2019-02-05 stsp
3909 c2db6724 2019-01-04 stsp static const struct got_error *
3910 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3911 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3912 f135c941 2020-02-20 stsp {
3913 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3914 f135c941 2020-02-20 stsp
3915 f135c941 2020-02-20 stsp if (argc == 0) {
3916 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3917 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3918 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3919 f135c941 2020-02-20 stsp return NULL;
3920 f135c941 2020-02-20 stsp }
3921 f135c941 2020-02-20 stsp
3922 f135c941 2020-02-20 stsp if (worktree) {
3923 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3924 bfd61697 2020-11-14 stsp char *p;
3925 f135c941 2020-02-20 stsp
3926 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3927 f135c941 2020-02-20 stsp if (err)
3928 f135c941 2020-02-20 stsp return err;
3929 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3930 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3931 bfd61697 2020-11-14 stsp p) == -1) {
3932 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3933 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3934 f135c941 2020-02-20 stsp }
3935 f135c941 2020-02-20 stsp free(p);
3936 f135c941 2020-02-20 stsp } else
3937 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3938 f135c941 2020-02-20 stsp
3939 f135c941 2020-02-20 stsp return err;
3940 f135c941 2020-02-20 stsp }
3941 f135c941 2020-02-20 stsp
3942 f135c941 2020-02-20 stsp static const struct got_error *
3943 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3944 9f7d7167 2018-04-29 stsp {
3945 80ddbec8 2018-04-29 stsp const struct got_error *error;
3946 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3947 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3948 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3949 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3950 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3951 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3952 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3953 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3954 04cc582a 2018-08-01 stsp struct tog_view *view;
3955 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
3956 80ddbec8 2018-04-29 stsp
3957 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3958 80ddbec8 2018-04-29 stsp switch (ch) {
3959 b672a97a 2020-01-27 stsp case 'b':
3960 b672a97a 2020-01-27 stsp log_branches = 1;
3961 b672a97a 2020-01-27 stsp break;
3962 80ddbec8 2018-04-29 stsp case 'c':
3963 80ddbec8 2018-04-29 stsp start_commit = optarg;
3964 80ddbec8 2018-04-29 stsp break;
3965 ecb28ae0 2018-07-16 stsp case 'r':
3966 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3967 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3968 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3969 9ba1d308 2019-10-21 stsp optarg);
3970 ecb28ae0 2018-07-16 stsp break;
3971 80ddbec8 2018-04-29 stsp default:
3972 17020d27 2019-03-07 stsp usage_log();
3973 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3974 80ddbec8 2018-04-29 stsp }
3975 80ddbec8 2018-04-29 stsp }
3976 80ddbec8 2018-04-29 stsp
3977 80ddbec8 2018-04-29 stsp argc -= optind;
3978 80ddbec8 2018-04-29 stsp argv += optind;
3979 80ddbec8 2018-04-29 stsp
3980 f135c941 2020-02-20 stsp if (argc > 1)
3981 f135c941 2020-02-20 stsp usage_log();
3982 963f97a1 2019-03-18 stsp
3983 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
3984 0ae84acc 2022-06-15 tracey if (error != NULL)
3985 0ae84acc 2022-06-15 tracey goto done;
3986 0ae84acc 2022-06-15 tracey
3987 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3988 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3989 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3990 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3991 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3992 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3993 c156c7a4 2020-12-18 stsp goto done;
3994 a1fbf39a 2019-08-11 stsp if (worktree)
3995 6962eb72 2020-02-20 stsp repo_path =
3996 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
3997 a1fbf39a 2019-08-11 stsp else
3998 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
3999 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
4000 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
4001 c156c7a4 2020-12-18 stsp goto done;
4002 c156c7a4 2020-12-18 stsp }
4003 ecb28ae0 2018-07-16 stsp }
4004 ecb28ae0 2018-07-16 stsp
4005 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
4006 80ddbec8 2018-04-29 stsp if (error != NULL)
4007 ecb28ae0 2018-07-16 stsp goto done;
4008 80ddbec8 2018-04-29 stsp
4009 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4010 f135c941 2020-02-20 stsp repo, worktree);
4011 f135c941 2020-02-20 stsp if (error)
4012 f135c941 2020-02-20 stsp goto done;
4013 f135c941 2020-02-20 stsp
4014 f135c941 2020-02-20 stsp init_curses();
4015 f135c941 2020-02-20 stsp
4016 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
4017 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4018 c02c541e 2019-03-29 stsp if (error)
4019 c02c541e 2019-03-29 stsp goto done;
4020 c02c541e 2019-03-29 stsp
4021 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
4022 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
4023 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
4024 87670572 2020-12-26 naddy if (error)
4025 87670572 2020-12-26 naddy goto done;
4026 87670572 2020-12-26 naddy }
4027 51a10b52 2020-12-26 stsp
4028 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
4029 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
4030 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
4031 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4032 d8f38dc4 2020-12-05 stsp if (error)
4033 d8f38dc4 2020-12-05 stsp goto done;
4034 d8f38dc4 2020-12-05 stsp head_ref_name = label;
4035 d8f38dc4 2020-12-05 stsp } else {
4036 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
4037 d8f38dc4 2020-12-05 stsp if (error == NULL)
4038 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
4039 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
4040 d8f38dc4 2020-12-05 stsp goto done;
4041 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
4042 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4043 d8f38dc4 2020-12-05 stsp if (error)
4044 d8f38dc4 2020-12-05 stsp goto done;
4045 d8f38dc4 2020-12-05 stsp }
4046 8b473291 2019-02-21 stsp
4047 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4048 04cc582a 2018-08-01 stsp if (view == NULL) {
4049 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4050 04cc582a 2018-08-01 stsp goto done;
4051 04cc582a 2018-08-01 stsp }
4052 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
4053 f135c941 2020-02-20 stsp in_repo_path, log_branches);
4054 ba4f502b 2018-08-04 stsp if (error)
4055 ba4f502b 2018-08-04 stsp goto done;
4056 2fc00ff4 2019-08-31 stsp if (worktree) {
4057 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
4058 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
4059 2fc00ff4 2019-08-31 stsp worktree = NULL;
4060 2fc00ff4 2019-08-31 stsp }
4061 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4062 ecb28ae0 2018-07-16 stsp done:
4063 f135c941 2020-02-20 stsp free(in_repo_path);
4064 ecb28ae0 2018-07-16 stsp free(repo_path);
4065 ecb28ae0 2018-07-16 stsp free(cwd);
4066 899d86c2 2018-05-10 stsp free(start_id);
4067 d8f38dc4 2020-12-05 stsp free(label);
4068 d8f38dc4 2020-12-05 stsp if (ref)
4069 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
4070 1d0f4054 2021-06-17 stsp if (repo) {
4071 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
4072 1d0f4054 2021-06-17 stsp if (error == NULL)
4073 1d0f4054 2021-06-17 stsp error = close_err;
4074 1d0f4054 2021-06-17 stsp }
4075 ec142235 2019-03-07 stsp if (worktree)
4076 ec142235 2019-03-07 stsp got_worktree_close(worktree);
4077 0ae84acc 2022-06-15 tracey if (pack_fds) {
4078 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
4079 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
4080 0ae84acc 2022-06-15 tracey if (error == NULL)
4081 0ae84acc 2022-06-15 tracey error = pack_err;
4082 0ae84acc 2022-06-15 tracey }
4083 51a10b52 2020-12-26 stsp tog_free_refs();
4084 80ddbec8 2018-04-29 stsp return error;
4085 9f7d7167 2018-04-29 stsp }
4086 9f7d7167 2018-04-29 stsp
4087 4ed7e80c 2018-05-20 stsp __dead static void
4088 9f7d7167 2018-04-29 stsp usage_diff(void)
4089 9f7d7167 2018-04-29 stsp {
4090 80ddbec8 2018-04-29 stsp endwin();
4091 827a167b 2022-08-16 stsp fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4092 827a167b 2022-08-16 stsp "object1 object2\n", getprogname());
4093 9f7d7167 2018-04-29 stsp exit(1);
4094 b304db33 2018-05-20 stsp }
4095 b304db33 2018-05-20 stsp
4096 6d17833f 2019-11-08 stsp static int
4097 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
4098 41605754 2020-11-12 stsp regmatch_t *regmatch)
4099 6d17833f 2019-11-08 stsp {
4100 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
4101 6d17833f 2019-11-08 stsp }
4102 6d17833f 2019-11-08 stsp
4103 336075a4 2022-06-25 op static struct tog_color *
4104 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
4105 6d17833f 2019-11-08 stsp {
4106 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
4107 6d17833f 2019-11-08 stsp
4108 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
4109 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
4110 6d17833f 2019-11-08 stsp return tc;
4111 6d17833f 2019-11-08 stsp }
4112 6d17833f 2019-11-08 stsp
4113 6d17833f 2019-11-08 stsp return NULL;
4114 6d17833f 2019-11-08 stsp }
4115 6d17833f 2019-11-08 stsp
4116 4ed7e80c 2018-05-20 stsp static const struct got_error *
4117 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4118 1853e0f4 2022-06-16 stsp WINDOW *window, int skipcol, regmatch_t *regmatch)
4119 41605754 2020-11-12 stsp {
4120 41605754 2020-11-12 stsp const struct got_error *err = NULL;
4121 44a87665 2022-06-16 stsp char *exstr = NULL;
4122 1853e0f4 2022-06-16 stsp wchar_t *wline = NULL;
4123 1853e0f4 2022-06-16 stsp int rme, rms, n, width, scrollx;
4124 1853e0f4 2022-06-16 stsp int width0 = 0, width1 = 0, width2 = 0;
4125 1853e0f4 2022-06-16 stsp char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4126 41605754 2020-11-12 stsp
4127 41605754 2020-11-12 stsp *wtotal = 0;
4128 1853e0f4 2022-06-16 stsp
4129 145b6838 2022-06-16 stsp rms = regmatch->rm_so;
4130 145b6838 2022-06-16 stsp rme = regmatch->rm_eo;
4131 41605754 2020-11-12 stsp
4132 44a87665 2022-06-16 stsp err = expand_tab(&exstr, line);
4133 44a87665 2022-06-16 stsp if (err)
4134 44a87665 2022-06-16 stsp return err;
4135 44a87665 2022-06-16 stsp
4136 1853e0f4 2022-06-16 stsp /* Split the line into 3 segments, according to match offsets. */
4137 44a87665 2022-06-16 stsp seg0 = strndup(exstr, rms);
4138 44a87665 2022-06-16 stsp if (seg0 == NULL) {
4139 44a87665 2022-06-16 stsp err = got_error_from_errno("strndup");
4140 44a87665 2022-06-16 stsp goto done;
4141 44a87665 2022-06-16 stsp }
4142 44a87665 2022-06-16 stsp seg1 = strndup(exstr + rms, rme - rms);
4143 1853e0f4 2022-06-16 stsp if (seg1 == NULL) {
4144 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
4145 1853e0f4 2022-06-16 stsp goto done;
4146 1853e0f4 2022-06-16 stsp }
4147 44a87665 2022-06-16 stsp seg2 = strdup(exstr + rme);
4148 95d136ac 2022-06-16 stsp if (seg2 == NULL) {
4149 1853e0f4 2022-06-16 stsp err = got_error_from_errno("strndup");
4150 1853e0f4 2022-06-16 stsp goto done;
4151 1853e0f4 2022-06-16 stsp }
4152 145b6838 2022-06-16 stsp
4153 145b6838 2022-06-16 stsp /* draw up to matched token if we haven't scrolled past it */
4154 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4155 1853e0f4 2022-06-16 stsp col_tab_align, 1);
4156 1853e0f4 2022-06-16 stsp if (err)
4157 1853e0f4 2022-06-16 stsp goto done;
4158 1853e0f4 2022-06-16 stsp n = MAX(width0 - skipcol, 0);
4159 145b6838 2022-06-16 stsp if (n) {
4160 1853e0f4 2022-06-16 stsp free(wline);
4161 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4162 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
4163 1853e0f4 2022-06-16 stsp if (err)
4164 1853e0f4 2022-06-16 stsp goto done;
4165 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
4166 1853e0f4 2022-06-16 stsp wlimit -= width;
4167 1853e0f4 2022-06-16 stsp *wtotal += width;
4168 41605754 2020-11-12 stsp }
4169 41605754 2020-11-12 stsp
4170 41605754 2020-11-12 stsp if (wlimit > 0) {
4171 1853e0f4 2022-06-16 stsp int i = 0, w = 0;
4172 1853e0f4 2022-06-16 stsp size_t wlen;
4173 1853e0f4 2022-06-16 stsp
4174 1853e0f4 2022-06-16 stsp free(wline);
4175 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4176 1853e0f4 2022-06-16 stsp col_tab_align, 1);
4177 1853e0f4 2022-06-16 stsp if (err)
4178 1853e0f4 2022-06-16 stsp goto done;
4179 1853e0f4 2022-06-16 stsp wlen = wcslen(wline);
4180 1853e0f4 2022-06-16 stsp while (i < wlen) {
4181 1853e0f4 2022-06-16 stsp width = wcwidth(wline[i]);
4182 1853e0f4 2022-06-16 stsp if (width == -1) {
4183 1853e0f4 2022-06-16 stsp /* should not happen, tabs are expanded */
4184 1853e0f4 2022-06-16 stsp err = got_error(GOT_ERR_RANGE);
4185 1853e0f4 2022-06-16 stsp goto done;
4186 1853e0f4 2022-06-16 stsp }
4187 1853e0f4 2022-06-16 stsp if (width0 + w + width > skipcol)
4188 1853e0f4 2022-06-16 stsp break;
4189 61417565 2022-06-20 mark w += width;
4190 1853e0f4 2022-06-16 stsp i++;
4191 41605754 2020-11-12 stsp }
4192 145b6838 2022-06-16 stsp /* draw (visible part of) matched token (if scrolled into it) */
4193 1853e0f4 2022-06-16 stsp if (width1 - w > 0) {
4194 145b6838 2022-06-16 stsp wattron(window, A_STANDOUT);
4195 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[i]);
4196 145b6838 2022-06-16 stsp wattroff(window, A_STANDOUT);
4197 1853e0f4 2022-06-16 stsp wlimit -= (width1 - w);
4198 1853e0f4 2022-06-16 stsp *wtotal += (width1 - w);
4199 41605754 2020-11-12 stsp }
4200 41605754 2020-11-12 stsp }
4201 41605754 2020-11-12 stsp
4202 1853e0f4 2022-06-16 stsp if (wlimit > 0) { /* draw rest of line */
4203 1853e0f4 2022-06-16 stsp free(wline);
4204 1853e0f4 2022-06-16 stsp if (skipcol > width0 + width1) {
4205 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, &scrollx, seg2,
4206 1853e0f4 2022-06-16 stsp skipcol - (width0 + width1), wlimit,
4207 1853e0f4 2022-06-16 stsp col_tab_align, 1);
4208 1853e0f4 2022-06-16 stsp if (err)
4209 1853e0f4 2022-06-16 stsp goto done;
4210 1853e0f4 2022-06-16 stsp waddwstr(window, &wline[scrollx]);
4211 1853e0f4 2022-06-16 stsp } else {
4212 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width2, NULL, seg2, 0,
4213 1853e0f4 2022-06-16 stsp wlimit, col_tab_align, 1);
4214 1853e0f4 2022-06-16 stsp if (err)
4215 1853e0f4 2022-06-16 stsp goto done;
4216 1853e0f4 2022-06-16 stsp waddwstr(window, wline);
4217 1853e0f4 2022-06-16 stsp }
4218 1853e0f4 2022-06-16 stsp *wtotal += width2;
4219 41605754 2020-11-12 stsp }
4220 1853e0f4 2022-06-16 stsp done:
4221 145b6838 2022-06-16 stsp free(wline);
4222 44a87665 2022-06-16 stsp free(exstr);
4223 1853e0f4 2022-06-16 stsp free(seg0);
4224 1853e0f4 2022-06-16 stsp free(seg1);
4225 1853e0f4 2022-06-16 stsp free(seg2);
4226 1853e0f4 2022-06-16 stsp return err;
4227 41605754 2020-11-12 stsp }
4228 94b80cfa 2022-08-01 mark
4229 94b80cfa 2022-08-01 mark static int
4230 94b80cfa 2022-08-01 mark gotoline(struct tog_view *view, int *lineno, int *nprinted)
4231 94b80cfa 2022-08-01 mark {
4232 94b80cfa 2022-08-01 mark FILE *f = NULL;
4233 94b80cfa 2022-08-01 mark int *eof, *first, *selected;
4234 94b80cfa 2022-08-01 mark
4235 94b80cfa 2022-08-01 mark if (view->type == TOG_VIEW_DIFF) {
4236 94b80cfa 2022-08-01 mark struct tog_diff_view_state *s = &view->state.diff;
4237 ec2a9698 2022-09-15 mark
4238 ec2a9698 2022-09-15 mark first = &s->first_displayed_line;
4239 ec2a9698 2022-09-15 mark selected = first;
4240 ec2a9698 2022-09-15 mark eof = &s->eof;
4241 ec2a9698 2022-09-15 mark f = s->f;
4242 ec2a9698 2022-09-15 mark } else if (view->type == TOG_VIEW_HELP) {
4243 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
4244 41605754 2020-11-12 stsp
4245 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
4246 94b80cfa 2022-08-01 mark selected = first;
4247 94b80cfa 2022-08-01 mark eof = &s->eof;
4248 94b80cfa 2022-08-01 mark f = s->f;
4249 94b80cfa 2022-08-01 mark } else if (view->type == TOG_VIEW_BLAME) {
4250 94b80cfa 2022-08-01 mark struct tog_blame_view_state *s = &view->state.blame;
4251 94b80cfa 2022-08-01 mark
4252 94b80cfa 2022-08-01 mark first = &s->first_displayed_line;
4253 94b80cfa 2022-08-01 mark selected = &s->selected_line;
4254 94b80cfa 2022-08-01 mark eof = &s->eof;
4255 94b80cfa 2022-08-01 mark f = s->blame.f;
4256 94b80cfa 2022-08-01 mark } else
4257 94b80cfa 2022-08-01 mark return 0;
4258 94b80cfa 2022-08-01 mark
4259 94b80cfa 2022-08-01 mark /* Center gline in the middle of the page like vi(1). */
4260 94b80cfa 2022-08-01 mark if (*lineno < view->gline - (view->nlines - 3) / 2)
4261 94b80cfa 2022-08-01 mark return 0;
4262 94b80cfa 2022-08-01 mark if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4263 94b80cfa 2022-08-01 mark rewind(f);
4264 94b80cfa 2022-08-01 mark *eof = 0;
4265 94b80cfa 2022-08-01 mark *first = 1;
4266 94b80cfa 2022-08-01 mark *lineno = 0;
4267 94b80cfa 2022-08-01 mark *nprinted = 0;
4268 94b80cfa 2022-08-01 mark return 0;
4269 94b80cfa 2022-08-01 mark }
4270 94b80cfa 2022-08-01 mark
4271 94b80cfa 2022-08-01 mark *selected = view->gline <= (view->nlines - 3) / 2 ?
4272 94b80cfa 2022-08-01 mark view->gline : (view->nlines - 3) / 2 + 1;
4273 94b80cfa 2022-08-01 mark view->gline = 0;
4274 94b80cfa 2022-08-01 mark
4275 94b80cfa 2022-08-01 mark return 1;
4276 94b80cfa 2022-08-01 mark }
4277 94b80cfa 2022-08-01 mark
4278 41605754 2020-11-12 stsp static const struct got_error *
4279 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
4280 26ed57b2 2018-05-19 stsp {
4281 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
4282 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
4283 61e69b96 2018-05-20 stsp const struct got_error *err;
4284 c7d5c43c 2022-08-04 mark int nprinted = 0;
4285 b304db33 2018-05-20 stsp char *line;
4286 826082fe 2020-12-10 stsp size_t linesize = 0;
4287 826082fe 2020-12-10 stsp ssize_t linelen;
4288 61e69b96 2018-05-20 stsp wchar_t *wline;
4289 e0b650dd 2018-05-20 stsp int width;
4290 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
4291 89f1a395 2020-12-01 naddy int nlines = s->nlines;
4292 fe621944 2020-11-10 stsp off_t line_offset;
4293 26ed57b2 2018-05-19 stsp
4294 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1;
4295 c7d5c43c 2022-08-04 mark line_offset = s->lines[s->first_displayed_line - 1].offset;
4296 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4297 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
4298 fe621944 2020-11-10 stsp
4299 f7d12f7e 2018-08-01 stsp werase(view->window);
4300 a3404814 2018-09-02 stsp
4301 94b80cfa 2022-08-01 mark if (view->gline > s->nlines - 1)
4302 94b80cfa 2022-08-01 mark view->gline = s->nlines - 1;
4303 94b80cfa 2022-08-01 mark
4304 a3404814 2018-09-02 stsp if (header) {
4305 94b80cfa 2022-08-01 mark int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4306 94b80cfa 2022-08-01 mark 1 : view->gline - (view->nlines - 3) / 2 :
4307 c7d5c43c 2022-08-04 mark s->lineno + s->selected_line;
4308 94b80cfa 2022-08-01 mark
4309 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4310 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
4311 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4312 ccda2f4d 2022-06-16 stsp 0, 0);
4313 135a2da0 2020-11-11 stsp free(line);
4314 135a2da0 2020-11-11 stsp if (err)
4315 a3404814 2018-09-02 stsp return err;
4316 a3404814 2018-09-02 stsp
4317 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4318 a3404814 2018-09-02 stsp wstandout(view->window);
4319 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
4320 e54cc94a 2020-11-11 stsp free(wline);
4321 e54cc94a 2020-11-11 stsp wline = NULL;
4322 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
4323 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
4324 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4325 a3404814 2018-09-02 stsp wstandend(view->window);
4326 26ed57b2 2018-05-19 stsp
4327 a3404814 2018-09-02 stsp if (max_lines <= 1)
4328 a3404814 2018-09-02 stsp return NULL;
4329 a3404814 2018-09-02 stsp max_lines--;
4330 a3404814 2018-09-02 stsp }
4331 a3404814 2018-09-02 stsp
4332 89f1a395 2020-12-01 naddy s->eof = 0;
4333 145b6838 2022-06-16 stsp view->maxx = 0;
4334 826082fe 2020-12-10 stsp line = NULL;
4335 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
4336 6a5ff2d4 2022-08-06 mark enum got_diff_line_type linetype;
4337 6a5ff2d4 2022-08-06 mark attr_t attr = 0;
4338 6a5ff2d4 2022-08-06 mark
4339 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4340 826082fe 2020-12-10 stsp if (linelen == -1) {
4341 826082fe 2020-12-10 stsp if (feof(s->f)) {
4342 826082fe 2020-12-10 stsp s->eof = 1;
4343 826082fe 2020-12-10 stsp break;
4344 826082fe 2020-12-10 stsp }
4345 826082fe 2020-12-10 stsp free(line);
4346 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
4347 61e69b96 2018-05-20 stsp }
4348 145b6838 2022-06-16 stsp
4349 c7d5c43c 2022-08-04 mark if (++s->lineno < s->first_displayed_line)
4350 94b80cfa 2022-08-01 mark continue;
4351 c7d5c43c 2022-08-04 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4352 94b80cfa 2022-08-01 mark continue;
4353 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline)
4354 94b80cfa 2022-08-01 mark attr = A_STANDOUT;
4355 94b80cfa 2022-08-01 mark
4356 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
4357 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4358 1853e0f4 2022-06-16 stsp view->x ? 1 : 0);
4359 1853e0f4 2022-06-16 stsp if (err) {
4360 1853e0f4 2022-06-16 stsp free(line);
4361 1853e0f4 2022-06-16 stsp return err;
4362 1853e0f4 2022-06-16 stsp }
4363 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
4364 1853e0f4 2022-06-16 stsp free(wline);
4365 1853e0f4 2022-06-16 stsp wline = NULL;
4366 1853e0f4 2022-06-16 stsp
4367 6a5ff2d4 2022-08-06 mark linetype = s->lines[s->lineno].type;
4368 6a5ff2d4 2022-08-06 mark if (linetype > GOT_DIFF_LINE_LOGMSG &&
4369 6a5ff2d4 2022-08-06 mark linetype < GOT_DIFF_LINE_CONTEXT)
4370 6a5ff2d4 2022-08-06 mark attr |= COLOR_PAIR(linetype);
4371 94b80cfa 2022-08-01 mark if (attr)
4372 94b80cfa 2022-08-01 mark wattron(view->window, attr);
4373 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4374 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4375 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4376 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
4377 41605754 2020-11-12 stsp if (err) {
4378 41605754 2020-11-12 stsp free(line);
4379 41605754 2020-11-12 stsp return err;
4380 41605754 2020-11-12 stsp }
4381 41605754 2020-11-12 stsp } else {
4382 969c159c 2022-06-16 stsp int skip;
4383 969c159c 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
4384 969c159c 2022-06-16 stsp view->x, view->ncols, 0, view->x ? 1 : 0);
4385 969c159c 2022-06-16 stsp if (err) {
4386 969c159c 2022-06-16 stsp free(line);
4387 969c159c 2022-06-16 stsp return err;
4388 969c159c 2022-06-16 stsp }
4389 969c159c 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
4390 969c159c 2022-06-16 stsp free(wline);
4391 41605754 2020-11-12 stsp wline = NULL;
4392 41605754 2020-11-12 stsp }
4393 c7d5c43c 2022-08-04 mark if (s->lineno == view->hiline) {
4394 94b80cfa 2022-08-01 mark /* highlight full gline length */
4395 94b80cfa 2022-08-01 mark while (width++ < view->ncols)
4396 94b80cfa 2022-08-01 mark waddch(view->window, ' ');
4397 94b80cfa 2022-08-01 mark } else {
4398 94b80cfa 2022-08-01 mark if (width <= view->ncols - 1)
4399 94b80cfa 2022-08-01 mark waddch(view->window, '\n');
4400 94b80cfa 2022-08-01 mark }
4401 94b80cfa 2022-08-01 mark if (attr)
4402 94b80cfa 2022-08-01 mark wattroff(view->window, attr);
4403 94b80cfa 2022-08-01 mark if (++nprinted == 1)
4404 c7d5c43c 2022-08-04 mark s->first_displayed_line = s->lineno;
4405 826082fe 2020-12-10 stsp }
4406 826082fe 2020-12-10 stsp free(line);
4407 fe621944 2020-11-10 stsp if (nprinted >= 1)
4408 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4409 89f1a395 2020-12-01 naddy (nprinted - 1);
4410 fe621944 2020-11-10 stsp else
4411 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4412 26ed57b2 2018-05-19 stsp
4413 9b058f45 2022-06-30 mark view_border(view);
4414 c3e9aa98 2019-05-13 jcs
4415 89f1a395 2020-12-01 naddy if (s->eof) {
4416 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4417 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4418 c3e9aa98 2019-05-13 jcs nprinted++;
4419 c3e9aa98 2019-05-13 jcs }
4420 c3e9aa98 2019-05-13 jcs
4421 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4422 ccda2f4d 2022-06-16 stsp view->ncols, 0, 0);
4423 c3e9aa98 2019-05-13 jcs if (err) {
4424 c3e9aa98 2019-05-13 jcs return err;
4425 c3e9aa98 2019-05-13 jcs }
4426 26ed57b2 2018-05-19 stsp
4427 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4428 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4429 e54cc94a 2020-11-11 stsp free(wline);
4430 e54cc94a 2020-11-11 stsp wline = NULL;
4431 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4432 c3e9aa98 2019-05-13 jcs }
4433 c3e9aa98 2019-05-13 jcs
4434 26ed57b2 2018-05-19 stsp return NULL;
4435 abd2672a 2018-12-23 stsp }
4436 abd2672a 2018-12-23 stsp
4437 abd2672a 2018-12-23 stsp static char *
4438 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4439 abd2672a 2018-12-23 stsp {
4440 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4441 09867e48 2019-08-13 stsp char *p, *s;
4442 09867e48 2019-08-13 stsp
4443 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4444 09867e48 2019-08-13 stsp if (tm == NULL)
4445 09867e48 2019-08-13 stsp return NULL;
4446 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4447 09867e48 2019-08-13 stsp if (s == NULL)
4448 09867e48 2019-08-13 stsp return NULL;
4449 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4450 abd2672a 2018-12-23 stsp if (p)
4451 abd2672a 2018-12-23 stsp *p = '\0';
4452 abd2672a 2018-12-23 stsp return s;
4453 9f7d7167 2018-04-29 stsp }
4454 9f7d7167 2018-04-29 stsp
4455 4ed7e80c 2018-05-20 stsp static const struct got_error *
4456 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4457 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4458 0208f208 2020-05-05 stsp {
4459 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4460 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4461 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4462 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4463 0208f208 2020-05-05 stsp
4464 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4465 0208f208 2020-05-05 stsp if (qid != NULL) {
4466 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4467 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4468 d7b5a0e8 2022-04-20 stsp &qid->id);
4469 0208f208 2020-05-05 stsp if (err)
4470 0208f208 2020-05-05 stsp return err;
4471 0208f208 2020-05-05 stsp
4472 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4473 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4474 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4475 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4476 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4477 aa8b5dd0 2021-08-01 stsp }
4478 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4479 0208f208 2020-05-05 stsp
4480 0208f208 2020-05-05 stsp }
4481 0208f208 2020-05-05 stsp
4482 0208f208 2020-05-05 stsp if (tree_id1) {
4483 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4484 0208f208 2020-05-05 stsp if (err)
4485 0208f208 2020-05-05 stsp goto done;
4486 0208f208 2020-05-05 stsp }
4487 0208f208 2020-05-05 stsp
4488 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4489 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4490 0208f208 2020-05-05 stsp if (err)
4491 0208f208 2020-05-05 stsp goto done;
4492 0208f208 2020-05-05 stsp
4493 f9d37699 2022-06-28 stsp err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4494 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4495 0208f208 2020-05-05 stsp done:
4496 0208f208 2020-05-05 stsp if (tree1)
4497 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4498 0208f208 2020-05-05 stsp if (tree2)
4499 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4500 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4501 0208f208 2020-05-05 stsp return err;
4502 0208f208 2020-05-05 stsp }
4503 0208f208 2020-05-05 stsp
4504 0208f208 2020-05-05 stsp static const struct got_error *
4505 c7d5c43c 2022-08-04 mark add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4506 c7d5c43c 2022-08-04 mark off_t off, uint8_t type)
4507 abd2672a 2018-12-23 stsp {
4508 c7d5c43c 2022-08-04 mark struct got_diff_line *p;
4509 fe621944 2020-11-10 stsp
4510 c7d5c43c 2022-08-04 mark p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4511 fe621944 2020-11-10 stsp if (p == NULL)
4512 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4513 c7d5c43c 2022-08-04 mark *lines = p;
4514 c7d5c43c 2022-08-04 mark (*lines)[*nlines].offset = off;
4515 c7d5c43c 2022-08-04 mark (*lines)[*nlines].type = type;
4516 fe621944 2020-11-10 stsp (*nlines)++;
4517 c7d5c43c 2022-08-04 mark
4518 fe621944 2020-11-10 stsp return NULL;
4519 fe621944 2020-11-10 stsp }
4520 fe621944 2020-11-10 stsp
4521 fe621944 2020-11-10 stsp static const struct got_error *
4522 c7d5c43c 2022-08-04 mark write_commit_info(struct got_diff_line **lines, size_t *nlines,
4523 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4524 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4525 fe621944 2020-11-10 stsp {
4526 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4527 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4528 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4529 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4530 45d799e2 2018-12-23 stsp time_t committer_time;
4531 45d799e2 2018-12-23 stsp const char *author, *committer;
4532 8b473291 2019-02-21 stsp char *refs_str = NULL;
4533 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4534 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4535 fe621944 2020-11-10 stsp off_t outoff = 0;
4536 fe621944 2020-11-10 stsp int n;
4537 abd2672a 2018-12-23 stsp
4538 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4539 0208f208 2020-05-05 stsp
4540 8b473291 2019-02-21 stsp if (refs) {
4541 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4542 8b473291 2019-02-21 stsp if (err)
4543 8b473291 2019-02-21 stsp return err;
4544 8b473291 2019-02-21 stsp }
4545 8b473291 2019-02-21 stsp
4546 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4547 abd2672a 2018-12-23 stsp if (err)
4548 abd2672a 2018-12-23 stsp return err;
4549 abd2672a 2018-12-23 stsp
4550 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4551 15a94983 2018-12-23 stsp if (err) {
4552 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4553 15a94983 2018-12-23 stsp goto done;
4554 15a94983 2018-12-23 stsp }
4555 abd2672a 2018-12-23 stsp
4556 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4557 fe621944 2020-11-10 stsp if (err)
4558 fe621944 2020-11-10 stsp goto done;
4559 fe621944 2020-11-10 stsp
4560 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4561 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4562 fe621944 2020-11-10 stsp if (n < 0) {
4563 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4564 abd2672a 2018-12-23 stsp goto done;
4565 abd2672a 2018-12-23 stsp }
4566 fe621944 2020-11-10 stsp outoff += n;
4567 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4568 fe621944 2020-11-10 stsp if (err)
4569 fe621944 2020-11-10 stsp goto done;
4570 fe621944 2020-11-10 stsp
4571 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4572 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4573 fe621944 2020-11-10 stsp if (n < 0) {
4574 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4575 abd2672a 2018-12-23 stsp goto done;
4576 abd2672a 2018-12-23 stsp }
4577 fe621944 2020-11-10 stsp outoff += n;
4578 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4579 fe621944 2020-11-10 stsp if (err)
4580 fe621944 2020-11-10 stsp goto done;
4581 fe621944 2020-11-10 stsp
4582 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4583 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4584 fe621944 2020-11-10 stsp if (datestr) {
4585 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4586 fe621944 2020-11-10 stsp if (n < 0) {
4587 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4588 fe621944 2020-11-10 stsp goto done;
4589 fe621944 2020-11-10 stsp }
4590 fe621944 2020-11-10 stsp outoff += n;
4591 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4592 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_DATE);
4593 fe621944 2020-11-10 stsp if (err)
4594 fe621944 2020-11-10 stsp goto done;
4595 abd2672a 2018-12-23 stsp }
4596 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4597 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4598 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4599 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4600 fe621944 2020-11-10 stsp if (n < 0) {
4601 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4602 fe621944 2020-11-10 stsp goto done;
4603 fe621944 2020-11-10 stsp }
4604 fe621944 2020-11-10 stsp outoff += n;
4605 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4606 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_AUTHOR);
4607 fe621944 2020-11-10 stsp if (err)
4608 fe621944 2020-11-10 stsp goto done;
4609 abd2672a 2018-12-23 stsp }
4610 9f98ca05 2021-09-24 stsp if (got_object_commit_get_nparents(commit) > 1) {
4611 9f98ca05 2021-09-24 stsp const struct got_object_id_queue *parent_ids;
4612 9f98ca05 2021-09-24 stsp struct got_object_qid *qid;
4613 9f98ca05 2021-09-24 stsp int pn = 1;
4614 9f98ca05 2021-09-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
4615 9f98ca05 2021-09-24 stsp STAILQ_FOREACH(qid, parent_ids, entry) {
4616 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &qid->id);
4617 9f98ca05 2021-09-24 stsp if (err)
4618 9f98ca05 2021-09-24 stsp goto done;
4619 9f98ca05 2021-09-24 stsp n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4620 9f98ca05 2021-09-24 stsp if (n < 0) {
4621 9f98ca05 2021-09-24 stsp err = got_error_from_errno("fprintf");
4622 9f98ca05 2021-09-24 stsp goto done;
4623 9f98ca05 2021-09-24 stsp }
4624 9f98ca05 2021-09-24 stsp outoff += n;
4625 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4626 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
4627 9f98ca05 2021-09-24 stsp if (err)
4628 9f98ca05 2021-09-24 stsp goto done;
4629 9f98ca05 2021-09-24 stsp free(id_str);
4630 9f98ca05 2021-09-24 stsp id_str = NULL;
4631 9f98ca05 2021-09-24 stsp }
4632 9f98ca05 2021-09-24 stsp }
4633 9f98ca05 2021-09-24 stsp
4634 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4635 5943eee2 2019-08-13 stsp if (err)
4636 5943eee2 2019-08-13 stsp goto done;
4637 fe621944 2020-11-10 stsp s = logmsg;
4638 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4639 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4640 fe621944 2020-11-10 stsp if (n < 0) {
4641 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4642 fe621944 2020-11-10 stsp goto done;
4643 fe621944 2020-11-10 stsp }
4644 fe621944 2020-11-10 stsp outoff += n;
4645 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4646 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_LOGMSG);
4647 fe621944 2020-11-10 stsp if (err)
4648 fe621944 2020-11-10 stsp goto done;
4649 abd2672a 2018-12-23 stsp }
4650 fe621944 2020-11-10 stsp
4651 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4652 0208f208 2020-05-05 stsp if (err)
4653 0208f208 2020-05-05 stsp goto done;
4654 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4655 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4656 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4657 fe621944 2020-11-10 stsp if (n < 0) {
4658 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4659 fe621944 2020-11-10 stsp goto done;
4660 fe621944 2020-11-10 stsp }
4661 fe621944 2020-11-10 stsp outoff += n;
4662 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
4663 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_CHANGES);
4664 fe621944 2020-11-10 stsp if (err)
4665 fe621944 2020-11-10 stsp goto done;
4666 0208f208 2020-05-05 stsp free((char *)pe->path);
4667 0208f208 2020-05-05 stsp free(pe->data);
4668 0208f208 2020-05-05 stsp }
4669 fe621944 2020-11-10 stsp
4670 0208f208 2020-05-05 stsp fputc('\n', outfile);
4671 fe621944 2020-11-10 stsp outoff++;
4672 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4673 abd2672a 2018-12-23 stsp done:
4674 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4675 abd2672a 2018-12-23 stsp free(id_str);
4676 5943eee2 2019-08-13 stsp free(logmsg);
4677 8b473291 2019-02-21 stsp free(refs_str);
4678 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4679 7510f233 2020-08-09 stsp if (err) {
4680 c7d5c43c 2022-08-04 mark free(*lines);
4681 c7d5c43c 2022-08-04 mark *lines = NULL;
4682 ae6a6978 2020-08-09 stsp *nlines = 0;
4683 7510f233 2020-08-09 stsp }
4684 fe621944 2020-11-10 stsp return err;
4685 abd2672a 2018-12-23 stsp }
4686 abd2672a 2018-12-23 stsp
4687 abd2672a 2018-12-23 stsp static const struct got_error *
4688 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4689 26ed57b2 2018-05-19 stsp {
4690 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4691 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4692 15a94983 2018-12-23 stsp int obj_type;
4693 fe621944 2020-11-10 stsp
4694 c7d5c43c 2022-08-04 mark free(s->lines);
4695 c7d5c43c 2022-08-04 mark s->lines = malloc(sizeof(*s->lines));
4696 c7d5c43c 2022-08-04 mark if (s->lines == NULL)
4697 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4698 fe621944 2020-11-10 stsp s->nlines = 0;
4699 26ed57b2 2018-05-19 stsp
4700 511a516b 2018-05-19 stsp f = got_opentemp();
4701 48ae06ee 2018-10-18 stsp if (f == NULL) {
4702 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4703 48ae06ee 2018-10-18 stsp goto done;
4704 48ae06ee 2018-10-18 stsp }
4705 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4706 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4707 fb43ecf1 2019-02-11 stsp goto done;
4708 fb43ecf1 2019-02-11 stsp }
4709 48ae06ee 2018-10-18 stsp s->f = f;
4710 26ed57b2 2018-05-19 stsp
4711 15a94983 2018-12-23 stsp if (s->id1)
4712 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4713 15a94983 2018-12-23 stsp else
4714 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4715 15a94983 2018-12-23 stsp if (err)
4716 15a94983 2018-12-23 stsp goto done;
4717 15a94983 2018-12-23 stsp
4718 15a94983 2018-12-23 stsp switch (obj_type) {
4719 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4720 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4721 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4722 917d79a7 2022-07-01 stsp s->label1, s->label2, tog_diff_algo, s->diff_context,
4723 f9d37699 2022-06-28 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4724 26ed57b2 2018-05-19 stsp break;
4725 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4726 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4727 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4728 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4729 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4730 26ed57b2 2018-05-19 stsp break;
4731 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4732 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4733 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4734 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4735 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4736 abd2672a 2018-12-23 stsp
4737 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4738 abd2672a 2018-12-23 stsp if (err)
4739 3ffacbe1 2020-02-02 tracey goto done;
4740 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4741 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4742 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4743 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines, &s->nlines, s->id2,
4744 c7d5c43c 2022-08-04 mark refs, s->repo, s->f);
4745 f44b1f58 2020-02-02 tracey if (err)
4746 f44b1f58 2020-02-02 tracey goto done;
4747 f44b1f58 2020-02-02 tracey } else {
4748 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4749 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4750 d7b5a0e8 2022-04-20 stsp if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4751 c7d5c43c 2022-08-04 mark err = write_commit_info(&s->lines,
4752 c7d5c43c 2022-08-04 mark &s->nlines, s->id2, refs, s->repo,
4753 c7d5c43c 2022-08-04 mark s->f);
4754 f44b1f58 2020-02-02 tracey if (err)
4755 f44b1f58 2020-02-02 tracey goto done;
4756 f5404e4e 2020-02-02 tracey break;
4757 15a087fe 2019-02-21 stsp }
4758 abd2672a 2018-12-23 stsp }
4759 abd2672a 2018-12-23 stsp }
4760 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4761 abd2672a 2018-12-23 stsp
4762 c7d5c43c 2022-08-04 mark err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4763 f9d37699 2022-06-28 stsp s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4764 917d79a7 2022-07-01 stsp tog_diff_algo, s->diff_context, s->ignore_whitespace,
4765 4b752015 2022-06-30 stsp s->force_text_diff, s->repo, s->f);
4766 26ed57b2 2018-05-19 stsp break;
4767 abd2672a 2018-12-23 stsp }
4768 26ed57b2 2018-05-19 stsp default:
4769 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4770 48ae06ee 2018-10-18 stsp break;
4771 26ed57b2 2018-05-19 stsp }
4772 48ae06ee 2018-10-18 stsp done:
4773 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4774 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4775 48ae06ee 2018-10-18 stsp return err;
4776 48ae06ee 2018-10-18 stsp }
4777 26ed57b2 2018-05-19 stsp
4778 f5215bb9 2019-02-22 stsp static void
4779 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4780 f5215bb9 2019-02-22 stsp {
4781 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4782 f5215bb9 2019-02-22 stsp update_panels();
4783 f5215bb9 2019-02-22 stsp doupdate();
4784 f44b1f58 2020-02-02 tracey }
4785 f44b1f58 2020-02-02 tracey
4786 f44b1f58 2020-02-02 tracey static const struct got_error *
4787 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4788 f44b1f58 2020-02-02 tracey {
4789 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4790 f44b1f58 2020-02-02 tracey
4791 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4792 f44b1f58 2020-02-02 tracey return NULL;
4793 f44b1f58 2020-02-02 tracey }
4794 f44b1f58 2020-02-02 tracey
4795 eaf2c13e 2022-09-17 mark static void
4796 eaf2c13e 2022-09-17 mark search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
4797 ec2a9698 2022-09-15 mark size_t *nlines, int **first, int **last, int **match, int **selected)
4798 f44b1f58 2020-02-02 tracey {
4799 eaf2c13e 2022-09-17 mark struct tog_diff_view_state *s = &view->state.diff;
4800 ec2a9698 2022-09-15 mark
4801 eaf2c13e 2022-09-17 mark *f = s->f;
4802 eaf2c13e 2022-09-17 mark *nlines = s->nlines;
4803 eaf2c13e 2022-09-17 mark *line_offsets = NULL;
4804 eaf2c13e 2022-09-17 mark *match = &s->matched_line;
4805 eaf2c13e 2022-09-17 mark *first = &s->first_displayed_line;
4806 eaf2c13e 2022-09-17 mark *last = &s->last_displayed_line;
4807 eaf2c13e 2022-09-17 mark *selected = &s->selected_line;
4808 ec2a9698 2022-09-15 mark }
4809 ec2a9698 2022-09-15 mark
4810 ec2a9698 2022-09-15 mark static const struct got_error *
4811 ec2a9698 2022-09-15 mark search_next_view_match(struct tog_view *view)
4812 ec2a9698 2022-09-15 mark {
4813 145b6838 2022-06-16 stsp const struct got_error *err = NULL;
4814 ec2a9698 2022-09-15 mark FILE *f;
4815 f44b1f58 2020-02-02 tracey int lineno;
4816 cb713507 2022-06-16 stsp char *line = NULL;
4817 826082fe 2020-12-10 stsp size_t linesize = 0;
4818 826082fe 2020-12-10 stsp ssize_t linelen;
4819 ec2a9698 2022-09-15 mark off_t *line_offsets;
4820 ec2a9698 2022-09-15 mark size_t nlines = 0;
4821 ec2a9698 2022-09-15 mark int *first, *last, *match, *selected;
4822 f44b1f58 2020-02-02 tracey
4823 eaf2c13e 2022-09-17 mark if (!view->search_setup)
4824 eaf2c13e 2022-09-17 mark return got_error_msg(GOT_ERR_NOT_IMPL,
4825 eaf2c13e 2022-09-17 mark "view search not supported");
4826 eaf2c13e 2022-09-17 mark view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
4827 ec2a9698 2022-09-15 mark &match, &selected);
4828 ec2a9698 2022-09-15 mark
4829 f44b1f58 2020-02-02 tracey if (!view->searching) {
4830 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4831 f44b1f58 2020-02-02 tracey return NULL;
4832 f44b1f58 2020-02-02 tracey }
4833 f44b1f58 2020-02-02 tracey
4834 ec2a9698 2022-09-15 mark if (*match) {
4835 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4836 ec2a9698 2022-09-15 mark lineno = *match + 1;
4837 f44b1f58 2020-02-02 tracey else
4838 ec2a9698 2022-09-15 mark lineno = *match - 1;
4839 487cd7d2 2021-12-17 stsp } else
4840 ec2a9698 2022-09-15 mark lineno = *first - 1 + *selected;
4841 f44b1f58 2020-02-02 tracey
4842 f44b1f58 2020-02-02 tracey while (1) {
4843 f44b1f58 2020-02-02 tracey off_t offset;
4844 f44b1f58 2020-02-02 tracey
4845 ec2a9698 2022-09-15 mark if (lineno <= 0 || lineno > nlines) {
4846 ec2a9698 2022-09-15 mark if (*match == 0) {
4847 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4848 f44b1f58 2020-02-02 tracey break;
4849 f44b1f58 2020-02-02 tracey }
4850 f44b1f58 2020-02-02 tracey
4851 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4852 f44b1f58 2020-02-02 tracey lineno = 1;
4853 f44b1f58 2020-02-02 tracey else
4854 ec2a9698 2022-09-15 mark lineno = nlines;
4855 f44b1f58 2020-02-02 tracey }
4856 f44b1f58 2020-02-02 tracey
4857 ec2a9698 2022-09-15 mark offset = view->type == TOG_VIEW_DIFF ?
4858 ec2a9698 2022-09-15 mark view->state.diff.lines[lineno - 1].offset :
4859 ec2a9698 2022-09-15 mark line_offsets[lineno - 1];
4860 ec2a9698 2022-09-15 mark if (fseeko(f, offset, SEEK_SET) != 0) {
4861 f44b1f58 2020-02-02 tracey free(line);
4862 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4863 f44b1f58 2020-02-02 tracey }
4864 ec2a9698 2022-09-15 mark linelen = getline(&line, &linesize, f);
4865 cb713507 2022-06-16 stsp if (linelen != -1) {
4866 cb713507 2022-06-16 stsp char *exstr;
4867 cb713507 2022-06-16 stsp err = expand_tab(&exstr, line);
4868 cb713507 2022-06-16 stsp if (err)
4869 cb713507 2022-06-16 stsp break;
4870 cb713507 2022-06-16 stsp if (match_line(exstr, &view->regex, 1,
4871 cb713507 2022-06-16 stsp &view->regmatch)) {
4872 cb713507 2022-06-16 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4873 ec2a9698 2022-09-15 mark *match = lineno;
4874 cb713507 2022-06-16 stsp free(exstr);
4875 cb713507 2022-06-16 stsp break;
4876 cb713507 2022-06-16 stsp }
4877 cb713507 2022-06-16 stsp free(exstr);
4878 f44b1f58 2020-02-02 tracey }
4879 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4880 f44b1f58 2020-02-02 tracey lineno++;
4881 f44b1f58 2020-02-02 tracey else
4882 f44b1f58 2020-02-02 tracey lineno--;
4883 f44b1f58 2020-02-02 tracey }
4884 826082fe 2020-12-10 stsp free(line);
4885 f44b1f58 2020-02-02 tracey
4886 ec2a9698 2022-09-15 mark if (*match) {
4887 ec2a9698 2022-09-15 mark *first = *match;
4888 ec2a9698 2022-09-15 mark *selected = 1;
4889 f44b1f58 2020-02-02 tracey }
4890 f44b1f58 2020-02-02 tracey
4891 145b6838 2022-06-16 stsp return err;
4892 f5215bb9 2019-02-22 stsp }
4893 f5215bb9 2019-02-22 stsp
4894 48ae06ee 2018-10-18 stsp static const struct got_error *
4895 b72706c3 2022-06-01 stsp close_diff_view(struct tog_view *view)
4896 b72706c3 2022-06-01 stsp {
4897 b72706c3 2022-06-01 stsp const struct got_error *err = NULL;
4898 b72706c3 2022-06-01 stsp struct tog_diff_view_state *s = &view->state.diff;
4899 b72706c3 2022-06-01 stsp
4900 b72706c3 2022-06-01 stsp free(s->id1);
4901 b72706c3 2022-06-01 stsp s->id1 = NULL;
4902 b72706c3 2022-06-01 stsp free(s->id2);
4903 b72706c3 2022-06-01 stsp s->id2 = NULL;
4904 b72706c3 2022-06-01 stsp if (s->f && fclose(s->f) == EOF)
4905 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4906 b72706c3 2022-06-01 stsp s->f = NULL;
4907 f9d37699 2022-06-28 stsp if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4908 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4909 b72706c3 2022-06-01 stsp s->f1 = NULL;
4910 f9d37699 2022-06-28 stsp if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4911 b72706c3 2022-06-01 stsp err = got_error_from_errno("fclose");
4912 b72706c3 2022-06-01 stsp s->f2 = NULL;
4913 f9d37699 2022-06-28 stsp if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4914 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4915 f9d37699 2022-06-28 stsp s->fd1 = -1;
4916 f9d37699 2022-06-28 stsp if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4917 f9d37699 2022-06-28 stsp err = got_error_from_errno("close");
4918 f9d37699 2022-06-28 stsp s->fd2 = -1;
4919 c7d5c43c 2022-08-04 mark free(s->lines);
4920 c7d5c43c 2022-08-04 mark s->lines = NULL;
4921 b72706c3 2022-06-01 stsp s->nlines = 0;
4922 b72706c3 2022-06-01 stsp return err;
4923 b72706c3 2022-06-01 stsp }
4924 b72706c3 2022-06-01 stsp
4925 b72706c3 2022-06-01 stsp static const struct got_error *
4926 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4927 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4928 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4929 c0f61fa4 2022-07-11 mark struct tog_view *parent_view, struct got_repository *repo)
4930 48ae06ee 2018-10-18 stsp {
4931 48ae06ee 2018-10-18 stsp const struct got_error *err;
4932 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4933 5dc9f4bc 2018-08-04 stsp
4934 b72706c3 2022-06-01 stsp memset(s, 0, sizeof(*s));
4935 f9d37699 2022-06-28 stsp s->fd1 = -1;
4936 f9d37699 2022-06-28 stsp s->fd2 = -1;
4937 b72706c3 2022-06-01 stsp
4938 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4939 15a94983 2018-12-23 stsp int type1, type2;
4940 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4941 15a94983 2018-12-23 stsp if (err)
4942 15a94983 2018-12-23 stsp return err;
4943 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4944 15a94983 2018-12-23 stsp if (err)
4945 15a94983 2018-12-23 stsp return err;
4946 15a94983 2018-12-23 stsp
4947 15a94983 2018-12-23 stsp if (type1 != type2)
4948 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4949 15a94983 2018-12-23 stsp }
4950 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4951 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4952 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4953 f44b1f58 2020-02-02 tracey s->repo = repo;
4954 f44b1f58 2020-02-02 tracey s->id1 = id1;
4955 f44b1f58 2020-02-02 tracey s->id2 = id2;
4956 3dbaef42 2020-11-24 stsp s->label1 = label1;
4957 3dbaef42 2020-11-24 stsp s->label2 = label2;
4958 48ae06ee 2018-10-18 stsp
4959 15a94983 2018-12-23 stsp if (id1) {
4960 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4961 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4962 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4963 48ae06ee 2018-10-18 stsp } else
4964 5465d566 2020-02-01 tracey s->id1 = NULL;
4965 48ae06ee 2018-10-18 stsp
4966 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4967 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4968 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_object_id_dup");
4969 b72706c3 2022-06-01 stsp goto done;
4970 48ae06ee 2018-10-18 stsp }
4971 b72706c3 2022-06-01 stsp
4972 a00719e9 2022-06-17 stsp s->f1 = got_opentemp();
4973 a00719e9 2022-06-17 stsp if (s->f1 == NULL) {
4974 a00719e9 2022-06-17 stsp err = got_error_from_errno("got_opentemp");
4975 a00719e9 2022-06-17 stsp goto done;
4976 a00719e9 2022-06-17 stsp }
4977 a00719e9 2022-06-17 stsp
4978 b72706c3 2022-06-01 stsp s->f2 = got_opentemp();
4979 b72706c3 2022-06-01 stsp if (s->f2 == NULL) {
4980 b72706c3 2022-06-01 stsp err = got_error_from_errno("got_opentemp");
4981 b72706c3 2022-06-01 stsp goto done;
4982 b72706c3 2022-06-01 stsp }
4983 b72706c3 2022-06-01 stsp
4984 f9d37699 2022-06-28 stsp s->fd1 = got_opentempfd();
4985 f9d37699 2022-06-28 stsp if (s->fd1 == -1) {
4986 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4987 f9d37699 2022-06-28 stsp goto done;
4988 f9d37699 2022-06-28 stsp }
4989 f9d37699 2022-06-28 stsp
4990 f9d37699 2022-06-28 stsp s->fd2 = got_opentempfd();
4991 f9d37699 2022-06-28 stsp if (s->fd2 == -1) {
4992 f9d37699 2022-06-28 stsp err = got_error_from_errno("got_opentempfd");
4993 f9d37699 2022-06-28 stsp goto done;
4994 f9d37699 2022-06-28 stsp }
4995 f9d37699 2022-06-28 stsp
4996 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
4997 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
4998 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
4999 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
5000 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
5001 c0f61fa4 2022-07-11 mark s->parent_view = parent_view;
5002 5465d566 2020-02-01 tracey s->repo = repo;
5003 6d17833f 2019-11-08 stsp
5004 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5005 6a5ff2d4 2022-08-06 mark int rc;
5006 6d17833f 2019-11-08 stsp
5007 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_MINUS,
5008 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5009 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5010 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_PLUS,
5011 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5012 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5013 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_HUNK,
5014 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5015 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5016 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_META,
5017 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5018 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5019 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_CHANGES,
5020 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5021 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5022 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5023 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5024 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5025 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5026 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DIFF_META"), -1);
5027 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5028 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5029 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_AUTHOR"), -1);
5030 6a5ff2d4 2022-08-06 mark if (rc != ERR)
5031 6a5ff2d4 2022-08-06 mark rc = init_pair(GOT_DIFF_LINE_DATE,
5032 6a5ff2d4 2022-08-06 mark get_color_value("TOG_COLOR_DATE"), -1);
5033 6a5ff2d4 2022-08-06 mark if (rc == ERR) {
5034 6a5ff2d4 2022-08-06 mark err = got_error(GOT_ERR_RANGE);
5035 b72706c3 2022-06-01 stsp goto done;
5036 6a5ff2d4 2022-08-06 mark }
5037 6d17833f 2019-11-08 stsp }
5038 5dc9f4bc 2018-08-04 stsp
5039 c0f61fa4 2022-07-11 mark if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5040 c0f61fa4 2022-07-11 mark view_is_splitscreen(view))
5041 c0f61fa4 2022-07-11 mark show_log_view(parent_view); /* draw border */
5042 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
5043 f5215bb9 2019-02-22 stsp
5044 5465d566 2020-02-01 tracey err = create_diff(s);
5045 48ae06ee 2018-10-18 stsp
5046 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
5047 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
5048 917d79a7 2022-07-01 stsp view->reset = reset_diff_view;
5049 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
5050 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
5051 eaf2c13e 2022-09-17 mark view->search_setup = search_setup_diff_view;
5052 ec2a9698 2022-09-15 mark view->search_next = search_next_view_match;
5053 b72706c3 2022-06-01 stsp done:
5054 b72706c3 2022-06-01 stsp if (err)
5055 b72706c3 2022-06-01 stsp close_diff_view(view);
5056 e5a0f69f 2018-08-18 stsp return err;
5057 5dc9f4bc 2018-08-04 stsp }
5058 5dc9f4bc 2018-08-04 stsp
5059 5dc9f4bc 2018-08-04 stsp static const struct got_error *
5060 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
5061 5dc9f4bc 2018-08-04 stsp {
5062 a3404814 2018-09-02 stsp const struct got_error *err;
5063 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
5064 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
5065 3dbaef42 2020-11-24 stsp const char *label1, *label2;
5066 a3404814 2018-09-02 stsp
5067 a3404814 2018-09-02 stsp if (s->id1) {
5068 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
5069 a3404814 2018-09-02 stsp if (err)
5070 a3404814 2018-09-02 stsp return err;
5071 4924afe1 2022-08-31 mark label1 = s->label1 ? s->label1 : id_str1;
5072 3dbaef42 2020-11-24 stsp } else
5073 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
5074 3dbaef42 2020-11-24 stsp
5075 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
5076 a3404814 2018-09-02 stsp if (err)
5077 a3404814 2018-09-02 stsp return err;
5078 4924afe1 2022-08-31 mark label2 = s->label2 ? s->label2 : id_str2;
5079 26ed57b2 2018-05-19 stsp
5080 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5081 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5082 a3404814 2018-09-02 stsp free(id_str1);
5083 a3404814 2018-09-02 stsp free(id_str2);
5084 a3404814 2018-09-02 stsp return err;
5085 a3404814 2018-09-02 stsp }
5086 a3404814 2018-09-02 stsp free(id_str1);
5087 a3404814 2018-09-02 stsp free(id_str2);
5088 a3404814 2018-09-02 stsp
5089 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
5090 267bb3b8 2021-08-01 stsp free(header);
5091 267bb3b8 2021-08-01 stsp return err;
5092 15a087fe 2019-02-21 stsp }
5093 15a087fe 2019-02-21 stsp
5094 15a087fe 2019-02-21 stsp static const struct got_error *
5095 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
5096 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
5097 15a087fe 2019-02-21 stsp {
5098 d7a04538 2019-02-21 stsp const struct got_error *err;
5099 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
5100 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
5101 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
5102 15a087fe 2019-02-21 stsp
5103 15a087fe 2019-02-21 stsp free(s->id2);
5104 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
5105 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
5106 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
5107 15a087fe 2019-02-21 stsp
5108 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5109 d7a04538 2019-02-21 stsp if (err)
5110 d7a04538 2019-02-21 stsp return err;
5111 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
5112 15a087fe 2019-02-21 stsp free(s->id1);
5113 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
5114 d7b5a0e8 2022-04-20 stsp s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5115 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
5116 15a087fe 2019-02-21 stsp return NULL;
5117 0cf4efb1 2018-09-29 stsp }
5118 0cf4efb1 2018-09-29 stsp
5119 0cf4efb1 2018-09-29 stsp static const struct got_error *
5120 917d79a7 2022-07-01 stsp reset_diff_view(struct tog_view *view)
5121 917d79a7 2022-07-01 stsp {
5122 917d79a7 2022-07-01 stsp struct tog_diff_view_state *s = &view->state.diff;
5123 917d79a7 2022-07-01 stsp
5124 917d79a7 2022-07-01 stsp view->count = 0;
5125 917d79a7 2022-07-01 stsp wclear(view->window);
5126 917d79a7 2022-07-01 stsp s->first_displayed_line = 1;
5127 917d79a7 2022-07-01 stsp s->last_displayed_line = view->nlines;
5128 917d79a7 2022-07-01 stsp s->matched_line = 0;
5129 917d79a7 2022-07-01 stsp diff_view_indicate_progress(view);
5130 917d79a7 2022-07-01 stsp return create_diff(s);
5131 c7d5c43c 2022-08-04 mark }
5132 c7d5c43c 2022-08-04 mark
5133 c7d5c43c 2022-08-04 mark static void
5134 c7d5c43c 2022-08-04 mark diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5135 c7d5c43c 2022-08-04 mark {
5136 c7d5c43c 2022-08-04 mark int start, i;
5137 c7d5c43c 2022-08-04 mark
5138 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line - 1;
5139 c7d5c43c 2022-08-04 mark
5140 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
5141 c7d5c43c 2022-08-04 mark if (i == 0)
5142 c7d5c43c 2022-08-04 mark i = s->nlines - 1;
5143 c7d5c43c 2022-08-04 mark if (--i == start)
5144 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
5145 c7d5c43c 2022-08-04 mark }
5146 c7d5c43c 2022-08-04 mark
5147 c7d5c43c 2022-08-04 mark s->selected_line = 1;
5148 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
5149 917d79a7 2022-07-01 stsp }
5150 917d79a7 2022-07-01 stsp
5151 c7d5c43c 2022-08-04 mark static void
5152 c7d5c43c 2022-08-04 mark diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5153 c7d5c43c 2022-08-04 mark {
5154 c7d5c43c 2022-08-04 mark int start, i;
5155 c7d5c43c 2022-08-04 mark
5156 c7d5c43c 2022-08-04 mark i = start = s->first_displayed_line + 1;
5157 c7d5c43c 2022-08-04 mark
5158 c7d5c43c 2022-08-04 mark while (s->lines[i].type != type) {
5159 c7d5c43c 2022-08-04 mark if (i == s->nlines - 1)
5160 c7d5c43c 2022-08-04 mark i = 0;
5161 c7d5c43c 2022-08-04 mark if (++i == start)
5162 c7d5c43c 2022-08-04 mark return; /* do nothing, requested type not in file */
5163 c7d5c43c 2022-08-04 mark }
5164 c7d5c43c 2022-08-04 mark
5165 c7d5c43c 2022-08-04 mark s->selected_line = 1;
5166 c7d5c43c 2022-08-04 mark s->first_displayed_line = i;
5167 c7d5c43c 2022-08-04 mark }
5168 c7d5c43c 2022-08-04 mark
5169 c0f61fa4 2022-07-11 mark static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5170 c0f61fa4 2022-07-11 mark int, int, int);
5171 c0f61fa4 2022-07-11 mark static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5172 c0f61fa4 2022-07-11 mark int, int);
5173 c0f61fa4 2022-07-11 mark
5174 917d79a7 2022-07-01 stsp static const struct got_error *
5175 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5176 e5a0f69f 2018-08-18 stsp {
5177 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
5178 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
5179 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
5180 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
5181 826082fe 2020-12-10 stsp char *line = NULL;
5182 826082fe 2020-12-10 stsp size_t linesize = 0;
5183 826082fe 2020-12-10 stsp ssize_t linelen;
5184 c0f61fa4 2022-07-11 mark int i, nscroll = view->nlines - 1, up = 0;
5185 e5a0f69f 2018-08-18 stsp
5186 c7d5c43c 2022-08-04 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
5187 c7d5c43c 2022-08-04 mark
5188 e5a0f69f 2018-08-18 stsp switch (ch) {
5189 145b6838 2022-06-16 stsp case '0':
5190 145b6838 2022-06-16 stsp view->x = 0;
5191 145b6838 2022-06-16 stsp break;
5192 145b6838 2022-06-16 stsp case '$':
5193 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
5194 640cd7ff 2022-06-22 mark view->count = 0;
5195 145b6838 2022-06-16 stsp break;
5196 145b6838 2022-06-16 stsp case KEY_RIGHT:
5197 145b6838 2022-06-16 stsp case 'l':
5198 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
5199 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
5200 640cd7ff 2022-06-22 mark else
5201 640cd7ff 2022-06-22 mark view->count = 0;
5202 145b6838 2022-06-16 stsp break;
5203 145b6838 2022-06-16 stsp case KEY_LEFT:
5204 145b6838 2022-06-16 stsp case 'h':
5205 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
5206 640cd7ff 2022-06-22 mark if (view->x <= 0)
5207 640cd7ff 2022-06-22 mark view->count = 0;
5208 145b6838 2022-06-16 stsp break;
5209 64453f7e 2020-11-21 stsp case 'a':
5210 3dbaef42 2020-11-24 stsp case 'w':
5211 3dbaef42 2020-11-24 stsp if (ch == 'a')
5212 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
5213 3dbaef42 2020-11-24 stsp if (ch == 'w')
5214 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
5215 917d79a7 2022-07-01 stsp err = reset_diff_view(view);
5216 912a3f79 2021-08-30 j break;
5217 912a3f79 2021-08-30 j case 'g':
5218 912a3f79 2021-08-30 j case KEY_HOME:
5219 912a3f79 2021-08-30 j s->first_displayed_line = 1;
5220 640cd7ff 2022-06-22 mark view->count = 0;
5221 64453f7e 2020-11-21 stsp break;
5222 912a3f79 2021-08-30 j case 'G':
5223 912a3f79 2021-08-30 j case KEY_END:
5224 640cd7ff 2022-06-22 mark view->count = 0;
5225 912a3f79 2021-08-30 j if (s->eof)
5226 912a3f79 2021-08-30 j break;
5227 912a3f79 2021-08-30 j
5228 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
5229 912a3f79 2021-08-30 j s->eof = 1;
5230 912a3f79 2021-08-30 j break;
5231 1e37a5c2 2019-05-12 jcs case 'k':
5232 1e37a5c2 2019-05-12 jcs case KEY_UP:
5233 02ffd0d5 2021-10-17 stsp case CTRL('p'):
5234 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
5235 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5236 640cd7ff 2022-06-22 mark else
5237 640cd7ff 2022-06-22 mark view->count = 0;
5238 1e37a5c2 2019-05-12 jcs break;
5239 83cc4199 2022-06-13 stsp case CTRL('u'):
5240 33c3719a 2022-06-15 stsp case 'u':
5241 83cc4199 2022-06-13 stsp nscroll /= 2;
5242 83cc4199 2022-06-13 stsp /* FALL THROUGH */
5243 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5244 a60a9dc4 2019-05-13 jcs case CTRL('b'):
5245 61417565 2022-06-20 mark case 'b':
5246 640cd7ff 2022-06-22 mark if (s->first_displayed_line == 1) {
5247 640cd7ff 2022-06-22 mark view->count = 0;
5248 26ed57b2 2018-05-19 stsp break;
5249 640cd7ff 2022-06-22 mark }
5250 1e37a5c2 2019-05-12 jcs i = 0;
5251 83cc4199 2022-06-13 stsp while (i++ < nscroll && s->first_displayed_line > 1)
5252 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5253 1e37a5c2 2019-05-12 jcs break;
5254 1e37a5c2 2019-05-12 jcs case 'j':
5255 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5256 02ffd0d5 2021-10-17 stsp case CTRL('n'):
5257 1e37a5c2 2019-05-12 jcs if (!s->eof)
5258 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5259 640cd7ff 2022-06-22 mark else
5260 640cd7ff 2022-06-22 mark view->count = 0;
5261 1e37a5c2 2019-05-12 jcs break;
5262 83cc4199 2022-06-13 stsp case CTRL('d'):
5263 33c3719a 2022-06-15 stsp case 'd':
5264 83cc4199 2022-06-13 stsp nscroll /= 2;
5265 83cc4199 2022-06-13 stsp /* FALL THROUGH */
5266 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
5267 a60a9dc4 2019-05-13 jcs case CTRL('f'):
5268 61417565 2022-06-20 mark case 'f':
5269 1e37a5c2 2019-05-12 jcs case ' ':
5270 640cd7ff 2022-06-22 mark if (s->eof) {
5271 640cd7ff 2022-06-22 mark view->count = 0;
5272 1e37a5c2 2019-05-12 jcs break;
5273 640cd7ff 2022-06-22 mark }
5274 1e37a5c2 2019-05-12 jcs i = 0;
5275 83cc4199 2022-06-13 stsp while (!s->eof && i++ < nscroll) {
5276 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
5277 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5278 826082fe 2020-12-10 stsp if (linelen == -1) {
5279 826082fe 2020-12-10 stsp if (feof(s->f)) {
5280 826082fe 2020-12-10 stsp s->eof = 1;
5281 826082fe 2020-12-10 stsp } else
5282 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
5283 34bc9ec9 2019-02-22 stsp break;
5284 826082fe 2020-12-10 stsp }
5285 1e37a5c2 2019-05-12 jcs }
5286 826082fe 2020-12-10 stsp free(line);
5287 1e37a5c2 2019-05-12 jcs break;
5288 c7d5c43c 2022-08-04 mark case '(':
5289 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5290 c7d5c43c 2022-08-04 mark break;
5291 c7d5c43c 2022-08-04 mark case ')':
5292 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5293 c7d5c43c 2022-08-04 mark break;
5294 c7d5c43c 2022-08-04 mark case '{':
5295 c7d5c43c 2022-08-04 mark diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5296 c7d5c43c 2022-08-04 mark break;
5297 c7d5c43c 2022-08-04 mark case '}':
5298 c7d5c43c 2022-08-04 mark diff_next_index(s, GOT_DIFF_LINE_HUNK);
5299 c7d5c43c 2022-08-04 mark break;
5300 1e37a5c2 2019-05-12 jcs case '[':
5301 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
5302 1e37a5c2 2019-05-12 jcs s->diff_context--;
5303 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5304 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5305 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5306 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
5307 27829c9e 2020-11-21 stsp s->nlines) {
5308 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
5309 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
5310 27829c9e 2020-11-21 stsp }
5311 640cd7ff 2022-06-22 mark } else
5312 640cd7ff 2022-06-22 mark view->count = 0;
5313 1e37a5c2 2019-05-12 jcs break;
5314 1e37a5c2 2019-05-12 jcs case ']':
5315 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5316 1e37a5c2 2019-05-12 jcs s->diff_context++;
5317 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5318 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5319 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5320 640cd7ff 2022-06-22 mark } else
5321 640cd7ff 2022-06-22 mark view->count = 0;
5322 1e37a5c2 2019-05-12 jcs break;
5323 1e37a5c2 2019-05-12 jcs case '<':
5324 1e37a5c2 2019-05-12 jcs case ',':
5325 2b3e6702 2022-07-20 mark case 'K':
5326 c0f61fa4 2022-07-11 mark up = 1;
5327 c0f61fa4 2022-07-11 mark /* FALL THROUGH */
5328 c0f61fa4 2022-07-11 mark case '>':
5329 c0f61fa4 2022-07-11 mark case '.':
5330 2b3e6702 2022-07-20 mark case 'J':
5331 c0f61fa4 2022-07-11 mark if (s->parent_view == NULL) {
5332 640cd7ff 2022-06-22 mark view->count = 0;
5333 48ae06ee 2018-10-18 stsp break;
5334 640cd7ff 2022-06-22 mark }
5335 c0f61fa4 2022-07-11 mark s->parent_view->count = view->count;
5336 6524637e 2019-02-21 stsp
5337 c0f61fa4 2022-07-11 mark if (s->parent_view->type == TOG_VIEW_LOG) {
5338 c0f61fa4 2022-07-11 mark ls = &s->parent_view->state.log;
5339 c0f61fa4 2022-07-11 mark old_selected_entry = ls->selected_entry;
5340 15a087fe 2019-02-21 stsp
5341 c0f61fa4 2022-07-11 mark err = input_log_view(NULL, s->parent_view,
5342 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
5343 c0f61fa4 2022-07-11 mark if (err)
5344 c0f61fa4 2022-07-11 mark break;
5345 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
5346 15a087fe 2019-02-21 stsp
5347 c0f61fa4 2022-07-11 mark if (old_selected_entry == ls->selected_entry)
5348 c0f61fa4 2022-07-11 mark break;
5349 15a087fe 2019-02-21 stsp
5350 c0f61fa4 2022-07-11 mark err = set_selected_commit(s, ls->selected_entry);
5351 c0f61fa4 2022-07-11 mark if (err)
5352 c0f61fa4 2022-07-11 mark break;
5353 c0f61fa4 2022-07-11 mark } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5354 c0f61fa4 2022-07-11 mark struct tog_blame_view_state *bs;
5355 c0f61fa4 2022-07-11 mark struct got_object_id *id, *prev_id;
5356 5e224a3e 2019-02-22 stsp
5357 c0f61fa4 2022-07-11 mark bs = &s->parent_view->state.blame;
5358 c0f61fa4 2022-07-11 mark prev_id = get_annotation_for_line(bs->blame.lines,
5359 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->last_diffed_line);
5360 c0f61fa4 2022-07-11 mark
5361 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view,
5362 c0f61fa4 2022-07-11 mark up ? KEY_UP : KEY_DOWN);
5363 c0f61fa4 2022-07-11 mark if (err)
5364 c0f61fa4 2022-07-11 mark break;
5365 c0f61fa4 2022-07-11 mark view->count = s->parent_view->count;
5366 5a8b5076 2020-12-05 stsp
5367 c0f61fa4 2022-07-11 mark if (prev_id == NULL)
5368 c0f61fa4 2022-07-11 mark break;
5369 c0f61fa4 2022-07-11 mark id = get_selected_commit_id(bs->blame.lines,
5370 c0f61fa4 2022-07-11 mark bs->blame.nlines, bs->first_displayed_line,
5371 c0f61fa4 2022-07-11 mark bs->selected_line);
5372 c0f61fa4 2022-07-11 mark if (id == NULL)
5373 c0f61fa4 2022-07-11 mark break;
5374 15a087fe 2019-02-21 stsp
5375 c0f61fa4 2022-07-11 mark if (!got_object_id_cmp(prev_id, id))
5376 c0f61fa4 2022-07-11 mark break;
5377 15a087fe 2019-02-21 stsp
5378 c0f61fa4 2022-07-11 mark err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5379 c0f61fa4 2022-07-11 mark if (err)
5380 c0f61fa4 2022-07-11 mark break;
5381 c0f61fa4 2022-07-11 mark }
5382 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5383 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5384 67b5eae1 2021-12-27 naddy s->matched_line = 0;
5385 145b6838 2022-06-16 stsp view->x = 0;
5386 1e37a5c2 2019-05-12 jcs
5387 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5388 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5389 1e37a5c2 2019-05-12 jcs break;
5390 1e37a5c2 2019-05-12 jcs default:
5391 640cd7ff 2022-06-22 mark view->count = 0;
5392 1e37a5c2 2019-05-12 jcs break;
5393 26ed57b2 2018-05-19 stsp }
5394 e5a0f69f 2018-08-18 stsp
5395 bcbd79e2 2018-08-19 stsp return err;
5396 26ed57b2 2018-05-19 stsp }
5397 26ed57b2 2018-05-19 stsp
5398 4ed7e80c 2018-05-20 stsp static const struct got_error *
5399 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5400 9f7d7167 2018-04-29 stsp {
5401 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5402 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5403 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5404 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5405 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5406 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5407 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5408 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5409 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5410 3dbaef42 2020-11-24 stsp const char *errstr;
5411 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5412 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5413 70ac5f84 2019-03-28 stsp
5414 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5415 26ed57b2 2018-05-19 stsp switch (ch) {
5416 64453f7e 2020-11-21 stsp case 'a':
5417 64453f7e 2020-11-21 stsp force_text_diff = 1;
5418 3dbaef42 2020-11-24 stsp break;
5419 3dbaef42 2020-11-24 stsp case 'C':
5420 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5421 3dbaef42 2020-11-24 stsp &errstr);
5422 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5423 5a20d08d 2022-02-09 op errx(1, "number of context lines is %s: %s",
5424 5a20d08d 2022-02-09 op errstr, errstr);
5425 64453f7e 2020-11-21 stsp break;
5426 09b5bff8 2020-02-23 naddy case 'r':
5427 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5428 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5429 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5430 09b5bff8 2020-02-23 naddy optarg);
5431 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5432 09b5bff8 2020-02-23 naddy break;
5433 3dbaef42 2020-11-24 stsp case 'w':
5434 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5435 3dbaef42 2020-11-24 stsp break;
5436 26ed57b2 2018-05-19 stsp default:
5437 17020d27 2019-03-07 stsp usage_diff();
5438 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5439 26ed57b2 2018-05-19 stsp }
5440 26ed57b2 2018-05-19 stsp }
5441 26ed57b2 2018-05-19 stsp
5442 26ed57b2 2018-05-19 stsp argc -= optind;
5443 26ed57b2 2018-05-19 stsp argv += optind;
5444 26ed57b2 2018-05-19 stsp
5445 26ed57b2 2018-05-19 stsp if (argc == 0) {
5446 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5447 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5448 15a94983 2018-12-23 stsp id_str1 = argv[0];
5449 15a94983 2018-12-23 stsp id_str2 = argv[1];
5450 26ed57b2 2018-05-19 stsp } else
5451 26ed57b2 2018-05-19 stsp usage_diff();
5452 eb6600df 2019-01-04 stsp
5453 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
5454 0ae84acc 2022-06-15 tracey if (error)
5455 0ae84acc 2022-06-15 tracey goto done;
5456 0ae84acc 2022-06-15 tracey
5457 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5458 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5459 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5460 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5461 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5462 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5463 c156c7a4 2020-12-18 stsp goto done;
5464 a273ac94 2020-02-23 naddy if (worktree)
5465 a273ac94 2020-02-23 naddy repo_path =
5466 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5467 a273ac94 2020-02-23 naddy else
5468 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5469 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5470 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5471 c156c7a4 2020-12-18 stsp goto done;
5472 c156c7a4 2020-12-18 stsp }
5473 a273ac94 2020-02-23 naddy }
5474 a273ac94 2020-02-23 naddy
5475 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5476 eb6600df 2019-01-04 stsp if (error)
5477 eb6600df 2019-01-04 stsp goto done;
5478 26ed57b2 2018-05-19 stsp
5479 a273ac94 2020-02-23 naddy init_curses();
5480 a273ac94 2020-02-23 naddy
5481 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5482 51a10b52 2020-12-26 stsp if (error)
5483 51a10b52 2020-12-26 stsp goto done;
5484 51a10b52 2020-12-26 stsp
5485 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
5486 26ed57b2 2018-05-19 stsp if (error)
5487 26ed57b2 2018-05-19 stsp goto done;
5488 26ed57b2 2018-05-19 stsp
5489 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5490 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5491 26ed57b2 2018-05-19 stsp if (error)
5492 26ed57b2 2018-05-19 stsp goto done;
5493 26ed57b2 2018-05-19 stsp
5494 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
5495 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5496 26ed57b2 2018-05-19 stsp if (error)
5497 26ed57b2 2018-05-19 stsp goto done;
5498 26ed57b2 2018-05-19 stsp
5499 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5500 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5501 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5502 ea5e7bb5 2018-08-01 stsp goto done;
5503 ea5e7bb5 2018-08-01 stsp }
5504 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5505 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5506 5dc9f4bc 2018-08-04 stsp if (error)
5507 5dc9f4bc 2018-08-04 stsp goto done;
5508 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5509 26ed57b2 2018-05-19 stsp done:
5510 3dbaef42 2020-11-24 stsp free(label1);
5511 3dbaef42 2020-11-24 stsp free(label2);
5512 c02c541e 2019-03-29 stsp free(repo_path);
5513 a273ac94 2020-02-23 naddy free(cwd);
5514 1d0f4054 2021-06-17 stsp if (repo) {
5515 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5516 1d0f4054 2021-06-17 stsp if (error == NULL)
5517 1d0f4054 2021-06-17 stsp error = close_err;
5518 1d0f4054 2021-06-17 stsp }
5519 a273ac94 2020-02-23 naddy if (worktree)
5520 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5521 0ae84acc 2022-06-15 tracey if (pack_fds) {
5522 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5523 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
5524 0ae84acc 2022-06-15 tracey if (error == NULL)
5525 0ae84acc 2022-06-15 tracey error = pack_err;
5526 0ae84acc 2022-06-15 tracey }
5527 51a10b52 2020-12-26 stsp tog_free_refs();
5528 26ed57b2 2018-05-19 stsp return error;
5529 9f7d7167 2018-04-29 stsp }
5530 9f7d7167 2018-04-29 stsp
5531 4ed7e80c 2018-05-20 stsp __dead static void
5532 9f7d7167 2018-04-29 stsp usage_blame(void)
5533 9f7d7167 2018-04-29 stsp {
5534 80ddbec8 2018-04-29 stsp endwin();
5535 87411fa9 2022-06-16 stsp fprintf(stderr,
5536 87411fa9 2022-06-16 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
5537 9f7d7167 2018-04-29 stsp getprogname());
5538 9f7d7167 2018-04-29 stsp exit(1);
5539 9f7d7167 2018-04-29 stsp }
5540 84451b3e 2018-07-10 stsp
5541 84451b3e 2018-07-10 stsp struct tog_blame_line {
5542 84451b3e 2018-07-10 stsp int annotated;
5543 84451b3e 2018-07-10 stsp struct got_object_id *id;
5544 84451b3e 2018-07-10 stsp };
5545 9f7d7167 2018-04-29 stsp
5546 4ed7e80c 2018-05-20 stsp static const struct got_error *
5547 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5548 84451b3e 2018-07-10 stsp {
5549 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5550 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5551 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5552 84451b3e 2018-07-10 stsp const struct got_error *err;
5553 4cb9d869 2022-06-16 stsp int lineno = 0, nprinted = 0;
5554 826082fe 2020-12-10 stsp char *line = NULL;
5555 826082fe 2020-12-10 stsp size_t linesize = 0;
5556 826082fe 2020-12-10 stsp ssize_t linelen;
5557 84451b3e 2018-07-10 stsp wchar_t *wline;
5558 27a741e5 2019-09-11 stsp int width;
5559 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5560 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5561 ab089a2a 2018-07-12 stsp char *id_str;
5562 11b20872 2019-11-08 stsp struct tog_color *tc;
5563 ab089a2a 2018-07-12 stsp
5564 d7b5a0e8 2022-04-20 stsp err = got_object_id_str(&id_str, &s->blamed_commit->id);
5565 ab089a2a 2018-07-12 stsp if (err)
5566 ab089a2a 2018-07-12 stsp return err;
5567 84451b3e 2018-07-10 stsp
5568 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5569 f7d12f7e 2018-08-01 stsp werase(view->window);
5570 84451b3e 2018-07-10 stsp
5571 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5572 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5573 ab089a2a 2018-07-12 stsp free(id_str);
5574 ab089a2a 2018-07-12 stsp return err;
5575 ab089a2a 2018-07-12 stsp }
5576 ab089a2a 2018-07-12 stsp
5577 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5578 ab089a2a 2018-07-12 stsp free(line);
5579 2550e4c3 2018-07-13 stsp line = NULL;
5580 1cae65b4 2019-09-22 stsp if (err)
5581 1cae65b4 2019-09-22 stsp return err;
5582 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5583 a3404814 2018-09-02 stsp wstandout(view->window);
5584 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5585 11b20872 2019-11-08 stsp if (tc)
5586 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5587 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5588 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
5589 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
5590 11b20872 2019-11-08 stsp if (tc)
5591 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5592 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5593 a3404814 2018-09-02 stsp wstandend(view->window);
5594 2550e4c3 2018-07-13 stsp free(wline);
5595 2550e4c3 2018-07-13 stsp wline = NULL;
5596 ab089a2a 2018-07-12 stsp
5597 94b80cfa 2022-08-01 mark if (view->gline > blame->nlines)
5598 94b80cfa 2022-08-01 mark view->gline = blame->nlines;
5599 94b80cfa 2022-08-01 mark
5600 94b80cfa 2022-08-01 mark if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5601 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5602 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5603 ab089a2a 2018-07-12 stsp free(id_str);
5604 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5605 ab089a2a 2018-07-12 stsp }
5606 ab089a2a 2018-07-12 stsp free(id_str);
5607 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5608 3f60a8ef 2018-07-10 stsp free(line);
5609 2550e4c3 2018-07-13 stsp line = NULL;
5610 3f60a8ef 2018-07-10 stsp if (err)
5611 3f60a8ef 2018-07-10 stsp return err;
5612 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5613 2550e4c3 2018-07-13 stsp free(wline);
5614 2550e4c3 2018-07-13 stsp wline = NULL;
5615 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5616 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5617 3f60a8ef 2018-07-10 stsp
5618 4f7c3e5e 2020-12-01 naddy s->eof = 0;
5619 145b6838 2022-06-16 stsp view->maxx = 0;
5620 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
5621 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
5622 826082fe 2020-12-10 stsp if (linelen == -1) {
5623 826082fe 2020-12-10 stsp if (feof(blame->f)) {
5624 826082fe 2020-12-10 stsp s->eof = 1;
5625 826082fe 2020-12-10 stsp break;
5626 826082fe 2020-12-10 stsp }
5627 84451b3e 2018-07-10 stsp free(line);
5628 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
5629 84451b3e 2018-07-10 stsp }
5630 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
5631 94b80cfa 2022-08-01 mark continue;
5632 94b80cfa 2022-08-01 mark if (view->gline && !gotoline(view, &lineno, &nprinted))
5633 826082fe 2020-12-10 stsp continue;
5634 1853e0f4 2022-06-16 stsp
5635 1853e0f4 2022-06-16 stsp /* Set view->maxx based on full line length. */
5636 1853e0f4 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5637 1853e0f4 2022-06-16 stsp if (err) {
5638 1853e0f4 2022-06-16 stsp free(line);
5639 1853e0f4 2022-06-16 stsp return err;
5640 1853e0f4 2022-06-16 stsp }
5641 1853e0f4 2022-06-16 stsp free(wline);
5642 1853e0f4 2022-06-16 stsp wline = NULL;
5643 1853e0f4 2022-06-16 stsp view->maxx = MAX(view->maxx, width);
5644 84451b3e 2018-07-10 stsp
5645 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5646 f7d12f7e 2018-08-01 stsp wstandout(view->window);
5647 b700b5d6 2018-07-10 stsp
5648 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
5649 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
5650 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
5651 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5652 c0f61fa4 2022-07-11 mark !(nprinted == s->selected_line - 1)) {
5653 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5654 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
5655 8d0fe45a 2019-08-12 stsp char *id_str;
5656 87411fa9 2022-06-16 stsp err = got_object_id_str(&id_str,
5657 87411fa9 2022-06-16 stsp blame_line->id);
5658 8d0fe45a 2019-08-12 stsp if (err) {
5659 8d0fe45a 2019-08-12 stsp free(line);
5660 8d0fe45a 2019-08-12 stsp return err;
5661 8d0fe45a 2019-08-12 stsp }
5662 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5663 11b20872 2019-11-08 stsp if (tc)
5664 11b20872 2019-11-08 stsp wattr_on(view->window,
5665 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5666 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
5667 11b20872 2019-11-08 stsp if (tc)
5668 11b20872 2019-11-08 stsp wattr_off(view->window,
5669 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5670 8d0fe45a 2019-08-12 stsp free(id_str);
5671 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
5672 8d0fe45a 2019-08-12 stsp } else {
5673 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5674 8d0fe45a 2019-08-12 stsp prev_id = NULL;
5675 84451b3e 2018-07-10 stsp }
5676 ee41ec32 2018-07-10 stsp } else {
5677 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5678 ee41ec32 2018-07-10 stsp prev_id = NULL;
5679 ee41ec32 2018-07-10 stsp }
5680 84451b3e 2018-07-10 stsp
5681 c0f61fa4 2022-07-11 mark if (nprinted == s->selected_line - 1)
5682 f7d12f7e 2018-08-01 stsp wstandend(view->window);
5683 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5684 27a741e5 2019-09-11 stsp
5685 41605754 2020-11-12 stsp if (view->ncols <= 9) {
5686 41605754 2020-11-12 stsp width = 9;
5687 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
5688 4f7c3e5e 2020-12-01 naddy s->matched_line &&
5689 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5690 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
5691 145b6838 2022-06-16 stsp view->window, view->x, regmatch);
5692 41605754 2020-11-12 stsp if (err) {
5693 41605754 2020-11-12 stsp free(line);
5694 41605754 2020-11-12 stsp return err;
5695 41605754 2020-11-12 stsp }
5696 41605754 2020-11-12 stsp width += 9;
5697 41605754 2020-11-12 stsp } else {
5698 4cb9d869 2022-06-16 stsp int skip;
5699 4cb9d869 2022-06-16 stsp err = format_line(&wline, &width, &skip, line,
5700 4cb9d869 2022-06-16 stsp view->x, view->ncols - 9, 9, 1);
5701 4cb9d869 2022-06-16 stsp if (err) {
5702 4cb9d869 2022-06-16 stsp free(line);
5703 4cb9d869 2022-06-16 stsp return err;
5704 145b6838 2022-06-16 stsp }
5705 4cb9d869 2022-06-16 stsp waddwstr(view->window, &wline[skip]);
5706 a75b3e2d 2022-06-16 stsp width += 9;
5707 41605754 2020-11-12 stsp free(wline);
5708 41605754 2020-11-12 stsp wline = NULL;
5709 41605754 2020-11-12 stsp }
5710 41605754 2020-11-12 stsp
5711 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
5712 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
5713 84451b3e 2018-07-10 stsp if (++nprinted == 1)
5714 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
5715 84451b3e 2018-07-10 stsp }
5716 826082fe 2020-12-10 stsp free(line);
5717 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
5718 84451b3e 2018-07-10 stsp
5719 9b058f45 2022-06-30 mark view_border(view);
5720 84451b3e 2018-07-10 stsp
5721 84451b3e 2018-07-10 stsp return NULL;
5722 84451b3e 2018-07-10 stsp }
5723 84451b3e 2018-07-10 stsp
5724 84451b3e 2018-07-10 stsp static const struct got_error *
5725 392891ce 2022-04-07 stsp blame_cb(void *arg, int nlines, int lineno,
5726 392891ce 2022-04-07 stsp struct got_commit_object *commit, struct got_object_id *id)
5727 84451b3e 2018-07-10 stsp {
5728 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
5729 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
5730 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
5731 1a76625f 2018-10-22 stsp int errcode;
5732 84451b3e 2018-07-10 stsp
5733 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
5734 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
5735 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
5736 84451b3e 2018-07-10 stsp
5737 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5738 1a76625f 2018-10-22 stsp if (errcode)
5739 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
5740 84451b3e 2018-07-10 stsp
5741 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
5742 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
5743 d68a0a7d 2018-07-10 stsp goto done;
5744 d68a0a7d 2018-07-10 stsp }
5745 d68a0a7d 2018-07-10 stsp
5746 d68a0a7d 2018-07-10 stsp if (lineno == -1)
5747 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
5748 d68a0a7d 2018-07-10 stsp
5749 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
5750 d68a0a7d 2018-07-10 stsp if (line->annotated)
5751 d68a0a7d 2018-07-10 stsp goto done;
5752 d68a0a7d 2018-07-10 stsp
5753 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
5754 84451b3e 2018-07-10 stsp if (line->id == NULL) {
5755 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5756 84451b3e 2018-07-10 stsp goto done;
5757 84451b3e 2018-07-10 stsp }
5758 84451b3e 2018-07-10 stsp line->annotated = 1;
5759 84451b3e 2018-07-10 stsp done:
5760 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5761 1a76625f 2018-10-22 stsp if (errcode)
5762 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5763 84451b3e 2018-07-10 stsp return err;
5764 84451b3e 2018-07-10 stsp }
5765 84451b3e 2018-07-10 stsp
5766 84451b3e 2018-07-10 stsp static void *
5767 84451b3e 2018-07-10 stsp blame_thread(void *arg)
5768 84451b3e 2018-07-10 stsp {
5769 1d0f4054 2021-06-17 stsp const struct got_error *err, *close_err;
5770 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
5771 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
5772 e6e73e55 2022-06-30 tracey int errcode, fd1 = -1, fd2 = -1;
5773 e6e73e55 2022-06-30 tracey FILE *f1 = NULL, *f2 = NULL;
5774 1b484788 2022-06-28 tracey
5775 e6e73e55 2022-06-30 tracey fd1 = got_opentempfd();
5776 e6e73e55 2022-06-30 tracey if (fd1 == -1)
5777 1b484788 2022-06-28 tracey return (void *)got_error_from_errno("got_opentempfd");
5778 e6e73e55 2022-06-30 tracey
5779 e6e73e55 2022-06-30 tracey fd2 = got_opentempfd();
5780 e6e73e55 2022-06-30 tracey if (fd2 == -1) {
5781 e6e73e55 2022-06-30 tracey err = got_error_from_errno("got_opentempfd");
5782 e6e73e55 2022-06-30 tracey goto done;
5783 e6e73e55 2022-06-30 tracey }
5784 18430de3 2018-07-10 stsp
5785 e6e73e55 2022-06-30 tracey f1 = got_opentemp();
5786 e6e73e55 2022-06-30 tracey if (f1 == NULL) {
5787 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5788 e6e73e55 2022-06-30 tracey goto done;
5789 e6e73e55 2022-06-30 tracey }
5790 e6e73e55 2022-06-30 tracey f2 = got_opentemp();
5791 e6e73e55 2022-06-30 tracey if (f2 == NULL) {
5792 e6e73e55 2022-06-30 tracey err = (void *)got_error_from_errno("got_opentemp");
5793 e6e73e55 2022-06-30 tracey goto done;
5794 e6e73e55 2022-06-30 tracey }
5795 e6e73e55 2022-06-30 tracey
5796 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
5797 61266923 2020-01-14 stsp if (err)
5798 e6e73e55 2022-06-30 tracey goto done;
5799 61266923 2020-01-14 stsp
5800 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
5801 917d79a7 2022-07-01 stsp tog_diff_algo, blame_cb, ta->cb_args,
5802 4b752015 2022-06-30 stsp ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5803 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
5804 fc06ba56 2019-08-22 stsp err = NULL;
5805 18430de3 2018-07-10 stsp
5806 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5807 e6e73e55 2022-06-30 tracey if (errcode) {
5808 e6e73e55 2022-06-30 tracey err = got_error_set_errno(errcode, "pthread_mutex_lock");
5809 e6e73e55 2022-06-30 tracey goto done;
5810 e6e73e55 2022-06-30 tracey }
5811 18430de3 2018-07-10 stsp
5812 1d0f4054 2021-06-17 stsp close_err = got_repo_close(ta->repo);
5813 1d0f4054 2021-06-17 stsp if (err == NULL)
5814 1d0f4054 2021-06-17 stsp err = close_err;
5815 c9beca56 2018-07-22 stsp ta->repo = NULL;
5816 c9beca56 2018-07-22 stsp *ta->complete = 1;
5817 18430de3 2018-07-10 stsp
5818 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5819 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
5820 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5821 18430de3 2018-07-10 stsp
5822 e6e73e55 2022-06-30 tracey done:
5823 e6e73e55 2022-06-30 tracey if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5824 1b484788 2022-06-28 tracey err = got_error_from_errno("close");
5825 e6e73e55 2022-06-30 tracey if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5826 e6e73e55 2022-06-30 tracey err = got_error_from_errno("close");
5827 e6e73e55 2022-06-30 tracey if (f1 && fclose(f1) == EOF && err == NULL)
5828 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5829 e6e73e55 2022-06-30 tracey if (f2 && fclose(f2) == EOF && err == NULL)
5830 e6e73e55 2022-06-30 tracey err = got_error_from_errno("fclose");
5831 1b484788 2022-06-28 tracey
5832 18430de3 2018-07-10 stsp return (void *)err;
5833 84451b3e 2018-07-10 stsp }
5834 84451b3e 2018-07-10 stsp
5835 245d91c1 2018-07-12 stsp static struct got_object_id *
5836 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5837 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
5838 245d91c1 2018-07-12 stsp {
5839 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
5840 8d0fe45a 2019-08-12 stsp
5841 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
5842 8d0fe45a 2019-08-12 stsp return NULL;
5843 b880a918 2018-07-10 stsp
5844 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
5845 c0f61fa4 2022-07-11 mark if (!line->annotated)
5846 c0f61fa4 2022-07-11 mark return NULL;
5847 c0f61fa4 2022-07-11 mark
5848 c0f61fa4 2022-07-11 mark return line->id;
5849 c0f61fa4 2022-07-11 mark }
5850 c0f61fa4 2022-07-11 mark
5851 c0f61fa4 2022-07-11 mark static struct got_object_id *
5852 c0f61fa4 2022-07-11 mark get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5853 c0f61fa4 2022-07-11 mark int lineno)
5854 c0f61fa4 2022-07-11 mark {
5855 c0f61fa4 2022-07-11 mark struct tog_blame_line *line;
5856 c0f61fa4 2022-07-11 mark
5857 c0f61fa4 2022-07-11 mark if (nlines <= 0 || lineno >= nlines)
5858 c0f61fa4 2022-07-11 mark return NULL;
5859 c0f61fa4 2022-07-11 mark
5860 c0f61fa4 2022-07-11 mark line = &lines[lineno - 1];
5861 245d91c1 2018-07-12 stsp if (!line->annotated)
5862 245d91c1 2018-07-12 stsp return NULL;
5863 245d91c1 2018-07-12 stsp
5864 245d91c1 2018-07-12 stsp return line->id;
5865 b880a918 2018-07-10 stsp }
5866 245d91c1 2018-07-12 stsp
5867 b880a918 2018-07-10 stsp static const struct got_error *
5868 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
5869 a70480e0 2018-06-23 stsp {
5870 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
5871 245d91c1 2018-07-12 stsp int i;
5872 245d91c1 2018-07-12 stsp
5873 245d91c1 2018-07-12 stsp if (blame->thread) {
5874 1a76625f 2018-10-22 stsp int errcode;
5875 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5876 1a76625f 2018-10-22 stsp if (errcode)
5877 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5878 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
5879 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
5880 1a76625f 2018-10-22 stsp if (errcode)
5881 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
5882 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5883 1a76625f 2018-10-22 stsp if (errcode)
5884 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5885 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
5886 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
5887 245d91c1 2018-07-12 stsp err = NULL;
5888 245d91c1 2018-07-12 stsp blame->thread = NULL;
5889 245d91c1 2018-07-12 stsp }
5890 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
5891 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
5892 1d0f4054 2021-06-17 stsp close_err = got_repo_close(blame->thread_args.repo);
5893 1d0f4054 2021-06-17 stsp if (err == NULL)
5894 1d0f4054 2021-06-17 stsp err = close_err;
5895 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
5896 245d91c1 2018-07-12 stsp }
5897 245d91c1 2018-07-12 stsp if (blame->f) {
5898 56b63ca4 2021-01-22 stsp if (fclose(blame->f) == EOF && err == NULL)
5899 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
5900 245d91c1 2018-07-12 stsp blame->f = NULL;
5901 245d91c1 2018-07-12 stsp }
5902 57670559 2018-12-23 stsp if (blame->lines) {
5903 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
5904 57670559 2018-12-23 stsp free(blame->lines[i].id);
5905 57670559 2018-12-23 stsp free(blame->lines);
5906 57670559 2018-12-23 stsp blame->lines = NULL;
5907 57670559 2018-12-23 stsp }
5908 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
5909 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
5910 0ae84acc 2022-06-15 tracey if (blame->pack_fds) {
5911 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
5912 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(blame->pack_fds);
5913 0ae84acc 2022-06-15 tracey if (err == NULL)
5914 0ae84acc 2022-06-15 tracey err = pack_err;
5915 8b195234 2022-06-15 stsp blame->pack_fds = NULL;
5916 0ae84acc 2022-06-15 tracey }
5917 245d91c1 2018-07-12 stsp return err;
5918 245d91c1 2018-07-12 stsp }
5919 245d91c1 2018-07-12 stsp
5920 245d91c1 2018-07-12 stsp static const struct got_error *
5921 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
5922 fc06ba56 2019-08-22 stsp {
5923 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
5924 fc06ba56 2019-08-22 stsp int *done = arg;
5925 fc06ba56 2019-08-22 stsp int errcode;
5926 fc06ba56 2019-08-22 stsp
5927 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5928 fc06ba56 2019-08-22 stsp if (errcode)
5929 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5930 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
5931 fc06ba56 2019-08-22 stsp
5932 fc06ba56 2019-08-22 stsp if (*done)
5933 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
5934 fc06ba56 2019-08-22 stsp
5935 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5936 fc06ba56 2019-08-22 stsp if (errcode)
5937 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5938 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
5939 fc06ba56 2019-08-22 stsp
5940 fc06ba56 2019-08-22 stsp return err;
5941 fc06ba56 2019-08-22 stsp }
5942 fc06ba56 2019-08-22 stsp
5943 fc06ba56 2019-08-22 stsp static const struct got_error *
5944 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
5945 245d91c1 2018-07-12 stsp {
5946 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5947 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5948 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
5949 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
5950 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
5951 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
5952 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
5953 eb81bc23 2022-06-28 tracey int obj_type, fd = -1;
5954 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
5955 a70480e0 2018-06-23 stsp
5956 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&commit, s->repo,
5957 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id);
5958 27d434c2 2018-09-15 stsp if (err)
5959 15a94983 2018-12-23 stsp return err;
5960 eb81bc23 2022-06-28 tracey
5961 eb81bc23 2022-06-28 tracey fd = got_opentempfd();
5962 eb81bc23 2022-06-28 tracey if (fd == -1) {
5963 eb81bc23 2022-06-28 tracey err = got_error_from_errno("got_opentempfd");
5964 eb81bc23 2022-06-28 tracey goto done;
5965 eb81bc23 2022-06-28 tracey }
5966 a44927cc 2022-04-07 stsp
5967 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
5968 a44927cc 2022-04-07 stsp if (err)
5969 a44927cc 2022-04-07 stsp goto done;
5970 27d434c2 2018-09-15 stsp
5971 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
5972 84451b3e 2018-07-10 stsp if (err)
5973 84451b3e 2018-07-10 stsp goto done;
5974 27d434c2 2018-09-15 stsp
5975 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5976 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5977 84451b3e 2018-07-10 stsp goto done;
5978 84451b3e 2018-07-10 stsp }
5979 a70480e0 2018-06-23 stsp
5980 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
5981 a70480e0 2018-06-23 stsp if (err)
5982 a70480e0 2018-06-23 stsp goto done;
5983 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
5984 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
5985 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
5986 84451b3e 2018-07-10 stsp goto done;
5987 84451b3e 2018-07-10 stsp }
5988 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
5989 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
5990 1fddf795 2021-01-20 stsp if (err)
5991 1fddf795 2021-01-20 stsp goto done;
5992 1fddf795 2021-01-20 stsp if (blame->nlines == 0) {
5993 1fddf795 2021-01-20 stsp s->blame_complete = 1;
5994 84451b3e 2018-07-10 stsp goto done;
5995 1fddf795 2021-01-20 stsp }
5996 b02560ec 2019-08-19 stsp
5997 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
5998 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
5999 b02560ec 2019-08-19 stsp blame->nlines--;
6000 a70480e0 2018-06-23 stsp
6001 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6002 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
6003 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
6004 84451b3e 2018-07-10 stsp goto done;
6005 84451b3e 2018-07-10 stsp }
6006 a70480e0 2018-06-23 stsp
6007 0ae84acc 2022-06-15 tracey err = got_repo_pack_fds_open(&pack_fds);
6008 bd24772e 2018-07-11 stsp if (err)
6009 bd24772e 2018-07-11 stsp goto done;
6010 0ae84acc 2022-06-15 tracey err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6011 0ae84acc 2022-06-15 tracey pack_fds);
6012 0ae84acc 2022-06-15 tracey if (err)
6013 0ae84acc 2022-06-15 tracey goto done;
6014 bd24772e 2018-07-11 stsp
6015 0ae84acc 2022-06-15 tracey blame->pack_fds = pack_fds;
6016 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
6017 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
6018 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
6019 d7b5a0e8 2022-04-20 stsp blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6020 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
6021 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
6022 245d91c1 2018-07-12 stsp goto done;
6023 245d91c1 2018-07-12 stsp }
6024 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
6025 245d91c1 2018-07-12 stsp
6026 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
6027 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
6028 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
6029 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
6030 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
6031 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
6032 a5388363 2020-12-01 naddy s->blame_complete = 0;
6033 f5a09613 2020-12-13 naddy
6034 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6035 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
6036 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
6037 f5a09613 2020-12-13 naddy s->selected_line = 1;
6038 f5a09613 2020-12-13 naddy }
6039 67b5eae1 2021-12-27 naddy s->matched_line = 0;
6040 245d91c1 2018-07-12 stsp
6041 245d91c1 2018-07-12 stsp done:
6042 a44927cc 2022-04-07 stsp if (commit)
6043 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
6044 eb81bc23 2022-06-28 tracey if (fd != -1 && close(fd) == -1 && err == NULL)
6045 eb81bc23 2022-06-28 tracey err = got_error_from_errno("close");
6046 245d91c1 2018-07-12 stsp if (blob)
6047 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
6048 27d434c2 2018-09-15 stsp free(obj_id);
6049 245d91c1 2018-07-12 stsp if (err)
6050 245d91c1 2018-07-12 stsp stop_blame(blame);
6051 245d91c1 2018-07-12 stsp return err;
6052 245d91c1 2018-07-12 stsp }
6053 245d91c1 2018-07-12 stsp
6054 245d91c1 2018-07-12 stsp static const struct got_error *
6055 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
6056 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6057 245d91c1 2018-07-12 stsp {
6058 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
6059 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6060 dbc6a6b6 2018-07-12 stsp
6061 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->blamed_commits);
6062 245d91c1 2018-07-12 stsp
6063 c4843652 2019-08-12 stsp s->path = strdup(path);
6064 c4843652 2019-08-12 stsp if (s->path == NULL)
6065 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
6066 c4843652 2019-08-12 stsp
6067 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6068 c4843652 2019-08-12 stsp if (err) {
6069 c4843652 2019-08-12 stsp free(s->path);
6070 7cbe629d 2018-08-04 stsp return err;
6071 c4843652 2019-08-12 stsp }
6072 245d91c1 2018-07-12 stsp
6073 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6074 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
6075 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
6076 fb2756b9 2018-08-04 stsp s->selected_line = 1;
6077 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
6078 fb2756b9 2018-08-04 stsp s->repo = repo;
6079 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
6080 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
6081 7cbe629d 2018-08-04 stsp
6082 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
6083 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6084 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6085 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6086 11b20872 2019-11-08 stsp if (err)
6087 11b20872 2019-11-08 stsp return err;
6088 11b20872 2019-11-08 stsp }
6089 11b20872 2019-11-08 stsp
6090 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
6091 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
6092 917d79a7 2022-07-01 stsp view->reset = reset_blame_view;
6093 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
6094 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
6095 eaf2c13e 2022-09-17 mark view->search_setup = search_setup_blame_view;
6096 ec2a9698 2022-09-15 mark view->search_next = search_next_view_match;
6097 e5a0f69f 2018-08-18 stsp
6098 a5388363 2020-12-01 naddy return run_blame(view);
6099 7cbe629d 2018-08-04 stsp }
6100 7cbe629d 2018-08-04 stsp
6101 e5a0f69f 2018-08-18 stsp static const struct got_error *
6102 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
6103 7cbe629d 2018-08-04 stsp {
6104 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6105 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6106 7cbe629d 2018-08-04 stsp
6107 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
6108 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
6109 e5a0f69f 2018-08-18 stsp
6110 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&s->blamed_commits)) {
6111 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
6112 dbdddfee 2021-06-23 naddy blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6113 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6114 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
6115 7cbe629d 2018-08-04 stsp }
6116 e5a0f69f 2018-08-18 stsp
6117 e5a0f69f 2018-08-18 stsp free(s->path);
6118 11b20872 2019-11-08 stsp free_colors(&s->colors);
6119 e5a0f69f 2018-08-18 stsp return err;
6120 7cbe629d 2018-08-04 stsp }
6121 7cbe629d 2018-08-04 stsp
6122 7cbe629d 2018-08-04 stsp static const struct got_error *
6123 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
6124 6c4c42e0 2019-06-24 stsp {
6125 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
6126 6c4c42e0 2019-06-24 stsp
6127 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
6128 6c4c42e0 2019-06-24 stsp return NULL;
6129 eaf2c13e 2022-09-17 mark }
6130 eaf2c13e 2022-09-17 mark
6131 eaf2c13e 2022-09-17 mark static void
6132 eaf2c13e 2022-09-17 mark search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6133 eaf2c13e 2022-09-17 mark size_t *nlines, int **first, int **last, int **match, int **selected)
6134 eaf2c13e 2022-09-17 mark {
6135 eaf2c13e 2022-09-17 mark struct tog_blame_view_state *s = &view->state.blame;
6136 eaf2c13e 2022-09-17 mark
6137 eaf2c13e 2022-09-17 mark *f = s->blame.f;
6138 eaf2c13e 2022-09-17 mark *nlines = s->blame.nlines;
6139 eaf2c13e 2022-09-17 mark *line_offsets = s->blame.line_offsets;
6140 eaf2c13e 2022-09-17 mark *match = &s->matched_line;
6141 eaf2c13e 2022-09-17 mark *first = &s->first_displayed_line;
6142 eaf2c13e 2022-09-17 mark *last = &s->last_displayed_line;
6143 eaf2c13e 2022-09-17 mark *selected = &s->selected_line;
6144 6c4c42e0 2019-06-24 stsp }
6145 6c4c42e0 2019-06-24 stsp
6146 6c4c42e0 2019-06-24 stsp static const struct got_error *
6147 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
6148 7cbe629d 2018-08-04 stsp {
6149 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6150 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
6151 2b380cc8 2018-10-24 stsp int errcode;
6152 2b380cc8 2018-10-24 stsp
6153 1fddf795 2021-01-20 stsp if (s->blame.thread == NULL && !s->blame_complete) {
6154 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6155 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
6156 2b380cc8 2018-10-24 stsp if (errcode)
6157 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
6158 51fe7530 2019-08-19 stsp
6159 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
6160 2b380cc8 2018-10-24 stsp }
6161 e5a0f69f 2018-08-18 stsp
6162 51fe7530 2019-08-19 stsp if (s->blame_complete)
6163 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
6164 51fe7530 2019-08-19 stsp
6165 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
6166 e5a0f69f 2018-08-18 stsp
6167 9b058f45 2022-06-30 mark view_border(view);
6168 e5a0f69f 2018-08-18 stsp return err;
6169 e5a0f69f 2018-08-18 stsp }
6170 e5a0f69f 2018-08-18 stsp
6171 e5a0f69f 2018-08-18 stsp static const struct got_error *
6172 05f04cdf 2022-07-20 mark log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6173 05f04cdf 2022-07-20 mark struct got_repository *repo, struct got_object_id *id)
6174 05f04cdf 2022-07-20 mark {
6175 05f04cdf 2022-07-20 mark struct tog_view *log_view;
6176 05f04cdf 2022-07-20 mark const struct got_error *err = NULL;
6177 05f04cdf 2022-07-20 mark
6178 05f04cdf 2022-07-20 mark *new_view = NULL;
6179 05f04cdf 2022-07-20 mark
6180 05f04cdf 2022-07-20 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6181 05f04cdf 2022-07-20 mark if (log_view == NULL)
6182 05f04cdf 2022-07-20 mark return got_error_from_errno("view_open");
6183 05f04cdf 2022-07-20 mark
6184 05f04cdf 2022-07-20 mark err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6185 05f04cdf 2022-07-20 mark if (err)
6186 05f04cdf 2022-07-20 mark view_close(log_view);
6187 05f04cdf 2022-07-20 mark else
6188 05f04cdf 2022-07-20 mark *new_view = log_view;
6189 05f04cdf 2022-07-20 mark
6190 05f04cdf 2022-07-20 mark return err;
6191 05f04cdf 2022-07-20 mark }
6192 05f04cdf 2022-07-20 mark
6193 05f04cdf 2022-07-20 mark static const struct got_error *
6194 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6195 e5a0f69f 2018-08-18 stsp {
6196 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
6197 136e2bd4 2022-07-23 mark struct tog_view *diff_view;
6198 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6199 9b058f45 2022-06-30 mark int eos, nscroll, begin_y = 0, begin_x = 0;
6200 9b058f45 2022-06-30 mark
6201 9b058f45 2022-06-30 mark eos = nscroll = view->nlines - 2;
6202 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6203 9b058f45 2022-06-30 mark --eos; /* border */
6204 7cbe629d 2018-08-04 stsp
6205 e5a0f69f 2018-08-18 stsp switch (ch) {
6206 145b6838 2022-06-16 stsp case '0':
6207 145b6838 2022-06-16 stsp view->x = 0;
6208 145b6838 2022-06-16 stsp break;
6209 145b6838 2022-06-16 stsp case '$':
6210 145b6838 2022-06-16 stsp view->x = MAX(view->maxx - view->ncols / 3, 0);
6211 640cd7ff 2022-06-22 mark view->count = 0;
6212 145b6838 2022-06-16 stsp break;
6213 145b6838 2022-06-16 stsp case KEY_RIGHT:
6214 145b6838 2022-06-16 stsp case 'l':
6215 145b6838 2022-06-16 stsp if (view->x + view->ncols / 3 < view->maxx)
6216 145b6838 2022-06-16 stsp view->x += 2; /* move two columns right */
6217 640cd7ff 2022-06-22 mark else
6218 640cd7ff 2022-06-22 mark view->count = 0;
6219 145b6838 2022-06-16 stsp break;
6220 145b6838 2022-06-16 stsp case KEY_LEFT:
6221 145b6838 2022-06-16 stsp case 'h':
6222 145b6838 2022-06-16 stsp view->x -= MIN(view->x, 2); /* move two columns back */
6223 640cd7ff 2022-06-22 mark if (view->x <= 0)
6224 640cd7ff 2022-06-22 mark view->count = 0;
6225 145b6838 2022-06-16 stsp break;
6226 1e37a5c2 2019-05-12 jcs case 'q':
6227 1e37a5c2 2019-05-12 jcs s->done = 1;
6228 4deef56f 2021-09-02 naddy break;
6229 4deef56f 2021-09-02 naddy case 'g':
6230 4deef56f 2021-09-02 naddy case KEY_HOME:
6231 4deef56f 2021-09-02 naddy s->selected_line = 1;
6232 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6233 640cd7ff 2022-06-22 mark view->count = 0;
6234 4deef56f 2021-09-02 naddy break;
6235 4deef56f 2021-09-02 naddy case 'G':
6236 4deef56f 2021-09-02 naddy case KEY_END:
6237 9b058f45 2022-06-30 mark if (s->blame.nlines < eos) {
6238 4deef56f 2021-09-02 naddy s->selected_line = s->blame.nlines;
6239 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6240 4deef56f 2021-09-02 naddy } else {
6241 9b058f45 2022-06-30 mark s->selected_line = eos;
6242 9b058f45 2022-06-30 mark s->first_displayed_line = s->blame.nlines - (eos - 1);
6243 4deef56f 2021-09-02 naddy }
6244 640cd7ff 2022-06-22 mark view->count = 0;
6245 1e37a5c2 2019-05-12 jcs break;
6246 1e37a5c2 2019-05-12 jcs case 'k':
6247 1e37a5c2 2019-05-12 jcs case KEY_UP:
6248 02ffd0d5 2021-10-17 stsp case CTRL('p'):
6249 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
6250 1e37a5c2 2019-05-12 jcs s->selected_line--;
6251 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
6252 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
6253 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
6254 640cd7ff 2022-06-22 mark else
6255 640cd7ff 2022-06-22 mark view->count = 0;
6256 1e37a5c2 2019-05-12 jcs break;
6257 83cc4199 2022-06-13 stsp case CTRL('u'):
6258 33c3719a 2022-06-15 stsp case 'u':
6259 83cc4199 2022-06-13 stsp nscroll /= 2;
6260 83cc4199 2022-06-13 stsp /* FALL THROUGH */
6261 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
6262 ea025d1d 2020-02-22 naddy case CTRL('b'):
6263 61417565 2022-06-20 mark case 'b':
6264 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
6265 640cd7ff 2022-06-22 mark if (view->count > 1)
6266 640cd7ff 2022-06-22 mark nscroll += nscroll;
6267 83cc4199 2022-06-13 stsp s->selected_line = MAX(1, s->selected_line - nscroll);
6268 640cd7ff 2022-06-22 mark view->count = 0;
6269 e5a0f69f 2018-08-18 stsp break;
6270 1e37a5c2 2019-05-12 jcs }
6271 83cc4199 2022-06-13 stsp if (s->first_displayed_line > nscroll)
6272 83cc4199 2022-06-13 stsp s->first_displayed_line -= nscroll;
6273 1e37a5c2 2019-05-12 jcs else
6274 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
6275 1e37a5c2 2019-05-12 jcs break;
6276 1e37a5c2 2019-05-12 jcs case 'j':
6277 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
6278 02ffd0d5 2021-10-17 stsp case CTRL('n'):
6279 9b058f45 2022-06-30 mark if (s->selected_line < eos && s->first_displayed_line +
6280 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
6281 1e37a5c2 2019-05-12 jcs s->selected_line++;
6282 9b058f45 2022-06-30 mark else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6283 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
6284 640cd7ff 2022-06-22 mark else
6285 640cd7ff 2022-06-22 mark view->count = 0;
6286 1e37a5c2 2019-05-12 jcs break;
6287 61417565 2022-06-20 mark case 'c':
6288 1e37a5c2 2019-05-12 jcs case 'p': {
6289 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6290 640cd7ff 2022-06-22 mark
6291 640cd7ff 2022-06-22 mark view->count = 0;
6292 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6293 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6294 1e37a5c2 2019-05-12 jcs if (id == NULL)
6295 e5a0f69f 2018-08-18 stsp break;
6296 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
6297 a44927cc 2022-04-07 stsp struct got_commit_object *commit, *pcommit;
6298 15a94983 2018-12-23 stsp struct got_object_qid *pid;
6299 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
6300 1e37a5c2 2019-05-12 jcs int obj_type;
6301 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
6302 1e37a5c2 2019-05-12 jcs s->repo, id);
6303 e5a0f69f 2018-08-18 stsp if (err)
6304 e5a0f69f 2018-08-18 stsp break;
6305 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(
6306 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
6307 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
6308 15a94983 2018-12-23 stsp got_object_commit_close(commit);
6309 e5a0f69f 2018-08-18 stsp break;
6310 e5a0f69f 2018-08-18 stsp }
6311 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
6312 a44927cc 2022-04-07 stsp err = got_object_open_as_commit(&pcommit,
6313 d7b5a0e8 2022-04-20 stsp s->repo, &pid->id);
6314 a44927cc 2022-04-07 stsp if (err)
6315 a44927cc 2022-04-07 stsp break;
6316 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
6317 a44927cc 2022-04-07 stsp pcommit, s->path);
6318 a44927cc 2022-04-07 stsp got_object_commit_close(pcommit);
6319 e5a0f69f 2018-08-18 stsp if (err) {
6320 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
6321 1e37a5c2 2019-05-12 jcs err = NULL;
6322 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6323 e5a0f69f 2018-08-18 stsp break;
6324 e5a0f69f 2018-08-18 stsp }
6325 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
6326 1e37a5c2 2019-05-12 jcs blob_id);
6327 1e37a5c2 2019-05-12 jcs free(blob_id);
6328 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
6329 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
6330 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6331 e5a0f69f 2018-08-18 stsp break;
6332 1e37a5c2 2019-05-12 jcs }
6333 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6334 d7b5a0e8 2022-04-20 stsp &pid->id);
6335 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6336 1e37a5c2 2019-05-12 jcs } else {
6337 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
6338 d7b5a0e8 2022-04-20 stsp &s->blamed_commit->id) == 0)
6339 1e37a5c2 2019-05-12 jcs break;
6340 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6341 1e37a5c2 2019-05-12 jcs id);
6342 1e37a5c2 2019-05-12 jcs }
6343 1e37a5c2 2019-05-12 jcs if (err)
6344 e5a0f69f 2018-08-18 stsp break;
6345 1e37a5c2 2019-05-12 jcs s->done = 1;
6346 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6347 1e37a5c2 2019-05-12 jcs s->done = 0;
6348 1e37a5c2 2019-05-12 jcs if (thread_err)
6349 1e37a5c2 2019-05-12 jcs break;
6350 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits,
6351 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
6352 a5388363 2020-12-01 naddy err = run_blame(view);
6353 1e37a5c2 2019-05-12 jcs if (err)
6354 1e37a5c2 2019-05-12 jcs break;
6355 1e37a5c2 2019-05-12 jcs break;
6356 1e37a5c2 2019-05-12 jcs }
6357 61417565 2022-06-20 mark case 'C': {
6358 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
6359 640cd7ff 2022-06-22 mark
6360 640cd7ff 2022-06-22 mark view->count = 0;
6361 dbdddfee 2021-06-23 naddy first = STAILQ_FIRST(&s->blamed_commits);
6362 d7b5a0e8 2022-04-20 stsp if (!got_object_id_cmp(&first->id, s->commit_id))
6363 1e37a5c2 2019-05-12 jcs break;
6364 1e37a5c2 2019-05-12 jcs s->done = 1;
6365 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6366 1e37a5c2 2019-05-12 jcs s->done = 0;
6367 1e37a5c2 2019-05-12 jcs if (thread_err)
6368 1e37a5c2 2019-05-12 jcs break;
6369 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6370 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
6371 1e37a5c2 2019-05-12 jcs s->blamed_commit =
6372 dbdddfee 2021-06-23 naddy STAILQ_FIRST(&s->blamed_commits);
6373 a5388363 2020-12-01 naddy err = run_blame(view);
6374 1e37a5c2 2019-05-12 jcs if (err)
6375 1e37a5c2 2019-05-12 jcs break;
6376 1e37a5c2 2019-05-12 jcs break;
6377 1e37a5c2 2019-05-12 jcs }
6378 136e2bd4 2022-07-23 mark case 'L':
6379 05f04cdf 2022-07-20 mark view->count = 0;
6380 136e2bd4 2022-07-23 mark s->id_to_log = get_selected_commit_id(s->blame.lines,
6381 136e2bd4 2022-07-23 mark s->blame.nlines, s->first_displayed_line, s->selected_line);
6382 136e2bd4 2022-07-23 mark if (s->id_to_log)
6383 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
6384 05f04cdf 2022-07-20 mark break;
6385 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
6386 1e37a5c2 2019-05-12 jcs case '\r': {
6387 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6388 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
6389 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
6390 640cd7ff 2022-06-22 mark
6391 640cd7ff 2022-06-22 mark view->count = 0;
6392 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6393 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6394 1e37a5c2 2019-05-12 jcs if (id == NULL)
6395 1e37a5c2 2019-05-12 jcs break;
6396 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
6397 1e37a5c2 2019-05-12 jcs if (err)
6398 1e37a5c2 2019-05-12 jcs break;
6399 9b058f45 2022-06-30 mark pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6400 c0f61fa4 2022-07-11 mark if (*new_view) {
6401 c0f61fa4 2022-07-11 mark /* traversed from diff view, release diff resources */
6402 c0f61fa4 2022-07-11 mark err = close_diff_view(*new_view);
6403 c0f61fa4 2022-07-11 mark if (err)
6404 c0f61fa4 2022-07-11 mark break;
6405 c0f61fa4 2022-07-11 mark diff_view = *new_view;
6406 c0f61fa4 2022-07-11 mark } else {
6407 c0f61fa4 2022-07-11 mark if (view_is_parent_view(view))
6408 c0f61fa4 2022-07-11 mark view_get_split(view, &begin_y, &begin_x);
6409 9b058f45 2022-06-30 mark
6410 c0f61fa4 2022-07-11 mark diff_view = view_open(0, 0, begin_y, begin_x,
6411 c0f61fa4 2022-07-11 mark TOG_VIEW_DIFF);
6412 c0f61fa4 2022-07-11 mark if (diff_view == NULL) {
6413 c0f61fa4 2022-07-11 mark got_object_commit_close(commit);
6414 c0f61fa4 2022-07-11 mark err = got_error_from_errno("view_open");
6415 c0f61fa4 2022-07-11 mark break;
6416 c0f61fa4 2022-07-11 mark }
6417 15a94983 2018-12-23 stsp }
6418 d7b5a0e8 2022-04-20 stsp err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6419 c0f61fa4 2022-07-11 mark id, NULL, NULL, 3, 0, 0, view, s->repo);
6420 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6421 1e37a5c2 2019-05-12 jcs if (err) {
6422 1e37a5c2 2019-05-12 jcs view_close(diff_view);
6423 1e37a5c2 2019-05-12 jcs break;
6424 1e37a5c2 2019-05-12 jcs }
6425 c0f61fa4 2022-07-11 mark s->last_diffed_line = s->first_displayed_line - 1 +
6426 c0f61fa4 2022-07-11 mark s->selected_line;
6427 c0f61fa4 2022-07-11 mark if (*new_view)
6428 c0f61fa4 2022-07-11 mark break; /* still open from active diff view */
6429 49b24ee5 2022-07-03 mark if (view_is_parent_view(view) &&
6430 49b24ee5 2022-07-03 mark view->mode == TOG_VIEW_SPLIT_HRZN) {
6431 9b058f45 2022-06-30 mark err = view_init_hsplit(view, begin_y);
6432 9b058f45 2022-06-30 mark if (err)
6433 9b058f45 2022-06-30 mark break;
6434 9b058f45 2022-06-30 mark }
6435 9b058f45 2022-06-30 mark
6436 e78dc838 2020-12-04 stsp view->focussed = 0;
6437 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
6438 9b058f45 2022-06-30 mark diff_view->mode = view->mode;
6439 9b058f45 2022-06-30 mark diff_view->nlines = view->lines - begin_y;
6440 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
6441 3c1dfe12 2022-07-08 mark view_transfer_size(diff_view, view);
6442 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
6443 1e37a5c2 2019-05-12 jcs if (err)
6444 34bc9ec9 2019-02-22 stsp break;
6445 0dbbbe90 2022-06-17 op err = view_set_child(view, diff_view);
6446 0dbbbe90 2022-06-17 op if (err)
6447 0dbbbe90 2022-06-17 op break;
6448 e78dc838 2020-12-04 stsp view->focus_child = 1;
6449 1e37a5c2 2019-05-12 jcs } else
6450 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
6451 1e37a5c2 2019-05-12 jcs if (err)
6452 e5a0f69f 2018-08-18 stsp break;
6453 1e37a5c2 2019-05-12 jcs break;
6454 1e37a5c2 2019-05-12 jcs }
6455 83cc4199 2022-06-13 stsp case CTRL('d'):
6456 33c3719a 2022-06-15 stsp case 'd':
6457 83cc4199 2022-06-13 stsp nscroll /= 2;
6458 83cc4199 2022-06-13 stsp /* FALL THROUGH */
6459 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
6460 ea025d1d 2020-02-22 naddy case CTRL('f'):
6461 61417565 2022-06-20 mark case 'f':
6462 1e37a5c2 2019-05-12 jcs case ' ':
6463 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6464 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
6465 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
6466 640cd7ff 2022-06-22 mark view->count = 0;
6467 e5a0f69f 2018-08-18 stsp break;
6468 1e37a5c2 2019-05-12 jcs }
6469 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6470 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
6471 83cc4199 2022-06-13 stsp s->selected_line +=
6472 83cc4199 2022-06-13 stsp MIN(nscroll, s->last_displayed_line -
6473 83cc4199 2022-06-13 stsp s->first_displayed_line - s->selected_line + 1);
6474 1e37a5c2 2019-05-12 jcs }
6475 83cc4199 2022-06-13 stsp if (s->last_displayed_line + nscroll <= s->blame.nlines)
6476 83cc4199 2022-06-13 stsp s->first_displayed_line += nscroll;
6477 1e37a5c2 2019-05-12 jcs else
6478 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
6479 83cc4199 2022-06-13 stsp s->blame.nlines - (view->nlines - 3);
6480 1e37a5c2 2019-05-12 jcs break;
6481 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
6482 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
6483 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
6484 1e37a5c2 2019-05-12 jcs view->nlines - 2);
6485 1e37a5c2 2019-05-12 jcs }
6486 1e37a5c2 2019-05-12 jcs break;
6487 1e37a5c2 2019-05-12 jcs default:
6488 640cd7ff 2022-06-22 mark view->count = 0;
6489 1e37a5c2 2019-05-12 jcs break;
6490 a70480e0 2018-06-23 stsp }
6491 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
6492 917d79a7 2022-07-01 stsp }
6493 917d79a7 2022-07-01 stsp
6494 917d79a7 2022-07-01 stsp static const struct got_error *
6495 917d79a7 2022-07-01 stsp reset_blame_view(struct tog_view *view)
6496 917d79a7 2022-07-01 stsp {
6497 917d79a7 2022-07-01 stsp const struct got_error *err;
6498 917d79a7 2022-07-01 stsp struct tog_blame_view_state *s = &view->state.blame;
6499 917d79a7 2022-07-01 stsp
6500 917d79a7 2022-07-01 stsp view->count = 0;
6501 917d79a7 2022-07-01 stsp s->done = 1;
6502 917d79a7 2022-07-01 stsp err = stop_blame(&s->blame);
6503 917d79a7 2022-07-01 stsp s->done = 0;
6504 917d79a7 2022-07-01 stsp if (err)
6505 917d79a7 2022-07-01 stsp return err;
6506 917d79a7 2022-07-01 stsp return run_blame(view);
6507 a70480e0 2018-06-23 stsp }
6508 a70480e0 2018-06-23 stsp
6509 a70480e0 2018-06-23 stsp static const struct got_error *
6510 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
6511 9f7d7167 2018-04-29 stsp {
6512 a70480e0 2018-06-23 stsp const struct got_error *error;
6513 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
6514 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
6515 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6516 0587e10c 2020-07-23 stsp char *link_target = NULL;
6517 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
6518 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
6519 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
6520 a70480e0 2018-06-23 stsp int ch;
6521 e1cd8fed 2018-08-01 stsp struct tog_view *view;
6522 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
6523 a70480e0 2018-06-23 stsp
6524 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6525 a70480e0 2018-06-23 stsp switch (ch) {
6526 a70480e0 2018-06-23 stsp case 'c':
6527 a70480e0 2018-06-23 stsp commit_id_str = optarg;
6528 a70480e0 2018-06-23 stsp break;
6529 69069811 2018-08-02 stsp case 'r':
6530 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
6531 69069811 2018-08-02 stsp if (repo_path == NULL)
6532 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6533 9ba1d308 2019-10-21 stsp optarg);
6534 69069811 2018-08-02 stsp break;
6535 a70480e0 2018-06-23 stsp default:
6536 17020d27 2019-03-07 stsp usage_blame();
6537 a70480e0 2018-06-23 stsp /* NOTREACHED */
6538 a70480e0 2018-06-23 stsp }
6539 a70480e0 2018-06-23 stsp }
6540 a70480e0 2018-06-23 stsp
6541 a70480e0 2018-06-23 stsp argc -= optind;
6542 a70480e0 2018-06-23 stsp argv += optind;
6543 a70480e0 2018-06-23 stsp
6544 f135c941 2020-02-20 stsp if (argc != 1)
6545 a70480e0 2018-06-23 stsp usage_blame();
6546 6962eb72 2020-02-20 stsp
6547 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
6548 0ae84acc 2022-06-15 tracey if (error != NULL)
6549 0ae84acc 2022-06-15 tracey goto done;
6550 0ae84acc 2022-06-15 tracey
6551 69069811 2018-08-02 stsp if (repo_path == NULL) {
6552 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6553 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6554 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6555 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6556 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6557 c156c7a4 2020-12-18 stsp goto done;
6558 f135c941 2020-02-20 stsp if (worktree)
6559 eb41ed75 2019-02-05 stsp repo_path =
6560 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
6561 f135c941 2020-02-20 stsp else
6562 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
6563 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6564 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6565 c156c7a4 2020-12-18 stsp goto done;
6566 c156c7a4 2020-12-18 stsp }
6567 f135c941 2020-02-20 stsp }
6568 a915003a 2019-02-05 stsp
6569 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6570 c02c541e 2019-03-29 stsp if (error != NULL)
6571 8e94dd5b 2019-01-04 stsp goto done;
6572 69069811 2018-08-02 stsp
6573 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6574 f135c941 2020-02-20 stsp worktree);
6575 c02c541e 2019-03-29 stsp if (error)
6576 92205607 2019-01-04 stsp goto done;
6577 69069811 2018-08-02 stsp
6578 f135c941 2020-02-20 stsp init_curses();
6579 f135c941 2020-02-20 stsp
6580 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6581 51a10b52 2020-12-26 stsp if (error)
6582 51a10b52 2020-12-26 stsp goto done;
6583 51a10b52 2020-12-26 stsp
6584 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
6585 eb41ed75 2019-02-05 stsp if (error)
6586 69069811 2018-08-02 stsp goto done;
6587 a70480e0 2018-06-23 stsp
6588 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
6589 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
6590 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
6591 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6592 a70480e0 2018-06-23 stsp if (error != NULL)
6593 66b4983c 2018-06-23 stsp goto done;
6594 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6595 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
6596 a70480e0 2018-06-23 stsp } else {
6597 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6598 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6599 a70480e0 2018-06-23 stsp }
6600 a19e88aa 2018-06-23 stsp if (error != NULL)
6601 8b473291 2019-02-21 stsp goto done;
6602 8b473291 2019-02-21 stsp
6603 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6604 e1cd8fed 2018-08-01 stsp if (view == NULL) {
6605 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
6606 e1cd8fed 2018-08-01 stsp goto done;
6607 e1cd8fed 2018-08-01 stsp }
6608 0587e10c 2020-07-23 stsp
6609 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6610 a44927cc 2022-04-07 stsp if (error)
6611 a44927cc 2022-04-07 stsp goto done;
6612 a44927cc 2022-04-07 stsp
6613 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
6614 a44927cc 2022-04-07 stsp commit, repo);
6615 7cbe629d 2018-08-04 stsp if (error)
6616 7cbe629d 2018-08-04 stsp goto done;
6617 0587e10c 2020-07-23 stsp
6618 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
6619 78756c87 2020-11-24 stsp commit_id, repo);
6620 0587e10c 2020-07-23 stsp if (error)
6621 0587e10c 2020-07-23 stsp goto done;
6622 12314ad4 2019-08-31 stsp if (worktree) {
6623 12314ad4 2019-08-31 stsp /* Release work tree lock. */
6624 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
6625 12314ad4 2019-08-31 stsp worktree = NULL;
6626 12314ad4 2019-08-31 stsp }
6627 e5a0f69f 2018-08-18 stsp error = view_loop(view);
6628 a70480e0 2018-06-23 stsp done:
6629 69069811 2018-08-02 stsp free(repo_path);
6630 f135c941 2020-02-20 stsp free(in_repo_path);
6631 0587e10c 2020-07-23 stsp free(link_target);
6632 69069811 2018-08-02 stsp free(cwd);
6633 a70480e0 2018-06-23 stsp free(commit_id);
6634 a44927cc 2022-04-07 stsp if (commit)
6635 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
6636 eb41ed75 2019-02-05 stsp if (worktree)
6637 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
6638 1d0f4054 2021-06-17 stsp if (repo) {
6639 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6640 1d0f4054 2021-06-17 stsp if (error == NULL)
6641 1d0f4054 2021-06-17 stsp error = close_err;
6642 1d0f4054 2021-06-17 stsp }
6643 0ae84acc 2022-06-15 tracey if (pack_fds) {
6644 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
6645 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
6646 0ae84acc 2022-06-15 tracey if (error == NULL)
6647 0ae84acc 2022-06-15 tracey error = pack_err;
6648 0ae84acc 2022-06-15 tracey }
6649 51a10b52 2020-12-26 stsp tog_free_refs();
6650 a70480e0 2018-06-23 stsp return error;
6651 ffd1d5e5 2018-06-23 stsp }
6652 ffd1d5e5 2018-06-23 stsp
6653 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6654 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
6655 ffd1d5e5 2018-06-23 stsp {
6656 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
6657 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6658 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
6659 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
6660 0c6ad1bc 2022-09-09 mark char *index = NULL;
6661 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6662 94b80cfa 2022-08-01 mark int width, n, nentries, i = 1;
6663 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6664 ffd1d5e5 2018-06-23 stsp
6665 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6666 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
6667 9b058f45 2022-06-30 mark --limit; /* border */
6668 ffd1d5e5 2018-06-23 stsp
6669 f7d12f7e 2018-08-01 stsp werase(view->window);
6670 ffd1d5e5 2018-06-23 stsp
6671 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6672 ffd1d5e5 2018-06-23 stsp return NULL;
6673 ffd1d5e5 2018-06-23 stsp
6674 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6675 ccda2f4d 2022-06-16 stsp 0, 0);
6676 ffd1d5e5 2018-06-23 stsp if (err)
6677 ffd1d5e5 2018-06-23 stsp return err;
6678 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6679 a3404814 2018-09-02 stsp wstandout(view->window);
6680 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6681 11b20872 2019-11-08 stsp if (tc)
6682 0c6ad1bc 2022-09-09 mark wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6683 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6684 0c6ad1bc 2022-09-09 mark free(wline);
6685 0c6ad1bc 2022-09-09 mark wline = NULL;
6686 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
6687 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
6688 11b20872 2019-11-08 stsp if (tc)
6689 0c6ad1bc 2022-09-09 mark wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6690 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6691 a3404814 2018-09-02 stsp wstandend(view->window);
6692 0c6ad1bc 2022-09-09 mark if (--limit <= 0)
6693 0c6ad1bc 2022-09-09 mark return NULL;
6694 94b80cfa 2022-08-01 mark
6695 df68a56b 2022-08-12 mark i += s->selected;
6696 df68a56b 2022-08-12 mark if (s->first_displayed_entry) {
6697 df68a56b 2022-08-12 mark i += got_tree_entry_get_index(s->first_displayed_entry);
6698 df68a56b 2022-08-12 mark if (s->tree != s->root)
6699 df68a56b 2022-08-12 mark ++i; /* account for ".." entry */
6700 94b80cfa 2022-08-01 mark }
6701 94b80cfa 2022-08-01 mark nentries = got_object_tree_get_nentries(s->tree);
6702 0c6ad1bc 2022-09-09 mark if (asprintf(&index, "[%d/%d] %s",
6703 0c6ad1bc 2022-09-09 mark i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6704 0c6ad1bc 2022-09-09 mark return got_error_from_errno("asprintf");
6705 0c6ad1bc 2022-09-09 mark err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6706 0c6ad1bc 2022-09-09 mark free(index);
6707 ce52c690 2018-06-23 stsp if (err)
6708 ce52c690 2018-06-23 stsp return err;
6709 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6710 2550e4c3 2018-07-13 stsp free(wline);
6711 2550e4c3 2018-07-13 stsp wline = NULL;
6712 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6713 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6714 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6715 ffd1d5e5 2018-06-23 stsp return NULL;
6716 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6717 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6718 a1eca9bb 2018-06-23 stsp return NULL;
6719 ffd1d5e5 2018-06-23 stsp
6720 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6721 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6722 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6723 0cf4efb1 2018-09-29 stsp if (view->focussed)
6724 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6725 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6726 ffd1d5e5 2018-06-23 stsp }
6727 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6728 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6729 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6730 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6731 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6732 ffd1d5e5 2018-06-23 stsp return NULL;
6733 ffd1d5e5 2018-06-23 stsp n = 1;
6734 ffd1d5e5 2018-06-23 stsp } else {
6735 ffd1d5e5 2018-06-23 stsp n = 0;
6736 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6737 ffd1d5e5 2018-06-23 stsp }
6738 ffd1d5e5 2018-06-23 stsp
6739 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6740 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6741 848d6979 2019-08-12 stsp const char *modestr = "";
6742 56e0773d 2019-11-28 stsp mode_t mode;
6743 1d13200f 2018-07-12 stsp
6744 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6745 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6746 56e0773d 2019-11-28 stsp
6747 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6748 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6749 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6750 1d13200f 2018-07-12 stsp if (err)
6751 638f9024 2019-05-13 stsp return got_error_from_errno(
6752 230a42bd 2019-05-11 jcs "got_object_id_str");
6753 1d13200f 2018-07-12 stsp }
6754 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6755 63c5ca5d 2019-08-24 stsp modestr = "$";
6756 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6757 0d6c6ee3 2020-05-20 stsp int i;
6758 0d6c6ee3 2020-05-20 stsp
6759 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6760 d86d3b18 2020-12-01 naddy te, s->repo);
6761 0d6c6ee3 2020-05-20 stsp if (err) {
6762 0d6c6ee3 2020-05-20 stsp free(id_str);
6763 0d6c6ee3 2020-05-20 stsp return err;
6764 0d6c6ee3 2020-05-20 stsp }
6765 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6766 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6767 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6768 0d6c6ee3 2020-05-20 stsp }
6769 848d6979 2019-08-12 stsp modestr = "@";
6770 0d6c6ee3 2020-05-20 stsp }
6771 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6772 848d6979 2019-08-12 stsp modestr = "/";
6773 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6774 848d6979 2019-08-12 stsp modestr = "*";
6775 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6776 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6777 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6778 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6779 1d13200f 2018-07-12 stsp free(id_str);
6780 0d6c6ee3 2020-05-20 stsp free(link_target);
6781 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6782 1d13200f 2018-07-12 stsp }
6783 1d13200f 2018-07-12 stsp free(id_str);
6784 0d6c6ee3 2020-05-20 stsp free(link_target);
6785 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6786 ccda2f4d 2022-06-16 stsp 0, 0);
6787 ffd1d5e5 2018-06-23 stsp if (err) {
6788 ffd1d5e5 2018-06-23 stsp free(line);
6789 ffd1d5e5 2018-06-23 stsp break;
6790 ffd1d5e5 2018-06-23 stsp }
6791 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6792 0cf4efb1 2018-09-29 stsp if (view->focussed)
6793 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6794 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6795 ffd1d5e5 2018-06-23 stsp }
6796 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6797 f26dddb7 2019-11-08 stsp if (tc)
6798 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6799 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6800 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6801 f26dddb7 2019-11-08 stsp if (tc)
6802 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6803 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6804 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6805 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6806 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6807 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6808 ffd1d5e5 2018-06-23 stsp free(line);
6809 2550e4c3 2018-07-13 stsp free(wline);
6810 2550e4c3 2018-07-13 stsp wline = NULL;
6811 ffd1d5e5 2018-06-23 stsp n++;
6812 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6813 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6814 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6815 ffd1d5e5 2018-06-23 stsp break;
6816 ffd1d5e5 2018-06-23 stsp }
6817 ffd1d5e5 2018-06-23 stsp
6818 ffd1d5e5 2018-06-23 stsp return err;
6819 ffd1d5e5 2018-06-23 stsp }
6820 ffd1d5e5 2018-06-23 stsp
6821 ffd1d5e5 2018-06-23 stsp static void
6822 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6823 ffd1d5e5 2018-06-23 stsp {
6824 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6825 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6826 fa86c4bf 2020-11-29 stsp int i = 0;
6827 ffd1d5e5 2018-06-23 stsp
6828 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6829 ffd1d5e5 2018-06-23 stsp return;
6830 ffd1d5e5 2018-06-23 stsp
6831 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6832 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6833 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6834 fa86c4bf 2020-11-29 stsp if (!isroot)
6835 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6836 fa86c4bf 2020-11-29 stsp break;
6837 fa86c4bf 2020-11-29 stsp }
6838 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6839 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6840 ffd1d5e5 2018-06-23 stsp }
6841 ffd1d5e5 2018-06-23 stsp }
6842 ffd1d5e5 2018-06-23 stsp
6843 9b058f45 2022-06-30 mark static const struct got_error *
6844 9b058f45 2022-06-30 mark tree_scroll_down(struct tog_view *view, int maxscroll)
6845 ffd1d5e5 2018-06-23 stsp {
6846 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
6847 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6848 ffd1d5e5 2018-06-23 stsp int n = 0;
6849 ffd1d5e5 2018-06-23 stsp
6850 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6851 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6852 694d3271 2020-12-01 naddy s->first_displayed_entry);
6853 694d3271 2020-12-01 naddy else
6854 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6855 56e0773d 2019-11-28 stsp
6856 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6857 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
6858 94b80cfa 2022-08-01 mark if (last) {
6859 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
6860 9b058f45 2022-06-30 mark last = got_tree_entry_get_next(s->tree, last);
6861 94b80cfa 2022-08-01 mark }
6862 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6863 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6864 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6865 768394f3 2019-01-24 stsp }
6866 ffd1d5e5 2018-06-23 stsp }
6867 9b058f45 2022-06-30 mark
6868 9b058f45 2022-06-30 mark return NULL;
6869 ffd1d5e5 2018-06-23 stsp }
6870 ffd1d5e5 2018-06-23 stsp
6871 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6872 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6873 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6874 ffd1d5e5 2018-06-23 stsp {
6875 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6876 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6877 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6878 ffd1d5e5 2018-06-23 stsp
6879 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6880 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6881 56e0773d 2019-11-28 stsp + 1 /* slash */;
6882 ce52c690 2018-06-23 stsp if (te)
6883 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6884 ce52c690 2018-06-23 stsp
6885 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6886 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6887 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6888 ffd1d5e5 2018-06-23 stsp
6889 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6890 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6891 d9765a41 2018-06-23 stsp while (pt) {
6892 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6893 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6894 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6895 cb2ebc8a 2018-06-23 stsp goto done;
6896 cb2ebc8a 2018-06-23 stsp }
6897 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6898 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6899 cb2ebc8a 2018-06-23 stsp goto done;
6900 cb2ebc8a 2018-06-23 stsp }
6901 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6902 ffd1d5e5 2018-06-23 stsp }
6903 ce52c690 2018-06-23 stsp if (te) {
6904 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6905 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6906 ce52c690 2018-06-23 stsp goto done;
6907 ce52c690 2018-06-23 stsp }
6908 cb2ebc8a 2018-06-23 stsp }
6909 ce52c690 2018-06-23 stsp done:
6910 ce52c690 2018-06-23 stsp if (err) {
6911 ce52c690 2018-06-23 stsp free(*path);
6912 ce52c690 2018-06-23 stsp *path = NULL;
6913 ce52c690 2018-06-23 stsp }
6914 ce52c690 2018-06-23 stsp return err;
6915 ce52c690 2018-06-23 stsp }
6916 ce52c690 2018-06-23 stsp
6917 ce52c690 2018-06-23 stsp static const struct got_error *
6918 9b058f45 2022-06-30 mark blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6919 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6920 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6921 ce52c690 2018-06-23 stsp {
6922 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6923 ce52c690 2018-06-23 stsp char *path;
6924 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6925 a0de39f3 2019-08-09 stsp
6926 a0de39f3 2019-08-09 stsp *new_view = NULL;
6927 69efd4c4 2018-07-18 stsp
6928 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6929 ce52c690 2018-06-23 stsp if (err)
6930 ce52c690 2018-06-23 stsp return err;
6931 ffd1d5e5 2018-06-23 stsp
6932 9b058f45 2022-06-30 mark blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6933 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6934 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6935 83ce39e3 2019-08-12 stsp goto done;
6936 83ce39e3 2019-08-12 stsp }
6937 cdf1ee82 2018-08-01 stsp
6938 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6939 e5a0f69f 2018-08-18 stsp if (err) {
6940 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6941 fc06ba56 2019-08-22 stsp err = NULL;
6942 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6943 e5a0f69f 2018-08-18 stsp } else
6944 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6945 83ce39e3 2019-08-12 stsp done:
6946 83ce39e3 2019-08-12 stsp free(path);
6947 69efd4c4 2018-07-18 stsp return err;
6948 69efd4c4 2018-07-18 stsp }
6949 69efd4c4 2018-07-18 stsp
6950 69efd4c4 2018-07-18 stsp static const struct got_error *
6951 49b24ee5 2022-07-03 mark log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6952 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6953 69efd4c4 2018-07-18 stsp {
6954 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6955 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6956 69efd4c4 2018-07-18 stsp char *path;
6957 a0de39f3 2019-08-09 stsp
6958 a0de39f3 2019-08-09 stsp *new_view = NULL;
6959 69efd4c4 2018-07-18 stsp
6960 49b24ee5 2022-07-03 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6961 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6962 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6963 e5a0f69f 2018-08-18 stsp
6964 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6965 69efd4c4 2018-07-18 stsp if (err)
6966 69efd4c4 2018-07-18 stsp return err;
6967 69efd4c4 2018-07-18 stsp
6968 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6969 4e97c21c 2020-12-06 stsp path, 0);
6970 ba4f502b 2018-08-04 stsp if (err)
6971 e5a0f69f 2018-08-18 stsp view_close(log_view);
6972 e5a0f69f 2018-08-18 stsp else
6973 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6974 cb2ebc8a 2018-06-23 stsp free(path);
6975 cb2ebc8a 2018-06-23 stsp return err;
6976 ffd1d5e5 2018-06-23 stsp }
6977 ffd1d5e5 2018-06-23 stsp
6978 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6979 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6980 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6981 ffd1d5e5 2018-06-23 stsp {
6982 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6983 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6984 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6985 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6986 ffd1d5e5 2018-06-23 stsp
6987 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6988 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6989 bc573f3b 2021-07-10 stsp
6990 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6991 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6992 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6993 ffd1d5e5 2018-06-23 stsp
6994 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6995 bc573f3b 2021-07-10 stsp if (err)
6996 bc573f3b 2021-07-10 stsp goto done;
6997 bc573f3b 2021-07-10 stsp
6998 bc573f3b 2021-07-10 stsp /*
6999 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
7000 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
7001 bc573f3b 2021-07-10 stsp * closed on demand.
7002 bc573f3b 2021-07-10 stsp */
7003 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
7004 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
7005 bc573f3b 2021-07-10 stsp if (err)
7006 bc573f3b 2021-07-10 stsp goto done;
7007 bc573f3b 2021-07-10 stsp s->tree = s->root;
7008 bc573f3b 2021-07-10 stsp
7009 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
7010 ffd1d5e5 2018-06-23 stsp if (err != NULL)
7011 ffd1d5e5 2018-06-23 stsp goto done;
7012 ffd1d5e5 2018-06-23 stsp
7013 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7014 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
7015 ffd1d5e5 2018-06-23 stsp goto done;
7016 ffd1d5e5 2018-06-23 stsp }
7017 ffd1d5e5 2018-06-23 stsp
7018 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7019 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7020 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
7021 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
7022 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
7023 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
7024 9cd7cbd1 2020-12-07 stsp goto done;
7025 9cd7cbd1 2020-12-07 stsp }
7026 9cd7cbd1 2020-12-07 stsp }
7027 fb2756b9 2018-08-04 stsp s->repo = repo;
7028 c0b01bdb 2019-11-08 stsp
7029 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7030 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
7031 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
7032 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7033 c0b01bdb 2019-11-08 stsp if (err)
7034 c0b01bdb 2019-11-08 stsp goto done;
7035 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7036 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
7037 bc573f3b 2021-07-10 stsp if (err)
7038 c0b01bdb 2019-11-08 stsp goto done;
7039 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
7040 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
7041 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7042 bc573f3b 2021-07-10 stsp if (err)
7043 c0b01bdb 2019-11-08 stsp goto done;
7044 e5a0f69f 2018-08-18 stsp
7045 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
7046 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
7047 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7048 bc573f3b 2021-07-10 stsp if (err)
7049 11b20872 2019-11-08 stsp goto done;
7050 11b20872 2019-11-08 stsp
7051 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7052 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
7053 bc573f3b 2021-07-10 stsp if (err)
7054 c0b01bdb 2019-11-08 stsp goto done;
7055 c0b01bdb 2019-11-08 stsp }
7056 c0b01bdb 2019-11-08 stsp
7057 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
7058 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
7059 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
7060 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
7061 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
7062 ad80ab7b 2018-08-04 stsp done:
7063 ad80ab7b 2018-08-04 stsp free(commit_id_str);
7064 bc573f3b 2021-07-10 stsp if (commit)
7065 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
7066 bc573f3b 2021-07-10 stsp if (err)
7067 bc573f3b 2021-07-10 stsp close_tree_view(view);
7068 ad80ab7b 2018-08-04 stsp return err;
7069 ad80ab7b 2018-08-04 stsp }
7070 ad80ab7b 2018-08-04 stsp
7071 e5a0f69f 2018-08-18 stsp static const struct got_error *
7072 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
7073 ad80ab7b 2018-08-04 stsp {
7074 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7075 ad80ab7b 2018-08-04 stsp
7076 bddb1296 2019-11-08 stsp free_colors(&s->colors);
7077 fb2756b9 2018-08-04 stsp free(s->tree_label);
7078 6484ec90 2018-09-29 stsp s->tree_label = NULL;
7079 6484ec90 2018-09-29 stsp free(s->commit_id);
7080 6484ec90 2018-09-29 stsp s->commit_id = NULL;
7081 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
7082 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
7083 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
7084 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
7085 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
7086 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
7087 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
7088 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
7089 ad80ab7b 2018-08-04 stsp free(parent);
7090 ad80ab7b 2018-08-04 stsp
7091 ad80ab7b 2018-08-04 stsp }
7092 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
7093 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
7094 bc573f3b 2021-07-10 stsp if (s->root)
7095 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
7096 7c32bd05 2019-06-22 stsp return NULL;
7097 7c32bd05 2019-06-22 stsp }
7098 7c32bd05 2019-06-22 stsp
7099 7c32bd05 2019-06-22 stsp static const struct got_error *
7100 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
7101 7c32bd05 2019-06-22 stsp {
7102 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7103 7c32bd05 2019-06-22 stsp
7104 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
7105 7c32bd05 2019-06-22 stsp return NULL;
7106 7c32bd05 2019-06-22 stsp }
7107 7c32bd05 2019-06-22 stsp
7108 7c32bd05 2019-06-22 stsp static int
7109 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7110 7c32bd05 2019-06-22 stsp {
7111 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
7112 7c32bd05 2019-06-22 stsp
7113 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7114 56e0773d 2019-11-28 stsp 0) == 0;
7115 7c32bd05 2019-06-22 stsp }
7116 7c32bd05 2019-06-22 stsp
7117 7c32bd05 2019-06-22 stsp static const struct got_error *
7118 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
7119 7c32bd05 2019-06-22 stsp {
7120 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7121 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
7122 7c32bd05 2019-06-22 stsp
7123 7c32bd05 2019-06-22 stsp if (!view->searching) {
7124 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7125 7c32bd05 2019-06-22 stsp return NULL;
7126 7c32bd05 2019-06-22 stsp }
7127 7c32bd05 2019-06-22 stsp
7128 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7129 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7130 7c32bd05 2019-06-22 stsp if (s->selected_entry)
7131 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
7132 56e0773d 2019-11-28 stsp s->selected_entry);
7133 7c32bd05 2019-06-22 stsp else
7134 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7135 56e0773d 2019-11-28 stsp } else {
7136 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
7137 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7138 56e0773d 2019-11-28 stsp else
7139 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
7140 56e0773d 2019-11-28 stsp s->selected_entry);
7141 7c32bd05 2019-06-22 stsp }
7142 7c32bd05 2019-06-22 stsp } else {
7143 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7144 487cd7d2 2021-12-17 stsp te = s->selected_entry;
7145 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7146 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7147 56e0773d 2019-11-28 stsp else
7148 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7149 7c32bd05 2019-06-22 stsp }
7150 7c32bd05 2019-06-22 stsp
7151 7c32bd05 2019-06-22 stsp while (1) {
7152 56e0773d 2019-11-28 stsp if (te == NULL) {
7153 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
7154 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7155 ac66afb8 2019-06-24 stsp return NULL;
7156 ac66afb8 2019-06-24 stsp }
7157 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7158 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7159 56e0773d 2019-11-28 stsp else
7160 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7161 7c32bd05 2019-06-22 stsp }
7162 7c32bd05 2019-06-22 stsp
7163 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
7164 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7165 56e0773d 2019-11-28 stsp s->matched_entry = te;
7166 7c32bd05 2019-06-22 stsp break;
7167 7c32bd05 2019-06-22 stsp }
7168 7c32bd05 2019-06-22 stsp
7169 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7170 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
7171 56e0773d 2019-11-28 stsp else
7172 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
7173 7c32bd05 2019-06-22 stsp }
7174 e5a0f69f 2018-08-18 stsp
7175 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7176 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
7177 7c32bd05 2019-06-22 stsp s->selected = 0;
7178 7c32bd05 2019-06-22 stsp }
7179 7c32bd05 2019-06-22 stsp
7180 e5a0f69f 2018-08-18 stsp return NULL;
7181 ad80ab7b 2018-08-04 stsp }
7182 ad80ab7b 2018-08-04 stsp
7183 ad80ab7b 2018-08-04 stsp static const struct got_error *
7184 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
7185 ad80ab7b 2018-08-04 stsp {
7186 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
7187 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7188 e5a0f69f 2018-08-18 stsp char *parent_path;
7189 ad80ab7b 2018-08-04 stsp
7190 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
7191 e5a0f69f 2018-08-18 stsp if (err)
7192 e5a0f69f 2018-08-18 stsp return err;
7193 ffd1d5e5 2018-06-23 stsp
7194 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
7195 e5a0f69f 2018-08-18 stsp free(parent_path);
7196 669b5ffa 2018-10-07 stsp
7197 9b058f45 2022-06-30 mark view_border(view);
7198 e5a0f69f 2018-08-18 stsp return err;
7199 94b80cfa 2022-08-01 mark }
7200 94b80cfa 2022-08-01 mark
7201 94b80cfa 2022-08-01 mark static const struct got_error *
7202 94b80cfa 2022-08-01 mark tree_goto_line(struct tog_view *view, int nlines)
7203 94b80cfa 2022-08-01 mark {
7204 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
7205 94b80cfa 2022-08-01 mark struct tog_tree_view_state *s = &view->state.tree;
7206 94b80cfa 2022-08-01 mark struct got_tree_entry **fte, **lte, **ste;
7207 94b80cfa 2022-08-01 mark int g, last, first = 1, i = 1;
7208 94b80cfa 2022-08-01 mark int root = s->tree == s->root;
7209 94b80cfa 2022-08-01 mark int off = root ? 1 : 2;
7210 94b80cfa 2022-08-01 mark
7211 94b80cfa 2022-08-01 mark g = view->gline;
7212 94b80cfa 2022-08-01 mark view->gline = 0;
7213 94b80cfa 2022-08-01 mark
7214 94b80cfa 2022-08-01 mark if (g == 0)
7215 94b80cfa 2022-08-01 mark g = 1;
7216 94b80cfa 2022-08-01 mark else if (g > got_object_tree_get_nentries(s->tree))
7217 94b80cfa 2022-08-01 mark g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7218 94b80cfa 2022-08-01 mark
7219 94b80cfa 2022-08-01 mark fte = &s->first_displayed_entry;
7220 94b80cfa 2022-08-01 mark lte = &s->last_displayed_entry;
7221 94b80cfa 2022-08-01 mark ste = &s->selected_entry;
7222 94b80cfa 2022-08-01 mark
7223 94b80cfa 2022-08-01 mark if (*fte != NULL) {
7224 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
7225 94b80cfa 2022-08-01 mark first += off; /* account for ".." */
7226 94b80cfa 2022-08-01 mark }
7227 94b80cfa 2022-08-01 mark last = got_tree_entry_get_index(*lte);
7228 94b80cfa 2022-08-01 mark last += off;
7229 94b80cfa 2022-08-01 mark
7230 94b80cfa 2022-08-01 mark if (g >= first && g <= last && g - first < nlines) {
7231 94b80cfa 2022-08-01 mark s->selected = g - first;
7232 94b80cfa 2022-08-01 mark return NULL; /* gline is on the current page */
7233 94b80cfa 2022-08-01 mark }
7234 94b80cfa 2022-08-01 mark
7235 94b80cfa 2022-08-01 mark if (*ste != NULL) {
7236 94b80cfa 2022-08-01 mark i = got_tree_entry_get_index(*ste);
7237 94b80cfa 2022-08-01 mark i += off;
7238 94b80cfa 2022-08-01 mark }
7239 94b80cfa 2022-08-01 mark
7240 94b80cfa 2022-08-01 mark if (i < g) {
7241 94b80cfa 2022-08-01 mark err = tree_scroll_down(view, g - i);
7242 94b80cfa 2022-08-01 mark if (err)
7243 94b80cfa 2022-08-01 mark return err;
7244 94b80cfa 2022-08-01 mark if (got_tree_entry_get_index(*lte) >=
7245 94b80cfa 2022-08-01 mark got_object_tree_get_nentries(s->tree) - 1 &&
7246 94b80cfa 2022-08-01 mark first + s->selected < g &&
7247 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1) {
7248 94b80cfa 2022-08-01 mark first = got_tree_entry_get_index(*fte);
7249 94b80cfa 2022-08-01 mark first += off;
7250 94b80cfa 2022-08-01 mark s->selected = g - first;
7251 94b80cfa 2022-08-01 mark }
7252 94b80cfa 2022-08-01 mark } else if (i > g)
7253 94b80cfa 2022-08-01 mark tree_scroll_up(s, i - g);
7254 94b80cfa 2022-08-01 mark
7255 94b80cfa 2022-08-01 mark if (g < nlines &&
7256 94b80cfa 2022-08-01 mark (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7257 94b80cfa 2022-08-01 mark s->selected = g - 1;
7258 94b80cfa 2022-08-01 mark
7259 94b80cfa 2022-08-01 mark return NULL;
7260 e5a0f69f 2018-08-18 stsp }
7261 ce52c690 2018-06-23 stsp
7262 e5a0f69f 2018-08-18 stsp static const struct got_error *
7263 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7264 e5a0f69f 2018-08-18 stsp {
7265 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
7266 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
7267 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
7268 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 3;
7269 ffd1d5e5 2018-06-23 stsp
7270 94b80cfa 2022-08-01 mark if (view->gline)
7271 94b80cfa 2022-08-01 mark return tree_goto_line(view, nscroll);
7272 94b80cfa 2022-08-01 mark
7273 e5a0f69f 2018-08-18 stsp switch (ch) {
7274 1e37a5c2 2019-05-12 jcs case 'i':
7275 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
7276 640cd7ff 2022-06-22 mark view->count = 0;
7277 1e37a5c2 2019-05-12 jcs break;
7278 5e98fb33 2022-07-22 mark case 'L':
7279 640cd7ff 2022-06-22 mark view->count = 0;
7280 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
7281 ffd1d5e5 2018-06-23 stsp break;
7282 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
7283 152c1c93 2020-11-29 stsp break;
7284 5e98fb33 2022-07-22 mark case 'R':
7285 640cd7ff 2022-06-22 mark view->count = 0;
7286 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_REF);
7287 e4526bf5 2021-09-03 naddy break;
7288 e4526bf5 2021-09-03 naddy case 'g':
7289 e4526bf5 2021-09-03 naddy case KEY_HOME:
7290 e4526bf5 2021-09-03 naddy s->selected = 0;
7291 640cd7ff 2022-06-22 mark view->count = 0;
7292 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
7293 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
7294 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
7295 e4526bf5 2021-09-03 naddy else
7296 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7297 1e37a5c2 2019-05-12 jcs break;
7298 e4526bf5 2021-09-03 naddy case 'G':
7299 9b058f45 2022-06-30 mark case KEY_END: {
7300 9b058f45 2022-06-30 mark int eos = view->nlines - 3;
7301 9b058f45 2022-06-30 mark
7302 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
7303 9b058f45 2022-06-30 mark --eos; /* border */
7304 e4526bf5 2021-09-03 naddy s->selected = 0;
7305 640cd7ff 2022-06-22 mark view->count = 0;
7306 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
7307 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
7308 e4526bf5 2021-09-03 naddy if (te == NULL) {
7309 ad055527 2022-07-16 mark if (s->tree != s->root) {
7310 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7311 e4526bf5 2021-09-03 naddy n++;
7312 e4526bf5 2021-09-03 naddy }
7313 e4526bf5 2021-09-03 naddy break;
7314 e4526bf5 2021-09-03 naddy }
7315 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7316 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7317 e4526bf5 2021-09-03 naddy }
7318 e4526bf5 2021-09-03 naddy if (n > 0)
7319 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7320 e4526bf5 2021-09-03 naddy break;
7321 9b058f45 2022-06-30 mark }
7322 1e37a5c2 2019-05-12 jcs case 'k':
7323 1e37a5c2 2019-05-12 jcs case KEY_UP:
7324 02ffd0d5 2021-10-17 stsp case CTRL('p'):
7325 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7326 1e37a5c2 2019-05-12 jcs s->selected--;
7327 fa86c4bf 2020-11-29 stsp break;
7328 1e37a5c2 2019-05-12 jcs }
7329 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7330 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7331 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7332 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7333 640cd7ff 2022-06-22 mark view->count = 0;
7334 1e37a5c2 2019-05-12 jcs break;
7335 83cc4199 2022-06-13 stsp case CTRL('u'):
7336 33c3719a 2022-06-15 stsp case 'u':
7337 83cc4199 2022-06-13 stsp nscroll /= 2;
7338 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7339 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7340 ea025d1d 2020-02-22 naddy case CTRL('b'):
7341 61417565 2022-06-20 mark case 'b':
7342 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7343 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7344 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7345 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7346 fa86c4bf 2020-11-29 stsp } else {
7347 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7348 83cc4199 2022-06-13 stsp s->selected -= MIN(s->selected, nscroll);
7349 fa86c4bf 2020-11-29 stsp }
7350 83cc4199 2022-06-13 stsp tree_scroll_up(s, MAX(0, nscroll));
7351 640cd7ff 2022-06-22 mark if (s->selected_entry == NULL ||
7352 640cd7ff 2022-06-22 mark (s->tree == s->root && s->selected_entry ==
7353 640cd7ff 2022-06-22 mark got_object_tree_get_first_entry(s->tree)))
7354 640cd7ff 2022-06-22 mark view->count = 0;
7355 1e37a5c2 2019-05-12 jcs break;
7356 1e37a5c2 2019-05-12 jcs case 'j':
7357 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7358 02ffd0d5 2021-10-17 stsp case CTRL('n'):
7359 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7360 1e37a5c2 2019-05-12 jcs s->selected++;
7361 1e37a5c2 2019-05-12 jcs break;
7362 1e37a5c2 2019-05-12 jcs }
7363 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7364 640cd7ff 2022-06-22 mark == NULL) {
7365 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7366 640cd7ff 2022-06-22 mark view->count = 0;
7367 1e37a5c2 2019-05-12 jcs break;
7368 640cd7ff 2022-06-22 mark }
7369 9b058f45 2022-06-30 mark tree_scroll_down(view, 1);
7370 1e37a5c2 2019-05-12 jcs break;
7371 83cc4199 2022-06-13 stsp case CTRL('d'):
7372 33c3719a 2022-06-15 stsp case 'd':
7373 83cc4199 2022-06-13 stsp nscroll /= 2;
7374 83cc4199 2022-06-13 stsp /* FALL THROUGH */
7375 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7376 ea025d1d 2020-02-22 naddy case CTRL('f'):
7377 61417565 2022-06-20 mark case 'f':
7378 48bb96f0 2022-06-20 naddy case ' ':
7379 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7380 1e37a5c2 2019-05-12 jcs == NULL) {
7381 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7382 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7383 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
7384 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
7385 640cd7ff 2022-06-22 mark else
7386 640cd7ff 2022-06-22 mark view->count = 0;
7387 1e37a5c2 2019-05-12 jcs break;
7388 1e37a5c2 2019-05-12 jcs }
7389 9b058f45 2022-06-30 mark tree_scroll_down(view, nscroll);
7390 1e37a5c2 2019-05-12 jcs break;
7391 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7392 1e37a5c2 2019-05-12 jcs case '\r':
7393 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7394 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7395 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7396 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7397 640cd7ff 2022-06-22 mark if (s->tree == s->root) {
7398 640cd7ff 2022-06-22 mark view->count = 0;
7399 1e37a5c2 2019-05-12 jcs break;
7400 640cd7ff 2022-06-22 mark }
7401 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7402 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7403 1e37a5c2 2019-05-12 jcs entry);
7404 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7405 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7406 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7407 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7408 1e37a5c2 2019-05-12 jcs s->selected_entry =
7409 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7410 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7411 9b058f45 2022-06-30 mark if (s->selected > view->nlines - 3) {
7412 9b058f45 2022-06-30 mark err = offset_selection_down(view);
7413 9b058f45 2022-06-30 mark if (err)
7414 9b058f45 2022-06-30 mark break;
7415 9b058f45 2022-06-30 mark }
7416 1e37a5c2 2019-05-12 jcs free(parent);
7417 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7418 56e0773d 2019-11-28 stsp s->selected_entry))) {
7419 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7420 640cd7ff 2022-06-22 mark view->count = 0;
7421 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7422 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7423 1e37a5c2 2019-05-12 jcs if (err)
7424 1e37a5c2 2019-05-12 jcs break;
7425 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7426 941e9f74 2019-05-21 stsp if (err) {
7427 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7428 1e37a5c2 2019-05-12 jcs break;
7429 1e37a5c2 2019-05-12 jcs }
7430 136e2bd4 2022-07-23 mark } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7431 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7432 1e37a5c2 2019-05-12 jcs break;
7433 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7434 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7435 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7436 640cd7ff 2022-06-22 mark view->count = 0;
7437 1e37a5c2 2019-05-12 jcs break;
7438 1e37a5c2 2019-05-12 jcs default:
7439 640cd7ff 2022-06-22 mark view->count = 0;
7440 1e37a5c2 2019-05-12 jcs break;
7441 ffd1d5e5 2018-06-23 stsp }
7442 e5a0f69f 2018-08-18 stsp
7443 ffd1d5e5 2018-06-23 stsp return err;
7444 9f7d7167 2018-04-29 stsp }
7445 9f7d7167 2018-04-29 stsp
7446 ffd1d5e5 2018-06-23 stsp __dead static void
7447 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7448 ffd1d5e5 2018-06-23 stsp {
7449 ffd1d5e5 2018-06-23 stsp endwin();
7450 87411fa9 2022-06-16 stsp fprintf(stderr,
7451 87411fa9 2022-06-16 stsp "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7452 ffd1d5e5 2018-06-23 stsp getprogname());
7453 ffd1d5e5 2018-06-23 stsp exit(1);
7454 ffd1d5e5 2018-06-23 stsp }
7455 ffd1d5e5 2018-06-23 stsp
7456 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7457 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7458 ffd1d5e5 2018-06-23 stsp {
7459 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7460 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7461 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7462 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7463 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7464 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
7465 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7466 4e97c21c 2020-12-06 stsp char *label = NULL;
7467 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7468 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7469 ffd1d5e5 2018-06-23 stsp int ch;
7470 5221c383 2018-08-01 stsp struct tog_view *view;
7471 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
7472 70ac5f84 2019-03-28 stsp
7473 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7474 ffd1d5e5 2018-06-23 stsp switch (ch) {
7475 ffd1d5e5 2018-06-23 stsp case 'c':
7476 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7477 74283ab8 2020-02-07 stsp break;
7478 74283ab8 2020-02-07 stsp case 'r':
7479 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7480 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7481 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7482 74283ab8 2020-02-07 stsp optarg);
7483 ffd1d5e5 2018-06-23 stsp break;
7484 ffd1d5e5 2018-06-23 stsp default:
7485 e99e2d15 2020-11-24 naddy usage_tree();
7486 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7487 ffd1d5e5 2018-06-23 stsp }
7488 ffd1d5e5 2018-06-23 stsp }
7489 ffd1d5e5 2018-06-23 stsp
7490 ffd1d5e5 2018-06-23 stsp argc -= optind;
7491 ffd1d5e5 2018-06-23 stsp argv += optind;
7492 ffd1d5e5 2018-06-23 stsp
7493 55cccc34 2020-02-20 stsp if (argc > 1)
7494 e99e2d15 2020-11-24 naddy usage_tree();
7495 0ae84acc 2022-06-15 tracey
7496 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
7497 0ae84acc 2022-06-15 tracey if (error != NULL)
7498 0ae84acc 2022-06-15 tracey goto done;
7499 74283ab8 2020-02-07 stsp
7500 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7501 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7502 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7503 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7504 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7505 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7506 c156c7a4 2020-12-18 stsp goto done;
7507 55cccc34 2020-02-20 stsp if (worktree)
7508 52185f70 2019-02-05 stsp repo_path =
7509 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7510 55cccc34 2020-02-20 stsp else
7511 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7512 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7513 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7514 c156c7a4 2020-12-18 stsp goto done;
7515 c156c7a4 2020-12-18 stsp }
7516 55cccc34 2020-02-20 stsp }
7517 a915003a 2019-02-05 stsp
7518 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7519 c02c541e 2019-03-29 stsp if (error != NULL)
7520 52185f70 2019-02-05 stsp goto done;
7521 d188b9a6 2019-01-04 stsp
7522 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7523 55cccc34 2020-02-20 stsp repo, worktree);
7524 55cccc34 2020-02-20 stsp if (error)
7525 55cccc34 2020-02-20 stsp goto done;
7526 55cccc34 2020-02-20 stsp
7527 55cccc34 2020-02-20 stsp init_curses();
7528 55cccc34 2020-02-20 stsp
7529 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7530 c02c541e 2019-03-29 stsp if (error)
7531 52185f70 2019-02-05 stsp goto done;
7532 ffd1d5e5 2018-06-23 stsp
7533 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
7534 51a10b52 2020-12-26 stsp if (error)
7535 51a10b52 2020-12-26 stsp goto done;
7536 51a10b52 2020-12-26 stsp
7537 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7538 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7539 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7540 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7541 4e97c21c 2020-12-06 stsp if (error)
7542 4e97c21c 2020-12-06 stsp goto done;
7543 4e97c21c 2020-12-06 stsp head_ref_name = label;
7544 4e97c21c 2020-12-06 stsp } else {
7545 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7546 4e97c21c 2020-12-06 stsp if (error == NULL)
7547 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7548 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7549 4e97c21c 2020-12-06 stsp goto done;
7550 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7551 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7552 4e97c21c 2020-12-06 stsp if (error)
7553 4e97c21c 2020-12-06 stsp goto done;
7554 4e97c21c 2020-12-06 stsp }
7555 ffd1d5e5 2018-06-23 stsp
7556 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
7557 a44927cc 2022-04-07 stsp if (error)
7558 a44927cc 2022-04-07 stsp goto done;
7559 a44927cc 2022-04-07 stsp
7560 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7561 5221c383 2018-08-01 stsp if (view == NULL) {
7562 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7563 5221c383 2018-08-01 stsp goto done;
7564 5221c383 2018-08-01 stsp }
7565 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7566 ad80ab7b 2018-08-04 stsp if (error)
7567 ad80ab7b 2018-08-04 stsp goto done;
7568 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7569 a44927cc 2022-04-07 stsp error = tree_view_walk_path(&view->state.tree, commit,
7570 d91faf3b 2020-12-01 naddy in_repo_path);
7571 55cccc34 2020-02-20 stsp if (error)
7572 55cccc34 2020-02-20 stsp goto done;
7573 55cccc34 2020-02-20 stsp }
7574 55cccc34 2020-02-20 stsp
7575 55cccc34 2020-02-20 stsp if (worktree) {
7576 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7577 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7578 55cccc34 2020-02-20 stsp worktree = NULL;
7579 55cccc34 2020-02-20 stsp }
7580 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7581 ffd1d5e5 2018-06-23 stsp done:
7582 52185f70 2019-02-05 stsp free(repo_path);
7583 e4a0e26d 2020-02-20 stsp free(cwd);
7584 ffd1d5e5 2018-06-23 stsp free(commit_id);
7585 4e97c21c 2020-12-06 stsp free(label);
7586 486cd271 2020-12-06 stsp if (ref)
7587 486cd271 2020-12-06 stsp got_ref_close(ref);
7588 1d0f4054 2021-06-17 stsp if (repo) {
7589 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7590 1d0f4054 2021-06-17 stsp if (error == NULL)
7591 1d0f4054 2021-06-17 stsp error = close_err;
7592 1d0f4054 2021-06-17 stsp }
7593 0ae84acc 2022-06-15 tracey if (pack_fds) {
7594 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
7595 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
7596 0ae84acc 2022-06-15 tracey if (error == NULL)
7597 0ae84acc 2022-06-15 tracey error = pack_err;
7598 0ae84acc 2022-06-15 tracey }
7599 51a10b52 2020-12-26 stsp tog_free_refs();
7600 ffd1d5e5 2018-06-23 stsp return error;
7601 6458efa5 2020-11-24 stsp }
7602 6458efa5 2020-11-24 stsp
7603 6458efa5 2020-11-24 stsp static const struct got_error *
7604 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7605 6458efa5 2020-11-24 stsp {
7606 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7607 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7608 6458efa5 2020-11-24 stsp
7609 6458efa5 2020-11-24 stsp s->nrefs = 0;
7610 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7611 cc488aa7 2022-01-23 stsp if (strncmp(got_ref_get_name(sre->ref),
7612 cc488aa7 2022-01-23 stsp "refs/got/", 9) == 0 &&
7613 cc488aa7 2022-01-23 stsp strncmp(got_ref_get_name(sre->ref),
7614 cc488aa7 2022-01-23 stsp "refs/got/backup/", 16) != 0)
7615 6458efa5 2020-11-24 stsp continue;
7616 6458efa5 2020-11-24 stsp
7617 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7618 6458efa5 2020-11-24 stsp if (re == NULL)
7619 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7620 6458efa5 2020-11-24 stsp
7621 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7622 8924d611 2020-12-26 stsp if (re->ref == NULL)
7623 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7624 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7625 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7626 6458efa5 2020-11-24 stsp }
7627 6458efa5 2020-11-24 stsp
7628 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7629 6458efa5 2020-11-24 stsp return NULL;
7630 6458efa5 2020-11-24 stsp }
7631 6458efa5 2020-11-24 stsp
7632 336075a4 2022-06-25 op static void
7633 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7634 6458efa5 2020-11-24 stsp {
7635 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7636 6458efa5 2020-11-24 stsp
7637 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7638 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7639 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7640 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7641 6458efa5 2020-11-24 stsp free(re);
7642 6458efa5 2020-11-24 stsp }
7643 6458efa5 2020-11-24 stsp }
7644 6458efa5 2020-11-24 stsp
7645 6458efa5 2020-11-24 stsp static const struct got_error *
7646 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7647 6458efa5 2020-11-24 stsp {
7648 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7649 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7650 6458efa5 2020-11-24 stsp
7651 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7652 6458efa5 2020-11-24 stsp s->repo = repo;
7653 6458efa5 2020-11-24 stsp
7654 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7655 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7656 6458efa5 2020-11-24 stsp
7657 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7658 6458efa5 2020-11-24 stsp if (err)
7659 6458efa5 2020-11-24 stsp return err;
7660 34ba6917 2020-11-30 stsp
7661 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7662 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7663 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7664 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7665 6458efa5 2020-11-24 stsp if (err)
7666 6458efa5 2020-11-24 stsp goto done;
7667 6458efa5 2020-11-24 stsp
7668 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7669 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7670 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7671 6458efa5 2020-11-24 stsp if (err)
7672 6458efa5 2020-11-24 stsp goto done;
7673 6458efa5 2020-11-24 stsp
7674 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7675 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7676 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7677 cc488aa7 2022-01-23 stsp if (err)
7678 cc488aa7 2022-01-23 stsp goto done;
7679 cc488aa7 2022-01-23 stsp
7680 cc488aa7 2022-01-23 stsp err = add_color(&s->colors, "^refs/got/backup/",
7681 cc488aa7 2022-01-23 stsp TOG_COLOR_REFS_BACKUP,
7682 cc488aa7 2022-01-23 stsp get_color_value("TOG_COLOR_REFS_BACKUP"));
7683 6458efa5 2020-11-24 stsp if (err)
7684 6458efa5 2020-11-24 stsp goto done;
7685 6458efa5 2020-11-24 stsp }
7686 6458efa5 2020-11-24 stsp
7687 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7688 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7689 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7690 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7691 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7692 6458efa5 2020-11-24 stsp done:
7693 6458efa5 2020-11-24 stsp if (err)
7694 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7695 6458efa5 2020-11-24 stsp return err;
7696 6458efa5 2020-11-24 stsp }
7697 6458efa5 2020-11-24 stsp
7698 6458efa5 2020-11-24 stsp static const struct got_error *
7699 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7700 6458efa5 2020-11-24 stsp {
7701 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7702 6458efa5 2020-11-24 stsp
7703 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7704 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7705 6458efa5 2020-11-24 stsp
7706 6458efa5 2020-11-24 stsp return NULL;
7707 9f7d7167 2018-04-29 stsp }
7708 ce5b7c56 2019-07-09 stsp
7709 6458efa5 2020-11-24 stsp static const struct got_error *
7710 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7711 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7712 6458efa5 2020-11-24 stsp {
7713 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7714 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7715 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7716 6458efa5 2020-11-24 stsp int obj_type;
7717 6458efa5 2020-11-24 stsp
7718 c42c9805 2020-11-24 stsp *commit_id = NULL;
7719 6458efa5 2020-11-24 stsp
7720 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7721 6458efa5 2020-11-24 stsp if (err)
7722 6458efa5 2020-11-24 stsp return err;
7723 6458efa5 2020-11-24 stsp
7724 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7725 6458efa5 2020-11-24 stsp if (err)
7726 6458efa5 2020-11-24 stsp goto done;
7727 6458efa5 2020-11-24 stsp
7728 6458efa5 2020-11-24 stsp switch (obj_type) {
7729 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7730 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7731 6458efa5 2020-11-24 stsp break;
7732 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7733 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7734 6458efa5 2020-11-24 stsp if (err)
7735 6458efa5 2020-11-24 stsp goto done;
7736 c42c9805 2020-11-24 stsp free(obj_id);
7737 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7738 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7739 c42c9805 2020-11-24 stsp if (err)
7740 6458efa5 2020-11-24 stsp goto done;
7741 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7742 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7743 c42c9805 2020-11-24 stsp goto done;
7744 c42c9805 2020-11-24 stsp }
7745 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7746 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7747 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7748 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7749 c42c9805 2020-11-24 stsp goto done;
7750 c42c9805 2020-11-24 stsp }
7751 6458efa5 2020-11-24 stsp break;
7752 6458efa5 2020-11-24 stsp default:
7753 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7754 c42c9805 2020-11-24 stsp break;
7755 6458efa5 2020-11-24 stsp }
7756 6458efa5 2020-11-24 stsp
7757 c42c9805 2020-11-24 stsp done:
7758 c42c9805 2020-11-24 stsp if (tag)
7759 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7760 c42c9805 2020-11-24 stsp if (err) {
7761 c42c9805 2020-11-24 stsp free(*commit_id);
7762 c42c9805 2020-11-24 stsp *commit_id = NULL;
7763 c42c9805 2020-11-24 stsp }
7764 c42c9805 2020-11-24 stsp return err;
7765 c42c9805 2020-11-24 stsp }
7766 c42c9805 2020-11-24 stsp
7767 c42c9805 2020-11-24 stsp static const struct got_error *
7768 9b058f45 2022-06-30 mark log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7769 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7770 c42c9805 2020-11-24 stsp {
7771 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7772 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7773 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7774 c42c9805 2020-11-24 stsp
7775 c42c9805 2020-11-24 stsp *new_view = NULL;
7776 c42c9805 2020-11-24 stsp
7777 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7778 c42c9805 2020-11-24 stsp if (err) {
7779 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7780 c42c9805 2020-11-24 stsp return err;
7781 c42c9805 2020-11-24 stsp else
7782 c42c9805 2020-11-24 stsp return NULL;
7783 c42c9805 2020-11-24 stsp }
7784 c42c9805 2020-11-24 stsp
7785 9b058f45 2022-06-30 mark log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7786 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7787 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7788 6458efa5 2020-11-24 stsp goto done;
7789 6458efa5 2020-11-24 stsp }
7790 6458efa5 2020-11-24 stsp
7791 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7792 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7793 6458efa5 2020-11-24 stsp done:
7794 6458efa5 2020-11-24 stsp if (err)
7795 6458efa5 2020-11-24 stsp view_close(log_view);
7796 6458efa5 2020-11-24 stsp else
7797 6458efa5 2020-11-24 stsp *new_view = log_view;
7798 c42c9805 2020-11-24 stsp free(commit_id);
7799 6458efa5 2020-11-24 stsp return err;
7800 6458efa5 2020-11-24 stsp }
7801 6458efa5 2020-11-24 stsp
7802 ce5b7c56 2019-07-09 stsp static void
7803 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7804 6458efa5 2020-11-24 stsp {
7805 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7806 34ba6917 2020-11-30 stsp int i = 0;
7807 6458efa5 2020-11-24 stsp
7808 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7809 6458efa5 2020-11-24 stsp return;
7810 6458efa5 2020-11-24 stsp
7811 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7812 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7813 34ba6917 2020-11-30 stsp if (re == NULL)
7814 34ba6917 2020-11-30 stsp break;
7815 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7816 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7817 6458efa5 2020-11-24 stsp }
7818 6458efa5 2020-11-24 stsp }
7819 6458efa5 2020-11-24 stsp
7820 9b058f45 2022-06-30 mark static const struct got_error *
7821 9b058f45 2022-06-30 mark ref_scroll_down(struct tog_view *view, int maxscroll)
7822 6458efa5 2020-11-24 stsp {
7823 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
7824 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7825 6458efa5 2020-11-24 stsp int n = 0;
7826 6458efa5 2020-11-24 stsp
7827 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7828 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7829 6458efa5 2020-11-24 stsp else
7830 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7831 6458efa5 2020-11-24 stsp
7832 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7833 9b058f45 2022-06-30 mark while (next && n++ < maxscroll) {
7834 94b80cfa 2022-08-01 mark if (last) {
7835 94b80cfa 2022-08-01 mark s->last_displayed_entry = last;
7836 9b058f45 2022-06-30 mark last = TAILQ_NEXT(last, entry);
7837 94b80cfa 2022-08-01 mark }
7838 9b058f45 2022-06-30 mark if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7839 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7840 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7841 6458efa5 2020-11-24 stsp }
7842 6458efa5 2020-11-24 stsp }
7843 9b058f45 2022-06-30 mark
7844 9b058f45 2022-06-30 mark return NULL;
7845 6458efa5 2020-11-24 stsp }
7846 6458efa5 2020-11-24 stsp
7847 6458efa5 2020-11-24 stsp static const struct got_error *
7848 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7849 6458efa5 2020-11-24 stsp {
7850 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7851 6458efa5 2020-11-24 stsp
7852 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7853 6458efa5 2020-11-24 stsp return NULL;
7854 6458efa5 2020-11-24 stsp }
7855 6458efa5 2020-11-24 stsp
7856 6458efa5 2020-11-24 stsp static int
7857 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7858 6458efa5 2020-11-24 stsp {
7859 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7860 6458efa5 2020-11-24 stsp
7861 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7862 6458efa5 2020-11-24 stsp 0) == 0;
7863 6458efa5 2020-11-24 stsp }
7864 6458efa5 2020-11-24 stsp
7865 6458efa5 2020-11-24 stsp static const struct got_error *
7866 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7867 6458efa5 2020-11-24 stsp {
7868 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7869 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7870 6458efa5 2020-11-24 stsp
7871 6458efa5 2020-11-24 stsp if (!view->searching) {
7872 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7873 6458efa5 2020-11-24 stsp return NULL;
7874 6458efa5 2020-11-24 stsp }
7875 6458efa5 2020-11-24 stsp
7876 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7877 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7878 6458efa5 2020-11-24 stsp if (s->selected_entry)
7879 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7880 6458efa5 2020-11-24 stsp else
7881 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7882 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7883 6458efa5 2020-11-24 stsp } else {
7884 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7885 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7886 6458efa5 2020-11-24 stsp else
7887 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7888 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7889 6458efa5 2020-11-24 stsp }
7890 6458efa5 2020-11-24 stsp } else {
7891 487cd7d2 2021-12-17 stsp if (s->selected_entry)
7892 487cd7d2 2021-12-17 stsp re = s->selected_entry;
7893 487cd7d2 2021-12-17 stsp else if (view->searching == TOG_SEARCH_FORWARD)
7894 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7895 6458efa5 2020-11-24 stsp else
7896 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7897 6458efa5 2020-11-24 stsp }
7898 6458efa5 2020-11-24 stsp
7899 6458efa5 2020-11-24 stsp while (1) {
7900 6458efa5 2020-11-24 stsp if (re == NULL) {
7901 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7902 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7903 6458efa5 2020-11-24 stsp return NULL;
7904 6458efa5 2020-11-24 stsp }
7905 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7906 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7907 6458efa5 2020-11-24 stsp else
7908 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7909 6458efa5 2020-11-24 stsp }
7910 6458efa5 2020-11-24 stsp
7911 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7912 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7913 6458efa5 2020-11-24 stsp s->matched_entry = re;
7914 6458efa5 2020-11-24 stsp break;
7915 6458efa5 2020-11-24 stsp }
7916 6458efa5 2020-11-24 stsp
7917 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7918 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7919 6458efa5 2020-11-24 stsp else
7920 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7921 6458efa5 2020-11-24 stsp }
7922 6458efa5 2020-11-24 stsp
7923 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7924 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7925 6458efa5 2020-11-24 stsp s->selected = 0;
7926 6458efa5 2020-11-24 stsp }
7927 6458efa5 2020-11-24 stsp
7928 6458efa5 2020-11-24 stsp return NULL;
7929 6458efa5 2020-11-24 stsp }
7930 6458efa5 2020-11-24 stsp
7931 6458efa5 2020-11-24 stsp static const struct got_error *
7932 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7933 6458efa5 2020-11-24 stsp {
7934 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7935 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7936 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7937 6458efa5 2020-11-24 stsp char *line = NULL;
7938 6458efa5 2020-11-24 stsp wchar_t *wline;
7939 6458efa5 2020-11-24 stsp struct tog_color *tc;
7940 6458efa5 2020-11-24 stsp int width, n;
7941 6458efa5 2020-11-24 stsp int limit = view->nlines;
7942 6458efa5 2020-11-24 stsp
7943 6458efa5 2020-11-24 stsp werase(view->window);
7944 6458efa5 2020-11-24 stsp
7945 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7946 49b24ee5 2022-07-03 mark if (view_is_hsplit_top(view))
7947 9b058f45 2022-06-30 mark --limit; /* border */
7948 6458efa5 2020-11-24 stsp
7949 6458efa5 2020-11-24 stsp if (limit == 0)
7950 6458efa5 2020-11-24 stsp return NULL;
7951 6458efa5 2020-11-24 stsp
7952 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7953 6458efa5 2020-11-24 stsp
7954 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7955 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7956 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7957 6458efa5 2020-11-24 stsp
7958 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7959 6458efa5 2020-11-24 stsp if (err) {
7960 6458efa5 2020-11-24 stsp free(line);
7961 6458efa5 2020-11-24 stsp return err;
7962 6458efa5 2020-11-24 stsp }
7963 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7964 6458efa5 2020-11-24 stsp wstandout(view->window);
7965 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7966 0c6ad1bc 2022-09-09 mark while (width++ < view->ncols)
7967 0c6ad1bc 2022-09-09 mark waddch(view->window, ' ');
7968 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7969 6458efa5 2020-11-24 stsp wstandend(view->window);
7970 6458efa5 2020-11-24 stsp free(wline);
7971 6458efa5 2020-11-24 stsp wline = NULL;
7972 6458efa5 2020-11-24 stsp free(line);
7973 6458efa5 2020-11-24 stsp line = NULL;
7974 6458efa5 2020-11-24 stsp if (--limit <= 0)
7975 6458efa5 2020-11-24 stsp return NULL;
7976 6458efa5 2020-11-24 stsp
7977 6458efa5 2020-11-24 stsp n = 0;
7978 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7979 6458efa5 2020-11-24 stsp char *line = NULL;
7980 b4996bee 2022-06-16 stsp char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7981 6458efa5 2020-11-24 stsp
7982 b4996bee 2022-06-16 stsp if (s->show_date) {
7983 b4996bee 2022-06-16 stsp struct got_commit_object *ci;
7984 b4996bee 2022-06-16 stsp struct got_tag_object *tag;
7985 b4996bee 2022-06-16 stsp struct got_object_id *id;
7986 b4996bee 2022-06-16 stsp struct tm tm;
7987 b4996bee 2022-06-16 stsp time_t t;
7988 b4996bee 2022-06-16 stsp
7989 b4996bee 2022-06-16 stsp err = got_ref_resolve(&id, s->repo, re->ref);
7990 b4996bee 2022-06-16 stsp if (err)
7991 b4996bee 2022-06-16 stsp return err;
7992 b4996bee 2022-06-16 stsp err = got_object_open_as_tag(&tag, s->repo, id);
7993 b4996bee 2022-06-16 stsp if (err) {
7994 b4996bee 2022-06-16 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
7995 b4996bee 2022-06-16 stsp free(id);
7996 b4996bee 2022-06-16 stsp return err;
7997 b4996bee 2022-06-16 stsp }
7998 b4996bee 2022-06-16 stsp err = got_object_open_as_commit(&ci, s->repo,
7999 b4996bee 2022-06-16 stsp id);
8000 b4996bee 2022-06-16 stsp if (err) {
8001 b4996bee 2022-06-16 stsp free(id);
8002 b4996bee 2022-06-16 stsp return err;
8003 b4996bee 2022-06-16 stsp }
8004 b4996bee 2022-06-16 stsp t = got_object_commit_get_committer_time(ci);
8005 b4996bee 2022-06-16 stsp got_object_commit_close(ci);
8006 b4996bee 2022-06-16 stsp } else {
8007 b4996bee 2022-06-16 stsp t = got_object_tag_get_tagger_time(tag);
8008 b4996bee 2022-06-16 stsp got_object_tag_close(tag);
8009 b4996bee 2022-06-16 stsp }
8010 b4996bee 2022-06-16 stsp free(id);
8011 b4996bee 2022-06-16 stsp if (gmtime_r(&t, &tm) == NULL)
8012 b4996bee 2022-06-16 stsp return got_error_from_errno("gmtime_r");
8013 b4996bee 2022-06-16 stsp if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8014 b4996bee 2022-06-16 stsp return got_error(GOT_ERR_NO_SPACE);
8015 b4996bee 2022-06-16 stsp }
8016 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
8017 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s -> %s", s->show_date ?
8018 b4996bee 2022-06-16 stsp ymd : "", got_ref_get_name(re->ref),
8019 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
8020 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
8021 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
8022 6458efa5 2020-11-24 stsp struct got_object_id *id;
8023 6458efa5 2020-11-24 stsp char *id_str;
8024 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
8025 6458efa5 2020-11-24 stsp if (err)
8026 6458efa5 2020-11-24 stsp return err;
8027 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
8028 6458efa5 2020-11-24 stsp if (err) {
8029 6458efa5 2020-11-24 stsp free(id);
8030 6458efa5 2020-11-24 stsp return err;
8031 6458efa5 2020-11-24 stsp }
8032 b4996bee 2022-06-16 stsp if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8033 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
8034 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
8035 6458efa5 2020-11-24 stsp free(id);
8036 6458efa5 2020-11-24 stsp free(id_str);
8037 6458efa5 2020-11-24 stsp return err;
8038 6458efa5 2020-11-24 stsp }
8039 6458efa5 2020-11-24 stsp free(id);
8040 6458efa5 2020-11-24 stsp free(id_str);
8041 b4996bee 2022-06-16 stsp } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8042 b4996bee 2022-06-16 stsp got_ref_get_name(re->ref)) == -1)
8043 b4996bee 2022-06-16 stsp return got_error_from_errno("asprintf");
8044 6458efa5 2020-11-24 stsp
8045 ccda2f4d 2022-06-16 stsp err = format_line(&wline, &width, NULL, line, 0, view->ncols,
8046 ccda2f4d 2022-06-16 stsp 0, 0);
8047 6458efa5 2020-11-24 stsp if (err) {
8048 6458efa5 2020-11-24 stsp free(line);
8049 6458efa5 2020-11-24 stsp return err;
8050 6458efa5 2020-11-24 stsp }
8051 6458efa5 2020-11-24 stsp if (n == s->selected) {
8052 6458efa5 2020-11-24 stsp if (view->focussed)
8053 6458efa5 2020-11-24 stsp wstandout(view->window);
8054 6458efa5 2020-11-24 stsp s->selected_entry = re;
8055 6458efa5 2020-11-24 stsp }
8056 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
8057 6458efa5 2020-11-24 stsp if (tc)
8058 6458efa5 2020-11-24 stsp wattr_on(view->window,
8059 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8060 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
8061 6458efa5 2020-11-24 stsp if (tc)
8062 6458efa5 2020-11-24 stsp wattr_off(view->window,
8063 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8064 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
8065 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
8066 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
8067 6458efa5 2020-11-24 stsp wstandend(view->window);
8068 6458efa5 2020-11-24 stsp free(line);
8069 6458efa5 2020-11-24 stsp free(wline);
8070 6458efa5 2020-11-24 stsp wline = NULL;
8071 6458efa5 2020-11-24 stsp n++;
8072 6458efa5 2020-11-24 stsp s->ndisplayed++;
8073 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
8074 6458efa5 2020-11-24 stsp
8075 6458efa5 2020-11-24 stsp limit--;
8076 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
8077 6458efa5 2020-11-24 stsp }
8078 6458efa5 2020-11-24 stsp
8079 9b058f45 2022-06-30 mark view_border(view);
8080 6458efa5 2020-11-24 stsp return err;
8081 6458efa5 2020-11-24 stsp }
8082 6458efa5 2020-11-24 stsp
8083 6458efa5 2020-11-24 stsp static const struct got_error *
8084 49b24ee5 2022-07-03 mark browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8085 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
8086 c42c9805 2020-11-24 stsp {
8087 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
8088 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
8089 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
8090 c42c9805 2020-11-24 stsp
8091 c42c9805 2020-11-24 stsp *new_view = NULL;
8092 c42c9805 2020-11-24 stsp
8093 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
8094 c42c9805 2020-11-24 stsp if (err) {
8095 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
8096 c42c9805 2020-11-24 stsp return err;
8097 c42c9805 2020-11-24 stsp else
8098 c42c9805 2020-11-24 stsp return NULL;
8099 c42c9805 2020-11-24 stsp }
8100 c42c9805 2020-11-24 stsp
8101 c42c9805 2020-11-24 stsp
8102 49b24ee5 2022-07-03 mark tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8103 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
8104 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
8105 c42c9805 2020-11-24 stsp goto done;
8106 c42c9805 2020-11-24 stsp }
8107 c42c9805 2020-11-24 stsp
8108 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
8109 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
8110 c42c9805 2020-11-24 stsp if (err)
8111 c42c9805 2020-11-24 stsp goto done;
8112 c42c9805 2020-11-24 stsp
8113 c42c9805 2020-11-24 stsp *new_view = tree_view;
8114 c42c9805 2020-11-24 stsp done:
8115 c42c9805 2020-11-24 stsp free(commit_id);
8116 c42c9805 2020-11-24 stsp return err;
8117 94b80cfa 2022-08-01 mark }
8118 94b80cfa 2022-08-01 mark
8119 94b80cfa 2022-08-01 mark static const struct got_error *
8120 94b80cfa 2022-08-01 mark ref_goto_line(struct tog_view *view, int nlines)
8121 94b80cfa 2022-08-01 mark {
8122 94b80cfa 2022-08-01 mark const struct got_error *err = NULL;
8123 94b80cfa 2022-08-01 mark struct tog_ref_view_state *s = &view->state.ref;
8124 94b80cfa 2022-08-01 mark int g, idx = s->selected_entry->idx;
8125 94b80cfa 2022-08-01 mark
8126 94b80cfa 2022-08-01 mark g = view->gline;
8127 94b80cfa 2022-08-01 mark view->gline = 0;
8128 94b80cfa 2022-08-01 mark
8129 94b80cfa 2022-08-01 mark if (g == 0)
8130 94b80cfa 2022-08-01 mark g = 1;
8131 94b80cfa 2022-08-01 mark else if (g > s->nrefs)
8132 94b80cfa 2022-08-01 mark g = s->nrefs;
8133 94b80cfa 2022-08-01 mark
8134 94b80cfa 2022-08-01 mark if (g >= s->first_displayed_entry->idx + 1 &&
8135 94b80cfa 2022-08-01 mark g <= s->last_displayed_entry->idx + 1 &&
8136 94b80cfa 2022-08-01 mark g - s->first_displayed_entry->idx - 1 < nlines) {
8137 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
8138 94b80cfa 2022-08-01 mark return NULL;
8139 94b80cfa 2022-08-01 mark }
8140 94b80cfa 2022-08-01 mark
8141 94b80cfa 2022-08-01 mark if (idx + 1 < g) {
8142 94b80cfa 2022-08-01 mark err = ref_scroll_down(view, g - idx - 1);
8143 94b80cfa 2022-08-01 mark if (err)
8144 94b80cfa 2022-08-01 mark return err;
8145 94b80cfa 2022-08-01 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8146 94b80cfa 2022-08-01 mark s->first_displayed_entry->idx + s->selected < g &&
8147 94b80cfa 2022-08-01 mark s->selected < s->ndisplayed - 1)
8148 94b80cfa 2022-08-01 mark s->selected = g - s->first_displayed_entry->idx - 1;
8149 94b80cfa 2022-08-01 mark } else if (idx + 1 > g)
8150 94b80cfa 2022-08-01 mark ref_scroll_up(s, idx - g + 1);
8151 94b80cfa 2022-08-01 mark
8152 94b80cfa 2022-08-01 mark if (g < nlines && s->first_displayed_entry->idx == 0)
8153 94b80cfa 2022-08-01 mark s->selected = g - 1;
8154 94b80cfa 2022-08-01 mark
8155 94b80cfa 2022-08-01 mark return NULL;
8156 94b80cfa 2022-08-01 mark
8157 c42c9805 2020-11-24 stsp }
8158 94b80cfa 2022-08-01 mark
8159 c42c9805 2020-11-24 stsp static const struct got_error *
8160 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8161 6458efa5 2020-11-24 stsp {
8162 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
8163 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
8164 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
8165 136e2bd4 2022-07-23 mark int n, nscroll = view->nlines - 1;
8166 6458efa5 2020-11-24 stsp
8167 94b80cfa 2022-08-01 mark if (view->gline)
8168 94b80cfa 2022-08-01 mark return ref_goto_line(view, nscroll);
8169 94b80cfa 2022-08-01 mark
8170 6458efa5 2020-11-24 stsp switch (ch) {
8171 6458efa5 2020-11-24 stsp case 'i':
8172 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
8173 640cd7ff 2022-06-22 mark view->count = 0;
8174 7f66531d 2021-11-16 stsp break;
8175 b4996bee 2022-06-16 stsp case 'm':
8176 b4996bee 2022-06-16 stsp s->show_date = !s->show_date;
8177 640cd7ff 2022-06-22 mark view->count = 0;
8178 b4996bee 2022-06-16 stsp break;
8179 07a065fe 2021-11-20 stsp case 'o':
8180 7f66531d 2021-11-16 stsp s->sort_by_date = !s->sort_by_date;
8181 640cd7ff 2022-06-22 mark view->count = 0;
8182 50617b77 2021-11-20 stsp err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8183 50617b77 2021-11-20 stsp got_ref_cmp_by_commit_timestamp_descending :
8184 cc488aa7 2022-01-23 stsp tog_ref_cmp_by_name, s->repo);
8185 50617b77 2021-11-20 stsp if (err)
8186 50617b77 2021-11-20 stsp break;
8187 50617b77 2021-11-20 stsp got_reflist_object_id_map_free(tog_refs_idmap);
8188 50617b77 2021-11-20 stsp err = got_reflist_object_id_map_create(&tog_refs_idmap,
8189 50617b77 2021-11-20 stsp &tog_refs, s->repo);
8190 7f66531d 2021-11-16 stsp if (err)
8191 7f66531d 2021-11-16 stsp break;
8192 7f66531d 2021-11-16 stsp ref_view_free_refs(s);
8193 7f66531d 2021-11-16 stsp err = ref_view_load_refs(s);
8194 6458efa5 2020-11-24 stsp break;
8195 6458efa5 2020-11-24 stsp case KEY_ENTER:
8196 6458efa5 2020-11-24 stsp case '\r':
8197 640cd7ff 2022-06-22 mark view->count = 0;
8198 6458efa5 2020-11-24 stsp if (!s->selected_entry)
8199 9b058f45 2022-06-30 mark break;
8200 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_LOG);
8201 6458efa5 2020-11-24 stsp break;
8202 5e98fb33 2022-07-22 mark case 'T':
8203 640cd7ff 2022-06-22 mark view->count = 0;
8204 c42c9805 2020-11-24 stsp if (!s->selected_entry)
8205 c42c9805 2020-11-24 stsp break;
8206 136e2bd4 2022-07-23 mark err = view_request_new(new_view, view, TOG_VIEW_TREE);
8207 c42c9805 2020-11-24 stsp break;
8208 e4526bf5 2021-09-03 naddy case 'g':
8209 e4526bf5 2021-09-03 naddy case KEY_HOME:
8210 e4526bf5 2021-09-03 naddy s->selected = 0;
8211 640cd7ff 2022-06-22 mark view->count = 0;
8212 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8213 e4526bf5 2021-09-03 naddy break;
8214 e4526bf5 2021-09-03 naddy case 'G':
8215 9b058f45 2022-06-30 mark case KEY_END: {
8216 9b058f45 2022-06-30 mark int eos = view->nlines - 1;
8217 9b058f45 2022-06-30 mark
8218 9b058f45 2022-06-30 mark if (view->mode == TOG_VIEW_SPLIT_HRZN)
8219 9b058f45 2022-06-30 mark --eos; /* border */
8220 e4526bf5 2021-09-03 naddy s->selected = 0;
8221 640cd7ff 2022-06-22 mark view->count = 0;
8222 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
8223 9b058f45 2022-06-30 mark for (n = 0; n < eos; n++) {
8224 e4526bf5 2021-09-03 naddy if (re == NULL)
8225 e4526bf5 2021-09-03 naddy break;
8226 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
8227 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
8228 e4526bf5 2021-09-03 naddy }
8229 e4526bf5 2021-09-03 naddy if (n > 0)
8230 e4526bf5 2021-09-03 naddy s->selected = n - 1;
8231 e4526bf5 2021-09-03 naddy break;
8232 9b058f45 2022-06-30 mark }
8233 6458efa5 2020-11-24 stsp case 'k':
8234 6458efa5 2020-11-24 stsp case KEY_UP:
8235 02ffd0d5 2021-10-17 stsp case CTRL('p'):
8236 6458efa5 2020-11-24 stsp if (s->selected > 0) {
8237 6458efa5 2020-11-24 stsp s->selected--;
8238 6458efa5 2020-11-24 stsp break;
8239 34ba6917 2020-11-30 stsp }
8240 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
8241 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
8242 640cd7ff 2022-06-22 mark view->count = 0;
8243 6458efa5 2020-11-24 stsp break;
8244 83cc4199 2022-06-13 stsp case CTRL('u'):
8245 33c3719a 2022-06-15 stsp case 'u':
8246 83cc4199 2022-06-13 stsp nscroll /= 2;
8247 83cc4199 2022-06-13 stsp /* FALL THROUGH */
8248 6458efa5 2020-11-24 stsp case KEY_PPAGE:
8249 6458efa5 2020-11-24 stsp case CTRL('b'):
8250 61417565 2022-06-20 mark case 'b':
8251 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8252 83cc4199 2022-06-13 stsp s->selected -= MIN(nscroll, s->selected);
8253 83cc4199 2022-06-13 stsp ref_scroll_up(s, MAX(0, nscroll));
8254 640cd7ff 2022-06-22 mark if (s->selected_entry == TAILQ_FIRST(&s->refs))
8255 640cd7ff 2022-06-22 mark view->count = 0;
8256 6458efa5 2020-11-24 stsp break;
8257 6458efa5 2020-11-24 stsp case 'j':
8258 6458efa5 2020-11-24 stsp case KEY_DOWN:
8259 02ffd0d5 2021-10-17 stsp case CTRL('n'):
8260 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
8261 6458efa5 2020-11-24 stsp s->selected++;
8262 6458efa5 2020-11-24 stsp break;
8263 6458efa5 2020-11-24 stsp }
8264 640cd7ff 2022-06-22 mark if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8265 6458efa5 2020-11-24 stsp /* can't scroll any further */
8266 640cd7ff 2022-06-22 mark view->count = 0;
8267 6458efa5 2020-11-24 stsp break;
8268 640cd7ff 2022-06-22 mark }
8269 9b058f45 2022-06-30 mark ref_scroll_down(view, 1);
8270 6458efa5 2020-11-24 stsp break;
8271 83cc4199 2022-06-13 stsp case CTRL('d'):
8272 33c3719a 2022-06-15 stsp case 'd':
8273 83cc4199 2022-06-13 stsp nscroll /= 2;
8274 83cc4199 2022-06-13 stsp /* FALL THROUGH */
8275 6458efa5 2020-11-24 stsp case KEY_NPAGE:
8276 6458efa5 2020-11-24 stsp case CTRL('f'):
8277 61417565 2022-06-20 mark case 'f':
8278 48bb96f0 2022-06-20 naddy case ' ':
8279 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8280 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
8281 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
8282 83cc4199 2022-06-13 stsp s->selected += MIN(nscroll,
8283 83cc4199 2022-06-13 stsp s->ndisplayed - s->selected - 1);
8284 640cd7ff 2022-06-22 mark if (view->count > 1 && s->selected < s->ndisplayed - 1)
8285 640cd7ff 2022-06-22 mark s->selected += s->ndisplayed - s->selected - 1;
8286 640cd7ff 2022-06-22 mark view->count = 0;
8287 6458efa5 2020-11-24 stsp break;
8288 6458efa5 2020-11-24 stsp }
8289 9b058f45 2022-06-30 mark ref_scroll_down(view, nscroll);
8290 6458efa5 2020-11-24 stsp break;
8291 6458efa5 2020-11-24 stsp case CTRL('l'):
8292 640cd7ff 2022-06-22 mark view->count = 0;
8293 8924d611 2020-12-26 stsp tog_free_refs();
8294 7f66531d 2021-11-16 stsp err = tog_load_refs(s->repo, s->sort_by_date);
8295 8924d611 2020-12-26 stsp if (err)
8296 8924d611 2020-12-26 stsp break;
8297 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
8298 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
8299 6458efa5 2020-11-24 stsp break;
8300 6458efa5 2020-11-24 stsp case KEY_RESIZE:
8301 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8302 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
8303 6458efa5 2020-11-24 stsp break;
8304 6458efa5 2020-11-24 stsp default:
8305 640cd7ff 2022-06-22 mark view->count = 0;
8306 6458efa5 2020-11-24 stsp break;
8307 6458efa5 2020-11-24 stsp }
8308 6458efa5 2020-11-24 stsp
8309 6458efa5 2020-11-24 stsp return err;
8310 6458efa5 2020-11-24 stsp }
8311 6458efa5 2020-11-24 stsp
8312 6458efa5 2020-11-24 stsp __dead static void
8313 6458efa5 2020-11-24 stsp usage_ref(void)
8314 6458efa5 2020-11-24 stsp {
8315 6458efa5 2020-11-24 stsp endwin();
8316 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8317 6458efa5 2020-11-24 stsp getprogname());
8318 6458efa5 2020-11-24 stsp exit(1);
8319 6458efa5 2020-11-24 stsp }
8320 6458efa5 2020-11-24 stsp
8321 6458efa5 2020-11-24 stsp static const struct got_error *
8322 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8323 6458efa5 2020-11-24 stsp {
8324 6458efa5 2020-11-24 stsp const struct got_error *error;
8325 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8326 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8327 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8328 6458efa5 2020-11-24 stsp int ch;
8329 6458efa5 2020-11-24 stsp struct tog_view *view;
8330 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
8331 6458efa5 2020-11-24 stsp
8332 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8333 6458efa5 2020-11-24 stsp switch (ch) {
8334 6458efa5 2020-11-24 stsp case 'r':
8335 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8336 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8337 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8338 6458efa5 2020-11-24 stsp optarg);
8339 6458efa5 2020-11-24 stsp break;
8340 6458efa5 2020-11-24 stsp default:
8341 e99e2d15 2020-11-24 naddy usage_ref();
8342 6458efa5 2020-11-24 stsp /* NOTREACHED */
8343 6458efa5 2020-11-24 stsp }
8344 6458efa5 2020-11-24 stsp }
8345 6458efa5 2020-11-24 stsp
8346 6458efa5 2020-11-24 stsp argc -= optind;
8347 6458efa5 2020-11-24 stsp argv += optind;
8348 6458efa5 2020-11-24 stsp
8349 6458efa5 2020-11-24 stsp if (argc > 1)
8350 e99e2d15 2020-11-24 naddy usage_ref();
8351 0ae84acc 2022-06-15 tracey
8352 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
8353 0ae84acc 2022-06-15 tracey if (error != NULL)
8354 0ae84acc 2022-06-15 tracey goto done;
8355 6458efa5 2020-11-24 stsp
8356 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8357 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8358 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8359 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8360 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8361 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8362 c156c7a4 2020-12-18 stsp goto done;
8363 6458efa5 2020-11-24 stsp if (worktree)
8364 6458efa5 2020-11-24 stsp repo_path =
8365 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8366 6458efa5 2020-11-24 stsp else
8367 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8368 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8369 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8370 c156c7a4 2020-12-18 stsp goto done;
8371 c156c7a4 2020-12-18 stsp }
8372 6458efa5 2020-11-24 stsp }
8373 6458efa5 2020-11-24 stsp
8374 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8375 6458efa5 2020-11-24 stsp if (error != NULL)
8376 6458efa5 2020-11-24 stsp goto done;
8377 6458efa5 2020-11-24 stsp
8378 6458efa5 2020-11-24 stsp init_curses();
8379 6458efa5 2020-11-24 stsp
8380 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8381 51a10b52 2020-12-26 stsp if (error)
8382 51a10b52 2020-12-26 stsp goto done;
8383 51a10b52 2020-12-26 stsp
8384 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
8385 6458efa5 2020-11-24 stsp if (error)
8386 6458efa5 2020-11-24 stsp goto done;
8387 6458efa5 2020-11-24 stsp
8388 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8389 6458efa5 2020-11-24 stsp if (view == NULL) {
8390 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8391 6458efa5 2020-11-24 stsp goto done;
8392 6458efa5 2020-11-24 stsp }
8393 6458efa5 2020-11-24 stsp
8394 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8395 6458efa5 2020-11-24 stsp if (error)
8396 6458efa5 2020-11-24 stsp goto done;
8397 6458efa5 2020-11-24 stsp
8398 6458efa5 2020-11-24 stsp if (worktree) {
8399 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8400 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8401 6458efa5 2020-11-24 stsp worktree = NULL;
8402 6458efa5 2020-11-24 stsp }
8403 6458efa5 2020-11-24 stsp error = view_loop(view);
8404 6458efa5 2020-11-24 stsp done:
8405 6458efa5 2020-11-24 stsp free(repo_path);
8406 6458efa5 2020-11-24 stsp free(cwd);
8407 1d0f4054 2021-06-17 stsp if (repo) {
8408 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8409 1d0f4054 2021-06-17 stsp if (close_err)
8410 1d0f4054 2021-06-17 stsp error = close_err;
8411 1d0f4054 2021-06-17 stsp }
8412 0ae84acc 2022-06-15 tracey if (pack_fds) {
8413 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
8414 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
8415 0ae84acc 2022-06-15 tracey if (error == NULL)
8416 0ae84acc 2022-06-15 tracey error = pack_err;
8417 0ae84acc 2022-06-15 tracey }
8418 51a10b52 2020-12-26 stsp tog_free_refs();
8419 6458efa5 2020-11-24 stsp return error;
8420 6458efa5 2020-11-24 stsp }
8421 6458efa5 2020-11-24 stsp
8422 ec2a9698 2022-09-15 mark static const struct got_error*
8423 ec2a9698 2022-09-15 mark win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8424 ec2a9698 2022-09-15 mark const char *str)
8425 ec2a9698 2022-09-15 mark {
8426 ec2a9698 2022-09-15 mark size_t len;
8427 ec2a9698 2022-09-15 mark
8428 ec2a9698 2022-09-15 mark if (win == NULL)
8429 ec2a9698 2022-09-15 mark win = stdscr;
8430 ec2a9698 2022-09-15 mark
8431 ec2a9698 2022-09-15 mark len = strlen(str);
8432 ec2a9698 2022-09-15 mark x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8433 ec2a9698 2022-09-15 mark
8434 ec2a9698 2022-09-15 mark if (focus)
8435 ec2a9698 2022-09-15 mark wstandout(win);
8436 ec2a9698 2022-09-15 mark if (mvwprintw(win, y, x, "%s", str) == ERR)
8437 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
8438 ec2a9698 2022-09-15 mark if (focus)
8439 ec2a9698 2022-09-15 mark wstandend(win);
8440 ec2a9698 2022-09-15 mark
8441 ec2a9698 2022-09-15 mark return NULL;
8442 ec2a9698 2022-09-15 mark }
8443 ec2a9698 2022-09-15 mark
8444 136e2bd4 2022-07-23 mark static const struct got_error *
8445 ec2a9698 2022-09-15 mark add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
8446 ec2a9698 2022-09-15 mark {
8447 ec2a9698 2022-09-15 mark off_t *p;
8448 ec2a9698 2022-09-15 mark
8449 ec2a9698 2022-09-15 mark p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
8450 ec2a9698 2022-09-15 mark if (p == NULL) {
8451 ec2a9698 2022-09-15 mark free(*line_offsets);
8452 ec2a9698 2022-09-15 mark *line_offsets = NULL;
8453 ec2a9698 2022-09-15 mark return got_error_from_errno("reallocarray");
8454 ec2a9698 2022-09-15 mark }
8455 ec2a9698 2022-09-15 mark
8456 ec2a9698 2022-09-15 mark *line_offsets = p;
8457 ec2a9698 2022-09-15 mark (*line_offsets)[*nlines] = off;
8458 ec2a9698 2022-09-15 mark ++(*nlines);
8459 ec2a9698 2022-09-15 mark return NULL;
8460 ec2a9698 2022-09-15 mark }
8461 ec2a9698 2022-09-15 mark
8462 ec2a9698 2022-09-15 mark static const struct got_error *
8463 ec2a9698 2022-09-15 mark max_key_str(int *ret, const struct tog_key_map *km, size_t n)
8464 ec2a9698 2022-09-15 mark {
8465 ec2a9698 2022-09-15 mark *ret = 0;
8466 ec2a9698 2022-09-15 mark
8467 ec2a9698 2022-09-15 mark for (;n > 0; --n, ++km) {
8468 ec2a9698 2022-09-15 mark char *t0, *t, *k;
8469 ec2a9698 2022-09-15 mark size_t len = 1;
8470 ec2a9698 2022-09-15 mark
8471 ec2a9698 2022-09-15 mark if (km->keys == NULL)
8472 ec2a9698 2022-09-15 mark continue;
8473 ec2a9698 2022-09-15 mark
8474 ec2a9698 2022-09-15 mark t = t0 = strdup(km->keys);
8475 ec2a9698 2022-09-15 mark if (t0 == NULL)
8476 ec2a9698 2022-09-15 mark return got_error_from_errno("strdup");
8477 ec2a9698 2022-09-15 mark
8478 ec2a9698 2022-09-15 mark len += strlen(t);
8479 ec2a9698 2022-09-15 mark while ((k = strsep(&t, " ")) != NULL)
8480 ec2a9698 2022-09-15 mark len += strlen(k) > 1 ? 2 : 0;
8481 ec2a9698 2022-09-15 mark free(t0);
8482 ec2a9698 2022-09-15 mark *ret = MAX(*ret, len);
8483 ec2a9698 2022-09-15 mark }
8484 ec2a9698 2022-09-15 mark
8485 ec2a9698 2022-09-15 mark return NULL;
8486 ec2a9698 2022-09-15 mark }
8487 ec2a9698 2022-09-15 mark
8488 ec2a9698 2022-09-15 mark /*
8489 ec2a9698 2022-09-15 mark * Write keymap section headers, keys, and key info in km to f.
8490 ec2a9698 2022-09-15 mark * Save line offset to *off. If terminal has UTF8 encoding enabled,
8491 ec2a9698 2022-09-15 mark * wrap control and symbolic keys in guillemets, else use <>.
8492 ec2a9698 2022-09-15 mark */
8493 ec2a9698 2022-09-15 mark static const struct got_error *
8494 ec2a9698 2022-09-15 mark format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
8495 ec2a9698 2022-09-15 mark {
8496 ec2a9698 2022-09-15 mark int n, len = width;
8497 ec2a9698 2022-09-15 mark
8498 ec2a9698 2022-09-15 mark if (km->keys) {
8499 1681ba87 2022-09-18 mark static const char *u8_glyph[] = {
8500 1681ba87 2022-09-18 mark "\xe2\x80\xb9", /* U+2039 (utf8 <) */
8501 1681ba87 2022-09-18 mark "\xe2\x80\xba" /* U+203A (utf8 >) */
8502 1681ba87 2022-09-18 mark };
8503 ec2a9698 2022-09-15 mark char *t0, *t, *k;
8504 ec2a9698 2022-09-15 mark int cs, s, first = 1;
8505 ec2a9698 2022-09-15 mark
8506 ec2a9698 2022-09-15 mark cs = got_locale_is_utf8();
8507 ec2a9698 2022-09-15 mark
8508 ec2a9698 2022-09-15 mark t = t0 = strdup(km->keys);
8509 ec2a9698 2022-09-15 mark if (t0 == NULL)
8510 ec2a9698 2022-09-15 mark return got_error_from_errno("strdup");
8511 ec2a9698 2022-09-15 mark
8512 ec2a9698 2022-09-15 mark len = strlen(km->keys);
8513 ec2a9698 2022-09-15 mark while ((k = strsep(&t, " ")) != NULL) {
8514 ec2a9698 2022-09-15 mark s = strlen(k) > 1; /* control or symbolic key */
8515 ec2a9698 2022-09-15 mark n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
8516 1681ba87 2022-09-18 mark cs && s ? u8_glyph[0] : s ? "<" : "", k,
8517 1681ba87 2022-09-18 mark cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
8518 ec2a9698 2022-09-15 mark if (n < 0) {
8519 ec2a9698 2022-09-15 mark free(t0);
8520 ec2a9698 2022-09-15 mark return got_error_from_errno("fprintf");
8521 ec2a9698 2022-09-15 mark }
8522 ec2a9698 2022-09-15 mark first = 0;
8523 ec2a9698 2022-09-15 mark len += s ? 2 : 0;
8524 ec2a9698 2022-09-15 mark *off += n;
8525 ec2a9698 2022-09-15 mark }
8526 ec2a9698 2022-09-15 mark free(t0);
8527 ec2a9698 2022-09-15 mark }
8528 ec2a9698 2022-09-15 mark n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
8529 ec2a9698 2022-09-15 mark if (n < 0)
8530 ec2a9698 2022-09-15 mark return got_error_from_errno("fprintf");
8531 ec2a9698 2022-09-15 mark *off += n;
8532 ec2a9698 2022-09-15 mark
8533 ec2a9698 2022-09-15 mark return NULL;
8534 ec2a9698 2022-09-15 mark }
8535 ec2a9698 2022-09-15 mark
8536 ec2a9698 2022-09-15 mark static const struct got_error *
8537 ec2a9698 2022-09-15 mark format_help(struct tog_help_view_state *s)
8538 ec2a9698 2022-09-15 mark {
8539 ec2a9698 2022-09-15 mark const struct got_error *err = NULL;
8540 ec2a9698 2022-09-15 mark off_t off = 0;
8541 ec2a9698 2022-09-15 mark int i, max, n, show = s->all;
8542 ec2a9698 2022-09-15 mark static const struct tog_key_map km[] = {
8543 ec2a9698 2022-09-15 mark #define KEYMAP_(info, type) { NULL, (info), type }
8544 ec2a9698 2022-09-15 mark #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
8545 ec2a9698 2022-09-15 mark GENERATE_HELP
8546 ec2a9698 2022-09-15 mark #undef KEYMAP_
8547 ec2a9698 2022-09-15 mark #undef KEY_
8548 ec2a9698 2022-09-15 mark };
8549 ec2a9698 2022-09-15 mark
8550 ec2a9698 2022-09-15 mark err = add_line_offset(&s->line_offsets, &s->nlines, 0);
8551 ec2a9698 2022-09-15 mark if (err)
8552 ec2a9698 2022-09-15 mark return err;
8553 ec2a9698 2022-09-15 mark
8554 ec2a9698 2022-09-15 mark n = nitems(km);
8555 ec2a9698 2022-09-15 mark err = max_key_str(&max, km, n);
8556 ec2a9698 2022-09-15 mark if (err)
8557 ec2a9698 2022-09-15 mark return err;
8558 ec2a9698 2022-09-15 mark
8559 ec2a9698 2022-09-15 mark for (i = 0; i < n; ++i) {
8560 ec2a9698 2022-09-15 mark if (km[i].keys == NULL) {
8561 ec2a9698 2022-09-15 mark show = s->all;
8562 ec2a9698 2022-09-15 mark if (km[i].type == TOG_KEYMAP_GLOBAL ||
8563 ec2a9698 2022-09-15 mark km[i].type == s->type || s->all)
8564 ec2a9698 2022-09-15 mark show = 1;
8565 ec2a9698 2022-09-15 mark }
8566 ec2a9698 2022-09-15 mark if (show) {
8567 ec2a9698 2022-09-15 mark err = format_help_line(&off, s->f, &km[i], max);
8568 ec2a9698 2022-09-15 mark if (err)
8569 ec2a9698 2022-09-15 mark return err;
8570 ec2a9698 2022-09-15 mark err = add_line_offset(&s->line_offsets, &s->nlines, off);
8571 ec2a9698 2022-09-15 mark if (err)
8572 ec2a9698 2022-09-15 mark return err;
8573 ec2a9698 2022-09-15 mark }
8574 ec2a9698 2022-09-15 mark }
8575 ec2a9698 2022-09-15 mark fputc('\n', s->f);
8576 ec2a9698 2022-09-15 mark ++off;
8577 ec2a9698 2022-09-15 mark err = add_line_offset(&s->line_offsets, &s->nlines, off);
8578 ec2a9698 2022-09-15 mark return err;
8579 ec2a9698 2022-09-15 mark }
8580 ec2a9698 2022-09-15 mark
8581 ec2a9698 2022-09-15 mark static const struct got_error *
8582 ec2a9698 2022-09-15 mark create_help(struct tog_help_view_state *s)
8583 ec2a9698 2022-09-15 mark {
8584 ec2a9698 2022-09-15 mark FILE *f;
8585 ec2a9698 2022-09-15 mark const struct got_error *err;
8586 ec2a9698 2022-09-15 mark
8587 ec2a9698 2022-09-15 mark free(s->line_offsets);
8588 ec2a9698 2022-09-15 mark s->line_offsets = NULL;
8589 ec2a9698 2022-09-15 mark s->nlines = 0;
8590 ec2a9698 2022-09-15 mark
8591 ec2a9698 2022-09-15 mark f = got_opentemp();
8592 ec2a9698 2022-09-15 mark if (f == NULL)
8593 ec2a9698 2022-09-15 mark return got_error_from_errno("got_opentemp");
8594 ec2a9698 2022-09-15 mark s->f = f;
8595 ec2a9698 2022-09-15 mark
8596 ec2a9698 2022-09-15 mark err = format_help(s);
8597 ec2a9698 2022-09-15 mark if (err)
8598 ec2a9698 2022-09-15 mark return err;
8599 ec2a9698 2022-09-15 mark
8600 ec2a9698 2022-09-15 mark if (s->f && fflush(s->f) != 0)
8601 ec2a9698 2022-09-15 mark return got_error_from_errno("fflush");
8602 ec2a9698 2022-09-15 mark
8603 ec2a9698 2022-09-15 mark return NULL;
8604 ec2a9698 2022-09-15 mark }
8605 ec2a9698 2022-09-15 mark
8606 ec2a9698 2022-09-15 mark static const struct got_error *
8607 ec2a9698 2022-09-15 mark search_start_help_view(struct tog_view *view)
8608 ec2a9698 2022-09-15 mark {
8609 ec2a9698 2022-09-15 mark view->state.help.matched_line = 0;
8610 ec2a9698 2022-09-15 mark return NULL;
8611 ec2a9698 2022-09-15 mark }
8612 ec2a9698 2022-09-15 mark
8613 eaf2c13e 2022-09-17 mark static void
8614 eaf2c13e 2022-09-17 mark search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
8615 eaf2c13e 2022-09-17 mark size_t *nlines, int **first, int **last, int **match, int **selected)
8616 eaf2c13e 2022-09-17 mark {
8617 eaf2c13e 2022-09-17 mark struct tog_help_view_state *s = &view->state.help;
8618 eaf2c13e 2022-09-17 mark
8619 eaf2c13e 2022-09-17 mark *f = s->f;
8620 eaf2c13e 2022-09-17 mark *nlines = s->nlines;
8621 eaf2c13e 2022-09-17 mark *line_offsets = s->line_offsets;
8622 eaf2c13e 2022-09-17 mark *match = &s->matched_line;
8623 eaf2c13e 2022-09-17 mark *first = &s->first_displayed_line;
8624 eaf2c13e 2022-09-17 mark *last = &s->last_displayed_line;
8625 eaf2c13e 2022-09-17 mark *selected = &s->selected_line;
8626 eaf2c13e 2022-09-17 mark }
8627 eaf2c13e 2022-09-17 mark
8628 ec2a9698 2022-09-15 mark static const struct got_error *
8629 ec2a9698 2022-09-15 mark show_help_view(struct tog_view *view)
8630 ec2a9698 2022-09-15 mark {
8631 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8632 ec2a9698 2022-09-15 mark const struct got_error *err;
8633 ec2a9698 2022-09-15 mark regmatch_t *regmatch = &view->regmatch;
8634 ec2a9698 2022-09-15 mark wchar_t *wline;
8635 ec2a9698 2022-09-15 mark char *line;
8636 ec2a9698 2022-09-15 mark ssize_t linelen;
8637 ec2a9698 2022-09-15 mark size_t linesz = 0;
8638 ec2a9698 2022-09-15 mark int width, nprinted = 0, rc = 0;
8639 ec2a9698 2022-09-15 mark int eos = view->nlines;
8640 ec2a9698 2022-09-15 mark
8641 ec2a9698 2022-09-15 mark if (view_is_hsplit_top(view))
8642 ec2a9698 2022-09-15 mark --eos; /* account for border */
8643 ec2a9698 2022-09-15 mark
8644 ec2a9698 2022-09-15 mark s->lineno = 0;
8645 ec2a9698 2022-09-15 mark rewind(s->f);
8646 ec2a9698 2022-09-15 mark werase(view->window);
8647 ec2a9698 2022-09-15 mark
8648 ec2a9698 2022-09-15 mark if (view->gline > s->nlines - 1)
8649 ec2a9698 2022-09-15 mark view->gline = s->nlines - 1;
8650 ec2a9698 2022-09-15 mark
8651 ec2a9698 2022-09-15 mark err = win_draw_center(view->window, 0, 0, view->ncols,
8652 16a2d4f0 2022-09-19 stsp view_needs_focus_indication(view),
8653 12c07a25 2022-09-19 stsp "tog help (press q to return to tog)");
8654 ec2a9698 2022-09-15 mark if (err)
8655 ec2a9698 2022-09-15 mark return err;
8656 ec2a9698 2022-09-15 mark if (eos <= 1)
8657 ec2a9698 2022-09-15 mark return NULL;
8658 ec2a9698 2022-09-15 mark waddstr(view->window, "\n\n");
8659 ec2a9698 2022-09-15 mark eos -= 2;
8660 ec2a9698 2022-09-15 mark
8661 ec2a9698 2022-09-15 mark s->eof = 0;
8662 ec2a9698 2022-09-15 mark view->maxx = 0;
8663 ec2a9698 2022-09-15 mark line = NULL;
8664 ec2a9698 2022-09-15 mark while (eos > 0 && nprinted < eos) {
8665 ec2a9698 2022-09-15 mark attr_t attr = 0;
8666 ec2a9698 2022-09-15 mark
8667 ec2a9698 2022-09-15 mark linelen = getline(&line, &linesz, s->f);
8668 ec2a9698 2022-09-15 mark if (linelen == -1) {
8669 ec2a9698 2022-09-15 mark if (!feof(s->f)) {
8670 ec2a9698 2022-09-15 mark free(line);
8671 ec2a9698 2022-09-15 mark return got_ferror(s->f, GOT_ERR_IO);
8672 ec2a9698 2022-09-15 mark }
8673 ec2a9698 2022-09-15 mark s->eof = 1;
8674 ec2a9698 2022-09-15 mark break;
8675 ec2a9698 2022-09-15 mark }
8676 ec2a9698 2022-09-15 mark if (++s->lineno < s->first_displayed_line)
8677 ec2a9698 2022-09-15 mark continue;
8678 ec2a9698 2022-09-15 mark if (view->gline && !gotoline(view, &s->lineno, &nprinted))
8679 ec2a9698 2022-09-15 mark continue;
8680 ec2a9698 2022-09-15 mark if (s->lineno == view->hiline)
8681 ec2a9698 2022-09-15 mark attr = A_STANDOUT;
8682 ec2a9698 2022-09-15 mark
8683 ec2a9698 2022-09-15 mark err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
8684 ec2a9698 2022-09-15 mark view->x ? 1 : 0);
8685 ec2a9698 2022-09-15 mark if (err) {
8686 ec2a9698 2022-09-15 mark free(line);
8687 ec2a9698 2022-09-15 mark return err;
8688 ec2a9698 2022-09-15 mark }
8689 ec2a9698 2022-09-15 mark view->maxx = MAX(view->maxx, width);
8690 ec2a9698 2022-09-15 mark free(wline);
8691 ec2a9698 2022-09-15 mark wline = NULL;
8692 ec2a9698 2022-09-15 mark
8693 ec2a9698 2022-09-15 mark if (attr)
8694 ec2a9698 2022-09-15 mark wattron(view->window, attr);
8695 ec2a9698 2022-09-15 mark if (s->first_displayed_line + nprinted == s->matched_line &&
8696 ec2a9698 2022-09-15 mark regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
8697 ec2a9698 2022-09-15 mark err = add_matched_line(&width, line, view->ncols - 1, 0,
8698 ec2a9698 2022-09-15 mark view->window, view->x, regmatch);
8699 ec2a9698 2022-09-15 mark if (err) {
8700 ec2a9698 2022-09-15 mark free(line);
8701 ec2a9698 2022-09-15 mark return err;
8702 ec2a9698 2022-09-15 mark }
8703 ec2a9698 2022-09-15 mark } else {
8704 ec2a9698 2022-09-15 mark int skip;
8705 ec2a9698 2022-09-15 mark
8706 ec2a9698 2022-09-15 mark err = format_line(&wline, &width, &skip, line,
8707 ec2a9698 2022-09-15 mark view->x, view->ncols - 1, 0, view->x ? 1 : 0);
8708 ec2a9698 2022-09-15 mark if (err) {
8709 ec2a9698 2022-09-15 mark free(line);
8710 ec2a9698 2022-09-15 mark return err;
8711 ec2a9698 2022-09-15 mark }
8712 ec2a9698 2022-09-15 mark rc = waddwstr(view->window, &wline[skip]);
8713 ec2a9698 2022-09-15 mark free(wline);
8714 ec2a9698 2022-09-15 mark wline = NULL;
8715 ec2a9698 2022-09-15 mark if (rc == ERR)
8716 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_IO, "waddwstr");
8717 ec2a9698 2022-09-15 mark }
8718 ec2a9698 2022-09-15 mark if (s->lineno == view->hiline) {
8719 ec2a9698 2022-09-15 mark while (width++ < view->ncols)
8720 ec2a9698 2022-09-15 mark waddch(view->window, ' ');
8721 ec2a9698 2022-09-15 mark } else {
8722 ec2a9698 2022-09-15 mark if (width <= view->ncols)
8723 ec2a9698 2022-09-15 mark waddch(view->window, '\n');
8724 ec2a9698 2022-09-15 mark }
8725 ec2a9698 2022-09-15 mark if (attr)
8726 ec2a9698 2022-09-15 mark wattroff(view->window, attr);
8727 ec2a9698 2022-09-15 mark if (++nprinted == 1)
8728 ec2a9698 2022-09-15 mark s->first_displayed_line = s->lineno;
8729 ec2a9698 2022-09-15 mark }
8730 ec2a9698 2022-09-15 mark free(line);
8731 ec2a9698 2022-09-15 mark if (nprinted > 0)
8732 ec2a9698 2022-09-15 mark s->last_displayed_line = s->first_displayed_line + nprinted - 1;
8733 ec2a9698 2022-09-15 mark else
8734 ec2a9698 2022-09-15 mark s->last_displayed_line = s->first_displayed_line;
8735 ec2a9698 2022-09-15 mark
8736 ec2a9698 2022-09-15 mark view_border(view);
8737 ec2a9698 2022-09-15 mark
8738 ec2a9698 2022-09-15 mark if (s->eof) {
8739 ec2a9698 2022-09-15 mark rc = waddnstr(view->window,
8740 ec2a9698 2022-09-15 mark "See the tog(1) manual page for full documentation",
8741 ec2a9698 2022-09-15 mark view->ncols - 1);
8742 ec2a9698 2022-09-15 mark if (rc == ERR)
8743 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8744 ec2a9698 2022-09-15 mark } else {
8745 ec2a9698 2022-09-15 mark wmove(view->window, view->nlines - 1, 0);
8746 ec2a9698 2022-09-15 mark wclrtoeol(view->window);
8747 ec2a9698 2022-09-15 mark wstandout(view->window);
8748 ec2a9698 2022-09-15 mark rc = waddnstr(view->window, "scroll down for more...",
8749 ec2a9698 2022-09-15 mark view->ncols - 1);
8750 ec2a9698 2022-09-15 mark if (rc == ERR)
8751 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8752 ec2a9698 2022-09-15 mark if (getcurx(view->window) < view->ncols - 6) {
8753 ec2a9698 2022-09-15 mark rc = wprintw(view->window, "[%.0f%%]",
8754 ec2a9698 2022-09-15 mark 100.00 * s->last_displayed_line / s->nlines);
8755 ec2a9698 2022-09-15 mark if (rc == ERR)
8756 ec2a9698 2022-09-15 mark return got_error_msg(GOT_ERR_IO, "wprintw");
8757 ec2a9698 2022-09-15 mark }
8758 ec2a9698 2022-09-15 mark wstandend(view->window);
8759 ec2a9698 2022-09-15 mark }
8760 ec2a9698 2022-09-15 mark
8761 ec2a9698 2022-09-15 mark return NULL;
8762 ec2a9698 2022-09-15 mark }
8763 ec2a9698 2022-09-15 mark
8764 ec2a9698 2022-09-15 mark static const struct got_error *
8765 ec2a9698 2022-09-15 mark input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
8766 ec2a9698 2022-09-15 mark {
8767 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8768 ec2a9698 2022-09-15 mark const struct got_error *err = NULL;
8769 ec2a9698 2022-09-15 mark char *line = NULL;
8770 ec2a9698 2022-09-15 mark ssize_t linelen;
8771 ec2a9698 2022-09-15 mark size_t linesz = 0;
8772 ec2a9698 2022-09-15 mark int eos, nscroll;
8773 ec2a9698 2022-09-15 mark
8774 ec2a9698 2022-09-15 mark eos = nscroll = view->nlines;
8775 ec2a9698 2022-09-15 mark if (view_is_hsplit_top(view))
8776 ec2a9698 2022-09-15 mark --eos; /* border */
8777 ec2a9698 2022-09-15 mark
8778 ec2a9698 2022-09-15 mark s->lineno = s->first_displayed_line - 1 + s->selected_line;
8779 ec2a9698 2022-09-15 mark
8780 ec2a9698 2022-09-15 mark switch (ch) {
8781 ec2a9698 2022-09-15 mark case '0':
8782 ec2a9698 2022-09-15 mark view->x = 0;
8783 ec2a9698 2022-09-15 mark break;
8784 ec2a9698 2022-09-15 mark case '$':
8785 ec2a9698 2022-09-15 mark view->x = MAX(view->maxx - view->ncols / 3, 0);
8786 ec2a9698 2022-09-15 mark view->count = 0;
8787 ec2a9698 2022-09-15 mark break;
8788 ec2a9698 2022-09-15 mark case KEY_RIGHT:
8789 ec2a9698 2022-09-15 mark case 'l':
8790 ec2a9698 2022-09-15 mark if (view->x + view->ncols / 3 < view->maxx)
8791 ec2a9698 2022-09-15 mark view->x += 2;
8792 ec2a9698 2022-09-15 mark else
8793 ec2a9698 2022-09-15 mark view->count = 0;
8794 ec2a9698 2022-09-15 mark break;
8795 ec2a9698 2022-09-15 mark case KEY_LEFT:
8796 ec2a9698 2022-09-15 mark case 'h':
8797 ec2a9698 2022-09-15 mark view->x -= MIN(view->x, 2);
8798 ec2a9698 2022-09-15 mark if (view->x <= 0)
8799 ec2a9698 2022-09-15 mark view->count = 0;
8800 ec2a9698 2022-09-15 mark break;
8801 ec2a9698 2022-09-15 mark case 'g':
8802 ec2a9698 2022-09-15 mark case KEY_HOME:
8803 ec2a9698 2022-09-15 mark s->first_displayed_line = 1;
8804 ec2a9698 2022-09-15 mark view->count = 0;
8805 ec2a9698 2022-09-15 mark break;
8806 ec2a9698 2022-09-15 mark case 'G':
8807 ec2a9698 2022-09-15 mark case KEY_END:
8808 ec2a9698 2022-09-15 mark view->count = 0;
8809 ec2a9698 2022-09-15 mark if (s->eof)
8810 ec2a9698 2022-09-15 mark break;
8811 ec2a9698 2022-09-15 mark s->first_displayed_line = (s->nlines - eos) + 3;
8812 ec2a9698 2022-09-15 mark s->eof = 1;
8813 ec2a9698 2022-09-15 mark break;
8814 ec2a9698 2022-09-15 mark case 'k':
8815 ec2a9698 2022-09-15 mark case KEY_UP:
8816 ec2a9698 2022-09-15 mark if (s->first_displayed_line > 1)
8817 ec2a9698 2022-09-15 mark --s->first_displayed_line;
8818 ec2a9698 2022-09-15 mark else
8819 ec2a9698 2022-09-15 mark view->count = 0;
8820 ec2a9698 2022-09-15 mark break;
8821 ec2a9698 2022-09-15 mark case CTRL('u'):
8822 ec2a9698 2022-09-15 mark case 'u':
8823 ec2a9698 2022-09-15 mark nscroll /= 2;
8824 ec2a9698 2022-09-15 mark /* FALL THROUGH */
8825 ec2a9698 2022-09-15 mark case KEY_PPAGE:
8826 ec2a9698 2022-09-15 mark case CTRL('b'):
8827 ec2a9698 2022-09-15 mark case 'b':
8828 ec2a9698 2022-09-15 mark if (s->first_displayed_line == 1) {
8829 ec2a9698 2022-09-15 mark view->count = 0;
8830 ec2a9698 2022-09-15 mark break;
8831 ec2a9698 2022-09-15 mark }
8832 ec2a9698 2022-09-15 mark while (--nscroll > 0 && s->first_displayed_line > 1)
8833 ec2a9698 2022-09-15 mark s->first_displayed_line--;
8834 ec2a9698 2022-09-15 mark break;
8835 ec2a9698 2022-09-15 mark case 'j':
8836 ec2a9698 2022-09-15 mark case KEY_DOWN:
8837 ec2a9698 2022-09-15 mark case CTRL('n'):
8838 ec2a9698 2022-09-15 mark if (!s->eof)
8839 ec2a9698 2022-09-15 mark ++s->first_displayed_line;
8840 ec2a9698 2022-09-15 mark else
8841 ec2a9698 2022-09-15 mark view->count = 0;
8842 ec2a9698 2022-09-15 mark break;
8843 ec2a9698 2022-09-15 mark case CTRL('d'):
8844 ec2a9698 2022-09-15 mark case 'd':
8845 ec2a9698 2022-09-15 mark nscroll /= 2;
8846 ec2a9698 2022-09-15 mark /* FALL THROUGH */
8847 ec2a9698 2022-09-15 mark case KEY_NPAGE:
8848 ec2a9698 2022-09-15 mark case CTRL('f'):
8849 ec2a9698 2022-09-15 mark case 'f':
8850 ec2a9698 2022-09-15 mark case ' ':
8851 ec2a9698 2022-09-15 mark if (s->eof) {
8852 ec2a9698 2022-09-15 mark view->count = 0;
8853 ec2a9698 2022-09-15 mark break;
8854 ec2a9698 2022-09-15 mark }
8855 ec2a9698 2022-09-15 mark while (!s->eof && --nscroll > 0) {
8856 ec2a9698 2022-09-15 mark linelen = getline(&line, &linesz, s->f);
8857 ec2a9698 2022-09-15 mark s->first_displayed_line++;
8858 ec2a9698 2022-09-15 mark if (linelen == -1) {
8859 ec2a9698 2022-09-15 mark if (feof(s->f))
8860 ec2a9698 2022-09-15 mark s->eof = 1;
8861 ec2a9698 2022-09-15 mark else
8862 ec2a9698 2022-09-15 mark err = got_ferror(s->f, GOT_ERR_IO);
8863 ec2a9698 2022-09-15 mark break;
8864 ec2a9698 2022-09-15 mark }
8865 ec2a9698 2022-09-15 mark }
8866 ec2a9698 2022-09-15 mark free(line);
8867 ec2a9698 2022-09-15 mark break;
8868 ec2a9698 2022-09-15 mark default:
8869 ec2a9698 2022-09-15 mark view->count = 0;
8870 ec2a9698 2022-09-15 mark break;
8871 ec2a9698 2022-09-15 mark }
8872 ec2a9698 2022-09-15 mark
8873 ec2a9698 2022-09-15 mark return err;
8874 ec2a9698 2022-09-15 mark }
8875 ec2a9698 2022-09-15 mark
8876 ec2a9698 2022-09-15 mark static const struct got_error *
8877 ec2a9698 2022-09-15 mark close_help_view(struct tog_view *view)
8878 ec2a9698 2022-09-15 mark {
8879 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8880 ec2a9698 2022-09-15 mark
8881 ec2a9698 2022-09-15 mark free(s->line_offsets);
8882 ec2a9698 2022-09-15 mark s->line_offsets = NULL;
8883 ec2a9698 2022-09-15 mark if (fclose(s->f) == EOF)
8884 ec2a9698 2022-09-15 mark return got_error_from_errno("fclose");
8885 ec2a9698 2022-09-15 mark
8886 ec2a9698 2022-09-15 mark return NULL;
8887 ec2a9698 2022-09-15 mark }
8888 ec2a9698 2022-09-15 mark
8889 ec2a9698 2022-09-15 mark static const struct got_error *
8890 ec2a9698 2022-09-15 mark reset_help_view(struct tog_view *view)
8891 ec2a9698 2022-09-15 mark {
8892 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8893 ec2a9698 2022-09-15 mark
8894 ec2a9698 2022-09-15 mark
8895 ec2a9698 2022-09-15 mark if (s->f && fclose(s->f) == EOF)
8896 ec2a9698 2022-09-15 mark return got_error_from_errno("fclose");
8897 ec2a9698 2022-09-15 mark
8898 ec2a9698 2022-09-15 mark wclear(view->window);
8899 ec2a9698 2022-09-15 mark view->count = 0;
8900 ec2a9698 2022-09-15 mark view->x = 0;
8901 ec2a9698 2022-09-15 mark s->all = !s->all;
8902 ec2a9698 2022-09-15 mark s->first_displayed_line = 1;
8903 ec2a9698 2022-09-15 mark s->last_displayed_line = view->nlines;
8904 ec2a9698 2022-09-15 mark s->matched_line = 0;
8905 ec2a9698 2022-09-15 mark
8906 ec2a9698 2022-09-15 mark return create_help(s);
8907 ec2a9698 2022-09-15 mark }
8908 ec2a9698 2022-09-15 mark
8909 ec2a9698 2022-09-15 mark static const struct got_error *
8910 ec2a9698 2022-09-15 mark open_help_view(struct tog_view *view, struct tog_view *parent)
8911 ec2a9698 2022-09-15 mark {
8912 ec2a9698 2022-09-15 mark const struct got_error *err = NULL;
8913 ec2a9698 2022-09-15 mark struct tog_help_view_state *s = &view->state.help;
8914 ec2a9698 2022-09-15 mark
8915 ec2a9698 2022-09-15 mark s->type = (enum tog_keymap_type)parent->type;
8916 ec2a9698 2022-09-15 mark s->first_displayed_line = 1;
8917 ec2a9698 2022-09-15 mark s->last_displayed_line = view->nlines;
8918 ec2a9698 2022-09-15 mark s->selected_line = 1;
8919 ec2a9698 2022-09-15 mark
8920 ec2a9698 2022-09-15 mark view->show = show_help_view;
8921 ec2a9698 2022-09-15 mark view->input = input_help_view;
8922 ec2a9698 2022-09-15 mark view->reset = reset_help_view;
8923 ec2a9698 2022-09-15 mark view->close = close_help_view;
8924 ec2a9698 2022-09-15 mark view->search_start = search_start_help_view;
8925 eaf2c13e 2022-09-17 mark view->search_setup = search_setup_help_view;
8926 ec2a9698 2022-09-15 mark view->search_next = search_next_view_match;
8927 ec2a9698 2022-09-15 mark
8928 ec2a9698 2022-09-15 mark err = create_help(s);
8929 ec2a9698 2022-09-15 mark return err;
8930 ec2a9698 2022-09-15 mark }
8931 ec2a9698 2022-09-15 mark
8932 ec2a9698 2022-09-15 mark static const struct got_error *
8933 136e2bd4 2022-07-23 mark view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8934 136e2bd4 2022-07-23 mark enum tog_view_type request, int y, int x)
8935 136e2bd4 2022-07-23 mark {
8936 136e2bd4 2022-07-23 mark const struct got_error *err = NULL;
8937 136e2bd4 2022-07-23 mark
8938 136e2bd4 2022-07-23 mark *new_view = NULL;
8939 136e2bd4 2022-07-23 mark
8940 136e2bd4 2022-07-23 mark switch (request) {
8941 136e2bd4 2022-07-23 mark case TOG_VIEW_DIFF:
8942 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG) {
8943 136e2bd4 2022-07-23 mark struct tog_log_view_state *s = &view->state.log;
8944 136e2bd4 2022-07-23 mark
8945 136e2bd4 2022-07-23 mark err = open_diff_view_for_commit(new_view, y, x,
8946 136e2bd4 2022-07-23 mark s->selected_entry->commit, s->selected_entry->id,
8947 136e2bd4 2022-07-23 mark view, s->repo);
8948 136e2bd4 2022-07-23 mark } else
8949 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8950 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8951 136e2bd4 2022-07-23 mark break;
8952 136e2bd4 2022-07-23 mark case TOG_VIEW_BLAME:
8953 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_TREE) {
8954 136e2bd4 2022-07-23 mark struct tog_tree_view_state *s = &view->state.tree;
8955 136e2bd4 2022-07-23 mark
8956 136e2bd4 2022-07-23 mark err = blame_tree_entry(new_view, y, x,
8957 136e2bd4 2022-07-23 mark s->selected_entry, &s->parents, s->commit_id,
8958 136e2bd4 2022-07-23 mark s->repo);
8959 136e2bd4 2022-07-23 mark } else
8960 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8961 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8962 136e2bd4 2022-07-23 mark break;
8963 136e2bd4 2022-07-23 mark case TOG_VIEW_LOG:
8964 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_BLAME)
8965 136e2bd4 2022-07-23 mark err = log_annotated_line(new_view, y, x,
8966 136e2bd4 2022-07-23 mark view->state.blame.repo, view->state.blame.id_to_log);
8967 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
8968 136e2bd4 2022-07-23 mark err = log_selected_tree_entry(new_view, y, x,
8969 136e2bd4 2022-07-23 mark &view->state.tree);
8970 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8971 136e2bd4 2022-07-23 mark err = log_ref_entry(new_view, y, x,
8972 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8973 136e2bd4 2022-07-23 mark view->state.ref.repo);
8974 136e2bd4 2022-07-23 mark else
8975 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8976 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8977 136e2bd4 2022-07-23 mark break;
8978 136e2bd4 2022-07-23 mark case TOG_VIEW_TREE:
8979 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8980 136e2bd4 2022-07-23 mark err = browse_commit_tree(new_view, y, x,
8981 136e2bd4 2022-07-23 mark view->state.log.selected_entry,
8982 136e2bd4 2022-07-23 mark view->state.log.in_repo_path,
8983 136e2bd4 2022-07-23 mark view->state.log.head_ref_name,
8984 136e2bd4 2022-07-23 mark view->state.log.repo);
8985 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_REF)
8986 136e2bd4 2022-07-23 mark err = browse_ref_tree(new_view, y, x,
8987 136e2bd4 2022-07-23 mark view->state.ref.selected_entry,
8988 136e2bd4 2022-07-23 mark view->state.ref.repo);
8989 136e2bd4 2022-07-23 mark else
8990 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL,
8991 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
8992 136e2bd4 2022-07-23 mark break;
8993 136e2bd4 2022-07-23 mark case TOG_VIEW_REF:
8994 136e2bd4 2022-07-23 mark *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
8995 136e2bd4 2022-07-23 mark if (*new_view == NULL)
8996 136e2bd4 2022-07-23 mark return got_error_from_errno("view_open");
8997 136e2bd4 2022-07-23 mark if (view->type == TOG_VIEW_LOG)
8998 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.log.repo);
8999 136e2bd4 2022-07-23 mark else if (view->type == TOG_VIEW_TREE)
9000 136e2bd4 2022-07-23 mark err = open_ref_view(*new_view, view->state.tree.repo);
9001 136e2bd4 2022-07-23 mark else
9002 136e2bd4 2022-07-23 mark err = got_error_msg(GOT_ERR_NOT_IMPL,
9003 136e2bd4 2022-07-23 mark "parent/child view pair not supported");
9004 136e2bd4 2022-07-23 mark if (err)
9005 136e2bd4 2022-07-23 mark view_close(*new_view);
9006 136e2bd4 2022-07-23 mark break;
9007 ec2a9698 2022-09-15 mark case TOG_VIEW_HELP:
9008 94274a8f 2022-09-19 mark *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9009 ec2a9698 2022-09-15 mark if (*new_view == NULL)
9010 ec2a9698 2022-09-15 mark return got_error_from_errno("view_open");
9011 ec2a9698 2022-09-15 mark err = open_help_view(*new_view, view);
9012 ec2a9698 2022-09-15 mark if (err)
9013 ec2a9698 2022-09-15 mark view_close(*new_view);
9014 ec2a9698 2022-09-15 mark break;
9015 136e2bd4 2022-07-23 mark default:
9016 136e2bd4 2022-07-23 mark return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9017 136e2bd4 2022-07-23 mark }
9018 136e2bd4 2022-07-23 mark
9019 136e2bd4 2022-07-23 mark return err;
9020 136e2bd4 2022-07-23 mark }
9021 136e2bd4 2022-07-23 mark
9022 9b058f45 2022-06-30 mark /*
9023 9b058f45 2022-06-30 mark * If view was scrolled down to move the selected line into view when opening a
9024 9b058f45 2022-06-30 mark * horizontal split, scroll back up when closing the split/toggling fullscreen.
9025 9b058f45 2022-06-30 mark */
9026 6458efa5 2020-11-24 stsp static void
9027 9b058f45 2022-06-30 mark offset_selection_up(struct tog_view *view)
9028 9b058f45 2022-06-30 mark {
9029 9b058f45 2022-06-30 mark switch (view->type) {
9030 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
9031 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
9032 9b058f45 2022-06-30 mark if (s->first_displayed_line == 1) {
9033 9b058f45 2022-06-30 mark s->selected_line = MAX(s->selected_line - view->offset,
9034 9b058f45 2022-06-30 mark 1);
9035 9b058f45 2022-06-30 mark break;
9036 9b058f45 2022-06-30 mark }
9037 9b058f45 2022-06-30 mark if (s->first_displayed_line > view->offset)
9038 9b058f45 2022-06-30 mark s->first_displayed_line -= view->offset;
9039 9b058f45 2022-06-30 mark else
9040 9b058f45 2022-06-30 mark s->first_displayed_line = 1;
9041 9b058f45 2022-06-30 mark s->selected_line += view->offset;
9042 9b058f45 2022-06-30 mark break;
9043 9b058f45 2022-06-30 mark }
9044 9b058f45 2022-06-30 mark case TOG_VIEW_LOG:
9045 9b058f45 2022-06-30 mark log_scroll_up(&view->state.log, view->offset);
9046 9b058f45 2022-06-30 mark view->state.log.selected += view->offset;
9047 9b058f45 2022-06-30 mark break;
9048 9b058f45 2022-06-30 mark case TOG_VIEW_REF:
9049 9b058f45 2022-06-30 mark ref_scroll_up(&view->state.ref, view->offset);
9050 9b058f45 2022-06-30 mark view->state.ref.selected += view->offset;
9051 9b058f45 2022-06-30 mark break;
9052 9b058f45 2022-06-30 mark case TOG_VIEW_TREE:
9053 9b058f45 2022-06-30 mark tree_scroll_up(&view->state.tree, view->offset);
9054 9b058f45 2022-06-30 mark view->state.tree.selected += view->offset;
9055 9b058f45 2022-06-30 mark break;
9056 9b058f45 2022-06-30 mark default:
9057 9b058f45 2022-06-30 mark break;
9058 9b058f45 2022-06-30 mark }
9059 9b058f45 2022-06-30 mark
9060 9b058f45 2022-06-30 mark view->offset = 0;
9061 9b058f45 2022-06-30 mark }
9062 9b058f45 2022-06-30 mark
9063 9b058f45 2022-06-30 mark /*
9064 9b058f45 2022-06-30 mark * If the selected line is in the section of screen covered by the bottom split,
9065 9b058f45 2022-06-30 mark * scroll down offset lines to move it into view and index its new position.
9066 9b058f45 2022-06-30 mark */
9067 9b058f45 2022-06-30 mark static const struct got_error *
9068 9b058f45 2022-06-30 mark offset_selection_down(struct tog_view *view)
9069 9b058f45 2022-06-30 mark {
9070 9b058f45 2022-06-30 mark const struct got_error *err = NULL;
9071 9b058f45 2022-06-30 mark const struct got_error *(*scrolld)(struct tog_view *, int);
9072 9b058f45 2022-06-30 mark int *selected = NULL;
9073 9b058f45 2022-06-30 mark int header, offset;
9074 9b058f45 2022-06-30 mark
9075 9b058f45 2022-06-30 mark switch (view->type) {
9076 9b058f45 2022-06-30 mark case TOG_VIEW_BLAME: {
9077 9b058f45 2022-06-30 mark struct tog_blame_view_state *s = &view->state.blame;
9078 9b058f45 2022-06-30 mark header = 3;
9079 9b058f45 2022-06-30 mark scrolld = NULL;
9080 9b058f45 2022-06-30 mark if (s->selected_line > view->nlines - header) {
9081 9b058f45 2022-06-30 mark offset = abs(view->nlines - s->selected_line - header);
9082 9b058f45 2022-06-30 mark s->first_displayed_line += offset;
9083 9b058f45 2022-06-30 mark s->selected_line -= offset;
9084 9b058f45 2022-06-30 mark view->offset = offset;
9085 9b058f45 2022-06-30 mark }
9086 9b058f45 2022-06-30 mark break;
9087 9b058f45 2022-06-30 mark }
9088 9b058f45 2022-06-30 mark case TOG_VIEW_LOG: {
9089 9b058f45 2022-06-30 mark struct tog_log_view_state *s = &view->state.log;
9090 9b058f45 2022-06-30 mark scrolld = &log_scroll_down;
9091 d2366e29 2022-07-07 mark header = view_is_parent_view(view) ? 3 : 2;
9092 9b058f45 2022-06-30 mark selected = &s->selected;
9093 9b058f45 2022-06-30 mark break;
9094 9b058f45 2022-06-30 mark }
9095 9b058f45 2022-06-30 mark case TOG_VIEW_REF: {
9096 9b058f45 2022-06-30 mark struct tog_ref_view_state *s = &view->state.ref;
9097 9b058f45 2022-06-30 mark scrolld = &ref_scroll_down;
9098 9b058f45 2022-06-30 mark header = 3;
9099 9b058f45 2022-06-30 mark selected = &s->selected;
9100 9b058f45 2022-06-30 mark break;
9101 9b058f45 2022-06-30 mark }
9102 9b058f45 2022-06-30 mark case TOG_VIEW_TREE: {
9103 9b058f45 2022-06-30 mark struct tog_tree_view_state *s = &view->state.tree;
9104 9b058f45 2022-06-30 mark scrolld = &tree_scroll_down;
9105 9b058f45 2022-06-30 mark header = 5;
9106 9b058f45 2022-06-30 mark selected = &s->selected;
9107 9b058f45 2022-06-30 mark break;
9108 9b058f45 2022-06-30 mark }
9109 9b058f45 2022-06-30 mark default:
9110 9b058f45 2022-06-30 mark selected = NULL;
9111 9b058f45 2022-06-30 mark scrolld = NULL;
9112 9b058f45 2022-06-30 mark header = 0;
9113 9b058f45 2022-06-30 mark break;
9114 9b058f45 2022-06-30 mark }
9115 9b058f45 2022-06-30 mark
9116 9b058f45 2022-06-30 mark if (selected && *selected > view->nlines - header) {
9117 9b058f45 2022-06-30 mark offset = abs(view->nlines - *selected - header);
9118 9b058f45 2022-06-30 mark view->offset = offset;
9119 9b058f45 2022-06-30 mark if (scrolld && offset) {
9120 9b058f45 2022-06-30 mark err = scrolld(view, offset);
9121 9b058f45 2022-06-30 mark *selected -= offset;
9122 9b058f45 2022-06-30 mark }
9123 9b058f45 2022-06-30 mark }
9124 9b058f45 2022-06-30 mark
9125 9b058f45 2022-06-30 mark return err;
9126 9b058f45 2022-06-30 mark }
9127 9b058f45 2022-06-30 mark
9128 9b058f45 2022-06-30 mark static void
9129 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
9130 ce5b7c56 2019-07-09 stsp {
9131 6059809a 2020-12-17 stsp size_t i;
9132 9f7d7167 2018-04-29 stsp
9133 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
9134 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
9135 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = &tog_commands[i];
9136 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
9137 ce5b7c56 2019-07-09 stsp }
9138 6879ba42 2020-10-01 naddy fputc('\n', fp);
9139 ce5b7c56 2019-07-09 stsp }
9140 ce5b7c56 2019-07-09 stsp
9141 4ed7e80c 2018-05-20 stsp __dead static void
9142 6879ba42 2020-10-01 naddy usage(int hflag, int status)
9143 9f7d7167 2018-04-29 stsp {
9144 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
9145 6879ba42 2020-10-01 naddy
9146 6a0a1bd4 2022-10-04 op fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9147 6879ba42 2020-10-01 naddy getprogname());
9148 6879ba42 2020-10-01 naddy if (hflag) {
9149 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
9150 6879ba42 2020-10-01 naddy list_commands(fp);
9151 ee85c5e8 2020-02-29 stsp }
9152 6879ba42 2020-10-01 naddy exit(status);
9153 9f7d7167 2018-04-29 stsp }
9154 9f7d7167 2018-04-29 stsp
9155 c2301be8 2018-04-30 stsp static char **
9156 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
9157 c2301be8 2018-04-30 stsp {
9158 ee85c5e8 2020-02-29 stsp va_list ap;
9159 c2301be8 2018-04-30 stsp char **argv;
9160 ee85c5e8 2020-02-29 stsp int i;
9161 c2301be8 2018-04-30 stsp
9162 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
9163 ee85c5e8 2020-02-29 stsp
9164 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
9165 c2301be8 2018-04-30 stsp if (argv == NULL)
9166 c2301be8 2018-04-30 stsp err(1, "calloc");
9167 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
9168 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
9169 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
9170 e10c916e 2019-09-15 hiltjo err(1, "strdup");
9171 c2301be8 2018-04-30 stsp }
9172 c2301be8 2018-04-30 stsp
9173 ee85c5e8 2020-02-29 stsp va_end(ap);
9174 c2301be8 2018-04-30 stsp return argv;
9175 ee85c5e8 2020-02-29 stsp }
9176 ee85c5e8 2020-02-29 stsp
9177 ee85c5e8 2020-02-29 stsp /*
9178 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
9179 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
9180 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
9181 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
9182 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
9183 ee85c5e8 2020-02-29 stsp */
9184 ee85c5e8 2020-02-29 stsp static const struct got_error *
9185 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
9186 ee85c5e8 2020-02-29 stsp {
9187 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
9188 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
9189 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
9190 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
9191 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
9192 a44927cc 2022-04-07 stsp struct got_commit_object *commit = NULL;
9193 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9194 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
9195 0ae84acc 2022-06-15 tracey int *pack_fds = NULL;
9196 84de9106 2020-12-26 stsp
9197 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
9198 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
9199 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
9200 ee85c5e8 2020-02-29 stsp
9201 0ae84acc 2022-06-15 tracey error = got_repo_pack_fds_open(&pack_fds);
9202 0ae84acc 2022-06-15 tracey if (error != NULL)
9203 0ae84acc 2022-06-15 tracey goto done;
9204 0ae84acc 2022-06-15 tracey
9205 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
9206 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
9207 ee85c5e8 2020-02-29 stsp goto done;
9208 ee85c5e8 2020-02-29 stsp
9209 ee85c5e8 2020-02-29 stsp if (worktree)
9210 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
9211 ee85c5e8 2020-02-29 stsp else
9212 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
9213 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
9214 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
9215 ee85c5e8 2020-02-29 stsp goto done;
9216 ee85c5e8 2020-02-29 stsp }
9217 ee85c5e8 2020-02-29 stsp
9218 0ae84acc 2022-06-15 tracey error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9219 ee85c5e8 2020-02-29 stsp if (error != NULL)
9220 ee85c5e8 2020-02-29 stsp goto done;
9221 ee85c5e8 2020-02-29 stsp
9222 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9223 ee85c5e8 2020-02-29 stsp repo, worktree);
9224 ee85c5e8 2020-02-29 stsp if (error)
9225 ee85c5e8 2020-02-29 stsp goto done;
9226 ee85c5e8 2020-02-29 stsp
9227 7f66531d 2021-11-16 stsp error = tog_load_refs(repo, 0);
9228 84de9106 2020-12-26 stsp if (error)
9229 84de9106 2020-12-26 stsp goto done;
9230 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9231 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9232 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9233 ee85c5e8 2020-02-29 stsp if (error)
9234 ee85c5e8 2020-02-29 stsp goto done;
9235 ee85c5e8 2020-02-29 stsp
9236 ee85c5e8 2020-02-29 stsp if (worktree) {
9237 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9238 ee85c5e8 2020-02-29 stsp worktree = NULL;
9239 ee85c5e8 2020-02-29 stsp }
9240 ee85c5e8 2020-02-29 stsp
9241 a44927cc 2022-04-07 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
9242 a44927cc 2022-04-07 stsp if (error)
9243 a44927cc 2022-04-07 stsp goto done;
9244 a44927cc 2022-04-07 stsp
9245 a44927cc 2022-04-07 stsp error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9246 ee85c5e8 2020-02-29 stsp if (error) {
9247 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
9248 ee85c5e8 2020-02-29 stsp goto done;
9249 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
9250 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
9251 6879ba42 2020-10-01 naddy usage(1, 1);
9252 ee85c5e8 2020-02-29 stsp /* not reached */
9253 ee85c5e8 2020-02-29 stsp }
9254 ee85c5e8 2020-02-29 stsp
9255 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
9256 ee85c5e8 2020-02-29 stsp if (error)
9257 ee85c5e8 2020-02-29 stsp goto done;
9258 ee85c5e8 2020-02-29 stsp
9259 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
9260 ee85c5e8 2020-02-29 stsp argc = 4;
9261 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9262 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
9263 ee85c5e8 2020-02-29 stsp done:
9264 1d0f4054 2021-06-17 stsp if (repo) {
9265 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
9266 1d0f4054 2021-06-17 stsp if (error == NULL)
9267 1d0f4054 2021-06-17 stsp error = close_err;
9268 1d0f4054 2021-06-17 stsp }
9269 a44927cc 2022-04-07 stsp if (commit)
9270 a44927cc 2022-04-07 stsp got_object_commit_close(commit);
9271 ee85c5e8 2020-02-29 stsp if (worktree)
9272 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9273 0ae84acc 2022-06-15 tracey if (pack_fds) {
9274 0ae84acc 2022-06-15 tracey const struct got_error *pack_err =
9275 0ae84acc 2022-06-15 tracey got_repo_pack_fds_close(pack_fds);
9276 0ae84acc 2022-06-15 tracey if (error == NULL)
9277 0ae84acc 2022-06-15 tracey error = pack_err;
9278 0ae84acc 2022-06-15 tracey }
9279 ee85c5e8 2020-02-29 stsp free(id);
9280 ee85c5e8 2020-02-29 stsp free(commit_id_str);
9281 ee85c5e8 2020-02-29 stsp free(commit_id);
9282 ee85c5e8 2020-02-29 stsp free(cwd);
9283 ee85c5e8 2020-02-29 stsp free(repo_path);
9284 ee85c5e8 2020-02-29 stsp free(in_repo_path);
9285 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
9286 ee85c5e8 2020-02-29 stsp int i;
9287 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
9288 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
9289 ee85c5e8 2020-02-29 stsp free(cmd_argv);
9290 ee85c5e8 2020-02-29 stsp }
9291 87670572 2020-12-26 naddy tog_free_refs();
9292 ee85c5e8 2020-02-29 stsp return error;
9293 c2301be8 2018-04-30 stsp }
9294 c2301be8 2018-04-30 stsp
9295 9f7d7167 2018-04-29 stsp int
9296 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
9297 9f7d7167 2018-04-29 stsp {
9298 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
9299 3e166534 2022-02-16 naddy const struct tog_cmd *cmd = NULL;
9300 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
9301 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
9302 3e166534 2022-02-16 naddy static const struct option longopts[] = {
9303 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
9304 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
9305 83cd27f8 2020-01-13 stsp };
9306 917d79a7 2022-07-01 stsp char *diff_algo_str = NULL;
9307 9f7d7167 2018-04-29 stsp
9308 3264c09c 2022-09-06 mark if (!isatty(STDIN_FILENO))
9309 3264c09c 2022-09-06 mark errx(1, "standard input is not a tty");
9310 3264c09c 2022-09-06 mark
9311 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
9312 9f7d7167 2018-04-29 stsp
9313 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9314 9f7d7167 2018-04-29 stsp switch (ch) {
9315 9f7d7167 2018-04-29 stsp case 'h':
9316 9f7d7167 2018-04-29 stsp hflag = 1;
9317 9f7d7167 2018-04-29 stsp break;
9318 53ccebc2 2019-07-30 stsp case 'V':
9319 53ccebc2 2019-07-30 stsp Vflag = 1;
9320 53ccebc2 2019-07-30 stsp break;
9321 9f7d7167 2018-04-29 stsp default:
9322 6879ba42 2020-10-01 naddy usage(hflag, 1);
9323 9f7d7167 2018-04-29 stsp /* NOTREACHED */
9324 9f7d7167 2018-04-29 stsp }
9325 9f7d7167 2018-04-29 stsp }
9326 9f7d7167 2018-04-29 stsp
9327 9f7d7167 2018-04-29 stsp argc -= optind;
9328 9f7d7167 2018-04-29 stsp argv += optind;
9329 9814e6a3 2020-09-27 naddy optind = 1;
9330 c2301be8 2018-04-30 stsp optreset = 1;
9331 9f7d7167 2018-04-29 stsp
9332 53ccebc2 2019-07-30 stsp if (Vflag) {
9333 53ccebc2 2019-07-30 stsp got_version_print_str();
9334 6879ba42 2020-10-01 naddy return 0;
9335 53ccebc2 2019-07-30 stsp }
9336 4010e238 2020-12-04 stsp
9337 4010e238 2020-12-04 stsp #ifndef PROFILE
9338 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9339 4010e238 2020-12-04 stsp NULL) == -1)
9340 4010e238 2020-12-04 stsp err(1, "pledge");
9341 4010e238 2020-12-04 stsp #endif
9342 53ccebc2 2019-07-30 stsp
9343 c2301be8 2018-04-30 stsp if (argc == 0) {
9344 f29d3e89 2018-06-23 stsp if (hflag)
9345 6879ba42 2020-10-01 naddy usage(hflag, 0);
9346 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
9347 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
9348 c2301be8 2018-04-30 stsp argc = 1;
9349 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
9350 c2301be8 2018-04-30 stsp } else {
9351 6059809a 2020-12-17 stsp size_t i;
9352 9f7d7167 2018-04-29 stsp
9353 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
9354 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
9355 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
9356 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
9357 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
9358 9f7d7167 2018-04-29 stsp break;
9359 9f7d7167 2018-04-29 stsp }
9360 9f7d7167 2018-04-29 stsp }
9361 ee85c5e8 2020-02-29 stsp }
9362 3642c4c6 2019-07-09 stsp
9363 917d79a7 2022-07-01 stsp diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9364 917d79a7 2022-07-01 stsp if (diff_algo_str) {
9365 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "patience") == 0)
9366 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9367 917d79a7 2022-07-01 stsp if (strcasecmp(diff_algo_str, "myers") == 0)
9368 917d79a7 2022-07-01 stsp tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9369 917d79a7 2022-07-01 stsp }
9370 917d79a7 2022-07-01 stsp
9371 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
9372 ee85c5e8 2020-02-29 stsp if (argc != 1)
9373 6879ba42 2020-10-01 naddy usage(0, 1);
9374 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
9375 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
9376 ee85c5e8 2020-02-29 stsp } else {
9377 ee85c5e8 2020-02-29 stsp if (hflag)
9378 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
9379 ee85c5e8 2020-02-29 stsp else
9380 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9381 9f7d7167 2018-04-29 stsp }
9382 9f7d7167 2018-04-29 stsp
9383 9f7d7167 2018-04-29 stsp endwin();
9384 b46c1e04 2020-09-20 naddy putchar('\n');
9385 a2f4a359 2020-02-28 stsp if (cmd_argv) {
9386 a2f4a359 2020-02-28 stsp int i;
9387 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
9388 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
9389 a2f4a359 2020-02-28 stsp free(cmd_argv);
9390 a2f4a359 2020-02-28 stsp }
9391 a2f4a359 2020-02-28 stsp
9392 e45c294c 2022-10-24 stsp if (error && error->code != GOT_ERR_CANCELLED &&
9393 e45c294c 2022-10-24 stsp error->code != GOT_ERR_EOF &&
9394 e45c294c 2022-10-24 stsp error->code != GOT_ERR_PRIVSEP_EXIT &&
9395 e45c294c 2022-10-24 stsp error->code != GOT_ERR_PRIVSEP_PIPE &&
9396 e45c294c 2022-10-24 stsp !(error->code == GOT_ERR_ERRNO && errno == EINTR))
9397 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9398 9f7d7167 2018-04-29 stsp return 0;
9399 9f7d7167 2018-04-29 stsp }